| | 6 | |
| | 7 | == File System == |
| | 8 | |
| | 9 | * [http://www.linux-mag.com/id/8741 Extended File Attributes Rock!] - 還記得以前有人(jserv??)想實作有屬性的檔案系統,可以對存在檔案系統中的圖片、影片等,可以使用該屬性去作搜尋等,看樣子現在變得可行了~ |
| | 10 | {{{ |
| | 11 | ~$ setfattr -n user.comment -v "this is a comment" test.txt |
| | 12 | ~$ getfattr test.txt |
| | 13 | # file: test.txt |
| | 14 | user.comment |
| | 15 | ~$ getfattr -n user.comment test.txt |
| | 16 | # file: test.txt |
| | 17 | user.comment="this is a comment" |
| | 18 | ~$ setfattr -x user.comment test.txt |
| | 19 | ~$ getfattr -n user.comment test.txt |
| | 20 | test.txt: user.comment: No such attribute |
| | 21 | }}} |