<?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>Professional VMware &#187; tools</title>
	<atom:link href="http://professionalvmware.com/category/tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://professionalvmware.com</link>
	<description>How Many Turtles Can You Fit On A Rock?</description>
	<lastBuildDate>Thu, 02 Feb 2012 16:49:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Automation 101 &#8211; VMware Tools with Orchestrator</title>
		<link>http://professionalvmware.com/2011/07/automation-101-vmware-tools-with-orchestrator/</link>
		<comments>http://professionalvmware.com/2011/07/automation-101-vmware-tools-with-orchestrator/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 17:21:46 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[automation]]></category>
		<category><![CDATA[orchestrator]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[vCO]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2011/07/automation-101-vmware-tools-with-orchestrator/</guid>
		<description><![CDATA[We’ll skip the reason you need tools installed. We’ll also skip a bit on the other ways to do this in PowerCLI. Rather, we’ll bring you a way to do this in Orchestrator. Note: If you’re not using vCO, you should be. Why? I covered that here. Additionally, there are some excellent vCO resources here. [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>We’ll skip the reason you need tools installed. We’ll also skip a bit on the other ways to do <a href="http://get-admin.com/blog/scripting/powershell-scripting/powercli-update-vmware-tools-without-a-reboot/">this in PowerCLI</a>. Rather, we’ll bring you a way to do this in Orchestrator.</p>
<blockquote><h4>Note:</h4>
<p>If you’re not using vCO, you should be. Why? I covered that <a href="http://professionalvmware.com/2011/03/vsphere-automation-101-use-vcenter-orchestrator/">here</a>. Additionally, there are some excellent vCO resources <a href="http://professionalvmware.com/page/2/?s=orchestrator">here</a>.</p>
</blockquote>
<h3>VMware Tools Workflows</h3>
<p>vCO ships with four workflows for managing VMware tools:</p>
<ul>
<li>Mount tools installer
<li>Unmount tools installer
<li>Upgrade VMware tools
<li>Upgrade VMware tools at next reboot</li>
</ul>
<p>All of these are found in the vCenter library of workflows that rolls with the vCenter plug-in. Specifically they’re found under “Library &gt; vCenter &gt; Virtual machine management &gt; VMware Tools”</p>
<h4>Mount/Unmount tools installer</h4>
<p>These two workflows take a single VM as input and can be used when provisioning a new VM. In the case of Unmount, they are also useful in ensuring a VM does not have the tools installer mounted before a VMotion. The real power with these two comes in your ability to use them as a part of a larger workflow however.</p>
<p>The mount and unmount workflows both have identical schema and an identical amount of code in their scripting blocks. Let’s take a look at each:</p>
<h5>Schema</h5>
<p><a href="http://professionalvmware.com/wp-content/uploads/2011/07/image3.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://professionalvmware.com/wp-content/uploads/2011/07/image_thumb3.png" width="244" height="194"></a></p>
<h5>Code</h5>
<p><font face="Courier New">vm.mountToolsInstaller();</font></p>
<p><font face="Courier New">vm.unmountToolsInstaller();</font></p>
<h5>A bigger workflow</h5>
<p>Well, I said the power in this was when you wanted to do more than a handful of VMs right, so here’s the bigger workflow promised:</p>
<p><a href="http://professionalvmware.com/wp-content/uploads/2011/07/image4.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://professionalvmware.com/wp-content/uploads/2011/07/image_thumb4.png" width="522" height="233"></a></p>
<p>Lots of little cross-wise lines, etc. Working around the workflow:</p>
<ul>
<li>Get a list of everything
<li>Make sure we have VMs left to parse
<li>Set the active VM
<li>Is it powered on?
<ul>
<li>If not, increase the count, start from step 2
<li>If yes, should we mount or unmount the tools?
<ul>
<li>If yes, mount em, continue
<li>If no, unmount the tools and continue</li>
</ul>
</li>
</ul>
</li>
</ul>
<p>Confused? Well, I’ll spare the additional code as you can likely figure it out, and have uploaded the completed workflow <a href="http://professionalvmware.com/workflows/Unmount All The Things.workflow">here</a>.</p>
<h4>Upgrade Tools (on next reboot)</h4>
<p>The next two in our list are the upgrade tools workflows which more or less function like their PowerCLI counterparts mentioned above. The first has a really really simple schema, so we’ll skip it. The more interesting one is “on next reboot”:</p>
<p><a href="http://professionalvmware.com/wp-content/uploads/2011/07/image5.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://professionalvmware.com/wp-content/uploads/2011/07/image_thumb5.png" width="513" height="316"></a></p>
<p>Of this, the more curious part is what’s going on behind the “Upgrade Tools” bit:</p>
<p><font face="Courier New">if (vm.summary.guest.toolsVersionStatus != &#8220;guestToolsNeedUpgrade&#8221;) {<br />&nbsp;&nbsp;&nbsp; System.log(&#8220;Tools do not require upgrade for vm: &#8221; + vm.name);<br />} <br />else {<br />&nbsp;&nbsp;&nbsp; System.log(&#8220;Upgrading tools for vm: &#8221; + vm.name);<br />&nbsp;&nbsp;&nbsp; task = System.getModule(&#8220;com.vmware.library.vc.vm.tools&#8221;).upgradeToolsAtNextReboot(vm);<br />} </font></p>
<p>Do I need an upgrade? OMG Yes I do, send a call to the vCenter API to upgrade the tools at next reboot. Or so. This too could be worked into a larger workflow like we did before. That said I’ll leave it as an exercise for the end user this time.</p>
<h3>Summary</h3>
<p>Is vCO awesome? You bet! This time around we mounted and unmounted your VMware tools, and set the tools to upgrade at the next VM reboot, you know, in case you don’t have a maintenance window.</p>
<p>As always, if you have any questions drop a line in the comments or hit me up on twitter <a href="http://twitter.com/cody_bunch">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2011/07/automation-101-vmware-tools-with-orchestrator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware Tools ISO for Linux Guests</title>
		<link>http://professionalvmware.com/2011/03/vmware-tools-iso-for-linux-guests/</link>
		<comments>http://professionalvmware.com/2011/03/vmware-tools-iso-for-linux-guests/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 00:04:54 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[tools]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[vSphere]]></category>
		<category><![CDATA[vmware tools]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2011/03/vmware-tools-iso-for-linux-guests/</guid>
		<description><![CDATA[The RPM version of the VMware tools installer for Linux guests seems to have gone the way of the dinosaur. In addition, the tools ISO for Linux has been provided as it’s own download, that is hidden away on the ESX or ESXi download pages, rather than the “Tools and Drivers” page. Not sure why, [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>The RPM version of the VMware tools installer for Linux guests seems to have gone the way of the dinosaur. In addition, the tools ISO for Linux has been provided as it’s own download, that is hidden away on the ESX or ESXi download pages, rather than the “Tools and Drivers” page.</p>
<p><a href="http://professionalvmware.com/wp-content/uploads/2011/03/image7.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://professionalvmware.com/wp-content/uploads/2011/03/image_thumb6.png" width="586" height="266" /></a></p>
<p>Not sure why, but “Tools and Drivers” seems like an obvious choice to me.</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2011/03/vmware-tools-iso-for-linux-guests/feed/</wfw:commentRss>
		<slash:comments>2</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[tools]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[VM]]></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>7</slash:comments>
		</item>
		<item>
		<title>Best Tools You Didn&#8217;t Know You Needed &#8211; vscsiStats</title>
		<link>http://professionalvmware.com/2009/09/best-tools-you-didnt-know-you-needed-vscsistats/</link>
		<comments>http://professionalvmware.com/2009/09/best-tools-you-didnt-know-you-needed-vscsistats/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 16:10:46 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[tools]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2009/09/best-tools-you-didnt-know-you-needed-vscsistats/</guid>
		<description><![CDATA[While going over TA1541 &#8211; Cool Little Things Marketing Did Not Tell You About vSphere 4.0 from this years VMworld, and came across this gem, a service console tool, that’s been there since ESX 3.5, and will report on all sorts of SCSI statistics. [root@esxServerOfDoom root]# /usr/lib/vmware/bin/vscsiStats -? /usr/lib/vmware/bin/vscsiStats: invalid option &#8212; ? &#160; VscsiStats [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>While going over TA1541 &#8211; Cool Little Things Marketing Did Not Tell You About vSphere 4.0 from this years VMworld, and came across this gem, a service console tool, that’s been there since ESX 3.5, and will report on all sorts of SCSI statistics.</p>
<blockquote><p>[root@esxServerOfDoom root]# /usr/lib/vmware/bin/vscsiStats -?     <br />/usr/lib/vmware/bin/vscsiStats: invalid option &#8212; ?      <br />&#160; VscsiStats &#8212; This tool controls vscsi data collection for virtual machine disk      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; disk I/O workload characterization. Users can start and stop online data      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; data collection for particular VMs as well as print out online histogram data.      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Command traces can also be collected and printed.</p>
</blockquote>
<p> Awesome, no? It gets better. This doc: “<a href="http://communities.vmware.com/docs/DOC-10095">Using vscsiStats for Storage Performance Analysis</a>” is a must read, as are the docs it links to:
<ul>
<li><a href="http://communities.vmware.com/docs/DOC-10104">Storage Workload Characterization and Consolidation in Virtualized Enviornments</a>. This paper serves as an excellent example of vscsiStats in action.</li>
<li><a href="http://communities.vmware.com/docs/DOC-10084">vscsiStats: Fast and Easy Disk Workload Characterization on VMware ESX Server</a>) and playing with the tool. Check out his presentation if you&#8217;d like more detail.</li>
</ul>
<p>Go GO GO!</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2009/09/best-tools-you-didnt-know-you-needed-vscsistats/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Best Tools You Didn&#8217;t Know You Needed &#8211; The VESI</title>
		<link>http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-the-vesi/</link>
		<comments>http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-the-vesi/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 13:06:00 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-the-vesi/</guid>
		<description><![CDATA[Saving one of the best for last. This tool is every bit as awesome as any of the other tools listed this week, and then some. Why? What other tool can you point at your vCenter and with a few clicks, generate a Visio. Yeah, that’s right, virtual infrastructure documentation in a few clicks. It [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Saving one of the best for last. This tool is every bit as awesome as any of the other tools listed this week, and then some. Why? What other tool can you point at your vCenter and with a few clicks, generate a Visio. Yeah, that’s right, virtual infrastructure documentation in a few clicks. It can be pulled down from <a href="http://www.thevesi.org/downloads.jspa">here</a>.</p>
<p>Check it out:</p>
<p> <object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=5236305&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=5236305&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object>
<p><a href="http://vimeo.com/5236305">Managing VMware vSphere 4 with The Virtualization EcoShell</a> from <a href="http://vimeo.com/esloof">Eric Sloof NTPRO.NL</a> on <a href="http://vimeo.com">Vimeo</a></p>
<p><embed flashvars="loc=%2F&amp;autoplay=false&amp;vid=2098428&amp;beginPercent=0.0207&amp;endPercent=0.999" width="480" height="386" allowfullscreen="true" allowscriptaccess="always" src="http://www.ustream.tv/flash/video/2098428" type="application/x-shockwave-flash" /></embed></p>
<p>Have another tool you find useful? Let us know in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-the-vesi/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>The Best Tools You Didn&#8217;t Know You Needed &#8211; OpsCheck</title>
		<link>http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-opscheck/</link>
		<comments>http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-opscheck/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 12:56:00 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-opscheck/</guid>
		<description><![CDATA[I’ve covered this one before, but it is so awesome it needs to be mentioned twice. It really is that good. What does it do? It latches your vCenter, and will check your clusters for HA/vMotion compatibility, and will let you know what is broken if there is something ‘off’. They have several videos and [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I’ve covered this one <a href="http://professionalvmware.com/2009/05/oh-my-god-tripwire-ops-check/">before</a>, but it is so awesome it needs to be mentioned twice. It really is that good. What does it do? It latches your vCenter, and will check your clusters for HA/vMotion compatibility, and will let you know what is broken if there is something ‘off’. They have several videos and downloads available from their site <a href="http://www.vwire.com/free-tools/opscheck/">here</a>. </p>
<p>Have another tool you’ve found useful? One that you wish someone let you know about before you started virtualizing? Let us know in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-opscheck/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Best Tools You Didn&#8217;t Know You Needed &#8211; FastSCP</title>
		<link>http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-fastscp/</link>
		<comments>http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-fastscp/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 13:48:00 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-fastscp/</guid>
		<description><![CDATA[This one goes without saying. Veeam’s Fast SCP is another file copy tool, but designed specifically to SCP or securely copy files, and do it very fast. Consider pulling this down and giving it a shot the next time you are going to spend most of an evening or two copying a few TB of [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>This one goes without saying. Veeam’s Fast SCP is another file copy tool, but designed specifically to SCP or securely copy files, and do it very fast.</p>
<p><a href="http://professionalvmware.com/wp-content/uploads/2009/09/screenshot_fastscp21.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="screenshot_fastscp2[1]" border="0" alt="screenshot_fastscp2[1]" src="http://professionalvmware.com/wp-content/uploads/2009/09/screenshot_fastscp21_thumb.png" width="428" height="292" /></a> </p>
<p>Consider pulling this down and giving it a shot the next time you are going to spend most of an evening or two copying a few TB of VM files about. You will love every second it saves you. Veeam’s Fast SCP can be downloaded from <a href="http://www.veeam.com/vmware-esxi-fastscp.html">here</a>.</p>
<p>Have another tool that you’ve found essential? One that makes your life easier? One you wish you had known about when you started virtualizing? Let us know in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-fastscp/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The Best Tools You Didn&#8217;t Know You Needed &#8211; TeraCopy</title>
		<link>http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-teracopy/</link>
		<comments>http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-teracopy/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 14:38:00 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-teracopy/</guid>
		<description><![CDATA[The next up in the list of tools I’ve found essential to managing a virtual environment is TeraCopy. TeraCopy is not actually strictly a virtualization tool, but it will make your life as an administrator much easier. So what does TeraCopy do? It copies files from one location in windows to another… really REALLY fast. [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>The next up in the list of tools I’ve found essential to managing a virtual environment is TeraCopy. TeraCopy is not actually strictly a virtualization tool, but it will make your life as an administrator much easier. So what does TeraCopy do? It copies files from one location in windows to another… really REALLY fast. Afterall, who wants to wait for a few hundred gig of ISO or VM files to copy about?</p>
<p>TeraCopy looks like this:</p>
<p><a href="http://professionalvmware.com/wp-content/uploads/2009/09/teracopybig1.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="teracopybig[1]" border="0" alt="teracopybig[1]" src="http://professionalvmware.com/wp-content/uploads/2009/09/teracopybig1_thumb.png" width="419" height="260" /></a> </p>
<p>Basically, drag the files you want to copy into the interface, then select copy, and go. It’s that easy. Teracopy can be downloaded from <a href="http://www.codesector.com/teracopy.php">here</a>.</p>
<p> Have any other tools you consider essential to managing your virtual environment? Let us know in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-teracopy/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>The Best Tools You Didn&#8217;t Know You Needed &#8211; Gparted</title>
		<link>http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-gparted/</link>
		<comments>http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-gparted/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 12:29:00 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-gparted/</guid>
		<description><![CDATA[This begins a few posts on the topic of “Tools You Didn’t Know You Needed”. What qualifies as one of these tools? Well… anything that you’ve found really useful for managing VMs or your virtual infrastructure, and is something every administrator should have in their tool box. Starting things off, is Gparted. Gparted is an [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>This begins a few posts on the topic of “Tools You Didn’t Know You Needed”. What qualifies as one of these tools? Well… anything that you’ve found really useful for managing VMs or your virtual infrastructure, and is something every administrator should have in their tool box.</p>
<p>Starting things off, is Gparted. Gparted is an open source partition resizing tool. Remember the time when Partition Magic was the only game in town for resizing partitions? Being the only tool, it had the price tag to go along with it. Now there is Gparted, which is free open source to do this. Where Gparted comes in wicked handy, is for resizing those partitions that are not otherwise easy to do. Like the OS drive of a Windows 2003 VM, or most Linux partitions that are not LVM.</p>
<p>The interface is fairly straight forward:</p>
<p><a href="http://professionalvmware.com/wp-content/uploads/2009/09/gparted_1_small1.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="gparted_1_small[1]" border="0" alt="gparted_1_small[1]" src="http://professionalvmware.com/wp-content/uploads/2009/09/gparted_1_small1_thumb.jpg" width="420" height="285" /></a> </p>
<p>Gparted can be downloaded from <a href="http://gparted.sourceforge.net/">here</a>.</p>
<p>What tools have you found essential, that are not otherwise provided with vSphere/ESX? Let me know in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2009/09/the-best-tools-you-didnt-know-you-needed-gparted/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Plug It In, Plug It In! &#8211; vCenter Client Plug-ins You Should Be Using</title>
		<link>http://professionalvmware.com/2009/04/plug-it-in-plug-it-in-vcenter-client-plug-ins-you-should-be-using/</link>
		<comments>http://professionalvmware.com/2009/04/plug-it-in-plug-it-in-vcenter-client-plug-ins-you-should-be-using/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 23:40:11 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[tools]]></category>
		<category><![CDATA[Virtual Infrastructure]]></category>
		<category><![CDATA[VIC]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2009/04/16/plug-it-in-plug-it-in-vcenter-client-plug-ins-you-should-be-using/</guid>
		<description><![CDATA[Photo by michelphoto53&#160; I Calm across the “Must-have VMware infrastructure plug-ins” post earlier today and got to thinking what plug-ins I’d recommend. Turns out, that my recommendations would not differ too much, I consider these Must Haves: &#8211; Update Manager (included) &#8211; Storage VMotion. From Andrew at H9Labs &#8211; PowerGUI. This may not be for [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.flickr.com/photos/villeneuve53/2191206080/sizes/o/"><img title="Plug It In!" style="display: inline; margin-left: 0px; margin-right: 0px" alt="Plug It In!" src="http://farm3.static.flickr.com/2202/2191206080_d182fe7e2d_m.jpg" align="left" /></a> </p>
<p>Photo by <a href="http://www.flickr.com/photos/villeneuve53/">michelphoto53</a>&#160; </p>
<p>I Calm across the <a href="http://itknowledgeexchange.techtarget.com/virtualization-pro/must-have-vmware-infrastructure-plug-ins/">“Must-have VMware infrastructure plug-ins”</a> post earlier today and got to thinking what plug-ins I’d recommend.</p>
<p>Turns out, that my recommendations would not differ too much, I consider these <em>Must Haves</em>:</p>
<p> &#8211; Update Manager (included)   <br /> &#8211; <a href="http://www.h9labs.com/viplugins">Storage VMotion</a>. From Andrew at <a href="http://H9Labs.com">H9Labs</a>    <br /> &#8211; <a href="http://www.powergui.org/">PowerGUI</a>. This may not be for everyone, but I do script quite a bit.    <br /> &#8211; <a href="http://www.h9labs.com/viplugins">Console</a>. – Also quite useful for troubleshooting a pesky problem from the cli that is otherwise difficult to do from the VI client itself.</p>
<p>There are quite a few others out there, most of them listed on the <a href="http://www.h9labs.com/viplugins">H9Labs.com</a> plug-in page. If you’re into writing your own, that can also be done using the <a href="http://www.vmware.com/support/developer/vc-sdk/vcplugin-exp/index.html">VMware guide</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2009/04/plug-it-in-plug-it-in-vcenter-client-plug-ins-you-should-be-using/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

