How can I delete a user in linux when the system says its currently used in a process

后端 未结 5 1850
逝去的感伤
逝去的感伤 2021-01-31 14:28

I am trying to delete a user I created on ubuntu.

However when I use the following command:

userdel -r cafe_fixer

I get the following m

5条回答
  •  被撕碎了的回忆
    2021-01-31 14:52

    Only solution that worked for me

    $ sudo killall -u username && sudo deluser --remove-home -f username
    

    The killall command is used if multiple processes are used by the user you want to delete.

    The -f option forces the removal of the user account, even if the user is still logged in. It also forces deluser to remove the user's home directory and mail spool, even if another user uses the same home directory.

    Please confirm that it works in the comments.

提交回复
热议问题