云計(jì)算學(xué)習(xí)路線教程大綱課件:文件鏈接
創(chuàng)新互聯(lián)公司堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站建設(shè)、做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的鄂城網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
====================================================================================
軟鏈接 或 符號(hào)鏈接
硬鏈接
一、符號(hào)鏈接 symbolic link 軟連接
[root@tianyun ~]# echo 111 > /file1
[root@tianyun ~]# ln -s /file1 /home/file11
[root@tianyun ~]# ll /home/file11
lrwxrwxrwx 1 root root 6 Dec 20 17:58 /home/file11 -> /file1
[root@tianyun ~]# ll -i /file1 /home/file11
4599081 -rw-r--r-- 1 root root 4 Dec 20 17:57 /file1
135 lrwxrwxrwx 1 root root 6 Dec 20 17:58 /home/file11 -> /file1
[root@tianyun ~]# cat /file1
111
[root@tianyun ~]# cat /home/file11
111
[root@tianyun ~]# rm -rf /file1
[root@tianyun ~]# ll /home/file11
lrwxrwxrwx 1 root root 6 Dec 20 17:58 /home/file11 -> /file1
二、硬鏈接
4 /etc/file1 4 /usr/file1-h
[root@tianyun ~]# echo 222 > /file2
[root@tianyun ~]# ln /file2 /file2-h2
[root@tianyun ~]# ln /file2 /home/file2-h3
ln: failed to create hard link ‘/home/file2-h3’ => ‘/file2’: Invalid cross-device link
[root@tianyun ~]# ln /file2 /etc/file2-h4
[root@tianyun ~]# echo 222 > /file2
[root@tianyun ~]# ln /file2 /file2-h2
[root@tianyun ~]# ln /file2 /home/file2-h3
ln: failed to create hard link ‘/home/file2-h3’ => ‘/file2’: Invalid cross-device link
[root@tianyun ~]# ln /file2 /etc/file2-h4
[root@tianyun ~]# ll -i /file2 /file2-h2 /etc/file2-h4
4599081 -rw-r--r-- 3 root root 4 Dec 20 18:03 /etc/file2-h4
4599081 -rw-r--r-- 3 root root 4 Dec 20 18:03 /file2
4599081 -rw-r--r-- 3 root root 4 Dec 20 18:03 /file2-h2
把一些重要文件做多個(gè)鏈接
注:硬鏈接
不能跨文件系統(tǒng)(分區(qū))
[root@tianyun home]# ln /home/ /mnt
ln: “/home/”: 不允許將硬鏈接指向目錄
警告:刪除目錄軟鏈時(shí):
rm -rf /var/it1000/ 刪除目錄下的文件
rm -rf /var/it1000 僅刪除鏈接文件本身
[root@tianyun ~]# ln -s /etc /home/
[root@tianyun ~]# rm -rf /home/etc/
====================================================================================