You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Means show 'all processes for all users'. You might be wondering what the x means? The x is a specifier that means 'any of the users'. So you could type this:
8
+
9
+
ps -auroot
10
+
11
+
Which displays all the root processes, or
12
+
13
+
ps -auel
14
+
15
+
which displays all the processes from user el. The technobabble in the 'man ps' page is: "ps -aux prints all processes owned by a user named 'x' as well as printing all processes that would be selected by the -a option.
16
+
17
+
18
+
19
+
20
+
$ ps aux
21
+
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
0 commit comments