<?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>Things Falling Off Aircraft (TFOA) &#187; VMware</title>
	<atom:link href="http://alittlestrange.com/tfoa/tag/vmware/feed/" rel="self" type="application/rss+xml" />
	<link>http://alittlestrange.com/tfoa</link>
	<description>- and other technical difficulties</description>
	<lastBuildDate>Fri, 11 Feb 2011 01:10:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Attaching Local Storage as a RDM</title>
		<link>http://alittlestrange.com/tfoa/2010/05/25/attaching-local-storage-as-a-rdm/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2010/05/25/attaching-local-storage-as-a-rdm/#comments</comments>
		<pubDate>Wed, 26 May 2010 03:29:31 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Featured2]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[virtual infrastructure]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/2010/05/25/attaching-local-storage-as-a-rdm/</guid>
		<description><![CDATA[google_ad_client = "pub-0267487074173409"; google_ad_width = 468; google_ad_height = 60; google_ad_format = "468x60_as"; google_ad_type = "image"; google_ad_channel = "7935081104"; google_color_border = "#000000"; google_color_bg = "#FFFFFF"; google_color_link = "#0000cc"; google_color_text = "#000000";...]]></description>
			<content:encoded><![CDATA[<div style=" text-align: center;  margin: 8px; ">
				<script type="text/javascript">
				google_ad_client = "pub-0267487074173409";
				google_ad_width = 468;
				google_ad_height = 60;
				google_ad_format = "468x60_as";
				google_ad_type = "image";
				google_ad_channel = "7935081104";
				google_color_border = "#000000";
				google_color_bg = "#FFFFFF";
				google_color_link = "#0000cc";
				google_color_text = "#000000";
				google_color_url = "#008000";
				google_ui_features = "rc:6";
				</script>
				<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
			</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2010%2F05%2F25%2Fattaching-local-storage-as-a-rdm%2F'  href="http://alittlestrange.com/tfoa/?3hk86HuH"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2010%2F05%2F25%2Fattaching-local-storage-as-a-rdm%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Let me start off by stating that this is NOT supported….. </p>
<p>I wanted to attach a local drive to a VM, but wanted the ability to move this drive to a physical Windows server at a later time without the time consuming data migration or drive reformatting. Although there is no way to do this through the VIC, there is a way to do this in the console.</p>
<p><span id="more-569"></span></p>
<p>First we need to find the disk we want to use as an RDM. This is accomplished by running the following:</p>
<p><strong>ls -al /vmfs/devices/disks/</strong></p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/05/image4.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://alittlestrange.com/tfoa/files/2010/05/image_thumb3.png" width="244" height="84" /></a> </p>
<p>In this example the disk I needed was <strong>vmhba0:1:0:0</strong>…..<strong>&#160;</strong>Take note of&#160; the string starting with <strong>vml.</strong></p>
<p>Now we need to create the placeholder vmdk we will attach to our vm. We do this with the following command:</p>
<p>vmkfstools -r /vmfs/devices/disks/vml.<strong>&lt;String we retrieved above&gt;</strong> /vmfs/volumes/<strong>&lt;Existing DataStore&gt;</strong>/<strong>&lt;VM Path&gt;</strong>/<strong>&lt;NAME&gt;</strong>.vmdk</p>
<p>Now the only thing we need to do is to add the existing disk to our VM. You will notice the summary shows the new disk as a “Mapped Raw LUN”</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/05/image1.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://alittlestrange.com/tfoa/files/2010/05/image_thumb1.png" width="244" height="183" /></a> </p>
</p>
<p>Fire up the VM and format the disk for whatever file system you require.</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/05/image2.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://alittlestrange.com/tfoa/files/2010/05/image_thumb2.png" width="244" height="172" /></a> </p>
<p>Enjoy</p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2010%2F05%2F25%2Fattaching-local-storage-as-a-rdm%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2010/05/25/attaching-local-storage-as-a-rdm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quickly deploy test environment in VMware Workstation</title>
		<link>http://alittlestrange.com/tfoa/2010/01/12/quickly-deploy-test-environment-in-vmware-workstation/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2010/01/12/quickly-deploy-test-environment-in-vmware-workstation/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 21:21:19 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Featured2]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[TestLab]]></category>
		<category><![CDATA[Workstation]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/2010/01/12/quickly-deploy-test-environment-in-vmware-workstation/</guid>
		<description><![CDATA[google_ad_client = "pub-0267487074173409"; google_ad_width = 468; google_ad_height = 60; google_ad_format = "468x60_as"; google_ad_type = "image"; google_ad_channel = "7935081104"; google_color_border = "#000000"; google_color_bg = "#FFFFFF"; google_color_link = "#0000cc"; google_color_text = "#000000";...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2010%2F01%2F12%2Fquickly-deploy-test-environment-in-vmware-workstation%2F'  href="http://alittlestrange.com/tfoa/?T__77s7w"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2010%2F01%2F12%2Fquickly-deploy-test-environment-in-vmware-workstation%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>     Whether I am looking to test out a new capability or solution, or simply grabbing screenshots for documentation, I almost always turn to VMware Workstation in order to quickly and easily deploy a test environment in order to get this done. In this post I will show you how to deploy a test environment in VMware workstation. It is assumed that you are familiar with OS deployments and this will not be covered in this article.</p>
<p><span id="more-519"></span></p>
<p><strong>Prepare Base OS VM</strong></p>
<p>Open VMware Workstation and create a new Virtual Machine</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/01/image.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2010/01/image_thumb.png" border="0" alt="image" width="244" height="91" /></a></p>
<p>I name the template with the OS type and “Template” as the suffix</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/01/image1.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2010/01/image_thumb1.png" border="0" alt="image" width="240" height="85" /></a></p>
<p>Install the OS and configure this VM with any necessary customizations or base software.</p>
<p>Shutdown VM and create a snapshot.</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/01/image2.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2010/01/image_thumb2.png" border="0" alt="image" width="236" height="240" /></a></p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/01/image3.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2010/01/image_thumb3.png" border="0" alt="image" width="244" height="90" /></a></p>
<p><strong>Deploy VMs required to stand up test Environment</strong></p>
<p>Create a Clone of the newly created and configured Base OS VM.</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/01/image4.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2010/01/image_thumb4.png" border="0" alt="image" width="165" height="244" /></a></p>
<p>When asked for “Clone Source” choose “An existing snapshot” and select the snapshot created in the previous section.</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/01/image5.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2010/01/image_thumb5.png" border="0" alt="image" width="244" height="211" /></a></p>
<p>For “Clone Type” choose “Linked Clone” this will allow you to deploy the new VM with limited disk space requirements.</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/01/image6.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2010/01/image_thumb6.png" border="0" alt="image" width="244" height="211" /></a></p>
<p>Name the new VM</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/01/image7.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2010/01/image_thumb7.png" border="0" alt="image" width="240" height="88" /></a></p>
<p>Click Finish and your new VM is created</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/01/image8.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2010/01/image_thumb8.png" border="0" alt="image" width="244" height="211" /></a></p>
<p>Repeat this process for all VMs needed for your test environment. This will quickly deploy your test lab, with a minimum amount of disk space required. I will cover the use of “Teams” in a later article, but these steps can be used there as well.</p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2010%2F01%2F12%2Fquickly-deploy-test-environment-in-vmware-workstation%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2010/01/12/quickly-deploy-test-environment-in-vmware-workstation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free VKernel Capacity Modeler Download</title>
		<link>http://alittlestrange.com/tfoa/2009/11/11/free-vkernel-capacity-modeler-download/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/11/11/free-vkernel-capacity-modeler-download/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 22:11:45 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/2009/11/11/free-vkernel-capacity-modeler-download/</guid>
		<description><![CDATA[     VKernel is offering perpetual license for their Capacity Modeler from now through the end of the year. I have not had time to take a look at the product,...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F11%2F11%2Ffree-vkernel-capacity-modeler-download%2F'  href="http://alittlestrange.com/tfoa/?t2qrAuUO"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F11%2F11%2Ffree-vkernel-capacity-modeler-download%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>     VKernel is offering perpetual license for their Capacity Modeler from now through the end of the year. I have not had time to take a look at the product, the price is definitely right to add to the bag of tools I carry around. I will write more on this once I’ve had time to take a look.</p>
<p><span id="more-498"></span></p>
<p>For more information visit <a title='Original Link: http://www.vkernel.com/products/VKernelModeler/'  href="http://alittlestrange.com/tfoa/?Hho6wrDL">VKernel</a></p>
<blockquote><p>Now through December 31, 2009, you can download VKernel Capacity Modeler absolutely free &#8212; these are perpetual licenses for use on unlimited sockets.</p>
<p>VKernel Capacity Modeler is a free alternative to the expensive VMware vCenter CapacityIQ software, which can cost you upwards of $1,000 per socket.</p>
<p>The free VKernel Capacity Modeler software provides VMware customers the ability to quickly plan, simulate, and validate hundreds of real–world “what if” VM deployment and resource allocation scenarios in an interactive sandbox before going live in the production environment.</p>
<p>With VKernel Capacity Modeler, user can perform:</p>
<ul>
<li><strong>Capacity Planning</strong></li>
<li><strong>Interactive “What If” Modeling Scenarios</strong></li>
<li><strong>Proactive Problem Prevention</strong></li>
<li><strong>Predictive Capacity Impact Analysis</strong></li>
</ul>
</blockquote>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F11%2F11%2Ffree-vkernel-capacity-modeler-download%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/11/11/free-vkernel-capacity-modeler-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Virtualization Paradigm and the transition to normalcy</title>
		<link>http://alittlestrange.com/tfoa/2009/11/02/the-virtualization-paradigm-and-the-transition-to-normalcy/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/11/02/the-virtualization-paradigm-and-the-transition-to-normalcy/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 01:04:23 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[virtual infrastructure]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/2009/11/02/the-virtualization-paradigm-and-the-transition-to-normalcy/</guid>
		<description><![CDATA[     I have been working in the application consultancy for quite some time and it is hard to remember the last architecture or implementation I have done that has not...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F11%2F02%2Fthe-virtualization-paradigm-and-the-transition-to-normalcy%2F'  href="http://alittlestrange.com/tfoa/?mtxGCuAC"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F11%2F02%2Fthe-virtualization-paradigm-and-the-transition-to-normalcy%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>     I have been working in the application consultancy for quite some time and it is hard to remember the last architecture or implementation I have done that has not included VMware. For many of my customers, this was the first time the virtualization concepts became a reality within their datacenter. Although they were aware of virtualization, they had some animosity and overall fear that this technology could actually perform “real” workloads.  Often times it took some hard convincing before they would actually accept the proposed architecture.</p>
<p><span id="more-432"></span></p>
<p>     Like most, once the implementation was complete and they could actually touch, feel and interact with this new architecture, they quickly gained confidence and were looking for other avenues to leverage their new found love for virtualization. The biggest problem my customers faced was still maintaining the belief in dedicated resources for specific applications. They would deploy silos of ESX servers to support a specific application needs (SharePoint, Exchange, etc…). While this appears to be a logical approach, it does not leverage the virtual infrastructure to it’s fullest. Yes, they are able to achieve server consolidation and a reduction of power, HVAC, and rack space, but they cannot fully appreciate the drive to maximum utilization of their computing resources.</p>
<p>     The hardest thing to communicate to customers new to virtualization is that they not only remove the OS from the hardware, they also remove the dedication of assets from applications. Most customers maintain separate shops for applications. These divisions not only own the applications, but the hardware they are running on as well. It is hard to convince an Exchange admin that they no longer have to worry about which physical “box” their application is running on.</p>
<p>     I often try to communicate this new ideal by leveraging what my customers currently know about their SAN. They have a centrally managed set of disk resources that are presented and consumed by an application. The application admin, although they know how much storage they can use, cannot point to a rack of disks and show you which physical drives they actually “own”. With virtualization, computing resources can be managed in much the same way.</p>
<p>     With virtualization, physical servers are grouped together in a cluster, much like the physical drives in a SAN. The resources of these servers can than be managed as a single entity and presented to applications based on their requirements. These clusters can be leveraged to drive maximum utilization of the physical resources, while maintaining application requirements regardless of which “box” they are running on. This allows the individual application owners to focus on their application and remove the physical requirements they previously had to manage.</p>
<p>     While the end goal is not always achieved quickly, most customers are evolving their virtual infrastructure and driving toward  this end. Once they see the benefits virtualization brings to the table, the long term vision starts to become reality. Removing the physical boundaries normally associated with application deployment, maintenance and disaster recovery allows my customers to not only see a reduction in operating costs, but they also achieve less downtime and easier management.</p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F11%2F02%2Fthe-virtualization-paradigm-and-the-transition-to-normalcy%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/11/02/the-virtualization-paradigm-and-the-transition-to-normalcy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DRS Deep Dive</title>
		<link>http://alittlestrange.com/tfoa/2009/10/29/drs-deep-dive/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/10/29/drs-deep-dive/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 17:07:52 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Featured2]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[DRS]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/2009/10/29/drs-deep-dive/</guid>
		<description><![CDATA[Duncan Epping over at Yellow Bricks has posted a great article explaining the inner-workings of VMware DRS. Like he states in his article, I have never had to trouble shoot...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F29%2Fdrs-deep-dive%2F'  href="http://alittlestrange.com/tfoa/?i18eqHfK"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F29%2Fdrs-deep-dive%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Duncan Epping over at <a title='Original Link: http://www.yellow-bricks.com/drs-deepdive/'  href="http://alittlestrange.com/tfoa/?RX_Yt7C5">Yellow Bricks</a> has posted a great article explaining the inner-workings of VMware DRS. Like he states in his article, I have never had to trouble shoot any DRS issues and have taken for granted that it just works. It is good to understand what is actually taking place under the hood.  Thanks Duncan!!</p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F29%2Fdrs-deep-dive%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/10/29/drs-deep-dive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware Document Downloader</title>
		<link>http://alittlestrange.com/tfoa/2009/10/06/vmware-document-downloader/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/10/06/vmware-document-downloader/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 21:12:41 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Featured2]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Admin Tools]]></category>
		<category><![CDATA[product documentation]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/?p=413</guid>
		<description><![CDATA[Paul Buckle over at xtravirt has created a very useful batch file for downloading all the VMware documentation. This makes a really handy offline reference library especially if you need the...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F06%2Fvmware-document-downloader%2F'  href="http://alittlestrange.com/tfoa/?OmvfHWHQ"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F06%2Fvmware-document-downloader%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Paul Buckle over at <a title='Original Link: http://xtravirt.com'  href="http://alittlestrange.com/tfoa/?Q33TkZ0Y">xtravirt</a> has created a very useful batch file for downloading all the VMware documentation. This makes a really handy offline reference library especially if you need the information at the speed of fast. You will need to register in order to download this, but it is worth the registration. Thanks Paul. You can find the download link <a title='Original Link: http://xtravirt.com/xd10109'  href="http://alittlestrange.com/tfoa/?MFZgzOc0">here</a></p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F06%2Fvmware-document-downloader%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/10/06/vmware-document-downloader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Greatest VMware Video!!</title>
		<link>http://alittlestrange.com/tfoa/2009/10/05/greatest-vmware-video/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/10/05/greatest-vmware-video/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 03:13:35 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Featured2]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[business continuity]]></category>
		<category><![CDATA[datacenter management]]></category>
		<category><![CDATA[virtual infrastructure]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/?p=407</guid>
		<description><![CDATA[I can watch this video over and over (I know.. I&#8217;m sick).. Who could of imagined that someone could create a music video about VMware virtualization. I guess they had...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F05%2Fgreatest-vmware-video%2F'  href="http://alittlestrange.com/tfoa/?NFV3b0DB"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F05%2Fgreatest-vmware-video%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I can watch this video over and over (I know.. I&#8217;m sick).. Who could of imagined that someone could create a music video about VMware virtualization. I guess they had to many late nights and redbull. My hat is off and Kudos to the creators.</p>
<p><span id="more-407"></span></p>
<p><a href="http://alittlestrange.com/tfoa/files/2009/10/vHardwareHotel.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img class="alignnone size-medium wp-image-410" title="vHardwareHotel" src="http://alittlestrange.com/tfoa/files/2009/10/vHardwareHotel-300x160.png" alt="" width="300" height="160" /></a></p>
<p><a class="fancybox" href="#testube#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><strong>Virtual Hardware Hotel!!!</strong></a></p>
<div id="testube" style="display: none;">
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/R7JBYJHQmJc&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/R7JBYJHQmJc&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
</div>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F05%2Fgreatest-vmware-video%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/10/05/greatest-vmware-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When good NICs go bad!!</title>
		<link>http://alittlestrange.com/tfoa/2009/10/05/when-good-nics-go-bad/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/10/05/when-good-nics-go-bad/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 15:25:55 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[VI3]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/2009/10/05/when-good-nics-go-bad/</guid>
		<description><![CDATA[     My team was deploying a new SharePoint portal for a customer and were seeing some strange behavior from some of our VMs. Our environment consisted of 3 BL685 servers...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F05%2Fwhen-good-nics-go-bad%2F'  href="http://alittlestrange.com/tfoa/?jEqWYgMC"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F05%2Fwhen-good-nics-go-bad%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>     My team was deploying a new SharePoint portal for a customer and were seeing some strange behavior from some of our VMs. Our environment consisted of 3 BL685 servers running ESX and 9 VMs ( I know this is overkill, but our customer was very wary of the portal performance in a virtual environment, and our hope was to introduce a platform that could lead them into further virtualization and server consolidation). We were receiving some rather “interesting” errors while adding domain users to the local administrator group of some of the machines. While doing a “check name”, AD would return the account name along with some non-printable characters ( blocks, smiley face, etc…). We were also having issues copying files to the VM through UNC. Some would copy, others would not stating “source no longer available”. We were not seeing this behavior across all the VMs, which was disturbing as they were all deployed from the same template. We did manage to narrow it down to guests running on just one of the hosts.</p>
<p><span id="more-394"></span></p>
<p>     My initial thought was the possibility of bad memory installed on this host. After running some memory tests and the eventual replacement, our errors continued. We then replaced the host with another blade and swapped the hard drives so we wouldn’t need to reinstall ESX. After powering up the host and migrating a couple of VMs back, we were astonished that the issue still remained. It was then that we reinstalled ESX as we thought that was the only thing left.</p>
<p>   After reinstalling ESX, it was then that we found some additional problems. We added the host to the cluster and were attempting to configure HA. This would fail at random intervals with often different errors including, path not found, SSL errors, and others. It was at this point my attention turned to the network. This server was configured with 2 NICs with all network trunked and vlan tagged. I disabled one of the NICs and all traffic continued to work. I switched over to the remaining NIC and everything came to a halt. Finally, it looked like we were narrowing down the cause. When the blade was swapped out, the NICs were moved from the original. We swapped out the NIC and everything worked as advertised.</p>
<p>Although the initial errors did not point to the network, after all other troubleshooting did not result in success the NICs were the only thing left.</p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F05%2Fwhen-good-nics-go-bad%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/10/05/when-good-nics-go-bad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove unwanted/old connections from vSphere Client</title>
		<link>http://alittlestrange.com/tfoa/2009/09/16/remove-unwantedold-connections-from-vsphere-client/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/09/16/remove-unwantedold-connections-from-vsphere-client/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 15:14:36 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[VI3]]></category>
		<category><![CDATA[VI4]]></category>
		<category><![CDATA[virtualcenter]]></category>
		<category><![CDATA[vSphere Client]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/2009/09/16/remove-unwantedold-connections-from-vsphere-client/</guid>
		<description><![CDATA[If you&#8217;re like me, you connect to many different environments at customer sites and your vSphere Client drop-down get’s fairly extensive and cluttered with the old connections you will no longer...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F16%2Fremove-unwantedold-connections-from-vsphere-client%2F'  href="http://alittlestrange.com/tfoa/?ULUF942F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F16%2Fremove-unwantedold-connections-from-vsphere-client%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>If you&#8217;re like me, you connect to many different environments at customer sites and your vSphere Client drop-down get’s fairly extensive and cluttered with the old connections you will no longer use.</p>
<p><span id="more-388"></span></p>
<p><a href="http://alittlestrange.com/tfoa/files/2009/09/image19.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://alittlestrange.com/tfoa/files/2009/09/image_thumb17.png" border="0" alt="image" width="244" height="216" /></a></p>
<p>If you want to get rid of them, break out your trusty registry editor and go to work.</p>
<p>Navigate to <strong>HKCU\Software\VMware\VMware Infrastructure Client\Preferences</strong></p>
<p><a href="http://alittlestrange.com/tfoa/files/2009/09/image17.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://alittlestrange.com/tfoa/files/2009/09/image_thumb15.png" border="0" alt="image" width="244" height="110" /></a></p>
<p>Edit the RecentConnections string and remove any unneeded addresses.</p>
<p><a href="http://alittlestrange.com/tfoa/files/2009/09/image18.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://alittlestrange.com/tfoa/files/2009/09/image_thumb16.png" border="0" alt="image" width="244" height="105" /></a></p>
<p>Now fire up the vSphere client and you should only see the current connections.</p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F16%2Fremove-unwantedold-connections-from-vsphere-client%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/09/16/remove-unwantedold-connections-from-vsphere-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Missing VMDK?</title>
		<link>http://alittlestrange.com/tfoa/2009/09/14/missing-vmdk/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/09/14/missing-vmdk/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 18:33:32 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[VI3]]></category>
		<category><![CDATA[VI4]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/2009/09/14/missing-vmdk/</guid>
		<description><![CDATA[      Some how in my late night troubleshooting, I managed to delete the virtual disk (vmdk) file associated with one of my VMs. I was greeted with a very unpleasant...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F14%2Fmissing-vmdk%2F'  href="http://alittlestrange.com/tfoa/?fTbRJ52r"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F14%2Fmissing-vmdk%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>      Some how in my late night troubleshooting, I managed to delete the virtual disk (vmdk) file associated with one of my VMs. I was greeted with a very unpleasant error message attempting to power on my VM. Of course I had to try and power it on a couple of times (maybe it would fix itself…)<br />
<a href="http://alittlestrange.com/tfoa/files/2009/09/image6.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://alittlestrange.com/tfoa/files/2009/09/image_thumb6.png" border="0" alt="image" width="565" height="67" /></a></p>
<p><span id="more-335"></span></p>
<p>Looking at the storage, I still had the *-flat.vmdk file, which is the actual disk, but I did not have the configuration file. I decided to manually recreate the file and see if I could save my VM from eminent destruction. You can see the contents of the file below:</p>
<table border="1">
<tbody>
<tr>
<td>
<pre># Disk DescriptorFile
version=1
CID=24a5eeb6
parentCID=ffffffff
createType="vmfs"

# Extent description
RW 41943040 VMFS "Wordpress-flat.vmdk"

# The Disk Data Base
#DDB

ddb.virtualHWVersion = "4"
ddb.toolsVersion = "7299"
ddb.uuid = "60 00 C2 92 45 db 09 47-c5 9d a9 22 a6 cd 24 e9"
ddb.geometry.cylinders = "2610"
ddb.geometry.heads = "255"
ddb.geometry.sectors = "63"
ddb.adapterType = "lsilogic"</pre>
</td>
</tr>
</tbody>
</table>
<p>I created a new file called wordpress.vmdk, ensuring it was pointing to the correct -flat.vmdk file. I was then able to edit my virtual machine and assign the new disk and power up the VM.</p>
<p><a href="http://alittlestrange.com/tfoa/files/2009/09/image7.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://alittlestrange.com/tfoa/files/2009/09/image_thumb7.png" border="0" alt="image" width="244" height="173" /></a></p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F14%2Fmissing-vmdk%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/09/14/missing-vmdk/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

