Last active
February 7, 2018 12:48
-
-
Save jrial/1161f74472c10cc1f0dd6eabafe60b8a to your computer and use it in GitHub Desktop.
Installing VBox Guest Additions on Debian
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
pushd /tmp && | |
sudo apt-get update && \ | |
sudo apt-get dist-upgrade -y && \ | |
sudo apt-get install -y build-essential linux-headers-`uname -r` module-assistant && \ | |
sudo module-assistant prepare && \ | |
mkdir VMT && | |
pushd VMT && | |
cp -r /media/`whoami`/VMware\ Tools/* . && | |
tar zxf VMwareTools-*.tar.gz && | |
pushd vmware-tools-distrib && | |
sudo ./vmware-install.pl && | |
popd && | |
popd && | |
rm -Rf VMT && | |
popd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment