``` [root@hf-01 ~]# ls -l /bin 這個/bin,就是一個軟連接文件,真正是在/usr/bin/下 lrwxrwxrwx. 1 root root 7 8月 21 05:03 /bin -> usr/bin [root@hf-01 ~]# /bin/ls 11.txt 123 234 2.txt 33.txt anaconda-ks.cfg.1 ha.txt hf [root@hf-01 ~]# /usr/bin/ls 會發現和/bin/ls是一個軟連接文件 11.txt 123 234 2.txt 33.txt anaconda-ks.cfg.1 ha.txt hf ```
在/lib64/目錄中軟連接文件最多 [root@hf-01 ~]# ls -l /lib64/
軟連接就像是windows中的快捷方式,能夠很大程度的節省磁盤空間node
好比要找一個文件,必需要在/tmp/123/12/1.txt,而自己這個1.txt文件放到了/root/123/這個目錄下 而這個程序必需要在/tmp/12/目錄下找到1.txt文件 方法一:能夠拷貝一份到該目錄下,但如果文件更改後,就會繼續要拷貝,因此很麻煩。 方法二:給/root/123/1.txt作一個軟連接
[root@hf-01 ~]# ls 11.txt 123 234 2.txt 33.txt anaconda-ks.cfg.1 ha.txt hf [root@hf-01 ~]# cd /tmp/ [root@hf-01 tmp]# ls aminglinux amning mysql.sock user1 yum.log yunwei [root@hf-01 tmp]# ln -s /tmp/yum.log /root/123/yum.log [root@hf-01 tmp]# ls -l /root/123/ 這樣就造成了一個軟連接文件 總用量 0 lrwxrwxrwx. 1 root root 12 10月 30 05:44 yum.log -> /tmp/yum.log
[root@hf-01 tmp]# ln -s /tmp/amning/ /root/amning111 [root@hf-01 tmp]# ls -l !$ ls -l /root/amning111 lrwxrwxrwx. 1 root root 12 10月 30 05:51 /root/amning111 -> /tmp/amning/
[root@hf-01 tmp]# ls -l 總用量 4 -rw-r--r--. 1 root root 0 10月 30 06:09 aa.log srwxrwxrwx. 1 mysql mysql 0 10月 30 04:49 mysql.sock drwxrwxrwx. 2 user1 user1 6 10月 27 09:07 user1 [root@hf-01 tmp]# ln -s aa.log ss.log [root@hf-01 tmp]# ls -l 總用量 4 -rw-r--r--. 1 root root 0 10月 30 06:09 aa.log srwxrwxrwx. 1 mysql mysql 0 10月 30 04:49 mysql.sock lrwxrwxrwx. 1 root root 6 10月 30 06:13 ss.log -> aa.log
[root@hf-01 ~]# cd /tmp/ [root@hf-01 tmp]# ls -l 總用量 4 drwxr-xr-x. 4 user1 hanfeng 53 10月 30 06:01 aminglinux lrwxrwxrwx. 1 root root 6 10月 30 06:13 ss.log -> aa.log [root@hf-01 tmp]# mv ss.log aminglinux/ [root@hf-01 tmp]# cd aminglinux [root@hf-01 aminglinux]# ls -l 總用量 0 drwxr-xr-x. 4 user1 hanfeng 31 10月 25 06:55 aming2 lrwxrwxrwx. 1 root root 6 10月 30 06:13 ss.log -> aa.log 這裏會發現aa.log在飄紅閃爍,這是由於這個文件不存在
[root@hf-01 ~]# df -h 查看磁盤分區狀況 文件系統 容量 已用 可用 已用% 掛載點 /dev/sda3 18G 2.4G 16G 14% / devtmpfs 489M 0 489M 0% /dev tmpfs 494M 0 494M 0% /dev/shm tmpfs 494M 6.7M 487M 2% /run tmpfs 494M 0 494M 0% /sys/fs/cgroup /dev/sda1 197M 75M 123M 38% /boot