1virt-diff(1)                Virtualization Support                virt-diff(1)
2
3
4

NAME

6       virt-diff - Differences between files in two virtual machines
7

SYNOPSIS

9        virt-diff [--options] -d domain1 -D domain2
10
11        virt-diff [--options] -a disk1.img [-a ...] -A disk2.img [-A ...]
12

DESCRIPTION

14       "virt-diff" lists the differences between files in two virtual machines
15       or disk images.  The usual use case is to show the changes in a VM
16       after it has been running for a while, by taking a snapshot, running
17       the VM, and then using this tool to show what changed between the new
18       VM state and the old snapshot.
19
20       This tool will find differences in filenames, file sizes, checksums,
21       extended attributes, file content and more from a virtual machine or
22       disk image.  However it does not look at the boot loader, unused space
23       between partitions or within filesystems, "hidden" sectors and so on.
24       In other words, it is not a security or forensics tool.
25
26       To specify two guests, you have to use the -a or -d option(s) for the
27       first guest, and the -A or -D option(s) for the second guest.  The
28       common case is:
29
30        virt-diff -a old.img -A new.img
31
32       or using names known to libvirt:
33
34        virt-diff -d oldguest -D newguest
35

OPTIONS

37       --help
38           Display brief help.
39
40       -a file
41       --add file
42           Add file which should be a disk image from the first virtual
43           machine.  If the virtual machine has multiple block devices, you
44           must supply all of them with separate -a options.
45
46           The format of the disk image is auto-detected.  To override this
47           and force a particular format use the --format=.. option.
48
49       -a URI
50       --add URI
51           Add a remote disk.  See "ADDING REMOTE STORAGE" in guestfish(1).
52
53       --all
54           Same as --extra-stats --times --uids --xattrs.
55
56       --atime
57           The default is to ignore changes in file access times, since those
58           are unlikely to be interesting.  Using this flag shows atime
59           differences as well.
60
61       -A file
62       -A URI
63           Add a disk image from the second virtual machine.
64
65       --blocksize=512
66       --blocksize=4096
67       --blocksize
68           This parameter sets the sector size of the disk image.  It affects
69           all explicitly added subsequent disks after this parameter.  Using
70           --blocksize with no argument switches the disk sector size to the
71           default value which is usually 512 bytes.  See also
72           "guestfs_add_drive_opts" in guestfs(3).
73
74       --checksum
75       --checksum=crc|md5|sha1|sha224|sha256|sha384|sha512
76           Use a checksum over file contents to detect when regular files have
77           changed content.
78
79           With no argument, this defaults to using md5.  Using an argument,
80           you can select the checksum type to use.  If the flag is omitted
81           then file times and size are used to determine if a file has
82           changed.
83
84       -c URI
85       --connect URI
86           If using libvirt, connect to the given URI.  If omitted, then we
87           connect to the default libvirt hypervisor.
88
89           If you specify guest block devices directly (-a), then libvirt is
90           not used at all.
91
92       --csv
93           Write out the results in CSV format (comma-separated values).  This
94           format can be imported easily into databases and spreadsheets, but
95           read "NOTE ABOUT CSV FORMAT" below.
96
97       --dir-links
98           The default is to ignore changes in the number of links in
99           directory entries, since those are unlikely to be interesting.
100           Using this flag shows changes to the nlink field of directories.
101
102       --dir-times
103           The default is to ignore changed times on directory entries, since
104           those are unlikely to be interesting.  Using this flag shows
105           changes to the time fields of directories.
106
107       -d guest
108       --domain guest
109           Add all the disks from the named libvirt guest, as the first guest.
110           Domain UUIDs can be used instead of names.
111
112       -D guest
113           Add all the disks from the named libvirt guest, as the second
114           guest.  Domain UUIDs can be used instead of names.
115
116       --echo-keys
117           When prompting for keys and passphrases, virt-diff normally turns
118           echoing off so you cannot see what you are typing.  If you are not
119           worried about Tempest attacks and there is no one else in the room
120           you can specify this flag to see what you are typing.
121
122       --extra-stats
123           Display extra stats.
124
125       --format=raw|qcow2|..
126       --format
127           The default for the -a/-A option is to auto-detect the format of
128           the disk image.  Using this forces the disk format for -a/-A
129           options which follow on the command line.  Using --format with no
130           argument switches back to auto-detection for subsequent -a/-A
131           options.
132
133           For example:
134
135            virt-diff --format=raw -a disk.img [...]
136
137           forces raw format (no auto-detection) for disk.img.
138
139            virt-diff --format=raw -a disk.img --format -a another.img [...]
140
141           forces raw format (no auto-detection) for disk.img and reverts to
142           auto-detection for another.img.
143
144           If you have untrusted raw-format guest disk images, you should use
145           this option to specify the disk format.  This avoids a possible
146           security problem with malicious guests (CVE-2010-3851).
147
148       -h
149       --human-readable
150           Display file sizes in human-readable format.
151
152       --key SELECTOR
153           Specify a key for LUKS, to automatically open a LUKS device when
154           using the inspection.  "ID" can be either the libguestfs device
155           name, or the UUID of the LUKS device.
156
157           --key "ID":key:KEY_STRING
158               Use the specified "KEY_STRING" as passphrase.
159
160           --key "ID":file:FILENAME
161               Read the passphrase from FILENAME.
162
163       --keys-from-stdin
164           Read key or passphrase parameters from stdin.  The default is to
165           try to read passphrases from the user by opening /dev/tty.
166
167           If there are multiple encrypted devices then you may need to supply
168           multiple keys on stdin, one per line.
169
170       --times
171           Display time fields.
172
173       --time-days
174           Display time fields as days before now (negative if in the future).
175
176           Note that 0 in output means "up to 1 day before now", or that the
177           age of the file is between 0 and 86399 seconds.
178
179       --time-relative
180           Display time fields as seconds before now (negative if in the
181           future).
182
183       --time-t
184           Display time fields as seconds since the Unix epoch.
185
186       --uids
187           Display UID and GID fields.
188
189       -v
190       --verbose
191           Enable verbose messages for debugging.
192
193       -V
194       --version
195           Display version number and exit.
196
197       -x  Enable tracing of libguestfs API calls.
198
199       --xattrs
200           Display extended attributes.
201

NOTE ABOUT CSV FORMAT

203       Comma-separated values (CSV) is a deceptive format.  It seems like it
204       should be easy to parse, but it is definitely not easy to parse.
205
206       Myth: Just split fields at commas.  Reality: This does not work
207       reliably.  This example has two columns:
208
209        "foo,bar",baz
210
211       Myth: Read the file one line at a time.  Reality: This does not work
212       reliably.  This example has one row:
213
214        "foo
215        bar",baz
216
217       For shell scripts, use "csvtool" (https://github.com/Chris00/ocaml-csv
218       also packaged in major Linux distributions).
219
220       For other languages, use a CSV processing library (eg. "Text::CSV" for
221       Perl or Python’s built-in csv library).
222
223       Most spreadsheets and databases can import CSV directly.
224

EXIT STATUS

226       This program returns 0 if successful, or non-zero if there was an
227       error.
228

SEE ALSO

230       guestfs(3), guestfish(1), virt-cat(1), virt-copy-out(1), virt-ls(1),
231       virt-tar-out(1), http://libguestfs.org/.
232

AUTHOR

234       Richard W.M. Jones http://people.redhat.com/~rjones/
235
237       Copyright (C) 2009-2020 Red Hat Inc.
238

LICENSE

240       This program is free software; you can redistribute it and/or modify it
241       under the terms of the GNU General Public License as published by the
242       Free Software Foundation; either version 2 of the License, or (at your
243       option) any later version.
244
245       This program is distributed in the hope that it will be useful, but
246       WITHOUT ANY WARRANTY; without even the implied warranty of
247       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
248       General Public License for more details.
249
250       You should have received a copy of the GNU General Public License along
251       with this program; if not, write to the Free Software Foundation, Inc.,
252       51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
253

BUGS

255       To get a list of bugs against libguestfs, use this link:
256       https://bugzilla.redhat.com/buglist.cgi?component=libguestfs&product=Virtualization+Tools
257
258       To report a new bug against libguestfs, use this link:
259       https://bugzilla.redhat.com/enter_bug.cgi?component=libguestfs&product=Virtualization+Tools
260
261       When reporting a bug, please supply:
262
263       •   The version of libguestfs.
264
265       •   Where you got libguestfs (eg. which Linux distro, compiled from
266           source, etc)
267
268       •   Describe the bug accurately and give a way to reproduce it.
269
270       •   Run libguestfs-test-tool(1) and paste the complete, unedited output
271           into the bug report.
272
273
274
275guestfs-tools-1.47.2              2021-07-22                      virt-diff(1)
Impressum