Apps Flashcards
(11 cards)
1
Q
For setting up the box as a web server
A
python3 http.server
2
Q
For transferring files over SSH
A
SCP (works like cp)
3
Q
For viewing user processes
A
ps
4
Q
For viewing all processes
A
ps aux
5
Q
For viewing processes in real time
A
top
6
Q
Kill process allowing cleanup beforehand
A
kill -s SIGTERM
7
Q
Kill process with no cleanup
A
kill -s SIGKILL
8
Q
Stop/suspend using kill
A
kill -s SIGSTOP
9
Q
For interacting with systemd
A
systemctl
10
Q
For backgrounding a process. (2)
A
<command></command>
&
Ctl + Z
11
Q
For foregrounding a process
A
fg