在学习cp命令时我们会知道复制软链接时,如果要保留链接文件使用-d,但当我们实际操作时却常常出现如下
情况
[root@localhost ~]# ls -l /etc/redhat-release #此文件为链接文件 lrwxrwxrwx. 1 root root 14 Oct 17 08:48 /etc/redhat-release -> centos-release [root@localhost ~]# cp -d /etc/redhat-release /root/redhat.s #使用-d 保存链接文件属性 [root@localhost ~]# ls -l /root/redhat.s #查看可知centos-release是闪烁的,也就是不存在 lrwxrwxrwx 1 root root 14 Oct 22 09:06 /root/redhat.s -> centos-release [root@localhost ~]# cat /root/redhat.s #看不了/root/redhat.s链接文件 cat: /root/redhat.s: No such file or directory
为什么我们使用cp -d 复制链接文件会失败?那就要看cp -d 是如何复制软链接的。在上例中,我们打算将
/etc/redhat-release软链接复制到/root/redhat.s。在使用cp -d实际上是将原软链接中指针区代表原文件
下面命令可以看出其文件大小都为14,即centos-release
路径的字符串拷贝到新创建的/root/redhat.s中
字符串大小
[root@localhost ~]# ls -l /etc/redhat-release /root/redhat.s lrwxrwxrwx. 1 root root 14 Oct 17 08:48 /etc/redhat-release -> centos-release lrwxrwxrwx 1 root root 14 Oct 22 09:06 /root/redhat.s -> centos-release
当我们查看新建软链接/root/redhat.s时看到原文件路径是centos-release,就会到当前路径(/root/)
上查看centos-release文件,而实际上原文件在/etc/目录下,所以查看/root/redhat.s才会出现
/root/redhat.s: No such file or directory的错误。
根据这个原理我们可以推断,如果原链接文件存的是原文件的绝对路径的话,新建的链接文件就能找到原文件而不是报错,接下来我们实验一下。
#1. 先创建一个软链接/etc/redhat-release2,可知数据区存的是原文件的绝对路径/etc/centos-release [root@localhost ~]# ln -s /etc/centos-release /etc/redhat-release2 [root@localhost ~]# ls -l /etc/redhat-release2 lrwxrwxrwx 1 root root 19 Oct 22 09:37 /etc/redhat-release2 -> /etc/centos-release #2. 复制刚创建的软链接/etc/redhat-release2到/root/radhat2.s [root@localhost ~]# cp -d /etc/redhat-release2 /root/radhat2.s [root@localhost ~]# ls -l /root/radhat2.s lrwxrwxrwx 1 root root 19 Oct 22 09:41 /root/radhat2.s -> /etc/centos-release #3. 查看新软链接内容 [root@localhost ~]# cat /root/radhat2.s CentOS release 6.7 (Final)
cp -d 复制软链接时总结
1. 当原链接文件中存的是原文件的绝对路径:创建的新链接文件可在任何路径下。 2. 当原链接文件中存的是原文件的相对路径: 例1: 新链接文件在/root/link2 相对路径是 centos (来自原链接文件的指针数据区) 那么/root/centos就是原文件路径 例2: 新链接文件为/root/test/link2 相对路径为../centos 那么/root/centos为原文件路径 原文件路径找得到就ok,找不到就报错。
原创文章,作者:lirou,如若转载,请注明出处:http://www.178linux.com/53450