How to Install VMware Tools on Ubuntu Edgy Eft : Linux
|
The first thing that is important is that you will need to know is that you have to install the compilation utilities, which aren’t installed by default. Run these commands to get you started:
sudo apt-get install build-essential
sudo apt-get install linux-headers-`uname -r`
The first command installs gcc and all the compiler utilities. The second command installs the header files for your currently running kernel. Notice that the ` is the one next to the 1 key on your keyboard.
Now you’ll want to navigate to the VM \ Install VMware Tools menu:
This will mount the vmware tools in Ubuntu so that you can begin the install. To install the tools, run the following commands:
cp /cdrom/*.gz /tmp/
cd /tmp
tar xvzf VM*.gz
cd vmware*
sudo ./vmware-install.pl
Select all of the defaults. It will prompt you that you need to compile the module for your system. Select yes and continue.
When you are all done, reboot your virtual machine, and that’s all there is to it.
0 comments:
Post a Comment