7/18/2008

End unresponsive programs in Linux

How do i end unresponsive programs in Linux?

Use the command 'ps' to list all running processes (do a 'man ps' for all possible switches). After that, use 'kill' to kill the process in question. 'kill -9' will force termination. Do a 'man kill' for more details on using it.

0 comments: