Linux如何解除安裝掛載檔案

2021-07-02 03:49:22 字數 1159 閱讀 2359

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

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))

這種問題解決方案:

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

[root@localhost ~]# 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命令可以查詢執行此程序的命令

[root@localhost ~]# 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

三、強行結束無關程序

[root@localhost ~]# kill -9 18841

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

[root@localhost ~]# umount /mnt/net1

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

六、

這個有4個都是沒有掛載的

就要敲4個umount /home/zhao/,這個命令。

才能全部刪掉。

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...