<?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>IraqiTek &#187; Hard Drive</title>
	<atom:link href="http://v2.iraqitek.com/tag/hard-drive/feed/" rel="self" type="application/rss+xml" />
	<link>http://v2.iraqitek.com</link>
	<description>Let's Bring Iraq Back</description>
	<lastBuildDate>Thu, 08 Apr 2010 06:14:17 +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>NILFS: A File System to Make SSDs Scream</title>
		<link>http://v2.iraqitek.com/2009/06/12/nilfs-a-file-system-to-make-ssds-scream/</link>
		<comments>http://v2.iraqitek.com/2009/06/12/nilfs-a-file-system-to-make-ssds-scream/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 06:36:10 +0000</pubDate>
		<dc:creator>Data-Base</dc:creator>
				<category><![CDATA[HDD]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Storage]]></category>
		<category><![CDATA[2.6.30]]></category>
		<category><![CDATA[File System]]></category>
		<category><![CDATA[Hard Drive]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[NILFS]]></category>
		<category><![CDATA[Solid State Disk]]></category>

		<guid isPermaLink="false">http://v2.iraqitek.com/?p=923</guid>
		<description><![CDATA[The 2.6.30 kernel is chock full of next-gen file systems. One such example is NILFS, a new log-structured file system that dramatically improves write performance. It’s difficult to write storage articles at this time and not focus on the upcoming 2.6.30 kernel. Why? This kernel is loaded with a number of new file systems — [...]]]></description>
			<content:encoded><![CDATA[<p>The 2.6.30 kernel is chock full of next-gen file systems. One such example is NILFS, a new log-structured file system that dramatically improves write performance.</p>
<p><span id="more-923"></span></p>
<p>It’s difficult to write storage articles at this time and not focus on the upcoming 2.6.30 kernel. Why? This kernel is loaded with a number of new file systems — some of which we’ve already covered, like <a href="http://www.linux-mag.com/id/7271" target="_blank">ext4</a> and <a href="http://www.linux-mag.com/id/7308" target="_blank">btrfs</a>. Another of the hot new file systems that is in 2.6.30 is <a href="http://www.nilfs.org/en/" target="_blank">NILFS</a>. This file system is definitely one that you should be testing.</p>
<p>NILFS2 (New Implementation of a Log-Structured File System Version 2) is a very promising new log-structured file system that has continuous snapshots and versioning of the entire file system. This means that you can recover files that were deleted or unintentionally modified as well as perform backups at any time from a snapshot without a performance penalty normally associated with creating snapshots. In addition, there is evidence that NILFS has extremely good performance on SSD drives.</p>
<p><strong>Log-Structured File System?</strong></p>
<p>Log-Structured File Systems are a bit different than other file systems with both good points and bad points. Rather than write to a tree structure such as a <a href="http://en.wikipedia.org/wiki/B-tree">b-tree</a> or an <a href="http://en.wikipedia.org/wiki/H-tree">h-tree</a>, either with or without a journal, a <a href="http://en.wikipedia.org/wiki/Log-structured_file_system">log-structured</a> file system writes all data and metadata sequentially in a continuous stream that is called a log (actually it is a circular log).</p>
<p>The concept was  developed by <a href="http://en.wikipedia.org/wiki/John_Ousterhout" target="_blank">John Ousterhout</a> of <a href="http://www.tcl.tk/" target="_blank">TCL</a> fame and Fred Douglis. The motivation behind log-structured file systems is that typical file systems lay out data based on spatial locality for rotating media (hard drives). But rotating media tends to have slow seek times limiting write performance. In addition, it was presumed that most IO would become write dominated (this observation is supported by a study that was summarized in a recent <a href="http://www.linux-mag.com/id/7336" target="_blank">article</a>). So a log-structured file system takes a new approach and treats the file system as a circular log and writes sequentially to the “head” of the log (the beginning) never over writing the existing log. This means that seeks are kept to a minimum because everything is sequential, improving write performance.</p>
<p>A log-structured file system, because of its design, makes it very easy to create snapshots (in NILFS they are called checkpoints) of both the data and metadata. NILFS can then mount these checkpoints (or snapshots) along side the primary NILFS file system. From these checkpoints, you can recover erased files (if the checkpoint has a date and time prior to when the file was erased) or you can use it for backups or even disaster recovery images.</p>
<p>Another benefit of log-structured file systems is that recovering from a crash is easier than the more typical tree based file systems (e.g. ext2, ext3, etc.). After a log-structured file system crashes, when it is remounted it can reconstruct its state from the last consistent point in the log. It starts at the head of the circular log and backs up until the file system is consistent. This point should be very close to the head so little if any data or metadata will be lost. This process is extremely fast regardless of the size of the file system.</p>
<p>This bears repeating &#8211; <em>a log-structured file system recovers from a crash extremely fast and the amount of time is <strong>independent of the size of the file system</strong></em>. In contrast, other file systems have to replay their journal and possibly even walk their data structures to make sure the file system is consistent (i.e. run “fsck”). Everyone who has run fsck on a very large file system knows how much time it can take.</p>
<p>One problematic aspect of log-structured file systems is that they need to include a fairly sophisticated capability of “garbage collection” to reclaim free space. Free space needs to be reclaimed from the tail of the log, primarily the old check points, so that the file system doesn’t become full when the head of the log wraps around to the tail. There are many techniques for reclaiming space, one is covered in the Wikipedia <a href="http://en.wikipedia.org/wiki/NILFS" target="_blank">article</a> about log-structured file systems. The garbage collection process reclaims space from the check points (snap shots) otherwise the file system would fill far too quickly.</p>
<p><strong>A Log Structured File System for Linux &#8211; NILFS</strong></p>
<p>The Nippon Telephone and Telegraph (NTT) CyberSpace Laboratories has been developing <a href="http://en.wikipedia.org/wiki/NILFS" target="_blank">NILFS</a> (also referred to as NILFS2 since it is the version 2 of the file system) for Linux. It is released under the GPL 2.0 license and is included in the 2.6.30 kernel. It spent a great deal of time in the -mm kernels and under went much testing since it’s initial <a href="http://www.linuxelectrons.com/news/linux/ntt-releases-nilfs-linux-file-system-prevention-data-loss" target="_blank">announcement</a>.</p>
<p>One of the most noticeable features of NILFS is that it can “continuously and automatically save instantaneous states of the file system without interrupting service”. NILFS refers to these as checkpoints. In contrast, other file systems such as ZFS, can provide snapshots but they have to suspend operation to perform the snapshot operation. NILFS doesn’t have to do this. The snapshots (checkpoints) are part of the file system design itself.</p>
<p>One of the really cool features of NILFS is that these checkpoints can actually be mounted along side the primary file system. This has many, many uses, one of which is to mount a checkpoint to recover files that were unintentionally erased.</p>
<p>In addition to being able to recover recently erased files and extremely fast crash recovery times, there are a number of other features of NILFS that are very attractive:</p>
<ul>
<li>The file size and inode numbers are stored as 64-bit fields</li>
<li>File sizes of up to 8 EiB (Exbibyte &#8211; approximately an Exabyte)</li>
<li>Block sizes that are smaller than a page size (i.e. 1KB-2KB). This can potentially make NILFS much faster for small files than other file systems.</li>
<li>File and inode blocks use a B-tree (the use of B-trees in a log-structured file system stems from the implementation which use something called segments)</li>
<li>NILFS uses 32-bit checksums (CRC32) on data and metadata for integrity assurance</li>
<li>Correctly ordered data and meta-data writes</li>
<li>Redundant superblock</li>
<li>Read-ahead for meta data files as well as data files (helps read  performance)</li>
<li>Continuous check pointing which can be used for snapshots. These can be used for backups or they can even be used for recovering files.</li>
</ul>
<p><strong>Checkpoints and Snapshots</strong></p>
<p>One of the features that users can really enjoy with NILFS is the ability to recover erased or modified files. NILFS creates a checkpoint “every few seconds or per synchronous write basis (unless there is no change).” (from the kernel documentation). Then the user can select a checkpoint and convert it into a snapshot. These snapshots are preserved until they are converted back into checkpoints. Checkpoints are not preserved for the life of the file system and after a period of time the garbage collection process will recover the space in the checkpoint.</p>
<p>This means that users can’t recover files from a long time in the past. But there is no limit to the number of snapshots that can be created &#8211; at least until the file system volume becomes full. There are many uses for the snapshots including recovery of erased or modified files or they can be used by administrators for backups.</p>
<p>There are a few user-space commands that help with check points and snapshots. From the NILFS <a href="http://www.nilfs.org/en/about_nilfs.html" target="_blank">web site</a> is an explanation of the process and is paraphrased here. The first step is to list the check points using the lscp command.</p>
<pre><span style="color: #808080;">$ lscp
       CNO        DATE     TIME  MODE  SKT   NBLKINC       ICNT
         1  2008-05-08 14:45:49  cp     -         11          3
         2  2008-05-08 14:50:22  cp     -     200523         81
         3  2008-05-08 20:40:34  cp     -        136         61
         4  2008-05-08 20:41:20  cp     -     187666       1604
         5  2008-05-08 20:41:42  cp     -         51       1634
         6  2008-05-08 20:42:00  cp     -         37       1653
         7  2008-05-08 20:42:42  cp     -     272146       2116
         8  2008-05-08 20:43:13  cp     -     264649       2117
         9  2008-05-08 20:43:44  cp     -     285848       2117
        10  2008-05-08 20:44:16  cp     -     139876       7357</span></pre>
<p>Notice that the output of <code>lscp</code> lists the date and time of the check points. Under the column labeled “MODE” is either a “cp”, that stands for “check point”, or “ss” that stands for “snap shot.” If a user does not want to wait for a check point and wants to create one immediately, the <code>mkcp</code> command could be used. In general you need to tell <code>mkcp</code> the device containing a NILFS file system otherwise it searches <code>/proc/mounts</code> for NILFS file systems.</p>
<p>To take a check point and create a snap shot, one uses the <code>mkcp</code> command again. In this case, one uses the command <code>mkcp -s</code> to create the snapshot from an existing checkpoint. You can also use the <code>chcp</code> command that changes a check point into a snap shot or vice versa. Again, from the NILFS website is an example of creating a snapshot.</p>
<pre><span style="color: #808080;">$ sudo chcp ss 2
$ lscp
       CNO        DATE     TIME  MODE  SKT   NBLKINC       ICNT
         1  2008-05-08 14:45:49  cp     -         11          3
         2  2008-05-08 14:50:22  ss     -     200523         81
         3  2008-05-08 20:40:34  cp     -        136         61
         4  2008-05-08 20:41:20  cp     -     187666       1604
         5  2008-05-08 20:41:42  cp     -         51       1634
         6  2008-05-08 20:42:00  cp     -         37       1653
         7  2008-05-08 20:42:42  cp     -     272146       2116
         8  2008-05-08 20:43:13  cp     -     264649       2117
         9  2008-05-08 20:43:44  cp     -     285848       2117
        10  2008-05-08 20:44:16  cp     -     139876       7357
        11  2008-05-08 21:05:23  cp     -         10       7357</span></pre>
<p>Notice that the <code>chcp</code> command changes the second check point into a snap shot. This is indicated under the “MODE” column where the second check point is listed as “ss” or snap shot. Now that the check point is a snap shot, it won’t be deleted during the garbage collection. However, you can remove the snap shot by using the <code>rmcp</code> command.</p>
<p>NILFS implements garbage collection in a unique way. It uses a user-space daemon to perform the garbage collection. This daemon is activated when the file system is mounted via the “mount” command. This also means that garbage collection can be activated at any time (if the file system is mounted).</p>
<p>Don’t forget that NILFS will delete check points after a certain period of time unless the check point is converted to a snap shot. The amount of time when the check point is held before being deleted is controlled by parameters in the <code>/etc/nilfs_cleanerd.conf</code> file. You can adjust the garbage collection (GC) parameters in the file and restart the GC daemon so that the new parameter values are used (or unmouning and remounting the file system).</p>
<p>You must have root access or at least <code>sudo</code> ability to mount a snap shot. Also recall that snap shots are mounted as read-only. From the NILFS web site example, one can mount the snapshot previously created (it was created from the second check point).</p>
<pre><span style="color: #808080;"># mount -t nilfs2 -r -o cp=2 /dev/sdb1 /nilfs-cp
# df -t nilfs2
Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/sdb1             71679996   3203068  64888832   5% /nilfs
/dev/sdb1             71679996   3203068  64888832   5% /nilfs-cp
# mount -t nilfs2
/dev/sdb1 on /nilfs type nilfs2 (rw,gcpid=13296)
/dev/sdb1 on /nilfs-cp type nilfs2 (ro,cp=2)</span></pre>
<p>The snap shot is mounted on <code>/nilfs-cp</code> in a read-only mode (ro). Depending upon the options and permissions on the <code>/nilfs-cp</code> mount point, users could copy files from the snap shot. Alternatively, the <code>root</code> user could restore the file(s)s for the user. Also, the snap shot could be easily used for creating back-ups. An administrator could also use the snap shot for creating a disaster recovery image of the file system. Just as a reminder the mounted snap shot, while being a NILFS file system, is mounted read-only so check points of the snapshot are not created. After you are finished with the snap shot don’t forget to unmount it and either delete the snap shot or convert it back to a check point and allow garbage collection to recover the space.</p>
<p><strong>Speed, Glorious Speed</strong></p>
<p>Recall that one reason log-structured file systems were developed was to increase write performance (assuming the read performance would be dominated by caching effects). And who doesn’t like increased write performance?</p>
<p>One of the earliest reviews of NILFS was in 2007 by Chris Samuel. He did a very comprehensive <a href="http://www.csamuel.org/articles/emerging-filesystems-200709/" target="_blank">review</a> of Emerging File Systems(how prescient was that review?). He did a very nice review of a number of file systems including <a href="http://www.csamuel.org/articles/emerging-filesystems-200709/#id2530633" target="_blank">NILFS</a> including running benchmarks. The performance was good for such a young file system but even at that time it had the best performance by far for Sequential Deletes. It was even <a href="http://www.csamuel.org/articles/emerging-filesystems-200709/#id2538255" target="_blank">better</a> than ZFS/OpenSolaris for most tests performed.</p>
<p>In Feb. 2008, there was a <a href="http://www.usenix.org/event/lsf08/tech/shin_SSD.pdf" target="_blank">presentation</a> by Dongjun Shin from Samsung as part of the Linux Storage &amp; File System Workshop 2008 (LSF ‘08). He benchmarked NILFS, Btrfs, Ext2, Ext3, Ext4, ReiserFS, and XFS when running on an SSD device. Granted that the testing is a little old, but the results are very, very exciting. The benchmark, Postmark, simulates an email server. Two groups of files sizes were tested, (1) 9 &#8211; 15KB (S), and (2) 0.1 &#8211; 3MB (L). For each group, two tests were run with a small number of files (S), and a larger number of files (L). Figure 1 and 2 below are the test results.</p>
<div id="attachment_926" class="wp-caption aligncenter" style="width: 622px"><img class="size-full wp-image-926" title="Postmark Results for Small File Size" src="http://v2.iraqitek.com/wp-content/uploads/2009/06/Postmark_small.png" alt="Postmark Results for Small File Size" width="612" height="441" /><p class="wp-caption-text">Postmark Results for Small File Size</p></div>
<div id="attachment_925" class="wp-caption aligncenter" style="width: 616px"><img class="size-full wp-image-925" title="Postmark Results for Large File Size" src="http://v2.iraqitek.com/wp-content/uploads/2009/06/Postmark_large.png" alt="Postmark Results for Large File Size" width="606" height="441" /><p class="wp-caption-text">Postmark Results for Large File Size</p></div>
<p>Notice that in both cases, the performance of NILFS exceeds that of other file systems. For small files NILFS was about 25-38% faster than the nearest competitor (btrfs). For large files NILFS was about 15-25% faster than the nearest competitor (reiserfs and/or ext4).</p>
<p>It is pretty amazing to see such a boost in performance from a change in file system, but it does show you that the coupling of file system design with hardware, in this case SSD’s, can produce a big boost in performance. But “There Ain’t No Such Thing As A Free Lunch” <a href="http://en.wikipedia.org/wiki/TANSTAAFL">TANSTAAFL</a>. There are some current issues with NILFS and SSD’s.</p>
<p>There was a recent <a href="https://www.nilfs.org/pipermail/users/2009-March/000514.html">posting</a> to the NILFS mailing list about using NILFS as the root drive for a Linux system. It was pointed out that the root file system produces a great deal of traffic. Coupled with this is the fact that NILFS file system activity can be reasonably write heavy and you have the potential for quickly wearing out SSD drives (remember that NAND chips which make up SSD’s have a limited number of rewrites). But the developers of NILFS are aware of this and a better garbage collection (GC) algorithm is under investigation.</p>
<p>There was also a  <a href="http://lkml.org/lkml/2008/8/20/50">question</a> on the Linux kernel mailing list about the effect of age on the performance (i.e. would the performance of NILFS still remain far above others on the Postmark test after it was used for a few months?). The <a href="http://lkml.org/lkml/2008/8/20/247">answer</a> is that the developers don’t believe the performance suffers after it is used for a period of time, but there isn’t any data to back up that claim at the present time. However, virtually all files systems <a href="http://www.delltechcenter.com/page/02-19-2009+-+File+System+Aging+%E2%80%93+What+you+Don%E2%80%99t+Know">suffer</a> degrading performance with age.</p>
<p>NILFS &#8211; It’s Definitely Worth Testing</p>
<p>NILFS has a great deal going for it in many regards. It is a modern file system in almost every respect (OK, no built-in RAID, but that can be worked around). The log-structured design of NILFS means that its write performance should be very, very good and there is evidence of this from the performance report that benchmarked Postmark.</p>
<p>Additionally, the fact that NILFS continuously creates checkpoints that can be used to create snapshots, is of great benefit. These checkpoints can be used to recover erased or modified user files. They can also be used for backups or creating disaster recover images of data. More over, creating these checkpoints or snapshots do not result in decreased performance as they do for file systems such as ZFS.</p>
<p>NILFS holds great promise for Linux. There are many scenarios where it would work extremely well. In particular it works very well for user directories or work directories. In the HPC world it would work extremely well for high-speed storage that are dominated by write performance. Coupling the performance boosts with the snapshot features make NILFS a potential system administrators dream file system. It is well worth trying NILFS on your system.</p>
<p><a href="http://www.linux-mag.com/" target="_blank">www.linux-mag.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://v2.iraqitek.com/2009/06/12/nilfs-a-file-system-to-make-ssds-scream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seagate unveiled the World&#8217;s First 1.5-Terabyte Hard Drives</title>
		<link>http://v2.iraqitek.com/2008/07/11/seagate-unveiled-the-worlds-first-15-terabyte-hard-drives/</link>
		<comments>http://v2.iraqitek.com/2008/07/11/seagate-unveiled-the-worlds-first-15-terabyte-hard-drives/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 12:09:43 +0000</pubDate>
		<dc:creator>Data-Base</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Hard Drive]]></category>
		<category><![CDATA[Seagate]]></category>

		<guid isPermaLink="false">http://v2.iraqitek.com/?p=773</guid>
		<description><![CDATA[Seagate unveiled the industry’s first 1.5-terabyte desktop and half-terabyte notebook hard drives to meet explosive worldwide demand for digital-content storage in home and business environments. The debut of the Barracuda® 7200.11 1.5TB hard drive, the eleventh generation of Seagate’s flagship drive for desktop PCs, marks the single largest capacity hard drive jump in the more [...]]]></description>
			<content:encoded><![CDATA[<p>Seagate unveiled the industry’s first 1.5-terabyte desktop and half-terabyte notebook hard drives to meet explosive worldwide demand for digital-content storage in home and business environments.<br />
The debut of the Barracuda® 7200.11 1.5TB hard drive, the eleventh generation of Seagate’s flagship drive for desktop PCs, marks the single largest capacity hard drive jump in the more than half-century history of hard drives – a half-terabyte increase from the previous highest capacity of 1TB, thanks to the capacity-boosting power of perpendicular magnetic recording (PMR) technology.</p>
<p><span id="more-773"></span></p>
<p>The Barracuda 7200.11 hard drive combines proven PMR technology, components and expert manufacturing to provide 1.5TB of reliable storage for mainstream desktop computers, workstations, desktop RAID, gaming and high-end PCs, and USB/FireWire/eSATA external storage.</p>
<p>Seagate’s new 2.5-inch half-terabyte 5400- and 7200-rpm drives – Momentus® 5400.6 and Momentus 7200.4 – deliver the best combination of capacity, mobility and durability for mainstream and high-performance notebook computers, external storage solutions, PCs and industrial applications requiring small form factor.</p>
<p>Highlighting the global growth of digital content, Seagate expects to ship its two billionth hard drive within the next five years. Earlier this year Seagate shipped its one billionth hard drive since the company’s inception nearly 30 years ago.</p>
<p>“Organizations and consumers of all kinds worldwide continue to create, share and consume digital content at levels never before seen, giving rise to new markets, new applications and demand for desktop and notebook computers with unprecedented storage capacity, performance and reliability,” said Michael Wingert, Seagate executive vice president and general manager, Personal Compute Business. “Seagate is committed to powering the next generation of computing today with the planet’s fastest, highest-capacity and most reliable storage solutions.”</p>
<p>Momentus 5400.6 and Momentus 7200.4 hard drives are the fourth generation of Seagate’s laptop family to use PMR. The Momentus 5400.6, a 5400-rpm drive, combines a powerful Serial ATA 3Gb/second interface and capacities ranging from 120GB to 500GB with an 8MB cache.</p>
<p>The Momentus 7200.4 hard drive, with its 7200-rpm spin speed and a Serial ATA 3GB/second interface, delivers true desktop performance. The power-efficient 7200-rpm drive maximizes battery life and comes in capacities ranging from 250GB to 500GB with a 16MB cache.</p>
<p>Both Momentus drives are built tough enough to withstand up to 1,000 Gs of non-operating shock and 350 Gs of operating shock to protect drive data, making the drives ideal for systems that are subject to rough handling or high levels of vibration. For added robustness in mobile environments, the Momentus 5400.6 and 7200.4 are offered with G-Force Protection, a free-fall sensor technology that helps prevent drive damage and data loss upon impact if a laptop PC is dropped. The sensor works by detecting any changes in acceleration equal to the force of gravity and parks the heads off the disc to prevent contact with the platter in a free fall of as little as 8 inches and within 3/10ths of a second.</p>
<p>Seagate’s new Momentus drives are lean on power consumption, allowing notebook users to work longer between battery charges, and are virtually inaudible thanks to Seagate’s innovative SoftSonic™ fluid-dynamic bearing motors and QuietStep™ ramp load technology.</p>
<p>The Barracuda 7200.11 hard drive combines the capacity and speed required for today’s most demanding desktop PC applications. The drive packs 1.5TB on just four platters and its fast Serial ATA 3Gb/second interface delivers an industry-leading sustained data rate of up to 120MB/second for fast boot, application startup and file access. The 3.5-inch drive is also offered in capacities of 1TB, 750GB, 640GB, 500GB, 320GB and 160GB with cache options of 32MB and 16MB.</p>
<p>All Momentus and Barracuda drives are backed by Seagate’s leading five-year warranty. You can find photos of these three new drives.</p>
<p> </p>
<h3>Availability</h3>
<p>Shipments of the Barracuda 7200.11 1.5TB are set to begin August 2008. Momentus 5400.6 and 7200.4 hard drives are to begin shipping in Q4 calendar 2008.</p>
<p><a href="http://www.seagate.com/" target="_blank">www.seagate.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://v2.iraqitek.com/2008/07/11/seagate-unveiled-the-worlds-first-15-terabyte-hard-drives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
