An important thing to realize, if you wish to use xattr, you need a filesystem that has extended attributes functionalty and also has those enabled! I lost quite a bit of time with puzzling why xattr was not working with my ext4 system, until I found that the extended attributes, by default, are not enabled.
Adding user_xattr to the mounting configuration of the filesystem where I was working fixed the problem
/dev/sdb2 /home ext4 relatime,user_xattr 0 2
要件
xattr を使用するには、libattr がインストールされている必要があります。 これは » http://oss.sgi.com/projects/xfs/ から取得可能です。
注意:
これらの関数は、ファイルシステムが拡張属性をサポートしており、 マウント時にそれを有効にしている場合にのみ動作します。 一般に使用されているファイルシステムのうち、拡張属性を サポートしているものには ext2、ext3、reiserfs、jfs および xfs などがあります。
sven _ oostenbrink atserver yahoo dot co ¶
3 years ago
