VMTools InstallESXserver:
VM (tab drop-down menu)
Guest
Install/Upgrade VMtools
login on console Endian firewall:
** Substitute VM to the name of the VMWare archive.
Type:
- cd
- mkdir /mnt/cdrom
- mkdir vmtools
- cd vmtools
- mount /dev/cdrom /mnt/cdrom
- cp /mnt/cdrom/VM[TAB] . (space fullstop means to copy to my current location which is /vmtools)
- umount /dev/cdrom
- tar -zxf VM[TAB]
- ll
- cd vmw[TAB]
- ll
- ./vm[TAB]
**
Change to no for GCC and Kernal Options All other Will be Having vmware-tools start on boot:I hacked up some init scripts to have vmware tools start reliably on boot time. Probably not the best way, but it works.
Edit the /etc/rc.d/rc.ipac and add a reference to a vmware startup script.
Change :
echo "Setting up ip accounting"
/etc/rc.d/helper/writeipac.pl
/usr/sbin/fetchipac -S
exit 0
to:
echo "Setting up ip accounting"
/etc/rc.d/helper/writeipac.pl
/usr/sbin/fetchipac -S
/etc/rc.d/init.d/rc.vmware
exit 0
Save and exit the file. Next, create the vmware startup script, reboot:
echo /etc/init.d/vmware-tools start > /etc/rc.d/init.d/rc.vmware
chmod 755 /etc/rc.d/init.d/rc.vmware
reboot
Log back into SSH after the reboot, wait for a good 2 - 3 minutes for all the startup scripts to complete, and verify vmware-tools was installed properly:
root@efw-1351283599:~ # ps -ef |grep vm
root 5120 2 0 12:20 ? 00:00:00 [vmmemctl]
root 5270 1 0 12:20 ? 00:00:00 /usr/sbin/vmtoolsd
root 5526 5517 0 12:24 pts/0 00:00:00 grep vm
Goodluck