
Vmware Player provides good options for networking like Bridge network, host only and Natted. I prefer to use Natted, as all Guest OS can communicate with each other, with Host OS and with Internet too.
When I started installation of VMware Player in Ubuntu 13.10, I got some errors. When I checked "dmesg" I found that there was segmentation fault error with one of the library file.
I searched on Internet, and then I found that the problem was not with any library file but with the Kernel.
Ubuntu 13.04 is having kernel 3.11.0-12-generic, while VMware do not support this kernel version. So finally searching from some of the forum I found below steps to overcome issue of VMware Player installation on Ubuntu 13.10.
First you need to download VMware player for Ubuntu from Vmware website. I got "VMware-Player-5.0.2-1031769.x86_64.bundle" for me.
Now before we start installation, we need to install prerequisites. Use below command.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install build-essential linux-headers-$(uname -r) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo chmod a+x VMware-Player-5.0.2-1031769.x86_64.bundle && sudo ./VMware-Player-5.0.2-1031769.x86_64.bundle |
Now follow below steps to solve your issue.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo su | |
cd /tmp | |
wget https://github.com/willysr/SlackHacks/raw/master/vmware/vmware-3.11/vmblock.3.11.patch | |
cd /usr/lib/vmware/modules/source | |
tar -xvf vmblock.tar | |
cd vmblock-only | |
patch -p1 < /tmp/vmblock.3.11.patch | |
cd .. | |
tar -cvf vmblock.tar vmblock-only/ | |
vmware-modconfig --console --install-all |
Hope this will help, who wants to run VMware Player in Ubuntu 13.10.
Tried tr. method for fixin vmplayer on ubuntu 13.1 64bit.
ReplyDeleteThe actual vm install fails with a number of python errors
and the subsequent patch procedure (not too surprisingly) also fails
I re-wrote yr patch procedure as a bash script with some extra checks built in
to ensure that I did not make a stupid blunder ;-)
If you are interested, I have recorded all of the process via 2>&1 | tee build.log
TTNF
R