guestfs-examples —
приклади
використання
libguestfs з коду
мовою C
#include <guestfs.h>
guestfs_h *g = guestfs_create ();
guestfs_add_drive_ro (g, "disk.img");
guestfs_launch (g);
cc prog.c -o prog -lguestfs
або:
cc prog.c -o prog `pkg-config libguestfs --cflags --libs`
На цій
сторінці
підручника
наведено
документацію
щодо
викликів libguestfs
з коду
мовою
програмування
C. Якщо ви не
дуже
знайомі із
користуванням
libguestfs, вам також
слід
прочитати
підручник
з
guestfs(3).
@CREATE_DISK@
@INSPECT_VM@
@DEBUG_LOGGING@
@DISPLAY_ICON@
@LIBVIRT_AUTH@
@MOUNT_LOCAL@
@COPY_OVER@
@VIRT_DHCP_ADDRESS@
guestfs(3),
guestfs-erlang(3),
guestfs-golang(3),
guestfs-java(3),
guestfs-lua(3),
guestfs-ocaml(3),
guestfs-perl(3),
guestfs-python(3),
guestfs-recipes(1),
guestfs-ruby(3),
http://libguestfs.org/.
Richard W.M. Jones ("rjones at redhat dot com")
© Red Hat Inc., 2010–2020
To get a list of bugs against libguestfs, use this link:
https://bugzilla.redhat.com/buglist.cgi?component=libguestfs&product=Virtualization+Tools
To report a new bug against libguestfs, use this link:
https://bugzilla.redhat.com/enter_bug.cgi?component=libguestfs&product=Virtualization+Tools
When reporting a bug, please supply:
- •
- The version of libguestfs.
- •
- Where you got libguestfs (eg. which Linux distro, compiled
from source, etc)
- •
- Describe the bug accurately and give a way to reproduce
it.
- •
- Run libguestfs-test-tool(1) and paste the
complete, unedited output into the bug report.