Is there some built-in way to share files between Xen guests? I don't currently need to share the actual images, just some data files.
Asked
Active
Viewed 3,217 times
3 Answers
3
Do you mean between Xen and the host or between different guests?
If guests, I don't think there is something provided but you should probably use NFS as it is the best supported file system that supports a decent number of permissions and attributes but assumes a trusted network.

Mike McQuaid
- 9,615
- 6
- 33
- 38
1
I ran into this same issue and my solution was to add an extra virtual drive to each guest which pointed to a shared lvm or device.
So xvda3
was pointed at /dev/md0
in the guest configuration file. You could just as easily use /dev/vg0/lg0
for an logical volume.

Slava Vedenin
- 58,326
- 13
- 40
- 59

Vorell
- 11
- 1
1

Waltharius
- 29
- 1
-
That's like saying you can use a USB key to share files between Xen guests. – Blairo Nov 21 '12 at 11:35