Process

無法刪除文件、設備或資源繁忙

  • October 5, 2017

我嘗試刪除一個文件。最相關的答案可以在這裡找到,但我沒有找到運氣。這是原始問題:

maxgitt@mgpc:~$ sudo rm -rf /var/lib/docker/
rm: cannot remove '/var/lib/docker/aufs': Device or resource busy

為了找到該過程,我嘗試了以下方法:

maxgitt@mgpc:~$ sudo lsof +D /var/lib/docker/
lsof: WARNING: can't stat() fuse.gvfsd-fuse file system /run/user/1000/gvfs
     Output information may be incomplete.

所以我嘗試在上述答案的評論中找到,但一無所獲,

maxgitt@mgpc:~$ /sbin/fuser -m /var/lib/docker/
bash: /sbin/fuser: No such file or directory

ps程序都找不到

maxgitt@mgpc:~$ ps aux | grep docker
maxgitt   5349  0.0  0.0  14224  1024 pts/18   S+   15:21   0:00 grep --color=auto docker
maxgitt@mgpc:~$ 

關於如何殺死這個神秘程序的任何幫助都會很棒。

它仍然安裝。我敢打賭,如果你跑,你會看到的mount。如果是這樣執行以下

# umount /var/lib/docker/aufs
# rm -rf /var/lib/docker

引用自:https://serverfault.com/questions/877123