Changes between Version 4 and Version 5 of jazz/11-06-30


Ignore:
Timestamp:
Jun 30, 2011, 9:47:28 PM (13 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/11-06-30

    v4 v5  
    44
    55 * <備忘> 原來能幫人管理網路上的名譽(縮小搜尋範圍)也是一種創新啊! - http://vizibility.com/jazzwang
     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
     14user.comment
     15~$ getfattr -n user.comment test.txt
     16# file: test.txt
     17user.comment="this is a comment"
     18~$ setfattr -x user.comment test.txt
     19~$ getfattr -n user.comment test.txt
     20test.txt: user.comment: No such attribute
     21}}}
    622
    723== Open Source ==