<?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/"
	>

<channel>
	<title>Simple Thoughts - Java and Web Blog &#187; Fedora 7</title>
	<atom:link href="http://tech.gaeatimes.com/index.php/category/linux/fedora-7/feed/" rel="self" type="application/rss+xml" />
	<link>http://tech.gaeatimes.com</link>
	<description>News and views from a Software Architect and Web Entrepreneur on Java, PHP and Web 2.0 Technologies.</description>
	<pubDate>Mon, 27 Dec 2010 14:38:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to parition a new drive before adding to RAID array in Linux</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-parition-a-new-drive-before-adding-to-raid-array-in-linux/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-parition-a-new-drive-before-adding-to-raid-array-in-linux/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 14:37:18 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

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

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

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Tech Note]]></category>

		<guid isPermaLink="false">http://tech.gaeatimes.com/?p=39424</guid>
		<description><![CDATA[Run the following command, after reading the notes below:
sfdisk -d /dev/sda &#124; sfdisk /dev/sdb

Notes:
1. This copies the parition information of sda to sdb. Be very careful with the drive letters, otherwise you might end up overriding the partition of a good drive with the partition from a new drive.
2. sda is the drive from which .... Source article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/how-to-parition-a-new-drive-before-adding-to-raid-array-in-linux/">How to parition a new drive before adding to RAID array in Linux</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-parition-a-new-drive-before-adding-to-raid-array-in-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to fully backup hard drive on Linux intelligently without using dd</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-fully-backup-hard-drive-on-linux-intelligently-without-using-dd/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-fully-backup-hard-drive-on-linux-intelligently-without-using-dd/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 12:14:55 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

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

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

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Tech Note]]></category>

		<guid isPermaLink="false">http://tech.gaeatimes.com/?p=39434</guid>
		<description><![CDATA[dd, while an excellent tool to back drive / partition images, copies entire hard drive including unused blocks and even bad blocks (where possible). I have found another way to backup which not only creates an exact duplicate as far as operating system is concerned but also allows you to elongate and extract the remaining .... Source &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/how-to-fully-backup-hard-drive-on-linux-intelligently-without-using-dd/">How to fully backup hard drive on Linux intelligently without using dd</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-fully-backup-hard-drive-on-linux-intelligently-without-using-dd/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to reduce space required by (Linux utility) dd created drive image</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-reduce-space-required-by-linux-utility-dd-created-drive-image/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-reduce-space-required-by-linux-utility-dd-created-drive-image/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 12:13:37 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

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

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

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Tech Note]]></category>

		<guid isPermaLink="false">http://tech.gaeatimes.com/?p=39432</guid>
		<description><![CDATA[a. Use gzip
An example command:
dd if=/dev/hda1 bs=1k conv=sync,noerror &#124; gzip -c &#124; ssh -c blowfish user@hostname &#8220;dd of=filename.gz bs=1k&#8221;

Notes:
1. gzip ensures less storage requirement for the image
2. blowfish algorithm is used while transferring the data because it reduces overhead, which leads to faster transfer, for the SSL connection

b. Reduce storage space by zeroing unused blocks
dd ... Read the original article on Gaea Times at  : <a href="http://tech.gaeatimes.com/index.php/archive/how-to-reduce-space-required-by-linux-utility-dd-created-drive-image/">How to reduce space required by (Linux utility) dd created drive image</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-reduce-space-required-by-linux-utility-dd-created-drive-image/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to add a new partition to RAID array in Linux using mdadm</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-add-a-new-partition-to-raid-array-in-linux-using-mdadm/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-add-a-new-partition-to-raid-array-in-linux-using-mdadm/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 12:09:15 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

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

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Tech Note]]></category>

		<guid isPermaLink="false">http://tech.gaeatimes.com/?p=39428</guid>
		<description><![CDATA[Behold the wonders of mdadm:
mdadm &#8211;manage /dev/md1 &#8211;add /dev/sdb2
Notes:
1. Replace md1 with the name of the raid array
2. Replace sdb2 with the name of the drive
... Read : <a href="http://tech.gaeatimes.com/index.php/archive/how-to-add-a-new-partition-to-raid-array-in-linux-using-mdadm/">How to add a new partition to RAID array in Linux using mdadm</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-add-a-new-partition-to-raid-array-in-linux-using-mdadm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to remove a drive from RAID array in Linux using mdadm</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-remove-a-drive-from-raid-array-in-linux-using-mdadm/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-remove-a-drive-from-raid-array-in-linux-using-mdadm/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 12:04:00 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Enterprise Software and Services]]></category>

		<category><![CDATA[Featured Article]]></category>

		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

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

		<category><![CDATA[Open Source Software]]></category>

		<guid isPermaLink="false">http://tech.gaeatimes.com/?p=39422</guid>
		<description><![CDATA[Sometimes a little code is worth a thousand words, no?
mdadm &#8211;manage /dev/md1 &#8211;remove /dev/sdb2

Notes:
1. Replace md1 with the name of the raid array
2. Replace sdb2 with the name of the drive
.... Read the original article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/how-to-remove-a-drive-from-raid-array-in-linux-using-mdadm/">How to remove a drive from RAID array in Linux using mdadm</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-remove-a-drive-from-raid-array-in-linux-using-mdadm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to check symbolic link in Java and why Apache common.io.FileUtils implementation is wrong</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-check-symbolic-link-in-java-and-why-apache-commoniofileutils-implementation-is-wrong/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-check-symbolic-link-in-java-and-why-apache-commoniofileutils-implementation-is-wrong/#comments</comments>
		<pubDate>Sat, 04 Dec 2010 09:20:44 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Java Software]]></category>

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

		<category><![CDATA[Open Source Software]]></category>

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

		<category><![CDATA[Tech Note]]></category>

		<guid isPermaLink="false">http://tech.gaeatimes.com/?p=39411</guid>
		<description><![CDATA[Checking for symbolic link (in supported platform) is a long time requirement of Java developers. 
Patrick @ onyxbits solved the problem using JNI which is a legitimate approach. However it is platform dependent and consequently you will have to provide precompiled binary for every supported platform.

Apache commons project used an interesting approach in an attempt .... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-check-symbolic-link-in-java-and-why-apache-commoniofileutils-implementation-is-wrong/">Source article &nbsp;: How to check symbolic link in Java and why Apache common.io.FileUtils implementation is wrong</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-check-symbolic-link-in-java-and-why-apache-commoniofileutils-implementation-is-wrong/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top 5 Best Popular Linux Distributions</title>
		<link>http://tech.gaeatimes.com/index.php/archive/top-5-best-popular-linux-distributions/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/top-5-best-popular-linux-distributions/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 00:01:04 +0000</pubDate>
		<dc:creator>Taragana</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

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

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

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

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

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

		<category><![CDATA[Open Source Operating Systems]]></category>

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

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

		<guid isPermaLink="false">http://tech.gaeatimes.com/index.php/archive/top-5-best-popular-linux-distributions/</guid>
		<description><![CDATA[

Interestingly, a large number of Linux distributions are available, may be cause it comes free of cost and there are a lot of unique reasons to like them. Well, why not try reading this and figure out for yourself as to which open-source operating systems inspired our readers to provide our biggest Hive Five response ... Read more : <a href="http://tech.gaeatimes.com/index.php/archive/top-5-best-popular-linux-distributions/">Top 5 Best Popular Linux Distributions</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/top-5-best-popular-linux-distributions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to remove i386 packages from CentOS / Fedora / RHEL installation</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-remove-i386-packages-from-centos-fedora-rhel-installation/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-remove-i386-packages-from-centos-fedora-rhel-installation/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 15:25:33 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

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

		<category><![CDATA[Open Source Software]]></category>

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=29827</guid>
		<description><![CDATA[CentOS / RHEL / Fedora (same parentage) has the nasty habit of installing some i386 packages even though the corresponding i686 (for 32 bit machines) or x86_64 (for 64 bit machines) packages have already been installed. Here is a script to remove all i386 packages from your Linux box (assuming it uses an rpm based .... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-remove-i386-packages-from-centos-fedora-rhel-installation/">Original article &nbsp;: How to remove i386 packages from CentOS / Fedora / RHEL installation</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-remove-i386-packages-from-centos-fedora-rhel-installation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to disable IPv6 on CentOS 5.5</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-disable-ipv6-on-centos-55/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-disable-ipv6-on-centos-55/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 13:53:20 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[How To]]></category>

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

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Tech Note]]></category>

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

		<category><![CDATA[Web Hosting]]></category>

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=29823</guid>
		<description><![CDATA[The reason for this article is simple. The recommended method from CentOS wiki doesn&#8217;t work while the other method works. Here is what will disable IPv6 on CentOS Linux and also prevent the module from loading.

Edit /etc/sysconfig/network and set &#8220;NETWORKING_IPV6&#8243; to &#8220;no&#8221;

This still loads the module but IPv6 is administratively disabled. Run the next command ... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-disable-ipv6-on-centos-55/" title="How to disable IPv6 on CentOS 5.5">Read more >></a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-disable-ipv6-on-centos-55/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to install sar, sadf, mpstat, iostat, pidstat and sa tools on CentOS / Fedora / RHEL</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-install-sar-sadf-mpstat-iostat-pidstat-and-sa-tools-on-centos-fedora-rhel/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-install-sar-sadf-mpstat-iostat-pidstat-and-sa-tools-on-centos-fedora-rhel/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 13:35:33 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

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

		<category><![CDATA[Open Source Software]]></category>

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

		<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=29821</guid>
		<description><![CDATA[The following command can be used to install sar, sadf, mpstat, iostat, pidstat and sa tools on RPM based systems like CentOS, Fedora, RHEL (Red Hat Enterprise Linux):

As root type the followiung command (on console / terminal):
yum -y install sysstat
When you are not root but have sudo configured for your account then use:

sudo yum -y  [..] <a href="http://tech.gaeatimes.com/index.php/archive/how-to-install-sar-sadf-mpstat-iostat-pidstat-and-sa-tools-on-centos-fedora-rhel/">Read the original article: here</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-install-sar-sadf-mpstat-iostat-pidstat-and-sa-tools-on-centos-fedora-rhel/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Install and Configure DKIM On Postfix With dkim-milter (2.8.x) on 64 bit CentOS 5</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-install-and-configure-dkim-on-postfix-with-dkim-milter-28x-on-64-bit-centos-5/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-install-and-configure-dkim-on-postfix-with-dkim-milter-28x-on-64-bit-centos-5/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 17:14:40 +0000</pubDate>
		<dc:creator>pratima</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

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

		<category><![CDATA[Open Source Software]]></category>

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

		<category><![CDATA[Spam Watch]]></category>

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

		<category><![CDATA[Web Services]]></category>

		<category><![CDATA[Cent OS]]></category>

		<category><![CDATA[Cent OS 5]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=22344</guid>
		<description><![CDATA[The following document was written after countless hours of research and experimentation, in the hope that you will not have to waste as much time in setting up DKIM on Postfix as we had to. The documents in internet on this subject are mostly old and deals with an old version of DKIM Milter.

What is ... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-install-and-configure-dkim-on-postfix-with-dkim-milter-28x-on-64-bit-centos-5/">Original article on  : How to Install and Configure DKIM On Postfix With dkim-milter (2.8.x) on 64 bit CentOS 5</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-install-and-configure-dkim-on-postfix-with-dkim-milter-28x-on-64-bit-centos-5/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to configure Java / Javac on Linux</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-configure-java-javac-on-linux/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-configure-java-javac-on-linux/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 10:43:45 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Java Software]]></category>

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

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

		<category><![CDATA[Open Source Software]]></category>

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=21038</guid>
		<description><![CDATA[
more images


more images
So now you have bravely installed Java on Linux, preferably the Sun&#8217;s version, right?
However you may have previous versions of JDK / JRE already on your system, presumably the one bundled with Linux like GCJ JRE.
Most of us are familiar with running java or javac with a simple command line invocation like: java ... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-configure-java-javac-on-linux/" title="How to configure Java / Javac on Linux">Read more >></a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-configure-java-javac-on-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Solution: WordPress Nice Permalinks Not Working With Apache</title>
		<link>http://tech.gaeatimes.com/index.php/archive/solution-wordpress-nice-permalinks-not-working-with-apache/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/solution-wordpress-nice-permalinks-not-working-with-apache/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 02:28:41 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

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

		<category><![CDATA[Open Source Software]]></category>

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

		<category><![CDATA[Pro Blogging]]></category>

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

		<category><![CDATA[Web 2.0]]></category>

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

		<category><![CDATA[Cent OS]]></category>

		<category><![CDATA[Cent OS 5]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=16948</guid>
		<description><![CDATA[WordPress nice permalinks is a way to create search-engine-friendly url&#8217;s for WordPress posts and pages. Unfortunately they sometimes do not work out-of-the-box even after choosing your permalinks structure in WordPress options. I have found the issue in Cent OS 5 as also in Fedora versions before.

First check whether your .htaccess file is present in  WordPress .... <a href="http://tech.gaeatimes.com/index.php/archive/solution-wordpress-nice-permalinks-not-working-with-apache/">Source article &nbsp;: Solution: WordPress Nice Permalinks Not Working With Apache</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/solution-wordpress-nice-permalinks-not-working-with-apache/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Windows Control Panel Equivalent on Linux</title>
		<link>http://tech.gaeatimes.com/index.php/archive/windows-control-panel-equivalent-on-linux/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/windows-control-panel-equivalent-on-linux/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 07:00:44 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Gnome Desktop]]></category>

		<category><![CDATA[How To]]></category>

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

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

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

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Tech Note]]></category>

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

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

		<category><![CDATA[Windows 7]]></category>

		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=16886</guid>
		<description><![CDATA[Windows control panel is something we are all familiar with in Windows operating systems like Windows XP, Windows 2000, Windows Vista &#38; now Winfows 7. Unfortunately you may not have found a direct equivalent of Windows Control Panel which works in Linux systems like RHEL, Cent OS, Fedora, Ubuntu etc. Despair no more for the .... Read the original article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/windows-control-panel-equivalent-on-linux/">Windows Control Panel Equivalent on Linux</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/windows-control-panel-equivalent-on-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to find ethernet / MAC address on Linux</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-find-ethernet-mac-address-on-linux/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-find-ethernet-mac-address-on-linux/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 02:46:26 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Information Technology]]></category>

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

		<category><![CDATA[Tech Note]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=15095</guid>
		<description><![CDATA[In Linux networking is easy, you just have to know how. We will discuss below how you can find your own machine&#8217;s MAC address for all the attached ethernet cards as well as MAC addresses on other machines in the network.

How to find Ethernet / MAC Address of ethernet cards in your machine
ifconfig -a
In the ... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-find-ethernet-mac-address-on-linux/">Read this article on Gaea Times at  : How to find ethernet / MAC address on Linux</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-find-ethernet-mac-address-on-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to install nVidia Driver on CentOS</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-install-nvidia-driver-on-centos/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-install-nvidia-driver-on-centos/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 10:50:30 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

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

		<category><![CDATA[Tech Note]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=14836</guid>
		<description><![CDATA[Before you read, here is a bit of warning: Do not install the nVidia driver that you can download from nVidia.com. The driver may install fine but may not work as you expect. You are much better of following the procedure below.

Now I could repeat stuff from other website or I could say it succintly. .... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-install-nvidia-driver-on-centos/">Original article &nbsp;: How to install nVidia Driver on CentOS</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-install-nvidia-driver-on-centos/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Developer Tips: How To Show Line Number in vi / vim &amp; nano</title>
		<link>http://tech.gaeatimes.com/index.php/archive/developer-tips-how-to-show-line-number-in-vi-vim-nano/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/developer-tips-how-to-show-line-number-in-vi-vim-nano/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 03:47:15 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Java Software]]></category>

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

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

		<category><![CDATA[Open Source Software]]></category>

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

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

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

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

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

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

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

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

		<category><![CDATA[nano editor]]></category>

		<category><![CDATA[vi editor]]></category>

		<category><![CDATA[vim editor]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=3083</guid>
		<description><![CDATA[vi / vim as well as nano are the most popular editors on Unix / Linux / Solaris and for hardcode Mac OSX users too. For developing / debugging we need line numbers. A way to get them to display line numbers doesn&#8217;t jump out easily from their big documentation, so here are my simple ... <a href="http://tech.gaeatimes.com/index.php/archive/developer-tips-how-to-show-line-number-in-vi-vim-nano/" title="Developer Tips: How To Show Line Number in vi / vim &#038; nano">Read more >></a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/developer-tips-how-to-show-line-number-in-vi-vim-nano/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Hack Root Password in Linux</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-hack-root-password-in-linux/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-hack-root-password-in-linux/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 12:53:54 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

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

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

		<category><![CDATA[Hack root password]]></category>

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

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

		<category><![CDATA[The root]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=3043</guid>
		<description><![CDATA[Today I am going to tell you the trick to hack your root passoword in Linux if you are too forgetful to remember it or you have legal permission to enter a server run by a different admin and by any chance he forgot to give you the root password.
Those Who Have GRUB bootloader

 The ... Read this article on Gaea Times at  : <a href="http://tech.gaeatimes.com/index.php/archive/how-to-hack-root-password-in-linux/">How to Hack Root Password in Linux</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-hack-root-password-in-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Play All Multimedia Content on Fedora 9 Linux</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-play-all-multimedia-content-on-fedora-9-linux/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-play-all-multimedia-content-on-fedora-9-linux/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 03:22:27 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Headline News]]></category>

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

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

		<category><![CDATA[Open Source Software]]></category>

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=3033</guid>
		<description><![CDATA[All you have to do is run this simple one line command:
rpm -ivh http://rpm.livna.org/livna-release-9.rpm &#38;&#38; yum -y install vlc python-vlc mozilla-vlc

Note: For earlier versions of Fedora just change the number to correspond to the appropriate version. For example for Fedora Core 6 the command will be:
rpm -ivh http://rpm.livna.org/livna-release-6.rpm &#38;&#38; yum -y install vlc python-vlc mozilla-vlc
This ... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-play-all-multimedia-content-on-fedora-9-linux/">Read more : How To Play All Multimedia Content on Fedora 9 Linux</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-play-all-multimedia-content-on-fedora-9-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>One Linux Formatting Tip I Bet You Didn&#8217;t Know</title>
		<link>http://tech.gaeatimes.com/index.php/archive/one-linux-formatting-tip-i-bet-you-didnt-know/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/one-linux-formatting-tip-i-bet-you-didnt-know/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 04:28:51 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

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

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

		<category><![CDATA[Open Source Software]]></category>

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

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

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

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

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

		<category><![CDATA[The root]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=2915</guid>
		<description><![CDATA[You probably know how you can format a Linux partition:
mkfs.ext3 /dev/hda
This formats the partition with ext3 file system. However did you know how to extract maximum space out of this partition, especially if it a large partition?

How to maximize available space in a partition
Enter the magical -m option. If the file system becomes filled and .... Source article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/one-linux-formatting-tip-i-bet-you-didnt-know/">One Linux Formatting Tip I Bet You Didn&#8217;t Know</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/one-linux-formatting-tip-i-bet-you-didnt-know/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Linux Tips: Bandwidth Monitoring, Common Commands, Accounting</title>
		<link>http://tech.gaeatimes.com/index.php/archive/linux-tips-bandwidth-monitoring-common-commands-accounting/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/linux-tips-bandwidth-monitoring-common-commands-accounting/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 02:05:06 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

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

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

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

		<category><![CDATA[Open Source Software]]></category>

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

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

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

		<category><![CDATA[Bandwidth Monitoring]]></category>

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=2914</guid>
		<description><![CDATA[Linux Bandwidth monitoring tools and this (better explanations) - Instead of apt-get use yum install for RedHat based systems like Fedora, CentOS and obviously RedHat.

Common Linux commands - The description is terse. Use man or info for details.
Homebank is a popular accounting software to manage your personal accounts. HomeBank benefits from more than 12 years ... <a href="http://tech.gaeatimes.com/index.php/archive/linux-tips-bandwidth-monitoring-common-commands-accounting/">Original article on  : Linux Tips: Bandwidth Monitoring, Common Commands, Accounting</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/linux-tips-bandwidth-monitoring-common-commands-accounting/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Append File Using SSH</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-append-file-using-ssh/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-append-file-using-ssh/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 16:34:45 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

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

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

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

		<category><![CDATA[Tech Note]]></category>

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=2897</guid>
		<description><![CDATA[Have you ever searched scp manual for ways to append a file using it? scp is an excellent command to rapidly copy files and directories to / from a remote location. Unfortunately it is of no help when you just want to append a file over ssh connection. Here is a simple solution to append .... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-append-file-using-ssh/">Original article &nbsp;: How To Append File Using SSH</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-append-file-using-ssh/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Speed Up Opening Linux Terminal &amp; Running Linux Commands</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-speed-up-opening-linux-terminal-running-linux-commands/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-speed-up-opening-linux-terminal-running-linux-commands/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 12:35:04 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

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

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

		<category><![CDATA[Open Source Software]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=2893</guid>
		<description><![CDATA[Most techies and developer prefer using the terminal on Linux. If you are like me a heavy command line interface (cli) user than you will find these simple tips useful.

How to speed up opening Linux terminal
Install roxterm. On Red Hat, Fedora, Cent OS or other yum based systems, it is as simple as:
yum -y install .... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-speed-up-opening-linux-terminal-running-linux-commands/" title="How To Speed Up Opening Linux Terminal &#038; Running Linux Commands">Source &nbsp;: Gaea News Network</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-speed-up-opening-linux-terminal-running-linux-commands/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Linux: How To Make RAID-1 Disks Independently Bootable</title>
		<link>http://tech.gaeatimes.com/index.php/archive/linux-how-to-make-raid-1-disks-independently-bootable/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/linux-how-to-make-raid-1-disks-independently-bootable/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 04:53:04 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Enterprise Software and Services]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

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

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

		<category><![CDATA[Open Source Software]]></category>

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

		<category><![CDATA[Web Hosting]]></category>

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

		<category><![CDATA[Linus Software RAID]]></category>

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

		<category><![CDATA[Linux RAID-1]]></category>

		<category><![CDATA[RAID-1]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=2884</guid>
		<description><![CDATA[The best part of Linux (imho) is the ability to replicate not only the operating system or the data but also the boot loader. This allows you to have two identical disks running RAID-1, each of which are independently bootable, should one of them fail. You can also add spare disks to the RAID-1 array .... <a href="http://tech.gaeatimes.com/index.php/archive/linux-how-to-make-raid-1-disks-independently-bootable/">Original article &nbsp;: Linux: How To Make RAID-1 Disks Independently Bootable</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/linux-how-to-make-raid-1-disks-independently-bootable/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pros &amp; Cons of Software RAID versus Hardware RAID</title>
		<link>http://tech.gaeatimes.com/index.php/archive/which-one-is-better-software-raid-or-hardware-raid/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/which-one-is-better-software-raid-or-hardware-raid/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 14:09:11 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Enterprise Software and Services]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

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

		<category><![CDATA[Headline News]]></category>

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

		<category><![CDATA[Software Review]]></category>

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

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

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

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

		<category><![CDATA[hardware raid]]></category>

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

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

		<category><![CDATA[RAID Comparision]]></category>

		<category><![CDATA[RAID Recovery]]></category>

		<category><![CDATA[RAID-0]]></category>

		<category><![CDATA[RAID-1]]></category>

		<category><![CDATA[RAID-10]]></category>

		<category><![CDATA[RAID-3]]></category>

		<category><![CDATA[RAID-5]]></category>

		<category><![CDATA[software raid]]></category>

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

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=2834</guid>
		<description><![CDATA[In my quest to find the better service between Software RAID &#38; Hardware RAID, I was caught RAID-handed among too many points and nitty-gritties of technical specifications and opinions. As a result of my explorations, I have developed a simple point-by-point structure to let you walk through this topic rather easily. First let us know ... <a href="http://tech.gaeatimes.com/index.php/archive/which-one-is-better-software-raid-or-hardware-raid/">Original article on  : Pros &#038; Cons of Software RAID versus Hardware RAID</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/which-one-is-better-software-raid-or-hardware-raid/feed/</wfw:commentRss>
		</item>
		<item>
		<title>High-end Linux Computer w. 17&#8243; TFT for Office Under Rs. 20000</title>
		<link>http://tech.gaeatimes.com/index.php/archive/high-end-linux-computer-w-17-tft-for-office-under-rs-20000/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/high-end-linux-computer-w-17-tft-for-office-under-rs-20000/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 09:03:54 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Gnome Desktop]]></category>

		<category><![CDATA[Headline News]]></category>

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

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

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

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Computer Price in India]]></category>

		<category><![CDATA[Computer Purchase]]></category>

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=2847</guid>
		<description><![CDATA[We recently bought several high-end computers for our office which will be used with Linux Operating System (Fedora 8). The price including VAT comes to Rs 19, 214. It includes 17&#8243; Samsung TFT monitor, 1 GB ZION RAM, Intel Pentium 2GHZ Dual Core, 160GB SATA HDD and more. The Motherboard comes with 1 Gigabit LAN. .... Original source &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/high-end-linux-computer-w-17-tft-for-office-under-rs-20000/">High-end Linux Computer w. 17&#8243; TFT for Office Under Rs. 20000</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/high-end-linux-computer-w-17-tft-for-office-under-rs-20000/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Java: How To Get Stacktrace of Any Local / Remote Java Process</title>
		<link>http://tech.gaeatimes.com/index.php/archive/java-how-to-get-stacktrace-of-any-running-process/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/java-how-to-get-stacktrace-of-any-running-process/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 08:05:42 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Enterprise Software and Services]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

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

		<category><![CDATA[Java Software]]></category>

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

		<category><![CDATA[Open Source Software]]></category>

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

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

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

		<category><![CDATA[Java Debugging]]></category>

		<category><![CDATA[Java Stacktrace]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=2835</guid>
		<description><![CDATA[You may run Java processes in the foreground or in many cases they may be run using cron jobs or during system startup, as background processes. How can you find out stacktraces of any running Java process? But first how can you even know their name &#38; process id&#8217;s?
How to find process id (pid) of ... Read more : <a href="http://tech.gaeatimes.com/index.php/archive/java-how-to-get-stacktrace-of-any-running-process/">Java: How To Get Stacktrace of Any Local / Remote Java Process</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/java-how-to-get-stacktrace-of-any-running-process/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Run Google Chrome Browser on Linux</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-run-google-chrome-browser-on-linux/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-run-google-chrome-browser-on-linux/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 03:59:31 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Computer Security]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

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

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

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

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

		<category><![CDATA[Open Source Software]]></category>

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

		<category><![CDATA[Web 2.0]]></category>

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

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

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

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

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

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

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

		<category><![CDATA[google chrome]]></category>

		<category><![CDATA[Google Chrome Browser]]></category>

		<category><![CDATA[Open Source]]></category>

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=2831</guid>
		<description><![CDATA[CodeWeaver&#8217;s released a port of Google&#8217;s Chrome browser (review) for Linux. CrossOver Chromium is a Mac and Linux port of the open source Chromium web browser. CrossOver Chromium is free and available for download here.

The Linux port is just a proof of concept. Chromium itself is just beginning. As the Chromium project progresses, they will ... Original source on Gaea Times at  : <a href="http://tech.gaeatimes.com/index.php/archive/how-to-run-google-chrome-browser-on-linux/">How To Run Google Chrome Browser on Linux</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-run-google-chrome-browser-on-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Install RSSOwl (RSS News Reader) on Linux</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-install-rssowl-rss-news-reader-on-linux/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-install-rssowl-rss-news-reader-on-linux/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 14:45:50 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Enterprise Software and Services]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

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

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

		<category><![CDATA[Open Source Software]]></category>

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

		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[Feed Aggregator]]></category>

		<category><![CDATA[Feed Reader]]></category>

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

		<category><![CDATA[News Reader]]></category>

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

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

		<category><![CDATA[RSS Reader]]></category>

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

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=2808</guid>
		<description><![CDATA[Consider this as the missing installation guide for RSSOwl on Linux. After spending hours trying to get it working I finally figured it out.

How to install RSSOwnl (RSS Reader) on Linux
Note: The instructions may have some Fedora / RHEL bias as I use Fedora Linux, but it is expected to work on all Linux variants.

Download ... Read the original article on Gaea Times at  : <a href="http://tech.gaeatimes.com/index.php/archive/how-to-install-rssowl-rss-news-reader-on-linux/">How To Install RSSOwl (RSS News Reader) on Linux</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-install-rssowl-rss-news-reader-on-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Disable On-Demand CPU Scaling on Linux</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-disable-on-demand-cpu-scaling-on-linux/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-disable-on-demand-cpu-scaling-on-linux/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 19:16:34 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

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

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

		<category><![CDATA[Open Source Software]]></category>

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

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

		<category><![CDATA[cpu scaling]]></category>

		<category><![CDATA[cpu speed]]></category>

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

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

		<category><![CDATA[Fedora Core]]></category>

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=2795</guid>
		<description><![CDATA[Do you know that Linux automatically scales CPU utilization depending on processing requirements? This reduces power consumption and heat. However there are situations when CPU scaling monitor cannot properly identify CPU requirements. In such cases you may want to manually stop cpu speed daemon and restart it later again if required. Here are the required ... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-disable-on-demand-cpu-scaling-on-linux/">Original article on  : How To Disable On-Demand CPU Scaling on Linux</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-disable-on-demand-cpu-scaling-on-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Twitter Using IM on Linux &amp; Windows</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-twitter-using-im-on-linux-windows/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-twitter-using-im-on-linux-windows/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 08:45:16 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

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

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

		<category><![CDATA[Open Source Software]]></category>

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

		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[Web Services]]></category>

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

		<category><![CDATA[Instant Messenger]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=2768</guid>
		<description><![CDATA[Many like to twitter using IM (Instant Messenger) because it is very simple and fast to tweet and simple to get continuous updates on your topics of interest.
In the good old days Twitter used to provide IM support. You could use any Instant Messenger supporting Jabber (XMPP protocol) to connect to Twitter buddy (twitter@twitter.com) on .... Read the original article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/how-to-twitter-using-im-on-linux-windows/">How To Twitter Using IM on Linux &#038; Windows</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-twitter-using-im-on-linux-windows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Automatically Start Nginx &amp; Fastcgi on Reboot on Fedora Linux</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-automatically-start-nginx-fastcgi-on-reboot-on-fedora-linux/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-automatically-start-nginx-fastcgi-on-reboot-on-fedora-linux/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 09:29:49 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

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

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

		<category><![CDATA[Open Source Software]]></category>

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

		<category><![CDATA[Web Hosting]]></category>

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

		<category><![CDATA[Apache HTTPD]]></category>

		<category><![CDATA[HTTP Server]]></category>

		<category><![CDATA[Web Server]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=2725</guid>
		<description><![CDATA[nginx [engine x] is a high quality, light footprint (much ligher than Apache HTTPD), high performance HTTP server and mail proxy server written by Igor Sysoev. nginx is distributed under BSD license unlike its competitor Lighttpd. We are progressively transferring our sites over to nginx. Today when I had to restart the server, I realized .... Source &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/how-to-automatically-start-nginx-fastcgi-on-reboot-on-fedora-linux/">How To Automatically Start Nginx &#038; Fastcgi on Reboot on Fedora Linux</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-automatically-start-nginx-fastcgi-on-reboot-on-fedora-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>FATAL: Module off not found. - Solution</title>
		<link>http://tech.gaeatimes.com/index.php/archive/fatal-module-off-not-found-solution/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/fatal-module-off-not-found-solution/#comments</comments>
		<pubDate>Mon, 04 Aug 2008 15:35:55 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

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

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

		<category><![CDATA[Fedora 8]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=2715</guid>
		<description><![CDATA[You may see the following error in Fedora 8 while starting / restarting the network (service network restart):
FATAL: Module off not found.
Let&#8217;s see how we can fix this.
This happens because you have entered a line in /etc/modprobe.conf to disable ipv6:
alias ipv6 off
In Fedora 8 you should change it to:
options ipv6 off
Now restart network:
service network restart
You .... Read the original article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/fatal-module-off-not-found-solution/">FATAL: Module off not found. - Solution</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/fatal-module-off-not-found-solution/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Install Windows msi Files in Linux</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-install-windows-msi-files-in-linux/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-install-windows-msi-files-in-linux/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 16:07:45 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

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

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

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

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

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

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

		<category><![CDATA[Fedora Core]]></category>

		<category><![CDATA[Windows XP]]></category>

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=2676</guid>
		<description><![CDATA[In Linux wine (or crossover office if you like to pay) is used to execute Windows applications. wine normally open exe files only. However you can also use it to open msi files as follows:
msiexec /i installer-file.msi
Replace installer-file.msi with your actual file name.
.... Source article on Gaea Times at  &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/how-to-install-windows-msi-files-in-linux/">How To Install Windows msi Files in Linux</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-install-windows-msi-files-in-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Use Linksys Compact Wireless-G Internet Video Camera WVC54GC From Linux</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-use-linksys-compact-wireless-g-internet-video-camera-wvc54gc-from-linux/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-use-linksys-compact-wireless-g-internet-video-camera-wvc54gc-from-linux/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 05:49:12 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Headline News]]></category>

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

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

		<category><![CDATA[Open Source Software]]></category>

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

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

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

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

		<category><![CDATA[Video Camera]]></category>

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

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=2629</guid>
		<description><![CDATA[The Linksys Compact Wireless-G Internet Video Camera WVC54GC is a Linux based wireless webcam with its own streaming web server built in. Windows users can view the video stream through their browser without the need to install any extra software other than allowing the supplied Active-X control to run. Unfortunately there isn&#8217;t much in the ... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-use-linksys-compact-wireless-g-internet-video-camera-wvc54gc-from-linux/">Read : How To Use Linksys Compact Wireless-G Internet Video Camera WVC54GC From Linux</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-use-linksys-compact-wireless-g-internet-video-camera-wvc54gc-from-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Rapidly Clean / Wipe Hard Disk Drive</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-rapidly-clean-wipe-hard-disk-drive/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-rapidly-clean-wipe-hard-disk-drive/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 09:57:47 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Headline News]]></category>

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

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

		<category><![CDATA[Open Source Software]]></category>

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

		<guid isPermaLink="false">http://blog.taragana.com/index.php/archive/how-to-rapidly-clean-wipe-hard-disk-drive/</guid>
		<description><![CDATA[How to overwrite your hard disk with random characters
dd if=/dev/random of=/dev/sda

How to overwrite your hard disk with zero characters
dd if=/dev/random of=/dev/sda
Replace sda / hda with your hard disk identifier.
Either of the procedure requires the system has Linux installed or accessible from Linux operating system. You can use a Live Linux distribution like Ubuntu Live CD .... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-rapidly-clean-wipe-hard-disk-drive/">Read the original article &nbsp;: How To Rapidly Clean / Wipe Hard Disk Drive</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-rapidly-clean-wipe-hard-disk-drive/feed/</wfw:commentRss>
		</item>
		<item>
		<title>DansGuardian Configure Error Fix - configure: error: pcre-config not found!</title>
		<link>http://tech.gaeatimes.com/index.php/archive/dansguardian-configure-error-fix-configure-error-pcre-config-not-found/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/dansguardian-configure-error-fix-configure-error-pcre-config-not-found/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 01:54:07 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Computer Security]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.taragana.com/index.php/archive/dansguardian-configure-error-fix-configure-error-pcre-config-not-found/</guid>
		<description><![CDATA[On running ./configure in dansguardian (web content filter for Linux), I got the following error - configure: error: pcre-config not found!configure: WARNING: Cache variable ac_cv_prog_PCRE contains a newline.. The solution, as usual, is simple:

Install pcre-devel. On RedHat / Fedora systems that would be:
yum install pcre-devel
.... <a href="http://tech.gaeatimes.com/index.php/archive/dansguardian-configure-error-fix-configure-error-pcre-config-not-found/">Source &nbsp;: DansGuardian Configure Error Fix - configure: error: pcre-config not found!</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/dansguardian-configure-error-fix-configure-error-pcre-config-not-found/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Solution: Missing Dependency: faad2 &lt; 2.5 is needed by package ffmpeg-libs &amp; Error: vlc conflicts with faad2 &gt;= 2.5</title>
		<link>http://tech.gaeatimes.com/index.php/archive/solution-missing-dependency-faad2-25-is-needed-by-package-ffmpeg-libs-error-vlc-conflicts-with-faad2-25/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/solution-missing-dependency-faad2-25-is-needed-by-package-ffmpeg-libs-error-vlc-conflicts-with-faad2-25/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 10:48:29 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

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

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

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Tech Note]]></category>

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

		<guid isPermaLink="false">http://blog.taragana.com/index.php/archive/solution-missing-dependency-faad2-25-is-needed-by-package-ffmpeg-libs-error-vlc-conflicts-with-faad2-25/</guid>
		<description><![CDATA[Have you seen the error while installing a package using yum / yumex?
Error: vlc conflicts with faad2 >= 2.5
Error: Missing Dependency: faad2 < 2.5 is needed by package ffmpeg-libs
The error is because of using freshrpms repository or other repository to install recent version of faad2. Now let&#8217;s see how you can solve it.

This is a .... Source &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/solution-missing-dependency-faad2-25-is-needed-by-package-ffmpeg-libs-error-vlc-conflicts-with-faad2-25/" title="Solution: Missing Dependency: faad2 < 2.5 is needed by package ffmpeg-libs &#038; Error: vlc conflicts with faad2 >= 2.5">Gaea News Network</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/solution-missing-dependency-faad2-25-is-needed-by-package-ffmpeg-libs-error-vlc-conflicts-with-faad2-25/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Copy Master Boot Record (MBR) Between Hard Disks</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-copy-master-boot-record-mbr-between-hard-disks/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-copy-master-boot-record-mbr-between-hard-disks/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 16:22:36 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

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

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

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

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

		<category><![CDATA[Hard Disk Crash Recovery]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/index.php/archive/how-to-copy-master-boot-record-mbr-between-hard-disks/</guid>
		<description><![CDATA[In Linux you can use the dd command to copy MBR from one hard disk to another. You can also use dd to backup your master boot record to a different (or same) media. One of the common use of MBR copying is to ensure transparent fail-over in RAID-1 hard-disk array, should one  hard-disks .... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-copy-master-boot-record-mbr-between-hard-disks/" title="How To Copy Master Boot Record (MBR) Between Hard Disks">Source &nbsp;: Gaea News Network</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-copy-master-boot-record-mbr-between-hard-disks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Load Balancing &amp; Failover Script for Dual/ Multi WAN / ADSL / Cable Connections on Linux with Mail on failure</title>
		<link>http://tech.gaeatimes.com/index.php/archive/load-balancing-failover-script-for-dual-multi-wan-adsl-cable-connections-on-linux-with-mail-on-failure/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/load-balancing-failover-script-for-dual-multi-wan-adsl-cable-connections-on-linux-with-mail-on-failure/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 14:58:30 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Enterprise Software and Services]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

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

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

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Tech Note]]></category>

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

		<guid isPermaLink="false">http://blog.taragana.com/index.php/archive/load-balancing-failover-script-for-dual-multi-wan-adsl-cable-connections-on-linux-with-mail-on-failure/</guid>
		<description><![CDATA[Please read the original article - How To: Load Balancing &#038; Failover With Dual/ Multi WAN / ADSL / Cable Connections on Linux. It contains detailed information with a sample script. Viliam Kočinský modified my script to send email when routing table changes. Also he is starting the script as a service from /etc/init.d. Read ... Original article on  : <a href="http://tech.gaeatimes.com/index.php/archive/load-balancing-failover-script-for-dual-multi-wan-adsl-cable-connections-on-linux-with-mail-on-failure/">Load Balancing &#038; Failover Script for Dual/ Multi WAN / ADSL / Cable Connections on Linux with Mail on failure</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/load-balancing-failover-script-for-dual-multi-wan-adsl-cable-connections-on-linux-with-mail-on-failure/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

