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.
11 lines
262 B
Markdown
11 lines
262 B
Markdown
|
3 years ago
|
# Mount host shared folder
|
||
|
|
|
||
|
|
* 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
|
||
|
|
```
|