Raring includes a newer version of libc6 -- now up to 2.17. This new version appears to be binary incompatible with vmware-gksu, the backend elevation tool shipped with Player. Fortunately, it's (relatively) easy to get around this by invoking Player's frontend utilities with good old sudo.
First, install VMware Player the normal way. The bundle will unpack and get written to appropriate places. What will fail are:
* attempts to compile the kernel modules
* attempts to install additional components (such as VMware Tools for guests)
Modules. You will not receive any notice of failure. Instead, the attempts just quit.
To compile the modules, run:
REMEMBER: You will need to repeat this each time you update your kernel.
Tools. Attempts will throw an error after the components are downloaded. Manual installation is required.
Obtain the tools component from http://softwareupdate.vmware.com/cds...esktop/player/. Here:
Extract the component from the tar file and install it:
First, install VMware Player the normal way. The bundle will unpack and get written to appropriate places. What will fail are:
* attempts to compile the kernel modules
* attempts to install additional components (such as VMware Tools for guests)
Modules. You will not receive any notice of failure. Instead, the attempts just quit.
To compile the modules, run:
Code:
sudo vmware-modconfig --console --install-all
Tools. Attempts will throw an error after the components are downloaded. Manual installation is required.
Obtain the tools component from http://softwareupdate.vmware.com/cds...esktop/player/. Here:
- select the subdirectory for the version of Player you've installed
- select the next subdirectory (a numeric string)
- select the linux subdirectory
- select the packages subdirectory
- download the tools component appropriate for the guest you plan to create; choose i386 or x86_64 based on the bitness of the guest, not the host
Extract the component from the tar file and install it:
Code:
cd [I]/path/to/download/location[/I] tar -xvf vmware-tools*tar --wildcards *.component --to-stdout >tools sudo vmware-installer --console --install-component=tools
Comment