Ich versuche, VMware mit den Anweisungen unter https://help.ubuntu.com/community/VMware/Player zu installieren
Ich erhalte eine Fehlermeldung, die mich auffordert, in eine Protokolldatei zu schauen, die Folgendes enthält:
Extracting the vmmon source from "/usr/lib/vmware/modules/source/vmmon.tar".
Successfully extracted the vmmon source.
Building module with command "/usr/bin/make -j4 -C /tmp/modconfig-GoVdrH/vmmon-only auto-build HEADER_DIR=/lib/modules/4.15.0-22-generic/build/include CC=/usr/bin/gcc IS_GCC_3=no"
Failed to build vmmon. Failed to execute the build command.
Um herauszufinden, was genau falsch war, habe ich vmware-modconfig --console --install-all
die Befehlszeile ausgeführt und dabei folgende Fehler festgestellt:
./arch/x86/include/asm/processor-flags.h:39:0: note: this is the location of the previous definition
#define CR3_PCID_MASK 0xFFFull
^
/tmp/modconfig-3S1CBa/vmmon-only/linux/driver.c:256:12: error: ‘struct timer_list’ has no member named ‘data’
tscTimer.data = 0;
unsigned int lockedPages = global_page_state(NR_PAGETABLE) +
^~~~~~~~~~~~~~~~~
global_numa_state
/tmp/modconfig-3S1CBa/vmmon-only/linux/driver.c: In function ‘init_module’:
/tmp/modconfig-3S1CBa/vmmon-only/linux/driver.c:338:4: error: implicit declaration of function ‘init_timer’; did you mean ‘init_timers’? [-Werror=implicit-function-declaration]
init_timer(&tscTimer);
^~~~~~~~~~
init_timers
/tmp/modconfig-3S1CBa/vmmon-only/linux/hostif.c: In function ‘HostIF_InitUptime’:
init_timers
/tmp/modconfig-3S1CBa/vmmon-only/linux/hostif.c:1754:31: error: assignment from incompatible pointer type [-Werror=incompatible-pointer-types]
uptimeState.timer.function = HostIFUptimeResyncMono;
LinuxDriverSyncReadTSCs(uint64 *delta) // OUT: TSC max - TSC min
^~~~~~~~~~~~~~~~~~~~~~~
cc1: some warnings being treated as errors
cc1: some warnings being treated as errors
scripts/Makefile.build:332: recipe for target '/tmp/modconfig-3S1CBa/vmmon-only/linux/hostif.o' failed
make[2]: *** [/tmp/modconfig-3S1CBa/vmmon-only/linux/hostif.o] Error 1
Makefile:110: recipe for target 'vmmon.ko' failed
make: *** [vmmon.ko] Error 2
Wie kann man das Problem beheben oder implizite Funktionsdeklarationen und inkompatible Zeigertypen nicht als Fehler betrachten?
Oder eine einfachere Methode, um die neueste VMware am 18.04 zu installieren?
Hinweis: Ein anderer Fehler als bei VMWare Workstation Pro 12 unter Ubuntu 16.04 kann vmmon nicht kompilieren
Antworten:
Installieren Sie die neueste Version 14.1.2 . Der Fehler wurde behoben. Siehe hier . Hier ist der Download-Link.
quelle
Ich habe eine Lösung gefunden und eine Skriptdatei erstellt, die auf den Github-Quellen von mkucebek basiert .
Sie müssen eine Datei mit diesem Inhalt erstellen und jedes Mal ausführen, wenn dies erforderlich ist (normalerweise, wenn Sie einen neuen Kernel installieren):
Dann müssen Sie nur noch VMware Workstation starten, ohne Module zu erstellen.
quelle
git branch -a
und checken Sie mit ausgit checkout
. Das Entfernen und Verknüpfenlibz.so.1
und Neustarten des VMware-Dienstes ist für mich nicht erforderlich.Dies funktioniert für mich unter Fedora 30 und Workstation 15.1.0
quelle