-6

我在 Shell Prompt 上给出以下命令:$ps -u 0

我无法理解相同的输出是什么。任何人都可以详细说明吗?

4

1 回答 1

2

复制自 man ps:

   -u userlist     Select by effective user ID (EUID) or name.
                   This selects the processes whose effective user name or ID is in userlist. The
                   effective user ID describes the user whose file access permissions are used by the
                   process (see geteuid(2)). Identical to U and --user.

含义:它打印以用户 0(root)启动的所有进程
有关更多信息,请参见 man ps

编辑:要查看所有正在运行的进程,而不仅仅是来自一个用户,您可以使用“ps ax”

于 2013-01-27T16:02:10.020 回答