<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>Stephen Foskett, Pack Rat &#187; Windows Server 2008 Archives  &#8211; Stephen Foskett, Pack Rat</title>
	<atom:link href="http://blog.fosketts.net/tag/windows-server-2008/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.fosketts.net</link>
	<description>Understanding the accumulation of data</description>
	<lastBuildDate>Fri, 10 Feb 2012 17:40:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com" />
	<atom:link rel="hub" href="http://superfeedr.com/hubbub" />
			<item>
		<title>Robocopy: Better, Faster, Stronger</title>
		<link>http://blog.fosketts.net/2010/03/25/robocopy-multi-threaded/</link>
		<comments>http://blog.fosketts.net/2010/03/25/robocopy-multi-threaded/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 19:45:46 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Enterprise storage]]></category>
		<category><![CDATA[Everything]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Terabyte home]]></category>
		<category><![CDATA[EFS]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[NTFS]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[Robocopy]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Server 2008 R2]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://blog.fosketts.net/?p=2748</guid>
		<description><![CDATA[Robocopy is the best tool to move data between NTFS filesystems but was never very quick. Windows Vista, Windows Server 2008, and later versions include a new version of Robocopy with performance tweaks including multi-threading that speed things up dramatically.]]></description>
			<content:encoded><![CDATA[<div id="attachment_2822" class="wp-caption alignright" style="width: 194px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: right;"><a href="http://blog.fosketts.net/wp-content/uploads/2010/03/Robocop.jpg" ><img class="size-full wp-image-2822" title="Robocop" src="http://blog.fosketts.net/wp-content/uploads/2010/03/Robocop.jpg" alt="" width="184" height="145" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">It&#39;s hard to take a product called &quot;Robocopy&quot; seriously!</p></div>
<p>Anyone doing much storage work on Microsoft Windows machines is familiar with Robocopy. It&#8217;s the best tool to move data between NTFS filesystems, since <strong>Robocopy maintains permissions and file attributes</strong>. It also tolerates dropped connections, resuming where it left off, and can throttle operations over slow networks.</p>
<p>But Robocopy was never very quick, especially when dealing with large data sets. It was single-threaded, hurting performance on high-latency networks, and startup was painfully slow on deep directory structures.</p>
<h3>Robocopy XXVII</h3>
<p>Windows Vista, Windows Server 2008, and later versions include <strong>a new version of Robocopy with performance tweaks</strong> designed to overcome these limitations. Right-click on the executable in Windows\System32 and make sure you are using version XP027, 5.1.10.1027.</p>
<blockquote><p><strong>Update:</strong> Oops! <a href="http://blog.fosketts.net/2010/03/28/versioning-windows-vista-7-robocopy/"  target="_blank">Only the &#8220;6.1&#8243; versions of Microsoft Windows</a> (Windows 7 and Windows Server 2008 R2) include multi-threaded robocopy!</p></blockquote>
<p>The big deal here is multi-threading:</p>
<ul>
<li>The application can now run in <strong>multi-threaded mode using the /MT option</strong>. This defaults to 8 threads, but users can specify up to 128 if desired. For example, the following command would use 16 threads:</li>
</ul>
<pre>robocopy c:\ d:\ /MT:16</pre>
<ul>
<li>Initial <strong>directory enumeration is also multi-threaded</strong>, so deep directory structures are examined much more quickly.</li>
<li>XP027 also added the /EFSRAW parameter, allowing one to copy files from EFS using RAW mode. However neither this nor /IPG (inter-packet gap) can be combined with the multi-threaded option mentioned above.</li>
</ul>
<h3>Dead or alive, you&#8217;re coming with me!</h3>
<p>I tried out the new /MT option on a Core 2 Duo laptop and was surprised by the <strong>dramatic improvement in copy performance</strong>. Copying my entire &#8220;Program Files&#8221; directory took well over a minute without multi-threading, but simply specifying &#8220;/MT&#8221; at the end of the command reduced a second copy to a different directory to about 20 seconds. Using &#8220;/MT:32&#8243; was blazing fast &#8211; easily less than 15 seconds. I repeated the first single-threaded test again and watched it dawdle along, taking over a minute again to finish.</p>
<p>Microsoft suggests that <strong>multi-threaded Robocopy helps with network throughput</strong> as well. I tried a series of copies between two Windows 7 machines over Wi-Fi, to simulate a slow network. Although single-threaded Robocopy was able to saturate the network with large files, it really slowed down (thanks to latency) once it hits a patch of smaller files. Multi-threaded Robocopy was more capable of maintaining high throughput once smaller files were encountered, with a 32-thread test keeping the link at maximum pretty much the entire time. Again, a noticeable improvement.</p>
<h3>Your Move, Creep</h3>
<p>If you&#8217;re copying lots of Windows data on a machine running Windows 7 <span style="text-decoration: line-through;">Vista</span> or newer, I can confidently say that <strong>the /MT switch will speed things up dramatically</strong>. Whether you should stick with the default 8 threads or up it to 16 or 32 depends on the capabilities of your CPU, but it&#8217;s worth a try. One more tip: Use the /LOG switch or pipe the output to NULL to speed up copying even more. Displaying all that text delays the whole process!</p>
<div id="crp_related"><h3>You might also want to read these other posts...</h3><ul><li><a href="http://blog.fosketts.net/2010/03/28/versioning-windows-vista-7-robocopy/"  rel="bookmark" class="crp_title">Versioning FAIL: Windows Vista/7 Robocopy</a></li><li><a href="http://blog.fosketts.net/2008/07/31/windows-server-2008-changes-storage/"  rel="bookmark" class="crp_title">Windows Server 2008 Changes Storage</a></li><li><a href="http://blog.fosketts.net/2008/07/25/quick-and-easy-bluetooth-sharing-between-pc-and-mac/"  rel="bookmark" class="crp_title">Quick and Easy Bluetooth Sharing Between PC and Mac</a></li><li><a href="http://blog.fosketts.net/2009/06/29/tuning-lighttpd-linux/"  rel="bookmark" class="crp_title">Tuning Lighttpd For Linux</a></li><li><a href="http://blog.fosketts.net/2010/07/30/high-performance-memory-apache-php-virtual-private-server/"  rel="bookmark" class="crp_title">A High-Performance, Low-Memory Apache/PHP Virtual Private Server</a></li></ul></div><script src="http://feeds.feedburner.com/~s/sfoskett?i=http://blog.fosketts.net/2010/03/25/robocopy-multi-threaded/" type="text/javascript" charset="utf-8"></script><hr />
<p><small>© sfoskett for <a href="http://blog.fosketts.net">Stephen Foskett, Pack Rat</a>, 2010. |
<a href="http://blog.fosketts.net/2010/03/25/robocopy-multi-threaded/">Robocopy: Better, Faster, Stronger</a>
<br/>
This post was categorized as <a href="http://blog.fosketts.net/category/everything/enterprisestorage/" title="View all posts in Enterprise storage" rel="category tag">Enterprise storage</a>, <a href="http://blog.fosketts.net/category/everything/" title="View all posts in Everything" rel="category tag">Everything</a>, <a href="http://blog.fosketts.net/category/everything/personal/" title="View all posts in Personal" rel="category tag">Personal</a>, <a href="http://blog.fosketts.net/category/everything/terabytehome/" title="View all posts in Terabyte home" rel="category tag">Terabyte home</a>. Each of my categories has its own feed if you'd like to filter out or focus on posts like this.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://blog.fosketts.net/2010/03/25/robocopy-multi-threaded/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Drobo, XP Users: Beware of 4K &#8220;Advanced Format&#8221; Drives!</title>
		<link>http://blog.fosketts.net/2009/12/23/drobo-xp-beware-4k-advanced-format-drives/</link>
		<comments>http://blog.fosketts.net/2009/12/23/drobo-xp-beware-4k-advanced-format-drives/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 20:08:16 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computer History]]></category>
		<category><![CDATA[Enterprise storage]]></category>
		<category><![CDATA[Everything]]></category>
		<category><![CDATA[Terabyte home]]></category>
		<category><![CDATA[Advanced Format]]></category>
		<category><![CDATA[alignment]]></category>
		<category><![CDATA[CHS]]></category>
		<category><![CDATA[CKD]]></category>
		<category><![CDATA[Drobo]]></category>
		<category><![CDATA[FBA]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[LBA]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MS-DOS]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[TiVo]]></category>
		<category><![CDATA[VMware ESX]]></category>
		<category><![CDATA[Western Digital]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://blog.fosketts.net/?p=2556</guid>
		<description><![CDATA[Personal computer hard disk drive access methods have been repeatedly forced to adapt to ever-expanding capacity. But Western Digital is leading the change to larger 4 kilobyte hard disk blocks. Although this new "Advanced Format" includes mechanisms for backwards compatibility, buyers should be wary of these new drives for the time being.]]></description>
			<content:encoded><![CDATA[<div id="attachment_2557" class="wp-caption aligncenter" style="width: 383px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><a href="http://blog.fosketts.net/wp-content/uploads/2009/12/WD10EARS.png" ><img class="size-full wp-image-2557" title="WD10EARS" src="http://blog.fosketts.net/wp-content/uploads/2009/12/WD10EARS.png" alt="Western Digital is first to market with &quot;Advanced Format&quot; 4K-sector drives" width="373" height="277" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Western Digital is first to bring &quot;Advanced Format&quot; 4k-sector drives to market, but buyers should beware of installing them in old systems!</p></div>
<p>Personal computer hard disk drive access methods have repeatedly been forced to adapt to ever-expanding capacity. Physical (CHS) addressing and 28-bit LBA have been abandoned, but the disk drives themselves retain the tiny 512-byte sectors they have had since IBM introduced fixed-block addressing in the 1970&#8242;s. But time marches on, and Western Digital is leading the change to larger 4 kilobyte hard disk blocks. Although this new &#8220;Advanced Format&#8221; includes mechanisms for backwards compatibility, buyers should be wary of these new drives for the time being.</p>
<p><span id="more-2556"></span></p>
<h3>A Little History</h3>
<p>A long, long time ago, before there were personal computers, IBM set the standard for data storage with their <strong>CKD (&#8220;count key device&#8221;) format</strong>. Variable-sized records were stored on a raw disk with gaps between them. Each included a sequence number (&#8220;count&#8221;), an optional key, and the data itself.</p>
<p>This flexible format proved impractical as multi-process systems evolved in the 1970&#8242;s, so IBM introduced a new format: <strong>Fixed-block architecture (FBA)</strong>. FBA disk drives were divided up into equal-sized blocks and addressed by their physical location on a specific cylinder accessed by a specific head. Each cylinder/head pairing had its own series of sectors, starting at the outer edge of the physical disk platter and moving inward.</p>
<p>This system of addressing hard disk capacity with a triple number identifying the <strong>cylinder, head, and sector (&#8220;CHS&#8221;)</strong> continued in the PC space in the 1980&#8242;s. Since early hard disk drives were tiny by modern standards, the PC industry chose the smallest sector size specified by IBM, 512 bytes. The earliest MS-DOS/BIOS PCs were limited to just 504 MB, thanks to incompatible defaults for the CHS address space. This forced a transition, initially raising the addressable capacity to 7.8 GB.</p>
<p>But the writing was on the wall: CHS just didn&#8217;t make sense. Storage protocols, including ATA, were being pressed into service for devices that didn&#8217;t have cylinders <em>or</em> heads, and the 128 GB limit of ATA-1 wouldn&#8217;t cut it forever. So the industry transitioned again, abandoning physical references in favor of a simple <strong>logical block addressing (LBA)</strong> scheme. By the time ATA-6 was introduced in 2002, all systems used LBA, and the new 48-bit address system allowed a maximum of 128 PB of capacity per device.</p>
<p>Though hard disk capacity had ballooned from the megabyte to the terabyte range (a million-times increase in 30 years), <strong>the 512-byte disk sector remained</strong>, each with its own error-correcting code (ECC) and gap.</p>
<h3>Up To Date</h3>
<p>Processors and file systems have long since moved on from 512-byte blocks of data, with 4 kilobytes being the most common size used by the x86 CPU and NTFS, ext3/4, and HFS+ filesystems in Windows, Linux, and Mac OS X. With just about every storage access triggering the reading or writing of eight disk sectors, <strong>an increase in hard disk sector size to 4 KB seems obvious</strong>. Stepping up to 4K enables better ECC checksums, making disks more reliable (in theory) and freeing up capacity.</p>
<table border="1" cellspacing="0" align="center">
<tbody>
<tr align="center">
<th>
<h5>LBA 512 Sector</h5>
</th>
<td width="4%">&#8230;</td>
<td width="4%">55</td>
<td width="4%">56</td>
<td width="4%">57</td>
<td width="4%">58</td>
<td width="4%">59</td>
<td width="4%">60</td>
<td width="4%">61</td>
<td width="4%">62</td>
<td width="4%">63</td>
<td width="4%">64</td>
<td width="4%">65</td>
<td width="4%">66</td>
<td width="4%">67</td>
<td width="4%">68</td>
<td width="4%">69</td>
<td width="4%">70</td>
<td width="4%">71</td>
<td width="4%">72</td>
<td width="4%">&#8230;</td>
</tr>
<tr align="center">
<th>
<h5>Actual 4K Sector</h5>
</th>
<td colspan="2" width="8%">6</td>
<td colspan="8" width="32%">7</td>
<td colspan="8" width="32%">8</td>
<td colspan="2" width="8%">9</td>
</tr>
</tbody>
</table>
<p>Modern operating systems, including <strong>Windows Vista</strong>, <strong>Windows 2008</strong>, <strong>Windows 7</strong>, <strong>Mac OS X 10.4-10.6</strong>, <strong>VMware ESX 3.x-4.x</strong>, and most recent versions of <strong>Linux</strong>, will have <strong>no problem with 4 KB sectors</strong> in most cases. Installing a 4K drive, like Western Digital&#8217;s new &#8220;R&#8221; line, and partitioning and formatting it fresh should present no issues for most users. In fact, these operating systems will not even &#8220;know&#8221; they are talking to any special kind of drive, since <strong>Western Digital presents its new 4 KB sectors as plain old 512 byte sectors</strong> for compatibility reasons.</p>
<h3>What&#8217;s Your Alignment?</h3>
<p>Other systems present a challenge, however. MS-DOS traditionally started filesystems at sector number 63, and most other PC operating systems (including old versions of Linux and VMware) followed this convention. This presented no issue at all as long as disks used 512-byte sectors: Requesting 8 sectors starting at number 63 was the same as requesting eight starting at sector 64. But things get mucked up when the disk drive uses 4 KB sectors.</p>
<table border="1" cellspacing="0" align="center">
<tbody>
<tr align="center">
<th>
<h5>DOS Filesystem</h5>
</th>
<td colspan="9" width="36%">MBR</td>
<td colspan="8" width="32%">0</td>
<td colspan="8" width="32%">1</td>
</tr>
<tr align="center">
<th>
<h5>LBA 512 Sector</h5>
</th>
<td width="4%">&#8230;</td>
<td width="4%">55</td>
<td width="4%">56</td>
<td width="4%">57</td>
<td width="4%">58</td>
<td width="4%">59</td>
<td width="4%">60</td>
<td width="4%">61</td>
<td width="4%">62</td>
<td width="4%">63</td>
<td width="4%">64</td>
<td width="4%">65</td>
<td width="4%">66</td>
<td width="4%">67</td>
<td width="4%">68</td>
<td width="4%">69</td>
<td width="4%">70</td>
<td width="4%">71</td>
<td width="4%">72</td>
<td width="4%">&#8230;</td>
</tr>
<tr align="center">
<th>
<h5>Actual 4K Sector</h5>
</th>
<td colspan="2" width="8%">6</td>
<td colspan="8" width="32%">7</td>
<td colspan="8" width="32%">8</td>
<td colspan="2" width="8%">9</td>
</tr>
</tbody>
</table>
<p>See the misalignment here? A starting offset of 63 moves the filesystem cluster across the 4K sector boundary. This misalignment means that <strong>every filesystem cluster access results in two disk sector accesses</strong>. This is a Very Bad Thing, especially for to write performance. Layers upon layers of convention, standards, and compatibility have left us with a problem.</p>
<p>Western Digital solves this problem in one of two ways:</p>
<ol>
<li>Jumper pins 7 and 8 on the drive and it will internally offset all of its logical 512-byte sectors by one</li>
<li>Correctly align all partitions written to these new drives</li>
</ol>
<p>The jumper method, though simple, is not a great idea. If the drive was ever moved or reformatted to a system that aligns its volumes differently (as do all modern operating systems), it would be puzzlingly slow. Instead, <strong>it&#8217;s best to simply realign any filesystems written to the drives</strong>, and Western Digital is <a href="http://support.wdc.com/product/download.asp?groupid=805&amp;sid=123&amp;lang=en"  target="_blank">providing a utility</a> do just that.</p>
<h3>USB, Drobo, and TiVo, Oh My!</h3>
<p>Most external drive enclosures will simply pass read and write requests to these new drives as they get them. This means that <strong>an external USB enclosure with an Advanced Format drive will have exactly the same issues</strong> as an internal drive if it is partitioned under Windows XP or another old operating system. Not only that, but portable drives often get moved from system to system, so an XP-formatted USB disk will have this misalignment issue even when attached to a Windows 7 machine! As these 4K drives begin hitting the market, users should be careful to note if they are correctly aligned.</p>
<p>But what about other disk-using devices like Drobos and TiVos? The jury is still out here. <strong>TiVo appears to use misaligned partitions</strong>, so I don&#8217;t recommend installing 4K drives in a TiVo at this point. I contacted a number of other manufacturers, most of whom are &#8220;looking into&#8221; the matter.</p>
<p>Data Robotics did respond, and even posted <a href="http://support.datarobotics.com/app/answers/detail/a_id/351"  target="_blank">a tech note about 4K drives</a> on their support site. Their short answer is no, that <strong>4K drives should not be used in Drobo storage devices</strong>. However, it is unclear if they are affected or just erring on the side of caution until they can test these new hard disks. They also promise an update allowing the use of 4K drives in the future.</p>
<p><strong>I would be cautious about using 4K drives in anything other than a newish PC or Mac at this point</strong>. I will continue following the situation and will post updates on my blog as news comes out.</p>
<h3>More Info</h3>
<p>The following articles also offer great insight into these new 4K drives:</p>
<ul>
<li>Western Digital: <a href="http://www.wdc.com/wdproducts/library/whitepapers/en/2579-771430.pdf"  target="_blank">Advanced Format Technology White Paper</a></li>
<li>StorageMojo: <a href="http://storagemojo.com/2009/12/21/why-we-need-4k-drives/" >Why we need 4k drives</a></li>
<li>AnandTech: <a href="http://www.anandtech.com/storage/showdoc.aspx?i=3691"  target="_blank">Western Digital’s Advanced Format: The 4K Sector Transition Begins</a></li>
</ul>
<div id="crp_related"><h3>You might also want to read these other posts...</h3><ul><li><a href="http://blog.fosketts.net/2010/01/28/drobo-4k-drive-support/"  rel="bookmark" class="crp_title">Drobo Adding 4K Drive Support &#8211; What About Everyone Else?</a></li><li><a href="http://blog.fosketts.net/2010/05/18/2-tb-hard-disk-drive-limit/"  rel="bookmark" class="crp_title">Taming Monster Disk Drives: 3 TB and Beyond!</a></li><li><a href="http://blog.fosketts.net/2010/10/05/hitachi-gst-advanced-format-hard-disk-drive/"  rel="bookmark" class="crp_title">Hitachi GST Joins WD On The &#8220;Advanced Format&#8221; Hard Disk Drive Bandwagon</a></li><li><a href="http://blog.fosketts.net/2010/10/25/seagate-momentus-5400_8-hard-disk-drive/"  rel="bookmark" class="crp_title">Forecasting Seagate&#8217;s Next-Generation Momentus 5400.8 Family</a></li><li><a href="http://blog.fosketts.net/2010/08/02/feed-drobo-1-tb-wd-green-sata-drive-5549/"  rel="bookmark" class="crp_title">Feed Your Drobo: 1 TB WD Green SATA Drive, $55.49</a></li></ul></div><script src="http://feeds.feedburner.com/~s/sfoskett?i=http://blog.fosketts.net/2009/12/23/drobo-xp-beware-4k-advanced-format-drives/" type="text/javascript" charset="utf-8"></script><hr />
<p><small>© sfoskett for <a href="http://blog.fosketts.net">Stephen Foskett, Pack Rat</a>, 2009. |
<a href="http://blog.fosketts.net/2009/12/23/drobo-xp-beware-4k-advanced-format-drives/">Drobo, XP Users: Beware of 4K &#8220;Advanced Format&#8221; Drives!</a>
<br/>
This post was categorized as <a href="http://blog.fosketts.net/category/everything/apple/" title="View all posts in Apple" rel="category tag">Apple</a>, <a href="http://blog.fosketts.net/category/everything/computerhistory/" title="View all posts in Computer History" rel="category tag">Computer History</a>, <a href="http://blog.fosketts.net/category/everything/enterprisestorage/" title="View all posts in Enterprise storage" rel="category tag">Enterprise storage</a>, <a href="http://blog.fosketts.net/category/everything/" title="View all posts in Everything" rel="category tag">Everything</a>, <a href="http://blog.fosketts.net/category/everything/terabytehome/" title="View all posts in Terabyte home" rel="category tag">Terabyte home</a>. Each of my categories has its own feed if you'd like to filter out or focus on posts like this.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://blog.fosketts.net/2009/12/23/drobo-xp-beware-4k-advanced-format-drives/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Iomega&#8217;s ix4-200d: A Killer Desktop Storage Array</title>
		<link>http://blog.fosketts.net/2009/08/27/iomega-ix4-200d/</link>
		<comments>http://blog.fosketts.net/2009/08/27/iomega-ix4-200d/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 05:01:38 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Enterprise storage]]></category>
		<category><![CDATA[Everything]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Terabyte home]]></category>
		<category><![CDATA[Virtual Storage]]></category>
		<category><![CDATA[AFP]]></category>
		<category><![CDATA[Amazon.com]]></category>
		<category><![CDATA[Drobo]]></category>
		<category><![CDATA[EMC]]></category>
		<category><![CDATA[Fry's]]></category>
		<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[Iomega]]></category>
		<category><![CDATA[iSCSI]]></category>
		<category><![CDATA[ix2]]></category>
		<category><![CDATA[ix4]]></category>
		<category><![CDATA[ix4-200d]]></category>
		<category><![CDATA[ix4-200r]]></category>
		<category><![CDATA[LifeLine]]></category>
		<category><![CDATA[Maxtor]]></category>
		<category><![CDATA[Micro Center]]></category>
		<category><![CDATA[NAS]]></category>
		<category><![CDATA[NFS]]></category>
		<category><![CDATA[Retrospect]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[Seagate]]></category>
		<category><![CDATA[SMB]]></category>
		<category><![CDATA[StorCenter]]></category>
		<category><![CDATA[StorCenter Pro]]></category>
		<category><![CDATA[Time Machine]]></category>
		<category><![CDATA[USB]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[vSphere]]></category>
		<category><![CDATA[Western Digital]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Xen]]></category>

		<guid isPermaLink="false">http://blog.fosketts.net/?p=2246</guid>
		<description><![CDATA[Iomega is well into its second coming as EMC&#8217;s entry-level storage division. First, they applied EMC&#8217;s compact and full-featured LifeLine home storage software to existing gear, giving birth to the Home Media Network Hard Drive, StorCenter ix2, and StorCenter Pro ix4-100. Then they wooed the small-business community with the rack-mount StorCenter ix4-200r, adding iSCSI target [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_2253" class="wp-caption aligncenter" style="width: 436px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><a href="http://blog.fosketts.net/wp-content/uploads/2009/08/Iomega-ix4-200d.png" ><img class="size-full wp-image-2253 " title="Iomega ix4-200d" src="http://blog.fosketts.net/wp-content/uploads/2009/08/Iomega-ix4-200d.png" alt="The Iomega ix4-200d is a sleek 4-drive SOHO RAID system that does just about everything, from NAS to Time Machine to iSCSI for a list price right around $700?" width="426" height="313" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">The Iomega ix4-200d is a sleek 4-drive SOHO RAID system that does just about everything, from NAS to Time Machine to iSCSI for a list price right around $700</p></div>
<p><strong>Iomega is well into its second coming as </strong><a href="http://blog.fosketts.net/2009/01/07/emc-iomega-relevant/"  target="_blank"><strong>EMC&#8217;s entry-level storage division</strong></a>. First, they applied EMC&#8217;s compact and full-featured LifeLine home storage software to existing gear, giving birth to the Home Media Network Hard Drive, StorCenter ix2, and <a href="http://blog.fosketts.net/2009/02/05/emc-lifeline-storcenter-pro-ix4-100/"  target="_blank">StorCenter Pro ix4-100</a>. Then they wooed the small-business community with the rack-mount <a href="http://blog.fosketts.net/2009/04/16/iomega-storcenter-ix4-200r/"  target="_blank">StorCenter ix4-200r</a>, adding iSCSI target support and VMware compatibility.</p>
<p>Today, they are back with the new<strong> ix4-200d, probably Iomega&#8217;s best product yet</strong>. It includes every feature of the rack-mount ix4-200r, including NAS and iSCSI target mode plus great new stuff like one-touch synchronization. All of this is packaged in a Drobo-like desktop system with a starting list price of just $700, or <strong>less than half the cost of a comparable ix4-200r</strong>!<span id="more-2246"></span></p>
<h3>Desktop Storage</h3>
<p>External desktop storage products, exemplified by Western Digital&#8217;s wildly successful My Book series, have been a huge retail hit. Priced just over $100, these drives pack a terabyte or more and offer plug and play simplicity. I recently visited a small business with a WD or Seagate USB enclosure on every single desk. I&#8217;ve purchased five USB- or FireWire-connected hard drives myself over the last two years!</p>
<p>But these<strong> single-drive desktop wonders are a disaster waiting to happen</strong>:</p>
<ul>
<li><strong>They fail frequently</strong> (like my Maxtor 3200), instantly wiping out the data they contained</li>
<li><strong>They are targets for thieves</strong>, so data loss prevention (DLP) experts warn against their use</li>
<li><strong>They aren&#8217;t shareable</strong> natively, so most people resort to <a rel="nofollow" href="http://en.wikipedia.org/wiki/Sneakernet"  target="_blank">sneakernet</a> swapping rather than fight with Windows to present them as a network share</li>
<li><strong>When they&#8217;re full, they&#8217;re full</strong>, forcing the purchase of a whole new drive</li>
</ul>
<p>Many vendors sell <strong>grown-up versions that address some or all of these concerns with multiple drives, network connections, and encryption</strong>, but these have been slow to catch on. Since they contain redundant drives and extra hardware and software, they are much more expensive than their little cousins. Iomega has done battle in this arena with their original StorCenter ix2 and the ix4-100, but these have yet to catch on. Even <a href="http://blog.fosketts.net/series/drobo/"  target="_blank">Drobo</a>, with their fanatical user-friendly focus, has failed to convince many buyers.</p>
<p>Then there is the world of business storage. Way down at the bottom of the enterprise storage pyramid lies the realm of small 4- and 8-drive storage arrays. <strong>These SMB storage arrays offer a lot of capacity and reliability for the money</strong> but very little in the way of features. Iomega&#8217;s StorCenter Pro ix4-200r, in contrast, wowed the techies with a full iSCSI target stack that was certified for VMware ESX. But the price, over $1500, definitely limited sales to the home hobbyist.</p>
<h3>&#8220;Just Right&#8221; Storage</h3>
<p>Although the name is similar to the StorCenter Pro ix4-200r launched this Spring, Iomega went back to the drawing board for the ix4-200d. They built an entirely new device that could offer the impressive features of their StorCenter Pro line at a price closer to consumer storage offerings. The result<strong> boasts everything the Pro has and more at less than half the price</strong>:</p>
<ul>
<li>You want connectivity? The ix4 sports <strong>dual gigabit Ethernet ports</strong> that can be teamed up for performance or split off for redundancy.</li>
<li>You want NAS? The ix4 supports <strong>NFS, SMB, and even Apple&#8217;s AFP</strong>, plus it&#8217;s Active Directory compatible.</li>
<li>How about iSCSI? It&#8217;s <strong>a full-featured iSCSI target</strong>, <a href="http://www.windowsservercatalog.com/item.aspx?idItem=79b37f1b-29e3-225a-7dd8-2ee6fcf6e315&amp;bCatID=1282"  target="_blank">certified</a> for Microsoft Server 2003 and 2008.</li>
<li>Want to host virtual machines? The ix4 is <strong><a href="http://www.vmware.com/resources/compatibility/search.php?action=search&amp;deviceCategory=san&amp;productId=1&amp;advancedORbasic=advanced&amp;maxDisplayRows=50&amp;key=ix4-200d&amp;release%5B%5D=-1&amp;datePosted=-1&amp;partnerId%5B%5D=-1&amp;arrayTypeId%5B%5D=-1&amp;rorre=0"  target="_blank">certified</a> with VMware</strong> ESX 4 vSphere using both NFS and iSCSI, <a href="http://hcl.xensource.com/ProductDetails.aspx?ProductType=Storage&amp;ProductName=ix4-200+Series"  target="_blank">on the Xen HCL</a>, and that Microsoft logo means it will work with Hyper-V as well.</li>
<li>Need backup? The ix4 comes with <strong>EMC&#8217;s Retrospect</strong> and supports <strong>OS X Time Machine</strong> over AFP just like an Apple Time Capsule.</li>
<li>Looking for weird features? How about support for up to 5 Axis network cameras, BlueTooth Picture Transfer Protocol, and UPnP/DLNA media service!</li>
<li>Iomega also added a new feature, <strong>QuickTransfer</strong>, to synchronize files between devices.</li>
</ul>
<p>This is one seriously feature-rich storage system. In fact, <strong>this glut of features is the ix4&#8242;s Achilles heel</strong>: How do you effectively communicate the value of a device that does so much? Most of the buying public has never heard of most of these features, so the price remains hard for some to justify.</p>
<div id="attachment_2255" class="wp-caption aligncenter" style="width: 420px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><a href="http://blog.fosketts.net/wp-content/uploads/2009/08/Iomega-ix4-200d-Drives.png" ><img class="size-full wp-image-2255 " title="Iomega ix4-200d Drives" src="http://blog.fosketts.net/wp-content/uploads/2009/08/Iomega-ix4-200d-Drives.png" alt="Every ix4 configuration comes loaded with four hard disk drives" width="410" height="342" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Every ix4 configuration comes loaded with four hard disk drives</p></div>
<p>Another hurdle for the ix4 is Iomega&#8217;s decision to fill it with hard drives. <strong>One cannot buy an empty ix4-200d, and both the 2 TB and 4 TB configurations come loaded with four hard disk drives</strong>. This raises the price of entry and scares off the very techies who might be interested in the device. The majority of Drobos are purchased with no drives at all, and storage geeks like me love the idea that disks can be added as-needed in the future. Although Iomega is open to users swapping out the drives in their own StorCenter device, this is not its intended use case. <strong>Iomega&#8217;s decision to sell the ix4-200d as a loaded appliance seems counter to the price sensitivity and flexibility needs of buyers</strong>.</p>
<p><strong>QuickTransfer: Data Synchronization for Everything</strong></p>
<p>One nifty new feature included with the ix4-200d is QuickTransfer, a one-touch data synchronization capability. Leveraging rsync technology, but hiding this complexity with a more-friendly wizard-based GUI, <strong>QuickTransfer allows users to set up synchronization jobs between the ix4 and a variety of targets</strong>:</p>
<ul>
<li><strong>USB drives</strong> can be plugged into one of the three USB 2.0 ports and synchronized with a subset of the content of the ix4. For example, a portable USB drive could be &#8220;recharged&#8221; with the latest set of data before one heads out of the office.</li>
<li>Two Iomega ix4&#8242;s, or other <strong>NAS systems</strong> for that matter, can be synchronized over the Ethernet/IP LAN. This would provide a robust and bandwidth-friendly remote office backup or data replication solution.</li>
<li>A <strong>PC or Mac</strong> can also be synchronized over a network share, providing a simple alternative to the bundled backup software.</li>
</ul>
<p>QuickTransfer is exclusive to the ix4-200d for now, but Iomega assured me that it would be included in future StorCenter products and added to the StorCenter Pro ix4-200r in the near future. It is unknown if or when other existing StorCenter devices will get QuickTransfer, however.</p>
<h3>Iomega&#8217;s Next Move</h3>
<p>What will Iomega do next? They must be ready to announce their <a href="http://www.vmware.com/resources/compatibility/search.php?action=search&amp;deviceCategory=san&amp;productId=1&amp;advancedORbasic=advanced&amp;maxDisplayRows=50&amp;key=ix4-200d&amp;release%5B%5D=-1&amp;datePosted=-1&amp;partnerId%5B%5D=-1&amp;arrayTypeId%5B%5D=-1&amp;rorre=0"  target="_blank">vSphere 4</a> and <a href="http://www.windowsservercatalog.com/item.aspx?idItem=79b37f1b-29e3-225a-7dd8-2ee6fcf6e315&amp;bCatID=1282"  target="_blank">Microsoft Windows Server</a> certification soon, since both company&#8217;s web sites already list the device in their compatibility lists. Iomega ought to try to take advantage of the interest among VMware users with a big <strong>VMworld</strong> splash. They will be there, but it is awfully hard to get noticed at such a large event. I am looking forward to the event to get a hands-on test.</p>
<p>The ix4 should begin showing up <strong>for sale at online stores</strong> very quickly. Amazon listed the rackmount product within days of its release, and we expect the same this time. But will Iomega offer this cheaper device in retail stores? It would be great to have it available at Staples and Best Buy, but shelf space for a storage system this expensive would be hard to get. Instead, expect it at specialty outlets like Fry&#8217;s and perhaps Micro Center.</p>
<p>How much does the StorCenter ix4-200d cost?</p>
<ul>
<li>The 2 TB model (SKU# 34546 with four 500 GB drives) lists at $699.99</li>
<li>The 4 TB model (SKU# 34549 with four 1 TB drives) lists at $899.99</li>
<li>The 8 TB model (SKU# 34563 with four 2 TB drives) lists at $1,899.99</li>
</ul>
<p>It also seems likely that <strong>the 2-bay product is up for a refresh</strong> in the near future. The ix2 can&#8217;t be said to be very attractive, so hopefully the company will do something about this with the next-generation product. It is unclear whether the inexpensive 2-bay device will get iSCSI support, but I suspect it will. Beyond this, might Iomega move further upmarket with <strong>an 8-drive unit</strong>? We shall see!</p>
<div id="crp_related"><h3>You might also want to read these other posts...</h3><ul><li><a href="http://blog.fosketts.net/2009/10/07/iomega-ix2-200/"  rel="bookmark" class="crp_title">Iomega ix2-200 Adds iSCSI, Sync To Dual-Drive SOHO NAS</a></li><li><a href="http://blog.fosketts.net/2009/02/05/emc-lifeline-storcenter-pro-ix4-100/"  rel="bookmark" class="crp_title">EMC LifeLine Spreads To The Iomega StorCenter Pro ix4-100</a></li><li><a href="http://blog.fosketts.net/2009/04/16/iomega-storcenter-ix4-200r/"  rel="bookmark" class="crp_title">Iomega Grows Up and Moves Out of the House</a></li><li><a href="http://blog.fosketts.net/2010/05/04/iomega-ix12-300r/"  rel="bookmark" class="crp_title">Iomega Graduates and Goes to Work with the ix12-300r</a></li><li><a href="http://blog.fosketts.net/2009/01/07/emc-iomega-relevant/"  rel="bookmark" class="crp_title">EMC Makes Iomega Relevant Again</a></li></ul></div><script src="http://feeds.feedburner.com/~s/sfoskett?i=http://blog.fosketts.net/2009/08/27/iomega-ix4-200d/" type="text/javascript" charset="utf-8"></script><hr />
<p><small>© sfoskett for <a href="http://blog.fosketts.net">Stephen Foskett, Pack Rat</a>, 2009. |
<a href="http://blog.fosketts.net/2009/08/27/iomega-ix4-200d/">Iomega&#8217;s ix4-200d: A Killer Desktop Storage Array</a>
<br/>
This post was categorized as <a href="http://blog.fosketts.net/category/everything/apple/" title="View all posts in Apple" rel="category tag">Apple</a>, <a href="http://blog.fosketts.net/category/everything/enterprisestorage/" title="View all posts in Enterprise storage" rel="category tag">Enterprise storage</a>, <a href="http://blog.fosketts.net/category/everything/" title="View all posts in Everything" rel="category tag">Everything</a>, <a href="http://blog.fosketts.net/category/everything/personal/" title="View all posts in Personal" rel="category tag">Personal</a>, <a href="http://blog.fosketts.net/category/everything/terabytehome/" title="View all posts in Terabyte home" rel="category tag">Terabyte home</a>, <a href="http://blog.fosketts.net/category/everything/virtualstorage/" title="View all posts in Virtual Storage" rel="category tag">Virtual Storage</a>. Each of my categories has its own feed if you'd like to filter out or focus on posts like this.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://blog.fosketts.net/2009/08/27/iomega-ix4-200d/feed/</wfw:commentRss>
		<slash:comments>50</slash:comments>
	
		<series:name><![CDATA[Iomega]]></series:name>
	</item>
		<item>
		<title>I Can Finally Talk About Windows Storage Server 2008!</title>
		<link>http://blog.fosketts.net/2009/05/05/windows-storage-server-2008/</link>
		<comments>http://blog.fosketts.net/2009/05/05/windows-storage-server-2008/#comments</comments>
		<pubDate>Tue, 05 May 2009 20:48:18 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Enterprise storage]]></category>
		<category><![CDATA[ActiveX]]></category>
		<category><![CDATA[clustering]]></category>
		<category><![CDATA[deduplication]]></category>
		<category><![CDATA[dual-active]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Gestalt IT]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[iSCSI]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MVP]]></category>
		<category><![CDATA[NDA]]></category>
		<category><![CDATA[primary storage]]></category>
		<category><![CDATA[RDP]]></category>
		<category><![CDATA[remote administration]]></category>
		<category><![CDATA[single-instance storage]]></category>
		<category><![CDATA[SIS]]></category>
		<category><![CDATA[SMB]]></category>
		<category><![CDATA[SMB 2.0]]></category>
		<category><![CDATA[Storage Decisions]]></category>
		<category><![CDATA[TechNet]]></category>
		<category><![CDATA[VDS]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Server 2008 R2]]></category>
		<category><![CDATA[Windows Server 2008 Service Pack 2]]></category>
		<category><![CDATA[Windows Storage Server 2008]]></category>

		<guid isPermaLink="false">http://blog.fosketts.net/?p=1832</guid>
		<description><![CDATA[I don&#8217;t usually &#8220;do&#8221; NDAs. It&#8217;s just too hard to figure out what I&#8217;m allowed to say and what I should keep quiet. I prefer to get free and open information, but will settle for embargoed briefings if it means I can get some time to think before reporting. So my Microsoft connection is a [...]]]></description>
			<content:encoded><![CDATA[<p><strong>I don&#8217;t usually &#8220;do&#8221; NDAs</strong>. It&#8217;s just too hard to figure out what I&#8217;m allowed to say and what I should keep quiet. I prefer to get free and open information, but will settle for embargoed briefings if it means I can get some time to think before reporting. So my Microsoft connection is a major anomaly, and I&#8217;ve been sitting on my hands trying not to spill the beans&#8230;<span id="more-1832"></span></p>
<p>One of the great things about being a Microsoft MVP is the access I get to Microsoft software and staff. As I mentioned in my post about the <a href="http://blog.fosketts.net/2009/03/06/10-cool-storage-2009-microsoft-mvp-summit/" >10 cool storage features from the 2009 Microsoft MVP Summit</a>, I was able to preview a lot of what Microsoft is doing with their Server software and storage features. And the best part is that the Microsoft product teams are keenly interested in our feedback and suggestions. I&#8217;m told, for example, that the awesome iSCSI Quick Connect feature in the new Windows iSCSI initiator software was developed based on my feedback!</p>
<p>As I note on my <a href="http://gestaltit.com/tech/stephen/windows-storage-server-2008/"  target="_blank">Windows Storage Server 2008 preview</a> on Gestalt IT, Microsoft has always kept WSS close to the vest. It&#8217;s only available to OEMs, not retail customers, and has never even been shared with TechNet or MSDN subscribers in the past. So I was really pleased when <strong>Microsoft gave the File System Storage MVPs access to a beta version of WSS 2008</strong> so we could get a feel for all of the new features. I&#8217;ve also had some great conversations this week with the Microsoft product managers responsible for it.</p>
<p>What&#8217;s exciting about Windows Storage Server 2008?</p>
<ol>
<li>It includes all of the <a href="http://blog.fosketts.net/2008/07/31/windows-server-2008-changes-storage/"  target="_blank">storage enhancements in Windows Server 2008</a>, including <strong>SMB 2.0</strong> for much much faster file servicing over higher-latency links, SMfS, FSRM, enhanced VDS, and failover clustering.</li>
<li>WSS is the only way to get access to Microsoft&#8217;s <strong>iSCSI target software</strong>. It&#8217;s been improved in many ways from the prior releases, but its support for what Microsoft calls <strong>dual-active clustering</strong> is probably its most notable feature: You can&#8217;t share the same active LUN between cluster members, but each can have its own active LUNs and the can all fail over in the event that one member goes down.</li>
<li>The included <strong>single-instance storage (SIS)</strong> file-based deduplication has been much improved, scaling to 128 volumes per server and millions of files. It&#8217;s still not as effective capacity-wise as block-level deduplication (which I&#8217;d love to see, hint hint), but the performance is solid enough to use it for <strong>primary storage with production applications</strong>.</li>
<li>Probably the coolest feature exclusive to Windows Storage Server 2008 is its new <strong>browser-based remote administration capability</strong>. Just point your browser to the Storage Server machine (for example, &#8220;http://wss/desktop&#8221;) and you&#8217;ll get a full ActiveX version of RDP. Don&#8217;t use Internet Exploder? Firefox and Linux users will get a Java-based RDP instead! I will cover this feature more in the future, but let&#8217;s just say that <strong>every operating system should offer this</strong>!</li>
</ol>
<p>Want to try Windows Storage Server for yourself? Breaking from the past, Microsoft will soon (like next week!) allow TechNet subscribers to <strong>download the full install</strong>. OEMs have a <a href="http://microsoft.download-ss.com/default.asp"  target="_blank">sekrit back-door site</a> to try it out, too.</p>
<p>One more thing&#8230; <strong>This will be the last release of Windows Storage Server</strong>. There won&#8217;t even be a special Storage Server version of Server 2008 Service Pack 2! Starting now, Storage Server is just an optional feature of Windows Server. Purchasing and production use will still be limited to storage OEMs, but Microsoft has finally reconciled Storage Server with the rest of the Windows Server world. I imagine that most OEMs will release Service Pack 2 updates for their Storage Server customers shortly, and that future versions of the product will come closer to the base Server versions than WSS 2008. Although I can&#8217;t share what I know, I will say that <strong>Microsoft is continuing active development</strong> on their iSCSI target, single-instance storage, and other Storage Server features. I imagine that <a href="http://blog.fosketts.net/2008/08/19/windows-7-server-windows-server-2008-r2/"  target="_blank">Windows Server 2008 R2</a> will support storage systems in the very near future!</p>
<p>On a personal note, reading <a href="http://blogs.technet.com/storageserver/archive/2008/06/09/a-brief-history-of-windows-storage-server-releases.aspx" >A Brief History of Windows Storage Server Releases</a> from the <a href="http://blogs.technet.com/StorageServer/"  target="_blank">Microsoft Storage Server blog</a> reminded me of the original unveiling of Windows Storage Server at Storage Decisions Chicago in June, 2003. The company loaded us all on one of those lake cruise boats with some celebrity impersonators, chocolate &#8220;Oscar&#8221;-style statues, an open bar, and a band. Good times ensued!</p>
<blockquote><p>For more details, check out my Gestalt IT piece, <a href="http://gestaltit.com/tech/stephen/windows-storage-server-2008/"  target="_blank">Windows Storage Server-Based Systems Step Into 2008</a></p>
<p>Microsoft is detailing the new version of Windows Storage Server 2008 in a <a rel="nofollow" href="http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?EventID=1032410705"  target="_blank">webcast Thursday at 8 AM Pacific</a>. You should also check out the <a href="http://blogs.technet.com/StorageServer/"  target="_blank">Microsoft Storage Server blog</a>.</p>
</blockquote>
<div id="crp_related"><h3>You might also want to read these other posts...</h3><ul><li><a href="http://blog.fosketts.net/2008/08/19/windows-7-server-windows-server-2008-r2/"  rel="bookmark" class="crp_title">Windows 7 Server == Windows Server 2008 R2</a></li><li><a href="http://blog.fosketts.net/2009/05/27/windows-7-hands/"  rel="bookmark" class="crp_title">Windows 7 Is Here! In My Hands! But Why 8 DVDs?</a></li><li><a href="http://blog.fosketts.net/2009/02/26/microsoft-mvp-global-summit/"  rel="bookmark" class="crp_title">Attending Microsoft&#8217;s MVP Global Summit</a></li><li><a href="http://blog.fosketts.net/2009/07/01/dustin-pedroia-common/"  rel="bookmark" class="crp_title">Dustin Pedroia And I Have Two Things In Common!</a></li><li><a href="http://blog.fosketts.net/2008/07/31/windows-server-2008-changes-storage/"  rel="bookmark" class="crp_title">Windows Server 2008 Changes Storage</a></li></ul></div><script src="http://feeds.feedburner.com/~s/sfoskett?i=http://blog.fosketts.net/2009/05/05/windows-storage-server-2008/" type="text/javascript" charset="utf-8"></script><hr />
<p><small>© sfoskett for <a href="http://blog.fosketts.net">Stephen Foskett, Pack Rat</a>, 2009. |
<a href="http://blog.fosketts.net/2009/05/05/windows-storage-server-2008/">I Can Finally Talk About Windows Storage Server 2008!</a>
<br/>
This post was categorized as <a href="http://blog.fosketts.net/category/everything/enterprisestorage/" title="View all posts in Enterprise storage" rel="category tag">Enterprise storage</a>. Each of my categories has its own feed if you'd like to filter out or focus on posts like this.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://blog.fosketts.net/2009/05/05/windows-storage-server-2008/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Windows 7 Server == Windows Server 2008 R2</title>
		<link>http://blog.fosketts.net/2008/08/19/windows-7-server-windows-server-2008-r2/</link>
		<comments>http://blog.fosketts.net/2008/08/19/windows-7-server-windows-server-2008-r2/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 14:35:18 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Enterprise storage]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Server 2003]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Storage Server 2008]]></category>

		<guid isPermaLink="false">http://blog.fosketts.net/?p=442</guid>
		<description><![CDATA[With Windows Server 2008 appearing in (surprisingly) 2008, and Windows 7 (client) scheduled for 2010, some folks grew mighty confused about the possibility of a Windows 7 Server appearing shortly thereafter. Even Microsofties talked about something called &#8220;Windows 7 Server&#8221; in blogs, newsgroups, and conferences. So would there be a major Windows Server update just [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" href="http://www.microsoft.com/windowsserver2008/en/us/default.aspx" ><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-full wp-image-443" title="windows_server_2008_v_web" src="http://blog.fosketts.net/wp-content/uploads/2008/08/windows_server_2008_v_web.jpg" alt="" width="300" height="100" /></a>With Windows Server 2008 appearing in (surprisingly) 2008, and <a rel="nofollow" href="http://www.microsoft.com/windows/letter.mspx"  target="_blank">Windows 7 (client) scheduled for 2010</a>, some folks grew mighty confused about the possibility of a Windows 7 Server appearing shortly thereafter. Even Microsofties talked about something called &#8220;Windows 7 Server&#8221; in blogs, newsgroups, and conferences.</p>
<p>So would there be a <a href="http://blogs.zdnet.com/microsoft/?p=1531"  target="_blank">major Windows Server update</a> just two or three years after the last major version? And what impact would this have on the masses that <a rel="nofollow" href="http://blogs.techrepublic.com.com/datacenter/?p=426"  target="_blank">still haven&#8217;t moved from Windows Server 2003</a> (or even 2000)?</p>
<p>Thankfully, the Group Product Manager for Windows Server, Ward Ralston, has clarified the issue. <a href="http://blogs.technet.com/windowsserver/archive/2008/08/18/windows-server-7-aka-windows-server-2008-r2.aspx"  target="_blank">There will be no Windows 7 Server</a>. Instead, we will see an update to Windows Server 2008 called (unsurprisingly) Windows Server 2008 R2 which will incorporate any server-side enhancements needed for Windows 7 clients. Ralston&#8217;s comments about a 2/4 schedule of minor/major updates leads me to assume that the next major Windows Server update will come in 2012 at the earliest and will probably share whatever the post-Windows 7 client codebase becomes.</p>
<p>See the <a rel="nofollow" href="http://www.microsoft.com/windowsserver2008/en/us/roadmap.aspx"  target="_blank">official Microsoft Windows Server Roadmap</a> for more details, and note that Windows Storage Server 2008 is noted for release this year. I can&#8217;t wait to get my hands on that!</p>
<div id="crp_related"><h3>You might also want to read these other posts...</h3><ul><li><a href="http://blog.fosketts.net/2008/07/31/windows-server-2008-changes-storage/"  rel="bookmark" class="crp_title">Windows Server 2008 Changes Storage</a></li><li><a href="http://blog.fosketts.net/2009/05/05/windows-storage-server-2008/"  rel="bookmark" class="crp_title">I Can Finally Talk About Windows Storage Server 2008!</a></li><li><a href="http://blog.fosketts.net/2009/05/27/windows-7-hands/"  rel="bookmark" class="crp_title">Windows 7 Is Here! In My Hands! But Why 8 DVDs?</a></li><li><a href="http://blog.fosketts.net/2008/07/28/storage-fixes-vmware-esx-server-35-update-2/"  rel="bookmark" class="crp_title">Storage Fixes in VMware ESX Server 3.5 Update 2</a></li><li><a href="http://blog.fosketts.net/2009/02/26/microsoft-mvp-global-summit/"  rel="bookmark" class="crp_title">Attending Microsoft&#8217;s MVP Global Summit</a></li></ul></div><script src="http://feeds.feedburner.com/~s/sfoskett?i=http://blog.fosketts.net/2008/08/19/windows-7-server-windows-server-2008-r2/" type="text/javascript" charset="utf-8"></script><hr />
<p><small>© sfoskett for <a href="http://blog.fosketts.net">Stephen Foskett, Pack Rat</a>, 2008. |
<a href="http://blog.fosketts.net/2008/08/19/windows-7-server-windows-server-2008-r2/">Windows 7 Server == Windows Server 2008 R2</a>
<br/>
This post was categorized as <a href="http://blog.fosketts.net/category/everything/enterprisestorage/" title="View all posts in Enterprise storage" rel="category tag">Enterprise storage</a>. Each of my categories has its own feed if you'd like to filter out or focus on posts like this.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://blog.fosketts.net/2008/08/19/windows-7-server-windows-server-2008-r2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Storage Fixes in VMware ESX Server 3.5 Update 2</title>
		<link>http://blog.fosketts.net/2008/07/28/storage-fixes-vmware-esx-server-35-update-2/</link>
		<comments>http://blog.fosketts.net/2008/07/28/storage-fixes-vmware-esx-server-35-update-2/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 17:16:37 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Enterprise storage]]></category>
		<category><![CDATA[Virtual Storage]]></category>
		<category><![CDATA[10 gigabit Ethernet]]></category>
		<category><![CDATA[8 gigabit Fibre Channel]]></category>
		<category><![CDATA[CIM]]></category>
		<category><![CDATA[Dell]]></category>
		<category><![CDATA[Emulex]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[ESXi]]></category>
		<category><![CDATA[Fibre Channel]]></category>
		<category><![CDATA[HP]]></category>
		<category><![CDATA[iSCSI]]></category>
		<category><![CDATA[NFS]]></category>
		<category><![CDATA[QLogic]]></category>
		<category><![CDATA[RDM]]></category>
		<category><![CDATA[SAS]]></category>
		<category><![CDATA[SRM]]></category>
		<category><![CDATA[Storage VMotion]]></category>
		<category><![CDATA[Sun]]></category>
		<category><![CDATA[VCB]]></category>
		<category><![CDATA[Virtual Infrastructure]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Volume Shadow Copy Service]]></category>
		<category><![CDATA[VSS]]></category>
		<category><![CDATA[Windows Server 2003]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://blog.fosketts.net/?p=364</guid>
		<description><![CDATA[VMware just released Update 2 for VMware ESX Server 3.5 (Virtual Infrastructure), and it includes some storage fixes of note: Support for Volume Shadow Copy Service (VSS) for filesystems Windows Server 2003 and Windows Server 2008 guests.  This means VMware services like VCB and SRM can now signal Windows Server to quiesce filesystems before creating a [...]]]></description>
			<content:encoded><![CDATA[<p>VMware just released <a href="http://www.vmware.com/support/vi3/doc/vi3_esx35u2_vc25u2_rel_notes.html"  target="_blank">Update 2 for VMware ESX Server 3.5</a> (Virtual Infrastructure), and it includes some storage fixes of note:</p>
<ol>
<li>Support for <a rel="nofollow" href="http://msdn.microsoft.com/en-us/library/aa384649(VS.85).aspx"  target="_blank">Volume Shadow Copy Service (VSS)</a> for filesystems Windows Server 2003 and Windows Server 2008 guests.  This means VMware services like VCB and SRM can now signal Windows Server to quiesce filesystems before creating a clone or snapshot and is a <strong>major addition</strong>!</li>
<li>Windows Server 2003 guests also get <em>application</em> quiescing, where supported.</li>
<li>You can now extend a live, running VMFS volume as storage is added, just like Windows Vista and 2008 guests could already do with raw device mode (RDM).  Note that this only works for flat disks with no persistent snapshots open.</li>
</ol>
<p><span id="more-364"></span><br />
A few items are now officially supported, too:</p>
<ol>
<li>Support for Storage VMotion between and among Fibre Channel and iSCSI datastores is here, and in Update 1.</li>
<li>iSCSI over 10 gigabit Ethernet (10 GbE) is now supported allegedly, though the <a href="http://www.vmware.com/pdf/vi35_io_guide.pdf"  target="_blank">I/O Compatibility Guide</a> still says &#8220;Gigabit only&#8221;.  Of course, it already worked, but it&#8217;s nice to have official support just the same&#8230;  Bring on the datacenter Ethernet!  They&#8217;ll support this in Update 1 too.</li>
<li>And NFS over 10 GbE is supported, too!</li>
</ol>
<div>And some more hardware support, though I had a hard time reconciling the guides with the release notes&#8230;</div>
<ol>
<li>They supposedly added support for 8 gigabit Fibre Channel (8 Gb FC) HBAs, but I don&#8217;t see it in the <a href="http://www.vmware.com/pdf/vi35_io_guide.pdf"  target="_blank">I/O Compatibility Guide</a>. The Emulex <a href="http://www.emulex.com/products/hba/e12000/ds.jsp"  target="_blank">LP12000</a>/LP12002 are noted as 4 Gb only, the QLogic <a href="http://www.qlogic.com/Products/SAN_products_FCHBA_QLE2560.aspx"  target="_blank">QLE2560</a>/QLE2562 aren&#8217;t listed, the HP <a rel="nofollow" href="http://h18006.www1.hp.com/products/storageworks/fc81q_pci/index.html"  target="_blank">81/82 series</a> isn&#8217;t there either.  <strong>Update:</strong>  <a href="http://blog.fosketts.net/2008/07/30/qlogic-and-emulex-deliver-8-gb-fibre-channel-for-vmware-esx/"  target="_self">QLogic and Emulex HBAs are supported after all!</a></li>
<li>Support for more Serial-Attached SCSI (SAS), including Dell SAS 5/E, LSI 1078, Sun SG‐XPCIESAS‐R‐EXT‐Z, and HP SC08GE is listed in the <a href="http://www.vmware.com/pdf/vi35_san_guide.pdf"  target="_blank">Stotage Compatibility Guide</a>.</li>
<li>CIM system health monitoring of some QLogic and Emulex HBAs is new too.</li>
</ol>
<p>[ad#banner]</p>
<p>See also:</p>
<ul>
<li><a href="http://feeds.feedburner.com/~r/slowe/content/feed/~3/346978895/"  target="_blank">Scott Lowe&#8217;s (as always) excellent overview</a></li>
<li><a href="http://vmetc.com/2008/07/26/esx-35-update-2-released-with-new-fixes-and-new-features/"  target="_blank">VM /ETC&#8217;s colorful post</a></li>
<li><a href="http://www.yellow-bricks.com/2008/07/26/esx-35-update-2-available-now/"  target="_blank">Excellent coverage at Yellow Bricks</a></li>
</ul>
<div id="crp_related"><h3>You might also want to read these other posts...</h3><ul><li><a href="http://blog.fosketts.net/2008/07/30/qlogic-emulex-deliver-8-gb-fibre-channel-vmware-esx/"  rel="bookmark" class="crp_title">QLogic and Emulex Deliver 8 Gb Fibre Channel For VMware ESX</a></li><li><a href="http://blog.fosketts.net/2008/11/07/storage-vmware-esx-update-3/"  rel="bookmark" class="crp_title">Storage Changes in VMware ESX 3.5 Update 3</a></li><li><a href="http://blog.fosketts.net/2009/03/31/storage-vmware-esx-35-update-4/"  rel="bookmark" class="crp_title">Storage Changes in VMware ESX 3.5 Update 4</a></li><li><a href="http://blog.fosketts.net/2007/08/08/emulex-and-qlogic-learn-to-speak-klingon/"  rel="bookmark" class="crp_title">Emulex and QLogic Learn to Speak Klingon!</a></li><li><a href="http://blog.fosketts.net/2011/01/24/vmware-esx-fcoe-cna-compatibility-plain-english/"  rel="bookmark" class="crp_title">VMware ESX FCoE CNA Compatibility in Plain English</a></li></ul></div><script src="http://feeds.feedburner.com/~s/sfoskett?i=http://blog.fosketts.net/2008/07/28/storage-fixes-vmware-esx-server-35-update-2/" type="text/javascript" charset="utf-8"></script><hr />
<p><small>© sfoskett for <a href="http://blog.fosketts.net">Stephen Foskett, Pack Rat</a>, 2008. |
<a href="http://blog.fosketts.net/2008/07/28/storage-fixes-vmware-esx-server-35-update-2/">Storage Fixes in VMware ESX Server 3.5 Update 2</a>
<br/>
This post was categorized as <a href="http://blog.fosketts.net/category/everything/enterprisestorage/" title="View all posts in Enterprise storage" rel="category tag">Enterprise storage</a>, <a href="http://blog.fosketts.net/category/everything/virtualstorage/" title="View all posts in Virtual Storage" rel="category tag">Virtual Storage</a>. Each of my categories has its own feed if you'd like to filter out or focus on posts like this.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://blog.fosketts.net/2008/07/28/storage-fixes-vmware-esx-server-35-update-2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

