<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Linux basic commands</title>
	<atom:link href="http://linuxbasiccommands.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://linuxbasiccommands.wordpress.com</link>
	<description>The simple and basic linux commands, explained for dummies.</description>
	<pubDate>Tue, 02 Sep 2008 17:42:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PHP Email Headers - PHP Mail Function headers</title>
		<link>http://linuxbasiccommands.wordpress.com/2008/09/02/php-email-headers-php-mail-function-headers/</link>
		<comments>http://linuxbasiccommands.wordpress.com/2008/09/02/php-email-headers-php-mail-function-headers/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 17:42:21 +0000</pubDate>
		<dc:creator>Romania Hotels</dc:creator>
		
		<category><![CDATA[PHP Programing]]></category>

		<guid isPermaLink="false">http://linuxbasiccommands.wordpress.com/?p=8</guid>
		<description><![CDATA[PHP Mail Function headers
Headers are the parts seen at the top of emails. Typically :



To :
A comma seperated list of recipient emails.


From :
The senders email address.


Reply-To :
The email address where replies should be sent to.


Return-Path :
Kinda the same thing as the Reply-To. Some email clients require this, others create a default.


Subject :
Subject of the email.


CC :
Carbon [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>PHP Mail Function headers</p>
<p>Headers are the parts seen at the top of emails. Typically :</p>
<table border="0" width="96%">
<tbody>
<tr>
<td width="20%">To :</td>
<td>A comma seperated list of recipient emails.</td>
</tr>
<tr>
<td>From :</td>
<td>The senders email address.</td>
</tr>
<tr>
<td>Reply-To :</td>
<td>The email address where replies should be sent to.</td>
</tr>
<tr>
<td>Return-Path :</td>
<td>Kinda the same thing as the Reply-To. Some email clients require this, others create a default.</td>
</tr>
<tr>
<td>Subject :</td>
<td>Subject of the email.</td>
</tr>
<tr>
<td>CC :</td>
<td>Carbon Copy. A comma seperated list of more recipients that will be seen by all other recipients.</td>
</tr>
<tr>
<td>BCC :</td>
<td>Blind Carbon Copy. A comma seperated list of more recipients that will not be seen by any other recipients.</td>
</tr>
</tbody>
</table>
<p>The TO and SUBJECT filds are the first and second variables in the MAIL command. The extra headers seen above can be entered as a 4th variable in the MAIL command.</p>
<p>&lt;?php<br />
mail(&#8221;yourplace@somewhere.com&#8221;,&#8221;My email test.&#8221;,&#8221;Hello, how are you?&#8221;,&#8221;From: myplace@here.com\r\nReply-To: myplace2@here.com\r\nReturn-Path: myplace@here.com\r\nCC: sombodyelse@noplace.com\r\nBBC: hidden@special.com\r\n&#8221;);<br />
?&gt;<br />
Looks kinda messy when it&#8217;s all in there without using variables. That above example has all of the extra headers being declared. You may specify all or some or none as you desire. There are 2 very important things to note here :</p>
<table border="0" width="96%">
<tbody>
<tr>
<td width="10%" valign="top">1.</td>
<td>These headers need their NAMES: shown unlike the first three variables in the mail command. The header names are CaSe SeNsItIvE. Use per example.</td>
</tr>
<tr>
<td width="10%" valign="top">2.</td>
<td>Each header is ended with the Return and Newline characters. <span style="color:#ff0000;">\r\n</span> There are no spaces between each header.</td>
</tr>
</tbody>
</table>
<p>For better organization, these extra headers can be declared in a variable string like our previous examples.</p>
<div class="clsEX">&lt;?php<br />
$to = &#8220;yourplace@somewhere.com&#8221;;<br />
$subject = &#8220;My email test.&#8221;;<br />
$message = &#8220;Hello, how are you?&#8221;;</p>
<p>$headers = &#8220;From: myplace@here.com\r\n&#8221;;<br />
$headers .= &#8220;Reply-To: myplace2@here.com\r\n&#8221;;<br />
$headers .= &#8220;Return-Path: myplace@here.com\r\n&#8221;;<br />
$headers .= &#8220;CC: sombodyelse@noplace.com\r\n&#8221;;<br />
$headers .= &#8220;BCC: hidden@special.com\r\n&#8221;;</p>
<p>if ( mail($to,$subject,$message,$headers) ) {<br />
   echo &#8220;The email has been sent!&#8221;;<br />
   } else {<br />
   echo &#8220;The email has failed!&#8221;;<br />
   }<br />
?&gt;</p></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/linuxbasiccommands.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/linuxbasiccommands.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxbasiccommands.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxbasiccommands.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxbasiccommands.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxbasiccommands.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxbasiccommands.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxbasiccommands.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxbasiccommands.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxbasiccommands.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxbasiccommands.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxbasiccommands.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxbasiccommands.wordpress.com&blog=3370958&post=8&subd=linuxbasiccommands&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://linuxbasiccommands.wordpress.com/2008/09/02/php-email-headers-php-mail-function-headers/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/tourismromania-128.jpg" medium="image">
			<media:title type="html">Romania Hotels</media:title>
		</media:content>
	</item>
		<item>
		<title>I forgot the root password on my linux machine</title>
		<link>http://linuxbasiccommands.wordpress.com/2008/05/12/i-forgot-the-root-password-on-my-linux-machine/</link>
		<comments>http://linuxbasiccommands.wordpress.com/2008/05/12/i-forgot-the-root-password-on-my-linux-machine/#comments</comments>
		<pubDate>Mon, 12 May 2008 19:13:19 +0000</pubDate>
		<dc:creator>Romania Hotels</dc:creator>
		
		<category><![CDATA[Linux Passwords]]></category>

		<category><![CDATA[linux root password passwords passwd]]></category>

		<guid isPermaLink="false">http://linuxbasiccommands.wordpress.com/?p=6</guid>
		<description><![CDATA[Linux basic commands FAQ
Simple tasks for simple minds  
The &#8220;forgotten root password&#8221;
Q. I forgot the root password on my linux machine. How do I change the password ?
R. The easiest way to change the &#8220;forgotten root password&#8221; is to boot your Linux machine in the single-user mode, namely at the &#8220;lilo&#8221;prompt, during the bootup you will type:
linux single
This will [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h2>Linux basic commands FAQ</h2>
<p>Simple tasks for simple minds <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>The &#8220;forgotten root password&#8221;</h3>
<p>Q. I forgot the root password on my linux machine. How do I change the password ?</p>
<p>R. The easiest way to change the &#8220;forgotten root password&#8221; is to boot your Linux machine in the single-user mode, namely at the &#8220;lilo&#8221;prompt, during the bootup you will type:</p>
<pre>linux single</pre>
<p>This will log you in as &#8220;root&#8221; without asking for a password. As root, you may now change the root password using <em>passwd</em> command ( the old password is not required ):</p>
<pre>passwd</pre>
<p>If this seems to you insecure or to simple to be true, that is because no computer system is realy secure if other people have physical access to the computer hardware.</p>
<p>There is a way to secure the lilo boot, but this will be the subject for another article.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/linuxbasiccommands.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/linuxbasiccommands.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxbasiccommands.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxbasiccommands.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxbasiccommands.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxbasiccommands.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxbasiccommands.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxbasiccommands.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxbasiccommands.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxbasiccommands.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxbasiccommands.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxbasiccommands.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxbasiccommands.wordpress.com&blog=3370958&post=6&subd=linuxbasiccommands&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://linuxbasiccommands.wordpress.com/2008/05/12/i-forgot-the-root-password-on-my-linux-machine/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/tourismromania-128.jpg" medium="image">
			<media:title type="html">Romania Hotels</media:title>
		</media:content>
	</item>
		<item>
		<title>Linux change root password</title>
		<link>http://linuxbasiccommands.wordpress.com/2008/05/12/linux-change-root-password/</link>
		<comments>http://linuxbasiccommands.wordpress.com/2008/05/12/linux-change-root-password/#comments</comments>
		<pubDate>Mon, 12 May 2008 18:56:05 +0000</pubDate>
		<dc:creator>Romania Hotels</dc:creator>
		
		<category><![CDATA[Linux Passwords]]></category>

		<category><![CDATA[linux root password passwd]]></category>

		<guid isPermaLink="false">http://linuxbasiccommands.wordpress.com/?p=5</guid>
		<description><![CDATA[Linux basic commads FAQ:
Simple task for simple minds  
Q. How do I change the root password on a linux ( unix ) operating system ?
 
R. What you need to do in order to change the root account password on a linux or unix machine is:
 
- open a terminal an login as root ( if the system permits loging [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Linux basic commads FAQ:</p>
<p>Simple task for simple minds <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div id="intelliTxt">Q. How do I change the root password on a linux ( unix ) operating system ?</div>
<div> </div>
<div>R. What you need to do in order to change the root account password on a linux or unix machine is:</div>
<div> </div>
<div>- open a terminal an login as root ( if the system permits loging in as root )</div>
<div>or</div>
<div>- open a terminal, login with your account and type &#8220;su&#8221; to become root.</div>
<div>Enter the ( old ) root password to login</div>
<div>then type &#8220;passwd&#8221; and it will prompt you for a new password.</div>
<div>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</div>
<div> </div>
<div><em>root@ibm:/</em><em># passwd</em></div>
<div><em></em> </div>
<div><em>Changing password for root<br />
Enter the new password (minimum of 5, maximum of 127 characters)<br />
Please use a combination of upper and lower case letters and numbers.</em></div>
<div><em></em> </div>
<div><em>New password: **********<br />
Re-enter new password: **********</em></div>
<p><em></em></p>
<div>
Password changed.</div>
<div> </div>
<div>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
<p> </p>
<div>This should be all.</div>
<div>P.S. The password should be rather complex, containing numbers and letters. However try to pic one that you will remember easily, but not known by everybody.</div>
<div><em><br />
</em></div>
<p><em></em></p>
<div> </div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/linuxbasiccommands.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/linuxbasiccommands.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxbasiccommands.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxbasiccommands.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxbasiccommands.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxbasiccommands.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxbasiccommands.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxbasiccommands.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxbasiccommands.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxbasiccommands.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxbasiccommands.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxbasiccommands.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxbasiccommands.wordpress.com&blog=3370958&post=5&subd=linuxbasiccommands&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://linuxbasiccommands.wordpress.com/2008/05/12/linux-change-root-password/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/tourismromania-128.jpg" medium="image">
			<media:title type="html">Romania Hotels</media:title>
		</media:content>
	</item>
		<item>
		<title>Linux TAR Command</title>
		<link>http://linuxbasiccommands.wordpress.com/2008/04/04/linux-tar-command/</link>
		<comments>http://linuxbasiccommands.wordpress.com/2008/04/04/linux-tar-command/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 23:55:18 +0000</pubDate>
		<dc:creator>Romania Hotels</dc:creator>
		
		<category><![CDATA[Linux Archives]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Linux Commands]]></category>

		<category><![CDATA[tar]]></category>

		<category><![CDATA[tar.gz]]></category>

		<guid isPermaLink="false">http://linuxbasiccommands.wordpress.com/?p=4</guid>
		<description><![CDATA[Quicly learn how to tar / untar an linux tar gz archive files.
Create linux tar gz (Gzip) archive:
tar -czvf myarchive.tgz mydirectory/

Extract linux tar gz (Gzip) archive:
tar -xzvf mystuff.tgz
]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Quick Start: Here we&#8217;l present quick start examples explained.</p>
<h2>Create linux tar gz (Gzip) archive</h2>
<p>tar -czvf myarchive.tgz mydirectory/</p>
<p>We use the -t option to create an linux tar archive<br />
<strong>-c, &#8211;create</strong>                      create a new archive</p>
<p>Note that <strong>.tgz</strong> is the same thing as <strong>.tar.gz</strong></p>
<h2>Create linux simple tar archive (withouth compresion)</h2>
<p>tar -cvf myarchive.tar mydirectory/</p>
<h3>Extracting linux tar archive:</h3>
<p><strong>Extract linux tar gz (Gzip) archive<br />
</strong>tar -xzvf mystuff.tgz</p>
<p><strong>Extract linux simple tar archive</strong><br />
tar -xvf mystuff.tar</p>
<p>We use -x to extract the files form the tar archive<br />
<strong>-x, &#8211;extract, &#8211;get</strong>    extract files from an archive</p>
<p><strong>And now let us shortly explain this command</strong></p>
<p><strong>Usage:</strong> tar [OPTION]&#8230; [FILE]&#8230;</p>
<p>Let us check the option used in this example</p>
<p>-c, &#8211;create                      create a new archive<br />
-z, &#8211;gzip, &#8211;ungzip        filter the archive through gzip<br />
-v, &#8211;verbose                   verbosely list files processed<br />
-f, &#8211;file=ARCHIVE          use archive file or device ARCHIVE</p>
<h2>Testing / viewing your archive</h2>
<p>tar -tvf myarchive.tar<br />
tar -tzvf myarchive.tgz</p>
<p>Here we used the - t opton<br />
-t, &#8211;list                           list the contents of an archive</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>Go ahead, try out these commands and stay tuned; we will come up with more doccumentation on linux tar command</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/linuxbasiccommands.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/linuxbasiccommands.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxbasiccommands.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxbasiccommands.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxbasiccommands.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxbasiccommands.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxbasiccommands.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxbasiccommands.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxbasiccommands.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxbasiccommands.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxbasiccommands.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxbasiccommands.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxbasiccommands.wordpress.com&blog=3370958&post=4&subd=linuxbasiccommands&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://linuxbasiccommands.wordpress.com/2008/04/04/linux-tar-command/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/tourismromania-128.jpg" medium="image">
			<media:title type="html">Romania Hotels</media:title>
		</media:content>
	</item>
		<item>
		<title>Why basic Linux Commands ?</title>
		<link>http://linuxbasiccommands.wordpress.com/2008/04/03/why-basic-linux-commands/</link>
		<comments>http://linuxbasiccommands.wordpress.com/2008/04/03/why-basic-linux-commands/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 22:59:00 +0000</pubDate>
		<dc:creator>Romania Hotels</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Linux basics]]></category>

		<category><![CDATA[Linux Commands]]></category>

		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://linuxbasiccommands.wordpress.com/?p=3</guid>
		<description><![CDATA[Because I for one, am not a Linux or UNIX guru, and still need to use Linux and Linux basic (or not so basic) commands.
So I decided to gather all the articles about simple Linux and UNIX commands, in one place. linuxbasiccommands.wordpress.com will be the place for there articles. Stay tuned, I will update frequently.
   [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Because I for one, am not a <a href="http://www.answers.com/topic/linux?nafid=22" class="answerlink">Linux</a> or UNIX guru, and still need to use Linux and Linux basic (or not so basic) commands.</p>
<p>So I decided to gather all the articles about simple Linux and <a href="http://www.answers.com/topic/unix?nafid=22" class="answerlink">UNIX</a> commands, in one place. linuxbasiccommands.wordpress.com will be the place for there articles. Stay tuned, I will update frequently.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/linuxbasiccommands.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/linuxbasiccommands.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxbasiccommands.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxbasiccommands.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxbasiccommands.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxbasiccommands.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxbasiccommands.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxbasiccommands.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxbasiccommands.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxbasiccommands.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxbasiccommands.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxbasiccommands.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxbasiccommands.wordpress.com&blog=3370958&post=3&subd=linuxbasiccommands&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://linuxbasiccommands.wordpress.com/2008/04/03/why-basic-linux-commands/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/tourismromania-128.jpg" medium="image">
			<media:title type="html">Romania Hotels</media:title>
		</media:content>
	</item>
	</channel>
</rss>