Created
March 28, 2015 19:23
-
-
Save bdwyertech/3507bc39b38f0b15351a to your computer and use it in GitHub Desktop.
Kali Linux VMware Tools Installation Script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Kali VMware Tools Installation Script | |
# Brian Dwyer - Intelligent Digital Services - 03/28/15 | |
# Check for VMware Tools Tarball | |
if [[ ! $(ls /media/cdrom/VMwareTools*.tar.gz 2>/dev/null) ]] ; then | |
echo 'Cannot find VMware Tools... Click Install VMware Tools in the GUI before running this!' | |
exit 1 | |
fi | |
# Install Prerequisites | |
apt-get install git gcc make linux-headers-$(uname -r) | |
cd /tmp && git clone https://github.com/rasa/vmware-tools-patches.git | |
cd vmware-tools-patches | |
cp /media/cdrom/VMwareTools*.tar.gz downloads/ | |
./untar-and-patch-and-compile.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment