不支持setfattr操作

问题描述 投票:0回答:1
$ touch foobar
$ setfattr -n user.foo -v bar foobar
setfattr: foobar: Operation not supported

文件为所有权限,文件夹相同。这里可能有什么问题?这是 Ubuntu 9.10

这是在我的 fstab 中

/dev/sdb1 /var/log/apache_logs          reiserfs    user,noauto,rw,exec,suid,user_xattr 

(我正在这些目录中的某个地方工作,但我也在其他地方尝试过,结果是一样的)

linux ubuntu linux-kernel
1个回答
0
投票

在 Ubuntu 20 上,我设法使用

attr -s
命令设置扩展属性,而
setfattr
导致了
operation not permitted
错误。

感谢@user354134 建议尝试一下。

© www.soinside.com 2019 - 2024. All rights reserved.