Process Basics
Signals & Killing
Scheduling Jobs
Foreground/ Background
Process Management
200

What type of process has finished but still exists in the process table?

Zombie

200

What command kills a process by PID?

kill PID
200

What command runs a task once at a specified time?

at

200

What symbol starts a process in the background?

&

200

What command shows all processes and their PIDs?

ps ax

400

What is a rogue process?

A misbehaving or uncontrolled process

400

What is pkill used for?

kill processes by name

400

What daemon is used for repeating scheduled tasks?

cron

400

How do you bring a background job to the foreground?

fg

400

What command displays real-time process usage?

top

600

What type of process runs outside of the terminal?

Daemon

600

This kill signal send an interrupt signal to a process

SIGINT,  2

600

What files authorizes users for at and cron?

/etc/at.allow and /etc/cron.allow

600

What command moves a stopped job to the background?

bg

600

A nice value of -8 will do what to a process' priority

increase

800

What command can be used to view rogue processes

top

800

This is the default kill signal of the kill command

SIGTERM, 9

800

What command lists a user’s cron jobs?

crontab -l

800

What command lists background jobs?

jobs

800

What command can be used to find processes by using regular expressions

pgrep

1000

What is forking

When the parent BASH shell creates a new child BASH shell

1000

When a process receives a kill signal and refuses it. What kill signal must be sent to kill it

SIGKILL, absolute kill signal or 9

1000

What is the crontab format?

min hour dom month dow command

1000

What symbol must be used when deleting a background process

%

1000

What command starts a command with a specific nice value?

nice

M
e
n
u