Linux中软链接的创建、更新和删除演示

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 
  1. 创建软链接
    格式: 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//
  1. 更新软链接
    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
  1. 删除软链接
    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/
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值