Processes Flashcards
1
Q
ps
A
Display process status
2
Q
ps -e
A
See all running and non-running processes
3
Q
ps -f
A
Full format listing of processes
4
Q
ps -u username
A
See the processes being run by a specific username
5
Q
ps -p pid
A
See the processes ids
6
Q
ps -eH or ps -e —forest
A
Prints processes in a tree structure
7
Q
bg process
A
Moves a suspended process to the background
8
Q
fg process
A
Moves a process ti the foreground
9
Q
kill
A
Kill a process by targeting its PID
10
Q
jobs
A
List all jobs