Terminating A Process - Linux
Terminating A Process - Linux
The ps -aux command allows you to list all currently running processes on a Linux machine. However, the list of processes is often super long,
which makes finding a specific process pretty tough. To filter the processes you're interested in, you can pipe the output of ps through grep.
There are two "malicious" processes currently running on your machine, called "totally_not_malicious". You can run ps and grep to find them,
using this command:
To stop a process, you can use the kill command. You need to use sudo to have permission to stop them. You also need to specify the ID of the
process, which will likely be different on your machine than what's shown above (the ID is outlined in light blue):