Use a squashfs attached as /dev/sdd during the C API tests.
[libguestfs.git] / guestfish-actions.pod
1 =head2 add-cdrom | cdrom
2
3  add-cdrom filename
4
5 This function adds a virtual CD-ROM disk image to the guest.
6
7 This is equivalent to the qemu parameter C<-cdrom filename>.
8
9 =head2 add-drive | add
10
11  add-drive filename
12
13 This function adds a virtual machine disk image C<filename> to the
14 guest.  The first time you call this function, the disk appears as IDE
15 disk 0 (C</dev/sda>) in the guest, the second time as C</dev/sdb>, and
16 so on.
17
18 You don't necessarily need to be root when using libguestfs.  However
19 you obviously do need sufficient permissions to access the filename
20 for whatever operations you want to perform (ie. read access if you
21 just want to read the image or write access if you want to modify the
22 image).
23
24 This is equivalent to the qemu parameter C<-drive file=filename>.
25
26 =head2 aug-close
27
28  aug-close
29
30 Close the current Augeas handle and free up any resources
31 used by it.  After calling this, you have to call
32 C<aug-init> again before you can use any other
33 Augeas functions.
34
35 =head2 aug-defnode
36
37  aug-defnode name expr val
38
39 Defines a variable C<name> whose value is the result of
40 evaluating C<expr>.
41
42 If C<expr> evaluates to an empty nodeset, a node is created,
43 equivalent to calling C<aug-set> C<expr>, C<value>.
44 C<name> will be the nodeset containing that single node.
45
46 On success this returns a pair containing the
47 number of nodes in the nodeset, and a boolean flag
48 if a node was created.
49
50 =head2 aug-defvar
51
52  aug-defvar name expr
53
54 Defines an Augeas variable C<name> whose value is the result
55 of evaluating C<expr>.  If C<expr> is NULL, then C<name> is
56 undefined.
57
58 On success this returns the number of nodes in C<expr>, or
59 C<0> if C<expr> evaluates to something which is not a nodeset.
60
61 =head2 aug-get
62
63  aug-get path
64
65 Look up the value associated with C<path>.  If C<path>
66 matches exactly one node, the C<value> is returned.
67
68 =head2 aug-init
69
70  aug-init root flags
71
72 Create a new Augeas handle for editing configuration files.
73 If there was any previous Augeas handle associated with this
74 guestfs session, then it is closed.
75
76 You must call this before using any other C<aug-*>
77 commands.
78
79 C<root> is the filesystem root.  C<root> must not be NULL,
80 use C</> instead.
81
82 The flags are the same as the flags defined in
83 E<lt>augeas.hE<gt>, the logical I<or> of the following
84 integers:
85
86 =over 4
87
88 =item C<AUG_SAVE_BACKUP> = 1
89
90 Keep the original file with a C<.augsave> extension.
91
92 =item C<AUG_SAVE_NEWFILE> = 2
93
94 Save changes into a file with extension C<.augnew>, and
95 do not overwrite original.  Overrides C<AUG_SAVE_BACKUP>.
96
97 =item C<AUG_TYPE_CHECK> = 4
98
99 Typecheck lenses (can be expensive).
100
101 =item C<AUG_NO_STDINC> = 8
102
103 Do not use standard load path for modules.
104
105 =item C<AUG_SAVE_NOOP> = 16
106
107 Make save a no-op, just record what would have been changed.
108
109 =item C<AUG_NO_LOAD> = 32
110
111 Do not load the tree in C<aug-init>.
112
113 =back
114
115 To close the handle, you can call C<aug-close>.
116
117 To find out more about Augeas, see L<http://augeas.net/>.
118
119 =head2 aug-insert
120
121  aug-insert path label true|false
122
123 Create a new sibling C<label> for C<path>, inserting it into
124 the tree before or after C<path> (depending on the boolean
125 flag C<before>).
126
127 C<path> must match exactly one existing node in the tree, and
128 C<label> must be a label, ie. not contain C</>, C<*> or end
129 with a bracketed index C<[N]>.
130
131 =head2 aug-load
132
133  aug-load
134
135 Load files into the tree.
136
137 See C<aug_load> in the Augeas documentation for the full gory
138 details.
139
140 =head2 aug-ls
141
142  aug-ls path
143
144 This is just a shortcut for listing C<aug-match>
145 C<path/*> and sorting the resulting nodes into alphabetical order.
146
147 =head2 aug-match
148
149  aug-match path
150
151 Returns a list of paths which match the path expression C<path>.
152 The returned paths are sufficiently qualified so that they match
153 exactly one node in the current tree.
154
155 =head2 aug-mv
156
157  aug-mv src dest
158
159 Move the node C<src> to C<dest>.  C<src> must match exactly
160 one node.  C<dest> is overwritten if it exists.
161
162 =head2 aug-rm
163
164  aug-rm path
165
166 Remove C<path> and all of its children.
167
168 On success this returns the number of entries which were removed.
169
170 =head2 aug-save
171
172  aug-save
173
174 This writes all pending changes to disk.
175
176 The flags which were passed to C<aug-init> affect exactly
177 how files are saved.
178
179 =head2 aug-set
180
181  aug-set path val
182
183 Set the value associated with C<path> to C<value>.
184
185 =head2 blockdev-flushbufs
186
187  blockdev-flushbufs device
188
189 This tells the kernel to flush internal buffers associated
190 with C<device>.
191
192 This uses the L<blockdev(8)> command.
193
194 =head2 blockdev-getbsz
195
196  blockdev-getbsz device
197
198 This returns the block size of a device.
199
200 (Note this is different from both I<size in blocks> and
201 I<filesystem block size>).
202
203 This uses the L<blockdev(8)> command.
204
205 =head2 blockdev-getro
206
207  blockdev-getro device
208
209 Returns a boolean indicating if the block device is read-only
210 (true if read-only, false if not).
211
212 This uses the L<blockdev(8)> command.
213
214 =head2 blockdev-getsize64
215
216  blockdev-getsize64 device
217
218 This returns the size of the device in bytes.
219
220 See also C<blockdev-getsz>.
221
222 This uses the L<blockdev(8)> command.
223
224 =head2 blockdev-getss
225
226  blockdev-getss device
227
228 This returns the size of sectors on a block device.
229 Usually 512, but can be larger for modern devices.
230
231 (Note, this is not the size in sectors, use C<blockdev-getsz>
232 for that).
233
234 This uses the L<blockdev(8)> command.
235
236 =head2 blockdev-getsz
237
238  blockdev-getsz device
239
240 This returns the size of the device in units of 512-byte sectors
241 (even if the sectorsize isn't 512 bytes ... weird).
242
243 See also C<blockdev-getss> for the real sector size of
244 the device, and C<blockdev-getsize64> for the more
245 useful I<size in bytes>.
246
247 This uses the L<blockdev(8)> command.
248
249 =head2 blockdev-rereadpt
250
251  blockdev-rereadpt device
252
253 Reread the partition table on C<device>.
254
255 This uses the L<blockdev(8)> command.
256
257 =head2 blockdev-setbsz
258
259  blockdev-setbsz device blocksize
260
261 This sets the block size of a device.
262
263 (Note this is different from both I<size in blocks> and
264 I<filesystem block size>).
265
266 This uses the L<blockdev(8)> command.
267
268 =head2 blockdev-setro
269
270  blockdev-setro device
271
272 Sets the block device named C<device> to read-only.
273
274 This uses the L<blockdev(8)> command.
275
276 =head2 blockdev-setrw
277
278  blockdev-setrw device
279
280 Sets the block device named C<device> to read-write.
281
282 This uses the L<blockdev(8)> command.
283
284 =head2 cat
285
286  cat path
287
288 Return the contents of the file named C<path>.
289
290 Note that this function cannot correctly handle binary files
291 (specifically, files containing C<\0> character which is treated
292 as end of string).  For those you need to use the C<download>
293 function which has a more complex interface.
294
295 Because of the message protocol, there is a transfer limit 
296 of somewhere between 2MB and 4MB.  To transfer large files you should use
297 FTP.
298
299 =head2 checksum
300
301  checksum csumtype path
302
303 This call computes the MD5, SHAx or CRC checksum of the
304 file named C<path>.
305
306 The type of checksum to compute is given by the C<csumtype>
307 parameter which must have one of the following values:
308
309 =over 4
310
311 =item C<crc>
312
313 Compute the cyclic redundancy check (CRC) specified by POSIX
314 for the C<cksum> command.
315
316 =item C<md5>
317
318 Compute the MD5 hash (using the C<md5sum> program).
319
320 =item C<sha1>
321
322 Compute the SHA1 hash (using the C<sha1sum> program).
323
324 =item C<sha224>
325
326 Compute the SHA224 hash (using the C<sha224sum> program).
327
328 =item C<sha256>
329
330 Compute the SHA256 hash (using the C<sha256sum> program).
331
332 =item C<sha384>
333
334 Compute the SHA384 hash (using the C<sha384sum> program).
335
336 =item C<sha512>
337
338 Compute the SHA512 hash (using the C<sha512sum> program).
339
340 =back
341
342 The checksum is returned as a printable string.
343
344 =head2 chmod
345
346  chmod mode path
347
348 Change the mode (permissions) of C<path> to C<mode>.  Only
349 numeric modes are supported.
350
351 =head2 chown
352
353  chown owner group path
354
355 Change the file owner to C<owner> and group to C<group>.
356
357 Only numeric uid and gid are supported.  If you want to use
358 names, you will need to locate and parse the password file
359 yourself (Augeas support makes this relatively easy).
360
361 =head2 command
362
363  command 'arguments ...'
364
365 This call runs a command from the guest filesystem.  The
366 filesystem must be mounted, and must contain a compatible
367 operating system (ie. something Linux, with the same
368 or compatible processor architecture).
369
370 The single parameter is an argv-style list of arguments.
371 The first element is the name of the program to run.
372 Subsequent elements are parameters.  The list must be
373 non-empty (ie. must contain a program name).
374
375 The return value is anything printed to I<stdout> by
376 the command.
377
378 If the command returns a non-zero exit status, then
379 this function returns an error message.  The error message
380 string is the content of I<stderr> from the command.
381
382 The C<$PATH> environment variable will contain at least
383 C</usr/bin> and C</bin>.  If you require a program from
384 another location, you should provide the full path in the
385 first parameter.
386
387 Shared libraries and data files required by the program
388 must be available on filesystems which are mounted in the
389 correct places.  It is the caller's responsibility to ensure
390 all filesystems that are needed are mounted at the right
391 locations.
392
393 Because of the message protocol, there is a transfer limit 
394 of somewhere between 2MB and 4MB.  To transfer large files you should use
395 FTP.
396
397 =head2 command-lines
398
399  command-lines 'arguments ...'
400
401 This is the same as C<command>, but splits the
402 result into a list of lines.
403
404 Because of the message protocol, there is a transfer limit 
405 of somewhere between 2MB and 4MB.  To transfer large files you should use
406 FTP.
407
408 =head2 config
409
410  config qemuparam qemuvalue
411
412 This can be used to add arbitrary qemu command line parameters
413 of the form C<-param value>.  Actually it's not quite arbitrary - we
414 prevent you from setting some parameters which would interfere with
415 parameters that we use.
416
417 The first character of C<param> string must be a C<-> (dash).
418
419 C<value> can be NULL.
420
421 =head2 cp
422
423  cp src dest
424
425 This copies a file from C<src> to C<dest> where C<dest> is
426 either a destination filename or destination directory.
427
428 =head2 cp-a
429
430  cp-a src dest
431
432 This copies a file or directory from C<src> to C<dest>
433 recursively using the C<cp -a> command.
434
435 =head2 debug
436
437  debug subcmd 'extraargs ...'
438
439 The C<debug> command exposes some internals of
440 C<guestfsd> (the guestfs daemon) that runs inside the
441 qemu subprocess.
442
443 There is no comprehensive help for this command.  You have
444 to look at the file C<daemon/debug.c> in the libguestfs source
445 to find out what you can do.
446
447 =head2 dmesg
448
449  dmesg
450
451 This returns the kernel messages (C<dmesg> output) from
452 the guest kernel.  This is sometimes useful for extended
453 debugging of problems.
454
455 Another way to get the same information is to enable
456 verbose messages with C<set-verbose> or by setting
457 the environment variable C<LIBGUESTFS_DEBUG=1> before
458 running the program.
459
460 =head2 download
461
462  download remotefilename (filename|-)
463
464 Download file C<remotefilename> and save it as C<filename>
465 on the local machine.
466
467 C<filename> can also be a named pipe.
468
469 See also C<upload>, C<cat>.
470
471 Use C<-> instead of a filename to read/write from stdin/stdout.
472
473 =head2 drop-caches
474
475  drop-caches whattodrop
476
477 This instructs the guest kernel to drop its page cache,
478 and/or dentries and inode caches.  The parameter C<whattodrop>
479 tells the kernel what precisely to drop, see
480 L<http://linux-mm.org/Drop_Caches>
481
482 Setting C<whattodrop> to 3 should drop everything.
483
484 This automatically calls L<sync(2)> before the operation,
485 so that the maximum guest memory is freed.
486
487 =head2 e2fsck-f
488
489  e2fsck-f device
490
491 This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3
492 filesystem checker on C<device>, noninteractively (C<-p>),
493 even if the filesystem appears to be clean (C<-f>).
494
495 This command is only needed because of C<resize2fs>
496 (q.v.).  Normally you should use C<fsck>.
497
498 =head2 equal
499
500  equal file1 file2
501
502 This compares the two files C<file1> and C<file2> and returns
503 true if their content is exactly equal, or false otherwise.
504
505 The external L<cmp(1)> program is used for the comparison.
506
507 =head2 exists
508
509  exists path
510
511 This returns C<true> if and only if there is a file, directory
512 (or anything) with the given C<path> name.
513
514 See also C<is-file>, C<is-dir>, C<stat>.
515
516 =head2 file
517
518  file path
519
520 This call uses the standard L<file(1)> command to determine
521 the type or contents of the file.  This also works on devices,
522 for example to find out whether a partition contains a filesystem.
523
524 The exact command which runs is C<file -bsL path>.  Note in
525 particular that the filename is not prepended to the output
526 (the C<-b> option).
527
528 =head2 find
529
530  find directory
531
532 This command lists out all files and directories, recursively,
533 starting at C<directory>.  It is essentially equivalent to
534 running the shell command C<find directory -print> but some
535 post-processing happens on the output, described below.
536
537 This returns a list of strings I<without any prefix>.  Thus
538 if the directory structure was:
539
540  /tmp/a
541  /tmp/b
542  /tmp/c/d
543
544 then the returned list from C<find> C</tmp> would be
545 4 elements:
546
547  a
548  b
549  c
550  c/d
551
552 If C<directory> is not a directory, then this command returns
553 an error.
554
555 The returned list is sorted.
556
557 =head2 fsck
558
559  fsck fstype device
560
561 This runs the filesystem checker (fsck) on C<device> which
562 should have filesystem type C<fstype>.
563
564 The returned integer is the status.  See L<fsck(8)> for the
565 list of status codes from C<fsck>.
566
567 Notes:
568
569 =over 4
570
571 =item *
572
573 Multiple status codes can be summed together.
574
575 =item *
576
577 A non-zero return code can mean "success", for example if
578 errors have been corrected on the filesystem.
579
580 =item *
581
582 Checking or repairing NTFS volumes is not supported
583 (by linux-ntfs).
584
585 =back
586
587 This command is entirely equivalent to running C<fsck -a -t fstype device>.
588
589 =head2 get-append
590
591  get-append
592
593 Return the additional kernel options which are added to the
594 guest kernel command line.
595
596 If C<NULL> then no options are added.
597
598 =head2 get-autosync
599
600  get-autosync
601
602 Get the autosync flag.
603
604 =head2 get-e2label
605
606  get-e2label device
607
608 This returns the ext2/3/4 filesystem label of the filesystem on
609 C<device>.
610
611 =head2 get-e2uuid
612
613  get-e2uuid device
614
615 This returns the ext2/3/4 filesystem UUID of the filesystem on
616 C<device>.
617
618 =head2 get-path
619
620  get-path
621
622 Return the current search path.
623
624 This is always non-NULL.  If it wasn't set already, then this will
625 return the default path.
626
627 =head2 get-qemu
628
629  get-qemu
630
631 Return the current qemu binary.
632
633 This is always non-NULL.  If it wasn't set already, then this will
634 return the default qemu binary name.
635
636 =head2 get-state
637
638  get-state
639
640 This returns the current state as an opaque integer.  This is
641 only useful for printing debug and internal error messages.
642
643 For more information on states, see L<guestfs(3)>.
644
645 =head2 get-verbose
646
647  get-verbose
648
649 This returns the verbose messages flag.
650
651 =head2 grub-install
652
653  grub-install root device
654
655 This command installs GRUB (the Grand Unified Bootloader) on
656 C<device>, with the root directory being C<root>.
657
658 =head2 hexdump
659
660  hexdump path
661
662 This runs C<hexdump -C> on the given C<path>.  The result is
663 the human-readable, canonical hex dump of the file.
664
665 Because of the message protocol, there is a transfer limit 
666 of somewhere between 2MB and 4MB.  To transfer large files you should use
667 FTP.
668
669 =head2 is-busy
670
671  is-busy
672
673 This returns true iff this handle is busy processing a command
674 (in the C<BUSY> state).
675
676 For more information on states, see L<guestfs(3)>.
677
678 =head2 is-config
679
680  is-config
681
682 This returns true iff this handle is being configured
683 (in the C<CONFIG> state).
684
685 For more information on states, see L<guestfs(3)>.
686
687 =head2 is-dir
688
689  is-dir path
690
691 This returns C<true> if and only if there is a directory
692 with the given C<path> name.  Note that it returns false for
693 other objects like files.
694
695 See also C<stat>.
696
697 =head2 is-file
698
699  is-file path
700
701 This returns C<true> if and only if there is a file
702 with the given C<path> name.  Note that it returns false for
703 other objects like directories.
704
705 See also C<stat>.
706
707 =head2 is-launching
708
709  is-launching
710
711 This returns true iff this handle is launching the subprocess
712 (in the C<LAUNCHING> state).
713
714 For more information on states, see L<guestfs(3)>.
715
716 =head2 is-ready
717
718  is-ready
719
720 This returns true iff this handle is ready to accept commands
721 (in the C<READY> state).
722
723 For more information on states, see L<guestfs(3)>.
724
725 =head2 kill-subprocess
726
727  kill-subprocess
728
729 This kills the qemu subprocess.  You should never need to call this.
730
731 =head2 launch | run
732
733  launch
734
735 Internally libguestfs is implemented by running a virtual machine
736 using L<qemu(1)>.
737
738 You should call this after configuring the handle
739 (eg. adding drives) but before performing any actions.
740
741 =head2 list-devices
742
743  list-devices
744
745 List all the block devices.
746
747 The full block device names are returned, eg. C</dev/sda>
748
749 =head2 list-partitions
750
751  list-partitions
752
753 List all the partitions detected on all block devices.
754
755 The full partition device names are returned, eg. C</dev/sda1>
756
757 This does not return logical volumes.  For that you will need to
758 call C<lvs>.
759
760 =head2 ll
761
762  ll directory
763
764 List the files in C<directory> (relative to the root directory,
765 there is no cwd) in the format of 'ls -la'.
766
767 This command is mostly useful for interactive sessions.  It
768 is I<not> intended that you try to parse the output string.
769
770 =head2 ls
771
772  ls directory
773
774 List the files in C<directory> (relative to the root directory,
775 there is no cwd).  The '.' and '..' entries are not returned, but
776 hidden files are shown.
777
778 This command is mostly useful for interactive sessions.  Programs
779 should probably use C<readdir> instead.
780
781 =head2 lstat
782
783  lstat path
784
785 Returns file information for the given C<path>.
786
787 This is the same as C<stat> except that if C<path>
788 is a symbolic link, then the link is stat-ed, not the file it
789 refers to.
790
791 This is the same as the C<lstat(2)> system call.
792
793 =head2 lvcreate
794
795  lvcreate logvol volgroup mbytes
796
797 This creates an LVM volume group called C<logvol>
798 on the volume group C<volgroup>, with C<size> megabytes.
799
800 =head2 lvm-remove-all
801
802  lvm-remove-all
803
804 This command removes all LVM logical volumes, volume groups
805 and physical volumes.
806
807 B<This command is dangerous.  Without careful use you
808 can easily destroy all your data>.
809
810 =head2 lvremove
811
812  lvremove device
813
814 Remove an LVM logical volume C<device>, where C<device> is
815 the path to the LV, such as C</dev/VG/LV>.
816
817 You can also remove all LVs in a volume group by specifying
818 the VG name, C</dev/VG>.
819
820 =head2 lvresize
821
822  lvresize device mbytes
823
824 This resizes (expands or shrinks) an existing LVM logical
825 volume to C<mbytes>.  When reducing, data in the reduced part
826 is lost.
827
828 =head2 lvs
829
830  lvs
831
832 List all the logical volumes detected.  This is the equivalent
833 of the L<lvs(8)> command.
834
835 This returns a list of the logical volume device names
836 (eg. C</dev/VolGroup00/LogVol00>).
837
838 See also C<lvs-full>.
839
840 =head2 lvs-full
841
842  lvs-full
843
844 List all the logical volumes detected.  This is the equivalent
845 of the L<lvs(8)> command.  The "full" version includes all fields.
846
847 =head2 mkdir
848
849  mkdir path
850
851 Create a directory named C<path>.
852
853 =head2 mkdir-p
854
855  mkdir-p path
856
857 Create a directory named C<path>, creating any parent directories
858 as necessary.  This is like the C<mkdir -p> shell command.
859
860 =head2 mkfs
861
862  mkfs fstype device
863
864 This creates a filesystem on C<device> (usually a partition
865 or LVM logical volume).  The filesystem type is C<fstype>, for
866 example C<ext3>.
867
868 =head2 mount
869
870  mount device mountpoint
871
872 Mount a guest disk at a position in the filesystem.  Block devices
873 are named C</dev/sda>, C</dev/sdb> and so on, as they were added to
874 the guest.  If those block devices contain partitions, they will have
875 the usual names (eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style
876 names can be used.
877
878 The rules are the same as for L<mount(2)>:  A filesystem must
879 first be mounted on C</> before others can be mounted.  Other
880 filesystems can only be mounted on directories which already
881 exist.
882
883 The mounted filesystem is writable, if we have sufficient permissions
884 on the underlying device.
885
886 The filesystem options C<sync> and C<noatime> are set with this
887 call, in order to improve reliability.
888
889 =head2 mount-options
890
891  mount-options options device mountpoint
892
893 This is the same as the C<mount> command, but it
894 allows you to set the mount options as for the
895 L<mount(8)> I<-o> flag.
896
897 =head2 mount-ro
898
899  mount-ro device mountpoint
900
901 This is the same as the C<mount> command, but it
902 mounts the filesystem with the read-only (I<-o ro>) flag.
903
904 =head2 mount-vfs
905
906  mount-vfs options vfstype device mountpoint
907
908 This is the same as the C<mount> command, but it
909 allows you to set both the mount options and the vfstype
910 as for the L<mount(8)> I<-o> and I<-t> flags.
911
912 =head2 mounts
913
914  mounts
915
916 This returns the list of currently mounted filesystems.  It returns
917 the list of devices (eg. C</dev/sda1>, C</dev/VG/LV>).
918
919 Some internal mounts are not shown.
920
921 =head2 mv
922
923  mv src dest
924
925 This moves a file from C<src> to C<dest> where C<dest> is
926 either a destination filename or destination directory.
927
928 =head2 ping-daemon
929
930  ping-daemon
931
932 This is a test probe into the guestfs daemon running inside
933 the qemu subprocess.  Calling this function checks that the
934 daemon responds to the ping message, without affecting the daemon
935 or attached block device(s) in any other way.
936
937 =head2 pvcreate
938
939  pvcreate device
940
941 This creates an LVM physical volume on the named C<device>,
942 where C<device> should usually be a partition name such
943 as C</dev/sda1>.
944
945 =head2 pvremove
946
947  pvremove device
948
949 This wipes a physical volume C<device> so that LVM will no longer
950 recognise it.
951
952 The implementation uses the C<pvremove> command which refuses to
953 wipe physical volumes that contain any volume groups, so you have
954 to remove those first.
955
956 =head2 pvresize
957
958  pvresize device
959
960 This resizes (expands or shrinks) an existing LVM physical
961 volume to match the new size of the underlying device.
962
963 =head2 pvs
964
965  pvs
966
967 List all the physical volumes detected.  This is the equivalent
968 of the L<pvs(8)> command.
969
970 This returns a list of just the device names that contain
971 PVs (eg. C</dev/sda2>).
972
973 See also C<pvs-full>.
974
975 =head2 pvs-full
976
977  pvs-full
978
979 List all the physical volumes detected.  This is the equivalent
980 of the L<pvs(8)> command.  The "full" version includes all fields.
981
982 =head2 read-lines
983
984  read-lines path
985
986 Return the contents of the file named C<path>.
987
988 The file contents are returned as a list of lines.  Trailing
989 C<LF> and C<CRLF> character sequences are I<not> returned.
990
991 Note that this function cannot correctly handle binary files
992 (specifically, files containing C<\0> character which is treated
993 as end of line).  For those you need to use the C<read-file>
994 function which has a more complex interface.
995
996 =head2 resize2fs
997
998  resize2fs device
999
1000 This resizes an ext2 or ext3 filesystem to match the size of
1001 the underlying device.
1002
1003 I<Note:> It is sometimes required that you run C<e2fsck-f>
1004 on the C<device> before calling this command.  For unknown reasons
1005 C<resize2fs> sometimes gives an error about this and sometimes not.
1006 In any case, it is always safe to call C<e2fsck-f> before
1007 calling this function.
1008
1009 =head2 rm
1010
1011  rm path
1012
1013 Remove the single file C<path>.
1014
1015 =head2 rm-rf
1016
1017  rm-rf path
1018
1019 Remove the file or directory C<path>, recursively removing the
1020 contents if its a directory.  This is like the C<rm -rf> shell
1021 command.
1022
1023 =head2 rmdir
1024
1025  rmdir path
1026
1027 Remove the single directory C<path>.
1028
1029 =head2 set-append | append
1030
1031  set-append append
1032
1033 This function is used to add additional options to the
1034 guest kernel command line.
1035
1036 The default is C<NULL> unless overridden by setting
1037 C<LIBGUESTFS_APPEND> environment variable.
1038
1039 Setting C<append> to C<NULL> means I<no> additional options
1040 are passed (libguestfs always adds a few of its own).
1041
1042 =head2 set-autosync | autosync
1043
1044  set-autosync true|false
1045
1046 If C<autosync> is true, this enables autosync.  Libguestfs will make a
1047 best effort attempt to run C<umount-all> followed by
1048 C<sync> when the handle is closed
1049 (also if the program exits without closing handles).
1050
1051 This is disabled by default (except in guestfish where it is
1052 enabled by default).
1053
1054 =head2 set-e2label
1055
1056  set-e2label device label
1057
1058 This sets the ext2/3/4 filesystem label of the filesystem on
1059 C<device> to C<label>.  Filesystem labels are limited to
1060 16 characters.
1061
1062 You can use either C<tune2fs-l> or C<get-e2label>
1063 to return the existing label on a filesystem.
1064
1065 =head2 set-e2uuid
1066
1067  set-e2uuid device uuid
1068
1069 This sets the ext2/3/4 filesystem UUID of the filesystem on
1070 C<device> to C<uuid>.  The format of the UUID and alternatives
1071 such as C<clear>, C<random> and C<time> are described in the
1072 L<tune2fs(8)> manpage.
1073
1074 You can use either C<tune2fs-l> or C<get-e2uuid>
1075 to return the existing UUID of a filesystem.
1076
1077 =head2 set-path | path
1078
1079  set-path path
1080
1081 Set the path that libguestfs searches for kernel and initrd.img.
1082
1083 The default is C<$libdir/guestfs> unless overridden by setting
1084 C<LIBGUESTFS_PATH> environment variable.
1085
1086 Setting C<path> to C<NULL> restores the default path.
1087
1088 =head2 set-qemu | qemu
1089
1090  set-qemu qemu
1091
1092 Set the qemu binary that we will use.
1093
1094 The default is chosen when the library was compiled by the
1095 configure script.
1096
1097 You can also override this by setting the C<LIBGUESTFS_QEMU>
1098 environment variable.
1099
1100 Setting C<qemu> to C<NULL> restores the default qemu binary.
1101
1102 =head2 set-verbose | verbose
1103
1104  set-verbose true|false
1105
1106 If C<verbose> is true, this turns on verbose messages (to C<stderr>).
1107
1108 Verbose messages are disabled unless the environment variable
1109 C<LIBGUESTFS_DEBUG> is defined and set to C<1>.
1110
1111 =head2 sfdisk
1112
1113  sfdisk device cyls heads sectors 'lines ...'
1114
1115 This is a direct interface to the L<sfdisk(8)> program for creating
1116 partitions on block devices.
1117
1118 C<device> should be a block device, for example C</dev/sda>.
1119
1120 C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads
1121 and sectors on the device, which are passed directly to sfdisk as
1122 the I<-C>, I<-H> and I<-S> parameters.  If you pass C<0> for any
1123 of these, then the corresponding parameter is omitted.  Usually for
1124 'large' disks, you can just pass C<0> for these, but for small
1125 (floppy-sized) disks, sfdisk (or rather, the kernel) cannot work
1126 out the right geometry and you will need to tell it.
1127
1128 C<lines> is a list of lines that we feed to C<sfdisk>.  For more
1129 information refer to the L<sfdisk(8)> manpage.
1130
1131 To create a single partition occupying the whole disk, you would
1132 pass C<lines> as a single element list, when the single element being
1133 the string C<,> (comma).
1134
1135 See also: C<sfdisk-l>, C<sfdisk-N>
1136
1137 B<This command is dangerous.  Without careful use you
1138 can easily destroy all your data>.
1139
1140 =head2 sfdisk-N
1141
1142  sfdisk-N device n cyls heads sectors line
1143
1144 This runs L<sfdisk(8)> option to modify just the single
1145 partition C<n> (note: C<n> counts from 1).
1146
1147 For other parameters, see C<sfdisk>.  You should usually
1148 pass C<0> for the cyls/heads/sectors parameters.
1149
1150 B<This command is dangerous.  Without careful use you
1151 can easily destroy all your data>.
1152
1153 =head2 sfdisk-disk-geometry
1154
1155  sfdisk-disk-geometry device
1156
1157 This displays the disk geometry of C<device> read from the
1158 partition table.  Especially in the case where the underlying
1159 block device has been resized, this can be different from the
1160 kernel's idea of the geometry (see C<sfdisk-kernel-geometry>).
1161
1162 The result is in human-readable format, and not designed to
1163 be parsed.
1164
1165 =head2 sfdisk-kernel-geometry
1166
1167  sfdisk-kernel-geometry device
1168
1169 This displays the kernel's idea of the geometry of C<device>.
1170
1171 The result is in human-readable format, and not designed to
1172 be parsed.
1173
1174 =head2 sfdisk-l
1175
1176  sfdisk-l device
1177
1178 This displays the partition table on C<device>, in the
1179 human-readable output of the L<sfdisk(8)> command.  It is
1180 not intended to be parsed.
1181
1182 =head2 stat
1183
1184  stat path
1185
1186 Returns file information for the given C<path>.
1187
1188 This is the same as the C<stat(2)> system call.
1189
1190 =head2 statvfs
1191
1192  statvfs path
1193
1194 Returns file system statistics for any mounted file system.
1195 C<path> should be a file or directory in the mounted file system
1196 (typically it is the mount point itself, but it doesn't need to be).
1197
1198 This is the same as the C<statvfs(2)> system call.
1199
1200 =head2 strings
1201
1202  strings path
1203
1204 This runs the L<strings(1)> command on a file and returns
1205 the list of printable strings found.
1206
1207 Because of the message protocol, there is a transfer limit 
1208 of somewhere between 2MB and 4MB.  To transfer large files you should use
1209 FTP.
1210
1211 =head2 strings-e
1212
1213  strings-e encoding path
1214
1215 This is like the C<strings> command, but allows you to
1216 specify the encoding.
1217
1218 See the L<strings(1)> manpage for the full list of encodings.
1219
1220 Commonly useful encodings are C<l> (lower case L) which will
1221 show strings inside Windows/x86 files.
1222
1223 The returned strings are transcoded to UTF-8.
1224
1225 Because of the message protocol, there is a transfer limit 
1226 of somewhere between 2MB and 4MB.  To transfer large files you should use
1227 FTP.
1228
1229 =head2 sync
1230
1231  sync
1232
1233 This syncs the disk, so that any writes are flushed through to the
1234 underlying disk image.
1235
1236 You should always call this if you have modified a disk image, before
1237 closing the handle.
1238
1239 =head2 tar-in
1240
1241  tar-in (tarfile|-) directory
1242
1243 This command uploads and unpacks local file C<tarfile> (an
1244 I<uncompressed> tar file) into C<directory>.
1245
1246 To upload a compressed tarball, use C<tgz-in>.
1247
1248 Use C<-> instead of a filename to read/write from stdin/stdout.
1249
1250 =head2 tar-out
1251
1252  tar-out directory (tarfile|-)
1253
1254 This command packs the contents of C<directory> and downloads
1255 it to local file C<tarfile>.
1256
1257 To download a compressed tarball, use C<tgz-out>.
1258
1259 Use C<-> instead of a filename to read/write from stdin/stdout.
1260
1261 =head2 tgz-in
1262
1263  tgz-in (tarball|-) directory
1264
1265 This command uploads and unpacks local file C<tarball> (a
1266 I<gzip compressed> tar file) into C<directory>.
1267
1268 To upload an uncompressed tarball, use C<tar-in>.
1269
1270 Use C<-> instead of a filename to read/write from stdin/stdout.
1271
1272 =head2 tgz-out
1273
1274  tgz-out directory (tarball|-)
1275
1276 This command packs the contents of C<directory> and downloads
1277 it to local file C<tarball>.
1278
1279 To download an uncompressed tarball, use C<tar-out>.
1280
1281 Use C<-> instead of a filename to read/write from stdin/stdout.
1282
1283 =head2 touch
1284
1285  touch path
1286
1287 Touch acts like the L<touch(1)> command.  It can be used to
1288 update the timestamps on a file, or, if the file does not exist,
1289 to create a new zero-length file.
1290
1291 =head2 tune2fs-l
1292
1293  tune2fs-l device
1294
1295 This returns the contents of the ext2, ext3 or ext4 filesystem
1296 superblock on C<device>.
1297
1298 It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)>
1299 manpage for more details.  The list of fields returned isn't
1300 clearly defined, and depends on both the version of C<tune2fs>
1301 that libguestfs was built against, and the filesystem itself.
1302
1303 =head2 umount | unmount
1304
1305  umount pathordevice
1306
1307 This unmounts the given filesystem.  The filesystem may be
1308 specified either by its mountpoint (path) or the device which
1309 contains the filesystem.
1310
1311 =head2 umount-all | unmount-all
1312
1313  umount-all
1314
1315 This unmounts all mounted filesystems.
1316
1317 Some internal mounts are not unmounted by this call.
1318
1319 =head2 upload
1320
1321  upload (filename|-) remotefilename
1322
1323 Upload local file C<filename> to C<remotefilename> on the
1324 filesystem.
1325
1326 C<filename> can also be a named pipe.
1327
1328 See also C<download>.
1329
1330 Use C<-> instead of a filename to read/write from stdin/stdout.
1331
1332 =head2 vg-activate
1333
1334  vg-activate true|false 'volgroups ...'
1335
1336 This command activates or (if C<activate> is false) deactivates
1337 all logical volumes in the listed volume groups C<volgroups>.
1338 If activated, then they are made known to the
1339 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
1340 then those devices disappear.
1341
1342 This command is the same as running C<vgchange -a y|n volgroups...>
1343
1344 Note that if C<volgroups> is an empty list then B<all> volume groups
1345 are activated or deactivated.
1346
1347 =head2 vg-activate-all
1348
1349  vg-activate-all true|false
1350
1351 This command activates or (if C<activate> is false) deactivates
1352 all logical volumes in all volume groups.
1353 If activated, then they are made known to the
1354 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
1355 then those devices disappear.
1356
1357 This command is the same as running C<vgchange -a y|n>
1358
1359 =head2 vgcreate
1360
1361  vgcreate volgroup 'physvols ...'
1362
1363 This creates an LVM volume group called C<volgroup>
1364 from the non-empty list of physical volumes C<physvols>.
1365
1366 =head2 vgremove
1367
1368  vgremove vgname
1369
1370 Remove an LVM volume group C<vgname>, (for example C<VG>).
1371
1372 This also forcibly removes all logical volumes in the volume
1373 group (if any).
1374
1375 =head2 vgs
1376
1377  vgs
1378
1379 List all the volumes groups detected.  This is the equivalent
1380 of the L<vgs(8)> command.
1381
1382 This returns a list of just the volume group names that were
1383 detected (eg. C<VolGroup00>).
1384
1385 See also C<vgs-full>.
1386
1387 =head2 vgs-full
1388
1389  vgs-full
1390
1391 List all the volumes groups detected.  This is the equivalent
1392 of the L<vgs(8)> command.  The "full" version includes all fields.
1393
1394 =head2 write-file
1395
1396  write-file path content size
1397
1398 This call creates a file called C<path>.  The contents of the
1399 file is the string C<content> (which can contain any 8 bit data),
1400 with length C<size>.
1401
1402 As a special case, if C<size> is C<0>
1403 then the length is calculated using C<strlen> (so in this case
1404 the content cannot contain embedded ASCII NULs).
1405
1406 I<NB.> Owing to a bug, writing content containing ASCII NUL
1407 characters does I<not> work, even if the length is specified.
1408 We hope to resolve this bug in a future version.  In the meantime
1409 use C<upload>.
1410
1411 Because of the message protocol, there is a transfer limit 
1412 of somewhere between 2MB and 4MB.  To transfer large files you should use
1413 FTP.
1414
1415 =head2 zero
1416
1417  zero device
1418
1419 This command writes zeroes over the first few blocks of C<device>.
1420
1421 How many blocks are zeroed isn't specified (but it's I<not> enough
1422 to securely wipe the device).  It should be sufficient to remove
1423 any partition tables, filesystem superblocks and so on.
1424
1425 =head2 zerofree
1426
1427  zerofree device
1428
1429 This runs the I<zerofree> program on C<device>.  This program
1430 claims to zero unused inodes and disk blocks on an ext2/3
1431 filesystem, thus making it possible to compress the filesystem
1432 more effectively.
1433
1434 You should B<not> run this program if the filesystem is
1435 mounted.
1436
1437 It is possible that using this program can damage the filesystem
1438 or data on the filesystem.
1439