ln命令是linux中一个非常重要命令。 例如: 代码示例:ln -s /bin/less /usr/local/bin/less
-s 是代号(symbolic)的意思。 ln是linux中又一个非常重要命令,它的功能是为某一个文件在另外一个位置建立一个同步的链接.当我们需要在不同的目录,用到相同的文件时,我们不需要在每一个需要的目录下都放一个必须相同的文件,我们只要在某个固定的目录,放上该文件,然后在 其它的目录下用ln命令链接(link)它就可以,不必重复的占用磁盘空间。
1.命令格式: 2.命令功能: linux文件系统中,有所谓的链接(link),我们可以将其视为档案的别名,而链接又可分为两种 : 硬链接(hard link)与软链接(symbolic link),硬链接的意思是一个档案可以有多个名称,而软链接的方式则是产生一个特殊的档案,该档案的内容是指向另一个档案的位置。硬链接是存在同一个文件系统中,而软链接却可以跨越不同的文件系统。
软链接:
硬链接:
两点要注意: ln指令用在链接文件或目录,如同时指定两个以上的文件或目录,且最后的目的地是一个已经存在的目录,则会把前面指定的所有文件或目录复制到该目录中。若同时指定多个文件或目录,且最后的目的地并非是一个已存在的目录,则会出现错误信息。 3.命令参数:
必要参数: -d 允许超级用户制作目录的硬链接 -f 强制执行 -i 交互模式,文件存在则提示用户是否覆盖 -n 把符号链接视为一般目录 -s 软链接(符号链接) -v 显示详细的处理过程
选择参数: -v “-v<备份方式>”或“--version-control=<备份方式>” --help 显示帮助信息 --version 显示版本信息
4.使用实例: ln -s log2013.log link2013
输出: [root@localhost test]# ll -rw-r--r-- 1 root bin 61 11-13 06:03 log2013.log [root@localhost test]# ln -s log2013.log link2013 [root@localhost test]# ll lrwxrwxrwx 1 root root 11 12-07 16:01 link2013 -> log2013.log -rw-r--r-- 1 root bin 61 11-13 06:03 log2013.log
说明:
实例2:给文件创建硬链接 ln log2013.log ln2013
输出: [root@localhost test]# ll lrwxrwxrwx 1 root root 11 12-07 16:01 link2013 -> log2013.log -rw-r--r-- 1 root bin 61 11-13 06:03 log2013.log [root@localhost test]# ln log2013.log ln2013 [root@localhost test]# ll lrwxrwxrwx 1 root root 11 12-07 16:01 link2013 -> log2013.log -rw-r--r-- 2 root bin 61 11-13 06:03 ln2013 -rw-r--r-- 2 root bin 61 11-13 06:03 log2013.log 说明: 为log2013.log创建硬链接ln2013,log2013.log与ln2013的各项属性相同
实例3:接上面两实例,链接完毕后,删除和重建链接原文件 [root@localhost test]# ll lrwxrwxrwx 1 root root 11 12-07 16:01 link2013 -> log2013.log -rw-r--r-- 2 root bin 61 11-13 06:03 ln2013 -rw-r--r-- 2 root bin 61 11-13 06:03 log2013.log [root@localhost test]# rm -rf log2013.log [root@localhost test]# ll lrwxrwxrwx 1 root root 11 12-07 16:01 link2013 -> log2013.log -rw-r--r-- 1 root bin 61 11-13 06:03 ln2013 [root@localhost test]# touch log2013.log [root@localhost test]# ll lrwxrwxrwx 1 root root 11 12-07 16:01 link2013 -> log2013.log -rw-r--r-- 1 root bin 61 11-13 06:03 ln2013 ---xrw-r-- 1 root bin 302108 11-13 06:03 log2012.log -rw-r--r-- 1 root root 0 12-07 16:19 log2013.log [root@localhost test]# vi log2013.log 2013-01 2013-02 2013-03 2013-04 2013-05 2013-06 2013-07 2013-08 2013-09 2013-10 2013-11 2013-12[root@localhost test]# ll lrwxrwxrwx 1 root root 11 12-07 16:01 link2013 -> log2013.log -rw-r--r-- 1 root bin 61 11-13 06:03 ln2013 -rw-r--r-- 1 root root 96 12-07 16:21 log2013.log [root@localhost test]# cat link2013 2013-01 2013-02 2013-03 2013-04 2013-05 2013-06 2013-07 2013-08 2013-09 2013-10 2013-11 2013-12 [root@localhost test]# cat ln2013 hostnamebaidu=baidu.com hostnamesina=sina.com hostnames=true
说明:
2.重建源文件后,软链接不在闪烁提示,说明已经链接成功,找到了链接文件系统; 实例4:将文件链接为另一个目录中的相同名字
命令: ln log2013.log test3
输出: [root@localhost test]# ln log2013.log test3 [root@localhost test]# ll lrwxrwxrwx 1 root root 11 12-07 16:01 link2013 -> log2013.log -rw-r--r-- 1 root bin 61 11-13 06:03 ln2013 -rw-r--r-- 2 root root 96 12-07 16:21 log2013.log [root@localhost test]# cd test3 [root@localhost test3]# ll -rw-r--r-- 2 root root 96 12-07 16:21 log2013.log [root@localhost test3]# vi log2013.log 2013-01 2013-02 2013-03 2013-04 2013-05 2013-06 2013-07 2013-08 2013-09 2013-10[root@localhost test3]# ll -rw-r--r-- 2 root root 80 12-07 16:36 log2013.log [root@localhost test3]# cd .. [root@localhost test]# ll lrwxrwxrwx 1 root root 11 12-07 16:01 link2013 -> log2013.log -rw-r--r-- 1 root bin 61 11-13 06:03 ln2013 -rw-r--r-- 2 root root 80 12-07 16:36 log2013.log [root@localhost test]#
说明: 实例5:给目录创建软链接
命令: ln -sv /opt/soft/test/test3 /opt/soft/test/test5
输出: [root@localhost test]# ll drwxr-xr-x 2 root root 4096 12-07 16:36 test3 drwxr-xr-x 2 root root 4096 12-07 16:57 test5 [root@localhost test]# cd test5 [root@localhost test5]# ll lrwxrwxrwx 1 root root 5 12-07 16:57 test3 -> test3 [root@localhost test5]# cd test3 -bash: cd: test3: 符号连接的层数过多 [root@localhost test5]# [root@localhost test5]# [root@localhost test5]# ll lrwxrwxrwx 1 root root 5 12-07 16:57 test3 -> test3 [root@localhost test5]# rm -rf test3 [root@localhost test5]# ll [root@localhost test5]# ln -sv /opt/soft/test/test3 /opt/soft/test/test5 创建指向“/opt/soft/test/test3”的符号链接“/opt/soft/test/test5/test3” [root@localhost test5]# ll lrwxrwxrwx 1 root root 20 12-07 16:59 test3 -> /opt/soft/test/test3 [root@localhost test5]# [root@localhost test5]# cd test3 [root@localhost test3]# ll 总计 4 -rw-r--r-- 2 root root 80 12-07 16:36 log2013.log [root@localhost test3]# touch log2014.log [root@localhost test3]# ll 总计 4 -rw-r--r-- 2 root root 80 12-07 16:36 log2013.log -rw-r--r-- 1 root root 0 12-07 17:05 log2014.log [root@localhost test3]# cd .. [root@localhost test5]# cd ..
说明:
链接有两种,一种被称为硬链接(hard link),另一种被称为符号链接(symbolic link)。 ln 命令
用途
注意: 退出状态
此命令返回以下的退出值: 示例
零、为了创建到一个文件的另一个链接(别名),请输入:
一、为了将文件链接为另一个目录中的相同名字,请输入:
二、为了将几个文件链接为另一个目录中的名称,请输入:
三、如果想要在 ln 命令中使用模式匹配字符,请输入:
四、为了创建一个符号链接,输入:
五、如果想要在不指明 targetfile 参数的情况下得到相同的结果,请输入: |