Generated code for lvremove, vgremove, pvremove.
[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 C<$PATH> environment variable will contain at least
376 C</usr/bin> and C</bin>.  If you require a program from
377 another location, you should provide the full path in the
378 first parameter.
379
380 Shared libraries and data files required by the program
381 must be available on filesystems which are mounted in the
382 correct places.  It is the caller's responsibility to ensure
383 all filesystems that are needed are mounted at the right
384 locations.
385
386 =head2 command-lines
387
388  command-lines 'arguments ...'
389
390 This is the same as C<command>, but splits the
391 result into a list of lines.
392
393 =head2 config
394
395  config qemuparam qemuvalue
396
397 This can be used to add arbitrary qemu command line parameters
398 of the form C<-param value>.  Actually it's not quite arbitrary - we
399 prevent you from setting some parameters which would interfere with
400 parameters that we use.
401
402 The first character of C<param> string must be a C<-> (dash).
403
404 C<value> can be NULL.
405
406 =head2 debug
407
408  debug subcmd 'extraargs ...'
409
410 The C<debug> command exposes some internals of
411 C<guestfsd> (the guestfs daemon) that runs inside the
412 qemu subprocess.
413
414 There is no comprehensive help for this command.  You have
415 to look at the file C<daemon/debug.c> in the libguestfs source
416 to find out what you can do.
417
418 =head2 download
419
420  download remotefilename (filename|-)
421
422 Download file C<remotefilename> and save it as C<filename>
423 on the local machine.
424
425 C<filename> can also be a named pipe.
426
427 See also C<upload>, C<cat>.
428
429 Use C<-> instead of a filename to read/write from stdin/stdout.
430
431 =head2 exists
432
433  exists path
434
435 This returns C<true> if and only if there is a file, directory
436 (or anything) with the given C<path> name.
437
438 See also C<is-file>, C<is-dir>, C<stat>.
439
440 =head2 file
441
442  file path
443
444 This call uses the standard L<file(1)> command to determine
445 the type or contents of the file.  This also works on devices,
446 for example to find out whether a partition contains a filesystem.
447
448 The exact command which runs is C<file -bsL path>.  Note in
449 particular that the filename is not prepended to the output
450 (the C<-b> option).
451
452 =head2 get-autosync
453
454  get-autosync
455
456 Get the autosync flag.
457
458 =head2 get-path
459
460  get-path
461
462 Return the current search path.
463
464 This is always non-NULL.  If it wasn't set already, then this will
465 return the default path.
466
467 =head2 get-qemu
468
469  get-qemu
470
471 Return the current qemu binary.
472
473 This is always non-NULL.  If it wasn't set already, then this will
474 return the default qemu binary name.
475
476 =head2 get-state
477
478  get-state
479
480 This returns the current state as an opaque integer.  This is
481 only useful for printing debug and internal error messages.
482
483 For more information on states, see L<guestfs(3)>.
484
485 =head2 get-verbose
486
487  get-verbose
488
489 This returns the verbose messages flag.
490
491 =head2 is-busy
492
493  is-busy
494
495 This returns true iff this handle is busy processing a command
496 (in the C<BUSY> state).
497
498 For more information on states, see L<guestfs(3)>.
499
500 =head2 is-config
501
502  is-config
503
504 This returns true iff this handle is being configured
505 (in the C<CONFIG> state).
506
507 For more information on states, see L<guestfs(3)>.
508
509 =head2 is-dir
510
511  is-dir path
512
513 This returns C<true> if and only if there is a directory
514 with the given C<path> name.  Note that it returns false for
515 other objects like files.
516
517 See also C<stat>.
518
519 =head2 is-file
520
521  is-file path
522
523 This returns C<true> if and only if there is a file
524 with the given C<path> name.  Note that it returns false for
525 other objects like directories.
526
527 See also C<stat>.
528
529 =head2 is-launching
530
531  is-launching
532
533 This returns true iff this handle is launching the subprocess
534 (in the C<LAUNCHING> state).
535
536 For more information on states, see L<guestfs(3)>.
537
538 =head2 is-ready
539
540  is-ready
541
542 This returns true iff this handle is ready to accept commands
543 (in the C<READY> state).
544
545 For more information on states, see L<guestfs(3)>.
546
547 =head2 kill-subprocess
548
549  kill-subprocess
550
551 This kills the qemu subprocess.  You should never need to call this.
552
553 =head2 launch | run
554
555  launch
556
557 Internally libguestfs is implemented by running a virtual machine
558 using L<qemu(1)>.
559
560 You should call this after configuring the handle
561 (eg. adding drives) but before performing any actions.
562
563 =head2 list-devices
564
565  list-devices
566
567 List all the block devices.
568
569 The full block device names are returned, eg. C</dev/sda>
570
571 =head2 list-partitions
572
573  list-partitions
574
575 List all the partitions detected on all block devices.
576
577 The full partition device names are returned, eg. C</dev/sda1>
578
579 This does not return logical volumes.  For that you will need to
580 call C<lvs>.
581
582 =head2 ll
583
584  ll directory
585
586 List the files in C<directory> (relative to the root directory,
587 there is no cwd) in the format of 'ls -la'.
588
589 This command is mostly useful for interactive sessions.  It
590 is I<not> intended that you try to parse the output string.
591
592 =head2 ls
593
594  ls directory
595
596 List the files in C<directory> (relative to the root directory,
597 there is no cwd).  The '.' and '..' entries are not returned, but
598 hidden files are shown.
599
600 This command is mostly useful for interactive sessions.  Programs
601 should probably use C<readdir> instead.
602
603 =head2 lstat
604
605  lstat path
606
607 Returns file information for the given C<path>.
608
609 This is the same as C<stat> except that if C<path>
610 is a symbolic link, then the link is stat-ed, not the file it
611 refers to.
612
613 This is the same as the C<lstat(2)> system call.
614
615 =head2 lvcreate
616
617  lvcreate logvol volgroup mbytes
618
619 This creates an LVM volume group called C<logvol>
620 on the volume group C<volgroup>, with C<size> megabytes.
621
622 =head2 lvm-remove-all
623
624  lvm-remove-all
625
626 This command removes all LVM logical volumes, volume groups
627 and physical volumes.
628
629 B<This command is dangerous.  Without careful use you
630 can easily destroy all your data>.
631
632 =head2 lvremove
633
634  lvremove device
635
636 Remove an LVM logical volume C<device>, where C<device> is
637 the path to the LV, such as C</dev/VG/LV>.
638
639 You can also remove all LVs in a volume group by specifying
640 the VG name, C</dev/VG>.
641
642 =head2 lvs
643
644  lvs
645
646 List all the logical volumes detected.  This is the equivalent
647 of the L<lvs(8)> command.
648
649 This returns a list of the logical volume device names
650 (eg. C</dev/VolGroup00/LogVol00>).
651
652 See also C<lvs-full>.
653
654 =head2 lvs-full
655
656  lvs-full
657
658 List all the logical volumes detected.  This is the equivalent
659 of the L<lvs(8)> command.  The "full" version includes all fields.
660
661 =head2 mkdir
662
663  mkdir path
664
665 Create a directory named C<path>.
666
667 =head2 mkdir-p
668
669  mkdir-p path
670
671 Create a directory named C<path>, creating any parent directories
672 as necessary.  This is like the C<mkdir -p> shell command.
673
674 =head2 mkfs
675
676  mkfs fstype device
677
678 This creates a filesystem on C<device> (usually a partition
679 of LVM logical volume).  The filesystem type is C<fstype>, for
680 example C<ext3>.
681
682 =head2 mount
683
684  mount device mountpoint
685
686 Mount a guest disk at a position in the filesystem.  Block devices
687 are named C</dev/sda>, C</dev/sdb> and so on, as they were added to
688 the guest.  If those block devices contain partitions, they will have
689 the usual names (eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style
690 names can be used.
691
692 The rules are the same as for L<mount(2)>:  A filesystem must
693 first be mounted on C</> before others can be mounted.  Other
694 filesystems can only be mounted on directories which already
695 exist.
696
697 The mounted filesystem is writable, if we have sufficient permissions
698 on the underlying device.
699
700 The filesystem options C<sync> and C<noatime> are set with this
701 call, in order to improve reliability.
702
703 =head2 mount-options
704
705  mount-options options device mountpoint
706
707 This is the same as the C<mount> command, but it
708 allows you to set the mount options as for the
709 L<mount(8)> I<-o> flag.
710
711 =head2 mount-ro
712
713  mount-ro device mountpoint
714
715 This is the same as the C<mount> command, but it
716 mounts the filesystem with the read-only (I<-o ro>) flag.
717
718 =head2 mount-vfs
719
720  mount-vfs options vfstype device mountpoint
721
722 This is the same as the C<mount> command, but it
723 allows you to set both the mount options and the vfstype
724 as for the L<mount(8)> I<-o> and I<-t> flags.
725
726 =head2 mounts
727
728  mounts
729
730 This returns the list of currently mounted filesystems.  It returns
731 the list of devices (eg. C</dev/sda1>, C</dev/VG/LV>).
732
733 Some internal mounts are not shown.
734
735 =head2 pvcreate
736
737  pvcreate device
738
739 This creates an LVM physical volume on the named C<device>,
740 where C<device> should usually be a partition name such
741 as C</dev/sda1>.
742
743 =head2 pvremove
744
745  pvremove device
746
747 This wipes a physical volume C<device> so that LVM will no longer
748 recognise it.
749
750 The implementation uses the C<pvremove> command which refuses to
751 wipe physical volumes that contain any volume groups, so you have
752 to remove those first.
753
754 =head2 pvs
755
756  pvs
757
758 List all the physical volumes detected.  This is the equivalent
759 of the L<pvs(8)> command.
760
761 This returns a list of just the device names that contain
762 PVs (eg. C</dev/sda2>).
763
764 See also C<pvs-full>.
765
766 =head2 pvs-full
767
768  pvs-full
769
770 List all the physical volumes detected.  This is the equivalent
771 of the L<pvs(8)> command.  The "full" version includes all fields.
772
773 =head2 read-lines
774
775  read-lines path
776
777 Return the contents of the file named C<path>.
778
779 The file contents are returned as a list of lines.  Trailing
780 C<LF> and C<CRLF> character sequences are I<not> returned.
781
782 Note that this function cannot correctly handle binary files
783 (specifically, files containing C<\0> character which is treated
784 as end of line).  For those you need to use the C<read-file>
785 function which has a more complex interface.
786
787 =head2 rm
788
789  rm path
790
791 Remove the single file C<path>.
792
793 =head2 rm-rf
794
795  rm-rf path
796
797 Remove the file or directory C<path>, recursively removing the
798 contents if its a directory.  This is like the C<rm -rf> shell
799 command.
800
801 =head2 rmdir
802
803  rmdir path
804
805 Remove the single directory C<path>.
806
807 =head2 set-autosync | autosync
808
809  set-autosync true|false
810
811 If C<autosync> is true, this enables autosync.  Libguestfs will make a
812 best effort attempt to run C<sync> when the handle is closed
813 (also if the program exits without closing handles).
814
815 =head2 set-path | path
816
817  set-path path
818
819 Set the path that libguestfs searches for kernel and initrd.img.
820
821 The default is C<$libdir/guestfs> unless overridden by setting
822 C<LIBGUESTFS_PATH> environment variable.
823
824 The string C<path> is stashed in the libguestfs handle, so the caller
825 must make sure it remains valid for the lifetime of the handle.
826
827 Setting C<path> to C<NULL> restores the default path.
828
829 =head2 set-qemu | qemu
830
831  set-qemu qemu
832
833 Set the qemu binary that we will use.
834
835 The default is chosen when the library was compiled by the
836 configure script.
837
838 You can also override this by setting the C<LIBGUESTFS_QEMU>
839 environment variable.
840
841 The string C<qemu> is stashed in the libguestfs handle, so the caller
842 must make sure it remains valid for the lifetime of the handle.
843
844 Setting C<qemu> to C<NULL> restores the default qemu binary.
845
846 =head2 set-verbose | verbose
847
848  set-verbose true|false
849
850 If C<verbose> is true, this turns on verbose messages (to C<stderr>).
851
852 Verbose messages are disabled unless the environment variable
853 C<LIBGUESTFS_DEBUG> is defined and set to C<1>.
854
855 =head2 sfdisk
856
857  sfdisk device cyls heads sectors 'lines ...'
858
859 This is a direct interface to the L<sfdisk(8)> program for creating
860 partitions on block devices.
861
862 C<device> should be a block device, for example C</dev/sda>.
863
864 C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads
865 and sectors on the device, which are passed directly to sfdisk as
866 the I<-C>, I<-H> and I<-S> parameters.  If you pass C<0> for any
867 of these, then the corresponding parameter is omitted.  Usually for
868 'large' disks, you can just pass C<0> for these, but for small
869 (floppy-sized) disks, sfdisk (or rather, the kernel) cannot work
870 out the right geometry and you will need to tell it.
871
872 C<lines> is a list of lines that we feed to C<sfdisk>.  For more
873 information refer to the L<sfdisk(8)> manpage.
874
875 To create a single partition occupying the whole disk, you would
876 pass C<lines> as a single element list, when the single element being
877 the string C<,> (comma).
878
879 B<This command is dangerous.  Without careful use you
880 can easily destroy all your data>.
881
882 =head2 stat
883
884  stat path
885
886 Returns file information for the given C<path>.
887
888 This is the same as the C<stat(2)> system call.
889
890 =head2 statvfs
891
892  statvfs path
893
894 Returns file system statistics for any mounted file system.
895 C<path> should be a file or directory in the mounted file system
896 (typically it is the mount point itself, but it doesn't need to be).
897
898 This is the same as the C<statvfs(2)> system call.
899
900 =head2 sync
901
902  sync
903
904 This syncs the disk, so that any writes are flushed through to the
905 underlying disk image.
906
907 You should always call this if you have modified a disk image, before
908 closing the handle.
909
910 =head2 tar-in
911
912  tar-in (tarfile|-) directory
913
914 This command uploads and unpacks local file C<tarfile> (an
915 I<uncompressed> tar file) into C<directory>.
916
917 To upload a compressed tarball, use C<tgz-in>.
918
919 Use C<-> instead of a filename to read/write from stdin/stdout.
920
921 =head2 tar-out
922
923  tar-out directory (tarfile|-)
924
925 This command packs the contents of C<directory> and downloads
926 it to local file C<tarfile>.
927
928 To download a compressed tarball, use C<tgz-out>.
929
930 Use C<-> instead of a filename to read/write from stdin/stdout.
931
932 =head2 tgz-in
933
934  tgz-in (tarball|-) directory
935
936 This command uploads and unpacks local file C<tarball> (a
937 I<gzip compressed> tar file) into C<directory>.
938
939 To upload an uncompressed tarball, use C<tar-in>.
940
941 Use C<-> instead of a filename to read/write from stdin/stdout.
942
943 =head2 tgz-out
944
945  tgz-out directory (tarball|-)
946
947 This command packs the contents of C<directory> and downloads
948 it to local file C<tarball>.
949
950 To download an uncompressed tarball, use C<tar-out>.
951
952 Use C<-> instead of a filename to read/write from stdin/stdout.
953
954 =head2 touch
955
956  touch path
957
958 Touch acts like the L<touch(1)> command.  It can be used to
959 update the timestamps on a file, or, if the file does not exist,
960 to create a new zero-length file.
961
962 =head2 tune2fs-l
963
964  tune2fs-l device
965
966 This returns the contents of the ext2, ext3 or ext4 filesystem
967 superblock on C<device>.
968
969 It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)>
970 manpage for more details.  The list of fields returned isn't
971 clearly defined, and depends on both the version of C<tune2fs>
972 that libguestfs was built against, and the filesystem itself.
973
974 =head2 umount | unmount
975
976  umount pathordevice
977
978 This unmounts the given filesystem.  The filesystem may be
979 specified either by its mountpoint (path) or the device which
980 contains the filesystem.
981
982 =head2 umount-all | unmount-all
983
984  umount-all
985
986 This unmounts all mounted filesystems.
987
988 Some internal mounts are not unmounted by this call.
989
990 =head2 upload
991
992  upload (filename|-) remotefilename
993
994 Upload local file C<filename> to C<remotefilename> on the
995 filesystem.
996
997 C<filename> can also be a named pipe.
998
999 See also C<download>.
1000
1001 Use C<-> instead of a filename to read/write from stdin/stdout.
1002
1003 =head2 vgcreate
1004
1005  vgcreate volgroup 'physvols ...'
1006
1007 This creates an LVM volume group called C<volgroup>
1008 from the non-empty list of physical volumes C<physvols>.
1009
1010 =head2 vgremove
1011
1012  vgremove vgname
1013
1014 Remove an LVM volume group C<vgname>, (for example C<VG>).
1015
1016 This also forcibly removes all logical volumes in the volume
1017 group (if any).
1018
1019 =head2 vgs
1020
1021  vgs
1022
1023 List all the volumes groups detected.  This is the equivalent
1024 of the L<vgs(8)> command.
1025
1026 This returns a list of just the volume group names that were
1027 detected (eg. C<VolGroup00>).
1028
1029 See also C<vgs-full>.
1030
1031 =head2 vgs-full
1032
1033  vgs-full
1034
1035 List all the volumes groups detected.  This is the equivalent
1036 of the L<vgs(8)> command.  The "full" version includes all fields.
1037
1038 =head2 write-file
1039
1040  write-file path content size
1041
1042 This call creates a file called C<path>.  The contents of the
1043 file is the string C<content> (which can contain any 8 bit data),
1044 with length C<size>.
1045
1046 As a special case, if C<size> is C<0>
1047 then the length is calculated using C<strlen> (so in this case
1048 the content cannot contain embedded ASCII NULs).
1049
1050 Because of the message protocol, there is a transfer limit 
1051 of somewhere between 2MB and 4MB.  To transfer large files you should use
1052 FTP.
1053