Debian

如何在 Debian 9 (Stretch) 中啟用 xattr 支持

  • March 6, 2018

我在 ext4 中添加了 user_xattr,但是當我重新安裝時它不顯示 xattr & 我安裝了 attr & attr_dev

# <file system> <mount point>   <type>  <options>       <dump>  <pass>
/dev/mapper/Anonymous--vg-root /               ext4\040remount,user_xattr    errors=remount-ro 0       1`

Ext4 預設支持使用者擴展屬性,你不需要做任何事情來啟用它們。要驗證這一點,請執行

cd
touch xattr-test
setfattr -n user.test -v "hello" xattr-test
getfattr xattr-test

這應該表明擴展屬性已成功儲存。

引用自:https://unix.stackexchange.com/questions/428420