Last active
September 10, 2016 14:35
-
-
Save trodemaster/5f50613991267b236590 to your computer and use it in GitHub Desktop.
Install supported vmware tools for Ubuntu 14.04
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/sh | |
# run with sudo | |
cd /tmp | |
wget http://packages.vmware.com/tools/keys/VMWARE-PACKAGING-GPG-DSA-KEY.pub | |
wget http://packages.vmware.com/tools/keys/VMWARE-PACKAGING-GPG-RSA-KEY.pub | |
apt-key add VMWARE-PACKAGING-GPG-DSA-KEY.pub | |
apt-key add VMWARE-PACKAGING-GPG-RSA-KEY.pub | |
sh -c "echo deb http://packages.vmware.com/tools/esx/5.5u2/ubuntu precise main > /etc/apt/sources.list.d/vmware-tools.list" | |
apt-get update | |
apt-get install vmware-tools-esx-nox -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment