linux中裝置的訪問
umount 裝置|掛載點
**如出現以下情況:
[[email protected] ~]# umount /dev/sdb1
umount: /home/kiosk/Desktop/photo: target is busy.
(In some cases useful info about processes that use
the device is found by lsof(8) or fuser(1))
解決:fuser -kvm 裝置|掛載點 ##-k kill ,-v顯示詳細資訊,-m掃描裝置
**進入/mnt目錄(此時/dev/sdb1掛載在此處),解除安裝時出現錯誤,因為裝置正在使用,這時可以用fuser命令殺掉使用者對該裝置的掛載程序(因為我是用普通使用者的shall切換到超級使用者的,所以超戶的bash程序也被殺掉,需要再次切換到超級使用者),就可以正常解除安裝裝置了
2.軟硬連結
ls -l ##檢視檔案節點號
ln -s /file /file1 ##建立軟連結,多個結點對應一個數據區
ln /file /file1 ##建立硬連結,一個結點對應多個數據區