Install vmware tools in linux virtual machine

By // No comments:
Installing vmware tools in Redhat (CentOS)
 If you have installed Redhat or CentOS in your virtual machine with the minimal software installing vmware tools require installing ifconfig command
ifconfig command can be found in net-tools package to install it run
# yum install net-tools
Load the vmware-tools CD in the virtual machine, unpack the vmware-distribution folder to the desktop or /tmp folder and then run ./installer.pl file inside the vmware-tools-distrib folder
# mkdir /mnt/cdrom
# mount /dev/cdrom /mnt/cdrom
# cp /mnt/cdrom/VMwareTools-{version}.tar.gz /tmp/
e.g.
# cp /mnt/cdrom/VMwareTools-9.4.11-2400950.tar.gz  /tmp/
# cd /tmp
# tar -zxvf VMwareTools-9.4.11-2400950.tar.gz
# cd vmware-tools-distrib
# ./vmware-install.pl

if you are not a root user, append sudo in your commands
An alternative way to install vmware-tools is install open-vm-tools
# yum install net-tools
# yum install open-vm-tools
start the vmware tools service
# systemctl start vmtoolsd.service

Installing vmware tools in Ubuntu
# sudo apt-get install net-tools
# sudo apt-get install open-vm-tools
# systemctl start vmtoolsd.service