Tuesday, October 02, 2012

Installing VMware Tools on Ubuntu Guest OS

VMware Tools are binaries that are guest OS dependent and need to be installed on the VM after the guest OS has been installed. The tools are required to see the IP addresses assigned for the network interfaces of the VM (among other things).

Following are the steps:

  1. Power on the VM.
  2. Once the guest OS has booted up, go to the VM > Guest > Install/Upgrade VMware Tools menu.
  3. This will put the VMware Tools directory under /media directory in Ubuntu.
  4. cd /media/VMware Tools
  5. cp /media/VMware Tools/VMware*tar.gz /tmp
  6. cd /tmp
  7. tar xvzf VMware*.tar.gz
  8. cd vmware-tools-distrib/
  9. sudo ./vmware-install.pl
  10. When the installation scripts promps for answers, just hit Enter since defaults are OK.

The above is based on: http://www.ubuntugeek.com/how-to-install-vmware-tools-in-ubuntu-10-04-lucid-lynx.html

No comments:

Popular micro services patterns

Here are some popular Microservice design patterns that a programmer should know: Service Registry  pattern provides a  central location  fo...