标签:
今天给/etc创建了个链接,删除软链接,导致删掉后,/etc/下文件全没了.
于是搜集了这篇文章.
1、创建一个软连接
[root@auc-linux home]# ln -s /usr/soft/ /home/soft_link
2、删除软连接出现错误
[root@auc-linux home]# rm /home/soft_link/ rm: 无法删除"/home/soft_link/": 是一个目录
3、删除软连接的正确方式
[root@auc-linux home]# rm /home/soft_link/ rm: 无法删除"/home/soft_link/": 是一个目录 [root@auc-linux home]# rm /home/soft_link rm:是否删除符号链接 "/home/soft_link"?y
4、只是删除了软连接文件(正确方式)
[root@auc-linux home]# rm -rf /home/soft_link [root@auc-linux home]# ll /usr/soft/ 总用量 4 -rw-r--r-- 1 root root 12 6月 4 18:09 soft.txt
5、错误操作,通过软连接删除了实际存在的数据。
[root@auc-linux home]# ln -s /usr/soft /home/soft_link [root@auc-linux home]# ls 1234.cap freeswitch.bin logs monitor packages.tar.gz www Adtec soft_link lost+found monitor_log recordings [root@auc-linux home]# rm -rf /home/soft_link/ [root@auc-linux home]# ls 1234.cap freeswitch.bin logs monitor packages.tar.gz www Adtec soft_link lost+found monitor_log recordings [root@auc-linux home]# cd soft_link/ [root@auc-linux soft_link]# ls [root@auc-linux soft_link]# cd /usr/soft/ [root@auc-linux soft]# ls
备注:想要删除链接文件要用以下命令 rm /home/soft_link 只是少了一个“ / ” 删除的 就是链接文件, 也就是在文件的最后不要加上/
标签:
原文地址:http://www.cnblogs.com/iiiiher/p/5561927.html