CS155 Processes
&
, fg
, bg
, kill
)
but, these days, we usually just create another terminal window.
% ps PID TTY TIME CMD 2020114 ? 00:00:00 php-cgi 2020123 ? 00:00:00 bash 2020126 ? 00:00:00 ps % ps -H PID TTY TIME CMD 2020114 ? 00:00:00 php-cgi 2020123 ? 00:00:00 bash 2020129 ? 00:00:00 ps % ps -Hf UID PID PPID C STIME TTY TIME CMD cs155 2020114 3044511 0 02:37 ? 00:00:00 /usr/bin/php-cgi cs155 2020123 2020114 0 02:37 ? 00:00:00 bash /tmp/pmwiki-bash-script4R8QuL cs155 2020131 2020123 0 02:37 ? 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