Vmware-Server 1.0.6 on Ubuntu Hardy without Any-Any-Patch
2008-08-20 by xpheas
Version 1.0.6 now works without the Any-Any-Patch.
There are still no binary-packeges available for Hardy, so we have to install it manually:
For Ubuntu-Server also install
Download und unpack VMware-Server:
Now we can start the install-script:
Finally we have to change the libgcc library:
There are still no binary-packeges available for Hardy, so we have to install it manually:
BASH-Code:
| sudo -s apt-get install build-essential linux-headers-`uname -r` |
For Ubuntu-Server also install
BASH-Code:
| apt-get install xinetd libxt6 zlib1g libxtst6 libxrender1 libx11-6 libx11-dev libxtst6 |
Download und unpack VMware-Server:
BASH-Code:
| wget http://... tar xfvz VMware-server-1.0.6-91891.tar.gz |
Now we can start the install-script:
BASH-Code:
| cd vmware-server-distrib
./vmware-install.pl |
Finally we have to change the libgcc library:
BASH-Code:
| cd /usr/lib/vmware/lib/ mv libgcc_s.so.1 libgcc_s.so.1.old ln -s /lib/libgcc_s.so.1 libgcc_s.so.1 |