Login VSphere
Choose the VM
> Guest > Install VMware Tools
Conect via Console VMWare vSphere (not SSH), run the script:
copy/paste the script to vminst.sh
#!/bin/bash
mkdir /mnt/cdrom
mount /dev/cdrom /mnt/cdrom
VMT=`/bin/ls /mnt/cdrom/VM*.gz |cut -d “/” -f4`
cp -v /mnt/cdrom/${VMT} /tmp && cd /tmp/ && tar -zxvf ${VMT}
cd vmware-tools-distrib/
./vmware-install.pl –default
/etc/init.d/network restart
umount /dev/cdrom
rm -rfv /tmp/vm* && rm -rfv /tmp/VM*
EXECUTAR :
bash vminst.sh
VM>Guest>End Vmware Tools Install
Works on Red Hat/CentOS 6.x

Leave a Reply

Your email address will not be published. Required fields are marked *