You Are Here: Home » Articles » How-To » Linux » OS » Tips & Tricks

How to kill a process in linux without knowing it's process id ?

By Debjit on September 7th, 2009 
Advertisement
When various daemons or processes freeze or hang up, they need to be forcefully terminated in order to stop the illegal operation or harm they may be causing to your system. The general procedure to kill or terminate any process on Linux is to first find out it's pid (Process Id) using a grep command on the ps -A command. This will tell us the pid of the process to be killed. Then this pid is passed as a parameter to the kill command to terminate the process.
But this is a very lengthy process involving two steps. A process can be easily terminated in just one single step, using the pkill command. You just need to know the name of the process to be killed. All you have to do is pass this process name as a parameter to the pkill command to kill or terminate your process. Simple enough, eh?
killing a process in linux without the pkill command is a lengthy process

killing a process in linux without the pkill command is a lengthy process

Killing processes with pkill command is short and smart!

Killing processes with pkill command is short and smart!

Advertisement







How to kill a process in linux without knowing it's process id ? was originally published on Digitizor.com on May 18, 2009 - 3:52 pm (Indian Standard Time)