1,、創(chuàng)建不可刪除文件[root@localhost data2]# touch test.sh [root@localhost data2]# chattr +i test.sh [root@localhost data2]# rm -rf test.sh rm: 無法刪除"test.sh": 不允許的操作 2、將文件設(shè)置可刪除[root@localhost data2]# chattr -i test.sh [root@localhost data2]# rm -rf test.sh 此時(shí),,查看文件已經(jīng)刪除了,。 |
|