X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=guestfish.pod;h=026f82d105ac9274d4b2c99dc19f2e1c27cf1471;hp=b63541929336bacd892c7ac0d42ae2cd8557b9f1;hb=4d45c45f0928c7791429d351dc69b75167888f7d;hpb=ec02f0da1550e37acd95d615ff4fcf88569bcf2c diff --git a/guestfish.pod b/guestfish.pod index b635419..026f82d 100644 --- a/guestfish.pod +++ b/guestfish.pod @@ -49,13 +49,13 @@ Remove C (in reality not such a great idea): =head2 As an interactive shell $ guestfish - + Welcome to guestfish, the libguestfs filesystem interactive shell for editing virtual machine filesystems. - + Type: 'help' for help with commands 'quit' to quit the shell - + > help =head2 As a script interpreter @@ -63,7 +63,7 @@ Remove C (in reality not such a great idea): #!/usr/bin/guestfish -f alloc /tmp/output.img 10M run - sfdisk /dev/sda 0 0 0 , + part-disk /dev/sda mbr mkfs ext2 /dev/sda1 =head2 Remote control @@ -453,6 +453,18 @@ number of megabytes number of gigabytes +=item CT or CTB + +number of terabytes + +=item CP or CPB + +number of petabytes + +=item CE or CEB + +number of exabytes + =item Csects number of 512 byte sectors @@ -531,6 +543,55 @@ Close and reopen the libguestfs handle. It is not necessary to use this normally, because the handle is closed properly when guestfish exits. However this is occasionally useful for testing. +=head2 sparse + + sparse filename size + +This creates an empty sparse file of the given size, and then adds +so it can be further examined. + +In all respects it works the same as the C command, except that +the image file is allocated sparsely, which means that disk blocks are +not assigned to the file until they are needed. Sparse disk files +only use space when written to, but they are slower and there is a +danger you could run out of real disk space during a write operation. + +For more advanced image creation, see L utility. + +Size can be specified (where C means a number): + +=over 4 + +=item C or CK or CKB + +number of kilobytes, eg: C<1440> = standard 3.5in floppy + +=item CM or CMB + +number of megabytes + +=item CG or CGB + +number of gigabytes + +=item CT or CTB + +number of terabytes + +=item CP or CPB + +number of petabytes + +=item CE or CEB + +number of exabytes + +=item Csects + +number of 512 byte sectors + +=back + =head2 time time command args...