File: UserModeLinux-HOWTO-5.html

package info (click to toggle)
user-mode-linux-doc 20020320-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,580 kB
  • ctags: 300
  • sloc: makefile: 32
file content (155 lines) | stat: -rw-r--r-- 5,751 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
 <META NAME="GENERATOR" CONTENT="LinuxDoc-Tools 0.9.18">
 <TITLE>User Mode Linux HOWTO : Sharing Filesystems between Virtual Machines</TITLE>
 <LINK HREF="UserModeLinux-HOWTO-6.html" REL=next>
 <LINK HREF="UserModeLinux-HOWTO-4.html" REL=previous>
 <LINK HREF="UserModeLinux-HOWTO.html#toc5" REL=contents>
</HEAD>
<BODY>
<A HREF="UserModeLinux-HOWTO-6.html">Next</A>
<A HREF="UserModeLinux-HOWTO-4.html">Previous</A>
<A HREF="UserModeLinux-HOWTO.html#toc5">Contents</A>
<HR>
<H2><A NAME="shared_fs"></A> <A NAME="s5">5.</A> <A HREF="UserModeLinux-HOWTO.html#toc5">Sharing Filesystems between Virtual Machines</A></H2>

<P> </P>

<H2><A NAME="ss5.1">5.1</A> <A HREF="UserModeLinux-HOWTO.html#toc5.1">A warning</A>
</H2>

<P>Don't attempt to share filesystems simply by booting two UMLs from the
same file.  That's the same thing as booting two physical machines
from a shared disk.  It will result in filesystem corruption.</P>


<H2><A NAME="ss5.2">5.2</A> <A HREF="UserModeLinux-HOWTO.html#toc5.2">Using layered block devices</A>
</H2>

<P>The way to share a filesystem between two virtual machines is to use
the copy-on-write (COW) layering capability of the ubd block driver.  As of
2.4.6-2um, the driver supports layering a read-write private device
over a read-only shared device.  A machine's writes are stored in the
private device, while reads come from either device - the private one
if the requested block is valid in it, the shared one if not.  Using
this scheme, the majority of data which is unchanged is shared between
an arbitrary number of virtual machines, each of which has a much
smaller file containing the changes that it has made.  With a large
number of UMLs booting from a large root filesystem, this leads to a
huge disk space saving.  It will also help performance, since the host
will be able to cache the shared data using a much smaller amount of
memory, so UML disk requests will be served from the host's memory
rather than its disks.  </P>

<P> </P>
<P>To add a copy-on-write layer to an existing block device file, simply
add the name of the COW file to the appropriate ubd switch:
<BLOCKQUOTE><CODE>
<PRE>
ubd0=root_fs_cow,root_fs_debian_22
</PRE>
</CODE></BLOCKQUOTE>

where 'root_fs_cow' is the private COW file and 'root_fs_debian_22' is
the existing shared filesystem.  The COW file need not exist.  If it
doesn't, the driver will create and initialize it.  Once the COW file
has been initialized, it can be used on its own on the command line:
<BLOCKQUOTE><CODE>
<PRE>
ubd0=root_fs_cow
</PRE>
</CODE></BLOCKQUOTE>

The name of the backing file is stored in the COW file header, so it
would be redundant to continue specifying it on the command line.</P>


<H2><A NAME="ss5.3">5.3</A> <A HREF="UserModeLinux-HOWTO.html#toc5.3">Note!</A>
</H2>

<P>When checking the size of the COW file in order to see the gobs of
space that you're saving, make sure you use 'ls -ls' to see the actual
disk consumption rather than the length of the file.  The COW file is
sparse, so the length will be very different from the disk usage.
Here is a 'ls -l' of a COW file and backing file from one boot and
shutdown:
<BLOCKQUOTE><CODE>
<PRE>
ls -l cow.debian debian2.2
-rw-r--r--    1 jdike    jdike    492504064 Aug  6 21:16 cow.debian
-rwxrw-rw-    1 jdike    jdike    537919488 Aug  6 20:42 debian2.2
</PRE>
</CODE></BLOCKQUOTE>

Doesn't look like much saved space, does it?  Well, here's 'ls -ls':
<BLOCKQUOTE><CODE>
<PRE>
ls -ls cow.debian debian2.2
   880 -rw-r--r--    1 jdike    jdike    492504064 Aug  6 21:16 cow.debian
525832 -rwxrw-rw-    1 jdike    jdike    537919488 Aug  6 20:42 debian2.2
</PRE>
</CODE></BLOCKQUOTE>

Now, you can see that the COW file has less than a meg of disk, rather
than 492 meg.</P>


<H2><A NAME="ss5.4">5.4</A> <A HREF="UserModeLinux-HOWTO.html#toc5.4">Another warning</A>
</H2>

<P>Once a filesystem is being used as a readonly backing file for a COW
file, do not boot directly from it or modify it in any way.  Doing so
will invalidate any COW files that are using it.  The mtime and size
of the backing file are stored in the COW file header at its creation,
and they must continue to match.  If they don't, the driver will
refuse to use the COW file.</P>

<P> </P>
<P>If you attempt to evade this restriction by changing either the
backing file or the COW header by hand, you will get a corrupted
filesystem.</P>

<P> </P>
<P>Among other things, this means that upgrading the distribution in a
backing file and expecting that all of the COW files using it will see
the upgrade will not work.  </P>



<H2><A NAME="ss5.5">5.5</A> <A HREF="UserModeLinux-HOWTO.html#toc5.5">uml_moo : Merging a COW file with its backing file</A>
</H2>

<P>Depending on how you use UML and COW devices, it may be advisable to
merge the changes in the COW file into the backing file every once in
a while.</P>

<P> </P>
<P>The utility that does this is uml_moo.  Its usage is 
<BLOCKQUOTE><CODE>
<PRE>
uml_moo  &lt;COW file>   &lt;new backing file> 
</PRE>
</CODE></BLOCKQUOTE>

There's no need to specify the backing file since that information is
already in the COW file header.  If you're paranoid, boot the new
merged file, and if you're happy with it, move it over the old backing
file. </P>

<P> </P>
<P>uml_moo is installed with the UML deb and RPM.  If you didn't install
UML from one of those packages, you can also get it from the 
<A HREF="http://user-mode-linux.sourceforge.net/dl-sf.html#UML utilities">UML utilities</A>  tar file in tools/moo.</P>






<HR>
<A HREF="UserModeLinux-HOWTO-6.html">Next</A>
<A HREF="UserModeLinux-HOWTO-4.html">Previous</A>
<A HREF="UserModeLinux-HOWTO.html#toc5">Contents</A>
</BODY>
</HTML>