Skip to content

Instantly share code, notes, and snippets.

@deanjerkovich
Forked from ChaosData/unfuckup.sh
Created May 17, 2016 21:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deanjerkovich/89619dd54cd94a26bce10ae4a3794f4d to your computer and use it in GitHub Desktop.
Save deanjerkovich/89619dd54cd94a26bce10ae4a3794f4d to your computer and use it in GitHub Desktop.
fix vmware shared folders in ubuntu 16.04
#!/bin/sh
sudo apt-get install open-vm-tools-desktop git build-essential
git clone https://github.com/vmware/open-vm-tools.git
cd open-vm-tools/open-vm-tools/
sudo apt-get install autoconf libtool
autoreconf -i
sudo apt-get install libmspack-dev libglib2.0-dev libprocps4-dev libdumbnet-dev
./configure --without-x --without-pam --without-ssl --without-icu
make MODULES=vmhgfs
sudo insmod modules/linux/vmhgfs/vmhgfs.ko
sudo mkdir /mnt/hgfs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment