linux的软连接命令_linux软连接怎么用

linux的软连接命令_linux软连接怎么用Linux命令之软连接详解。结合示例详细说明软链接的创建,同时给出如何正确删除一个软链接。

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE稳定放心使用

前言

  • 文章来源:CSDN@LawsonAbs

1.软连接

1.1 创建语法

ln -s target source
解释下:
ln -s:表示创建一个软连接;
target:表示目标文件(夹)【即被指向的文件(夹)】
source:表示当前目录的软连接名。【源文件(夹)】

1.2 具体示例

  • step 1.创建测试文件及文件夹
[root@server6 ~]# mkdir test_chk
[root@server6 ~]# touch test_chk/test.txt 
[root@server6 ~]# echo "hello spark" > test_chk/test.txt 
[root@server6 ~]# cat test_chk/test.txt 
hello spark
[root@server6 ~]# ll
总用量 84
-rw-------.  1 root root  1257 616 01:17 anaconda-ks.cfg
drwxr-xr-x. 25 root root  4096 111 10:28 azkabanJob
-rw-r--r--.  1 root root 67322 114 10:24 azkabanJob.zip
drwxr-xr-x.  4 root root    37 713 11:01 hadoop_temp
-rw-r--r--.  1 root root    54 74 14:11 HelloLinux.txt
drwxr-xr-x.  2 root root    22 114 10:41 test_chk
-rw-r--r--.  1 root root    67 108 15:52 zookeeper.out
[root@server6 ~]# ln -s test_chk/ test_chk_ln
[root@server6 ~]# ll
总用量 84
-rw-------.  1 root root  1257 616 01:17 anaconda-ks.cfg
drwxr-xr-x. 25 root root  4096 111 10:28 azkabanJob
-rw-r--r--.  1 root root 67322 114 10:24 azkabanJob.zip
drwxr-xr-x.  4 root root    37 713 11:01 hadoop_temp
-rw-r--r--.  1 root root    54 74 14:11 HelloLinux.txt
drwxr-xr-x.  2 root root    22 114 10:41 test_chk
lrwxrwxrwx.  1 root root     9 114 10:42 test_chk_ln -> test_chk/
-rw-r--r--.  1 root root    67 108 15:52 zookeeper.out
[root@server6 ~]# cd test_chk_ln/
[root@server6 test_chk_ln]# ll
总用量 4
-rw-r--r--. 1 root root 12 114 10:41 test.txt
[root@server6 test_chk_ln]# cat test.txt 
hello spark
[root@server6 test_chk_ln]# ll
总用量 4
-rw-r--r--. 1 root root 12 114 10:41 test.txt
[root@server6 test_chk_ln]# cat test.txt 
hello spark

2.注意

2.1 创建软连接时,不用创建文件夹。

2.2 命令示例解释

执行的命令是: ln -s /storage/lawson/scores scor
其含义就是:将scor指向 /storage/lawson/scores/目录下
在这里插入图片描述
这里是当前的scor 指向 /storage/lawson/scores 中。这里显示红色,是因为/storage/lawson/scores这个目录不存在,如果创建该目录,那就可以得到蓝色的显示了。
在这里插入图片描述
需要注意的是,当前所有目录下的文件都不能重名,因为我之前有一个文件夹是scores,所以这里就简单的命名成了scor

2.3 软连接的删除

rm -rf ./test_chk_ln/ 会删除文件夹下的所有内容,但是没有删除这个链接;
rm -rf ./test_chk_ln 则是仅删除这个软链接,不会删除下面的内容。

  • 错误示范
[root@server6 test_chk_ln]# cd ..
[root@server6 ~]# ll
总用量 84
-rw-------.  1 root root  1257 616 01:17 anaconda-ks.cfg
drwxr-xr-x. 25 root root  4096 111 10:28 azkabanJob
-rw-r--r--.  1 root root 67322 114 10:24 azkabanJob.zip
drwxr-xr-x.  4 root root    37 713 11:01 hadoop_temp
-rw-r--r--.  1 root root    54 74 14:11 HelloLinux.txt
drwxr-xr-x.  2 root root    22 114 10:41 test_chk
lrwxrwxrwx.  1 root root     9 114 10:42 test_chk_ln -> test_chk/
-rw-r--r--.  1 root root    67 108 15:52 zookeeper.out
[root@server6 ~]# rm -rf ./test_chk_ln/
[root@server6 ~]# ll
总用量 84
-rw-------.  1 root root  1257 616 01:17 anaconda-ks.cfg
drwxr-xr-x. 25 root root  4096 111 10:28 azkabanJob
-rw-r--r--.  1 root root 67322 114 10:24 azkabanJob.zip
drwxr-xr-x.  4 root root    37 713 11:01 hadoop_temp
-rw-r--r--.  1 root root    54 74 14:11 HelloLinux.txt
drwxr-xr-x.  2 root root     6 114 10:42 test_chk
lrwxrwxrwx.  1 root root     9 114 10:42 test_chk_ln -> test_chk/
-rw-r--r--.  1 root root    67 108 15:52 zookeeper.out
[root@server6 ~]# cd test_chk
[root@server6 test_chk]# ll
总用量 0
[root@server6 test_chk]# ll
总用量 0

可以发现该文件夹下的内容都被删了。。。

  • 正确删除软连接
[root@server6 ~]# rm -rf ./test_chk_ln
[root@server6 ~]# ll
总用量 84
-rw-------.  1 root root  1257 616 01:17 anaconda-ks.cfg
drwxr-xr-x. 25 root root  4096 111 10:28 azkabanJob
-rw-r--r--.  1 root root 67322 114 10:24 azkabanJob.zip
drwxr-xr-x.  4 root root    37 713 11:01 hadoop_temp
-rw-r--r--.  1 root root    54 74 14:11 HelloLinux.txt
drwxr-xr-x.  2 root root    22 114 10:44 test_chk
-rw-r--r--.  1 root root    67 108 15:52 zookeeper.out
[root@server6 ~]# cd test_chk/
[root@server6 test_chk]# ll
总用量 4
-rw-r--r--. 1 root root 12 114 10:44 test.txt

参考文章

  • https://www.cnblogs.com/cartsp/p/6437046.html
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/187402.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号