Habe gerade den VMware Player 3.1.6 unter 12.04 (32bit-Architektur) wie folgt ans Laufen bekommen:
VMware Player 3.1.6 (build-744570) und Patch wie hier beschrieben geladen und installiert mit
1 2 | sudo sh VMware-Player-3.1.6-744570.i386.bundle sudo bash patch-modules_3.4.0.sh |
Der Patch scheitert am VMware Blocking Filesystem kernel module.
Analog zu einem früheren Tipp habe ich manuell (weil ich nicht weiß wie's automatisch geht) in /usr/lib/vmware/modules/source/vmblock.tar in der Datei /vmblock-only/linux/filesystem.c die Zeile
1 | rootDentry = d_make_root(rootInode); |
ersetzt durch
1 2 3 4 5 | #if LINUX_VERSION_CODE < KERNEL_VERSION(3, 4, 0) rootDentry = d_alloc_root(rootInode); #else rootDentry = d_make_root(rootInode); #endif |
Anschließend kompiliert der Player beim Start auch das Blocking Filesystem Modul.