Linux出现cp: preserving permissions for `filename': Operation not supported错误及解决办法
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
本文链接:http://blog.csdn.net/kongxx/article/details/7010472
问题:
今天在Linux上使用cp和mv命令操作NFS上的文件时总是出现以下错误
cp: preserving permissions for `filename': Operation not supported
原因:
这个错误是由于cp和mv命令对于ACL的支持,mv命令保持ACL设置信息,cp命令在使用-p,-a参数时保留ACL设置信息。但是如果从一个支持ACL的文件系统向一个不支持ACL的文件系统移动或带ACL属性的拷贝,则会得到类似下面这样的错误提示
cp: preserving permissions for `filename': Operation not supported
设置了ACL的文件在ls -l时可以看到这样的情况,
-rw-rw----+ 1 allen chen 0 Jun 2 09:52 filename
有个加号在第一个列的末尾。
解决办法:
修改/etc/fstab文件,对要mount的文件系统指定ACL选项,如下:
<host>:/data/export/pcc /pcc nfs noacl
参考:
http://a3linux.blogspot.com/2005/09/linuxacl.html
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献20条内容
所有评论(0)