<?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>Tips and Tricks &#187; Linux</title>
	<atom:link href="http://www.legend.ws/blog/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.legend.ws/blog</link>
	<description>Find useful tips and tricks related to your every day techy needs</description>
	<lastBuildDate>Fri, 06 Nov 2009 08:59:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Traffic forwarding on linux using IPTABLES</title>
		<link>http://www.legend.ws/blog/tips-tricks/traffic-forwarding-on-linux-using-iptables/</link>
		<comments>http://www.legend.ws/blog/tips-tricks/traffic-forwarding-on-linux-using-iptables/#comments</comments>
		<pubDate>Mon, 18 May 2009 08:24:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.legend.ws/blog/?p=100</guid>
		<description><![CDATA[IPTables allows you to easily setup rules for packet filtering/forwarding. So, to keep it short and simple: assume you&#8217;d like to forward any traffic coming to your machine (192.168.0.1) on port 80 to machine2 (192.168.0.2) on port 8080 then: - Enable port forwarding: echo 1 &#62; /proc/sys/net/ipv4/ip_forward - Now add the rules: iptables &#45;t nat [...]]]></description>
		<wfw:commentRss>http://www.legend.ws/blog/tips-tricks/traffic-forwarding-on-linux-using-iptables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL password hashing</title>
		<link>http://www.legend.ws/blog/tips-tricks/mysql-password-hashing/</link>
		<comments>http://www.legend.ws/blog/tips-tricks/mysql-password-hashing/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 18:55:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.legend.ws/blog/?p=35</guid>
		<description><![CDATA[Whenever you upgrade your MySQL installation, make sure to upgrade any client that uses it. In some cases, clients that use a version prior to 4.1 will have a problem authenticating against the MySQL database if the latter has a post 4.1 version. The trick is that after 4.1 (i.e. 4.11 and up), MySQL changed [...]]]></description>
		<wfw:commentRss>http://www.legend.ws/blog/tips-tricks/mysql-password-hashing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting rid of the ^M characters in vi</title>
		<link>http://www.legend.ws/blog/linux/removing-the-m-character-in-vim/</link>
		<comments>http://www.legend.ws/blog/linux/removing-the-m-character-in-vim/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 18:53:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.legend.ws/blog/?p=29</guid>
		<description><![CDATA[If you&#8217;re a regular vi user, you may have noticed that some files, when being edited in vi, contain ^M characters at line ends. This usually happens when you edit a file using certain windows-editors, then transfer it to your *nix machine. Luckily, it is easily to get rid of this control character. While in [...]]]></description>
		<wfw:commentRss>http://www.legend.ws/blog/linux/removing-the-m-character-in-vim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using vi to replace a string in multiple files</title>
		<link>http://www.legend.ws/blog/tips-tricks/replace-text-in-multiple-files/</link>
		<comments>http://www.legend.ws/blog/tips-tricks/replace-text-in-multiple-files/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 19:58:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.legend.ws/blog/tips-tricks/replace-text-in-multiple-files/</guid>
		<description><![CDATA[Sometime you may want to replace occurences of a string across multiple files. There is an easy way to do so with the help of the vi editor. This example will illustrate the power of vi: Suppose you have 100 .html files, and you want to replace the occurence of the string &#8217;2007&#8242; with &#8217;2008&#8242;. [...]]]></description>
		<wfw:commentRss>http://www.legend.ws/blog/tips-tricks/replace-text-in-multiple-files/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Linux file permissions explained</title>
		<link>http://www.legend.ws/blog/tips-tricks/linux-file-permissions-explained/</link>
		<comments>http://www.legend.ws/blog/tips-tricks/linux-file-permissions-explained/#comments</comments>
		<pubDate>Mon, 17 Dec 2007 00:11:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.legend.ws/blog/tips-tricks/linux-file-permissions-explained/</guid>
		<description><![CDATA[Some people may not be very knowledgeable about *nix file permissions, and what they mean, so this is intended to be some sort of a guide. Any file or folder has a permission associated to it. Look at it as: &#8216;who has the power over this file/folder, and what kind of power does he have&#8217;. [...]]]></description>
		<wfw:commentRss>http://www.legend.ws/blog/tips-tricks/linux-file-permissions-explained/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using iptables in order to share an internet connection</title>
		<link>http://www.legend.ws/blog/tips-tricks/iptables-internet-connection-sharing/</link>
		<comments>http://www.legend.ws/blog/tips-tricks/iptables-internet-connection-sharing/#comments</comments>
		<pubDate>Thu, 09 Nov 2006 22:40:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://legend.ws/blog/iptables-internet-connection-sharing/</guid>
		<description><![CDATA[Many users run small networks, be it at home or work. One of the widely used techniques for sharing the internet connection over a small local area network is Microsoft&#8217;s ICS (Internet Connection Sharing). What if the main server is not running windows? Some prefer to opt for linux, and run several services that benefit [...]]]></description>
		<wfw:commentRss>http://www.legend.ws/blog/tips-tricks/iptables-internet-connection-sharing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
