fish: Add 'man' command which opens the manual.
[libguestfs.git] / fish / 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
12
13  guestfish -a disk.img
14
15  guestfish -a disk.img -m dev[:mountpoint]
16
17  guestfish -i libvirt-domain
18
19  guestfish -i disk.img [disk.img ...]
20
21 =head1 EXAMPLES
22
23 =head2 As an interactive shell
24
25  $ guestfish
26  
27  Welcome to guestfish, the libguestfs filesystem interactive shell for
28  editing virtual machine filesystems.
29  
30  Type: 'help' for a list of commands
31        'man' to read the manual
32        'quit' to quit the shell
33  
34  ><fs> man
35
36 =head2 From shell scripts
37
38 Create a new C</etc/motd> file in a guest:
39
40  guestfish <<_EOF_
41  add disk.img
42  run
43  mount /dev/vg_guest/lv_root /
44  write_file /etc/motd "Welcome, new users" 0
45  _EOF_
46
47 List the LVM logical volumes in a guest:
48
49  guestfish -a disk.img --ro <<_EOF_
50  run
51  lvs
52  _EOF_
53
54 =head2 On one command line
55
56 Update C</etc/resolv.conf> in a guest:
57
58  guestfish \
59    add disk.img : run : mount /dev/vg_guest/lv_root / : \
60    write-file /etc/resolv.conf "nameserver 1.2.3.4" 0
61
62 Edit C</boot/grub/grub.conf> interactively:
63
64  guestfish --add disk.img \
65    --mount /dev/vg_guest/lv_root \
66    --mount /dev/sda1:/boot \
67    edit /boot/grub/grub.conf
68
69 =head2 Using virt-inspector
70
71 Use the I<-i> option to get virt-inspector to mount
72 the filesystems automatically as they would be mounted
73 in the virtual machine:
74
75  guestfish --ro -i disk.img cat /etc/group
76
77 =head2 As a script interpreter
78
79 Create a 100MB disk containing an ext2-formatted partition:
80
81  #!/usr/bin/guestfish -f
82  sparse test1.img 100M
83  run
84  part-disk /dev/sda mbr
85  mkfs ext2 /dev/sda1
86
87 =head2 Start with a prepared disk
88
89 An alternate way to create a 100MB disk called C<test1.img> containing
90 a single ext2-formatted partition:
91
92  guestfish -N fs
93
94 To list what is available do:
95
96  guestfish -N list | less
97
98 =head2 Remote control
99
100  eval `guestfish --listen --ro`
101  guestfish --remote add disk.img
102  guestfish --remote run
103  guestfish --remote lvs
104
105 =head1 DESCRIPTION
106
107 Guestfish is a shell and command-line tool for examining and modifying
108 virtual machine filesystems.  It uses libguestfs and exposes all of
109 the functionality of the guestfs API, see L<guestfs(3)>.
110
111 Guestfish gives you structured access to the libguestfs API, from
112 shell scripts or the command line or interactively.  If you want to
113 rescue a broken virtual machine image, you should look at the
114 L<virt-rescue(1)> command.
115
116 Using guestfish in read/write mode on live virtual machines can be
117 dangerous, potentially causing disk corruption.  Use the I<--ro>
118 (read-only) option to use guestfish safely if the disk image or
119 virtual machine might be live.
120
121 =head1 OPTIONS
122
123 =over 4
124
125 =item B<--help>
126
127 Displays general help on options.
128
129 =item B<-h> | B<--cmd-help>
130
131 Lists all available guestfish commands.
132
133 =item B<-h cmd> | B<--cmd-help cmd>
134
135 Displays detailed help on a single command C<cmd>.
136
137 =item B<-a image> | B<--add image>
138
139 Add a block device or virtual machine image to the shell.
140
141 =item B<-D> | B<--no-dest-paths>
142
143 Don't tab-complete paths on the guest filesystem.  It is useful to be
144 able to hit the tab key to complete paths on the guest filesystem, but
145 this causes extra "hidden" guestfs calls to be made, so this option is
146 here to allow this feature to be disabled.
147
148 =item B<-f file> | B<--file file>
149
150 Read commands from C<file>.  To write pure guestfish
151 scripts, use:
152
153  #!/usr/bin/guestfish -f
154
155 =item B<-i> | B<--inspector>
156
157 Run virt-inspector on the named libvirt domain or list of disk
158 images.  If virt-inspector is available and if it can identify
159 the domain or disk images, then partitions will be mounted
160 correctly at start-up.
161
162 Typical usage is either:
163
164  guestfish -i myguest
165
166 (for an inactive libvirt domain called I<myguest>), or:
167
168  guestfish --ro -i myguest
169
170 (for active domains, readonly), or specify the block device directly:
171
172  guestfish -i /dev/Guests/MyGuest
173
174 You cannot use I<-a>, I<-m>, I<-N>, I<--listen>, I<--remote> or
175 I<--selinux> in conjunction with this option, and options other than
176 I<--ro> might not behave correctly.
177
178 See also: L<virt-inspector(1)>.
179
180 =item B<--listen>
181
182 Fork into the background and listen for remote commands.  See section
183 L</REMOTE CONTROL GUESTFISH OVER A SOCKET> below.
184
185 =item B<-m dev[:mountpoint]> | B<--mount dev[:mountpoint]>
186
187 Mount the named partition or logical volume on the given mountpoint.
188
189 If the mountpoint is omitted, it defaults to C</>.
190
191 You have to mount something on C</> before most commands will work.
192
193 If any I<-m> or I<--mount> options are given, the guest is
194 automatically launched.
195
196 If you don't know what filesystems a disk image contains, you
197 can either run guestfish without this option, then list the partitions
198 and LVs available (see L</list-partitions> and L</lvs> commands),
199 or you can use the L<virt-list-filesystems(1)> program.
200
201 =item B<-n> | B<--no-sync>
202
203 Disable autosync.  This is enabled by default.  See the discussion
204 of autosync in the L<guestfs(3)> manpage.
205
206 =item B<-N type> | B<--new type> | B<-N list>
207
208 Prepare a fresh disk image formatted as "type".  This is an
209 alternative to the I<-a> option: whereas I<-a> adds an existing disk,
210 I<-N> creates a preformatted disk with a filesystem and adds it.
211 See L</PREPARED DISK IMAGES> below.
212
213 =item B<--remote[=pid]>
214
215 Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section
216 L</REMOTE CONTROL GUESTFISH OVER A SOCKET> below.
217
218 =item B<-r> | B<--ro>
219
220 This changes the I<-a> and I<-m> options so that disks are added and
221 mounts are done read-only (see L<guestfs(3)/guestfs_mount_ro>).
222
223 The option must always be used if the disk image or virtual machine
224 might be running, and is generally recommended in cases where you
225 don't need write access to the disk.
226
227 Note that prepared disk images created with I<-N> are not affected by
228 the I<--ro> option.
229
230 =item B<--selinux>
231
232 Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>.
233
234 =item B<-v> | B<--verbose>
235
236 Enable very verbose messages.  This is particularly useful if you find
237 a bug.
238
239 =item B<-V> | B<--version>
240
241 Display the guestfish / libguestfs version number and exit.
242
243 =item B<-x>
244
245 Echo each command before executing it.
246
247 =back
248
249 =head1 COMMANDS ON COMMAND LINE
250
251 Any additional (non-option) arguments are treated as commands to
252 execute.
253
254 Commands to execute should be separated by a colon (C<:>), where the
255 colon is a separate parameter.  Thus:
256
257  guestfish cmd [args...] : cmd [args...] : cmd [args...] ...
258
259 If there are no additional arguments, then we enter a shell, either an
260 interactive shell with a prompt (if the input is a terminal) or a
261 non-interactive shell.
262
263 In either command line mode or non-interactive shell, the first
264 command that gives an error causes the whole shell to exit.  In
265 interactive mode (with a prompt) if a command fails, you can continue
266 to enter commands.
267
268 =head1 USING launch (OR run)
269
270 As with L<guestfs(3)>, you must first configure your guest by adding
271 disks, then launch it, then mount any disks you need, and finally
272 issue actions/commands.  So the general order of the day is:
273
274 =over 4
275
276 =item *
277
278 add or -a/--add
279
280 =item *
281
282 launch (aka run)
283
284 =item *
285
286 mount or -m/--mount
287
288 =item *
289
290 any other commands
291
292 =back
293
294 C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)
295 your guest before mounting or performing any other commands.
296
297 The only exception is that if the I<-m> or I<--mount> option was
298 given, the guest is automatically run for you (simply because
299 guestfish can't mount the disks you asked for without doing this).
300
301 =head1 QUOTING
302
303 You can quote ordinary parameters using either single or double
304 quotes.  For example:
305
306  add "file with a space.img"
307
308  rm '/file name'
309
310  rm '/"'
311
312 A few commands require a list of strings to be passed.  For these, use
313 a whitespace-separated list, enclosed in quotes.  Strings containing whitespace
314 to be passed through must be enclosed in single quotes.  A literal single quote
315 must be escaped with a backslash.
316
317  vgcreate VG "/dev/sda1 /dev/sdb1"
318  command "/bin/echo 'foo      bar'"
319  command "/bin/echo \'foo\'"
320
321 =head1 NUMBERS
322
323 Commands which take integers as parameters use the C convention which
324 is to use C<0> to prefix an octal number or C<0x> to prefix a
325 hexadecimal number.  For example:
326
327  1234      decimal number 1234
328  02322     octal number, equivalent to decimal 1234
329  0x4d2     hexadecimal number, equivalent to decimal 1234
330
331 When using the C<chmod> command, you almost always want to specify an
332 octal number for the mode, and you must prefix it with C<0> (unlike
333 the Unix L<chmod(1)> program):
334
335  chmod 0777 /public  # OK
336  chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.
337
338 Commands that return numbers usually print them in decimal, but
339 some commands print numbers in other radices (eg. C<umask> prints
340 the mode in octal, preceeded by C<0>).
341
342 =head1 WILDCARDS AND GLOBBING
343
344 Neither guestfish nor the underlying guestfs API performs
345 wildcard expansion (globbing) by default.  So for example the
346 following will not do what you expect:
347
348  rm-rf /home/*
349
350 Assuming you don't have a directory literally called C</home/*>
351 then the above command will return an error.
352
353 To perform wildcard expansion, use the C<glob> command.
354
355  glob rm-rf /home/*
356
357 runs C<rm-rf> on each path that matches (ie. potentially running
358 the command many times), equivalent to:
359
360  rm-rf /home/jim
361  rm-rf /home/joe
362  rm-rf /home/mary
363
364 C<glob> only works on simple guest paths and not on device names.
365
366 If you have several parameters, each containing a wildcard, then glob
367 will perform a cartesian product.
368
369 =head1 COMMENTS
370
371 Any line which starts with a I<#> character is treated as a comment
372 and ignored.  The I<#> can optionally be preceeded by whitespace,
373 but B<not> by a command.  For example:
374
375  # this is a comment
376          # this is a comment
377  foo # NOT a comment
378
379 Blank lines are also ignored.
380
381 =head1 RUNNING COMMANDS LOCALLY
382
383 Any line which starts with a I<!> character is treated as a command
384 sent to the local shell (C</bin/sh> or whatever L<system(3)> uses).
385 For example:
386
387  !mkdir local
388  tgz-out /remote local/remote-data.tar.gz
389
390 will create a directory C<local> on the host, and then export
391 the contents of C</remote> on the mounted filesystem to
392 C<local/remote-data.tar.gz>.  (See C<tgz-out>).
393
394 To change the local directory, use the C<lcd> command.  C<!cd> will
395 have no effect, due to the way that subprocesses work in Unix.
396
397 =head1 PIPES
398
399 Use C<command E<lt>spaceE<gt> | command> to pipe the output of the
400 first command (a guestfish command) to the second command (any host
401 command).  For example:
402
403  cat /etc/passwd | awk -F: '$3 == 0 { print }'
404
405 (where C<cat> is the guestfish cat command, but C<awk> is the host awk
406 program).  The above command would list all accounts in the guest
407 filesystem which have UID 0, ie. root accounts including backdoors.
408 Other examples:
409
410  hexdump /bin/ls | head
411  list-devices | tail -1
412  tgz-out / - | tar ztf -
413
414 The space before the pipe symbol is required, any space after the pipe
415 symbol is optional.  Everything after the pipe symbol is just passed
416 straight to the host shell, so it can contain redirections, globs and
417 anything else that makes sense on the host side.
418
419 To use a literal argument which begins with a pipe symbol, you have
420 to quote it, eg:
421
422  echo "|"
423
424 =head1 HOME DIRECTORIES
425
426 If a parameter starts with the character C<~> then the tilde may be
427 expanded as a home directory path (either C<~> for the current user's
428 home directory, or C<~user> for another user).
429
430 Note that home directory expansion happens for users known I<on the
431 host>, not in the guest filesystem.
432
433 To use a literal argument which begins with a tilde, you have to quote
434 it, eg:
435
436  echo "~"
437
438 =head1 WINDOWS PATHS
439
440 If a path is prefixed with C<win:> then you can use Windows-style
441 paths (with some limitations).  The following commands are equivalent:
442
443  file /WINDOWS/system32/config/system.LOG
444
445  file win:/windows/system32/config/system.log
446
447  file win:\windows\system32\config\system.log
448
449  file WIN:C:\Windows\SYSTEM32\conFIG\SYSTEM.LOG
450
451 This syntax implicitly calls C<case-sensitive-path> (q.v.) so it also
452 handles case insensitivity like Windows would.  This only works in
453 argument positions that expect a path.
454
455 =head1 UPLOADING AND DOWNLOADING FILES
456
457 For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and
458 others which upload from or download to a local file, you can use the
459 special filename C<-> to mean "from stdin" or "to stdout".  For example:
460
461  upload - /foo
462
463 reads stdin and creates from that a file C</foo> in the disk image,
464 and:
465
466  tar-out /etc - | tar tf -
467
468 writes the tarball to stdout and then pipes that into the external
469 "tar" command (see L</PIPES>).
470
471 When using C<-> to read from stdin, the input is read up to the end of
472 stdin.  You can also use a special "heredoc"-like syntax to read up to
473 some arbitrary end marker:
474
475  upload -<<END /foo
476  input line 1
477  input line 2
478  input line 3
479  END
480
481 Any string of characters can be used instead of C<END>.  The end
482 marker must appear on a line of its own, without any preceeding or
483 following characters (not even spaces).
484
485 Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to
486 upload local files (so-called "FileIn" parameters in the generator).
487
488 =head1 EXIT ON ERROR BEHAVIOUR
489
490 By default, guestfish will ignore any errors when in interactive mode
491 (ie. taking commands from a human over a tty), and will exit on the
492 first error in non-interactive mode (scripts, commands given on the
493 command line).
494
495 If you prefix a command with a I<-> character, then that command will
496 not cause guestfish to exit, even if that (one) command returns an
497 error.
498
499 =head1 REMOTE CONTROL GUESTFISH OVER A SOCKET
500
501 Guestfish can be remote-controlled over a socket.  This is useful
502 particularly in shell scripts where you want to make several different
503 changes to a filesystem, but you don't want the overhead of starting
504 up a guestfish process each time.
505
506 Start a guestfish server process using:
507
508  eval `guestfish --listen`
509
510 and then send it commands by doing:
511
512  guestfish --remote cmd [...]
513
514 To cause the server to exit, send it the exit command:
515
516  guestfish --remote exit
517
518 Note that the server will normally exit if there is an error in a
519 command.  You can change this in the usual way.  See section
520 L</EXIT ON ERROR BEHAVIOUR>.
521
522 =head2 CONTROLLING MULTIPLE GUESTFISH PROCESSES
523
524 The C<eval> statement sets the environment variable C<$GUESTFISH_PID>,
525 which is how the I<--remote> option knows where to send the commands.
526 You can have several guestfish listener processes running using:
527
528  eval `guestfish --listen`
529  pid1=$GUESTFISH_PID
530  eval `guestfish --listen`
531  pid2=$GUESTFISH_PID
532  ...
533  guestfish --remote=$pid1 cmd
534  guestfish --remote=$pid2 cmd
535
536 =head2 REMOTE CONTROL DETAILS
537
538 Remote control happens over a Unix domain socket called
539 C</tmp/.guestfish-$UID/socket-$PID>, where C<$UID> is the effective
540 user ID of the process, and C<$PID> is the process ID of the server.
541
542 Guestfish client and server versions must match exactly.
543
544 =head1 PREPARED DISK IMAGES
545
546 Use the I<-N type> or I<--new type> parameter to select one of a set
547 of preformatted disk images that guestfish can make for you to save
548 typing.  This is particularly useful for testing purposes.  This
549 option is used instead of the I<-a> option, and like I<-a> can appear
550 multiple times (and can be mixed with I<-a>).
551
552 The new disk is called C<test1.img> for the first I<-N>, C<test2.img>
553 for the second and so on.  Existing files in the current directory are
554 not overwritten, so you may need to do C<rm -f test1.img>.
555
556 The type briefly describes how the disk should be sized, partitioned,
557 how filesystem(s) should be created, and how content should be added.
558 Optionally the type can be followed by extra parameters, separated by
559 C<:> (colon) characters.  For example, I<-N fs> creates a default
560 100MB, sparsely-allocated disk, containing a single partition, with
561 the partition formatted as ext2.  I<-N fs:ext4:1G> is the same, but
562 for an ext4 filesystem on a 1GB disk instead.
563
564 To list the available types and any extra parameters they take, run:
565
566  guestfish -N list | less
567
568 Note that the prepared filesystem is not mounted.  You would usually
569 have to use the C<mount /dev/sda1 /> command or add the
570 I<-m /dev/sda1> option.
571
572 If any I<-N> or I<--new> options are given, the guest is automatically
573 launched.
574
575 =head2 EXAMPLES
576
577 Create a 100MB disk with an ext4-formatted partition:
578
579  guestfish -N fs:ext4
580
581 Create a 32MB disk with a VFAT-formatted partition, and mount it:
582
583  guestfish -N fs:vfat:32M -m /dev/sda1
584
585 Create a blank 200MB disk:
586
587  guestfish -N disk:200M
588
589 =head1 GUESTFISH COMMANDS
590
591 The commands in this section are guestfish convenience commands, in
592 other words, they are not part of the L<guestfs(3)> API.
593
594 =head2 alloc | allocate
595
596  alloc filename size
597
598 This creates an empty (zeroed) file of the given size, and then adds
599 so it can be further examined.
600
601 For more advanced image creation, see L<qemu-img(1)> utility.
602
603 Size can be specified (where C<nn> means a number):
604
605 =over 4
606
607 =item C<nn> or C<nn>K or C<nn>KB
608
609 number of kilobytes, eg: C<1440> = standard 3.5in floppy
610
611 =item C<nn>M or C<nn>MB
612
613 number of megabytes
614
615 =item C<nn>G or C<nn>GB
616
617 number of gigabytes
618
619 =item C<nn>T or C<nn>TB
620
621 number of terabytes
622
623 =item C<nn>P or C<nn>PB
624
625 number of petabytes
626
627 =item C<nn>E or C<nn>EB
628
629 number of exabytes
630
631 =item C<nn>sects
632
633 number of 512 byte sectors
634
635 =back
636
637 =head2 echo
638
639  echo [params ...]
640
641 This echos the parameters to the terminal.
642
643 =head2 edit | vi | emacs
644
645  edit filename
646
647 This is used to edit a file.  It downloads the file, edits it
648 locally using your editor, then uploads the result.
649
650 The editor is C<$EDITOR>.  However if you use the alternate
651 commands C<vi> or C<emacs> you will get those corresponding
652 editors.
653
654 NOTE: This will not work reliably for large files
655 (> 2 MB) or binary files containing \0 bytes.
656
657 =head2 glob
658
659  glob command args...
660
661 Expand wildcards in any paths in the args list, and run C<command>
662 repeatedly on each matching path.
663
664 See section WILDCARDS AND GLOBBING.
665
666 =head2 help
667
668  help
669  help cmd
670
671 Without any parameter, this lists all commands.  With a C<cmd>
672 parameter, this displays detailed help for a command.
673
674 =head2 lcd
675
676  lcd directory
677
678 Change the local directory, ie. the current directory of guestfish
679 itself.
680
681 Note that C<!cd> won't do what you might expect.
682
683 =head2 man | manual
684
685  man
686
687 Opens the manual page for guestfish.
688
689 =head2 more | less
690
691  more filename
692
693  less filename
694
695 This is used to view a file.
696
697 The default viewer is C<$PAGER>.  However if you use the alternate
698 command C<less> you will get the C<less> command specifically.
699
700 NOTE: This will not work reliably for large files
701 (> 2 MB) or binary files containing \0 bytes.
702
703 =head2 quit | exit
704
705 This exits guestfish.  You can also use C<^D> key.
706
707 =head2 reopen
708
709  reopen
710
711 Close and reopen the libguestfs handle.  It is not necessary to use
712 this normally, because the handle is closed properly when guestfish
713 exits.  However this is occasionally useful for testing.
714
715 =head2 sparse
716
717  sparse filename size
718
719 This creates an empty sparse file of the given size, and then adds
720 so it can be further examined.
721
722 In all respects it works the same as the C<alloc> command, except that
723 the image file is allocated sparsely, which means that disk blocks are
724 not assigned to the file until they are needed.  Sparse disk files
725 only use space when written to, but they are slower and there is a
726 danger you could run out of real disk space during a write operation.
727
728 For more advanced image creation, see L<qemu-img(1)> utility.
729
730 Size can be specified (where C<nn> means a number):
731
732 =over 4
733
734 =item C<nn> or C<nn>K or C<nn>KB
735
736 number of kilobytes, eg: C<1440> = standard 3.5in floppy
737
738 =item C<nn>M or C<nn>MB
739
740 number of megabytes
741
742 =item C<nn>G or C<nn>GB
743
744 number of gigabytes
745
746 =item C<nn>T or C<nn>TB
747
748 number of terabytes
749
750 =item C<nn>P or C<nn>PB
751
752 number of petabytes
753
754 =item C<nn>E or C<nn>EB
755
756 number of exabytes
757
758 =item C<nn>sects
759
760 number of 512 byte sectors
761
762 =back
763
764 =head2 time
765
766  time command args...
767
768 Run the command as usual, but print the elapsed time afterwards.  This
769 can be useful for benchmarking operations.
770
771 =head1 COMMANDS
772
773 @ACTIONS@
774
775 =head1 ENVIRONMENT VARIABLES
776
777 =over 4
778
779 =item EDITOR
780
781 The C<edit> command uses C<$EDITOR> as the editor.  If not
782 set, it uses C<vi>.
783
784 =item GUESTFISH_PID
785
786 Used with the I<--remote> option to specify the remote guestfish
787 process to control.  See section
788 L</REMOTE CONTROL GUESTFISH OVER A SOCKET>.
789
790 =item HOME
791
792 If compiled with GNU readline support, then the command history
793 is saved in C<$HOME/.guestfish>
794
795 =item LIBGUESTFS_APPEND
796
797 Pass additional options to the guest kernel.
798
799 =item LIBGUESTFS_DEBUG
800
801 Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the
802 same effect as using the B<-v> option.
803
804 =item LIBGUESTFS_MEMSIZE
805
806 Set the memory allocated to the qemu process, in megabytes.  For
807 example:
808
809  LIBGUESTFS_MEMSIZE=700
810
811 =item LIBGUESTFS_PATH
812
813 Set the path that guestfish uses to search for kernel and initrd.img.
814 See the discussion of paths in L<guestfs(3)>.
815
816 =item LIBGUESTFS_QEMU
817
818 Set the default qemu binary that libguestfs uses.  If not set, then
819 the qemu which was found at compile time by the configure script is
820 used.
821
822 =item LIBGUESTFS_TRACE
823
824 Set C<LIBGUESTFS_TRACE=1> to enable command traces.
825
826 =item PAGER
827
828 The C<more> command uses C<$PAGER> as the pager.  If not
829 set, it uses C<more>.
830
831 =item TMPDIR
832
833 Location of temporary directory, defaults to C</tmp>.
834
835 If libguestfs was compiled to use the supermin appliance then each
836 handle will require rather a large amount of space in this directory
837 for short periods of time (~ 80 MB).  You can use C<$TMPDIR> to
838 configure another directory to use in case C</tmp> is not large
839 enough.
840
841 =back
842
843 =head1 EXIT CODE
844
845 guestfish returns 0 if the commands completed without error, or
846 1 if there was an error.
847
848 =head1 SEE ALSO
849
850 L<guestfs(3)>,
851 L<http://libguestfs.org/>,
852 L<virt-cat(1)>,
853 L<virt-df(1)>,
854 L<virt-edit(1)>,
855 L<virt-list-filesystems(1)>,
856 L<virt-list-partitions(1)>,
857 L<virt-ls(1)>,
858 L<virt-make-fs(1)>,
859 L<virt-rescue(1)>,
860 L<virt-resize(1)>,
861 L<virt-tar(1)>,
862 L<virt-win-reg(1)>.
863
864 =head1 AUTHORS
865
866 Richard W.M. Jones (C<rjones at redhat dot com>)
867
868 =head1 COPYRIGHT
869
870 Copyright (C) 2009-2010 Red Hat Inc.
871 L<http://libguestfs.org/>
872
873 This program is free software; you can redistribute it and/or modify
874 it under the terms of the GNU General Public License as published by
875 the Free Software Foundation; either version 2 of the License, or
876 (at your option) any later version.
877
878 This program is distributed in the hope that it will be useful,
879 but WITHOUT ANY WARRANTY; without even the implied warranty of
880 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
881 GNU General Public License for more details.
882
883 You should have received a copy of the GNU General Public License
884 along with this program; if not, write to the Free Software
885 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.