<?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>UnixNewbie.org &#187; Stephen</title>
	<atom:link href="http://www.unixnewbie.org/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.unixnewbie.org</link>
	<description></description>
	<lastBuildDate>Mon, 30 Nov 2009 16:58:16 +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>How to add/remove Programs in Ubuntu</title>
		<link>http://www.unixnewbie.org/how-to-addremove-programs-in-ubuntu/</link>
		<comments>http://www.unixnewbie.org/how-to-addremove-programs-in-ubuntu/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 16:58:16 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.unixnewbie.org/?p=1146</guid>
		<description><![CDATA[How to add/remove Programs in Ubuntu...]]></description>
			<content:encoded><![CDATA[<p><strong>How to add a program in Ubuntu:</strong></p>
<p>Ubuntu 9.10 comes with an add/remove software called: <strong>Ubuntu Software Center</strong>.</p>
<p>This software can be found in: <strong>Applications => Ubuntu Software Center</strong>.  Once started, you will find a list of available categories and a search box; you can navigate the categories or use the search box to search for your software.</p>
<p>Once you locate a program you would like to install, click on it => then click on the Forward arrow button found on the right side of the software you just clicked on => now click on the <strong>Install</strong> button => then enter your password to begin.</p>
<p>&nbsp;<br />
<strong>How to remove a program in Ubuntu:</strong></p>
<p>To remove a program in Ubuntu => start the Ubuntu Software Center => click on <strong>Installed Software</strong> (located on the top left) => click on the software you would like to remove => click on the Forward Arrow => then click on the <strong>Remove</strong> button.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnewbie.org/how-to-addremove-programs-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Iptables cheat sheet</title>
		<link>http://www.unixnewbie.org/iptables-cheat-sheet/</link>
		<comments>http://www.unixnewbie.org/iptables-cheat-sheet/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 16:39:50 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Cheat Sheets]]></category>

		<guid isPermaLink="false">http://www.unixnewbie.org/?p=1139</guid>
		<description><![CDATA[Iptables is a Linux kernel-level module allowing us to perform various networking manipulations (i.e. packet filtering) to achieve better network security...]]></description>
			<content:encoded><![CDATA[<p>Iptables is a Linux kernel-level module allowing us to perform various networking manipulations (i.e. packet filtering) to achieve better network security.</p>
<p>Here are some iptables commands I have found useful.  This list will be updated from time to time.</p>
<p><strong>View all current iptables rules:</strong></p>
<pre>iptables -L -v</pre>
<p>&nbsp;</p>
<p><strong>View all INPUT rules:</strong></p>
<pre>iptables -L INPUT -nv</pre>
<p>&nbsp;</p>
<p><strong>How to block an IP address using iptables:</strong></p>
<pre>iptables -I INPUT -s "201.128.33.200" -j DROP</pre>
<p>&nbsp;</p>
<p><strong>To block a range of IP addresses:</strong></p>
<pre>iptables -I INPUT -s "201.128.33.0/24" -j DROP</pre>
<p>&nbsp;</p>
<p><strong>How to unblock an IP address:</strong></p>
<pre>iptables -D INPUT -s "201.128.33.200" -j DROP</pre>
<p>&nbsp;</p>
<p><strong>How to block all connections to a port:</strong><br />
To block port 25:</p>
<pre>iptables -A INPUT -p tcp --dport 25 -j DROP
iptables -A INPUT -p udp --dport 25 -j DROP</pre>
<p>&nbsp;</p>
<p><strong>How to un-block:</strong><br />
To enable port 25:</p>
<pre>iptables -A INPUT -p tcp --dport 25 -j ACCEPT
iptables -A INPUT -p udp --dport 25 -j ACCEPT </pre>
<p>&nbsp;</p>
<p><strong>To save all rules so that they are not lost in case of a server reboot:</strong></p>
<pre>/etc/init.d/iptables save</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnewbie.org/iptables-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Google Chrome in Ubuntu 9.10</title>
		<link>http://www.unixnewbie.org/how-to-install-google-chrome-in-ubuntu-9-10/</link>
		<comments>http://www.unixnewbie.org/how-to-install-google-chrome-in-ubuntu-9-10/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 03:52:04 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.unixnewbie.org/?p=1134</guid>
		<description><![CDATA[Here is <strong>how to install Google Chrome in Ubuntu 9.10</strong>.  This will install Google's browser version, not chromium version...]]></description>
			<content:encoded><![CDATA[<p>Here is <strong>how to install Google Chrome in Ubuntu 9.10</strong>.  This will install Google&#8217;s browser version, not chromium version.</p>
<ol>
<li>First visit <a href="http://dev.chromium.org/getting-involved/dev-channel" target=_blank>Google Chrome website</a><br />&nbsp;</li>
<li>Scroll down to the <strong>Linux</strong> section and download the appropriate .deb file i.e. 32 bit systems or 64 bit systems.<br />&nbsp;</li>
<li>Once the download is complete, double click on the .deb file to launch the Google Chrome installer => then click on <strong>Install Package</strong><br />&nbsp;</li>
<li>That is it <img src='http://www.unixnewbie.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Once installed, you can find Google Chrome in <i>Applications => Internet => Google Chrome</i></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnewbie.org/how-to-install-google-chrome-in-ubuntu-9-10/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Beautiful Web Hosting Datacenter Images</title>
		<link>http://www.unixnewbie.org/beautiful-web-hosting-datacenter-images/</link>
		<comments>http://www.unixnewbie.org/beautiful-web-hosting-datacenter-images/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 15:41:46 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Zzzz Other]]></category>

		<guid isPermaLink="false">http://www.unixnewbie.org/?p=1027</guid>
		<description><![CDATA[I really enjoy working in a datacenter.  The servers, the switches, the lights, the design, the network cables, the noises,... all of those things really fascinate me. Just so beautiful!!!  Spare a minute to check out some of the datacenter images I have collected...]]></description>
			<content:encoded><![CDATA[<p>I really enjoy working in a datacenter.  The servers, the switches, the lights, the design, the network cables, the noises,&#8230; all of those things really fascinate me. Beautiful!!!  Spare a minute to check out some of the datacenter images I have collected below.</p>
<p>&nbsp;<br />
<br />&nbsp;</p>
<h2>Hitachi&#8217;s green datacenter:</h2>
<p><center><a href="http://unixnewbie.org/images/datacenter/1-hitachi-green-datacenter-exterior.jpg" rel="lightbox[Hitachi]" title="Hitachi Datacenter Exterior"><img src="http://unixnewbie.org/images/datacenter/small/1.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/2-hitachi-green-datacenter-control-center.jpg" rel="lightbox[Hitachi]" title="Hitachi Datacenter Control Center"><img src="http://unixnewbie.org/images/datacenter/small/2.png" border="0"></a> <a href="http://unixnewbie.org/images/datacenter/3-hitachi-green-datacenter-interior.jpg" rel="lightbox[Hitachi]" title="Hitachi Datacenter Interior"><img src="http://unixnewbie.org/images/datacenter/small/3.png" border=0></a><br />
<a href="http://unixnewbie.org/images/datacenter/4-hitachi-green-datacenter-first-floor.jpg" rel="lightbox[Hitachi]" title="Hitachi Datacenter First Floor"><img src="http://unixnewbie.org/images/datacenter/small/4.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/5-hitachi-green-datacenter-model.jpg" rel="lightbox[Hitachi]" title="Hitachi Datacenter Model"><img src="http://unixnewbie.org/images/datacenter/small/5.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/6-hitachi-green-datacenter-third-floor.jpg" rel="lightbox[Hitachi]" title="Hitachi Datacenter Third Floor"><img src="http://unixnewbie.org/images/datacenter/small/6.png" border=0></a><br />
</center></p>
<p>&nbsp;<br />
</p>
<h2>Facebook Datacenter:</h2>
<p><center><a href="http://unixnewbie.org/images/datacenter/8-facebook-datacenter.png" rel="lightbox[Facebook]" title="Facebook Datacenter"><img src="http://unixnewbie.org/images/datacenter/small/7.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/9-facebook-datacenter.png" rel="lightbox[Facebook]" title="Facebook Datacenter"><img src="http://unixnewbie.org/images/datacenter/small/8.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/10-facebook-datacenter.png" rel="lightbox[Facebook]" title="Facebook Datacenter"><img src="http://unixnewbie.org/images/datacenter/small/9.png" border=0></a><br />
<a href="http://unixnewbie.org/images/datacenter/11-facebook-datacenter.png" rel="lightbox[Facebook]" title="Facebook Datacenter"><img src="http://unixnewbie.org/images/datacenter/small/10.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/12-facebook-datacenter.png" rel="lightbox[Facebook]" title="Facebook Datacenter"><img src="http://unixnewbie.org/images/datacenter/small/11.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/13-facebook-datacenter.png" rel="lightbox[Facebook]" title="Facebook Datacenter"><img src="http://unixnewbie.org/images/datacenter/small/13.png" border=0></a><br />
</center></p>
<p>&nbsp;<br />
</p>
<h2>Google Datacenter:</h2>
<p><center><a href="http://unixnewbie.org/images/datacenter/google-datacenter.png" rel="lightbox[Google]" title="Google Datacenter Exterier"><img src="http://unixnewbie.org/images/datacenter/small/google1.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/google-datacenter2.png" rel="lightbox[Google]" title="Google Datacenter Storage"><img src="http://unixnewbie.org/images/datacenter/small/google2.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/google-datacenter3.png" rel="lightbox[Google]" title="Google Datacenter Cooling"><img src="http://unixnewbie.org/images/datacenter/small/google3.png" border=0></a><br />
<a href="http://unixnewbie.org/images/datacenter/google-datacenter4.png" rel="lightbox[Google]" title="Google Datacenter Water Cooling"><img src="http://unixnewbie.org/images/datacenter/small/google4.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/google-datacenter5.png" rel="lightbox[Google]" title="Google Datacenter - Google Custom Servers"><img src="http://unixnewbie.org/images/datacenter/small/google5.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/google-datacenter6.png" rel="lightbox[Google]" title="Google Datacenter"><img src="http://unixnewbie.org/images/datacenter/small/google6.png" border=0></a></center></p>
<p>&nbsp;<br />
</p>
<h2>Microsoft Datacenter:</h2>
<p><center><a href="http://unixnewbie.org/images/datacenter/microsoft-datacenter-exterior.jpg" rel="lightbox[Microsoft]" title="Microsoft Datacenter"><img src="http://unixnewbie.org/images/datacenter/small/microsoft1.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/microsoft-datacenter-airhandlers.jpg" rel="lightbox[Microsoft]" title="Microsoft Datacenter"><img src="http://unixnewbie.org/images/datacenter/small/microsoft2.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/microsoft-datacenter-servers.jpg" rel="lightbox[Microsoft]" title="Microsoft Datacenter"><img src="http://unixnewbie.org/images/datacenter/small/microsoft3.png" border=0></a><br />
</center></p>
<p>&nbsp;<br />
</p>
<h2>ThePlanet Datacenter:</h2>
<p>I personally toured ThePlanet datacenter in Dallas in 2005, very neat and beautiful setup.<br />
<center><a href="http://unixnewbie.org/images/datacenter/theplanet-crac-units.jpg" rel="lightbox[ThePlanet]" title="ThePlanet Datacenter"><img src="http://unixnewbie.org/images/datacenter/small/theplanet1.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/theplanet-generators.jpg" rel="lightbox[ThePlanet]" title="ThePlanet Datacenter"><img src="http://unixnewbie.org/images/datacenter/small/theplanet2.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/theplanet-generators2.jpg" rel="lightbox[ThePlanet]" title="ThePlanet Datacenter"><img src="http://unixnewbie.org/images/datacenter/small/theplanet3.png" border=0></a><br />
<a href="http://unixnewbie.org/images/datacenter/theplanet-network-routers.jpg" rel="lightbox[ThePlanet]" title="ThePlanet Datacenter"><img src="http://unixnewbie.org/images/datacenter/small/theplanet4.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/theplanet-power-transfer-room.jpg" rel="lightbox[ThePlanet]" title="ThePlanet Datacenter"><img src="http://unixnewbie.org/images/datacenter/small/theplanet5.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/theplanet-servers.jpg" rel="lightbox[ThePlanet]" title="ThePlanet Datacenter"><img src="http://unixnewbie.org/images/datacenter/small/theplanet6.png" border=0></a></center></p>
<p>&nbsp;<br />
</p>
<h2>Beautiful Networking Design:</h2>
<p><center><a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring1.png" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful1.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring2.png" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful2.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring3.jpg" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful3.png" border=0></a><br />
<a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring4.jpg" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful4.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring5.jpg" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful5.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring6.jpg" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful6.png" border=0></a><br />
<a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring7.jpg" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful7.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring8.png" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful8.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring9.png" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful9.png" border=0></a><br />
<a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring10.jpg" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful10.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring11.jpg" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful11.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring12.jpg" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful12.png" border=0></a><br />
<a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring13.jpg" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful13.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring14.jpg" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful14.png" border=0></a><br />
<a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring15.png" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful15.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring16.jpg" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful16.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring17.jpg" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful17.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring18.jpg" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful18.png" border=0></a><br />
<a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring19.jpg" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful19.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring20.jpg" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful20.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring21.jpg" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful21.png" border=0></a> <a href="http://unixnewbie.org/images/datacenter/beautiful-datacenter-wiring22.jpg" rel="lightbox[Beautiful]" title="Beautiful Datacenter Wiring"><img src="http://unixnewbie.org/images/datacenter/small/beautiful22.png" border=0></a></center></p>
<p>&nbsp;<br />
</p>
<h2>Google Datacenter Tour Video:</h2>
<p><center><object width="480" height="295"><param name="movie" value="http://www.youtube.com/v/zRwPSFpLX8I&#038;hl=en&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/zRwPSFpLX8I&#038;hl=en&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></center></p>
<p>&nbsp;<br />
Keep checking back, I will upload more.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnewbie.org/beautiful-web-hosting-datacenter-images/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to easily find flu shot location near you</title>
		<link>http://www.unixnewbie.org/how-to-easily-find-flu-shot-location-near-you/</link>
		<comments>http://www.unixnewbie.org/how-to-easily-find-flu-shot-location-near-you/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 20:05:06 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Zzzz Other]]></category>

		<guid isPermaLink="false">http://www.unixnewbie.org/?p=1042</guid>
		<description><![CDATA[Today, Google announced a new feature for its Google Maps service allowing us to easily find available flu shot location near us.  I tested around and found it to be very useful and highly recommend you to check it out if you have not.]]></description>
			<content:encoded><![CDATA[<p>Today, Google announced a new feature for its Google Maps service allowing us to easily find available flu shot locations near us.  I tested around and found it to be very useful and highly recommend you to check it out if you have not.</p>
<ul>
<li><a href="http://www.google.com/flushot" target=_blank>Google Flu Shot Finder: http://www.google.com/flushot</a> </li>
</ul>
<p>Currently, it is available in the United States only.</p>
<p><strong>Instruction:</strong><br />
When you are at <a href="http://www.google.com/flushot" target=_blank>www.google.com/flushot</a> => click on <strong>Change location</strong> on the top left => <strong>enter your zip code</strong> and hit <strong>Enter</strong> to display available locations near you.</p>
<p>Note: for Internet Explorer browser, simply click on the link then enter your zip code near &#8220;Find flu shots near:&#8221;<br />
</p>
<hr />
<p><strong>Legends:</strong></p>
<p><img src=http://unixnewbie.org/images/google/flu-blue.png> H1N1 flu shots<br />
<img src=http://unixnewbie.org/images/google/flu-red.png> Seasonal flu shots<br />
<img src=http://unixnewbie.org/images/google/flu-blue-red.png> Both</p>
<p><b>Reference:</b><br />
<a href="http://googleblog.blogspot.com/2009/11/finding-flu-vaccine-information-in-one.html" target=_blank>Google announcement</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnewbie.org/how-to-easily-find-flu-shot-location-near-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Original Google Hardware</title>
		<link>http://www.unixnewbie.org/original-google-hardware/</link>
		<comments>http://www.unixnewbie.org/original-google-hardware/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 19:38:04 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Zzzz Other]]></category>

		<guid isPermaLink="false">http://www.unixnewbie.org/?p=1031</guid>
		<description><![CDATA[As I was sorting through my big collection of images, I stumbled upon these, the <strong>original google hardware</strong>.  These were the first machines Google started its business with.  Make me think.]]></description>
			<content:encoded><![CDATA[<p>As I was sorting through my big collection of images, I stumbled upon these, the <strong>original google hardware</strong>.  These were the first machines Google started its business with.  Make me think.</p>
<p><img src="http://unixnewbie.org/images/google/original-google-hardware-1.jpg"><br />
<img src="http://unixnewbie.org/images/google/original-google-hardware-2.jpg"><br />
<img src="http://unixnewbie.org/images/google/original-google-hardware-3.jpg"><br />
<img src="http://unixnewbie.org/images/google/original-google-hardware-4.jpg"><br />
<img src="http://unixnewbie.org/images/google/original-google-hardware-5.jpg"><br />
<img src="http://unixnewbie.org/images/google/original-google-hardware-6.jpg"><br />
<img src="http://unixnewbie.org/images/google/original-google-hardware-7.jpg"><br />
<img src="http://unixnewbie.org/images/google/original-google-hardware-8.jpg"><br />
<img src="http://unixnewbie.org/images/google/original-google-hardware-9.jpg"></p>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnewbie.org/original-google-hardware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exim Cheatsheet</title>
		<link>http://www.unixnewbie.org/exim-cheatsheet/</link>
		<comments>http://www.unixnewbie.org/exim-cheatsheet/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 18:31:23 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Cheat Sheets]]></category>
		<category><![CDATA[Server Admin Tips]]></category>

		<guid isPermaLink="false">http://www.unixnewbie.org/?p=920</guid>
		<description><![CDATA[Exim is the widely used open source mail transfer agent. It is responsible for routing, delivering, and receiving email messages.]]></description>
			<content:encoded><![CDATA[<p>Exim is the widely used open source mail transfer agent.  It is responsible for routing, delivering, and receiving email messages.  Here are some of my favorite, <strong>useful exim commands via shell</strong>.</p>
<p>&nbsp;</p>
<p>This command will show exim processes including the path to the script being utilized to send mail. Very useful in locating a spamming script:</p>
<pre>ps -C exim -fH eww</pre>
<p>&nbsp;<br />
<br />
This will show the route of the email address.  It is useful when you try to diagnose email delivery problems:</p>
<pre>exim -bt user@domain.com</pre>
<p>&nbsp;<br />
<br />
To perform a SMTP testing session as if the mail comes from a particular host for testing filtering rules inside your server:</p>
<pre>exim -bh ipaddresshere</pre>
<p>&nbsp;<br />
<br />
This will show what exim is currently doing:</p>
<pre>exiwhat</pre>
<p>&nbsp;<br />
<br />
Mail server queue:</p>
<pre>exim -bpc &nbsp; // print the total number of emails currently in server queue.
exim -bp &nbsp; // print mails in queue sorting by time, size,...
exim -bp | exiqsumm &nbsp; // count, volume, oldest, newest, domain, and totals
</pre>
<p>&nbsp;<br />
<br />
To list exim&#8217;s configuration setting:</p>
<pre>exim -bP</pre>
<p>&nbsp;<br />
<br />
To start a queue run:</p>
<pre>exim -q -v</pre>
<p>&nbsp;<br />
<br />
To start a queue run for just local deliveries:</p>
<pre> exim -ql -v</pre>
<p>&nbsp;<br />
<br />
To remove a message from the queue:</p>
<pre>exim -Mrm &lt;message-id&gt;</pre>
<p>&nbsp;<br />
<br />
To freeze a message:</p>
<pre>exim -Mf &lt;message-id&gt;</pre>
<p>&nbsp;<br />
<br />
To force delivery of a message:</p>
<pre>exim -M &lt;message-id&gt;</pre>
<p>&nbsp;<br />
<br />
To remove all frozen messages:</p>
<pre>exiqgrep -z -i | xargs exim -Mrm</pre>
<p>&nbsp;<br />
<br />
To remove all messages older than 1 day (the number is in seconds):</p>
<pre>exiqgrep -o 86400 -i | xargs exim -Mrm</pre>
<p>&nbsp;<br />
<br />
To freeze all queued mail from a given sender:</p>
<pre>exiqgrep -i -f user@domain.com | xargs exim -Mf</pre>
<p>&nbsp;<br />
<br />
Message viewing:</p>
<pre>exim -Mvh &lt;message-id&gt;  &nbsp; // view message's headers
exim -Mvb &lt;message-id&gt;  &nbsp; // view message's body
exim -Mvl &lt;message-id&gt;  &nbsp; // view message's logs</pre>
<p>&nbsp;<br />
</p>
<h2>Exiqgrep</h2>
<p>At times, we will be required to search the mail queue for a particular message to help troubleshooting mail problems for our users.  Here are some useful <a href="http://www.exim.org/exim-html-4.50/doc/html/spec_49.html#IX2895" target=_blank>exiqgrep</a> commands.</p>
<p>&nbsp;<br />
This will search the queue for messages coming from a specific sender:</p>
<pre>exiqgrep -f user@domain.com</pre>
<p>&nbsp;<br />
<br />
This will search the queue for messages from a specific recipient:</p>
<pre>exiqgrep -r user@domain.com</pre>
<p>&nbsp;<br />
<br />
This will display messages older than the specified number of seconds. </p>
<pre>exiqgrep -o 86400  &nbsp; // more than a day old</pre>
<p>&nbsp;<br />
<br />
This will display messages newer than the specified number of seconds. </p>
<pre>exiqgrep -y 3600  &nbsp; // less than an hour old</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnewbie.org/exim-cheatsheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu LAMP cheat sheet</title>
		<link>http://www.unixnewbie.org/ubuntu-lamp-cheat-sheet/</link>
		<comments>http://www.unixnewbie.org/ubuntu-lamp-cheat-sheet/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 14:45:34 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Cheat Sheets]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.unixnewbie.org/?p=990</guid>
		<description><![CDATA[LAMP: the server software bundle consists of Linux - Apache - MySQL - PHP; Linux: operating system; Apache: http server; MySQL: database software; PHP: scripting language]]></description>
			<content:encoded><![CDATA[<p>LAMP: the server software bundle consists of Linux &#8211; Apache &#8211; MySQL &#8211; PHP; Linux: operating system; Apache: http server; MySQL: database software; PHP: scripting language</p>
<p>&nbsp;</p>
<h2>Location, configuration file:</h2>
<p>&nbsp;<br />
<strong>Apache configuration file:</strong></p>
<pre>/etc/apache2/apache2.conf</pre>
<p>&nbsp;<br />
<strong>PHP php.ini file:</strong></p>
<pre>/etc/php5/apache2/php.ini</pre>
<p>&nbsp;<br />
<strong>MySQL configuration file:</strong></p>
<pre>/etc/mysql/my.cnf</pre>
<p>&nbsp;<br />
<strong>Default (initial) web location:</strong></p>
<pre>/var/www</pre>
<p>&nbsp;<br />
<strong>Web browser address:</strong></p>
<pre>http://localhost/</pre>
<p>&nbsp;</p>
<h2>Restarting:</h2>
<p>&nbsp;<br />
<strong>How to restart apache:</strong></p>
<pre>sudo /etc/init.d/apache2 restart</pre>
<p>&nbsp;<br />
<strong>How to restart MySQL:</strong></p>
<pre>sudo /etc/init.d/mysql restart</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnewbie.org/ubuntu-lamp-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unix FIND command cheat sheet</title>
		<link>http://www.unixnewbie.org/unix-find-command-cheat-sheet/</link>
		<comments>http://www.unixnewbie.org/unix-find-command-cheat-sheet/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 22:56:45 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Cheat Sheets]]></category>
		<category><![CDATA[Server Admin Tips]]></category>

		<guid isPermaLink="false">http://www.unixnewbie.org/?p=968</guid>
		<description><![CDATA["find" is a Unix command allowing us to search for files within our Unix/Linux operating system.  "find" can search for files based on name, type, size, modified date, etc...  I often use "find" to locate bad files within a hacked system/account.  ]]></description>
			<content:encoded><![CDATA[<p>&#8220;find&#8221; is a Unix command allowing us to search for files within our Unix/Linux operating system.  &#8220;find&#8221; can search for files based on name, type, size, modified date, etc&#8230;  I often use &#8220;find&#8221; to locate bad files within a hacked system/account.  </p>
<p>&nbsp;<br />
<br />&nbsp;<br />
<strong>To search for files by name:</strong></p>
<pre>find dir -name keyword</pre>
<p>dir: directory you want to search for files<br />
keyword: the name of the file you want to search for<br />
<u>examples: </u><br />
<em>find /home/test -name &#8220;index.txt&#8221;</em><br />
<em>find /home -name &#8220;shell*&#8221;</em>  &nbsp; // find files beginging with &#8220;shell&#8221;</p>
<p>&nbsp;<br />
<strong>To search for files by modified date:</strong><br />
<br />
<u>by the minute:</u></p>
<pre>find dir -mmin time</pre>
<p>&nbsp;<br />
<u>by the hour:</u></p>
<pre>find dir -mtime time</pre>
<p>&nbsp;<br />
<u>examples:</u><br />
<em>find /home -mmin -30</em>  &nbsp; // find all files modified in the past 30 minutes<br />
<em>find /home -mmin +30</em>  &nbsp; // find all files modified more than 30 minutes ago<br />
<em>find /home -mmin +30 -mmin -60</em>  &nbsp; // find all files modified between 30 and 60 minutes ago<br />
<em>find /home -mtime -1</em> &nbsp; // find all files modified within the past 1-day (24 hours)<br />
<em>find /home -mtime -7</em> &nbsp; // find all files modified within the past 1-week (7 days)</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnewbie.org/unix-find-command-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RPM cheat sheet</title>
		<link>http://www.unixnewbie.org/rpm-cheat-sheet/</link>
		<comments>http://www.unixnewbie.org/rpm-cheat-sheet/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 19:47:36 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Cheat Sheets]]></category>
		<category><![CDATA[Server Admin Tips]]></category>

		<guid isPermaLink="false">http://www.unixnewbie.org/?p=926</guid>
		<description><![CDATA[RPM cheat sheet]]></description>
			<content:encoded><![CDATA[<p>RPM is the package manager for the following Linux Operating Systems: RedHat, CentOS, Fedora and SUSE.  Here, I noted down some useful commands to manage RPM packages.  Please share if you know other useful RPM commands.</p>
<p>&nbsp;<br />
<br />&nbsp;<br />
<strong>Install a package:</strong></p>
<pre>rpm -ivh package_name</pre>
<p>&nbsp;<br />
<strong>Upgrade a package:</strong></p>
<pre>rpm -Uvh package_name</pre>
<p>&nbsp;<br />
<strong>Uninstall a package:</strong></p>
<pre>rpm -ev package_name</pre>
<p>&nbsp;<br />
<strong>Uninstall a package without checking for its dependencies:</strong></p>
<pre>rpm -ev --nodeps package_name</pre>
<p>&nbsp;<br />
<strong>Display the version of the installed package:</strong></p>
<pre>rpm -q package_name</pre>
<p>&nbsp;<br />
<strong>Display the name and version of all packages installed in the server:</strong></p>
<pre>rpm -qa</pre>
<p>&nbsp;<br />
<strong>Display the packages got installed recently:</strong></p>
<pre>rpm -qa --last</pre>
<p>&nbsp;<br />
<strong>To rebuild a corrupted RMP database:</strong></p>
<pre>rpm --rebuilddb</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unixnewbie.org/rpm-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
