当我使用
ps -u root
Ubuntu 中的命令显示以下输出?
PID TTY TIME CMD
1 ? 00:00:02 init
2 ? 00:00:00 kthreadd
3 ? 00:00:00 ksoftirqd/0
5 ? 00:00:00 kworker/0:0H
7 ? 00:00:02 rcu_sched
8 ? 00:00:00 rcu_bh
9 ? 00:00:00 migration/0
…
vhand、bdflush、sched 的进程在哪里?我如何知道这些流程?
答案1
我假设,你不只有 9 个进程。
您可以使用,例如:
pgrep sched
pgrep bdflush
或者
ps -u root | grep sched
ps -u root | grep bdflush
如果没有输出,则进程未运行。