<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: vmware-an..specific-specific 5.5.7 and kernel 2.6.26</title>
	<atom:link href="http://www.insecure.ws/2008/07/24/vmware-anspecific-specific-557-and-kernel-2626/feed" rel="self" type="application/rss+xml" />
	<link>http://www.insecure.ws/2008/07/24/vmware-anspecific-specific-557-and-kernel-2626</link>
	<description></description>
	<lastBuildDate>Wed, 25 Aug 2010 08:27:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Mark</title>
		<link>http://www.insecure.ws/2008/07/24/vmware-anspecific-specific-557-and-kernel-2626/comment-page-1#comment-877</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sat, 12 Dec 2009 01:23:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.insecure.ws/?p=95#comment-877</guid>
		<description>Let me do a little debugging here:

To get VMMON_VERSION_V55 we must be in LinuxDriver_IoctlV55(), in
driver_compat2.h, since that is the only place where it occurs.

I don’t know how we get there but it says

case IOCTL_VMX86_S1B1_VERSION:
return VMMON_VERSION_V55;

which seems strange to me…, do you agree?

To get there we must have case VME_V55 in “switch (vmLinux-&gt;version)” in
LinuxDriver_Ioctl, also in driver_compat2.h.

We also see that it says “VMware 2 or VMware Express detected, building
for VMware 2, VMware Express and VMware Workstation 4.0.x.” in
getversion.pl, which would be the case for “if (not defined($res)) {”
but which would also yield VME_V4, not VME_V55, so I am a little
confused here...</description>
		<content:encoded><![CDATA[<p>Let me do a little debugging here:</p>
<p>To get VMMON_VERSION_V55 we must be in LinuxDriver_IoctlV55(), in<br />
driver_compat2.h, since that is the only place where it occurs.</p>
<p>I don’t know how we get there but it says</p>
<p>case IOCTL_VMX86_S1B1_VERSION:<br />
return VMMON_VERSION_V55;</p>
<p>which seems strange to me…, do you agree?</p>
<p>To get there we must have case VME_V55 in “switch (vmLinux-&gt;version)” in<br />
LinuxDriver_Ioctl, also in driver_compat2.h.</p>
<p>We also see that it says “VMware 2 or VMware Express detected, building<br />
for VMware 2, VMware Express and VMware Workstation 4.0.x.” in<br />
getversion.pl, which would be the case for “if (not defined($res)) {”<br />
but which would also yield VME_V4, not VME_V55, so I am a little<br />
confused here&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kang</title>
		<link>http://www.insecure.ws/2008/07/24/vmware-anspecific-specific-557-and-kernel-2626/comment-page-1#comment-870</link>
		<dc:creator>kang</dc:creator>
		<pubDate>Wed, 09 Dec 2009 11:31:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.insecure.ws/?p=95#comment-870</guid>
		<description>Hi Mark,
unfortunately this means your vmware version is more recent than the pach (the patch works fine)
However.. maybe you have ws 5.5 scripts (or binary) and server 1.x at the same time or something?
Here&#039;s vmmon version table:
#define VMMON_VERSION_GSX1      (3 &lt;&lt; 16 &#124; 0)
#define VMMON_VERSION_V3        (8 &lt;&lt; 16 &#124; 0)
#define VMMON_VERSION_V32       (10 &lt;&lt; 16 &#124; 0)
#define VMMON_VERSION_GSX2      (21 &lt;&lt; 16 &#124; 0)
#define VMMON_VERSION_V321      (30 &lt;&lt; 16 &#124; 0)
#define VMMON_VERSION_GSX25     (41 &lt;&lt; 16 &#124; 0)
#define VMMON_VERSION_GSX251    (42 &lt;&lt; 16 &#124; 0)
#define VMMON_VERSION_V4        (52 &lt;&lt; 16 &#124; 0)
#define VMMON_VERSION_V45       (79 &lt;&lt; 16 &#124; 0)
#define VMMON_VERSION_V452      (81 &lt;&lt; 16 &#124; 0)
#define VMMON_VERSION_GSX32     (85 &lt;&lt; 16 &#124; 0)
#define VMMON_VERSION_V5        (116 &lt;&lt; 16 &#124; 0)
#define VMMON_VERSION_V55       (137 &lt;&lt; 16 &#124; 0)
#define VMMON_VERSION_S1B1      (138 &lt;&lt; 16 &#124; 0)
#define VMMON_VERSION_V6        (161 &lt;&lt; 16 &#124; 0)

S1B1 is correct and is 138. 137 is ws 5.5

This is the part that detect vmware version running:
   switch (iocmd) {
      case IOCTL_VMX86_S1B1_VERSION:
         return VMMON_VERSION_S1B1;</description>
		<content:encoded><![CDATA[<p>Hi Mark,<br />
unfortunately this means your vmware version is more recent than the pach (the patch works fine)<br />
However.. maybe you have ws 5.5 scripts (or binary) and server 1.x at the same time or something?<br />
Here&#8217;s vmmon version table:<br />
#define VMMON_VERSION_GSX1      (3 &lt;&lt; 16 | 0)<br />
#define VMMON_VERSION_V3        (8 &lt;&lt; 16 | 0)<br />
#define VMMON_VERSION_V32       (10 &lt;&lt; 16 | 0)<br />
#define VMMON_VERSION_GSX2      (21 &lt;&lt; 16 | 0)<br />
#define VMMON_VERSION_V321      (30 &lt;&lt; 16 | 0)<br />
#define VMMON_VERSION_GSX25     (41 &lt;&lt; 16 | 0)<br />
#define VMMON_VERSION_GSX251    (42 &lt;&lt; 16 | 0)<br />
#define VMMON_VERSION_V4        (52 &lt;&lt; 16 | 0)<br />
#define VMMON_VERSION_V45       (79 &lt;&lt; 16 | 0)<br />
#define VMMON_VERSION_V452      (81 &lt;&lt; 16 | 0)<br />
#define VMMON_VERSION_GSX32     (85 &lt;&lt; 16 | 0)<br />
#define VMMON_VERSION_V5        (116 &lt;&lt; 16 | 0)<br />
#define VMMON_VERSION_V55       (137 &lt;&lt; 16 | 0)<br />
#define VMMON_VERSION_S1B1      (138 &lt;&lt; 16 | 0)<br />
#define VMMON_VERSION_V6        (161 &lt;&lt; 16 | 0)</p>
<p>S1B1 is correct and is 138. 137 is ws 5.5</p>
<p>This is the part that detect vmware version running:<br />
   switch (iocmd) {<br />
      case IOCTL_VMX86_S1B1_VERSION:<br />
         return VMMON_VERSION_S1B1;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.insecure.ws/2008/07/24/vmware-anspecific-specific-557-and-kernel-2626/comment-page-1#comment-869</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Wed, 09 Dec 2009 06:56:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.insecure.ws/?p=95#comment-869</guid>
		<description>It&#039;s not working, unfortunately. (expected v138, got v137)

Debian Lenny 5.0.3 with Kernel 2.6.26(-2-686) and VMware Server 1.0.9 or 1.0.10

For full details see:
http://pastebin.com/f8c10b0e

:(</description>
		<content:encoded><![CDATA[<p>It&#8217;s not working, unfortunately. (expected v138, got v137)</p>
<p>Debian Lenny 5.0.3 with Kernel 2.6.26(-2-686) and VMware Server 1.0.9 or 1.0.10</p>
<p>For full details see:<br />
<a href="http://pastebin.com/f8c10b0e" rel="nofollow">http://pastebin.com/f8c10b0e</a></p>
<p> <img src='http://insecure.ws/wp/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gomadtroll</title>
		<link>http://www.insecure.ws/2008/07/24/vmware-anspecific-specific-557-and-kernel-2626/comment-page-1#comment-842</link>
		<dc:creator>gomadtroll</dc:creator>
		<pubDate>Thu, 05 Nov 2009 00:36:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.insecure.ws/?p=95#comment-842</guid>
		<description>Thank you, thank you :-) Vmware WS 5.5.9 and Debian Lenny (kernel 2.6.26)+vmware-update-2.6.26-5.5.7. Spews a few errors during config.pl, it works though.

I have been using kernel 2.6.18 + WS 5.5.4 for &#039;quite some time&#039; and was glad to find a way to &#039;modernize&#039; a legacy piece of software.</description>
		<content:encoded><![CDATA[<p>Thank you, thank you <img src='http://insecure.ws/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Vmware WS 5.5.9 and Debian Lenny (kernel 2.6.26)+vmware-update-2.6.26-5.5.7. Spews a few errors during config.pl, it works though.</p>
<p>I have been using kernel 2.6.18 + WS 5.5.4 for &#8216;quite some time&#8217; and was glad to find a way to &#8216;modernize&#8217; a legacy piece of software.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stig</title>
		<link>http://www.insecure.ws/2008/07/24/vmware-anspecific-specific-557-and-kernel-2626/comment-page-1#comment-747</link>
		<dc:creator>stig</dc:creator>
		<pubDate>Sun, 05 Jul 2009 00:23:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.insecure.ws/?p=95#comment-747</guid>
		<description>It worked for vmware 1.0.9 and linux 2.6.26.  Thanks!

It seem every time I upgrade vmware I end up in a panic when the kernel modules don&#039;t compile.  Why can&#039;t vmware get their act together?</description>
		<content:encoded><![CDATA[<p>It worked for vmware 1.0.9 and linux 2.6.26.  Thanks!</p>
<p>It seem every time I upgrade vmware I end up in a panic when the kernel modules don&#8217;t compile.  Why can&#8217;t vmware get their act together?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: flobee</title>
		<link>http://www.insecure.ws/2008/07/24/vmware-anspecific-specific-557-and-kernel-2626/comment-page-1#comment-477</link>
		<dc:creator>flobee</dc:creator>
		<pubDate>Tue, 31 Mar 2009 22:23:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.insecure.ws/?p=95#comment-477</guid>
		<description>sorry, not on my system :-(
any ideas?

Using 2.6.x kernel build system.
make: Entering directory `/tmp/vmware-config4/vmmon-only&#039;
make -C /lib/modules/2.6.26-1-686/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. modules
make[1]: Entering directory `/usr/src/linux-headers-2.6.26-1-686&#039;
  CC [M]  /tmp/vmware-config4/vmmon-only/linux/driver.o
  CC [M]  /tmp/vmware-config4/vmmon-only/linux/driverLog.o
  CC [M]  /tmp/vmware-config4/vmmon-only/linux/hostif.o
  CC [M]  /tmp/vmware-config4/vmmon-only/common/comport.o
  CC [M]  /tmp/vmware-config4/vmmon-only/common/cpuid.o
  CC [M]  /tmp/vmware-config4/vmmon-only/common/hash.o
  CC [M]  /tmp/vmware-config4/vmmon-only/common/memtrack.o
  CC [M]  /tmp/vmware-config4/vmmon-only/common/phystrack.o
  CC [M]  /tmp/vmware-config4/vmmon-only/common/task.o
gcc-4.1: error trying to exec &#039;cc1plus&#039;: execvp: Datei oder Verzeichnis nicht gefunden
make[2]: *** [/tmp/vmware-config4/vmmon-only/common/task.o] Fehler 1
make[1]: *** [_module_/tmp/vmware-config4/vmmon-only] Fehler 2
make[1]: Leaving directory `/usr/src/linux-headers-2.6.26-1-686&#039;
make: *** [vmmon.ko] Fehler 2
make: Leaving directory `/tmp/vmware-config4/vmmon-only&#039;
Unable to build the vmmon module.

For more information on how to troubleshoot module-related problems, please 
visit our Web site at &quot;http://www.vmware.com/download/modules/modules.html&quot; and
&quot;http://www.vmware.com/support/reference/linux/prebuilt_modules_linux.html&quot;.

Execution aborted.

debian:~/vmware-update-2.6.26-5.5.7#</description>
		<content:encoded><![CDATA[<p>sorry, not on my system <img src='http://insecure.ws/wp/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /><br />
any ideas?</p>
<p>Using 2.6.x kernel build system.<br />
make: Entering directory `/tmp/vmware-config4/vmmon-only&#8217;<br />
make -C /lib/modules/2.6.26-1-686/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. modules<br />
make[1]: Entering directory `/usr/src/linux-headers-2.6.26-1-686&#8242;<br />
  CC [M]  /tmp/vmware-config4/vmmon-only/linux/driver.o<br />
  CC [M]  /tmp/vmware-config4/vmmon-only/linux/driverLog.o<br />
  CC [M]  /tmp/vmware-config4/vmmon-only/linux/hostif.o<br />
  CC [M]  /tmp/vmware-config4/vmmon-only/common/comport.o<br />
  CC [M]  /tmp/vmware-config4/vmmon-only/common/cpuid.o<br />
  CC [M]  /tmp/vmware-config4/vmmon-only/common/hash.o<br />
  CC [M]  /tmp/vmware-config4/vmmon-only/common/memtrack.o<br />
  CC [M]  /tmp/vmware-config4/vmmon-only/common/phystrack.o<br />
  CC [M]  /tmp/vmware-config4/vmmon-only/common/task.o<br />
gcc-4.1: error trying to exec &#8216;cc1plus&#8217;: execvp: Datei oder Verzeichnis nicht gefunden<br />
make[2]: *** [/tmp/vmware-config4/vmmon-only/common/task.o] Fehler 1<br />
make[1]: *** [_module_/tmp/vmware-config4/vmmon-only] Fehler 2<br />
make[1]: Leaving directory `/usr/src/linux-headers-2.6.26-1-686&#8242;<br />
make: *** [vmmon.ko] Fehler 2<br />
make: Leaving directory `/tmp/vmware-config4/vmmon-only&#8217;<br />
Unable to build the vmmon module.</p>
<p>For more information on how to troubleshoot module-related problems, please<br />
visit our Web site at &#8220;http://www.vmware.com/download/modules/modules.html&#8221; and<br />
&#8220;http://www.vmware.com/support/reference/linux/prebuilt_modules_linux.html&#8221;.</p>
<p>Execution aborted.</p>
<p>debian:~/vmware-update-2.6.26-5.5.7#</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 老李菜刀&#8217;s Blog » Blog Archive &#187; Debian lenny(AMD64)上安装VMwareServer 2.0 &#38; VMware Server 1.0.8</title>
		<link>http://www.insecure.ws/2008/07/24/vmware-anspecific-specific-557-and-kernel-2626/comment-page-1#comment-473</link>
		<dc:creator>老李菜刀&#8217;s Blog » Blog Archive &#187; Debian lenny(AMD64)上安装VMwareServer 2.0 &#38; VMware Server 1.0.8</dc:creator>
		<pubDate>Thu, 26 Mar 2009 14:41:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.insecure.ws/?p=95#comment-473</guid>
		<description>[...] aptitude install ia32-libs 如果是32位系统，这个就可以省了 5.http://www.insecure.ws/2008/07/24/vmware-anspecific-specific-557-and-kernel-2626 下载 vmware-update-2.6.26-5.5.7.gz这个附件 6.tar xvf VMware-server-1.0.8-126538.tar.gz tar [...]</description>
		<content:encoded><![CDATA[<p>[...] aptitude install ia32-libs 如果是32位系统，这个就可以省了 5.http://www.insecure.ws/2008/07/24/vmware-anspecific-specific-557-and-kernel-2626 下载 vmware-update-2.6.26-5.5.7.gz这个附件 6.tar xvf VMware-server-1.0.8-126538.tar.gz tar [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brad R</title>
		<link>http://www.insecure.ws/2008/07/24/vmware-anspecific-specific-557-and-kernel-2626/comment-page-1#comment-463</link>
		<dc:creator>Brad R</dc:creator>
		<pubDate>Sat, 14 Mar 2009 18:51:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.insecure.ws/?p=95#comment-463</guid>
		<description>Thank you VERY MUCH for this!

One note for others: when I first installed this and ran vmware-config.pl, I got the error message
error trying to exec &#039;cc1plus&#039;: execvp: No such file or directory

This means you need to install the g++ compiler.  (I had gcc but not g++.)  Once that was installed, it worked great!</description>
		<content:encoded><![CDATA[<p>Thank you VERY MUCH for this!</p>
<p>One note for others: when I first installed this and ran vmware-config.pl, I got the error message<br />
error trying to exec &#8216;cc1plus&#8217;: execvp: No such file or directory</p>
<p>This means you need to install the g++ compiler.  (I had gcc but not g++.)  Once that was installed, it worked great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hotz</title>
		<link>http://www.insecure.ws/2008/07/24/vmware-anspecific-specific-557-and-kernel-2626/comment-page-1#comment-460</link>
		<dc:creator>Hotz</dc:creator>
		<pubDate>Tue, 10 Mar 2009 08:18:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.insecure.ws/?p=95#comment-460</guid>
		<description>Thank you!</description>
		<content:encoded><![CDATA[<p>Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kpeter</title>
		<link>http://www.insecure.ws/2008/07/24/vmware-anspecific-specific-557-and-kernel-2626/comment-page-1#comment-456</link>
		<dc:creator>kpeter</dc:creator>
		<pubDate>Sat, 07 Mar 2009 06:52:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.insecure.ws/?p=95#comment-456</guid>
		<description>Thanx,

It work very mutch!

I try before any-any on, debian lenny 2.6.26-1 vmware server 1.0.8
I got “version mismatch vmmon module expecting 138,0 got 168.0″ problem

Thx agan, nice job.

PETER</description>
		<content:encoded><![CDATA[<p>Thanx,</p>
<p>It work very mutch!</p>
<p>I try before any-any on, debian lenny 2.6.26-1 vmware server 1.0.8<br />
I got “version mismatch vmmon module expecting 138,0 got 168.0″ problem</p>
<p>Thx agan, nice job.</p>
<p>PETER</p>
]]></content:encoded>
	</item>
</channel>
</rss>
