Working with shared folders in VMware Workstation and Debian guest
July 1 2017128 words, ~1 min. read
vmware-workstation, debian, shared-folders
The following steps helped me to share folders from VMware workstation running on Windows and Debian guest.
On VMware workstation
- Select the virtual machine, where folders to be shared
- Right-click and select
Settingsfrom the drop-down menu - Go to
Optionstab and selectShared Folders - Ensure to select the radio option
Always enabled - Press the button titled
Add...; follow the wizard and provide values forHost pathandName
On Debian guest
- Ensure to install
open-vm-tools-desktoporopen-vm-tools - Ensure the command,
vmware-hgfsclient, lists shared folders (configured previously in VMware workstation) - To user mount the shared folder, use the syntax
vmhgfs-fuse .host:/$(vmware-hgfsclient) ~/<mountpoint>. For example,vmhgfs-fuse .host:/$(vmware-hgfsclient)/Users/sb/Dropbox ~/Dropbox - To system mount, use the syntax
sudo mount -t fuse.vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other - To unmount, use
sudo umount <mountpoint>