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

PowerShell: Quick Snippet to Purge All ‘Orphaned’ Records of Resources in VMM

The Script: # removeMissingResourcesInVmm.ps1 $noConfirmations=$false # $true = no confirmations, $false=confirm each stale record removal…

Hyper-V Virtual Machines Won’t Start on Restore or Live Migration

Symptom: Cluster resource of type 'Virtual Machine' in clustered role failed. The error code was…

Hyper-V: De-register Storage File Share and/or Removing Paths from VMM

# vmmDeregisterFileSharePath.ps1 $pathSearch='\\DECOMMISSIONED-FILESHARE008' $unregister=$true $remove=$false $fileShares=Get-SCStorageFileShare|?{$_.SharePath -like "*$pathSearch*"} $thisLibraryServer = Get-SCLibraryServer if($unregister){$fileShares|%{Unregister-SCStorageFileShare -StorageFileShare $_ -LibraryServer…