<?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>totalnetsolutions.net &#187; VMWare</title>
	<atom:link href="http://www.totalnetsolutions.net/category/tech/vmware/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.totalnetsolutions.net</link>
	<description>totalnetsolutions.net - Complete Networking Solutions for business</description>
	<lastBuildDate>Wed, 14 Jul 2010 14:29:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Device or resource busy trying to open /dev/sdx1</title>
		<link>http://www.totalnetsolutions.net/2010/02/26/device-or-resource-busy-trying-to-open-devsdx1/</link>
		<comments>http://www.totalnetsolutions.net/2010/02/26/device-or-resource-busy-trying-to-open-devsdx1/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 21:22:55 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.totalnetsolutions.net/?p=119</guid>
		<description><![CDATA[Because not enough information exists in easy-to-find searches: as a simple reminder &#8211; SCSI device IDs can and will change. A few months ago I hot-added a new disk to an ssh bastion host (a VM on ESX). As these things tend to go, I eventually took a maintenance window and updated firmware/BIOS/OS on the [...]]]></description>
			<content:encoded><![CDATA[<p>Because not enough information exists in easy-to-find searches: as a simple reminder &#8211; SCSI device IDs can and will change.</p>
<p>A few months ago I hot-added a new disk to an ssh bastion host (a VM on ESX).  As these things tend to go, I eventually took a maintenance window and updated firmware/BIOS/OS on the ESX host.  When the bastion VM came back online, however, I was presented with an odd error:<br />
<code><br />
[root@bastion ~]: fsck /dev/sdc1<br />
e2fsck 1.39 (29-May-2006)<br />
fsck.ext3: Device or resource busy while trying to open /dev/sdc1<br />
Filesystem mounted or opened exclusively by another program?<br />
[root@oracle1 ~]# cat /proc/mounts<br />
rootfs / rootfs rw 0 0<br />
/dev/root / ext3 rw,data=ordered 0 0<br />
/dev /dev tmpfs rw 0 0<br />
/proc /proc proc rw 0 0<br />
none /selinux selinuxfs rw 0 0<br />
devpts /dev/pts devpts rw 0 0<br />
tmpfs /dev/shm tmpfs rw 0 0<br />
none /proc/sys/fs/binfmt_misc binfmt_misc rw 0 0<br />
sunrpc /var/lib/nfs/rpc_pipefs rpc_pipefs rw 0 0<br />
[root@oracle1 ~]# cat /etc/fstab<br />
/dev/main/root          /                       ext3    defaults        1 1<br />
/dev/sdc1               /home                   ext3    defaults        1 2<br />
/dev/main/var           /var                    ext3    defaults        1 2<br />
/dev/main/tmp           /tmp                    ext3    defaults        1 2<br />
LABEL=/boot             /boot                   ext3    defaults        1 2<br />
tmpfs                   /dev/shm                tmpfs   defaults        0 0<br />
devpts                  /dev/pts                devpts  gid=5,mode=620  0 0<br />
sysfs                   /sys                    sysfs   defaults        0 0<br />
proc                    /proc                   proc    defaults        0 0<br />
/dev/main/swap          swap                    swap    defaults        0 0<br />
# Beginning of the block added by the VMware software<br />
.host:/                 /mnt/hgfs               vmhgfs  defaults,ttl=5     0 0<br />
# End of the block added by the VMware software<br />
</code><br />
So everything in the fstab is how I left it &#8211; /dev/sdc1 is the new disk I added that is giving errors mounting.  So I thought to check for corruption on the disk, and found the problem:<br />
<code><br />
[root@oracle1 ~]# fdisk -l<br />
Disk /dev/sda: 42.9 GB, 42949672960 bytes<br />
255 heads, 63 sectors/track, 5221 cylinders<br />
Units = cylinders of 16065 * 512 = 8225280 bytes<br />
   Device Boot      Start         End      Blocks   Id  System<br />
/dev/sda1   *           1          13      104391   83  Linux<br />
/dev/sda2              14        5221    41833260   8e  Linux LVM<br />
Disk /dev/sdb: 42.9 GB, 42949672960 bytes<br />
255 heads, 63 sectors/track, 5221 cylinders<br />
Units = cylinders of 16065 * 512 = 8225280 bytes<br />
   Device Boot      Start         End      Blocks   Id  System<br />
/dev/sdb1               1        5221    41937651   83  Linux<br />
Disk /dev/sdc: 32.2 GB, 32212254720 bytes<br />
255 heads, 63 sectors/track, 3916 cylinders<br />
Units = cylinders of 16065 * 512 = 8225280 bytes<br />
   Device Boot      Start         End      Blocks   Id  System<br />
/dev/sdc1   *           1        3917    31457279+  8e  Linux LVM<br />
</code></p>
<p>So, a simple fix &#8211; change &#8220;/dev/sdc1&#8243; to &#8220;/dev/sdb1&#8243; in /etc/fstab (or to VOLUME=home), and boot back up.</p>
<p>It&#8217;s not something that&#8217;ll probably happen on this server again, but it is something to be aware of, on both VM guests and on physical servers.  This is why so many newer Linux OSes are using UUID= or VOLUME= instead of device path for SCSI disks.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2010%2F02%2F26%2Fdevice-or-resource-busy-trying-to-open-devsdx1%2F&amp;title=Device+or+resource+busy+trying+to+open+%2Fdev%2Fsdx1" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2010%2F02%2F26%2Fdevice-or-resource-busy-trying-to-open-devsdx1%2F&amp;title=Device+or+resource+busy+trying+to+open+%2Fdev%2Fsdx1" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2010%2F02%2F26%2Fdevice-or-resource-busy-trying-to-open-devsdx1%2F&amp;title=Device+or+resource+busy+trying+to+open+%2Fdev%2Fsdx1" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2010%2F02%2F26%2Fdevice-or-resource-busy-trying-to-open-devsdx1%2F&amp;title=Device+or+resource+busy+trying+to+open+%2Fdev%2Fsdx1" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2010%2F02%2F26%2Fdevice-or-resource-busy-trying-to-open-devsdx1%2F&amp;title=Device+or+resource+busy+trying+to+open+%2Fdev%2Fsdx1', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.totalnetsolutions.net%2F2010%2F02%2F26%2Fdevice-or-resource-busy-trying-to-open-devsdx1%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.totalnetsolutions.net%2F2010%2F02%2F26%2Fdevice-or-resource-busy-trying-to-open-devsdx1%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.totalnetsolutions.net%2F2010%2F02%2F26%2Fdevice-or-resource-busy-trying-to-open-devsdx1%2F&amp;title=Device+or+resource+busy+trying+to+open+%2Fdev%2Fsdx1" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2010%2F02%2F26%2Fdevice-or-resource-busy-trying-to-open-devsdx1%2F&amp;title=Device+or+resource+busy+trying+to+open+%2Fdev%2Fsdx1" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.totalnetsolutions.net/2010/02/26/device-or-resource-busy-trying-to-open-devsdx1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWare Workstation and Ubuntu 8.10</title>
		<link>http://www.totalnetsolutions.net/2009/01/02/vmware-workstation-and-ubuntu-810/</link>
		<comments>http://www.totalnetsolutions.net/2009/01/02/vmware-workstation-and-ubuntu-810/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 17:50:12 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.totalnetsolutions.net/?p=68</guid>
		<description><![CDATA[I just finished my upgrade from Kubuntu 8.04 to 8.10 this past week (since I had downtime from work, I could afford to break things for a few days).  The upgrade went great, and I&#8217;ll write about it shortly, once I get used to the newness. Anyways; Workstation 6.5 has been giving me problems.  Because [...]]]></description>
			<content:encoded><![CDATA[<p>I just finished my upgrade from Kubuntu 8.04 to 8.10 this past week (since I had downtime from work, I could afford to break things for a few days).  The upgrade went great, and I&#8217;ll write about it shortly, once I get used to the newness.</p>
<p>Anyways; Workstation 6.5 has been giving me problems.  Because of the newness of KDE4, I initially thought it was a KDE problem, but it turns out it&#8217;s something between Workstation 6.5 and Ubuntu 8.10.  I just ran the &#8220;adapt &#8211;dist-upgrade-devel&#8221; command from the Ubuntu wiki to upgrade, and upon reboot, I couldn&#8217;t &#8220;ctrl-alt-ins&#8221; or &#8220;ctrl-alt-del&#8221; to log into my Windows VM, my &#8220;Windows/Start&#8221; key on the keyboard wouldn&#8217;t respond, and my arrow keys wouldn&#8217;t work.  Incredibly, when I&#8217;d hit the &#8220;down&#8221; arrow, I&#8217;d get the Windows Start menu pop up!!</p>
<p>Fix is easy, edit /etc/vmware/config and add the line below like:<br />
<code><br />
sudo vim /etc/vmware/config<br />
:$<br />
A  (that's vi-command for "go to the end of the file, and start writing a new line")<br />
xkeymap.nokeycodeMap = true<br />
</code></p>
<p>Have to restart your VMs for this change to take effect.  Thanks to <a href="http://www.yellow-bricks.com/2008/11/19/vmware-workstation-ubuntu-ctrl-alt-ins-not-working/" target="_blank">Duncan Epping</a> for this fix (he posted it in the forums, where I found it).</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F01%2F02%2Fvmware-workstation-and-ubuntu-810%2F&amp;title=VMWare+Workstation+and+Ubuntu+8.10" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F01%2F02%2Fvmware-workstation-and-ubuntu-810%2F&amp;title=VMWare+Workstation+and+Ubuntu+8.10" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F01%2F02%2Fvmware-workstation-and-ubuntu-810%2F&amp;title=VMWare+Workstation+and+Ubuntu+8.10" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F01%2F02%2Fvmware-workstation-and-ubuntu-810%2F&amp;title=VMWare+Workstation+and+Ubuntu+8.10" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F01%2F02%2Fvmware-workstation-and-ubuntu-810%2F&amp;title=VMWare+Workstation+and+Ubuntu+8.10', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F01%2F02%2Fvmware-workstation-and-ubuntu-810%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F01%2F02%2Fvmware-workstation-and-ubuntu-810%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F01%2F02%2Fvmware-workstation-and-ubuntu-810%2F&amp;title=VMWare+Workstation+and+Ubuntu+8.10" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2009%2F01%2F02%2Fvmware-workstation-and-ubuntu-810%2F&amp;title=VMWare+Workstation+and+Ubuntu+8.10" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.totalnetsolutions.net/2009/01/02/vmware-workstation-and-ubuntu-810/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Server 2008 Disk problem</title>
		<link>http://www.totalnetsolutions.net/2008/02/15/windows-server-2008-disk-problem/</link>
		<comments>http://www.totalnetsolutions.net/2008/02/15/windows-server-2008-disk-problem/#comments</comments>
		<pubDate>Fri, 15 Feb 2008 14:58:01 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[VMWare]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[test lab]]></category>

		<guid isPermaLink="false">http://www.totalnetsolutions.net/2008/02/15/windows-server-2008-disk-problem/</guid>
		<description><![CDATA[Just as a quick note &#8211; Windows Server 2008 RC0 seems to have the same setup issue as Windows Vista, or at least the x64 RC0 does &#8211; I spent most of the evening last night editing settings, rebooting, plugging in the product key, and reading &#8220;This computer&#8217;s hardware may not support booting to this [...]]]></description>
			<content:encoded><![CDATA[<p>Just as a quick note &#8211; Windows Server 2008 RC0 seems to have the same setup issue as Windows Vista, or at least the x64 RC0 does &#8211; I spent most of the evening last night editing settings, rebooting, plugging in the product key, and reading &#8220;This computer&#8217;s hardware may not support booting to this disk.  Ensure that the disk&#8217;s controller is enabled in the BIOS.&#8221;  The problem is detailed at <a href="http://support.microsoft.com/kb/925481" target="_blank">http://support.microsoft.com/kb/925481</a> for Vista.  Windows Server 2008 RC1 fixes this issue.</p>
<p>I was having the problem on a Virtual system in VMWare ESX 3.5, so it was easy to disconnect a disk to get past the error, but downloading and installing the updated RC seemed like the better fix for the first DC in a new test lab.</p>
<p>What apparently is going on is if you have 2 hard drives that have never been partitioned or initialized, then the Setup.exe program gets confused.  You can remove one of the disks temporarily, format them with another boot medium (<a href="http://www.nu2.nu/pebuilder/" target="_blank">BartPE</a>, anyone?), or just not use Win2k8 RC0.  According to the support note, the only fix for Vista is to format the drives.  I bet you can remove one of them and Vista will work, too, but haven&#8217;t tested.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F02%2F15%2Fwindows-server-2008-disk-problem%2F&amp;title=Windows+Server+2008+Disk+problem" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F02%2F15%2Fwindows-server-2008-disk-problem%2F&amp;title=Windows+Server+2008+Disk+problem" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F02%2F15%2Fwindows-server-2008-disk-problem%2F&amp;title=Windows+Server+2008+Disk+problem" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F02%2F15%2Fwindows-server-2008-disk-problem%2F&amp;title=Windows+Server+2008+Disk+problem" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F02%2F15%2Fwindows-server-2008-disk-problem%2F&amp;title=Windows+Server+2008+Disk+problem', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F02%2F15%2Fwindows-server-2008-disk-problem%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F02%2F15%2Fwindows-server-2008-disk-problem%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F02%2F15%2Fwindows-server-2008-disk-problem%2F&amp;title=Windows+Server+2008+Disk+problem" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F02%2F15%2Fwindows-server-2008-disk-problem%2F&amp;title=Windows+Server+2008+Disk+problem" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.totalnetsolutions.net/2008/02/15/windows-server-2008-disk-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWare ESX Server 3.5 on Dell 2900iii</title>
		<link>http://www.totalnetsolutions.net/2008/02/12/vmware-esx-server-35-on-dell-2900iii/</link>
		<comments>http://www.totalnetsolutions.net/2008/02/12/vmware-esx-server-35-on-dell-2900iii/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 22:08:56 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[VMWare]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[esx]]></category>
		<category><![CDATA[updates]]></category>

		<guid isPermaLink="false">http://www.totalnetsolutions.net/2008/02/12/vmware-esx-server-35-on-dell-2900iii/</guid>
		<description><![CDATA[Building a new ESX host on new hardware with the PERC6/i RAID controller, we came across an error. ESX installs perfectly fine, but upon the initial boot, the server hangs showing: Loading VMKernel megaraid_sas.o (options: '') It turns out that this is caused by an IRQ routing issue in the 2.0.1 BIOS on the newest [...]]]></description>
			<content:encoded><![CDATA[<p>Building a new ESX host on new hardware with the PERC6/i RAID controller, we came across an error.  ESX installs perfectly fine, but upon the initial boot, the server hangs showing:<br />
<code>Loading VMKernel megaraid_sas.o (options: '')</code><br />
It turns out that this is caused by an IRQ routing issue in the 2.0.1 BIOS on the newest 2900 series (including 2950).  You can <a href="http://support.dell.com/support/downloads/download.aspx?c=us&amp;cs=04&amp;l=en&amp;s=bsd&amp;releaseid=R178066&amp;SystemID=PWE_2900&amp;servicetag=&amp;os=NAA&amp;osl=en&amp;deviceid=11808&amp;devlib=0&amp;typecnt=0&amp;vercnt=3&amp;catid=-1&amp;impid=-1&amp;formatcnt=6&amp;libid=1&amp;fileid=242332" target="_blank">get the update here</a>, and <a href="ftp://ftp.us.dell.com/bios/PE2900-020101BIOS.txt" target="_blank">the release notes here</a>.</p>
<p>Note that the install I linked to is an &#8220;Update Package for Red Hat&#8221; &#8211; this requires RPM to install properly, I&#8217;m not sure if that&#8217;s to install the script in /etc/rc6.d/ to perform the actual update, or if there&#8217;s also a binary driver that needs to be updated as well.  To perform this RPM update, rather than building a DOS floppy (or if you don&#8217;t have a floppy drive in the server):</p>
<ol>
<li>Download the update to a USB thumb drive or burn it to a CD.</li>
<li>Reboot the ESX server.</li>
<li>At the boot prompt, you have the choice of &#8220;VMware ESX Server&#8221;, &#8220;VMWare ESX Server (Debug)&#8221; or &#8220;ESX Troubleshooting mode&#8221;.  Boot to Troubleshooting mode &#8211; this WILL bring you to a shell, eventually.</li>
<li>Insert the thumb drive or CD media and mount it.<br />
For a thumb drive:<code><br />
mkdir /mnt/usb<br />
mount -t auto /dev/sdb1 /mnt/usb<br />
</code></li>
<li>Execute the fix:<code><br />
/mnt/usb/PE2900_BIOS_LX_2.1.1.BIN</code></li>
<li>Read the notes and hit &#8220;q&#8221; to finish, then let the server reboot and apply the update.</li>
</ol>
<p>Server should come up 100% fine after the reboot, and you&#8217;re good to go!</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F02%2F12%2Fvmware-esx-server-35-on-dell-2900iii%2F&amp;title=VMWare+ESX+Server+3.5+on+Dell+2900iii" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F02%2F12%2Fvmware-esx-server-35-on-dell-2900iii%2F&amp;title=VMWare+ESX+Server+3.5+on+Dell+2900iii" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F02%2F12%2Fvmware-esx-server-35-on-dell-2900iii%2F&amp;title=VMWare+ESX+Server+3.5+on+Dell+2900iii" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F02%2F12%2Fvmware-esx-server-35-on-dell-2900iii%2F&amp;title=VMWare+ESX+Server+3.5+on+Dell+2900iii" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F02%2F12%2Fvmware-esx-server-35-on-dell-2900iii%2F&amp;title=VMWare+ESX+Server+3.5+on+Dell+2900iii', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F02%2F12%2Fvmware-esx-server-35-on-dell-2900iii%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F02%2F12%2Fvmware-esx-server-35-on-dell-2900iii%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F02%2F12%2Fvmware-esx-server-35-on-dell-2900iii%2F&amp;title=VMWare+ESX+Server+3.5+on+Dell+2900iii" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2008%2F02%2F12%2Fvmware-esx-server-35-on-dell-2900iii%2F&amp;title=VMWare+ESX+Server+3.5+on+Dell+2900iii" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.totalnetsolutions.net/2008/02/12/vmware-esx-server-35-on-dell-2900iii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWare Workstation 6 &#8211; Kernel 2.6.22 on Ubuntu Gutsy</title>
		<link>http://www.totalnetsolutions.net/2007/10/17/vmware-workstation-6-kernel-2622-on-ubuntu-gutsy/</link>
		<comments>http://www.totalnetsolutions.net/2007/10/17/vmware-workstation-6-kernel-2622-on-ubuntu-gutsy/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 17:37:48 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.totalnetsolutions.net/2007/10/17/vmware-workstation-6-kernel-2622-on-ubuntu-gutsy/</guid>
		<description><![CDATA[I upgraded my Dell D620 from Feisty to Gutsy this weekend, which included an upgrade to kernel 2.6.22. Every time there’s a kernel upgrade, VMWare Workstation needs to be reconfigured with “vmware-config.pl”. This isn’t an issue normally, but today it was. Thanks to Chris Hope with Electric Toolbox I was able to fix the problem [...]]]></description>
			<content:encoded><![CDATA[<p>I upgraded my Dell D620 from Feisty to Gutsy this weekend, which included an upgrade to kernel 2.6.22. Every time there’s a kernel upgrade, VMWare Workstation needs to be reconfigured with “vmware-config.pl”. This isn’t an issue normally, but today it was. Thanks to <a href="http://www.electrictoolbox.com/vmware-config-failed-opensuse-103/" onclick="javascript:urchinTracker ('/outgoing/www.electrictoolbox.com/vmware-config-failed-opensuse-103/');" target="_blank">Chris Hope with Electric Toolbox</a> I was able to fix the problem quick and easy.</p>
<p>For completeness the error I was getting was the same:<br />
<code>/tmp/vmware-config1/vmnet-only/userif.c:630: error: ‘const struct sk_buff’ has no member named ‘h’</code><br />
when trying to build the VMNet module &#8211; VMMon built and inserted perfectly. Downloaded 6.0.1 and installed it, and I’m back and in the game.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F17%2Fvmware-workstation-6-kernel-2622-on-ubuntu-gutsy%2F&amp;title=VMWare+Workstation+6+%26%238211%3B+Kernel+2.6.22+on+Ubuntu+Gutsy" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F17%2Fvmware-workstation-6-kernel-2622-on-ubuntu-gutsy%2F&amp;title=VMWare+Workstation+6+%26%238211%3B+Kernel+2.6.22+on+Ubuntu+Gutsy" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F17%2Fvmware-workstation-6-kernel-2622-on-ubuntu-gutsy%2F&amp;title=VMWare+Workstation+6+%26%238211%3B+Kernel+2.6.22+on+Ubuntu+Gutsy" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F17%2Fvmware-workstation-6-kernel-2622-on-ubuntu-gutsy%2F&amp;title=VMWare+Workstation+6+%26%238211%3B+Kernel+2.6.22+on+Ubuntu+Gutsy" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F17%2Fvmware-workstation-6-kernel-2622-on-ubuntu-gutsy%2F&amp;title=VMWare+Workstation+6+%26%238211%3B+Kernel+2.6.22+on+Ubuntu+Gutsy', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F17%2Fvmware-workstation-6-kernel-2622-on-ubuntu-gutsy%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F17%2Fvmware-workstation-6-kernel-2622-on-ubuntu-gutsy%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F17%2Fvmware-workstation-6-kernel-2622-on-ubuntu-gutsy%2F&amp;title=VMWare+Workstation+6+%26%238211%3B+Kernel+2.6.22+on+Ubuntu+Gutsy" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.totalnetsolutions.net%2F2007%2F10%2F17%2Fvmware-workstation-6-kernel-2622-on-ubuntu-gutsy%2F&amp;title=VMWare+Workstation+6+%26%238211%3B+Kernel+2.6.22+on+Ubuntu+Gutsy" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.totalnetsolutions.net/2007/10/17/vmware-workstation-6-kernel-2622-on-ubuntu-gutsy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
