1、阿里云服务器提示存在被挖0矿行为,路径在 /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 的解决方法_解决方法