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