Linux软链接,类似于windows系统的桌面快捷方式。当我们双击桌面快捷方式就会链接到文件的实际存放位置。
关于Linux软链接和硬链接的区别请阅读王华东的文章。
https://www.ibm.com/developerworks/cn/linux/l-cn-hardandsymb-links/
- 创建a.txt文件,并插入一些内容
root@hecs-x-medium-2-linux-20200428093220:/# mkdir /tmp/tesk
root@hecs-x-medium-2-linux-20200428093220:/#
root@hecs-x-medium-2-linux-20200428093220:/# touch /tmp/tesk/a.txt
root@hecs-x-medium-2-linux-20200428093220:/#
root@hecs-x-medium-2-linux-20200428093220:/# echo "hello world" > /tmp/tesk/a.txt
- 创建软链接
格式: ln -s [源文件或目录] [软链接文件或目录]
创建软链接
root@hecs-x-medium-2-linux-20200428093220:/tmp# ln -s tesk/ tesk_ln
创建成功
drwxr-xr-x 2 root root 4096 May 18 14:11 tesk/
lrwxrwxrwx 1 root root 5 May 18 14:22 tesk_ln -> tesk//
- 更新软链接
ln -snf [新源文件或目录] [软链接地址]
或
ln -snf [源文件或目录] [新软链接地址]
root@hecs-x-medium-2-linux-20200428093220:/tmp# ln -snf tesk1 tesk_ln
或
root@hecs-x-medium-2-linux-20200428093220:/tmp# ln -snf tesk tesk_ln1
- 删除软链接
rm -rf [软链接地址]
删除软链接及其下的资源
root@hecs-x-medium-2-linux-20200428093220:/tmp# rm -rf tesk_ln
不删除软链接本身,只删除其下资源。特别注意: 此操作源文件tesk下的资源也会被删除。(注意尾部带与不带‘/’的区别)
root@hecs-x-medium-2-linux-20200428093220:/tmp# rm -rf tesk_ln/