Libvirt: Difference between revisions
imported>Onny mNo edit summary |
imported>Onny Add mounting example |
||
| Line 132: | Line 132: | ||
services.spice-webdavd.enable = true; | services.spice-webdavd.enable = true; | ||
</nowiki>}} | </nowiki>}} | ||
List available shares for the guest | |||
<syntaxhighlight lang="bash"> | |||
curl localhost:9843 | |||
</syntaxhighlight> | |||
Mount an example share called <code>myshare</code> to the mountpoint <code>myshare</code> | |||
<syntaxhighlight lang="bash"> | |||
mkdir myshare | |||
mount -t davfs http://localhost:9843/myshare myshare | |||
</syntaxhighlight> | |||
== Clients == | == Clients == | ||