无法删除用户:用户 test 当前被进程 xxx 使用

无法删除用户:用户 test 当前被进程 xxx 使用

我正在尝试删除用户:

pgrep -u test
ps -fp $(pgrep -u test)
killall -KILL -u test
userdel -r test

但最后一个命令总是返回

userdel: user test is currently used by process xxx

哪里xxx总是不同的。

相关内容