Linux and Networking

Linux and Networking

3.9 What processes are running?

To see what processes are running you should use: ps.

If you want that information to be constant, you must use the top command.

top command
top command

3.9.1 Killing processes

This possibility is used when for some reason a process remains “hung” in a terminal (be careful! it can remain “hung” a terminal, but not the rest of the Linux system).

 

kill -9 2993

 

This command will stop the chrome process.

 

REMEMBER:

The ‘root’ Super Administrator will be able to kill all the processes that other users are executing, likewise, the users will be able to kill their own processes, and no user will be able to kill another process other than his own.

The Demeter Project