You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
401 B
Markdown
12 lines
401 B
Markdown
# Mount host shared folder
|
|
|
|
* [Reference](https://docs.vmware.com/en/VMware-Workstation-Pro/17/com.vmware.ws.using.doc/GUID-AB5C80FE-9B8A-4899-8186-3DB8201B1758.html)
|
|
* Prerquisites : [vmtools](./vmtools.md)
|
|
|
|
```sh
|
|
# create mount point folder
|
|
$ mkdir ~/shares
|
|
|
|
# mount the host shared folder to home/shares
|
|
$ sudo /usr/bin/vmhgfs-fuse .host:/ /home/mitech/shares -o subtype=vmhgfs-fuse,allow_other
|
|
``` |