<?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 Pause a Linux Process</title>
	<atom:link href="http://tombuntu.com/index.php/2007/11/23/how-to-pause-a-linux-process/feed/" rel="self" type="application/rss+xml" />
	<link>http://tombuntu.com/index.php/2007/11/23/how-to-pause-a-linux-process/</link>
	<description>News, Tips, and How-Tos for Ubuntu Linux</description>
	<lastBuildDate>Thu, 02 Sep 2010 12:08:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Anonymous</title>
		<link>http://tombuntu.com/index.php/2007/11/23/how-to-pause-a-linux-process/#comment-54571</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sat, 14 Mar 2009 11:06:32 +0000</pubDate>
		<guid isPermaLink="false">http://tombuntu.com/index.php/2007/11/23/how-to-pause-a-linux-process/#comment-54571</guid>
		<description>thanks yar its working</description>
		<content:encoded><![CDATA[<p>thanks yar its working</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keilaron</title>
		<link>http://tombuntu.com/index.php/2007/11/23/how-to-pause-a-linux-process/#comment-41666</link>
		<dc:creator>Keilaron</dc:creator>
		<pubDate>Mon, 15 Dec 2008 22:02:55 +0000</pubDate>
		<guid isPermaLink="false">http://tombuntu.com/index.php/2007/11/23/how-to-pause-a-linux-process/#comment-41666</guid>
		<description>Another way to get the pid of xeyes without using killall or a &quot;contains&quot;-type search is to use pidof, e.g.:
kill `pidof xeyes`
You can use -s to force only one pid to be returned, e.g.:
kill `pidof -s xeyes`</description>
		<content:encoded><![CDATA[<p>Another way to get the pid of xeyes without using killall or a &#8220;contains&#8221;-type search is to use pidof, e.g.:<br />
kill `pidof xeyes`<br />
You can use -s to force only one pid to be returned, e.g.:<br />
kill `pidof -s xeyes`</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tom</title>
		<link>http://tombuntu.com/index.php/2007/11/23/how-to-pause-a-linux-process/#comment-40997</link>
		<dc:creator>tom</dc:creator>
		<pubDate>Wed, 03 Dec 2008 14:53:40 +0000</pubDate>
		<guid isPermaLink="false">http://tombuntu.com/index.php/2007/11/23/how-to-pause-a-linux-process/#comment-40997</guid>
		<description>haha searched for this and noticed that it DIDN&#039;T work for the process I wanted to pause: cp (copy)

there will be more processes you can&#039;t pause I think</description>
		<content:encoded><![CDATA[<p>haha searched for this and noticed that it DIDN&#8217;T work for the process I wanted to pause: cp (copy)</p>
<p>there will be more processes you can&#8217;t pause I think</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jadd</title>
		<link>http://tombuntu.com/index.php/2007/11/23/how-to-pause-a-linux-process/#comment-3884</link>
		<dc:creator>Jadd</dc:creator>
		<pubDate>Tue, 04 Dec 2007 10:48:41 +0000</pubDate>
		<guid isPermaLink="false">http://tombuntu.com/index.php/2007/11/23/how-to-pause-a-linux-process/#comment-3884</guid>
		<description>What about these more useful commands:
killall -s STOP xeyes
killall -s CONT xeyes</description>
		<content:encoded><![CDATA[<p>What about these more useful commands:<br />
killall -s STOP xeyes<br />
killall -s CONT xeyes</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: VeRTiTO</title>
		<link>http://tombuntu.com/index.php/2007/11/23/how-to-pause-a-linux-process/#comment-3300</link>
		<dc:creator>VeRTiTO</dc:creator>
		<pubDate>Sat, 24 Nov 2007 09:11:55 +0000</pubDate>
		<guid isPermaLink="false">http://tombuntu.com/index.php/2007/11/23/how-to-pause-a-linux-process/#comment-3300</guid>
		<description>i love this post! appreciate being mentioned, keep up the linux chills!</description>
		<content:encoded><![CDATA[<p>i love this post! appreciate being mentioned, keep up the linux chills!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ivant</title>
		<link>http://tombuntu.com/index.php/2007/11/23/how-to-pause-a-linux-process/#comment-3298</link>
		<dc:creator>ivant</dc:creator>
		<pubDate>Sat, 24 Nov 2007 08:40:32 +0000</pubDate>
		<guid isPermaLink="false">http://tombuntu.com/index.php/2007/11/23/how-to-pause-a-linux-process/#comment-3298</guid>
		<description>Here are some other useful commands, which can help in such tasks:

killall -STOP xeyes
  will stop all processes named xeyes

pgrep -l eye
  finds the PIDS of all processes, which contain &#039;eye&#039;
pkill -STOP eye
  stops all the processes, containing &#039;eye&#039;

Actually, pgrep and pkill work with regular expressions.

top and htop - text based &quot;gui&quot; process monitors, which can sort processes based on memory consumption, cpu usage, etc.  They can also send signals.  I especially recommend htop.  It&#039;s very, very good!

Cheers,
Ivan</description>
		<content:encoded><![CDATA[<p>Here are some other useful commands, which can help in such tasks:</p>
<p>killall -STOP xeyes<br />
  will stop all processes named xeyes</p>
<p>pgrep -l eye<br />
  finds the PIDS of all processes, which contain &#8216;eye&#8217;<br />
pkill -STOP eye<br />
  stops all the processes, containing &#8216;eye&#8217;</p>
<p>Actually, pgrep and pkill work with regular expressions.</p>
<p>top and htop &#8211; text based &#8220;gui&#8221; process monitors, which can sort processes based on memory consumption, cpu usage, etc.  They can also send signals.  I especially recommend htop.  It&#8217;s very, very good!</p>
<p>Cheers,<br />
Ivan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ney frota</title>
		<link>http://tombuntu.com/index.php/2007/11/23/how-to-pause-a-linux-process/#comment-3271</link>
		<dc:creator>ney frota</dc:creator>
		<pubDate>Fri, 23 Nov 2007 23:07:44 +0000</pubDate>
		<guid isPermaLink="false">http://tombuntu.com/index.php/2007/11/23/how-to-pause-a-linux-process/#comment-3271</guid>
		<description>for the gui people (like my mother :)

- hit alt-f2 to pop-up run dialog
- type xeyes and hit enter
- go to: system -&gt; administration -&gt; system monitor
- on system monitor go to: process tab -&gt; search for xeyes in the list
- right click xeyes and choose stop to pause the process
- right click xeyes and choose continue to release the process
- right click xeyes and choose kill to kill xeyes

terminal comands are veeeery usefull... because.. if you get a program stuck the system, the full gui gets tooooo sloooowww... so, you can hit control-alt-f1 to get a prompt, login, check process (top command can  help you), kill/stop/whatever its eating you process power and hit control-alt-f7 to get back to gui</description>
		<content:encoded><![CDATA[<p>for the gui people (like my mother <img src='http://tombuntu.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>- hit alt-f2 to pop-up run dialog<br />
- type xeyes and hit enter<br />
- go to: system -&gt; administration -&gt; system monitor<br />
- on system monitor go to: process tab -&gt; search for xeyes in the list<br />
- right click xeyes and choose stop to pause the process<br />
- right click xeyes and choose continue to release the process<br />
- right click xeyes and choose kill to kill xeyes</p>
<p>terminal comands are veeeery usefull&#8230; because.. if you get a program stuck the system, the full gui gets tooooo sloooowww&#8230; so, you can hit control-alt-f1 to get a prompt, login, check process (top command can  help you), kill/stop/whatever its eating you process power and hit control-alt-f7 to get back to gui</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)

Served from: tombuntu.com @ 2010-09-07 16:11:05 -->