Linux怎麼取消軟鏈結

2021-07-29 21:54:37 字數 2393 閱讀 7605

linux下取消軟連線,做個案例來說明:

1.先建立乙個軟連線

1

2

3

4

5

6

7

8

9

10

11

12

13

[[email protected]test]# ls -il

總計  0

1491138 -rw-r–r– 1 root root 48 07-14 14:17 file1

1491139 -rw-r–r– 2  root root 0 07-14 14:17 file2

1491139 -rw-r–r– 2 root root 0 07-14 14:17  file2hand

#建立file1和file1soft軟連線

[[email protected]test]# ln -s file1  file1soft

[[email protected]test]# ls -il

總計 0

1491138 -rw-r–r– 1 root  root 48 07-14 14:17 file1

1491140 lrwxrwxrwx 1 root root 5 07-14 14:24  file1soft -> file1

1491139 -rw-r–r– 2 root root 0 07-14 14:17  file2

1491139 -rw-r–r– 2 root root 0 07-14 14:17 file2hand

2.刪除上面建立的軟連線

1

2

3

4

5

6

7

8

9

10

11

12

13

[[email protected]test]# ls -il

總計  0

1491138 -rw-r–r– 1 root root 0 07-14 14:17 file1

1491140 lrwxrwxrwx 1  root root 5 07-14 14:24 file1soft -> file1

1491139 -rw-r–r– 2 root root 0  07-14 14:17 file2

1491139 -rw-r–r– 2 root root 0 07-14 14:17  file2hand

#刪除軟連線

[[email protected]test]# rm -rf file1soft

[[email protected]test]#  ls -il

總計 0

1491138 -rw-r–r– 1 root root 0 07-14 14:17 file1

1491139  -rw-r–r– 2 root root 0 07-14 14:17 file2

1491139 -rw-r–r– 2 root root 0 07-14  14:17 file2hand

刪除軟鏈結 確實是用rm 但是!!!

rm -fr ***x/ 加了個/ 這個是刪除資料夾

rm -fr ***x 沒有/ 這個是刪除軟鏈結

linux硬鏈結 軟鏈結

1.linux鏈結概念 linux鏈結分兩種,一種被稱為硬鏈結 hard link 另一種被稱為符號鏈結 symbolic link 預設情況下,ln命令產生硬鏈結。硬連線 硬連線指通過索引節點來進行連線。在linux的檔案系統中,儲存在磁碟分割槽中的檔案不管是什麼型別都給它分配乙個編號,稱為索引節...

linux系統鏈結 軟鏈結

軟鏈結 soft link 也稱為符號鏈結 symbolic link linux裡的軟鏈結檔案就類似windows系統中的快捷方式。linux裡的軟鏈結檔案實際上是乙個特殊的檔案,檔案型別是l。軟鏈結檔案實際上可以理解為乙個文字檔案,這個檔案中包含有軟鏈結指向另一原始檔的位置資訊內容,因此,通過訪...

linux硬鏈結軟鏈結

1.linux鏈結概念 linux鏈結分兩種,一種被稱為硬鏈結 hard link 另一種被稱為符號鏈結 symbolic link 預設情況下,ln命令產生硬鏈結。硬連線 硬連線指通過索引節點來進行連線。在linux的檔案系統中,儲存在磁碟分割槽中的檔案不管是什麼型別都給它分配乙個編號,稱為索引節...