This page summarizes the steps to mount a windows shared folder in a Linux VMware guest machine, i.e. SUSE.
Setup shared folder
In Virtual Machine Settings windows, add shared folder.
https://api.kontext.tech/resource/5c7ef325-af56-5cea-a65d-b2f1b48280ab
Verify it in Linux guest machine
Run the following command line in your virtual machine:
/usr/bin/vmware-hgfsclient
This command will output the available shares:
https://api.kontext.tech/resource/9b74ff79-38e7-5ab7-b183-ada5f90ad920
As you can see in the above screenshot, I have added a share named python-bio.
Mount the share
Run the following command to mount it:
sudo vmhgfs-fuse -o nonempty -o allow_other .host:/python-bio /home/tangf/mounts/python-bio/
In my case, I am mounting share python-bio to folder /home/tangf/mounts/python-bio/.
Verify
You can then change directory to the mount folder and list the files in it using command ‘ls -alt’
https://api.kontext.tech/resource/a8a16b8e-b782-524e-987a-85bb2cf14518