RE: Beginning Linux – User and Process Management 01-12-2016, 11:45 PM
#3
What about killing processes? Just gonna include this since you didn't, good tutorial nevertheless I guess -
To kill a process by its PID
To kill a process by its name
Also, there are many flags you can include in a kill command to make it do different things.
To kill a process by its PID
Code:
$ kill {pid}To kill a process by its name
Code:
$ killall {name here}Also, there are many flags you can include in a kill command to make it do different things.

![[+]](https://sinister.ly/images/modern/collapse_collapsed.png)