X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=ocaml%2Fguestfs.mli;h=5baf9955a0f79d25db7f48948ea973809aa30475;hb=8c60f5c681b5d7cf90bc798fcaf94cd4e242e27f;hp=291f34011c33768977082434ca92ad37901e96e1;hpb=b03ee3675bed8d739ae722ed8c030ae02b3cb0ed;p=libguestfs.git diff --git a/ocaml/guestfs.mli b/ocaml/guestfs.mli index 291f340..5baf995 100644 --- a/ocaml/guestfs.mli +++ b/ocaml/guestfs.mli @@ -436,3 +436,24 @@ val set_e2uuid : t -> string -> string -> unit val get_e2uuid : t -> string -> string (** get the ext2/3/4 filesystem UUID *) +val fsck : t -> string -> string -> int +(** run the filesystem checker *) + +val zero : t -> string -> unit +(** write zeroes to the device *) + +val grub_install : t -> string -> string -> unit +(** install GRUB *) + +val cp : t -> string -> string -> unit +(** copy a file *) + +val cp_a : t -> string -> string -> unit +(** copy a file or directory recursively *) + +val mv : t -> string -> string -> unit +(** move a file *) + +val drop_caches : t -> int -> unit +(** drop kernel page cache, dentries and inodes *) +