CS155 Processes
&
, fg
, bg
, kill
)
but, these days, we usually just create another terminal window.
% ps PID TTY TIME CMD 3049379 ? 00:00:00 php-cgi 3049380 ? 00:00:00 bash 3049382 ? 00:00:00 ps % ps -H PID TTY TIME CMD 3049379 ? 00:00:00 php-cgi 3049380 ? 00:00:00 bash 3049384 ? 00:00:00 ps % ps -Hf UID PID PPID C STIME TTY TIME CMD cs155 3049379 942639 0 09:12 ? 00:00:00 /usr/bin/php-cgi cs155 3049380 3049379 0 09:12 ? 00:00:00 bash /tmp/pmwiki-bash-script3ALBQk cs155 3049386 3049380 0 09:12 ? 00:00:00 ps -Hf
ps
– list my running processes
-f
: give more information
-e
: list processes for everyone, not just this terminal
-H
: hierarchical (indented) output
nice
can be used to change the priority of your process.
nice my_prog