名 前
guestfs-examples - C か ら libguestfs を 使 用 す る 例
書 式
#include
<guestfs.h>
guestfs_h *g = guestfs_create ();
guestfs_add_drive_ro (g, "disk.img");
guestfs_launch (g);
cc prog.c -o
prog -lguestfs
or:
cc prog.c -o prog `pkg-config libguestfs --cflags
--libs`
説 明
こ の マ ニ ュ ア ル ペ ー ジ は C プ ロ グ ラ ミ ン グ 言 語 か ら libguestfs を 呼 び 出 す 例 が あ り ま す 。 libguestfs を 使 用 す る こ と に 慣 れ て い な け れ ば 、 guestfs(3) を 読 む 必 要 も あ り ま す 。
例 : デ ィ ス ク イ メ ー ジ の 作 成
@CREATE_DISK@
例 : 仮 想 マ シ ン の デ ィ ス ク イ メ ー ジ の 検 査
@INSPECT_VM@
例 : デ バ ッ グ お よ び ロ ギ ン グ の 有 効 化
@DEBUG_LOGGING@
例 : 仮 想 マ シ ン に あ る オ ペ レ ー テ ィ ン グ シ ス テ ム の ア イ コ ン の 表 示
@DISPLAY_ICON@
例 : libvirt 認 証 API
@LIBVIRT_AUTH@
例 : ロ ー カ ル API の マ ウ ン ト
@MOUNT_LOCAL@
例 : 複 数 の ハ ン ド ル お よ び ス レ ッ ド
@COPY_OVER@
例 : 仮 想 マ シ ン か ら の DHCP ア ド レ ス の 取 得
@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")
COPYRIGHT
Copyright (C) 2010-2023 Red Hat Inc.
LICENSE
BUGS
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. |