linux 的链接
程序员文章站
2022-06-01 18:58:46
...
linux 链接文件有2种, 一种是类似于windows 的快捷方式的功能文件,可以快速链接到目标文件(或目录);另一种是通过文件系统的inode 链接来产生新文件名,这种称为:硬链接。
硬链接操作:
[email protected]:/$ ll -i /etc/crontab
1048722 -rw-r--r-- 1 root root 722 Feb 9 2013 /etc/crontab
[email protected]:/$ ln /etc/crontab
ln: failed to create hard link ‘./crontab’ => ‘/etc/crontab’: Operation not permitted
[email protected]:/$ sudo ln /etc/crontab
[sudo] password for aston:
[email protected]:/$ ll -i /etc/crontab crontab
1048722 -rw-r--r-- 2 root root 722 Feb 9 2013 crontab
1048722 -rw-r--r-- 2 root root 722 Feb 9 2013 /etc/crontab
硬链接的操作: 不能跨文件系统
不能链接目录
符号链接:符号链接就是建立一个独立的文件,而这个文件会让数据的读取指向它链接的那个文件名。
命令形式:
ln [-sf] 源文件 目标文件
-s : 如果不加任何参数就进行链接,那就是硬链接
-f: 如果目标文件存在时,就主动将目标文件直接删除后再建立。
上一篇: GIT别名设置(提高效率)
下一篇: alias别名在linux中的使用