Linux文件系统命令 ln
Posted Spider-spiders
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux文件系统命令 ln相关的知识,希望对你有一定的参考价值。
命令:ln
功能:Linux下文件的链接功能,区别,软链接需要-s选项,硬链接不需要。相同的是,都是同步变化的,不过软链接不需要占用空间,硬链接占用空间
用法:软链接:ln -s 源文件 目标文件
硬链接:ln 源文件 目标文件
eg:
[email protected]6380-MT:~/test1$ ln ren ../test2/ren #硬链接 [email protected]-HP-Compaq-Pro-6380-MT:~/test1$ [email protected]-HP-Compaq-Pro-6380-MT:~/test1$ ls ../test2/ ren [email protected]-HP-Compaq-Pro-6380-MT:~/test1$ ls -l ../test2/ total 4 -rw-rw-r-- 2 renjg renjg 15 9月 1 13:41 ren #文件占用磁盘大小 [email protected]-HP-Compaq-Pro-6380-MT:~/test1$ ls -l total 8 -rw-rw-r-- 1 renjg renjg 15 9月 1 13:41 jin -rw-rw-r-- 2 renjg renjg 15 9月 1 13:41 ren [email protected]-HP-Compaq-Pro-6380-MT:~/test1$ ln -s jin ../test2/jin #软链接 [email protected]-HP-Compaq-Pro-6380-MT:~/test1$ [email protected]-HP-Compaq-Pro-6380-MT:~/test1$ ls -l ../test2/ total 4 lrwxrwxrwx 1 renjg renjg 3 9月 1 13:43 jin -> jin #并不占用磁盘大小 -rw-rw-r-- 2 renjg renjg 15 9月 1 13:41 ren [email protected]-HP-Compaq-Pro-6380-MT:~/test1$ ls -l total 8 -rw-rw-r-- 1 renjg renjg 15 9月 1 13:41 jin -rw-rw-r-- 2 renjg renjg 15 9月 1 13:41 ren [email protected]-HP-Compaq-Pro-6380-MT:~/test1$
以上是关于Linux文件系统命令 ln的主要内容,如果未能解决你的问题,请参考以下文章