<?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>motogobi.com &#187; Tech Tips</title>
	<atom:link href="http://www.motogobi.com/tag/tech-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.motogobi.com</link>
	<description>fist-pump, push-up, chapstick</description>
	<lastBuildDate>Fri, 03 Feb 2012 19:02:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Listing VMs and their .vmx location via PowerShell</title>
		<link>http://www.motogobi.com/2011/01/06/listing-vms-and-their-vmx-location-via-powershell/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=listing-vms-and-their-vmx-location-via-powershell</link>
		<comments>http://www.motogobi.com/2011/01/06/listing-vms-and-their-vmx-location-via-powershell/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 20:33:04 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[system administration]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=1130</guid>
		<description><![CDATA[Pre-migration PowerShell lifesaving tip of the day: get a listing of all your VMs and the datastores they&#8217;re living on (&#8217;cause we all know your VM names don&#8217;t match their storage names, right?) in case you need to re-register your VMs from storage. We&#8217;re heading into another datacenter move, and I&#8217;ve learned that it&#8217;s nice [...]]]></description>
			<content:encoded><![CDATA[<p>Pre-migration PowerShell lifesaving tip of the day: get a listing of all your VMs and the datastores they&#8217;re living on (&#8217;cause we all know <a href="http://www.motogobi.com/vm-folder-name-mismatch-query-using-powershell/">your VM names don&#8217;t match their storage names</a>, right?) in case you need to re-register your VMs from storage. We&#8217;re heading into another datacenter move, and I&#8217;ve learned that it&#8217;s nice to know exactly where everything lives rather than try to find it that day when all you might have is your storage available. <a href="http://www.vmworldz.com/2010/08/daily-powercli-primer-list-all-vms-and.html">Kudos to Scott March</a> for his script to do the heavy lifting:</p>
<p style="padding-left: 30px;"><code>Connect-VIServer YOURvCENTERNAME</code><br />
<code> </code><br />
<code>$Information = @()<br />
Foreach ($VM in (Get-VM  | Sort Name | Get-View)){<br />
$MyDetails = "" | Select-Object VMName,VMXLocation<br />
$MyDetails.VMName = $VM.Name<br />
$MyDetails.VMXLocation = $VM.Config.Files.VmPathName<br />
$Information += $MyDetails<br />
}<br />
$Information |Export-Csv -NoTypeInformation C:output.csv</code></p>
<p>This little report is a nice bit of insurance to have, let me tell you&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2011/01/06/listing-vms-and-their-vmx-location-via-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More love for PowerGUI and PowerShell</title>
		<link>http://www.motogobi.com/2010/12/01/more-love-for-powergui-and-powershell/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=more-love-for-powergui-and-powershell</link>
		<comments>http://www.motogobi.com/2010/12/01/more-love-for-powergui-and-powershell/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 20:19:53 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[system administration]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=1088</guid>
		<description><![CDATA[I suck at scripting. I have this big vSphere PowerCLI poster sitting next to my desk that I&#8217;m only now learning to reference. But PowerShell is quickly becoming my go-to tool of choice to quickly find out how my vSphere infrastructure is doing. To that end, Quest software released an awesome get-your-feet-wet-with-PowerShell tool called PowerGUI, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.motogobi.com/wp-content/uploads/2010/12/PowerGUIvmware.png" rel="lightbox[1088]"><img class="alignright size-thumbnail wp-image-1089" title="PowerGUIvmware" src="http://www.motogobi.com/wp-content/uploads/2010/12/PowerGUIvmware-150x150.png" alt="" width="150" height="150" /></a>I suck at scripting. I have this big vSphere PowerCLI poster sitting next to my desk that I&#8217;m only now learning to reference. But PowerShell is quickly becoming my go-to tool of choice to quickly find out how my vSphere infrastructure is doing. To that end, Quest software released an awesome get-your-feet-wet-with-<a href="http://www.powergui.org/index.jspa">PowerShell tool called PowerGUI</a>, and then <a href="http://www.powergui.org/entry.jspa?externalID=1802&amp;categoryID=290">Kirk Munro released what&#8217;s called a PowerPack</a> to allow super-quick management of VMware virtual infrastructure from within PowerGUI.</p>
<p>One of the best features of the latest PowerGUI / VMware Infrastructure Management release? An incredibly useful dropdown list of common vSphere gotchas to look for (click the thumbnail for a list of &#8216;em). As I come on board a new organization with a more diverse administration personnel model for vSphere, this list of queries has enabled me to very quickly identify some problems that could grow into larger issues &#8211; and to fix them almost as quickly.</p>
<p>Finding a <em>terabyte</em> of orphaned .vmdk files just made me a pretty valuable employee today&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2010/12/01/more-love-for-powergui-and-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pre-populating vSphere Client connection properties</title>
		<link>http://www.motogobi.com/2010/11/29/pre-populating-vsphere-client-connection-properties/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=pre-populating-vsphere-client-connection-properties</link>
		<comments>http://www.motogobi.com/2010/11/29/pre-populating-vsphere-client-connection-properties/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 18:06:11 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[system administration]]></category>
		<category><![CDATA[Tech Tips]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=1083</guid>
		<description><![CDATA[Why didn&#8217;t I find this little trick sooner? On the heels of keeping your VI Client connection listing clean, you can also pre-populate your vSphere Client user name and (if you&#8217;re able to) password dialog boxes when launching the client. It&#8217;s wicked easy &#8211; get to the properties of your VI Client shortcut and modify [...]]]></description>
			<content:encoded><![CDATA[<p>Why didn&#8217;t I find <a href="http://vdestination.com/2010/07/29/vsphere-client-caching/">this little trick</a> sooner? On the heels of keeping your <a href="http://www.motogobi.com/clearing-the-vi-client-recent-connections-dialog/">VI Client connection listing clean</a>, you can also pre-populate your vSphere Client user name and (if you&#8217;re able to) password dialog boxes when launching the client. It&#8217;s wicked easy &#8211; get to the properties of your VI Client shortcut and modify the Target for the shortcut, adding -u <em>username</em> to the end without quotes. For example:</p>
<p style="padding-left: 30px;"><code>"C:Program Files (x86)VMwareInfrastructureVirtual Infrastructure ClientLauncherVpxClient.exe" -u domainusername</code></p>
<p>This will launch the client with the user name pre-populated with <em>domainusername</em>, which is super handy for me since I log into all of my vCenters using an admin account. Other switches:</p>
<p style="padding-left: 30px;"><code>-s <em>hostname</em> to specify a specific host or IP address</code></p>
<p style="padding-left: 30px;"><span style="font-family: monospace;">-p <em>password</em> to specific a password. Used with -u, ie: -u <em>username</em> -p <em>password</em></span></p>
<p>Much thanks to <a href="http://vdestination.com/2010/07/29/vsphere-client-caching/">Jason Boche&#8217;s original post on this</a>, which is now saving me some typing every day&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2010/11/29/pre-populating-vsphere-client-connection-properties/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing ghosted devices in a Windows VM</title>
		<link>http://www.motogobi.com/2010/09/22/removing-ghosted-devices-in-a-windows-vm/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=removing-ghosted-devices-in-a-windows-vm</link>
		<comments>http://www.motogobi.com/2010/09/22/removing-ghosted-devices-in-a-windows-vm/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 13:48:23 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[P2V]]></category>
		<category><![CDATA[Tech Tips]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=1048</guid>
		<description><![CDATA[This post from Eric Sloof is near and dear to my heart: I&#8217;ve probably migrated around 300 servers to VM in my current position, and learning how to quickly clean up those VMs once they&#8217;re converted can save you a tremendous amount of time (time usually on the weekend or after hours!). I&#8217;ve always used [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-1049" title="Ghostbuster" src="http://www.motogobi.com/wp-content/uploads/2010/09/Ghostbuster-150x150.jpg" alt="" width="150" height="150" /><a href="http://www.ntpro.nl/blog/archives/1586-Busting-Virtual-Machine-Ghosted-Devices.html" target="_blank">This post from Eric Sloof</a> is near and dear to my heart: I&#8217;ve probably migrated around 300 servers to VM in my current position, and learning how to quickly clean up those VMs once they&#8217;re converted can save you a tremendous amount of time (time usually on the weekend or after hours!). I&#8217;ve always used a set of scripts that I found via the VMware forums that <a href="http://www.ntpro.nl/blog/archives/1586-Busting-Virtual-Machine-Ghosted-Devices.html" target="_blank">Eric Sloof</a> has now clarified to have been developed by Phi Phi Wang at IBM. But for you GUI types, there&#8217;s a new open source tool out there called <a href="http://ghostbuster.codeplex.com/" target="_blank">Ghostbuster</a> that will quickly list out ghosted devices in Windows and allow you to select them for removal easily and quickly. I&#8217;ve<a href="http://www.motogobi.com/physical-to-virtual-conversions-using-vmware-converter-40/"> listed out some tips for physical-to-virtual migrations before</a>, and this tool would easily replace the very manual, point-click-delete-repeat process of removing these by hand in the Windows Device Manager. Could have used this about a year ago, definitely&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2010/09/22/removing-ghosted-devices-in-a-windows-vm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vReference 4.1 card released</title>
		<link>http://www.motogobi.com/2010/09/12/vreference-4-1-card-released/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vreference-4-1-card-released</link>
		<comments>http://www.motogobi.com/2010/09/12/vreference-4-1-card-released/#comments</comments>
		<pubDate>Sun, 12 Sep 2010 23:33:09 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[reference]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=1036</guid>
		<description><![CDATA[Forbes Guthrie has released another vReference card - this time, updated with juicy 4.1 info. If you work in vSphere and don&#8217;t already use one of his incredibly useful previous vReference releases, you owe it to yourself to download the vSphere 4.1 version. Also available are Virtual Infrastructure 3 cards for those of you not [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1037" title="vReferenceCard2.3" src="http://www.motogobi.com/wp-content/uploads/2010/09/vReferenceCard2.3.png" alt="" width="598" height="195" /></p>
<p><a href="http://www.vreference.com/about-me/" target="_blank">Forbes Guthrie</a> has released another vReference card -<a href="http://www.vreference.com/2010/09/12/vreference-4-1-card-released/" target="_blank"> this time, updated with juicy 4.1 info</a>. If you work in vSphere and don&#8217;t already use one of his incredibly useful previous vReference releases, you owe it to yourself to download the vSphere 4.1 version. Also available are <a href="http://www.vreference.com/vi3-card/" target="_blank">Virtual Infrastructure 3 cards</a> for those of you not inclined to upgrade just yet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2010/09/12/vreference-4-1-card-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excellent vSphere 4.1 link reference</title>
		<link>http://www.motogobi.com/2010/09/08/excellent-vsphere-4-1-link-reference/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=excellent-vsphere-4-1-link-reference</link>
		<comments>http://www.motogobi.com/2010/09/08/excellent-vsphere-4-1-link-reference/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 13:37:58 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=1023</guid>
		<description><![CDATA[Seems that Scott Lowe has shelved his plans for a follow-up to Mastering VMware vSphere 4 - a book that sits, dog-eared, on my desk permanently. While working on that project Scott has amassed some really useful links to various resources and articles, and posted them today on his blog. Excellent reading for planning a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.motogobi.com/wp-content/uploads/2010/09/scott_lowe.png" rel="lightbox[1023]"><img class="alignright size-full wp-image-1024" title="scott_lowe" src="http://www.motogobi.com/wp-content/uploads/2010/09/scott_lowe.png" alt="" width="69" height="70" /></a>Seems that Scott Lowe has shelved his plans for a follow-up to <em>Mastering VMware vSphere 4 -</em> a book that sits, dog-eared, on my desk permanently. While working on that project Scott has amassed some really useful links to various resources and articles, and <a href="http://blog.scottlowe.org/2010/09/08/vsphere-41-links/" target="_blank">posted them today on his blog</a>. Excellent reading for planning a move to 4.1, the last version of vSphere to support ESX&#8217;s Service Console. Thanks again, Scott!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2010/09/08/excellent-vsphere-4-1-link-reference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Soon-to-be-end-of-life-Service-Console reference of the day</title>
		<link>http://www.motogobi.com/2010/09/02/soon-to-be-end-of-life-service-console-reference-of-the-day/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=soon-to-be-end-of-life-service-console-reference-of-the-day</link>
		<comments>http://www.motogobi.com/2010/09/02/soon-to-be-end-of-life-service-console-reference-of-the-day/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 15:44:46 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=886</guid>
		<description><![CDATA[This completely saved my aching head this morning when we had to update the VLAN on some freshly-built ESX hosts: Esxcfg command help Thank you, Eric Siebert!]]></description>
			<content:encoded><![CDATA[<p>This completely saved my aching head this morning when we had to update the VLAN on some freshly-built ESX hosts:</p>
<p style="text-align: center;"><a href="http://vmware-land.com/esxcfg-help.html" target="_blank">Esxcfg command help</a></p>
<p>Thank you, <a href="http://vsphere-land.com/about/about-me" target="_blank">Eric Siebert</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2010/09/02/soon-to-be-end-of-life-service-console-reference-of-the-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Curious SQL database issue with vCenter Update 1</title>
		<link>http://www.motogobi.com/2010/08/27/curious-sql-database-issue-with-vcenter-update-1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=curious-sql-database-issue-with-vcenter-update-1</link>
		<comments>http://www.motogobi.com/2010/08/27/curious-sql-database-issue-with-vcenter-update-1/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 15:53:29 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[break-fix]]></category>
		<category><![CDATA[not cool]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=859</guid>
		<description><![CDATA[Ran into this error this morning, which of course took down one of our (1000+ VM) vCenter environments: The vCenter Server&#8217;s vpxd logs contain entries similar to: An unrecoverable problem has occurred, stopping the VMware VirtualCenter service. Check database connectivity before restarting. Error: Error[VdbODBCError] (-1) &#8220;ODBC error: (23000) &#8211; [Microsoft][SQL Native Client][SQL Server]Violation of PRIMARY [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-860" title="vcenter-installer" src="http://www.motogobi.com/wp-content/uploads/2010/08/vcenter-installer-150x150.jpg" alt="" width="150" height="150" />Ran into this error this morning, which of course took down one of our (1000+ VM) vCenter environments:</p>
<blockquote><p>The vCenter Server&#8217;s vpxd logs contain entries similar to:</p>
<p>An unrecoverable problem has occurred, stopping the VMware VirtualCenter service. Check database connectivity before restarting. Error: Error[VdbODBCError] (-1) &#8220;ODBC error: (23000) &#8211; [Microsoft][SQL Native Client][SQL Server]Violation of PRIMARY KEY constraint &#8216;PK_VPX_GUEST_DISK&#8217;. Cannot insert duplicate key in object &#8216;dbo.VPX_GUEST_DISK&#8217;.&#8221; is returned when executing SQL statement &#8220;INSERT INTO VPX_GUEST_DISK (VM_ID, PATH, CAPACITY, FREE_SPACE) VALUES (?, ?, ?, ?)&#8221;</p></blockquote>
<p>The link to the VMware knowledgebase article is here: <a href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1020317" target="_blank">vCenter Server service fails with the error: Violation of PRIMARY KEY constraint &#8216;PK_VPX_GUEST_DISK&#8217;</a></p>
<p>The curious part? That issue is addressed specifically by <a href="http://www.vmware.com/support/vsphere4/doc/vsp_vc40_u1_rel_notes.html" target="_blank">vCenter Update 1, Build 208111</a> and we&#8217;re running 208111. In any case, shutting down the vCenter service (ok, it wouldn&#8217;t run anyway) and running the SQL script supplied in the <a href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1020317" target="_blank">KB article</a> did the trick and fixed that which should probably already have been fixed. Still super happy we&#8217;re not running on Oracle anymore, though&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2010/08/27/curious-sql-database-issue-with-vcenter-update-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Troubleshooting Platespin P2V migrations</title>
		<link>http://www.motogobi.com/2010/06/25/troubleshooting-platespin-p2v-migrations/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=troubleshooting-platespin-p2v-migrations</link>
		<comments>http://www.motogobi.com/2010/06/25/troubleshooting-platespin-p2v-migrations/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 22:15:14 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Platespin]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[virtualization]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=801</guid>
		<description><![CDATA[This post by Marcel van den Berg just saved my sanity today since I could not make heads or tails of what my beloved Platespin server was trying to tell me: Preparing &#60;servername&#62; (under PlateSpin control) For Synchronization No connection could be made because the target machine actively refused it 127.0.0.1:5036 Description: several one time synchronizations [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-802" title="platespin" src="http://www.motogobi.com/wp-content/uploads/2010/06/platespin.jpg" alt="" width="82" height="82" />This <a href="http://up2v.wordpress.com/2010/06/01/platespin-migrate-troubleshooting/" target="_blank">post by Marcel van den Berg</a> just saved my sanity today since I could not make heads or tails of what my beloved <a href="http://www.motogobi.com/tag/platespin/">Platespin</a> server was trying to tell me:</p>
<blockquote><p>Preparing &lt;servername&gt; (under PlateSpin control) For Synchronization</p>
<p><strong>No connection could be made because the target machine actively refused it 127.0.0.1:5036</strong></p>
<p><strong>Description:</strong></p>
<p>several one time synchronizations jobs fails at Step 3 “Take control of virtual machine”. Before this kind of job performed well.</p>
<p><strong>Solution:</strong></p>
<p>reboot the Platespin server and re-run the job. It will most likely run successfully.</p></blockquote>
<p>Platespin: the Cadillac of physical-to-virtual migrations (or Porsche, or WRX STi, what have you) but decidedly not the best-documented solution on the planet. You&#8217;ll find that the errors that are thrown link you to expired or nonexistent knowledge base articles&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2010/06/25/troubleshooting-platespin-p2v-migrations/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Fantastic post on disk alignment and VMs</title>
		<link>http://www.motogobi.com/2010/06/18/fantastic-post-on-disk-alignment-and-vms/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fantastic-post-on-disk-alignment-and-vms</link>
		<comments>http://www.motogobi.com/2010/06/18/fantastic-post-on-disk-alignment-and-vms/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 18:25:17 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Platespin]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=779</guid>
		<description><![CDATA[If you haven&#8217;t heard about disk alignment and you&#8217;re using virtual machines, you owe it to yourself and your most-likely-growing infrastructure to understand what alignment is all about. On a small scale it&#8217;s almost unnoticeable. But I can tell you that on a large scale it becomes a major pain for you or your storage [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.motogobi.com/wp-content/uploads/2010/06/alignment.jpg" rel="lightbox[779]"><img class="size-thumbnail wp-image-780 alignright" style="margin: 4px;" title="alignment" src="http://www.motogobi.com/wp-content/uploads/2010/06/alignment-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>If you haven&#8217;t heard about disk alignment and you&#8217;re using virtual machines, you owe it to yourself and your most-likely-growing infrastructure to understand what alignment is all about. On a small scale it&#8217;s almost unnoticeable. But I can tell you that on a large scale it becomes a major pain for you or your storage infrastructure team.</p>
<p>One quick tip: to check your disk offset on Windows systems, simply launch msinfo32.exe from the Run menu. See the thumbnail of this post for a screenshot.</p>
<p>From <a href="http://virtualgeek.typepad.com/virtual_geek/2010/06/so-why-all-the-fuss-about-alignment.html" target="_blank">VirtualGeek&#8217;s excellent post</a>:</p>
<blockquote><p>The purpose of alignment is to minimize extraneous internal array operations. All arrays have internal constructs that are generally a function of the RAID model (and also the filesystem alignment, and in some cases logical page table constructs in virtually provisioned models).</p>
<p>&lt;snip&gt;</p>
<p>All the funky goodness is done via either filesystem or another (pages commonly) abstraction on TOP of the RAID abstraction. Think of a 4K NTFS IO operation in a Guest making it&#8217;s way down to the array. Once it gets there, let&#8217;s say the array has a 64K stripe, but a 1MB &#8220;page&#8221; used for these fancy features. Falling into two 1MB logical memory pages as an example &#8211; where statistically it&#8217;s much more likely to land on a boundary if the volume is aligned on a 4K boundary.</p></blockquote>
<p>It&#8217;s very worth your time to delve into this article and find out how your environment is set up, like right now. You might find your templates are mis-aligned, or in our case, that VMware Converter does not properly align disks on conversion (wonder-app <a href="http://www.novell.com/products/migrate/" target="_blank">Platespin Migrate</a> does, in fact, give you properly-aligned disks).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2010/06/18/fantastic-post-on-disk-alignment-and-vms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

