Skip to content

Instantly share code, notes, and snippets.

@bdwyertech
Created March 28, 2015 19:23
Show Gist options
  • Save bdwyertech/3507bc39b38f0b15351a to your computer and use it in GitHub Desktop.
Save bdwyertech/3507bc39b38f0b15351a to your computer and use it in GitHub Desktop.
Kali Linux VMware Tools Installation Script
#!/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