如何在ubuntu 15.04中删除已删除用户的主文件夹

时间:2016-02-29 09:52:51

标签: linux

我已使用以下命令

删除了用户,即hduser
sudo userdel hduser

在给出上述命令后,我刚刚使用grep命令检查是否完全删除了hduser。

I have listed whether hduser has deleted completely or not then i got the below error message

So when I tried to delete hduser in home directory I got error message saying that cannot remove device or resouce busy as below

那么我该如何删除主目录中的hduser呢?

2 个答案:

答案 0 :(得分:1)

“hduser”文件夹在我的主目录中被删除,只需通过以root身份登录来提供以下命令。我的错误是我没有以root用户身份登录。

root@system3:/home# sudo rm -rf /home/hduser/

答案 1 :(得分:0)

默认情况下,userdel不会删除主目录。

如果您正在寻找userdel,请执行以下操作:

userdel -r hduser

如果您明确要删除它,可以执行以下操作:

/bin/rm -rf /home/hduser

更新

  1. 使用该文件查找进程: 使用以下任何命令都会告诉你

    fuser filename
    
    lsof filename
    
  2. 如果没有用,请终止该过程:

    kill -9 processid