3

So far I have resorted to sharing host folders with the KVM guests via Samba. Now, reading up a bit on it, it appears that "VirtFS (Plan 9 folder sharing over Virtio - I/O virtualization framework)" offers an easier way.

However, I was unable to find on above linked page whether this method allows concurrent access to the same shared folder for multiple KVM guests.

Gilles 'SO- stop being evil'
  • 807,993
  • 194
  • 1,674
  • 2,175
0xC0000022L
  • 16,189
  • 24
  • 102
  • 168

1 Answers1

3

Main goal of 9p filesystem is to provide easy and efficient way to share filesystems between host/guest and guests (compared to nfs and shared block devices).

By default no cache used in linux implementation of 9p filesystem (read kernel documentation), so it can be used to share same filesystem between guests.