Installing VMware-Server on my AMD64 box running on Ubuntu Feisty

I successfully installed VMware-Server on my laptop using this link. I thought that THAT was it. So, I decided to follow the same instructions - this time - on an AMD64 machine(the on I use at work) with a not-so-fresh Ubuntu install. Unfortunately, I ran into some tiny bumps along the way.

I don't know why these errors occurred in the first place AND I can't give a valid explanation how these fixes(the ones I found by googling) got the installation process to work. But, if you're in a hurry, then these tips might be helpful.

First, I encountered an error while compiling:
gcc: error trying to exec 'cc1plus': execvp: No such file or directory

I got this fixed by installing build-essential. This is definitely something that I should always remember everytime I need to build anything, at least only if I'm on Ubuntu.

sudo apt-get install build-essentail


Second, errors occurred when vmware was trying to generate SSL keys. It seems to look for `/etc/vmware/ssl/rui.key` and `/etc/vmware/ssl/rui.crt`.

The fix is quite obvious but at that time it took me a couple of minutes of googling just to find a suitable fix. And, the fix is just to create those files by using `touch`.

sudo touch /etc/vmware/ssl/rui.key
sudo touch /etc/vmware/ssl/rui.crt


Lastly, I encountered an error after I input my serial number. I was pretty sure that it's valid. My hunch was that something else was causing the vmware installer to flag my serial number as invalid. So again, I turned to ask guidance from the Almighty... Google.

Lo and behold, all I needed to do was to install the ia32-libs package.

sudo apt-get install ia32-libs

That's it. I currently have an OpenBSD4.1 guest OS on my VMware-Server.

No comments: