Linux怎么取消软链接

Linux怎么取消软链接,第1张

Linux下取消软连接,做个案例来说明:

1.先建立一个软连接

[root@rekfan.com test]# ls -il

总计  0

1491138 -rw-r–r– 1 root root 48 07-14 14:17 file1

1491139 -rw-r–r– 2  root root 0 07-14 14:17 file2

1491139 -rw-r–r– 2 root root 0 07-14 14:17  file2hand

#建立file1和file1soft软连接

[root@rekfan.com test]# ln -s file1  file1soft

[root@rekfan.com test]# ls -il

总计 0

1491138 -rw-r–r– 1 root  root 48 07-14 14:17 file1

1491140 lrwxrwxrwx 1 root root 5 07-14 14:24  file1soft -> file1

1491139 -rw-r–r– 2 root root 0 07-14 14:17  file2

1491139 -rw-r–r– 2 root root 0 07-14 14:17 file2hand

2.删除上面建立的软连接

[root@rekfan.com test]# ls -il

总计  0

1491138 -rw-r–r– 1 root root 0 07-14 14:17 file1

1491140 lrwxrwxrwx 1  root root 5 07-14 14:24 file1soft -> file1

1491139 -rw-r–r– 2 root root 0  07-14 14:17 file2

1491139 -rw-r–r– 2 root root 0 07-14 14:17  file2hand

#删除软连接

[root@rekfan.com test]# rm -rf file1soft

[root@rekfan.com test]#  ls -il

总计 0

1491138 -rw-r–r– 1 root root 0 07-14 14:17 file1

1491139  -rw-r–r– 2 root root 0 07-14 14:17 file2

1491139 -rw-r–r– 2 root root 0 07-14  14:17 file2hand

1、在/run目录下存放文件,但是/run目录剩余3.5G了,空间很小,根目录还有42G空余空间,我们可以将文件放在/目录,然后软连接到/run目录下。

2、创建软连接:/root/zhang目录下存在图中zabbix这个安装包,文件过大,我们创建软连接到/run目录,让/run/wang目录也可以访问到。

3、in -s[源文件或目录] [目标文件或目录]ln -s是必须的,然后后面跟一个目标文件夹,最后是一个当前目录的软连接名。

4、删除软连接,不要进行实际存储文件的路径进行删除,可能会误删除实际存放的数据。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/7505816.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-06
下一篇 2023-04-06

发表评论

登录后才能评论

评论列表(0条)

保存