中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問(wèn)手機(jī)版  

Linux常用命令|Linux培訓(xùn)學(xué)習(xí)|考試認(rèn)證|工資待遇與招聘,認(rèn)準(zhǔn)超級(jí)網(wǎng)工!

招聘|合作 登陸|注冊(cè)

網(wǎng)絡(luò)工程師培訓(xùn)

當(dāng)前位置:網(wǎng)絡(luò)工程師 > 技術(shù)課程 > linux > 熱點(diǎn)關(guān)注 > linux常用命令

Linux 命令之軟連接詳解

時(shí)間:2019-08-16

linux命令大全應(yīng)用_linux命令大全 重啟_linux命令大全

Linux 命令之軟連接詳解

1.軟連接的創(chuàng)建

創(chuàng)建測(cè)試文件及文件夾

[root@server6 ~]# mkdir test_chk

[root@server6 ~]# touch test_chk/test.txt

[root@server6 ~]# echo “hello spark” > test_chk/test.txt

[root@server6 ~]# cat test_chk/test.txt

hello spark

[root@server6 ~]# ll

總用量 84

-rw-------. 1 root root 1257 6月 16 01:17 anaconda-ks.cfg

drwxr-xr-x. 25 root root 4096 11月 1 10:28 azkabanJob

-rw-r–r--. 1 root root 67322 11月 4 10:24 azkabanJob.zip

drwxr-xr-x. 4 root root 37 7月 13 11:01 hadoop_temp

-rw-r–r--. 1 root root 54 7月 4 14:11 HelloLinux.txt

drwxr-xr-x. 2 root root 22 11月 4 10:41 test_chk

-rw-r–r--. 1 root root 67 10月 8 15:52 zookeeper.out

創(chuàng)建一個(gè)軟連接

注意創(chuàng)建的語(yǔ)法:ln -s是必須的,然后后面跟一個(gè)目標(biāo)文件夾,最后是一個(gè)當(dāng)前目錄的軟連接名。

linux命令大全應(yīng)用_linux命令大全_linux命令大全 重啟

[root@server6 ~]# ln -s test_chk/ test_chk_ln

[root@server6 ~]# ll

總用量 84

-rw-------. 1 root root 1257 6月 16 01:17 anaconda-ks.cfg

drwxr-xr-x. 25 root root 4096 11月 1 10:28 azkabanJob

-rw-r–r--. 1 root root 67322 11月 4 10:24 azkabanJob.zip

drwxr-xr-x. 4 root root 37 7月 13 11:01 hadoop_temp

-rw-r–r--. 1 root root 54 7月 4 14:11 HelloLinux.txt

drwxr-xr-x. 2 root root 22 11月 4 10:41 test_chk

lrwxrwxrwx. 1 root root9 11月 4 10:42 test_chk_ln -> test_chk/

-rw-r–r--. 1 root root 67 10月 8 15:52 zookeeper.out

[root@server6 ~]# cd test_chk_ln/

[root@server6 test_chk_ln]# ll

總用量 4

-rw-r–r--. 1 root root 12 11月 4 10:41 test.txt

[root@server6 test_chk_ln]# cat test.txt

hello spark

[root@server6 test_chk_ln]# ll

總用量 4

linux命令大全應(yīng)用_linux命令大全_linux命令大全 重啟

-rw-r–r--. 1 root root 12 11月 4 10:41 test.txt

[root@server6 test_chk_ln]# cat test.txt

 上一個(gè)教程:Linux curl命令詳解