Linux如何解除安裝掛載檔案

2021-09-02 03:42:20 字數 848 閱讀 7364

在我們進行遠端檔案操作的時候,我們經常會出現檔案服務出現解除安裝掉哦情況。例如

umount /mnt/net1

umount: /mnt/net1: device is busy.

(in some cases useful info about processes that use

the device is found by lsof(8) or fuser(1))

這種問題解決方案:

一、查詢使用這個檔案的程序和命令,具體的操作**

# lsof |grep /mnt/net1

lsof: warning: can't stat() cifs file system /mnt/net1

output information may be incomplete.

bash 18841 root cwd unknown /mnt/net1/tddownload/軟體 (stat: no such device)

二、然後執行ps命令可以查詢執行此程序的命令

# ps -ef|grep 18841

root 18841 18839 0 nov29 pts/2 00:00:00 /bin/bash -l

root 29496 25604 0 16:26 pts/0 00:00:00 grep 18841

三、強行結束無關程序

# kill -9 18841

四、然後解除安裝相關掛載

# umount /mnt/net1

五、然後可以在功過mount命令進行檢視。

擴充套件學習

掌握mount高階應用

掌握ps高階應用

掌握lsof/fuser高階應用

Linux如何解除安裝掛載檔案

在我們進行遠端檔案操作的時候,我們經常會出現檔案服務出現解除安裝掉哦情況。例如 umount mnt net1 umount mnt net1 device is busy.in some cases useful info about processes that use the device i...

Linux如何解除安裝掛載檔案

在我們進行遠端檔案操作的時候,我們經常會出現檔案服務出現解除安裝掉哦情況。例如 umount mnt net1 umount mnt net1 device is busy.in some cases useful info about processes that use the device i...

Linux如何解除安裝正在執行的掛載檔案

在我們進行遠端檔案操作的時候,我們經常會出現檔案服務出現解除安裝掉哦情況。例如 umount mnt net1 umount mnt net1 device is busy.in some cases useful info about processes that use the device i...