<?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>TJLUG &#187; storage</title>
	<atom:link href="http://www.tjlug.org/category/pc-hardware/storage/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tjlug.org</link>
	<description>The stone age is an electrical power cut away !</description>
	<lastBuildDate>Thu, 19 Aug 2010 23:59:00 +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>how to mount a ram hard disk in Linux</title>
		<link>http://www.tjlug.org/2010/02/01/how-to-mount-a-ram-hard-disk-in-linux/</link>
		<comments>http://www.tjlug.org/2010/02/01/how-to-mount-a-ram-hard-disk-in-linux/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 08:54:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Lenny]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[hard disks]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[ramdisk]]></category>

		<guid isPermaLink="false">http://www.tjlug.org/?p=358</guid>
		<description><![CDATA[In this post, i will show you how to create a very fast, 0 latency hard drive from the extra gigabyte or 2 on your system 1- You need to change the boot options to allow this&#8230; Since i use &#8230; <a href="http://www.tjlug.org/2010/02/01/how-to-mount-a-ram-hard-disk-in-linux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In this post, i will show you how to create a very fast, 0 latency hard drive from the extra gigabyte or 2 on your system</p>
<p>1- You need to change the boot options to allow this&#8230;</p>
<p>Since i use debian lenny, my boot options look like this in /boot/grub/menu.lst</p>
<p>title        Debian GNU/Linux, kernel 2.6.26-2-686<br />
root        (hd0,1)<br />
kernel        /boot/vmlinuz-2.6.26-2-686 root=/dev/sda2 ro quiet<br />
initrd        /boot/initrd.img-2.6.26-2-686</p>
<p>We need to append ramdisk_size=1572864 if we wanted a 1.5GB RAM drive, make sure you have 1.5GB EXTRA on your system, let&#8217;s say you must have a minimum of 2GB for the system to run using the 512MB you are leaving the system with</p>
<p>title        Debian 1.5GB Ramdisk, kernel 2.6.26-2-686<br />
root        (hd0,1)<br />
kernel        /boot/vmlinuz-2.6.26-2-686 root=/dev/sda2 ro quiet ramdisk_size=1572864<br />
initrd        /boot/initrd.img-2.6.26-2-686</p>
<p>You are done for now, if you want to format and use it do this</p>
<p>/sbin/mkfs.ext2 /dev/ram0</p>
<p>Remember that you need to format as ext2 and not ext3, i have seen people format the hard drive as EXT3, why would you ever need Journaling on a RAM disk that is already volatile (Deleted when you reboot)</p>
<p>mkdir /ramdisk<br />
mount /dev/ram0 /ramdisk</p>
<p>You can now get creative and format or load a disk image at boot time, in any case, the RAM is only allocated to the disk when you use it, but you really don&#8217;t need to know that to use your new RAM hard disk</p>
<p>NOTE: I chose to explain RAM disk because later on i will show you what advantages we can get from having a block level device, you can surely do this without modifying boot options by simply using tempfs or RAMFS that give you an instant ram disk, but it is not a block level device in that case</p>
<p>Testing Speed</p>
<p>So, you want to see how fast it is, but for that we need a data source that can push this thing to the maximum, the answer is /dev/zero that responds with a stream of zeros, so let us write a 1.3GB file to our new volatile hard disk</p>
<p>dd if=/dev/zero of=/ramdisk/pathtoimage.img bs=1M count=1300</p>
<p>On my computer, this took about 4.54006 seconds.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tjlug.org/2010/02/01/how-to-mount-a-ram-hard-disk-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>USB flash not for database</title>
		<link>http://www.tjlug.org/2010/01/28/usb-flash-not-for-database/</link>
		<comments>http://www.tjlug.org/2010/01/28/usb-flash-not-for-database/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 10:11:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[hard disks]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://www.tjlug.org/?p=345</guid>
		<description><![CDATA[SSD disks such as the 128GB supertalent SATA drive are good for DB applications no doubt, but USB flash disks are not, i experimented with MySQL with an operation that probably has seek issues (Latency) So i have a database &#8230; <a href="http://www.tjlug.org/2010/01/28/usb-flash-not-for-database/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>SSD disks such as the 128GB supertalent SATA drive are good for DB applications no doubt, but USB flash disks are not, i experimented with MySQL with an operation that probably has seek issues (Latency)</p>
<p>So i have a database under processing where the problem is supposed to be &#8220;Latency and seek time&#8221;, so i went and got the SanDisk 16GB extreme that is supposed to be 20MB/s read and 18MB/s write, and surely, like all flash drives, no latency.</p>
<p>The performance was very very slow, it is probably a problem with USB or the USB controllers that work that flash memory.</p>
<p>Anyway, if you want to work a database from a USB flash disk, save those $85 (What i paid for the flash disk), you are better off with a SATA hard disk or even an ATA 133. but nothing USB.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tjlug.org/2010/01/28/usb-flash-not-for-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>S.M.A.R.T (SMART) data of hard drives under linux</title>
		<link>http://www.tjlug.org/2009/02/26/smart-smart-data-of-hard-drives-under-linux/</link>
		<comments>http://www.tjlug.org/2009/02/26/smart-smart-data-of-hard-drives-under-linux/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 13:27:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[hard disks]]></category>

		<guid isPermaLink="false">http://www.tjlug.org/?p=125</guid>
		<description><![CDATA[The results of the commands on this post are Here On windows, You can use speedfan, under linux you can read the smart data as follows Use the smartctl command 1- Checking for smart support, (All recent hard drives have &#8230; <a href="http://www.tjlug.org/2009/02/26/smart-smart-data-of-hard-drives-under-linux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The results of the commands on this post are <a title="SMART data for a hard drive under linux" href="http://www.easywebdns.com/tutorials/Linux/Hard_Disk_SMART_DATA#Hard_disk_SMART_data_under_linux">Here</a></p>
<p>On windows, You can use speedfan, under linux you can read the smart data as follows</p>
<p>Use the smartctl command</p>
<p>1- Checking for smart support, (All recent hard drives have it but you need to enable it in BIOS)</p>
<p><code>smartctl -i /dev/sdb</code></p>
<p>2- Enable reading it</p>
<p><code>smartctl -s on -d ata /dev/sdb</code></p>
<p>See it</p>
<p><code>smartctl -d ata -H /dev/sdb</code></p>
<p>Read more</p>
<p><code>smartctl -d ata -a /dev/sdb</code></p>
<p>Now some manufacturer specific smart atributes exist, you need to google them out, Also smart is not definitive, if S.M.A.R.T data says ok but there is a ticking noise in your hard drive, Don&#8217;t trust the hardware data, get backup.</p>
<p>Some hard drives like the Samsung Spinpoint come with extensive diagnostics software, My 3 2.5&#8242; disks pass the test, pass the smart test, and tick when warm, i will let you know if it was the tick of death sometime soon</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tjlug.org/2009/02/26/smart-smart-data-of-hard-drives-under-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data CD and DVD are not for me</title>
		<link>http://www.tjlug.org/2009/02/07/data-cd-and-dvd-are-not-for-me/</link>
		<comments>http://www.tjlug.org/2009/02/07/data-cd-and-dvd-are-not-for-me/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 20:12:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://www.tjlug.org/?p=89</guid>
		<description><![CDATA[It may be true that CDs and DVDs are cheap, I think they are very cheap, especially DVDs, but they are not the way for me, they become bulky, and finding them is not easy, you have to physically go &#8230; <a href="http://www.tjlug.org/2009/02/07/data-cd-and-dvd-are-not-for-me/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It may be true that CDs and DVDs are cheap, I think they are very cheap, especially DVDs, but they are not the way for me, they become bulky, and finding them is not easy, you have to physically go through them time and time again !</p>
<p>I already have hundreds of data DVDs and CDs, What i do is, i make an ISO file from the data CD or DVD, store it on the network and then mount it from there on any OS.</p>
<p>Most (All the ones i know of) linux distributions can mount an ISO file, Under Windows, i found this very nice utility that is also free called Virtual Clone Drive (Others may exist).</p>
<p>Install that, Double click any ISO and then you will find it in My Computer Area of your personal computer.</p>
<p>The only question that remains is, are DVDs and CDs worth it ?</p>
<p>1- When doing the math, you might be tempted to devide the price by the number of GBs and see the cost per GB, this is not very accurate, for every 4 or 6 disks need a computer to host them right ?</p>
<p>You can also use NAS enclosures to do the magic right ? yes you can and for this example i will do the math with a NAS enclosure</p>
<p>At the time of writing, the seagate 1.5 TB costs $130, That is around 8.5 cents per GB (Impressive).<br />
Add to that the price of a NAS enclosure for about 40 Dollars (If you have extra SATA ports on your PC or network this is not necessary). the cost per GB becomes. ((130 + 40) / 1500) = 11 Cents per GB !</p>
<p>But is that cheaper than DVD ?</p>
<p>Last time i got DVDs, they were 20 Cents each, this means they cost around 5 Cents per GB.<br />
So, no doubt, that today, DVDs are cheaper than disk space, but the question remains, can the low cost of a DVD justify its use ? they are harder to manage, but they do have advantages,</p>
<p>1- Security, If it is stored away from light, Humitdity and other things, you can&#8217;t loase data that is on a DVD like you can lose data on a hard disk, Hard disks are very reliable, But never as reliable as a DVD.</p>
<p>2- Cheaper, as we have just seen.</p>
<p>3- Portable, You can carry them around easily</p>
<p>4- they come in smaller chunks, you can not lend 2 GBs of your hard drive to your friend</p>
<p>So, DVDs may still have there place (And other forms of optical storage), for me, i would go the hard disk route, and when i need a DVD i can just burn one from the ISO files on the hard drive.</p>
<p>NOTE &#8211; If you go the hard drive route, the cost doubles if you want to back up your data !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tjlug.org/2009/02/07/data-cd-and-dvd-are-not-for-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Western Digital WD1001FALS 1TB drive</title>
		<link>http://www.tjlug.org/2009/01/28/western-digital-wd1001fals-1tb-drive/</link>
		<comments>http://www.tjlug.org/2009/01/28/western-digital-wd1001fals-1tb-drive/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 11:32:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[hard disks]]></category>
		<category><![CDATA[1TB]]></category>
		<category><![CDATA[esata]]></category>
		<category><![CDATA[hard disk]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[perpendicular]]></category>
		<category><![CDATA[sata]]></category>
		<category><![CDATA[western digital]]></category>

		<guid isPermaLink="false">http://www.tjlug.org/?p=12</guid>
		<description><![CDATA[Now this is a good hard drive, i am using it at the minute, and am very happy about it Connected directly to my eVGA &#8211; nVIDIA nForce motherboard 630i/7150, Windows reports the hard disk on Windows experience index as &#8230; <a href="http://www.tjlug.org/2009/01/28/western-digital-wd1001fals-1tb-drive/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Now this is a good hard drive, i am using it at the minute, and am very happy about it</p>
<p>Connected directly to my eVGA &#8211; nVIDIA nForce motherboard 630i/7150, Windows reports the hard disk on Windows experience index as 5.9 (Not bad for a 7200 RPM disk).<br />
high resolution photos of the <a href="http://www.pxdrive.com/album/HARD+DISK+WESTERN+DIGITAL+WD1001FALS_pictures_riyypic/">WD1001FALS</a>.</p>
<p><img src="http://imgsrv2.pxdrive.com/pics/mid/219414.jpg" alt="" /><img src="http://imgsrv2.pxdrive.com/pics/mid/219415.jpg" alt="" /><img src="http://imgsrv2.pxdrive.com/pics/mid/219416.jpg" alt="" />.</p>
<p>Now to experience with this drive.</p>
<p>I have owned it for some time now, and i have used it for some time too.</p>
<p>I like western digital and have been a loyal customer since the 90s, they don&#8217;t break down on me like most other brands.</p>
<p>Western digital already released the 2TB green hard drive (Yes, you heard it right two terra bytes), but since this is the black edition (Performance), 1TB is still the maximum you can get from this category.</p>
<p>The hard disk has 32MB cache, and a sustained buffer to disk sustained transfer rate of 106 MB/s, Yes, the B is in capital letter, this is around 1000+ Mbit per second.</p>
<p>the 3 plates/disks and 6 heads (2 per disk one above and one below) make it heavy, and to eutelise more of this the hard disk needs a good processor, Western digital claims it uses a Dual Core Processor. but is the marvell chip</p>
<p>M (Marvell)<br />
88i8845E-BHY2<br />
YPME349AU<br />
0805 D0PS<br />
TW</p>
<p>really a dual processor ? Searching the marvell website (marvell.com) yields no result for this processor, Not much is available on the internet about the 88ixxxx processor range&#8230;</p>
<p>StableTrac (Motor shaft held at both ends), NoTouch ramp load technology, and Perpendicular Magnetic Recording (PMR) are features of the drive according to Western Digital.</p>
<p>Tests. In a few minutes while i see them</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tjlug.org/2009/01/28/western-digital-wd1001fals-1tb-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BELKIN SATA 2 EXPRESSCARD F5U239</title>
		<link>http://www.tjlug.org/2009/01/28/belkin-sata-2-expresscard-f5u239/</link>
		<comments>http://www.tjlug.org/2009/01/28/belkin-sata-2-expresscard-f5u239/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 11:22:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PCI cards]]></category>
		<category><![CDATA[hard disks]]></category>
		<category><![CDATA[esata]]></category>
		<category><![CDATA[expresscard]]></category>
		<category><![CDATA[port multiplier]]></category>
		<category><![CDATA[raid]]></category>
		<category><![CDATA[sata]]></category>

		<guid isPermaLink="false">http://www.tjlug.org/?p=8</guid>
		<description><![CDATA[BELKIN SATA 2 EXPRESSCARD F5U239 with the SILICON IMAGE SIL3132 card So, it may be the fastest to go with your mybook with esata, it is fast, but has many shortcomings. To begin with, you can not boot your laptop &#8230; <a href="http://www.tjlug.org/2009/01/28/belkin-sata-2-expresscard-f5u239/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>BELKIN SATA 2 EXPRESSCARD F5U239 with the SILICON IMAGE SIL3132 card</p>
<p><img class="alignleft" title="belkin esata 2 EXPRESSCARD F5U239 SILICON IMAGE SIL3132" src="http://imgsrv2.pxdrive.com/pics/mid/219412.jpg" alt="" width="256" height="300" />So, it may be the fastest to go with your mybook with esata, it is fast, but has many shortcomings.</p>
<p>To begin with, you can not boot your laptop from this card, you can if you install a software boot loader but the hardware is not bootable.</p>
<p>This card worked fine with a sata port multiplier by silicon image, unlike many other sata controllers.</p>
<p>2 LEDs are there showing disk activity, but remember that although they say it gives you a 3MBit connection to the hard drive, the maximum of the connection is much less having the expresscard bus as a bottelneck, even worse, both hard drives will have to share that expresscard bus !</p>
<p>All in all i am happy with the product if it were not for the boot issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tjlug.org/2009/01/28/belkin-sata-2-expresscard-f5u239/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
