2、编写fstab文件 vi/etc/fstab /dev/mapper/vg_server1-logs /home ext4 defaults,acl0 然后重新挂载 mount-o remount /home 再次setfacl设置 setfacl -R -m u:aclread:rwx /home/usr
对文件目录setfacl权限设置时报错Operation not supported Google一下,发现是分区acl权限问题 一般情况下(ext4),默认acl支持都是加载的.但如果遇到二般情况,文件系统加载时没有指定acl.我们可以能过 以下的两种方法: 1、手动挂载 mount -o acl /dev/mapper/vg_server1-logs /home 1. [root@excbjdcpapp05 usr]...
重新修改/etc/fstab文件,加入acl选项 然后:重新挂载,再执行上面的命令,成功!setfacl用法:回收a c l权限 加参数 -R 实现递归。-d 使用默认的acl策略 参考 http://man.linuxde.net/setfacl
使用Centos 6.5系统的setfacl给用户或组设置权限时报Operation not supported 原因:/data/ftp为硬盘的一个分区,在fstab做了defaults挂载,但是没有加acl规则,当设定acl命令为:setfacl -m g:ftp:rwx /data/ftp的时候提示setfacl: /data/ftp:Operation not supported 解决方法:重新修改/etc/fstab文件,加入acl选项 /d...
setfacl: somefile: Operation not supported getfacl sort of works in that it just shows the POSIX. user # getfacl somefile # file: somefile # owner: jim # group: group user::rwx group::r-x other::--- In Windows explorer I have added another user to the permissions but this isn...
假若你设置的文件或目录是你刚刚新挂载的,它会提示“Operation not supported”,原因是新挂载的硬盘默认没有acl权限! 我们可以手动添加ACL权限 #vim /etc/fstab 添加上acl权限 UUID="***"/mnt/data ext4 defaults,acl 0 0 /dev/sda1 /mnt/data2 ext4 defaults,acl 0 0 附:挂载的时候,我们尽量...
setfacl: /opt/addserv/shared/mq/qmgrs/ACRSP1/errors: Operation not supported setfaclを実行すると、rhel 6 から共有され、rhel 6 にマウントされている、NFS バージョン 3 を使用したファイルシステムから "Operation not supported" が返されます。
If you see a ‘Operation not supported’ error when trying to set an ACL, it means your file system does not support ACLs. You can resolve this by remounting the file system with the ‘acl’ option. Here’s how you can do this in your ‘/etc/fstab’ file: ...
setfacl:设置文件访问控制列表,针对单独文件,设置单独用户权限 用法: setfacl -参数 用户权限 文件 ...
我知道我无法做到这一点,并尝试了sudosetfacl-m /path/to/dir,并得到了一个错误:setfacl: Option -m: Invalid argument near character接下来,我尝试了sudosetfacl-m u:user:rwx /path/to/dir,得到了一个错误:setfacl: /path/to/dir/: Operation not supported我正在考虑在 ...