It is very important that you install VMware Tools in the guest operating system. With the VMware Tools installed VMs support significantly faster performance, time synchronization, and other enhanced features. Below are the steps to install the VMware Tools on CentOS.

1. Install the prerequisites into your CentOS. If asked any questions take all of the defaults.

[root@localhost ~]# yum install perl gcc make kernel-headers kernel-devel -y

2. Next attach the VMware Tools using the vSphere client.

3. Mount and extract the VMware Tools to a temporary location.

[root@localhost tmp]# mount /dev/cdrom /mnt
[root@localhost tmp]# cd /mnt
[root@localhost tmp]# ls
VMwareTools-8.3.7-341836.tar.gz  yum.log
[root@localhost tmp]# mkdir /etc/temp1
[root@localhost tmp]# tar xzvf VMwareTools-8.3.7-341836.tar.gz -C /etc/temp1/

4. CD to the directory where the tools were extracted and start install.

[root@localhost tmp]# cd /etc/temp1
[root@localhost temp1]# cd vmware-tools-distrib
[root@localhost vmware-tools-distrib]# ls
bin  doc  etc  FILES  INSTALL  installer  lib  vmware-install.pl
[root@localhost vmware-tools-distrib]# ./vmware-install.pl

5. During the install take all of the defaults, then reboot your VM. Enjoy!

Related Posts

Application Containers

Docker container management using Rancher

What is container management and why to use it? A container management platform is a solution used to o create cloud-native, distributed applications and package legacy applications that were not originally designed for virtual environments. Read more…

CentOS

Install MySQL Galera Cluster on Centos 7

What is MySQL cluster and how to use it? MySQL Galera Cluster is a synchronous multi-master cluster, available on Linux only, and only supports the XtraDB/InnoDB storage engines . It is designed to provide high Read more…

Application Containers

Installing Docker on Centos 7

What are Docker containers and how to use them? Docker is a software technology providing containers. Docker provides an additional layer of abstraction and automation of operating-system-level virtualization on Windows and Linux. Docker uses the Read more…