您的位置:首页 > 运维架构 > Linux

Linux下面究竟什么是symbolic link, 怎样创建一个symbolic link

2006-12-09 20:33 603 查看
A symbolic link, also termed a soft link, is a special kind of file that points to another file, much like a shortcut in Windows or a Macintosh alias. Unlike a hard link, a symbolic link does not contain the data in the target file. It simply points to another entry somewhere in the file system. This difference gives symbolic links certain qualities that hard links do not have, such as the ability to link to directories, or to files on remote computers networked through NFS. Also, when you delete a target file, symbolic links to that file become unusable, whereas hard links preserve the contents of the file.

To create a symbolic link in Unix, at the Unix prompt, enter the following command:

ln -s source_file myfile

Replace
source_file
with the name of the existing file for which you want to create the symbolic link (this file can be any existing file or directory across the file systems). Replace
myfile
with the name of the symbolic link. The
ln
command then creates the symbolic link. After you've made the symbolic link, you can perform an operation on or execute
myfile
, just as you could with the
source_file
. You can use normal file management commands (e.g.,
cp
,
rm
) on the symbolic link.

Note: If you delete the source file or move it to a different location, your symbolic file will not function properly. You should either delete or move it. If you try to use it for other purposes (e.g., if you try to edit or execute it), the system will send a "file nonexistent" message.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐