|
Processes
Program running on a system is a process. Linux is a multi-processing
(multi-tasking) system.
Attributes: Lifetime, PID, PPID, UID, GID, env variables, CWD.
Process with PID=1 is init
Monitoring: ps (for full listing, use ps -ef or ps -aux)
top, pstree
Signal a running processes with PID=1009:
Process can be started with lower and higher priority through nice
(range: -20 highest, +19 lowest)
Process can be re-niced at run time:
Suspend interactive process and move it to the background:
Ctrl-Z
Move a background process to the foreground:
|
|