Linux删除软链接
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
更新:2022-02-17
说明:
1. 此文章比较老,在centos 6上测试过
2. 新系统已经不再试用,请忽略
3. 不防大家试试 unlink 命令
首先我们先来创建一个文件
#mkdir test_chk
#touch test_chk/test.txt
#vim test_chk/test.txt (这一步随便在这个test.txt里写点东东即可)
下面我们来创建test_chk目录 的软链接
#ln-s test_chk test_chk_ln
软链接创建好了,我们来看看怎么删除它
正确的删除方式(删除软链接,但不删除实际数据)
rm -rf ./test_chk_ln
错误的删除方式
rm -rf ./test_chk_ln/ (这样就会把原来test_chk下的内容删除)
现在看到区别了吧,所以说,以后大家在用rm -rf 删除软链接时,注意了!!!!
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献3条内容
所有评论(0)