Skip to content

Instantly share code, notes, and snippets.

@Niklas9
Last active October 1, 2018 16:03
Show Gist options
  • Save Niklas9/86dbfc187fa4e01cc69d8fd351574425 to your computer and use it in GitHub Desktop.
Save Niklas9/86dbfc187fa4e01cc69d8fd351574425 to your computer and use it in GitHub Desktop.
VMware fusion share folder between VM and macOS
#!/bin/sh
# more info - https://github.com/vmware/open-vm-tools/issues/199
# 1st share the folder in the VM settings in vmware fusion
# 2nd install vmware tools
sudo apt-get install open-vm-tools
# 3rd create the mount point
sudo mkdir ~/repos
# 4th mount
sudo /usr/bin/vmhgfs-fuse .host:/local-dev-repos ~/repos -o subtype=vmhgfs-fuse,allow_other
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment