https://bugzilla.novell.com/show_bug.cgi?id=633274 https://bugzilla.novell.com/show_bug.cgi?id=633274#c2 --- Comment #2 from Dominique Leuenberger <dimstar@opensuse.org> 2011-04-19 09:38:29 UTC --- in 113, vmmemctl was merged into the main kernel, and thus had been dropped from the open-vm-tools package. The init script though still needs to load the module for correct functioning. The 'problem' though is that the module in the kernel is renamed, in 2.6.34 kernel (as shipped with 11.3) the module is called vmware_balloon.ko (in later kernels it is renamed toi vmw_balloon.ko). This patch should fix this issue. Index: /etc/init.d/vmtoolsd =================================================================== --- /etc/init.d/vmtoolsd (revision 8e9e01641ae7c4290d8b6544570a7604) +++ /etc/init.d/vmtoolsd (working copy) @@ -69,7 +69,7 @@ fi modprobe vmblock mount -t vmblock none /proc/fs/vmblock/mountPoint - modprobe vmmemctl + modprobe vmware_ballon modprobe vmsync ## Start daemon with startproc(8). If this fails ## the return value is set appropriately by startproc. @@ -91,7 +91,7 @@ umount /proc/fs/vmblock/mountPoint || : modprobe -r vmblock || : modprobe -r vmsync || : - modprobe -r vmmemctl || : + modprobe -r vmware_balloon || : # Remember status and be verbose rc_status -v -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.