Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expand VirtioFS instructions for linux guests #35

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion guest-support/linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,10 @@ $ sudo mkdir [mount point]
$ sudo mount -t virtiofs share [mount point]
```

Where `[mount point]` is the desired destination path. For example: `/media/share`.
Where `[mount point]` is the desired destination path. For example: `/media/share`. Note the `share` name above: this is the
exact literal, and all shared folders will appear under it.

Also note: you might need to restart the VM if you've added the first shared directory while the VM was running.

You can also modify `/etc/fstab` and add the following line to automatically mount the share on startup:

Expand Down