Chapter 9 - Managing Linux Processes Flashcards
A number assigned to a process, used to determine how many time slices on the processor that process will receive; the higher the number, the lower the priority.
process priority
Used to give real-time information about the most active processes on the system; it can also be used to renice or kill processes.
top command
Sends kill signals to processes by process name.
killall command
A system process that is not associated with a terminal.
daemon process
Used to view, create, and manage scheduled tasks that run at a preset time in the future.
at command
A process that does not require the BASH shell to wait for its termination. Upon execution, the user receives the BASH shell prompt immediately.
background process
Used to list the PIDs of processes that match a regular expression or other criteria.
pgrep command
Used to send a kill signal to processes that match a regular expression or other criteria.
pkill command
The system daemon that executes tasks at a future time; it is configured with the at command.
at daemon (atd)
A file specifying tasks to be run by the cron daemon
cron table
A process that was started by another process (parent process).
child process
The system daemon that executes tasks repetitively in the future and that is configured using cron tables.
cron daemon (crond)
Used to send kill signals to a process by PID.
kill command
Used to obtain information about processes currently running on the system.
ps command
Displays processes according to their lineage, starting from the init daemon.
pstree command