<?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>PC-HQ.net &#187; Linux</title>
	<atom:link href="http://www.pc-hq.net/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pc-hq.net</link>
	<description>Linux, Windows, Whatever...</description>
	<lastBuildDate>Fri, 30 Jul 2010 19:58:31 +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>GlusterFS Conclusion?</title>
		<link>http://www.pc-hq.net/2008/10/glusterfs-conclusion/</link>
		<comments>http://www.pc-hq.net/2008/10/glusterfs-conclusion/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 15:56:57 +0000</pubDate>
		<dc:creator>Tony W.</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Hacker]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.pc-hq.net/?p=212</guid>
		<description><![CDATA[Not yet&#8230; Without me having the time and the hardware to do a real world test this week I&#8217;ve been spending a lot of time reading up on my future setup.  It would appear that since GlusterFS doesn&#8217;t (at this time but Raid6 is slotted...]]></description>
			<content:encoded><![CDATA[<p>Not yet&#8230;</p>
<p>Without me having the time and the hardware to do a real world test this week I&#8217;ve been spending a lot of time reading up on my future setup.  It would appear that since GlusterFS doesn&#8217;t (at this time but Raid6 is slotted for version 1.7) support parity blocks, a Raid5 style setup would not be feasable.  The best you could hope for with as little hardware as I have is to run a Raid 0 or Raid 1 setup.  With some advanced setup and multiple drives across 2 computers, a Raid01 setup would be possible, but I don&#8217;t have the means to try it out.</p>
<p>Once I get all the kinks out of my current, sloppy setup, I will post a howto describing both the installation, setup and pitfalls I&#8217;ve encountered along the way.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pc-hq.net/2008/10/glusterfs-conclusion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GlusterFS Continued</title>
		<link>http://www.pc-hq.net/2008/10/glusterfs-continued/</link>
		<comments>http://www.pc-hq.net/2008/10/glusterfs-continued/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 14:50:12 +0000</pubDate>
		<dc:creator>Tony W.</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Hacker]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.pc-hq.net/?p=201</guid>
		<description><![CDATA[I have successfully created a stripe across two computers using the GlusterFS install.  It was pretty easy to setup and configure though the documentation they have on their site needs a little revision.  At this point it&#8217;s really written towards someone with a higher level...]]></description>
			<content:encoded><![CDATA[<p>I have successfully created a stripe across two computers using the GlusterFS install.  It was pretty easy to setup and configure though the documentation they have on their site needs a little revision.  At this point it&#8217;s really written towards someone with a higher level of understanding of both linux and the hardware involved.</p>
<p>Now the setup I have experimented with was just a means for me to see what would happen if I setup 2 machines, one with a 200GB partition and the other with a 60GB partition.  After I configured both machines and mounted the GlusterFS clustered/striped file system to /mnt/pool, I had a nice, shiny ~250GB partition.  This is cool for 3 reasons.</p>
<p>1. I don&#8217;t need the same hardware in both machines to make this setup work.</p>
<p>2. I get approx 100% of both drives being used in the setup.  HD1 + HD2.</p>
<p>3. I get a slight speed increase due to the striping, similar to RAID 0.  When data is written or read from the drives, I have 2 sources instead of one.  So my maximum theoretical bandwidth is no longer limited to hard drive transfer rates, but to the 2 system&#8217;s drives or the network, whichever comes first.</p>
<p>I am testing these out on a slower network setup, 100Mb/s bandwidth, but once I have a more advanced setup I want to move to something a little more robust, 1000Mb/s.</p>
<p>My setup right now has one <strong>MAJOR</strong> flaw in it.  If one drive goes down (drive, system, network) then the whole /mnt/pool file system is unavailable.  Again, think Raid 0.  For me this would only be useful if I had a bunch of drives that I just wanted to use as a faster way to serve unimportant data.</p>
<p>Since all the data I have is important, that leaves me with 2 options.  Simple mirroring across multiple drives (Raid 1) or what I&#8217;m going to try in my next step: File replication over striping.  Think more like Raid 5.  Benefits will be the following:</p>
<p>1. Redundant data.  Data is mirrored across multiple drives to allow redundancy and a speed increase.</p>
<p>2. Speed increase.  Since data is stored on more than one drive, the machines read from multiple locations and faster read times can be achieved.</p>
<p>3. Storage space.  While not as impressive as Raid 0 on it&#8217;s use of space, Raid 5 uses a minimum of 3 drives and stores like this.</p>
<p>Drive one:     1/2/3</p>
<p>Drive two:     2/3/1</p>
<p>Drive three:   3/1/2</p>
<p>Data is figured being &#8220;Size * (Number of disks &#8211; 1) / number of disks).  So assuming these are three 1TB drives, it would look like this:  3,000,000,000 * (3 &#8211; 1 = 2) / 3 = 2,000,000,000.  So you get storage space equal to ~66% of the total drive space in the above example.  Three 1TB drives will give you 2TB of usable space.  Three 100GB drives give you 200GB usable.  Assuming you use 5 drives&#8230;5,000,000,000 * (5-1=4)/5 = 4TB.  3 gives you 2, 5 gives you 4, 10 gives you 9.</p>
<p>4. If one node (computer/network connection/hard drive) goes down, the whole system keeps on going.  Again, since the same data is stored on multiple drives, if one system goes down, the controlling machine or machines will see this and know to pull data from the backup source.</p>
<p>Looking at what I had listed earlier, if we take down drive 1, the data on drive 1 is also on drive 3.  So drive 3 takes over serving drive 3 and 1 data and drive 2 keeps on going since it&#8217;s the original.</p>
<p>My main problem I have right now is finding another system that has a decent sized drive in it.  I found a spare machine here with a nice 13GB drive in it, I know, it&#8217;s huge.  But for real world tests, this is too small.  I want at least an 80GB drive and while I had 2 not so long ago, I gave them both to my father in law because I saw no need to keep such small drives.  I could use them now.</p>
<p>More to come when I have it.  Stay tuned&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pc-hq.net/2008/10/glusterfs-continued/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>GlusterFS</title>
		<link>http://www.pc-hq.net/2008/10/glusterfs/</link>
		<comments>http://www.pc-hq.net/2008/10/glusterfs/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 16:56:00 +0000</pubDate>
		<dc:creator>Tony W.</dc:creator>
				<category><![CDATA[Mobile Blogger]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Hacker]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.pc-hq.net/2008/10/glusterfs/</guid>
		<description><![CDATA[I have been looking into a setup that would allow a networked file system similar to a raid 5 setup. My problem has been that everything I had found was complex to install and had to use custom cluster applications to use the file system....]]></description>
			<content:encoded><![CDATA[<p>I have been looking into a setup that would allow a networked file system similar to a raid 5 setup.  My problem has been that everything I had found was complex to install and had to use custom cluster applications to use the file system.</p>
<p>I wound up finding GlusterFS that suited my needs.  It allows you to span hard drives across multiple networked systems and mount all machines as 1 drive.  Now I&#8217;m suddenly finding a possible use for all of those old systems around the house.</p>
<p>The only limit to how big you go is how many machines you have linked together and how fast your network is.  You&#8217;ll need a fast backbone to pull GB/sec but I have seen places on their site make reference to some really impressive numbers.</p>
<p>I&#8217;m at the researching stage at this point and garhering materials, so as soon as I have a working model I will post a howto on my setup and any issues I run into.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pc-hq.net/2008/10/glusterfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 8.10</title>
		<link>http://www.pc-hq.net/2008/09/ubuntu-810/</link>
		<comments>http://www.pc-hq.net/2008/09/ubuntu-810/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 15:22:53 +0000</pubDate>
		<dc:creator>Tony W.</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.pc-hq.net/?p=189</guid>
		<description><![CDATA[Intrepid Ibex is just around the corner.  I have an old machine downloading a pre-release at the moment&#8230;just shy of 800MB to do that. Not a problem with today&#8217;s offered internet speeds. The official release should be announced sometime in October (hence the &#8220;10&#8243; in...]]></description>
			<content:encoded><![CDATA[<p>Intrepid Ibex is just around the corner.  I have an old machine downloading a pre-release at the moment&#8230;just shy of 800MB to do that.  Not a problem with today&#8217;s offered internet speeds.</p>
<p>The official release should be announced sometime in October (hence the &#8220;10&#8243; in the 8.10).  After all of the other releases I&#8217;ve upgraded to in the past, there have sometimes been subtle, yet important changes to the OS and here recently, major changes to the system to make it both more user friendly and a more robust system.  I never get bored with the new releases.</p>
<p><script src="http://www.ubuntu.com/files/countdown/display.js" type="text/javascript"></script></p>
<p>Their countdown script doesn&#8217;t seem to work for non-LTS versions (April releases) so the image isn&#8217;t updating as of this posting.  Sucks but what do you do?</p>
<p>Edit: It started working when the official release date was announced.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pc-hq.net/2008/09/ubuntu-810/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
