在不同目录中创建链接(Linux/UNIX)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在不同目录中创建链接(Linux/UNIX)相关的知识,希望对你有一定的参考价值。
When using `ln` to create a link in a different directory, the semantics of creating hard and symbolic links differ. That is because a hard link contains a direct reference to its target's data, while a symbolic link is just a string containing a (possibly relative) path. You can get around this by using absoute paths, but then moving a subtree will break the symlink.Just to recap, the other main differences between hard and symbolic links: Symbolic links can be left dangling when their target is removed; hard links cannot. Symbolic links can point to files on other partitions or disks, while hard links cannot.
# create hard link in subdir which points to ../otherdir/file ln ../otherdir/file subdir/link # create symbolic link in subdir which points to ../otherdir/file ln -s ../../otherdir/file subdir/symlink # note the additional "../" which compensates the subdir
以上是关于在不同目录中创建链接(Linux/UNIX)的主要内容,如果未能解决你的问题,请参考以下文章
如何在像“ln -s TARGET DIRECTORY”这样的目录中创建符号链接?