<?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>All Your Linux</title>
	<atom:link href="http://www.allyourlinux.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.allyourlinux.com</link>
	<description>tips, tricks &#38; howto&#039;s</description>
	<lastBuildDate>Tue, 06 Dec 2011 14:09:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>Setting up MySQL replication</title>
		<link>http://www.allyourlinux.com/non-linux/setting-up-mysql-replication</link>
		<comments>http://www.allyourlinux.com/non-linux/setting-up-mysql-replication#comments</comments>
		<pubDate>Tue, 06 Dec 2011 04:40:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[non-linux]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.allyourlinux.com/?p=73</guid>
		<description><![CDATA[1. Settings to be done in Master DB server: Edit my.cnf file (/etc/my.cnf) and enter the following: server-id = 1 log-bin 2. Login to mysql DB in master server and run the following command: mysql&#62; show master status; Note down the following values: MASTER_LOG_FILE &#38; MASTER_LOG_POS Then give permission for the slave server mysql&#62;GRANT REPLICATION [...]]]></description>
		<wfw:commentRss>http://www.allyourlinux.com/non-linux/setting-up-mysql-replication/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Story of Linux</title>
		<link>http://www.allyourlinux.com/linux/the-story-of-linux</link>
		<comments>http://www.allyourlinux.com/linux/the-story-of-linux#comments</comments>
		<pubDate>Tue, 21 Jun 2011 20:49:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[Linus Torvalds]]></category>

		<guid isPermaLink="false">http://www.allyourlinux.com/?p=63</guid>
		<description><![CDATA[&#160; via The Linux Foundation]]></description>
		<wfw:commentRss>http://www.allyourlinux.com/linux/the-story-of-linux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change first letter of a word to upper case with perl</title>
		<link>http://www.allyourlinux.com/linux/change-first-letter-of-a-word-to-upper-case-with-perl</link>
		<comments>http://www.allyourlinux.com/linux/change-first-letter-of-a-word-to-upper-case-with-perl#comments</comments>
		<pubDate>Mon, 09 May 2011 07:32:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://www.allyourlinux.com/?p=55</guid>
		<description><![CDATA[Often while scripting, it requires to change the first letter of a word to upper case. Using perl with the below command, we can achieve this. echo $word &#124; perl -pe &#8216;s/^(.{0})(.)/$1\U$2/;&#8217;`]]></description>
		<wfw:commentRss>http://www.allyourlinux.com/linux/change-first-letter-of-a-word-to-upper-case-with-perl/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Soft and Hard Links</title>
		<link>http://www.allyourlinux.com/linux/soft-and-hard-links</link>
		<comments>http://www.allyourlinux.com/linux/soft-and-hard-links#comments</comments>
		<pubDate>Mon, 09 May 2011 07:26:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://www.allyourlinux.com/?p=51</guid>
		<description><![CDATA[Soft links Pointers to programs, files, or directories located elsewhere. If the original program, file, or directory is renamed, moved, or deleted, the soft link is broken. If you type ls -F you can see which files are soft links because they end with @ To create a soft link called filelink.txt that points to [...]]]></description>
		<wfw:commentRss>http://www.allyourlinux.com/linux/soft-and-hard-links/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu &#8211; How to restore accidently deleted panel?</title>
		<link>http://www.allyourlinux.com/linux/ubuntu-how-to-restore-accidently-deleted-panel</link>
		<comments>http://www.allyourlinux.com/linux/ubuntu-how-to-restore-accidently-deleted-panel#comments</comments>
		<pubDate>Thu, 28 Apr 2011 07:30:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.allyourlinux.com/?p=41</guid>
		<description><![CDATA[Open up a terminal. For this press ALT-F2 and and the dialog box, type gnome-terminal. Now enter the following commands: gconftool &#8211;recursive-unset /apps/panel rm -rf ~/.gconf/apps/panel pkill gnome-panel You will see your deleted panels appear with their default settings. Note:- Tested and working on Ubuntu 10.10]]></description>
		<wfw:commentRss>http://www.allyourlinux.com/linux/ubuntu-how-to-restore-accidently-deleted-panel/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the maximum size for a swap partition?</title>
		<link>http://www.allyourlinux.com/linux/what-is-the-maximum-size-for-a-swap-partition</link>
		<comments>http://www.allyourlinux.com/linux/what-is-the-maximum-size-for-a-swap-partition#comments</comments>
		<pubDate>Wed, 27 Apr 2011 07:29:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[swap]]></category>

		<guid isPermaLink="false">http://www.allyourlinux.com/?p=34</guid>
		<description><![CDATA[In earlier versions of linux, there was a limitation of 2GB for partition space and this was becasue mkswap command does not supports creation of swap partition larger than 2GB. But in new versions (from RHEL3), mkswap allows creation for swap partitions larger than 2GB. So the size depends on the file size/block size limits.]]></description>
		<wfw:commentRss>http://www.allyourlinux.com/linux/what-is-the-maximum-size-for-a-swap-partition/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Defragmenting MySQL DB</title>
		<link>http://www.allyourlinux.com/non-linux/defragmenting-mysql-db</link>
		<comments>http://www.allyourlinux.com/non-linux/defragmenting-mysql-db#comments</comments>
		<pubDate>Wed, 27 Apr 2011 07:05:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[non-linux]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.allyourlinux.com/?p=32</guid>
		<description><![CDATA[Whenever there is change in the structure of a MySQL database, or we remove lot of data from a table, the files can  become fragmented which may result in the loss of performance, while running the queries. We can optimise the database as shown below: mysqlcheck -o &#60;database name&#62;]]></description>
		<wfw:commentRss>http://www.allyourlinux.com/non-linux/defragmenting-mysql-db/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is TCP 3 way handshake?</title>
		<link>http://www.allyourlinux.com/non-linux/what-is-tcp-3-way-handshake</link>
		<comments>http://www.allyourlinux.com/non-linux/what-is-tcp-3-way-handshake#comments</comments>
		<pubDate>Wed, 27 Apr 2011 07:02:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[non-linux]]></category>
		<category><![CDATA[tcp]]></category>

		<guid isPermaLink="false">http://www.allyourlinux.com/?p=24</guid>
		<description><![CDATA[The three-way handshake in Transmission Control Protocol is the method used to establish and tear down network connections. The TCP handshaking mechanism is designed so that two computers attempting to communicate can negotiate the parameters of the network connection before beginning communication. This process is also designed so that both ends can initiate and negotiate [...]]]></description>
		<wfw:commentRss>http://www.allyourlinux.com/non-linux/what-is-tcp-3-way-handshake/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu- How to disable extra TTYs in upstart</title>
		<link>http://www.allyourlinux.com/linux/ubuntu-how-to-disable-extra-ttys-in-upstart</link>
		<comments>http://www.allyourlinux.com/linux/ubuntu-how-to-disable-extra-ttys-in-upstart#comments</comments>
		<pubDate>Wed, 27 Apr 2011 06:56:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.allyourlinux.com/?p=20</guid>
		<description><![CDATA[Edit /etc/default/console-setup file. This file shows how many ttys you will have. Change ACTIVE_CONSOLES=”/dev/tty[1-6]” to the number of consoles you wish to have. if you need 2 ttys, then change it to “/dev/tty[1-2]“. Now goto /etc/event.d/ and change the ttyx files that you DO NOT wish to have. Edit these files and comment lines starting [...]]]></description>
		<wfw:commentRss>http://www.allyourlinux.com/linux/ubuntu-how-to-disable-extra-ttys-in-upstart/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What is linux?</title>
		<link>http://www.allyourlinux.com/linux/what-is-linux</link>
		<comments>http://www.allyourlinux.com/linux/what-is-linux#comments</comments>
		<pubDate>Tue, 26 Apr 2011 09:34:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[Linus Torvalds]]></category>

		<guid isPermaLink="false">http://www.allyourlinux.com/?p=12</guid>
		<description><![CDATA[Linux is an operating system that was initially created as a hobby by a young student, Linus Torvalds, at the University of Helsinki in Finland. Linus had an interest in Minix, a small UNIX system, and decided to develop a system that exceeded the Minix standards.He began his work in 1991 when he released version [...]]]></description>
		<wfw:commentRss>http://www.allyourlinux.com/linux/what-is-linux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

