Added file(1) command.
[libguestfs.git] / README
1 Libguestfs is a library for accessing and modifying guest disk images.
2 Amongst the things this is good for: making batch configuration
3 changes to guests, getting disk used/free statistics (see also:
4 virt-df), migrating between virtualization systems (see also:
5 virt-p2v), performing partial backups, performing partial guest
6 clones, cloning guests and changing registry/UUID/hostname info, and
7 much else besides.
8
9 Libguestfs uses Linux kernel and qemu code, and can access any type of
10 guest filesystem that Linux and qemu can, including but not limited
11 to: ext2/3/4, btrfs, FAT and NTFS, LVM, many different disk partition
12 schemes, qcow, qcow2, vmdk.
13
14 Libguestfs provides ways to enumerate guest storage (eg. partitions,
15 LVs, what filesystem is in each LV, etc.).  It can also run commands
16 in the context of the guest.  Also you can access filesystems over FTP.
17
18 Libguestfs is a library that can be linked with C and C++ management
19 programs (or management programs written in OCaml, Perl or Python).
20 You can also use it from shell scripts or the command line.
21
22 Libguestfs was written by Richard W.M. Jones (rjones@redhat.com).
23 For discussion please use the fedora-virt mailing list:
24
25   https://www.redhat.com/mailman/listinfo/fedora-virt
26
27
28 Requirements
29 ----------------------------------------------------------------------
30
31 - recent QEMU with vmchannel support
32
33 - febootstrap >= 1.2
34
35 - XDR, rpcgen
36
37 - Augeas (http://augeas.net/)
38
39 - perldoc (pod2man, pod2text) to generate the manual pages and
40 other documentation.
41
42 - (Optional) OCaml if you want to rebuild the generated files, and
43 also to build the OCaml bindings
44
45 - (Optional) local Fedora mirror
46
47 - (Optional) Perl if you want to build the perl bindings
48
49 - (Optional) Python if you want to build the python bindings
50
51 Running ./configure will check you have all the requirements installed
52 on your machine.
53
54
55 Building
56 ----------------------------------------------------------------------
57
58 Then make the daemon, library and root filesystem:
59
60   ./configure [--with-mirror=URI]
61   make
62
63 Use the optional --with-mirror parameter to specify the URI of a local
64 Fedora mirror.  See the discussion of the MIRROR parameter in the
65 febootstrap(8) manpage.
66
67 Finally run the tests:
68
69   make check
70
71 If everything works, you can install the library and tools by running
72 these commands as root:
73
74   make install
75
76
77 Notes on cross-architecture support
78 ----------------------------------------------------------------------
79
80 At the moment we basically don't support cross-architecture or
81 32-on-64.  This limits what is possible for some guests.  Filesystem
82 operations and FTP export will work fine, but running commands in
83 guests may not be possible.
84
85 To enable this requires work for cross-architecture and 32-on-64
86 support in febootstrap, fakeroot and fakechroot.
87
88 The daemon/ directory contains its own configure script.  This is so
89 that in future we will be able to cross-compile the daemon.
90
91
92 Mirroring tip
93 ----------------------------------------------------------------------
94
95 Having a local Fedora mirror makes a massive difference to the time it
96 takes to build and rebuild initramfs images.
97
98 Failing that, use squid to cache yum downloads, but read this first:
99 https://lists.dulug.duke.edu/pipermail/yum/2006-August/009041.html
100 (In brief, because yum chooses random mirrors each time, squid doesn't
101 work very well with default yum configuration.  To get around this,
102 choose a Fedora mirror which is close to you, set this with
103 './configure --with-mirror=[...]', and then proxy the whole lot
104 through squid by setting http_proxy environment variable).
105
106 You will also need to substantially increase the squid configuration
107 limits:
108 http://fedoraproject.org/wiki/Using_Mock_to_test_package_builds#Using_Squid_to_Speed_Up_Mock_package_downloads
109
110 IntelligentMirror is another possibility, although I couldn't get it
111 to work for me.
112
113
114 Copyright and license information
115 ----------------------------------------------------------------------
116
117 Copyright (C) 2009 Red Hat Inc.
118
119 The library is distributed under the LGPLv2+.  The programs are
120 distributed under the GPLv2+.  Please see the files COPYING and
121 COPYING.LIB for full license information.