Fix UPDATES and host_cpu in configure.ac.
[libguestfs.git] / guestfish.pod
1 =encoding utf8
2
3 =head1 NAME
4
5 guestfish - the libguestfs filesystem interactive shell
6
7 =head1 SYNOPSIS
8
9  guestfish [--options] [commands]
10
11  guestfish -i libvirt-domain
12
13  guestfish -i disk-image(s)
14
15 =head1 EXAMPLES
16
17 =head2 From shell scripts
18
19 Create a new C</etc/motd> file in a guest:
20
21  guestfish <<_EOF_
22  add disk.img
23  run
24  mount /dev/VolGroup00/LogVol00 /
25  write_file /etc/motd "Hello users" 0
26  _EOF_
27
28 List the LVs in a guest:
29
30  guestfish <<_EOF_
31  add disk.img
32  run
33  lvs
34  _EOF_
35
36 =head2 On the command line
37
38 List the LVM PVs in a guest image:
39
40  guestfish add disk.img : run : pvs
41
42 Remove C</boot/grub/menu.lst> (in reality not such a great idea):
43
44  guestfish --add disk.img \
45    --mount /dev/VolGroup00/LogVol00 \
46    --mount /dev/sda1:/boot \
47    rm /boot/grub/menu.lst
48
49 =head2 As an interactive shell
50
51  $ guestfish
52
53  Welcome to guestfish, the libguestfs filesystem interactive shell for
54  editing virtual machine filesystems.
55
56  Type: 'help' for help with commands
57        'quit' to quit the shell
58
59  ><fs> help
60
61 =head2 As a script interpreter
62
63  #!/usr/bin/guestfish -f
64  alloc /tmp/output.img 10M
65  run
66  sfdisk /dev/sda 0 0 0 ,
67  mkfs ext2 /dev/sda1
68
69 =head1 DESCRIPTION
70
71 Guestfish is a shell and command-line tool for examining and modifying
72 virtual machine filesystems.  It uses libguestfs and exposes all of
73 the functionality of the guestfs API, see L<guestfs(3)>.
74
75 =head1 OPTIONS
76
77 =over 4
78
79 =item B<--help>
80
81 Displays general help on options.
82
83 =item B<-h> | B<--cmd-help>
84
85 Lists all available guestfish commands.
86
87 =item B<-h cmd> | B<--cmd-help cmd>
88
89 Displays detailed help on a single command C<cmd>.
90
91 =item B<-a image> | B<--add image>
92
93 Add a block device or virtual machine image to the shell.
94
95 =item B<-f file> | B<--file file>
96
97 Read commands from C<file>.  To write pure guestfish
98 scripts, use:
99
100  #!/usr/bin/guestfish -f
101
102 =item B<-i> | B<--inspector>
103
104 Run virt-inspector on the named libvirt domain or list of disk
105 images.  If virt-inspector is available and if it can identify
106 the domain or disk images, then partitions will be mounted
107 correctly at start-up.
108
109 Typical usage is either:
110
111  guestfish -i myguest
112
113 (for an inactive libvirt domain called I<myguest>), or:
114
115  guestfish --ro -i myguest
116
117 (for active domains, readonly), or specify the block device directly:
118
119  guestfish -i /dev/Guests/MyGuest
120
121 You cannot use I<-a> or I<-m> in conjunction with this option, and
122 options other than I<--ro> might not behave correctly.
123
124 See also: L<virt-inspector(1)>.
125
126 =item B<-m dev[:mountpoint]> | B<--mount dev[:mountpoint]>
127
128 Mount the named partition or logical volume on the given mountpoint.
129
130 If the mountpoint is omitted, it defaults to C</>.
131
132 You have to mount something on C</> before most commands will work.
133
134 If any C<-m> or C<--mount> options are given, the guest is
135 automatically launched.
136
137 =item B<-n> | B<--no-sync>
138
139 Disable autosync.  This is enabled by default.  See the discussion
140 of autosync in the L<guestfs(3)> manpage.
141
142 =item B<-r> | B<--ro>
143
144 This changes the C<-m> option so that mounts are done read-only
145 (see C<guestfs_mount_ro> in the L<guestfs(3)> manpage).
146
147 =item B<-v> | B<--verbose>
148
149 Enable very verbose messages.  This is particularly useful if you find
150 a bug.
151
152 =item B<-D> | B<--no-dest-paths>
153
154 Don't tab-complete paths on the guest filesystem.  It is useful to be
155 able to hit the tab key to complete paths on the guest filesystem, but
156 this causes extra "hidden" guestfs calls to be made, so this option is
157 here to allow this feature to be disabled.
158
159 =item B<-V> | B<--version>
160
161 Display the guestfish / libguestfs version number and exit.
162
163 =back
164
165 =head1 COMMANDS ON COMMAND LINE
166
167 Any additional (non-option) arguments are treated as commands to
168 execute.
169
170 Commands to execute should be separated by a colon (C<:>), where the
171 colon is a separate parameter.  Thus:
172
173  guestfish cmd [args...] : cmd [args...] : cmd [args...] ...
174
175 If there are no additional arguments, then we enter a shell, either an
176 interactive shell with a prompt (if the input is a terminal) or a
177 non-interactive shell.
178
179 In either command line mode or non-interactive shell, the first
180 command that gives an error causes the whole shell to exit.  In
181 interactive mode (with a prompt) if a command fails, you can continue
182 to enter commands.
183
184 =head1 USING launch (OR run)
185
186 As with L<guestfs(3)>, you must first configure your guest by adding
187 disks, then launch it, then mount any disks you need, and finally
188 issue actions/commands.  So the general order of the day is:
189
190 =over 4
191
192 =item *
193
194 add or -a/--add
195
196 =item *
197
198 launch (aka run)
199
200 =item *
201
202 mount or -m/--mount
203
204 =item *
205
206 any other commands
207
208 =back
209
210 C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)
211 your guest before mounting or performing any other commands.
212
213 The only exception is that if the C<-m> or C<--mount> option was
214 given, the guest is automatically run for you (simply because
215 guestfish can't mount the disks you asked for without doing this).
216
217 =head1 QUOTING
218
219 You can quote ordinary parameters using either single or double
220 quotes.  For example:
221
222  add "file with a space.img"
223
224  rm '/file name'
225
226  rm '/"'
227
228 A few commands require a list of strings to be passed.  For these, use
229 a space-separated list, enclosed in quotes.  For example:
230
231  vgcreate VG "/dev/sda1 /dev/sdb1"
232
233 =head1 WILDCARDS AND GLOBBING
234
235 Neither guestfish nor the underlying guestfs API performs
236 wildcard expansion (globbing) by default.  So for example the
237 following will not do what you expect:
238
239  rm-rf /home/*
240
241 Assuming you don't have a directory literally called C</home/*>
242 then the above command will return an error.
243
244 To perform wildcard expansion, use the C<glob> command.
245
246  glob rm-rf /home/*
247
248 runs C<rm-rf> on each path that matches (ie. potentially running
249 the command many times), equivalent to:
250
251  rm-rf /home/jim
252  rm-rf /home/joe
253  rm-rf /home/mary
254
255 C<glob> only works on simple guest paths and not on device names.
256
257 If you have several parameters, each containing a wildcard, then glob
258 will perform a cartesian product.
259
260 =head1 COMMENTS
261
262 Any line which starts with a I<#> character is treated as a comment
263 and ignored.  The I<#> can optionally be preceeded by whitespace,
264 but B<not> by a command.  For example:
265
266  # this is a comment
267          # this is a comment
268  foo # NOT a comment
269
270 Blank lines are also ignored.
271
272 =head1 RUNNING COMMANDS LOCALLY
273
274 Any line which starts with a I<!> character is treated as a command
275 sent to the local shell (C</bin/sh> or whatever L<system(3)> uses).
276 For example:
277
278  !mkdir local
279  tgz-out /remote local/remote-data.tar.gz
280
281 will create a directory C<local> on the host, and then export
282 the contents of C</remote> on the mounted filesystem to
283 C<local/remote-data.tar.gz>.  (See C<tgz-out>).
284
285 =head1 PIPES
286
287 Use C<command E<lt>spaceE<gt> | command> to pipe the output of the
288 first command (a guestfish command) to the second command (any host
289 command).  For example:
290
291  cat /etc/passwd | awk -F: '$3 == 0 { print }'
292
293 (where C<cat> is the guestfish cat command, but C<awk> is the host awk
294 program).  The above command would list all accounts in the guest
295 filesystem which have UID 0, ie. root accounts including backdoors.
296 Other examples:
297
298  hexdump /bin/ls | head
299  list-devices | tail -1
300
301 The space before the pipe symbol is required, any space after the pipe
302 symbol is optional.  Everything after the pipe symbol is just passed
303 straight to the host shell, so it can contain redirections, globs and
304 anything else that makes sense on the host side.
305
306 To use a literal argument which begins with a pipe symbol, you have
307 to quote it, eg:
308
309  echo "|"
310
311 =head1 EXIT ON ERROR BEHAVIOUR
312
313 By default, guestfish will ignore any errors when in interactive mode
314 (ie. taking commands from a human over a tty), and will exit on the
315 first error in non-interactive mode (scripts, commands given on the
316 command line).
317
318 If you prefix a command with a I<-> character, then that command will
319 not cause guestfish to exit, even if that (one) command returns an
320 error.
321
322 =head1 GUESTFISH COMMANDS
323
324 The commands in this section are guestfish convenience commands, in
325 other words, they are not part of the L<guestfs(3)> API.
326
327 =head2 alloc | allocate
328
329  alloc filename size
330
331 This creates an empty (zeroed) file of the given size, and then adds
332 so it can be further examined.
333
334 For more advanced image creation, see L<qemu-img(1)> utility.
335
336 Size can be specified (where C<nn> means a number):
337
338 =over 4
339
340 =item C<nn> or C<nn>K or C<nn>KB
341
342 number of kilobytes, eg: C<1440> = standard 3.5in floppy
343
344 =item C<nn>M or C<nn>MB
345
346 number of megabytes
347
348 =item C<nn>G or C<nn>GB
349
350 number of gigabytes
351
352 =item C<nn>sects
353
354 number of 512 byte sectors
355
356 =back
357
358 =head2 echo
359
360  echo [params ...]
361
362 This echos the parameters to the terminal.
363
364 =head2 edit | vi | emacs
365
366  edit filename
367
368 This is used to edit a file.  It downloads the file, edits it
369 locally using your editor, then uploads the result.
370
371 The editor is C<$EDITOR>.  However if you use the alternate
372 commands C<vi> or C<emacs> you will get those corresponding
373 editors.
374
375 NOTE: This will not work reliably for large files
376 (> 2 MB) or binary files containing \0 bytes.
377
378 =head2 glob
379
380  glob command args...
381
382 Expand wildcards in any paths in the args list, and run C<command>
383 repeatedly on each matching path.
384
385 See section WILDCARDS AND GLOBBING.
386
387 =head2 help
388
389  help
390  help cmd
391
392 Without any parameter, this lists all commands.  With a C<cmd>
393 parameter, this displays detailed help for a command.
394
395 =head2 lcd
396
397  lcd directory
398
399 Change the local directory, ie. the current directory of guestfish
400 itself.
401
402 Note that C<!cd> won't do what you might expect.
403
404 =head2 more | less
405
406  more filename
407
408  less filename
409
410 This is used to view a file.
411
412 The default viewer is C<$PAGER>.  However if you use the alternate
413 command C<less> you will get the C<less> command specifically.
414
415 NOTE: This will not work reliably for large files
416 (> 2 MB) or binary files containing \0 bytes.
417
418 =head2 quit | exit
419
420 This exits guestfish.  You can also use C<^D> key.
421
422 =head2 time
423
424  time command args...
425
426 Run the command as usual, but print the elapsed time afterwards.  This
427 can be useful for benchmarking operations.
428
429 =head1 COMMANDS
430
431 @ACTIONS@
432
433 =head1 ENVIRONMENT VARIABLES
434
435 =over 4
436
437 =item EDITOR
438
439 The C<edit> command uses C<$EDITOR> as the editor.  If not
440 set, it uses C<vi>.
441
442 =item HOME
443
444 If compiled with GNU readline support, then the command history
445 is saved in C<$HOME/.guestfish>
446
447 =item LIBGUESTFS_APPEND
448
449 Pass additional options to the guest kernel.
450
451 =item LIBGUESTFS_DEBUG
452
453 Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the
454 same effect as using the B<-v> option.
455
456 =item LIBGUESTFS_MEMSIZE
457
458 Set the memory allocated to the qemu process, in megabytes.  For
459 example:
460
461  LIBGUESTFS_MEMSIZE=700
462
463 =item LIBGUESTFS_PATH
464
465 Set the path that guestfish uses to search for kernel and initrd.img.
466 See the discussion of paths in L<guestfs(3)>.
467
468 =item LIBGUESTFS_QEMU
469
470 Set the default qemu binary that libguestfs uses.  If not set, then
471 the qemu which was found at compile time by the configure script is
472 used.
473
474 =item PAGER
475
476 The C<more> command uses C<$PAGER> as the pager.  If not
477 set, it uses C<more>.
478
479 =back
480
481 =head1 EXIT CODE
482
483 guestfish returns I<0> if the commands completed without error, or
484 I<1> if there was an error.
485
486 =head1 SEE ALSO
487
488 L<guestfs(3)>,
489 L<http://libguestfs.org/>.
490
491 =head1 AUTHORS
492
493 Richard W.M. Jones (C<rjones at redhat dot com>)
494
495 =head1 COPYRIGHT
496
497 Copyright (C) 2009 Red Hat Inc.
498 L<http://libguestfs.org/>
499
500 This program is free software; you can redistribute it and/or modify
501 it under the terms of the GNU General Public License as published by
502 the Free Software Foundation; either version 2 of the License, or
503 (at your option) any later version.
504
505 This program is distributed in the hope that it will be useful,
506 but WITHOUT ANY WARRANTY; without even the implied warranty of
507 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
508 GNU General Public License for more details.
509
510 You should have received a copy of the GNU General Public License
511 along with this program; if not, write to the Free Software
512 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.