<?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>mfinkler's Blog</title>
	<atom:link href="http://www.saarlinux.de/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.saarlinux.de/blog</link>
	<description></description>
	<lastBuildDate>Mon, 14 Dec 2009 10:54:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Kernel 2.6.32 und VMWare Player 3 (/tmp/vmware-root/modules/vmnet-only/vnetUserListener.c: In function ‘VNetUserListenerEventHandler’)</title>
		<link>http://www.saarlinux.de/blog/?p=36</link>
		<comments>http://www.saarlinux.de/blog/?p=36#comments</comments>
		<pubDate>Fri, 11 Dec 2009 09:07:10 +0000</pubDate>
		<dc:creator>mfinkler</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.saarlinux.de/blog/?p=36</guid>
		<description><![CDATA[Seit gestern läuft bei mir Kernel 2.6.32, und wie jedes Mal gibts Probleme mit den VMWare Produkten. Diesmal ist der Workaround allerdings einfacher. Gefunden habe ich den Hinweis im Blog von Chmouel Blog.
Beim Start vom VMWare Player poppt die Meldung auch, dass die Module neu erstellt werden müssen. Wenn man bestätigt gibt es einen Fehler [...]]]></description>
			<content:encoded><![CDATA[<p>Seit gestern läuft bei mir Kernel 2.6.32, und wie jedes Mal gibts Probleme mit den VMWare Produkten. Diesmal ist der Workaround allerdings einfacher. Gefunden habe ich den Hinweis im Blog von <a style="opacity: 1;" title="A link to home page" href="http://blog.chmouel.com/">Chmouel Blog.</a></p>
<p>Beim Start vom VMWare Player poppt die Meldung auch, dass die Module neu erstellt werden müssen. Wenn man bestätigt gibt es einen Fehler beim vmnet-only Modul.</p>
<p>Nachprüfen lässt sich das ganze wenn man auf der Konsole per &#8220;/usr/bin/vmplayer&#8221; startet und dort die Module neu kompilieren will. Es erscheint folgender Fehler:</p>
<blockquote><p>make[1]: Entering directory `/usr/src/linux-2.6.32&#8242;<br />
CC [M]  /tmp/vmware-root/modules/vmnet-only/driver.o<br />
CC [M]  /tmp/vmware-root/modules/vmnet-only/hub.o<br />
CC [M]  /tmp/vmware-root/modules/vmnet-only/userif.o<br />
CC [M]  /tmp/vmware-root/modules/vmnet-only/netif.o<br />
CC [M]  /tmp/vmware-root/modules/vmnet-only/bridge.o<br />
CC [M]  /tmp/vmware-root/modules/vmnet-only/filter.o<br />
CC [M]  /tmp/vmware-root/modules/vmnet-only/procfs.o<br />
CC [M]  /tmp/vmware-root/modules/vmnet-only/smac_compat.o<br />
CC [M]  /tmp/vmware-root/modules/vmnet-only/smac.o<br />
CC [M]  /tmp/vmware-root/modules/vmnet-only/vnetEvent.o<br />
CC [M]  /tmp/vmware-root/modules/vmnet-only/vnetUserListener.o<br />
/tmp/vmware-root/modules/vmnet-only/vnetUserListener.c: In function ‘VNetUserListenerEventHandler’:<br />
/tmp/vmware-root/modules/vmnet-only/vnetUserListener.c:240: error: ‘TASK_INTERRUPTIBLE’ undeclared (first use in this function)<br />
/tmp/vmware-root/modules/vmnet-only/vnetUserListener.c:240: error: (Each undeclared identifier is reported only once<br />
/tmp/vmware-root/modules/vmnet-only/vnetUserListener.c:240: error: for each function it appears in.)<br />
/tmp/vmware-root/modules/vmnet-only/vnetUserListener.c: In function ‘VNetUserListenerRead’:<br />
/tmp/vmware-root/modules/vmnet-only/vnetUserListener.c:282: error: ‘TASK_INTERRUPTIBLE’ undeclared (first use in this function)<br />
/tmp/vmware-root/modules/vmnet-only/vnetUserListener.c:282: error: implicit declaration of function ‘signal_pending’<br />
/tmp/vmware-root/modules/vmnet-only/vnetUserListener.c:282: error: implicit declaration of function ‘schedule’<br />
make[2]: *** [/tmp/vmware-root/modules/vmnet-only/vnetUserListener.o] Fehler 1<br />
make[1]: *** [_module_/tmp/vmware-root/modules/vmnet-only] Fehler 2<br />
make[1]: Leaving directory `/usr/src/linux-2.6.32&#8242;<br />
make: *** [vmnet.ko] Fehler 2<br />
make: Leaving directory `/tmp/vmware-root/modules/vmnet-only&#8217;</p></blockquote>
<p>Folgende Lösung funktioniert:</p>
<ul>
<li> cd /tmp</li>
</ul>
<ul>
<li> tar xf /usr/lib/vmware/modules/source/vmnet.tar</li>
</ul>
<ul>
<li> cd vmnet-only</li>
</ul>
<ul>
<li> vi vnetUserListener.c</li>
</ul>
<ul>
<li> in Zeile 37  (letzte Zeile unter #include) folgendes hinzufügen <strong>#include “compat_sched.h</strong><strong>“</strong></li>
<li>in englisch: add to line 37 <strong>#</strong><strong>include “compat_sched.h</strong><strong>“</strong></li>
</ul>
<ul>
<li> Datei speichern und beenden</li>
</ul>
<ul>
<li> cd /tmp</li>
</ul>
<ul>
<li>tar cf /usr/lib/vmware/modules/source/vmnet.tar vmnet-only</li>
</ul>
<ul>
<li>vmplayer neu starten, module kompilieren und siehe da, es geht <img src='http://www.saarlinux.de/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.saarlinux.de/blog/?feed=rss2&amp;p=36</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>VMWare Unity Mode ist schick und sinnvoll</title>
		<link>http://www.saarlinux.de/blog/?p=26</link>
		<comments>http://www.saarlinux.de/blog/?p=26#comments</comments>
		<pubDate>Fri, 11 Dec 2009 08:58:31 +0000</pubDate>
		<dc:creator>mfinkler</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.saarlinux.de/blog/?p=26</guid>
		<description><![CDATA[Vor 3 Wochen etwa hab ich den neuen VMWare Player 3 getestet.
Nachdem VMWare Erbarmen hatte und dem Player die Funktion gegeben hatte, Maschinen anlegen zu dürfen, brauche ich auf meinem Desktopsystem keinen Server mehr.
Positiv überrascht bin ich vom UnityMode!
Ich kann native Windowsfenster unter meinem Linux laufen lassen, die sich fast wie X Fenster verhalten. Es [...]]]></description>
			<content:encoded><![CDATA[<p>Vor 3 Wochen etwa hab ich den neuen VMWare Player 3 getestet.</p>
<p>Nachdem VMWare Erbarmen hatte und dem Player die Funktion gegeben hatte, Maschinen anlegen zu dürfen, brauche ich auf meinem Desktopsystem keinen Server mehr.</p>
<p>Positiv überrascht bin ich vom UnityMode!</p>
<p>Ich kann native Windowsfenster unter meinem Linux laufen lassen, die sich <span style="text-decoration: line-through;">fast</span> wie X Fenster verhalten. Es gibt die ein odere andere Anwendung, die man unter Linux einfach nicht anständig winen oder ersetzen kann (z.B. VMWare Infrastructure Client oder Internet Explorer <img src='http://www.saarlinux.de/blog/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> )</p>
<p>Hier ein Screeshot des UnityMode</p>
<p><a href="http://www.saarlinux.de/blog/wp-content/uploads/2009/12/unity_small2.jpg"><img class="alignnone size-full wp-image-31" title="Unity_small" src="http://www.saarlinux.de/blog/wp-content/uploads/2009/12/unity_small2.jpg" alt="Unity_small" width="800" height="500" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.saarlinux.de/blog/?feed=rss2&amp;p=26</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UMTS unter Linux mit Merlin XU780 nutzen</title>
		<link>http://www.saarlinux.de/blog/?p=14</link>
		<comments>http://www.saarlinux.de/blog/?p=14#comments</comments>
		<pubDate>Wed, 08 Apr 2009 06:46:40 +0000</pubDate>
		<dc:creator>mfinkler</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Merlin XU780]]></category>
		<category><![CDATA[UMTS]]></category>

		<guid isPermaLink="false">http://www.saarlinux.de/blog/?p=14</guid>
		<description><![CDATA[Nachdem ich bisher nur unzufriedenstellende Anleitungen/HowTos gefunden habe, hier mein Vorgehensweise:
1. Vorbereitungen
Der SIM Karte muss die PIN übergeben werden, das geschieht mit folgendem Perl Script:
lapli:/etc/udev/rules.d# vi /usr/bin/unlock-novatel-card.pl
#!/usr/bin/perl
use strict;
use warnings;
my $modem = &#8220;/dev/ttyUSB0&#8243;;
my $pin = &#8220;xxxx&#8220;;
$SIG{ALRM} = sub {
die(&#8221;timeout: no response from modem $modem\n&#8221;);
};
open(MODEM, &#8220;+&#60;&#8221;, $modem) or die(&#8221;can&#8217;t open modem $modem&#8221;);
alarm(10);
print(MODEM &#8220;AT+CPIN=\&#8221;$pin\&#8221;\n\r&#8221;);
while (&#60;MODEM&#62;) {
if (m/OK/) {
close(MODEM);
print(&#8221;PIN [...]]]></description>
			<content:encoded><![CDATA[<p>Nachdem ich bisher nur unzufriedenstellende Anleitungen/HowTos gefunden habe, hier mein Vorgehensweise:</p>
<h2><strong>1. Vorbereitungen</strong></h2>
<p>Der SIM Karte muss die PIN übergeben werden, das geschieht mit folgendem Perl Script:</p>
<blockquote><p>lapli:/etc/udev/rules.d# vi /usr/bin/unlock-novatel-card.pl<br />
#!/usr/bin/perl</p>
<p>use strict;<br />
use warnings;</p>
<p>my $modem = &#8220;/dev/ttyUSB0&#8243;;<br />
my $pin = &#8220;<span style="color: #ff0000;"><strong>xxxx</strong></span>&#8220;;</p>
<p>$SIG{ALRM} = sub {<br />
die(&#8221;timeout: no response from modem $modem\n&#8221;);<br />
};</p>
<p>open(MODEM, &#8220;+&lt;&#8221;, $modem) or die(&#8221;can&#8217;t open modem $modem&#8221;);<br />
alarm(10);<br />
print(MODEM &#8220;AT+CPIN=\&#8221;$pin\&#8221;\n\r&#8221;);<br />
while (&lt;MODEM&gt;) {<br />
if (m/OK/) {<br />
close(MODEM);<br />
print(&#8221;PIN accepted\n&#8221;);<br />
exit(0);<br />
}<br />
if (m/ERROR/) {<br />
close(MODEM);<br />
print(&#8221;PIN rejected\n&#8221;);<br />
exit(1);<br />
}<br />
}</p></blockquote>
<p>ACHTUNG: Die Pin steht hier im Klartext. Ist das nicht gewünscht, könnt ihr das Script erweitern und die Pin von &#8220;extern&#8221; beziehen.</p>
<p>Wenn ihr nun das Script ausführt, sollte die Karte benutzbar sein.</p>
<p>Doch warum jedes mal das ganze händig ausführen, wenns auch einfacher geht:</p>
<p>die UMTS Karte einstecken und die ID rausfinden:</p>
<blockquote><p>lapli:/# lsusb<br />
Bus 007 Device 002: ID <strong><span style="color: #00ff00;">1410</span>:<span style="color: #ff0000;">1430</span></strong> Novatel Wireless<br />
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub<br />
Bus 006 Device 002: ID 046d:c018 Logitech, Inc. Optical Wheel Mouse<br />
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub<br />
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub<br />
Bus 002 Device 002: ID 08ff:1600 AuthenTec, Inc. AES1600<br />
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub<br />
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub<br />
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub<br />
Bus 001 Device 003: ID 174f:5a31 Syntek<br />
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub</p></blockquote>
<p>Mit diesem Wissen können wir eine udev Regel anlegen:</p>
<blockquote><p>lapli:/etc/udev/rules.d# vi 99-novatel-xu870.rules</p></blockquote>
<p>Folgender Inhalt sollte die Datei haben</p>
<blockquote><p>ACTION==&#8221;add&#8221;, SYSFS{idProduct}==&#8221;<span style="color: #ff0000;"><strong>1430</strong></span>&#8220;, SYSFS{idVendor}==&#8221;<span style="color: #00ff00;"><strong>1410</strong></span>&#8220;, KERNEL==&#8221;ttyUSB0&#8243;, RUN+=&#8221;<strong><span style="color: #0000ff;">/usr/bin/unlock-novatel-card.pl</span></strong>&#8220;</p></blockquote>
<h2>2. Verbindung aufbauen</h2>
<p>Bis vor kurzem habe ich auf Scripte gesetzt, mitlerweile habe ich ein Tool gefunden, welches den Verbindungsaufbau erleichtert <a title="UMTSmon" href="http://umtsmon.sourceforge.net/">UMTSmon </a></p>
<p>Downloadbar unter folgendem Link:  <a title="Download" href="http://sourceforge.net/project/showfiles.php?group_id=159777">Download</a></p>
<p>1. entpacken</p>
<p>2. Programm starten</p>
<blockquote><p>tar xvf umtsmon-0.10alpha.i386.tar.gz</p>
<p>cd umtsmon-0.10alpha</p>
<p>./umtsmon</p></blockquote>
<p>bzw</p>
<blockquote><p>sudo ./umtsmon</p></blockquote>
<p>wobei es keinen Unterschied macht, UMTSmon wird nach dem root Passwort fragen</p>
<p><img src="file:///tmp/moz-screenshot.jpg" alt="" /></p>
<div class="mceTemp">
<dl id="attachment_15" class="wp-caption alignnone" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://www.saarlinux.de/blog/wp-content/uploads/2009/04/04.png"><img class="size-medium wp-image-15" title="UMTSmon Start" src="http://www.saarlinux.de/blog/wp-content/uploads/2009/04/04-300x190.png" alt="UMTSmon" width="300" height="190" /></a></dt>
</dl>
</div>
<p>Nun muss nur noch ein Profil angelegt werden (bei mir ist schon eins aktiv).</p>
<p>Dazu unter Verbindungen den Menüpunkt &#8220;Profile bearbeiten&#8221; auswählen und ein neues anlegen. Wichtig ist nur der richtige APN, Benutzername und Passwort waren bei mir egal, aber irgendwas musste eingetragen werden</p>
<div class="mceTemp">
<dl id="attachment_16" class="wp-caption alignleft" style="width: 502px;">
<dt class="wp-caption-dt"><a href="http://www.saarlinux.de/blog/wp-content/uploads/2009/04/05.png"><img class="size-full wp-image-16" title="UMTmon Profil" src="http://www.saarlinux.de/blog/wp-content/uploads/2009/04/05.png" alt="UMTmon Profil" width="492" height="523" /></a></dt>
</dl>
</div>
<p>Eine Übersicht der APNs findet ihr bei <a title="Teletarif" href="http://www.teltarif.de/i/gprs-config.html">Teletarif</a></p>
<h2>3. Fertig <img src='http://www.saarlinux.de/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </h2>
]]></content:encoded>
			<wfw:commentRss>http://www.saarlinux.de/blog/?feed=rss2&amp;p=14</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>VMWare Server 2 und Kernel 2.6.29 &#8211; Unable to build the vmmon module</title>
		<link>http://www.saarlinux.de/blog/?p=5</link>
		<comments>http://www.saarlinux.de/blog/?p=5#comments</comments>
		<pubDate>Fri, 27 Mar 2009 08:30:51 +0000</pubDate>
		<dc:creator>mfinkler</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.saarlinux.de/blog/?p=5</guid>
		<description><![CDATA[Kaum installiert man einen neuen Kernel, schon geht die Fixerei los. VMWare Server 2 lässt sich nicht installieren und quittiert mit folgender Meldung
debian:/install/VMWare/vmware-server-distrib# vmware-config.pl
Making sure services for VMware Server are stopped.
Stopping VMware autostart virtual machines:
Virtual machines                                                   failed
Stopping VMware management services:
VMware Virtual Infrastructure Web Access
VMware Server Host Agent                                           failed
Stopping VMware services:
VMware Authentication Daemon                                        done
Virtual machine communication [...]]]></description>
			<content:encoded><![CDATA[<p>Kaum installiert man einen neuen Kernel, schon geht die Fixerei los. VMWare Server 2 lässt sich nicht installieren und quittiert mit folgender Meldung</p>
<blockquote><p>debian:/install/VMWare/vmware-server-distrib# vmware-config.pl<br />
Making sure services for VMware Server are stopped.</p>
<p>Stopping VMware autostart virtual machines:<br />
Virtual machines                                                   failed<br />
Stopping VMware management services:<br />
VMware Virtual Infrastructure Web Access<br />
VMware Server Host Agent                                           failed<br />
Stopping VMware services:<br />
VMware Authentication Daemon                                        done<br />
Virtual machine communication interface                             done<br />
Virtual machine monitor                                             done<br />
Bridged networking on /dev/vmnet0                                   done<br />
Host network detection                                              done<br />
DHCP server on /dev/vmnet1                                          done<br />
Host-only networking on /dev/vmnet1                                 done<br />
Bridged networking on /dev/vmnet2                                   done<br />
DHCP server on /dev/vmnet8                                          done<br />
NAT service on /dev/vmnet8                                          done<br />
Host-only networking on /dev/vmnet8                                 done<br />
Virtual ethernet                                                    done</p>
<p>None of the pre-built vmmon modules for VMware Server is suitable for your<br />
running kernel.  Do you want this program to try to build the vmmon module for<br />
your system (you need to have a C compiler installed on your system)? [yes]</p>
<p>Using compiler &#8220;/usr/bin/gcc&#8221;. Use environment variable CC to override.</p>
<p>What is the location of the directory of C header files that match your running<br />
kernel? [/lib/modules/2.6.29/build/include]</p>
<p>Extracting the sources of the vmmon module.</p>
<p>Building the vmmon module.</p>
<p>Using 2.6.x kernel build system.<br />
make: Entering directory `/tmp/vmware-config0/vmmon-only&#8217;<br />
make -C /lib/modules/2.6.29/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. modules<br />
make[1]: Entering directory `/usr/src/linux-2.6.29&#8242;<br />
CC [M]  /tmp/vmware-config0/vmmon-only/linux/driver.o<br />
In file included from /tmp/vmware-config0/vmmon-only/linux/driver.c:31:<br />
/tmp/vmware-config0/vmmon-only/./include/compat_wait.h:78: error: conflicting types for ‘poll_initwait’<br />
include/linux/poll.h:67: error: previous declaration of ‘poll_initwait’ was here<br />
In file included from /tmp/vmware-config0/vmmon-only/./common/vmx86.h:31,<br />
from /tmp/vmware-config0/vmmon-only/linux/driver.h:29,<br />
from /tmp/vmware-config0/vmmon-only/linux/driver.c:101:<br />
/tmp/vmware-config0/vmmon-only/./include/x86apic.h:97:1: warning: &#8220;APIC_BASE_MSR&#8221; redefined<br />
In file included from /usr/src/linux-2.6.29/arch/x86/include/asm/fixmap_32.h:29,<br />
from /usr/src/linux-2.6.29/arch/x86/include/asm/fixmap.h:5,<br />
from /usr/src/linux-2.6.29/arch/x86/include/asm/apic.h:8,<br />
from /usr/src/linux-2.6.29/arch/x86/include/asm/smp.h:13,<br />
from include/linux/smp.h:36,<br />
from include/linux/topology.h:33,<br />
from include/linux/mmzone.h:767,<br />
from include/linux/gfp.h:4,<br />
from include/linux/kmod.h:22,<br />
from include/linux/module.h:13,<br />
from /tmp/vmware-config0/vmmon-only/./include/compat_module.h:27,<br />
from /tmp/vmware-config0/vmmon-only/linux/driver.c:26:<br />
/usr/src/linux-2.6.29/arch/x86/include/asm/apicdef.h:132:1: warning: this is the location of the previous definition<br />
/tmp/vmware-config0/vmmon-only/linux/driver.c: In function ‘LinuxDriverSyncCallOnEachCPU’:<br />
/tmp/vmware-config0/vmmon-only/linux/driver.c:1423: error: too many arguments to function ‘smp_call_function’<br />
/tmp/vmware-config0/vmmon-only/linux/driver.c: In function ‘LinuxDriver_Ioctl’:<br />
/tmp/vmware-config0/vmmon-only/linux/driver.c:1987: error: ‘struct task_struct’ has no member named ‘euid’<br />
/tmp/vmware-config0/vmmon-only/linux/driver.c:1987: error: ‘struct task_struct’ has no member named ‘uid’<br />
/tmp/vmware-config0/vmmon-only/linux/driver.c:1988: error: ‘struct task_struct’ has no member named ‘fsuid’<br />
/tmp/vmware-config0/vmmon-only/linux/driver.c:1988: error: ‘struct task_struct’ has no member named ‘uid’<br />
/tmp/vmware-config0/vmmon-only/linux/driver.c:1989: error: ‘struct task_struct’ has no member named ‘egid’<br />
/tmp/vmware-config0/vmmon-only/linux/driver.c:1989: error: ‘struct task_struct’ has no member named ‘gid’<br />
/tmp/vmware-config0/vmmon-only/linux/driver.c:1990: error: ‘struct task_struct’ has no member named ‘fsgid’<br />
/tmp/vmware-config0/vmmon-only/linux/driver.c:1990: error: ‘struct task_struct’ has no member named ‘gid’<br />
/tmp/vmware-config0/vmmon-only/linux/driver.c:2007: error: too many arguments to function ‘smp_call_function’<br />
make[2]: *** [/tmp/vmware-config0/vmmon-only/linux/driver.o] Fehler 1<br />
make[1]: *** [_module_/tmp/vmware-config0/vmmon-only] Fehler 2<br />
make[1]: Leaving directory `/usr/src/linux-2.6.29&#8242;<br />
make: *** [vmmon.ko] Fehler 2<br />
make: Leaving directory `/tmp/vmware-config0/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/go/unsup-linux-products&#8221; and<br />
&#8220;http://www.vmware.com/go/unsup-linux-tools&#8221;.</p>
<p>Execution aborted.</p></blockquote>
<p>Datei <a href="http://www.saarlinux.de/blog/wp-content/uploads/2009/03/vmware-server-modules-2629tar.gz">vmware-server-modules-2629</a> runterladen und nach &#8220;vmware-server-distrib/lib/modules/source/&#8221; entpacken und neu installieren.</p>
<p>Download the file  <a href="http://www.saarlinux.de/blog/wp-content/uploads/2009/03/vmware-server-modules-2629tar.gz">vmware-server-modules-2629</a> and extract it to &#8220;vmware-server-distrib/lib/modules/source/&#8221; and then reinstall.</p>
<p>Was ich selbst noch als wichtig empfinde, den Autostart rauszunehmen, unter meinem Debian mache ich das wiefolgt:</p>
<p>To change the autostart use following command:</p>
<blockquote><p>find /etc/ | grep rc | grep S | grep vmware | xargs -I &#8216;{}&#8217; rm -f &#8216;{}&#8217;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.saarlinux.de/blog/?feed=rss2&amp;p=5</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
	</channel>
</rss>
