要查看隐藏文件用
ls -a
看文件有没有被锁定(i属性)
- [[email protected] ~]# lsattr YourFile
- ---i---------- YourFile
去除i属性再删除
[[email protected] ~]# chattr -i YourFile [[email protected] ~]# lsattr YourFile [[email protected] ~]# rm -f YourFile
原文地址:https://www.cnblogs.com/gavinyyb/p/9583382.html
时间: 2024-10-31 17:02:30