VMware Fusion Shared Folders
Shared folders on Linux use FUSE
Â
Mounting Shared Folders in a Linux Guest (vmware.com)
Â
Enumerate shares from the Linux command line
You can list the shares with a CLI utility:
> vmware-hgfsclient
apl_marius_lsg
...
Â
Bash script to mount select shared folders on Linux
#!/bin/bash
/usr/bin/vmhgfs-fuse .host:/apl_marius_lsg ~/apl_marius_lsg -o subtype=vmhgfs-fuse,allow_other,allow_root
allow_other - other users can access the shared fuse mount
allow_root - useful if you have elevated processes
If you want to share folders, you cannot select softlinks (or other virtual file-systems on the host OS)
Â