本文主要是介绍CentOS 删除文件提示 Operation not permitted 的解决方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、阿里云服务器提示存在挖矿行为,路径在 /etc/zzh,我们做下删除动作,发现不能删除
[root@MSH etc]# rm -f zzh# 提示
rm: cannot remove ‘zzh’: Operation not permitted
2、解决方法:
(1)、查看文件权限
[root@MSH etc]# lsattr zzh# 文件只能修改,不能删除
----ia-------e-- zzh
(2)、修改 chattr 权限
chmod +x /usr/bin/chattr
(3)、删除文件权限
chattr -ia zzh
(4)、删除成功
rm -f zzh
这篇关于CentOS 删除文件提示 Operation not permitted 的解决方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!