Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> 關於Linux >> Linux ln命令操作指南

Linux ln命令操作指南

日期:2017/1/25 10:41:20      編輯:關於Linux

  ln是Linux系統中一個重要的命令,能夠為文件建立鏈接,保持鏈接文件的同步性,下面小編就給大家介紹下Linux下如何使用ln命令,通過實例來詳細了解。

 Linux ln命令操作指南

  1. 使用ln命令給檔案創建symbolic link。

  linux系統下的symbolic link類似於windows系統的快捷方式一樣。

  使用ls命令查看,可以看到新創建的symbolic link有獨立的inode,也就是symbolic link會占用一個inode,但是其實際內容仍然是指向

  源文件所指向的block區域。

  # touch /tmp/file

  # ls -lhi /tmp/file

  3441 -rw-r--r-- 1 root root 0 Jan 1 00:09 /tmp/file

  #

  # ln -fs /tmp/file /tmp/symbolic_link

  # ls -lhi /tmp/symbolic_link

  3647 lrwxrwxrwx 1 root root 9 Jan 1 00:10 /tmp/symbolic_link -》 /tmp/file

  #

  2. 刪除symbolic link文件,實際上就是刪除這個inode,而不會影響到源文件所指向的block區域;

  而如果刪除了源文件,那這個symbolic link文件就基本上沒用了。

  # echo “link test” 》 /tmp/file

  # cat /tmp/file

  link test

  #

  # rm /tmp/symbolic_link

  # cat /tmp/file

  link test

  #

  # ln -fs /tmp/file /tmp/symbolic_link

  #

  # rm /tmp/file

  # cat /tmp/symbolic_link

  cat: can‘t open ’/tmp/symbolic_link‘: No such file or directory

  #

  # ls -lhi /tmp/symbolic_link

  7357 lrwxrwxrwx 1 root root 9 Jan 1 00:22 /tmp/symbolic_link -》 /tmp/file

  #

  3. 使用ln命令創建hard link。

  可以看到,創建hard link是使用同一個inode,而copy了一份源文件的block區域出來。

上一頁12下一頁共2頁

Copyright © Windows教程網 All Rights Reserved