Skip to content

Instantly share code, notes, and snippets.

@matinrco
Last active January 11, 2019 12:07
Show Gist options
  • Save matinrco/b88e2a939774e79314928479c29443da to your computer and use it in GitHub Desktop.
Save matinrco/b88e2a939774e79314928479c29443da to your computer and use it in GitHub Desktop.
Mount open-vm-tools shared folders in guest

Mount locally

vmhgfs-fuse .host:/$(vmware-hgfsclient) ~/some_mountpoint

Mount globally

sudo mount -t fuse.vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other

Mount globally & persistent

Add the following line to your /etc/fstab :
.host:/ /mnt/hgfs fuse.vmhgfs-fuse allow_other 0 0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment