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