X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=guestfs-actions.pod;h=9afa5de9a6c994ab05e1e7e90e79c349e4483b39;hp=f37ec50bd39eb69a6596ebfc2d65969bab9f52b3;hb=5e332cc6c06532191f793a6789bafe818f726258;hpb=460d139e6a52da67a4f1947035b1978610349f78 diff --git a/guestfs-actions.pod b/guestfs-actions.pod index f37ec50..9afa5de 100644 --- a/guestfs-actions.pod +++ b/guestfs-actions.pod @@ -30,7 +30,7 @@ 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>. +This is equivalent to the qemu parameter C<-drive file=filename,cache=off>. Note that this call checks for the existence of C. This stops you from specifying other types of drive which are supported @@ -511,7 +511,9 @@ or compatible processor architecture). The single parameter is an argv-style list of arguments. The first element is the name of the program to run. Subsequent elements are parameters. The list must be -non-empty (ie. must contain a program name). +non-empty (ie. must contain a program name). Note that +the command runs directly, and is I invoked via +the shell (see C). The return value is anything printed to I by the command. @@ -546,6 +548,8 @@ FTP. This is the same as C, but splits the result into a list of lines. +See also: C + This function returns a NULL-terminated array of strings (like L), or NULL if there was an error. I. @@ -880,6 +884,26 @@ This returns the verbose messages flag. This function returns a C truth value on success or -1 on error. +=head2 guestfs_glob_expand + + char **guestfs_glob_expand (guestfs_h *handle, + const char *pattern); + +This command searches for all the pathnames matching +C according to the wildcard expansion rules +used by the shell. + +If no paths match, then this returns an empty list +(note: not an error). + +It is just a wrapper around the C L function +with flags C. +See that manual page for more details. + +This function returns a NULL-terminated array of strings +(like L), or NULL if there was an error. +I. + =head2 guestfs_grub_install int guestfs_grub_install (guestfs_h *handle, @@ -1424,6 +1448,53 @@ Remove the single directory C. This function returns 0 on success or -1 on error. +=head2 guestfs_scrub_device + + int guestfs_scrub_device (guestfs_h *handle, + const char *device); + +This command writes patterns over C to make data retrieval +more difficult. + +It is an interface to the L program. See that +manual page for more details. + +This function returns 0 on success or -1 on error. + +B. + +=head2 guestfs_scrub_file + + int guestfs_scrub_file (guestfs_h *handle, + const char *file); + +This command writes patterns over a file to make data retrieval +more difficult. + +The file is I after scrubbing. + +It is an interface to the L program. See that +manual page for more details. + +This function returns 0 on success or -1 on error. + +=head2 guestfs_scrub_freespace + + int guestfs_scrub_freespace (guestfs_h *handle, + const char *dir); + +This command creates the directory C and then fills it +with files until the filesystem is full, and scrubs the files +as for C, and deletes them. +The intention is to scrub any free space on the partition +containing C. + +It is an interface to the L program. See that +manual page for more details. + +This function returns 0 on success or -1 on error. + =head2 guestfs_set_append int guestfs_set_append (guestfs_h *handle, @@ -1649,6 +1720,41 @@ not intended to be parsed. This function returns a string, or NULL on error. I. +=head2 guestfs_sh + + char *guestfs_sh (guestfs_h *handle, + const char *command); + +This call runs a command from the guest filesystem via the +guest's C. + +This is like C, but passes the command to: + + /bin/sh -c "command" + +Depending on the guest's shell, this usually results in +wildcards being expanded, shell expressions being interpolated +and so on. + +All the provisos about C apply to this call. + +This function returns a string, or NULL on error. +I. + +=head2 guestfs_sh_lines + + char **guestfs_sh_lines (guestfs_h *handle, + const char *command); + +This is the same as C, but splits the result +into a list of lines. + +See also: C + +This function returns a NULL-terminated array of strings +(like L), or NULL if there was an error. +I. + =head2 guestfs_sleep int guestfs_sleep (guestfs_h *handle, @@ -1992,6 +2098,8 @@ How many blocks are zeroed isn't specified (but it's I enough to securely wipe the device). It should be sufficient to remove any partition tables, filesystem superblocks and so on. +See also: C. + This function returns 0 on success or -1 on error. =head2 guestfs_zerofree