X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=guestfish-actions.pod;h=e635e548cdb420a22678a80bda5b396836db6ff5;hb=5186251f8f681f2ebb028423bb49a748861fd11e;hp=e22aad1280f450d1b0eccd3ad2faf0318a1b081e;hpb=b2ed0f4c55c2bd3d07341ba2207f0cb238eb4e18;p=libguestfs.git diff --git a/guestfish-actions.pod b/guestfish-actions.pod index e22aad1..e635e54 100644 --- a/guestfish-actions.pod +++ b/guestfish-actions.pod @@ -26,7 +26,8 @@ for whatever operations you want to perform (ie. read access if you just want to read the image or write access if you want to modify the image). -This is equivalent to the qemu parameter C<-drive file=filename,cache=off>. +This is equivalent to the qemu parameter +C<-drive file=filename,cache=off,if=virtio>. Note that this call checks for the existence of C. This stops you from specifying other types of drive which are supported @@ -47,7 +48,7 @@ handle is closed. We don't currently have any method to enable changes to be committed, although qemu can support this. This is equivalent to the qemu parameter -C<-drive file=filename,snapshot=on>. +C<-drive file=filename,snapshot=on,if=virtio>. Note that this call checks for the existence of C. This stops you from specifying other types of drive which are supported @@ -540,6 +541,20 @@ Setting C to 3 should drop everything. This automatically calls L before the operation, so that the maximum guest memory is freed. +=head2 du + + du path + +This command runs the C command to estimate file space +usage for C. + +C can be a file or a directory. If C is a directory +then the estimate includes the contents of the directory and all +subdirectories (recursively). + +The result is the estimated size in I +(ie. units of 1024 bytes). + =head2 e2fsck-f e2fsck-f device @@ -671,6 +686,20 @@ C. This returns the ext2/3/4 filesystem UUID of the filesystem on C. +=head2 get-memsize + + get-memsize + +This gets the memory size in megabytes allocated to the +qemu subprocess. + +If C was not called +on this handle, and if C was not set, +then this returns the compiled-in default value for memsize. + +For more information on the architecture of libguestfs, +see L. + =head2 get-path get-path @@ -764,6 +793,20 @@ Because of the message protocol, there is a transfer limit of somewhere between 2MB and 4MB. To transfer large files you should use FTP. +=head2 initrd-list + + initrd-list path + +This command lists out files contained in an initrd. + +The files are listed without any initial C character. The +files are listed in the order they appear (not necessarily +alphabetical). Directory names are listed as separate items. + +Old Linux kernels (2.4 and earlier) used a compressed ext2 +filesystem as initrd. We I support the newer initramfs +format (compressed cpio files). + =head2 is-busy is-busy @@ -978,6 +1021,14 @@ directory and its contents after use. See also: L +=head2 mkfifo + + mkfifo mode path + +This call creates a FIFO (named pipe) called C with +mode C. It is just a convenient wrapper around +C. + =head2 mkfs mkfs fstype device @@ -986,6 +1037,52 @@ This creates a filesystem on C (usually a partition or LVM logical volume). The filesystem type is C, for example C. +=head2 mknod + + mknod mode devmajor devminor path + +This call creates block or character special devices, or +named pipes (FIFOs). + +The C parameter should be the mode, using the standard +constants. C and C are the +device major and minor numbers, only used when creating block +and character special devices. + +=head2 mknod-b + + mknod-b mode devmajor devminor path + +This call creates a block device node called C with +mode C and device major/minor C and C. +It is just a convenient wrapper around C. + +=head2 mknod-c + + mknod-c mode devmajor devminor path + +This call creates a char device node called C with +mode C and device major/minor C and C. +It is just a convenient wrapper around C. + +=head2 mkswap + + mkswap device + +Create a swap partition on C. + +=head2 mkswap-L + + mkswap-L label device + +Create a swap partition on C with label C