<?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>Racker Hacker &#187; vmware</title>
	<atom:link href="http://rackerhacker.com/tag/vmware/feed/" rel="self" type="application/rss+xml" />
	<link>http://rackerhacker.com</link>
	<description>Words of wisdom from a server administrator</description>
	<lastBuildDate>Wed, 16 May 2012 12:55:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Enabling VNC as a pseudo-KVM with VMWare Server</title>
		<link>http://rackerhacker.com/2009/03/24/enabling-vnc-as-a-pseudo-kvm-with-vmware-server/</link>
		<comments>http://rackerhacker.com/2009/03/24/enabling-vnc-as-a-pseudo-kvm-with-vmware-server/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 01:28:59 +0000</pubDate>
		<dc:creator>Major Hayden</dc:creator>
				<category><![CDATA[Blog Posts]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vnc]]></category>

		<guid isPermaLink="false">http://rackerhacker.com/?p=820</guid>
		<description><![CDATA[Mac users feel a little left out when it comes to VMWare Server clients. There's one for Windows and Linux, but Mac users are out of luck. Sure, you can VNC into a Linux box, use X forwarding, or use RDC to access a Windows box, but a real Mac client would really be helpful. [...]<p><a href="http://rackerhacker.com/2009/03/24/enabling-vnc-as-a-pseudo-kvm-with-vmware-server/">Enabling VNC as a pseudo-KVM with VMWare Server</a> is a post from: Major Hayden's <a href="http://rackerhacker.com">Racker Hacker</a> blog. 
<p>Thanks for following the blog via the RSS feed. Please don't copy my posts or quote portions of them without attribution.</p></p>
]]></description>
			<content:encoded><![CDATA[<p>Mac users <a href="http://communities.vmware.com/thread/155201">feel a little left</a> out when it comes to <a href="http://www.vmware.com/products/server/">VMWare Server</a> clients.  There's one for Windows and Linux, but Mac users are out of luck.  Sure, you can VNC into a Linux box, use X forwarding, or use RDC to access a Windows box, but a real Mac client would really be helpful.</p>
<p>However, I stumbled upon some documentation that will allow you to VNC to a VMWare Server VM's main screen.  It's equivalent to having a network KVM connected to the VM so you can have out-of-band management.  With VMWare server 2.x, you can enable it by following these steps:</p>
<p><strong>Step 1.</strong> Create a new VM in VMWare Server, but <em>don't start the VM</em>.  </p>
<p><strong>Step 2.</strong> SSH to the server and find your VM's .vmx file.  Normally, you can find the file in a location like <code>/var/lib/vmware/[vmname]/[vmname].vmx</code>.</p>
<p><strong>Step 3.</strong> Add the following lines to the end of the .vmx file:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">RemoteDisplay.vnc.enabled = &quot;TRUE&quot;
RemoteDisplay.vnc.password = &quot;vncpassword&quot;
RemoteDisplay.vnc.port = &quot;5900&quot;</pre></div></div>

<p><strong>Step 4.</strong> Change the VNC port and password to values that suit your environment and then start the VM.  </p>
<p><strong>DUH!</strong> Don't set two VM's to use the same vnc port, but that should go without saying.</p>
<p><a href="http://rackerhacker.com/2009/03/24/enabling-vnc-as-a-pseudo-kvm-with-vmware-server/">Enabling VNC as a pseudo-KVM with VMWare Server</a> is a post from: Major Hayden's <a href="http://rackerhacker.com">Racker Hacker</a> blog. 
<p>Thanks for following the blog via the RSS feed. Please don't copy my posts or quote portions of them without attribution.</p></p>
]]></content:encoded>
			<wfw:commentRss>http://rackerhacker.com/2009/03/24/enabling-vnc-as-a-pseudo-kvm-with-vmware-server/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Listing of VMWare configuration parameters</title>
		<link>http://rackerhacker.com/2008/09/05/listing-of-vmware-configuration-parameters/</link>
		<comments>http://rackerhacker.com/2008/09/05/listing-of-vmware-configuration-parameters/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 17:09:54 +0000</pubDate>
		<dc:creator>Major Hayden</dc:creator>
				<category><![CDATA[Blog Posts]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://rackerhacker.com/?p=365</guid>
		<description><![CDATA[For a recent project, I needed to automatically provision VM's for testing. I wanted to make the .vmx files on the fly with the exact configuration required, but I couldn't find documentation for the options that are allowed in the .vmx files. Luckily, a fellow named Ulli Hankeln has made an impressive list available on [...]<p><a href="http://rackerhacker.com/2008/09/05/listing-of-vmware-configuration-parameters/">Listing of VMWare configuration parameters</a> is a post from: Major Hayden's <a href="http://rackerhacker.com">Racker Hacker</a> blog. 
<p>Thanks for following the blog via the RSS feed. Please don't copy my posts or quote portions of them without attribution.</p></p>
]]></description>
			<content:encoded><![CDATA[<p>For a recent project, I needed to automatically provision VM's for testing.  I wanted to make the .vmx files on the fly with the exact configuration required, but I couldn't find documentation for the options that are allowed in the .vmx files.  Luckily, a fellow named Ulli Hankeln has <a href="http://sanbarrow.com/vmx.html">made an impressive list</a> available on his site. </p>
<p>The listings contain tons of options that I wasn't aware of, and it also provides hints on which ones you shouldn't adjust.</p>
<p><a href="http://rackerhacker.com/2008/09/05/listing-of-vmware-configuration-parameters/">Listing of VMWare configuration parameters</a> is a post from: Major Hayden's <a href="http://rackerhacker.com">Racker Hacker</a> blog. 
<p>Thanks for following the blog via the RSS feed. Please don't copy my posts or quote portions of them without attribution.</p></p>
]]></content:encoded>
			<wfw:commentRss>http://rackerhacker.com/2008/09/05/listing-of-vmware-configuration-parameters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CentOS/RHEL x86_64 + VMWare: Use of uninitialized value in string</title>
		<link>http://rackerhacker.com/2008/09/03/centosrhel-x86_64-vmware-use-of-uninitialized-value-in-string/</link>
		<comments>http://rackerhacker.com/2008/09/03/centosrhel-x86_64-vmware-use-of-uninitialized-value-in-string/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 17:06:20 +0000</pubDate>
		<dc:creator>Major Hayden</dc:creator>
				<category><![CDATA[Blog Posts]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://rackerhacker.com/?p=366</guid>
		<description><![CDATA[I was working with a CentOS 5 x86_64 installation running VMWare server last week when I stumbled upon this error: Use of uninitialized value in string eq at /usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi/VMware/VmPerl.pm line 114. You can run the vmware-cmd application with this error (it's not a fatal error) and keep going with your normal business. However, if you [...]<p><a href="http://rackerhacker.com/2008/09/03/centosrhel-x86_64-vmware-use-of-uninitialized-value-in-string/">CentOS/RHEL x86_64 + VMWare: Use of uninitialized value in string</a> is a post from: Major Hayden's <a href="http://rackerhacker.com">Racker Hacker</a> blog. 
<p>Thanks for following the blog via the RSS feed. Please don't copy my posts or quote portions of them without attribution.</p></p>
]]></description>
			<content:encoded><![CDATA[<p>I was working with a CentOS 5 x86_64 installation running VMWare server last week when I stumbled upon this error:</p>
<p><code>Use of uninitialized value in string eq at /usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi/VMware/VmPerl.pm line 114.</code></p>
<p>You can run the vmware-cmd application with this error (it's not a fatal error) and keep going with your normal business.  However, if you want to remove the error, comment out lines 114 and 115 in the Perl module referenced by the error:</p>
<pre><code>die "Perl API Version does not match dynamic library version."
    unless (version() eq $VERSION);</code></pre>
<p>Commenting out these lines does not affect the VMWare server in any way.</p>
<p><a href="http://rackerhacker.com/2008/09/03/centosrhel-x86_64-vmware-use-of-uninitialized-value-in-string/">CentOS/RHEL x86_64 + VMWare: Use of uninitialized value in string</a> is a post from: Major Hayden's <a href="http://rackerhacker.com">Racker Hacker</a> blog. 
<p>Thanks for following the blog via the RSS feed. Please don't copy my posts or quote portions of them without attribution.</p></p>
]]></content:encoded>
			<wfw:commentRss>http://rackerhacker.com/2008/09/03/centosrhel-x86_64-vmware-use-of-uninitialized-value-in-string/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

