访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

Linux 命令之软连接详解

时间:2019-08-16

linux命令大全应用_linux命令大全 重启_linux命令大全

Linux 命令之软连接详解

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 6月 16 01:17 anaconda-ks.cfg

drwxr-xr-x. 25 root root 4096 11月 1 10:28 azkabanJob

-rw-r–r--. 1 root root 67322 11月 4 10:24 azkabanJob.zip

drwxr-xr-x. 4 root root 37 7月 13 11:01 hadoop_temp

-rw-r–r--. 1 root root 54 7月 4 14:11 HelloLinux.txt

drwxr-xr-x. 2 root root 22 11月 4 10:41 test_chk

-rw-r–r--. 1 root root 67 10月 8 15:52 zookeeper.out

创建一个软连接

注意创建的语法:ln -s是必须的,然后后面跟一个目标文件夹,最后是一个当前目录的软连接名。

linux命令大全应用_linux命令大全_linux命令大全 重启

[root@server6 ~]# ln -s test_chk/ test_chk_ln

[root@server6 ~]# ll

总用量 84

-rw-------. 1 root root 1257 6月 16 01:17 anaconda-ks.cfg

drwxr-xr-x. 25 root root 4096 11月 1 10:28 azkabanJob

-rw-r–r--. 1 root root 67322 11月 4 10:24 azkabanJob.zip

drwxr-xr-x. 4 root root 37 7月 13 11:01 hadoop_temp

-rw-r–r--. 1 root root 54 7月 4 14:11 HelloLinux.txt

drwxr-xr-x. 2 root root 22 11月 4 10:41 test_chk

lrwxrwxrwx. 1 root root9 11月 4 10:42 test_chk_ln -> test_chk/

-rw-r–r--. 1 root root 67 10月 8 15:52 zookeeper.out

[root@server6 ~]# cd test_chk_ln/

[root@server6 test_chk_ln]# ll

总用量 4

-rw-r–r--. 1 root root 12 11月 4 10:41 test.txt

[root@server6 test_chk_ln]# cat test.txt

hello spark

[root@server6 test_chk_ln]# ll

总用量 4

linux命令大全应用_linux命令大全_linux命令大全 重启

-rw-r–r--. 1 root root 12 11月 4 10:41 test.txt

[root@server6 test_chk_ln]# cat test.txt

 上一个教程:Linux curl命令详解