I can't install VMwarePlayer 4.0.3 on Ubuntu 12.04 64Bit. For Version 4.0.2, I found a script that I have to run to patch VMware Player for it to work on my system to properly, and after that I could install 4.0.2.
Is there an similar solution for Version 4.0.3?
I ran into the same problem, and I was able to make the same patch work by editing a version number in the script which applies it.
Whether you want to try this yourself depends on how risk-averse you are. But hey, your VMware Player install is already broken, right? I figured worst-case scenario I could uninstall and reinstall version 4.0.2.
I based this on the instructions I found here: vmware player compile issue. To boil it down to the simplest steps:
plreqver=4.0.2
and change it toplreqver=4.0.3
sudo ./patch-modules_3.2.0.sh
If you have run the same patch on version 4.0.2 before, you may get this error: "/usr/lib/vmware/modules/source/.patched found. You have already patched your sources. Exiting". If you see that, just delete the
/usr/lib/vmware/modules/source/.patched
file and try again.Please remember to have patch packet installed:
apt-get install patch
. My default installation of latest Kubuntu didn't have it, so I got error:Sometimes, the version check does not properly. In this case, you could remove it by deleting the 4 lines following "unset product", all of them begin with "[". This again may increse the risk of breaking something.
Works for different Versions, i tested it with version 4.0.4.744019:
Run
vmware-installer -l
in a console to get version number.Edit the file
patch-modules_3.2.0.sh
:Look for the line plreqver=4.0.2 and change it to plreqver=[copy and paste version number, just the three digit x.x.x ]
Remove the following lines:
Now run the patch via
sudo sh patch-modules_3.2.0.sh