<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>My Workday &#187; ps</title>
	<atom:link href="http://www.goworkday.com/tag/ps/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.goworkday.com</link>
	<description>Let&#039;s talk TECH</description>
	<lastBuildDate>Tue, 23 Mar 2010 03:28:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Find the Biggest CPU Hog</title>
		<link>http://www.goworkday.com/2009/03/27/find-the-biggest-cpu-hog/</link>
		<comments>http://www.goworkday.com/2009/03/27/find-the-biggest-cpu-hog/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 04:36:34 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[ps]]></category>

		<guid isPermaLink="false">http://www.goworkday.com/?p=103</guid>
		<description><![CDATA[<br/>Is a certain process running your CPU right into the ground? How do you find said process without picking your way through the ps aux results? With this command: ps -e -o pcpu,cpu,nice,state,cputime,args --sort pcpu &#124; sed '/^ 0.0 /d' &#8230;at which point you can kill it with sudo kill -9.]]></description>
			<content:encoded><![CDATA[<br/><p>Is a certain process running your CPU right into the ground? How do you find said process without picking your way through the ps aux results? With this command:</p>
<p><code>ps -e -o pcpu,cpu,nice,state,cputime,args --sort pcpu | sed '/^ 0.0 /d'</code></p>
<p>&#8230;at which point you can kill it with sudo kill -9.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.goworkday.com/2009/03/27/find-the-biggest-cpu-hog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I know what services I have running?</title>
		<link>http://www.goworkday.com/2008/08/21/how-do-i-know-what-services-i-am-running/</link>
		<comments>http://www.goworkday.com/2008/08/21/how-do-i-know-what-services-i-am-running/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 03:03:06 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[ps]]></category>

		<guid isPermaLink="false">http://www.goworkday.com/?p=11</guid>
		<description><![CDATA[<br/>To get a list of all running processes, enter the command &#8220;ps auxw&#8221;. You might also want to try using &#8220;ps auxf&#8221; (or &#8220;ps auxfw&#8221; if the lines get truncated) &#8211; this prints everything in a nice tree format that may give you a better understanding of how and why things are running. To get [...]]]></description>
			<content:encoded><![CDATA[<br/><p>To get a list of all running processes, enter the command &#8220;ps auxw&#8221;. You might also want to try using &#8220;ps auxf&#8221; (or &#8220;ps auxfw&#8221; if the lines get truncated) &#8211; this prints everything in a nice tree format that may give you a better understanding of how and why things are running.</p>
<p>To get a complete listing of all listening network services using netstat, enter: netstat -altpu</p>
<p>You can also get similar information using lsof by entering: lsof -i | egrep -i &#8216;LISTEN|UDP&#8217;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.goworkday.com/2008/08/21/how-do-i-know-what-services-i-am-running/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
