全部博文(136)
分类: LINUX
2008-12-10 21:52:40
[root@localhost yuechaotian]# pwd /home/yuechaotian [root@localhost yuechaotian]# ll 总用量 8 drwx--x--x 3 root root 4096 12月 7 14:52 study dr-xr-xr-x 2 yuechaotian yuechaotian 4096 12月 9 22:33 test -rw-rw-rw- 1 yuechaotian yuechaotian 0 12月 9 22:33 test.txt [root@localhost yuechaotian]# lsattr test.txt ------------- test.txt [root@localhost yuechaotian]# chattr +i test.txt [root@localhost yuechaotian]# lsattr test.txt ----i-------- test.txt |
[root@localhost yuechaotian]# rm test.txt rm:是否删除有写保护的一般空文件‘test.txt’? y rm: 无法删除‘test.txt’: 不允许的操作 [root@localhost yuechaotian]# mv test.txt test.txt.copy mv: 无法移动‘test.txt’至‘test.txt.copy’: 不允许的操作 [root@localhost yuechaotian]# ln test.txt test.txt.ln ln: 正在创建连至‘test.txt’的硬链接‘test.txt.ln’: 不允许的操作 |
[root@localhost yuechaotian]# cp test.txt test.txt.copy [root@localhost yuechaotian]# ll 总用量 16 drwx--x--x 3 root root 4096 12月 7 14:52 study dr-xr-xr-x 2 yuechaotian yuechaotian 4096 12月 9 22:33 test -rw-rw-rw- 1 yuechaotian yuechaotian 29 12月 10 20:27 test.txt -rw-r--r-- 1 root root 29 12月 10 20:30 test.txt.copy [root@localhost yuechaotian]# lsattr ----i-------- ./test.txt ------------- ./test ------------- ./study ------------- ./test.txt.copy |
[root@localhost yuechaotian]# ln -s test.txt test.txt.ln [root@localhost yuechaotian]# ll 总用量 16 drwx--x--x 3 root root 4096 12月 7 14:52 study dr-xr-xr-x 2 yuechaotian yuechaotian 4096 12月 9 22:33 test -rw-rw-rw- 1 yuechaotian yuechaotian 29 12月 10 20:27 test.txt -rw-r--r-- 1 root root 29 12月 10 20:30 test.txt.copy lrwxrwxrwx 1 root root 8 12月 10 20:32 test.txt.ln -> test.txt |
E45: 'readonly' option is set (add ! to override) |
[root@localhost yuechaotian]# rm test.txt.copy rm:是否删除一般文件‘test.txt.copy’? y [root@localhost yuechaotian]# rm test.txt.ln rm:是否删除符号链接‘test.txt.ln’? y [root@localhost yuechaotian]# chattr -i +a test.txt [root@localhost yuechaotian]# lsattr test.txt -----a------- test.txt |
[root@localhost yuechaotian]# cat test.txt http://yuechaotian.cublog.cn [root@localhost yuechaotian]# echo>>test.txt adsf [root@localhost yuechaotian]# cat test.txt http://yuechaotian.cublog.cn adsf |
[root@localhost yuechaotian]# rm test.txt rm:是否删除一般文件‘test.txt’? y rm: 无法删除‘test.txt’: 不允许的操作 [root@localhost yuechaotian]# mv test.txt test.cp mv: 无法移动‘test.txt’至‘test.cp’: 不允许的操作 [root@localhost yuechaotian]# ln test.txt test.ln ln: 正在创建连至‘test.txt’的硬链接‘test.ln’: 不允许的操作 |
"test.txt" E212: 不能以写入模式打开 |
[root@localhost yuechaotian]# ll 总用量 12 drwx--x--x 3 root root 4096 12月 7 14:52 study drwxrwxrwx 2 yuechaotian yuechaotian 4096 12月 10 21:47 test -rw-rw-rw- 1 yuechaotian yuechaotian 34 12月 10 20:48 test.txt [root@localhost yuechaotian]# chattr +i test [root@localhost yuechaotian]# rm -r test rm:是否进入有写保护的目录‘test’? y rm:是否删除一般文件‘test/t.2’? y rm: 无法删除‘test/t.2’: 权限不够 [root@localhost yuechaotian]# mv test t mv: 无法移动‘test’至‘t’: 不允许的操作 [root@localhost yuechaotian]# mv test.txt test mv: 无法移动‘test.txt’至‘test/test.txt’: 权限不够 [root@localhost yuechaotian]# rm test/t.2 rm:是否删除一般文件‘test/t.2’? y rm: 无法删除‘test/t.2’: 权限不够 |
[root@localhost yuechaotian]# chattr -i +a test [root@localhost yuechaotian]# mv test.txt test [root@localhost yuechaotian]# rm test/test.txt rm:是否删除一般文件‘test/test.txt’? y rm: 无法删除‘test/test.txt’: 不允许的操作 |