Installing VMWare Tools from a Red Hat Shell
Installing and Upgrading VMware tools on Red Hat is very straightforward. In the steps below I will demonstrate what to do assuming that you are happy to install under /opt and accepting the defaults during the installation. There are some advanced features you can choose to enable during installation as well as choosing different locations for the software to find key files.From vSphere right click the Virtual Machine, guest, Install/Upgrade VMWare Tools. Next run the commands below.
- mkdir -p /mnt/cdrom - This creates the directory /mnt/cdrom which we will mount the VMtools installer to
- mount /dev/cdrom /mnt/cdrom -This mountes the media the virtual machine see's as it's CDROM drive to the directory /mnt/cdrom
- cd /opt
- cp /mnt/cdrom/VMversionname.tar.gz /opt
- tar -xvzf VMversionname.tar.gz
- cd vmware-tools-distrib
- ./VMware-install.pl
- Hit enter to accept each default answer through the installation