<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: How to Kill a Running Process in Ubuntu (or any Linux distro)</title>
	<atom:link href="http://productivelinux.com/2009/02/12/how-to-kill-a-running-process-in-ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://productivelinux.com/2009/02/12/how-to-kill-a-running-process-in-ubuntu/</link>
	<description>Productivity tips &#38; tricks for the Linux desktop</description>
	<pubDate>Mon, 22 Mar 2010 04:28:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: nonamw</title>
		<link>http://productivelinux.com/2009/02/12/how-to-kill-a-running-process-in-ubuntu/comment-page-1/#comment-3635</link>
		<dc:creator>nonamw</dc:creator>
		<pubDate>Wed, 22 Apr 2009 17:47:36 +0000</pubDate>
		<guid isPermaLink="false">http://productivelinux.com/?p=513#comment-3635</guid>
		<description>sudo killall -9 firefox</description>
		<content:encoded><![CDATA[<p>sudo killall -9 firefox</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nathan</title>
		<link>http://productivelinux.com/2009/02/12/how-to-kill-a-running-process-in-ubuntu/comment-page-1/#comment-2969</link>
		<dc:creator>nathan</dc:creator>
		<pubDate>Mon, 16 Feb 2009 15:59:47 +0000</pubDate>
		<guid isPermaLink="false">http://productivelinux.com/?p=513#comment-2969</guid>
		<description>@factotum218 - edited the headline to make things more clear. Thanks!</description>
		<content:encoded><![CDATA[<p>@factotum218 - edited the headline to make things more clear. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: factotum218</title>
		<link>http://productivelinux.com/2009/02/12/how-to-kill-a-running-process-in-ubuntu/comment-page-1/#comment-2965</link>
		<dc:creator>factotum218</dc:creator>
		<pubDate>Mon, 16 Feb 2009 04:48:20 +0000</pubDate>
		<guid isPermaLink="false">http://productivelinux.com/?p=513#comment-2965</guid>
		<description>You know what would be super cool and awsome? If you would somehow get the message across in the headline that this is for linux in general and not just a specific distribution.

Thanks!</description>
		<content:encoded><![CDATA[<p>You know what would be super cool and awsome? If you would somehow get the message across in the headline that this is for linux in general and not just a specific distribution.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BeeGee</title>
		<link>http://productivelinux.com/2009/02/12/how-to-kill-a-running-process-in-ubuntu/comment-page-1/#comment-2942</link>
		<dc:creator>BeeGee</dc:creator>
		<pubDate>Thu, 12 Feb 2009 18:37:26 +0000</pubDate>
		<guid isPermaLink="false">http://productivelinux.com/?p=513#comment-2942</guid>
		<description>pkill  works fine in kubuntu ...</description>
		<content:encoded><![CDATA[<p>pkill  works fine in kubuntu &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JakeT</title>
		<link>http://productivelinux.com/2009/02/12/how-to-kill-a-running-process-in-ubuntu/comment-page-1/#comment-2940</link>
		<dc:creator>JakeT</dc:creator>
		<pubDate>Thu, 12 Feb 2009 15:43:13 +0000</pubDate>
		<guid isPermaLink="false">http://productivelinux.com/?p=513#comment-2940</guid>
		<description>I've always used:

killall firefox  

or done it from htop (find the process, hit f6 or some such to kill).

It's not foolproof, but it works most of the time.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve always used:</p>
<p>killall firefox  </p>
<p>or done it from htop (find the process, hit f6 or some such to kill).</p>
<p>It&#8217;s not foolproof, but it works most of the time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Damien</title>
		<link>http://productivelinux.com/2009/02/12/how-to-kill-a-running-process-in-ubuntu/comment-page-1/#comment-2939</link>
		<dc:creator>Damien</dc:creator>
		<pubDate>Thu, 12 Feb 2009 13:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://productivelinux.com/?p=513#comment-2939</guid>
		<description>I find it easier to grep for the application you're looking for rather than search through the whole output of ps aux. Example: ps aux &#124; grep firefox

Also, if you want to kill all instances of Firefox (or any other application you happen to know the 'proper' name of, use killall. Example: killall firefox

Also, using -9 isn't recommended (I can't remember why). It's better to try kill without it and if that fails, use -9.

Also (this is the last one I promise), there is xkill. I have it in my quick links on my taskbar - if a GUI application is playing up, just click the xkill application and then use the mouse to click on the rouge application. Poof - gone!

Hope these help somebody,
Damien</description>
		<content:encoded><![CDATA[<p>I find it easier to grep for the application you&#8217;re looking for rather than search through the whole output of ps aux. Example: ps aux | grep firefox</p>
<p>Also, if you want to kill all instances of Firefox (or any other application you happen to know the &#8216;proper&#8217; name of, use killall. Example: killall firefox</p>
<p>Also, using -9 isn&#8217;t recommended (I can&#8217;t remember why). It&#8217;s better to try kill without it and if that fails, use -9.</p>
<p>Also (this is the last one I promise), there is xkill. I have it in my quick links on my taskbar - if a GUI application is playing up, just click the xkill application and then use the mouse to click on the rouge application. Poof - gone!</p>
<p>Hope these help somebody,<br />
Damien</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SupercoW</title>
		<link>http://productivelinux.com/2009/02/12/how-to-kill-a-running-process-in-ubuntu/comment-page-1/#comment-2938</link>
		<dc:creator>SupercoW</dc:creator>
		<pubDate>Thu, 12 Feb 2009 10:38:23 +0000</pubDate>
		<guid isPermaLink="false">http://productivelinux.com/?p=513#comment-2938</guid>
		<description>killall firefox or killall -9 firefox can be used. On the other hand on KDE after a few attempts to close the window that is not responding, you gey a dialog offering to kill it.</description>
		<content:encoded><![CDATA[<p>killall firefox or killall -9 firefox can be used. On the other hand on <a href="http://productivelinux.com/category/kde/" class="ubernym uttReplace">KDE</a> after a few attempts to close the window that is not responding, you gey a dialog offering to kill it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mats Utterheim</title>
		<link>http://productivelinux.com/2009/02/12/how-to-kill-a-running-process-in-ubuntu/comment-page-1/#comment-2937</link>
		<dc:creator>Mats Utterheim</dc:creator>
		<pubDate>Thu, 12 Feb 2009 09:51:51 +0000</pubDate>
		<guid isPermaLink="false">http://productivelinux.com/?p=513#comment-2937</guid>
		<description>As this asumes that you run X, then I can guess that it's a graphical program that has crashed. Most often the easiest way to kill the process is:
alt+f2 and enter xkill

You'll get a skull-shaped pointer and just klick on the window and the process behind it will be killed.

Another way is to start the gnome-system-monitor and select processes there. It's like ps aux, but graphical. Right-click on the process you want to kill and select "kill process".</description>
		<content:encoded><![CDATA[<p>As this asumes that you run X, then I can guess that it&#8217;s a graphical program that has crashed. Most often the easiest way to kill the process is:<br />
alt+f2 and enter xkill</p>
<p>You&#8217;ll get a skull-shaped pointer and just klick on the window and the process behind it will be killed.</p>
<p>Another way is to start the <a href="http://productivelinux.com/category/gnome/" class="ubernym uttReplace">GNOME</a>-system-monitor and select processes there. It&#8217;s like ps aux, but graphical. Right-click on the process you want to kill and select &#8220;kill process&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Can Bican</title>
		<link>http://productivelinux.com/2009/02/12/how-to-kill-a-running-process-in-ubuntu/comment-page-1/#comment-2936</link>
		<dc:creator>Can Bican</dc:creator>
		<pubDate>Thu, 12 Feb 2009 08:54:07 +0000</pubDate>
		<guid isPermaLink="false">http://productivelinux.com/?p=513#comment-2936</guid>
		<description>-9? It's for murdering a renegade process, not for killing a running one :)</description>
		<content:encoded><![CDATA[<p>-9? It&#8217;s for murdering a renegade process, not for killing a running one :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jherazob</title>
		<link>http://productivelinux.com/2009/02/12/how-to-kill-a-running-process-in-ubuntu/comment-page-1/#comment-2935</link>
		<dc:creator>jherazob</dc:creator>
		<pubDate>Thu, 12 Feb 2009 04:11:38 +0000</pubDate>
		<guid isPermaLink="false">http://productivelinux.com/?p=513#comment-2935</guid>
		<description>Since this is Ubuntu, why not:
System -&gt; Administration -&gt; System Monitor
right-click the offending process -&gt; kill?

Your solution is pretty much distro-agnostic and can work even without X or over ssh, but if you're on the gnome desktop isn't this easier?</description>
		<content:encoded><![CDATA[<p>Since this is Ubuntu, why not:<br />
System -&gt; Administration -&gt; System Monitor<br />
right-click the offending process -&gt; kill?</p>
<p>Your solution is pretty much distro-agnostic and can work even without X or over ssh, but if you&#8217;re on the <a href="http://productivelinux.com/category/gnome/" class="ubernym uttReplace">GNOME</a> desktop isn&#8217;t this easier?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
