Posted On March 31, 2019

How to Install VMware Tools on Centos 7

kimconnect 0 comments
blog.KimConnect.com >> Virtualization >> How to Install VMware Tools on Centos 7
su -
yum install gcc gcc-c++ make binutils -y
yum update kernel
reboot
--------
su -
yum install kernel-headers kernel-PAE-devel
uname -rs
--------
copy tar file over to temp drive then cd into it
--------
sudo ./vmware-install.pl

Leave a Reply

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

Related Post

Virtual Machine Manager (VMM) Error ID: 1730

Symptom: $vmName='bad-guestvm' $vm = Get-SCVirtualMachine -Name $vmName Read-SCVirtualMachine -VM $vm Read-SCVirtualMachine : The selected action…

How To Setup ClamAV Antivirus Scanner in Kubernetes

Assumptions: A Kubernetes cluster is already setupThese are installed prior: Helm, MetalLB Load Balancer,A static…

PowerShell: Find Guest VMs Associated with a Certain Storage Path

# findGuestMvsByStorage.ps1 $storagePath='\\SMBSERVER009' function getAllGuestVms($clusterName){ try{ Import-Module FailoverClusters $clusterName=if($clusterName){ $clustername }else{ (get-cluster).name } $allHyperVHosts={(Get-ClusterNode -Cluster…