<?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>Anand Rajasekar &#187; Linux</title>
	<atom:link href="http://www.anandsekar.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anandsekar.com</link>
	<description>ரெங்கசாமி ஆனந்த் சேகர் ராஜசேகர்</description>
	<lastBuildDate>Thu, 03 Jun 2010 05:30:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Finding if Multicast is supported</title>
		<link>http://www.anandsekar.com/2007/10/30/finding-if-multicast-is-supported/</link>
		<comments>http://www.anandsekar.com/2007/10/30/finding-if-multicast-is-supported/#comments</comments>
		<pubDate>Tue, 30 Oct 2007 04:09:48 +0000</pubDate>
		<dc:creator>anandsekar</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.anandsekar.com/2007/10/30/finding-if-multicast-is-supported/</guid>
		<description><![CDATA[One way to easily find if mulitcast is supported in a *nix system is to issue
netstat -gn
which returns the membership groups of the mulitcast addresses in the system
e.g. output
Group Memberships: IPv4
Interface Group                RefCnt
&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;
lo0      [...]]]></description>
			<content:encoded><![CDATA[<p>One way to easily find if mulitcast is supported in a *nix system is to issue</p>
<p>netstat -gn</p>
<p>which returns the membership groups of the mulitcast addresses in the system</p>
<p>e.g. output<br />
Group Memberships: IPv4<br />
Interface Group                RefCnt<br />
&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;<br />
lo0       224.0.0.75                1<br />
lo0       224.0.0.1                 1<br />
eri0      224.0.0.75                1<br />
eri0      224.0.0.1                 2</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anandsekar.com/2007/10/30/finding-if-multicast-is-supported/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joining all lines in a file using sed</title>
		<link>http://www.anandsekar.com/2006/10/12/joining-all-lines-in-a-file-using-sed/</link>
		<comments>http://www.anandsekar.com/2006/10/12/joining-all-lines-in-a-file-using-sed/#comments</comments>
		<pubDate>Fri, 13 Oct 2006 06:19:19 +0000</pubDate>
		<dc:creator>anandsekar</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.pullaveli.com/?p=43</guid>
		<description><![CDATA[Sed (Stream EDitor) is a very powerful stream editor to manipulate text files.
I needed an utility that would join all lines in a text file to a single line with &#8220;\n&#8221; as a separator so that I could easily cut and paste inline velocity templates into java code. Here is the final sed command !
sed [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Sed">Sed</a> (Stream EDitor) is a very powerful stream editor to manipulate text files.<br />
I needed an utility that would join all lines in a text file to a single line with &#8220;\n&#8221; as a separator so that I could easily cut and paste inline velocity templates into java code. Here is the final sed command !</p>
<div class="codesnip-container" >sed -e :a -e &#8216;/$/N; s/\n/\\n/; ta&#8217; [filename]</div>
<p>Explanation :</p>
<div class="codesnip-container" >-e &#8211; denotes a command to be executed<br />
:a &#8211; is a label<br />
/$/N &#8211; defines the scope of the match for the current and the (N)ext line<br />
s/\n/\\n/; &#8211; replaces all EOL with &#8220;\n&#8221;<br />
ta; &#8211; goto label a if the match is sucessful</div>
]]></content:encoded>
			<wfw:commentRss>http://www.anandsekar.com/2006/10/12/joining-all-lines-in-a-file-using-sed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing Internet Explorer on Linux</title>
		<link>http://www.anandsekar.com/2006/09/29/installing-internet-explorer-on-linux/</link>
		<comments>http://www.anandsekar.com/2006/09/29/installing-internet-explorer-on-linux/#comments</comments>
		<pubDate>Fri, 29 Sep 2006 17:52:19 +0000</pubDate>
		<dc:creator>anandsekar</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.pullaveli.com/?p=42</guid>
		<description><![CDATA[The easiest way to install IE in linux is to use IEs4Linux. This is a script that would download all required installables from Microsoft and install IE on your linux system. You need have wine and cabextract preinstalled on the linux box.
]]></description>
			<content:encoded><![CDATA[<p>The easiest way to install IE in linux is to use <a href="http://www.tatanka.com.br/ies4linux/page/Main_Page">IEs4Linux</a>. This is a script that would download all required installables from Microsoft and install IE on your linux system. You need have wine and cabextract preinstalled on the linux box.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anandsekar.com/2006/09/29/installing-internet-explorer-on-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why the Linux file system does not need defragmenting &#8230;</title>
		<link>http://www.anandsekar.com/2006/08/19/why-the-linux-file-system-does-not-need-defragmenting/</link>
		<comments>http://www.anandsekar.com/2006/08/19/why-the-linux-file-system-does-not-need-defragmenting/#comments</comments>
		<pubDate>Sat, 19 Aug 2006 17:58:37 +0000</pubDate>
		<dc:creator>anandsekar</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.pullaveli.com/?p=39</guid>
		<description><![CDATA[I came across this excellant article explaining in simple ways why the linux file system does not need to be defragmented. Read On ..
]]></description>
			<content:encoded><![CDATA[<p>I came across this excellant article explaining in simple ways why the linux file system does not need to be defragmented. <a href="http://geekblog.oneandoneis2.org/index.php/2006/08/17/why_doesn_t_linux_need_defragmenting">Read On ..</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anandsekar.com/2006/08/19/why-the-linux-file-system-does-not-need-defragmenting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Switching to Linux</title>
		<link>http://www.anandsekar.com/2006/04/06/switching-to-linux/</link>
		<comments>http://www.anandsekar.com/2006/04/06/switching-to-linux/#comments</comments>
		<pubDate>Fri, 07 Apr 2006 07:41:40 +0000</pubDate>
		<dc:creator>anandsekar</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.pullaveli.com/?p=29</guid>
		<description><![CDATA[I wanted to switch my home desktop to linux for a long time and I finally got rid of windows and installed Fedora Core 5. The installation was very smooth and extremely impressive. The only hardware that did not get detected was my USB wireless adaptor (airlink). Wireless drivers for unix can be found at

Drivers [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to switch my home desktop to linux for a long time and I finally got rid of windows and installed Fedora Core 5. The installation was very smooth and extremely impressive. The only hardware that did not get detected was my USB wireless adaptor (airlink). Wireless drivers for unix can be found at</p>
<ul>
<li><a href="http://www.zydas.com.tw/downloads/download-1211.asp">Drivers for the ZD1211 chipset that work with Fedora 5</a></li>
<li><a href="http://www.kernelconcepts.de/~nils/zydas1211.html">Drivers for the ZD1211 chipset, however only works with Fedora 4</a></li>
<li><a href="http://prism54.org/">Drivers for prism based cards</a></li>
</ul>
<p><hints id="hah_hints"></hints></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anandsekar.com/2006/04/06/switching-to-linux/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
