Answers:
要仅查看特定用户拥有的进程,请使用以下命令:
top -U [username]
将[用户名]替换为所需的用户名
如果要使用ps
ps -u [username]
要么
ps -ef | grep <username>
要么
ps -efl | grep <username>
用于扩展列表
查看man ps页面以了解选项
另一种选择是使用pstree wchich打印用户的进程树
pstree <username or pid>
top -U [username]
,top -u [username]
而是为我工作。Debian9。因此,如果其他人在-U表单上遇到错误,请尝试使用小写字母。
试试这个
ps -fp $(pgrep -u <username>)
ps -u <username>
如现有答案中所述(或者ps -fu <username>
如果您需要过程详细信息),这比更好吗?
ps -u username
。大多数命令都有一个手册页,您可以使用阅读man the-command
。