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

 訪問手機(jī)版  

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

招聘|合作 登陸|注冊

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

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

linux命令大全之ln命令詳解(創(chuàng)建軟鏈接和硬鏈接)

時間:2019-08-10

linux命令大全 ssh_linux命令大全_linux命令大全 root

命令:ll

輸出:

代碼如下:

[root@localhost test]# ll

lrwxrwxrwx 1 root root11 12-07 16:01 link2013 -> log2013.log

-rw-r--r-- 2 root bin61 11-13 06:03 ln2013

-rw-r--r-- 2 root bin61 11-13 06:03 log2013.log

[root@localhost test]# rm -rf log2013.log

[root@localhost test]# ll

lrwxrwxrwx 1 root root11 12-07 16:01 link2013 -> log2013.log

-rw-r--r-- 1 root bin61 11-13 06:03 ln2013

[root@localhost test]# touch log2013.log

[root@localhost test]# ll

lrwxrwxrwx 1 root root11 12-07 16:01 link2013 -> log2013.log

-rw-r--r-- 1 root bin61 11-13 06:03 ln2013

---xrw-r-- 1 root bin 302108 11-13 06:03 log2012.log

-rw-r--r-- 1 root root0 12-07 16:19 log2013.log

[root@localhost test]# vi log2013.log

2013-01

2013-02

2013-03

2013-04

2013-05

2013-06

linux命令大全 ssh_linux命令大全 root_linux命令大全

2013-07

2013-08

2013-09

2013-10

2013-11

2013-12[root@localhost test]# ll

lrwxrwxrwx 1 root root11 12-07 16:01 link2013 -> log2013.log

-rw-r--r-- 1 root bin61 11-13 06:03 ln2013

-rw-r--r-- 1 root root96 12-07 16:21 log2013.log

[root@localhost test]# cat link2013

2013-01

2013-02

2013-03

2013-04

2013-05

2013-06

2013-07

2013-08

2013-09

2013-10

2013-11

2013-12

[root@localhost test]# cat ln2013

hostnamebaidu=baidu.com

linux命令大全 ssh_linux命令大全_linux命令大全 root

hostnamesina=sina.com

hostnames=true

說明:

1.源文件被刪除后linux命令大全,并沒有影響硬鏈接文件;軟鏈接文件在centos系統(tǒng)下不斷的閃爍,提示源文件已經(jīng)不存在

2.重建源文件后,軟鏈接不在閃爍提示,說明已經(jīng)鏈接成功,找到了鏈接文件系統(tǒng);重建后,硬鏈接文件并沒有受到源文件影響,硬鏈接文件的內(nèi)容還是保留了刪除前源文件的內(nèi)容,說明硬鏈接已經(jīng)失效

實例4:將文件鏈接為另一個目錄中的相同名字

命令:ln log2013.log test3

輸出:

代碼如下:

[root@localhost test]# ln log2013.log test3

[root@localhost test]# ll

lrwxrwxrwx 1 root root11 12-07 16:01 link2013 -> log2013.log