Comment on Share Folder Between Windows Guest and Linux Host in KVM using virtiofs by Krzysiek

In reply to <a href="https://www.debugpoint.com/kvm-share-folder-windows-guest/#comment-7737">Harold Chattaway</a>. For completeness: My distro does not contain virtiofsd. I've cloned https://gitlab.com/virtio-fs/virtiofsd.git built it with cargo build and copied resulting binary from target/release/virtiofsd to /usr/local/bin Then I've modified filesystem section of domain.xml to look like this: <pre class="ql-syntax" spellcheck="false"><filesystem type="mount" accessmode="passthrough">  <driver type="virtiofs"/>  <binary path="/usr/local/bin/virtiofsd"/>  <source dir="/home/user/tmp"/>  <target dir="home_tmp"/>  <alias name="fs0"/>  <address type="pci" domain="0x0000" bus="0x06" slot="0x00" function="0x0"/> </filesystem> </pre>...