<?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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Professional VMware &#187; VM</title>
	<atom:link href="http://professionalvmware.com/category/vm/feed/" rel="self" type="application/rss+xml" />
	<link>http://professionalvmware.com</link>
	<description>How Many Turtles Can You Fit On A Rock?</description>
	<lastBuildDate>Mon, 19 Jul 2010 20:47:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.5.3" -->
	<copyright>Copyright &#xA9; 2010 Professional VMware http://creativecommons.org/licenses/by-nc-sa/2.5/</copyright>
	<managingEditor>podcast@professionalvmware.com (Cody Bunch)</managingEditor>
	<webMaster>podcast@professionalvmware.com (Cody Bunch)</webMaster>
	<category>podcast</category>
	<ttl>1440</ttl>
	<image>
		<url>http://professionalvmware.com/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
		<title>Professional VMware &#187; VM</title>
		<link>http://professionalvmware.com</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle>ProfessionalVMware BrownBag Series</itunes:subtitle>
	<itunes:summary>ProfessionalVMware BrownBag Series</itunes:summary>
	<itunes:keywords></itunes:keywords>
	<itunes:category text="Technology" />
	<itunes:category text="Technology">
		<itunes:category text="Podcasting" />
	</itunes:category>
	<itunes:category text="Technology">
		<itunes:category text="Software How-To" />
	</itunes:category>
	<itunes:author>Cody Bunch</itunes:author>
	<itunes:owner>
		<itunes:name>Cody Bunch</itunes:name>
		<itunes:email>podcast@professionalvmware.com</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://professionalvmware.com/wp-content/plugins/podpress/images/ProVmwarePodcast.jpg" />
		<item>
		<title>Useful Windows Commands for VM Administrators</title>
		<link>http://professionalvmware.com/2010/06/useful-windows-commands-for-vm-administrators/</link>
		<comments>http://professionalvmware.com/2010/06/useful-windows-commands-for-vm-administrators/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 17:21:00 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[VM]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[management]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2010/06/useful-windows-commands-for-vm-administrators/</guid>
		<description><![CDATA[Over the course of my travels, I’ve found that having a quick reference to random Windows commands is helpful. Here are two sets of commands I use often enough to be useful, but not often enough that I’ve committed them to memory:
Managing IP Addresses from the CLI
Netsh! &#8211; This one predates PowerShell on Windows boxes, [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Over the course of my travels, I’ve found that having a quick reference to random Windows commands is helpful. Here are two sets of commands I use often enough to be useful, but not often enough that I’ve committed them to memory:</p>
<h3>Managing IP Addresses from the CLI</h3>
<p>Netsh! &#8211; This one predates PowerShell on Windows boxes, and went a long way to helping the everyday lives of Windows Admins.</p>
<h4>Backup IP Address Config</h4>
<p>netsh -c interface dump &gt; c:\ip_address.txt</p>
<h4>Restore IP Address Config</h4>
<p>netsh -f c:\ip_address.txt</p>
<h4>Set Interface to DHCP</h4>
<p>netsh interface ip set address &quot;Local Area Connection&quot; dhcp   <br />netsh interface ip set address &quot;Local Area Connection&quot; dhcp</p>
<h4>Set Static IP Address</h4>
<p>netsh interface ip set address name=&quot;Local Area Connection&quot; static 192.168.0.100 255.255.255.0 192.168.0.1 1   <br />netsh interface ip set dns &quot;Local Area Connection&quot; dhcp</p>
<h4>Reset the TCP/IP Stack</h4>
<p>netsh int ip reset all</p>
<h3>Finding the Uptime of a Windows Box</h3>
<p>Because you can not always plan on the presence of uptime.exe on a box, the following will get the info for you:</p>
<h4>SystemInfo</h4>
<p>systeminfo | more</p>
<h4>Statistics</h4>
<p>net statistics workstation</p>
<h3>Sources:</h3>
<ul>
<li><a title="http://www.petri.co.il/configure_tcp_ip_from_cmd.htm" href="http://www.petri.co.il/configure_tcp_ip_from_cmd.htm">http://www.petri.co.il/configure_tcp_ip_from_cmd.htm</a></li>
<li><a title="http://burrowowl.net/wordpress/200606/netsh_int_ip_reset_all/" href="http://burrowowl.net/wordpress/200606/netsh_int_ip_reset_all/">http://burrowowl.net/wordpress/200606/netsh_int_ip_reset_all/</a></li>
<li><a title="http://www.windowsreference.com/general/how-to-find-the-system-uptime-in-windows-vistaserver-2008xp2003/" href="http://www.windowsreference.com/general/how-to-find-the-system-uptime-in-windows-vistaserver-2008xp2003/">http://www.windowsreference.com/general/how-to-find-the-system-uptime-in-windows-vistaserver-2008xp2003/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2010/06/useful-windows-commands-for-vm-administrators/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PowerCLI &#8211; Nexus1000v and VMXNET3</title>
		<link>http://professionalvmware.com/2010/02/powercli-nexus1000v-and-vmxnet3/</link>
		<comments>http://professionalvmware.com/2010/02/powercli-nexus1000v-and-vmxnet3/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 15:57:00 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[PowerCLI]]></category>
		<category><![CDATA[VM]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2010/02/powercli-nexus1000v-and-vmxnet3/</guid>
		<description><![CDATA[Today’s post is brought to us by Chris, a member of the VMware community who wields some powerful Louisianan VooDoo magic (and PowerCLI). Chris uses this to show us how to take a csv file in, and use it to attach a VM to a dVS switch as well as adding the VMXNET3 nic to [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Today’s post is brought to us by Chris, a member of the VMware community who wields some powerful Louisianan VooDoo magic (and PowerCLI). Chris uses this to show us how to take a csv file in, and use it to attach a VM to a dVS switch as well as adding the VMXNET3 nic to the VM. Getting right on with it:</p>
<h4>Story:</h4>
<p>Had to bulk create a bunch of VMs. The new server standard has each production server on 2 networks, the normal production network, and an auxiliary network (for backups, updates, management, etc). The issue I ran into was that our switches were created in vSphere as virtual distributed switches (using the Cisco Nexus 1000v). The standard new-vm script wouldn’t allow you to connect the network adapter to that switch, unfortunately. Also, we preferred to use VMXNET3 NICs as opposed to the default e1000, another thing that new-vm doesn’t allow. So I wrote the following script in PowerCLI that does the following:</p>
<ul>
<li>Reads in a CSV file (fields: Name,Description,OS,Disk,Memory) </li>
<li>Connects to the vSphere server (you specify the server and cluster to add VMs to). </li>
<li>Creates a VM in the specified folder on the ESX host with the least memory utilization and the datastore with the most free space and having at least 30gb free space </li>
<li>Removes the default e1000 NIC </li>
<li>Adds 2 VMXNET3 NICs on temporary networks (cannot add directly to vDS) </li>
<li>Connects the 2 VMXNET3 NICs to the vDS </li>
<li>Powers on VM</li>
</ul>
<p>Tried to generalize code as much as possible, works here, but this was a new rollout so there may be differences in how other people have it.</p>
<h4>Script:</h4>
<p> <script type="text/javascript" src="http://PoshCode.org/embed/1647"></script>
<p>Ending</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2010/02/powercli-nexus1000v-and-vmxnet3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Blogs You Should be Reading</title>
		<link>http://professionalvmware.com/2010/01/new-blogs-you-should-be-reading/</link>
		<comments>http://professionalvmware.com/2010/01/new-blogs-you-should-be-reading/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 15:26:49 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[VM]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2010/01/new-blogs-you-should-be-reading/</guid>
		<description><![CDATA[Perhaps they’re not new, exactly. They are new to me, however. They’re also good enough that you should be reading them as well! With that said, onto the blogs!

 VMDEV.info &#8211; http://www.vmdev.info/       This is put together by Keshav Attrey, a software dev with VMware. The blog concentrates on the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Perhaps they’re not new, exactly. They are new to me, however. They’re also good enough that you should be reading them as well! With that said, onto the blogs!</p>
<ul>
<li> VMDEV.info &#8211; <a title="http://www.vmdev.info/" href="http://www.vmdev.info/">http://www.vmdev.info/</a>       <br />This is put together by Keshav Attrey, a software dev with VMware. The blog concentrates on the vSphere APIs and automation around virtual desktops. My kinda blog!       </li>
<li> B3rg.nl &#8211; <a title="http://www.b3rg.nl/index.php" href="http://www.b3rg.nl/index.php">http://www.b3rg.nl/index.php</a>       <br />This was a more than awesome find that came up during the last VCP4 Brown Bag. Not sure how I missed it in fact. Matthijs van den Berg covers esxtop, VCP prep, VCDX Prep and more. Good stuff.       </li>
<li> Double Cloud &#8211; <a title="http://www.doublecloud.org/" href="http://www.doublecloud.org/">http://www.doublecloud.org/</a>       <br />This is put together by Steve Jin. The author of the vSphere Java SDK, and the book: VMware VI and vSphere SDK: <a title="http://bit.ly/5I10nn" href="http://bit.ly/5I10nn">http://bit.ly/5I10nn</a> (Affiliate Link). Basically, if you are going to do vSphere API work, this is the place to start. </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2010/01/new-blogs-you-should-be-reading/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>VMware Tools &#8211;default!</title>
		<link>http://professionalvmware.com/2010/01/vmware-tools-default/</link>
		<comments>http://professionalvmware.com/2010/01/vmware-tools-default/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 15:34:39 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[VM]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2010/01/vmware-tools-default/</guid>
		<description><![CDATA[When was the last time you found yourself configuring VMware tools on Linux? Did having to incessantly press enter accepting the defaults drive you nuts too? I think I might be the last one to the game on this, but today I was stumbling through configuring VMware tools on a few Linux VMs. Stumbling, over [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>When was the last time you found yourself configuring VMware tools on Linux? Did having to incessantly press enter accepting the defaults drive you nuts too? I think I might be the last one to the game on this, but today I was stumbling through configuring VMware tools on a few Linux VMs. Stumbling, over a terminal services session, over VPN, over some rural interwebs carrier. </p>
<p>A less than ideal sort of situation. The solution… other than get better internets, was to execute both “~/vmware-tools-distrib/vmware-install.pl” and “/usr/bin/vmware-config-tools.pl” with the “&#8211;default” (two dashes, then default) option. Like this:</p>
<p><a href="http://professionalvmware.com/wp-content/uploads/2010/01/Ubuntu201001200929231.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Ubuntu-20100120-092923[1]" border="0" alt="Ubuntu-20100120-092923[1]" src="http://professionalvmware.com/wp-content/uploads/2010/01/Ubuntu201001200929231_thumb.jpg" width="535" height="108" /></a> </p>
<p>What this does, is instead of making you hit enter for each of the options (because, ya know… you change them all that often), and accepts the defaults, making the entire install that much easier.</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2010/01/vmware-tools-default/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The Most Awesome PowerCLI Cmdlet You Aren&#8217;t Using</title>
		<link>http://professionalvmware.com/2009/11/the-most-awesome-powercli-cmdlet-you-arent-using/</link>
		<comments>http://professionalvmware.com/2009/11/the-most-awesome-powercli-cmdlet-you-arent-using/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 15:03:00 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[VM]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[PowerCLI]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2009/11/the-most-awesome-powercli-cmdlet-you-arent-using/</guid>
		<description><![CDATA[While all of PowerCLI is remarkable in both it’s power and ease of use, there are some cmdlets that do not get as much airtime as they deserve. One of those, is Invoke-VMScript. From Get-Help InvokeVMScript
NAME     &#160;&#160;&#160; Invoke-VMScript 
SYNOPSIS     &#160;&#160;&#160; Executes the specified PowerShell script in the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>While all of PowerCLI is remarkable in both it’s power and ease of use, there are some cmdlets that do not get as much airtime as they deserve. One of those, is Invoke-VMScript. From Get-Help InvokeVMScript</p>
<blockquote><p>NAME     <br />&#160;&#160;&#160; Invoke-VMScript </p>
<p>SYNOPSIS     <br />&#160;&#160;&#160; Executes the specified PowerShell script in the guest OS of each of the specified virtual machines. </p>
<p>SYNTAX     <br />&#160;&#160;&#160; Invoke-VMScript [-ScriptText] &lt;String&gt; [-VM] &lt;VirtualMachine[]&gt; [-HostCredential &lt;PSCredential&gt;] [-HostUser &lt;String&gt;] [-HostPassword &lt;SecureString&gt;] [-GuestCredential &lt;PSCredential&gt;] [-GuestUser &lt;String&gt;] [-GuestPassword &lt;SecureString&gt;] [-ToolsWaitSecs &lt;Int32&gt;] [-Server &lt;VIServer[]&gt;] [-WhatIf] [-Confirm] [&lt;CommonParameters&gt;] </p>
<p>DETAILED DESCRIPTION     <br />&#160;&#160;&#160; Executes the specified PowerShell script in the guest OS of each of the specified virtual machines. The virtual machines must be powered on and have PowerShell and VM Tools installed. In order to authenticate with the host or the guest OS, one of the HostUser/HostPassword (GuestUser/GuestPassword) pair and HostCredential (GuestCredential) parameters must be provided. </p>
</blockquote>
<p>Take a close look at the synopsis line, in fact, read it again. I’ll wait. Done? Good. Invoke-VMScript executes a specified PowerShell script INSIDE the guest OS. Starting to feel the power? No? Fine, how bout a use case? It’s yearly inventory time. You know… that time. Your boss wants a list of all VM Names, build numbers, serials, versions, and some other random things. Now, one of two things happens, either you procrastinate and then need to extend your deadline so you can log into every box, OR you use the following one-liner:</p>
<p><font color="#ff8040" face="Courier New">get-vm | select -first 1 | %{ $_.Name; $_ | Invoke-VMScript -GuestUser &quot;adminUser&quot; -GuestPassword &quot;urPass&quot; -ScriptText &quot;get-wmiobjectwin32_operatingsystem&quot; -HostUser &quot;root&quot; -hostpassword &quot;rootPass&quot; } </font></p>
<p>That one liner (yes it is all one line) works kinda like this: Get a list of all my VMs, select the first one, then give me the name, and the output of get-wmiobjectwin32_operatingsystem. In turn, it produces the following output:</p>
<p>web.professionalvmware.com </p>
<p>SystemDirectory : C:\WINDOWS\system32   <br />Organization&#160;&#160;&#160; : ProfessionalVMware    <br />BuildNumber&#160;&#160;&#160;&#160; : 3790    <br />RegisteredUser&#160; : ProfessionalVMware    <br />SerialNumber&#160;&#160;&#160; : Your Serial Number here    <br />Version&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; : 5.2.3790</p>
<p> Not convinced of Invoke-VMScript’s World Dominatingly Awesome Power? Well, let me know in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2009/11/the-most-awesome-powercli-cmdlet-you-arent-using/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>I&#8217;m Having An Affair &#8211; With VMware Player 3.0</title>
		<link>http://professionalvmware.com/2009/11/im-having-an-affair-with-vmware-player-3-0/</link>
		<comments>http://professionalvmware.com/2009/11/im-having-an-affair-with-vmware-player-3-0/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 03:32:00 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[VM]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[vmware player]]></category>
		<category><![CDATA[vmware player 3.0]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2009/11/im-having-an-affair-with-vmware-player-3-0/</guid>
		<description><![CDATA[ If that title won’t have my mother calling me… Well, at least it someone’s attention. Prior to VMware Player 3.0 I never gave it much time of day. Sure it worked, and sure there was a way to work around the create VM limitation and the like, but it just wasn’t… well, you got [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://professionalvmware.com/wp-content/uploads/2009/11/94357119_a311b1f708_m1.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="94357119_a311b1f708_m[1]" border="0" alt="94357119_a311b1f708_m[1]" align="left" src="http://professionalvmware.com/wp-content/uploads/2009/11/94357119_a311b1f708_m1_thumb.jpg" width="244" height="184" /></a> If that title won’t have my mother calling me… Well, at least it someone’s attention. Prior to VMware Player 3.0 I never gave it much time of day. Sure it worked, and sure there was a way to work around the create VM limitation and the like, but it just wasn’t… well, you got what you paid for. Besides, I had a VMware Workstation license from my VCP test, and did not have to worry like some folks. Now… that has all changed.</p>
<p>It has been a little bit since my last <a href="http://professionalvmware.com/2009/11/using-vms-as-personal-dr/">“Incident”</a> with my laptop, and at the rate that I’m going, for my daily needs, VMware Player is quite good. Like your Dad’s (or depending on that generation your) Datsun pickup truck. It works. It works well, and consistently. It may be rough around the edges in some areas, but all and all it is a solid package, and likely deserves a second look. Heck, it will even run, and has an <a href="http://www.vimeo.com/7362532">easy installer for ESX!</a></p>
<p>Have you tried Player 3.0? Liked it? Disliked it? Discuss in the comments.</p>
<p><em>Note: I am not actually having a marital affair… nor do I know who the folks in the picture are, the photo is courtesy of: </em><a href="http://www.flickr.com/photos/patrick_q/"><em>Patrick Q</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2009/11/im-having-an-affair-with-vmware-player-3-0/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Using VMs as Personal DR</title>
		<link>http://professionalvmware.com/2009/11/using-vms-as-personal-dr/</link>
		<comments>http://professionalvmware.com/2009/11/using-vms-as-personal-dr/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 18:04:44 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[VM]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Workstation]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2009/11/using-vms-as-personal-dr/</guid>
		<description><![CDATA[Note: This is a brief story where I was forced to sit back and reflect on just how cool this Virtualization stuff really is. Please feel free to disregard however.

 Normally I don’t write about the VMware Workstation or hosted products. It just doesn’t happen to be where I spend most of my day. Mind, [...]]]></description>
			<content:encoded><![CDATA[<p></p><blockquote><p><em>Note: This is a brief story where I was forced to sit back and reflect on just how cool this Virtualization stuff really is. Please feel free to disregard however.</em></p>
</blockquote>
<p><a href="http://professionalvmware.com/wp-content/uploads/2009/11/sadf_b10objects_circuits026.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="sadf_b10objects_circuits026" border="0" alt="sadf_b10objects_circuits026" align="left" src="http://professionalvmware.com/wp-content/uploads/2009/11/sadf_b10objects_circuits026_thumb.jpg" width="244" height="184" /></a> Normally I don’t write about the VMware Workstation or hosted products. It just doesn’t happen to be where I spend most of my day. Mind, I use VMware Workstation and VMware Player, but they often “Just Work”. In fact they work well enough that I’ve trusted them to running most of my day to day applications for some time, without much thought.</p>
<p>This weekend presented me an opportunity to reflect on just how awesome desktop virtualization is. I powered my laptop on this Sunday, only to find a bunch of random disk read errors, and other nasty drama on my secondary or “caddy” disk (a secondary disk that sits in a drive caddy where the CD-ROM usually goes). </p>
<p>I pulled the drive out, swapped it into another laptop chassis to do some diagnostics. Well…good news was, the drive was healthy, and the sata controller ate it. Before virtualizaiton, this would have meant spinning up a new laptop, copying files and fiddling settings for hours on end. What it means now however, is I pull down Player 3.0, point it at my disk, and go. Forgetting the fact that the old host was Linux, and the new one Windows. Cool!</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2009/11/using-vms-as-personal-dr/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Migrate Storage &#8211; &#8220;Failed to Connect to Host&#8221;</title>
		<link>http://professionalvmware.com/2009/10/migrate-storage-failed-to-connect-to-host/</link>
		<comments>http://professionalvmware.com/2009/10/migrate-storage-failed-to-connect-to-host/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 13:09:00 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[ESX]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[VM]]></category>
		<category><![CDATA[vSphere]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2009/10/migrate-storage-failed-to-connect-to-host/</guid>
		<description><![CDATA[This one came at me from left field recently. The task at hand was to cold migrate one of a Virtual Machine’s disks from it’s old LUN, to a new one with some more breathing room. Simple enough, no? We’ve all done it a million times. What happened however, was that I received a “Error: [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>This one came at me from left field recently. The task at hand was to cold migrate one of a Virtual Machine’s disks from it’s old LUN, to a new one with some more breathing room. Simple enough, no? We’ve all done it a million times. What happened however, was that I received a “Error: Failed to Connect to Host” message.</p>
<p>To triage this, I first logged into the host, and verified that networking was sane:</p>
<p>cat /etc/sysconfig/network</p>
<p>cat /etc/hosts</p>
<p>ping gateway, ping service console gateway, etc.</p>
<p>After verifying this was all good, I tried to reconfigure the host for VMware HA (to update the FT_HOSTS file, etc). No good, so I turned to Google (who wouldn’t) and came across this post written by <a href="http://www.yellow-bricks.com/2008/01/24/clone-and-roll-out-template-fail-with-failed-to-connect-to-host/">Duncan Epping @ Yellow-Bricks</a>. While I didn’t use the solution as posted on the site, some of the comments led me in the right direction, bringing me to:</p>
<ol>
<li>Put the host into maintenance mode </li>
<li>Disconnect the host (Right click, disconnect) </li>
<li>Remove the host from vCenter (Right click, Remove) </li>
<li>Move /etc/opt/vmware/vpxa/vpxa.cfg to vpxa.old </li>
<li>Connect the host to vCenter </li>
<li>Add to Cluster </li>
<li>Exit Maintenance mode </li>
</ol>
<p>Hope this helps. Let me know in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2009/10/migrate-storage-failed-to-connect-to-host/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OnlineFlashCards VCP310 &#8211; Review Posted</title>
		<link>http://professionalvmware.com/2009/08/onlineflashcards-vcp310-review-posted/</link>
		<comments>http://professionalvmware.com/2009/08/onlineflashcards-vcp310-review-posted/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 00:23:02 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[VCP]]></category>
		<category><![CDATA[VM]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2009/08/17/onlineflashcards-vcp310-review-posted/</guid>
		<description><![CDATA[
Amazon just posted my 3 star review of OnlineFlashCards for the VCP310. You can read the entire thing here. I’ve quoted some bits of it here:
When I received the product, it came in a shrink wrapped box. Odd I thought, considering this is an online product, what is the box for? I shook it up [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.amazon.com/gp/product/0789742144/ref=cm_rdp_product/189-5145718-2601654"><img style="display: inline; margin-left: 0px; margin-right: 0px" align="left" src="http://ecx.images-amazon.com/images/I/41-UkwRTWpL._SS500_.jpg" width="120" height="120" /></a></p>
<p>Amazon just posted my 3 star review of <a href="http://www.amazon.com/gp/product/0789742144/ref=cm_rdp_product/189-5145718-2601654">OnlineFlashCards for the VCP310</a>. You can read the entire thing <a href="http://www.amazon.com/review/R27K94Z6PDO5YO/ref=cm_cr_rdp_perm">here</a>. I’ve quoted some bits of it here:</p>
<blockquote><p>When I received the product, it came in a shrink wrapped box. Odd I thought, considering this is an online product, what is the box for? I shook it up and down. I shook it side to side. I even shook it at a diagonal. All of this trying to see what the box was about. After removing the shrink wrap, and opening the box, I discovered what all of the fuss was about. Packaged within the box was a little bit of magic! It was the key to opening up the flashcards online!</p>
</blockquote>
<p>Some explanation about the 3 stars: There were some ‘not right’ answers included in the bundle. While not in and of itself a problem, this may throw new users off the mark some. However, when taken within the context of using the cards to supplement the VMware class and other reading material, the cards will make a good aid for quizzing yourself. My only other complaint is that I was expecting more “Meat”, however, I believe this is because I already hold a VCP certification. All and all I can see where this would be useful in the training arsenal of a budding VCP310.</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2009/08/onlineflashcards-vcp310-review-posted/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>More MAC Address Mayhem &#8211; SLES Edition</title>
		<link>http://professionalvmware.com/2009/07/more-mac-address-mayhem-sles-edition/</link>
		<comments>http://professionalvmware.com/2009/07/more-mac-address-mayhem-sles-edition/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 15:38:38 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[VM]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[sles]]></category>
		<category><![CDATA[suse]]></category>
		<category><![CDATA[uuid]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2009/07/06/more-mac-address-mayhem-sles-edition/</guid>
		<description><![CDATA[Remember this? No? Well, go back and read it. I can wait. … Done? Good.
The gist of the last post, was that if you cloned, or copied a Ubuntu VM from one host to another, the UUID changes. That UUID is the basis for part of the generated MAC address, which then changes, causing me [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Remember <a href="http://professionalvmware.com/2009/03/10/ubuntu-cloning-mac-address-change-mayhem/">this</a>? No? Well, go back and read it. I can wait. … Done? Good.</p>
<p>The gist of the last post, was that if you cloned, or copied a Ubuntu VM from one host to another, the UUID changes. That UUID is the basis for part of the generated MAC address, which then changes, causing me a headache. Today I found that SLES (Suse Linux Enterprise Server) is guilty of the same binding, only much to my chagrin it stores the rules file with another name: /etc/udev/rules.d/30-net_persistent_names.rules</p>
<p>The procedure to fix it is the same as listed before: </p>
<p><font face="Courier New" color="#ff8040"># This file was automatically generated by the /lib/udev/write_net_rules      <br /># program run by the persistent-net-generator.rules rules file.       <br />#       <br /># You can modify it, as long as you keep each rule on a single line. </font></p>
<p><font face="Courier New" color="#ff8040"># PCI device 0×1022:0×2000 (pcnet32)      <br />SUBSYSTEM==&quot;net&quot;, ACTION==&quot;add&quot;, DRIVERS==&quot;?*&quot;, ATTR{address}==&quot;00:0c:29:02:51:cf&quot;, ATTR{type}==&quot;1&quot;, KERNEL==&quot;eth*&quot;, NAME=&quot;eth0&quot;</font></p>
<p>An ugly beast of a file but that last line is the one that needs deleting. Another method of doing this, is to edit the ‘persistent-net-generator.rules’ file to include something similar to:</p>
<p><font face="Courier New" color="#ff8040"># ignore VMware virtual interfaces      <br />ATTR{address}==&quot;00:0c:29:*&quot;, GOTO=&quot;persistent_net_generator_end&quot;</font></p>
<p>This procedure should work with most distributions that use this method to map the NICs and eth interfaces, and it should only be a matter of finding and editing the corresponding file. If you have any questions or comments, hit me up on <a href="http://twitter.com/cody_bunch">twitter</a>, or in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2009/07/more-mac-address-mayhem-sles-edition/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
