命令: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$
时间: 2024-11-03 21:16:32