1 # SOME DESCRIPTIVE TITLE.
2 # Copyright (C) YEAR Free Software Foundation, Inc.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
8 "Project-Id-Version: PACKAGE VERSION\n"
9 "Report-Msgid-Bugs-To: libguestfs@redhat.com\n"
10 "POT-Creation-Date: 2011-04-18 22:36+0200\n"
11 "PO-Revision-Date: 2010-09-02 14:46+0100\n"
12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 "Language-Team: LANGUAGE <LL@li.org>\n"
16 "Content-Type: text/plain; charset=UTF-8\n"
17 "Content-Transfer-Encoding: 8bit\n"
21 #: ../src/guestfs.pod:3 ../fish/guestfish.pod:3
22 #: ../test-tool/libguestfs-test-tool.pod:3 ../fuse/guestmount.pod:3
23 #: ../tools/virt-edit.pl:32 ../tools/virt-win-reg.pl:35
24 #: ../tools/virt-list-filesystems.pl:30 ../tools/virt-tar.pl:31
25 #: ../tools/virt-make-fs.pl:35 ../tools/virt-list-partitions.pl:30
31 #: ../src/guestfs.pod:5
32 msgid "guestfs - Library for accessing and modifying virtual machine images"
37 #: ../src/guestfs.pod:7 ../fish/guestfish.pod:7
38 #: ../test-tool/libguestfs-test-tool.pod:7 ../fuse/guestmount.pod:7
39 #: ../tools/virt-edit.pl:36 ../tools/virt-win-reg.pl:39
40 #: ../tools/virt-list-filesystems.pl:34 ../tools/virt-tar.pl:35
41 #: ../tools/virt-make-fs.pl:39 ../tools/virt-list-partitions.pl:34
47 #: ../src/guestfs.pod:9
50 " #include <guestfs.h>\n"
56 #: ../src/guestfs.pod:11
59 " guestfs_h *g = guestfs_create ();\n"
60 " guestfs_add_drive (g, \"guest.img\");\n"
61 " guestfs_launch (g);\n"
62 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
63 " guestfs_touch (g, \"/hello\");\n"
64 " guestfs_umount (g, \"/\");\n"
65 " guestfs_close (g);\n"
71 #: ../src/guestfs.pod:19
74 " cc prog.c -o prog -lguestfs\n"
76 " cc prog.c -o prog `pkg-config libguestfs --cflags --libs`\n"
82 #: ../src/guestfs.pod:23 ../fish/guestfish.pod:30
83 #: ../test-tool/libguestfs-test-tool.pod:11 ../fuse/guestmount.pod:20
84 #: ../tools/virt-edit.pl:50 ../tools/virt-win-reg.pl:63
85 #: ../tools/virt-list-filesystems.pl:40 ../tools/virt-tar.pl:77
86 #: ../tools/virt-make-fs.pl:47 ../tools/virt-list-partitions.pl:40
92 #: ../src/guestfs.pod:25
94 "Libguestfs is a library for accessing and modifying guest disk images. "
95 "Amongst the things this is good for: making batch configuration changes to "
96 "guests, getting disk used/free statistics (see also: virt-df), migrating "
97 "between virtualization systems (see also: virt-p2v), performing partial "
98 "backups, performing partial guest clones, cloning guests and changing "
99 "registry/UUID/hostname info, and much else besides."
104 #: ../src/guestfs.pod:33
106 "Libguestfs uses Linux kernel and qemu code, and can access any type of guest "
107 "filesystem that Linux and qemu can, including but not limited to: ext2/3/4, "
108 "btrfs, FAT and NTFS, LVM, many different disk partition schemes, qcow, "
114 #: ../src/guestfs.pod:38
116 "Libguestfs provides ways to enumerate guest storage (eg. partitions, LVs, "
117 "what filesystem is in each LV, etc.). It can also run commands in the "
118 "context of the guest. Also you can access filesystems over FUSE."
123 #: ../src/guestfs.pod:43
125 "Libguestfs is a library that can be linked with C and C++ management "
126 "programs (or management programs written in OCaml, Perl, Python, Ruby, Java, "
127 "PHP, Haskell or C#). You can also use it from shell scripts or the command "
133 #: ../src/guestfs.pod:48
135 "You don't need to be root to use libguestfs, although obviously you do need "
136 "enough permissions to access the disk images."
141 #: ../src/guestfs.pod:51
143 "Libguestfs is a large API because it can do many things. For a gentle "
144 "introduction, please read the L</API OVERVIEW> section next."
149 #: ../src/guestfs.pod:54
151 "There are also some example programs in the L<guestfs-examples(3)> manual "
157 #: ../src/guestfs.pod:57
163 #: ../src/guestfs.pod:59
165 "This section provides a gentler overview of the libguestfs API. We also try "
166 "to group API calls together, where that may not be obvious from reading "
167 "about the individual calls in the main section of this manual."
172 #: ../src/guestfs.pod:64
178 #: ../src/guestfs.pod:66
180 "Before you can use libguestfs calls, you have to create a handle. Then you "
181 "must add at least one disk image to the handle, followed by launching the "
182 "handle, then performing whatever operations you want, and finally closing "
183 "the handle. By convention we use the single letter C<g> for the name of the "
184 "handle variable, although of course you can use any name you want."
189 #: ../src/guestfs.pod:73
190 msgid "The general structure of all libguestfs-using programs looks like this:"
195 #: ../src/guestfs.pod:76
198 " guestfs_h *g = guestfs_create ();\n"
204 #: ../src/guestfs.pod:78
207 " /* Call guestfs_add_drive additional times if there are\n"
208 " * multiple disk images.\n"
210 " guestfs_add_drive (g, \"guest.img\");\n"
216 #: ../src/guestfs.pod:83
219 " /* Most manipulation calls won't work until you've launched\n"
220 " * the handle 'g'. You have to do this _after_ adding drives\n"
221 " * and _before_ other commands.\n"
223 " guestfs_launch (g);\n"
229 #: ../src/guestfs.pod:89
232 " /* Now you can examine what partitions, LVs etc are available.\n"
234 " char **partitions = guestfs_list_partitions (g);\n"
235 " char **logvols = guestfs_lvs (g);\n"
241 #: ../src/guestfs.pod:94
244 " /* To access a filesystem in the image, you must mount it.\n"
246 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
251 #: ../src/guestfs.pod:98
254 " /* Now you can perform filesystem actions on the guest\n"
257 " guestfs_touch (g, \"/hello\");\n"
263 #: ../src/guestfs.pod:103
266 " /* This is only needed for libguestfs < 1.5.24. Since then\n"
267 " * it is done automatically when you close the handle. See\n"
268 " * discussion of autosync in this page.\n"
270 " guestfs_sync (g);\n"
276 #: ../src/guestfs.pod:109
279 " /* Close the handle 'g'. */\n"
280 " guestfs_close (g);\n"
286 #: ../src/guestfs.pod:112
288 "The code above doesn't include any error checking. In real code you should "
289 "check return values carefully for errors. In general all functions that "
290 "return integers return C<-1> on error, and all functions that return "
291 "pointers return C<NULL> on error. See section L</ERROR HANDLING> below for "
292 "how to handle errors, and consult the documentation for each function call "
293 "below to see precisely how they return error indications. See L<guestfs-"
294 "examples(3)> for fully worked examples."
299 #: ../src/guestfs.pod:121
305 #: ../src/guestfs.pod:123
307 "The image filename (C<\"guest.img\"> in the example above) could be a disk "
308 "image from a virtual machine, a L<dd(1)> copy of a physical hard disk, an "
309 "actual block device, or simply an empty file of zeroes that you have created "
310 "through L<posix_fallocate(3)>. Libguestfs lets you do useful things to all "
316 #: ../src/guestfs.pod:129
318 "The call you should use in modern code for adding drives is L</"
319 "guestfs_add_drive_opts>. To add a disk image, allowing writes, and "
320 "specifying that the format is raw, do:"
325 #: ../src/guestfs.pod:133
328 " guestfs_add_drive_opts (g, filename,\n"
329 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
336 #: ../src/guestfs.pod:137
337 msgid "You can add a disk read-only using:"
342 #: ../src/guestfs.pod:139
345 " guestfs_add_drive_opts (g, filename,\n"
346 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
347 " GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
354 #: ../src/guestfs.pod:144
356 "or by calling the older function L</guestfs_add_drive_ro>. In either case "
357 "libguestfs won't modify the file."
362 #: ../src/guestfs.pod:147
364 "Be extremely cautious if the disk image is in use, eg. if it is being used "
365 "by a virtual machine. Adding it read-write will almost certainly cause disk "
366 "corruption, but adding it read-only is safe."
371 #: ../src/guestfs.pod:151
373 "You must add at least one disk image, and you may add multiple disk images. "
374 "In the API, the disk images are usually referred to as C</dev/sda> (for the "
375 "first one you added), C</dev/sdb> (for the second one you added), etc."
380 #: ../src/guestfs.pod:156
382 "Once L</guestfs_launch> has been called you cannot add any more images. You "
383 "can call L</guestfs_list_devices> to get a list of the device names, in the "
384 "order that you added them. See also L</BLOCK DEVICE NAMING> below."
389 #: ../src/guestfs.pod:161
394 #: ../src/guestfs.pod:163
396 "Before you can read or write files, create directories and so on in a disk "
397 "image that contains filesystems, you have to mount those filesystems using "
398 "L</guestfs_mount_options> or L</guestfs_mount_ro>. If you already know that "
399 "a disk image contains (for example) one partition with a filesystem on that "
400 "partition, then you can mount it directly:"
404 #: ../src/guestfs.pod:170
407 " guestfs_mount_options (g, \"\", \"/dev/sda1\", \"/\");\n"
412 #: ../src/guestfs.pod:172
414 "where C</dev/sda1> means literally the first partition (C<1>) of the first "
415 "disk image that we added (C</dev/sda>). If the disk contains Linux LVM2 "
416 "logical volumes you could refer to those instead (eg. C</dev/VG/LV>). Note "
417 "that these are libguestfs virtual devices, and are nothing to do with host "
422 #: ../src/guestfs.pod:178
424 "If you are given a disk image and you don't know what it contains then you "
425 "have to find out. Libguestfs can do that too: use L</"
426 "guestfs_list_partitions> and L</guestfs_lvs> to list possible partitions and "
427 "LVs, and either try mounting each to see what is mountable, or else examine "
428 "them with L</guestfs_vfs_type> or L</guestfs_file>. To list just "
429 "filesystems, use L</guestfs_list_filesystems>."
433 #: ../src/guestfs.pod:186
435 "Libguestfs also has a set of APIs for inspection of unknown disk images (see "
436 "L</INSPECTION> below). But you might find it easier to look at higher level "
437 "programs built on top of libguestfs, in particular L<virt-inspector(1)>."
441 #: ../src/guestfs.pod:191
443 "To mount a filesystem read-only, use L</guestfs_mount_ro>. There are "
444 "several other variations of the C<guestfs_mount_*> call."
449 #: ../src/guestfs.pod:194
450 msgid "FILESYSTEM ACCESS AND MODIFICATION"
455 #: ../src/guestfs.pod:196
457 "The majority of the libguestfs API consists of fairly low-level calls for "
458 "accessing and modifying the files, directories, symlinks etc on mounted "
459 "filesystems. There are over a hundred such calls which you can find listed "
460 "in detail below in this man page, and we don't even pretend to cover them "
461 "all in this overview."
466 #: ../src/guestfs.pod:202
468 "Specify filenames as full paths, starting with C<\"/\"> and including the "
474 #: ../src/guestfs.pod:205
476 "For example, if you mounted a filesystem at C<\"/\"> and you want to read "
477 "the file called C<\"etc/passwd\"> then you could do:"
482 #: ../src/guestfs.pod:208
485 " char *data = guestfs_cat (g, \"/etc/passwd\");\n"
491 #: ../src/guestfs.pod:210
493 "This would return C<data> as a newly allocated buffer containing the full "
494 "content of that file (with some conditions: see also L</DOWNLOADING> below), "
495 "or C<NULL> if there was an error."
500 #: ../src/guestfs.pod:214
502 "As another example, to create a top-level directory on that filesystem "
503 "called C<\"var\"> you would do:"
508 #: ../src/guestfs.pod:217
511 " guestfs_mkdir (g, \"/var\");\n"
517 #: ../src/guestfs.pod:219
518 msgid "To create a symlink you could do:"
523 #: ../src/guestfs.pod:221
526 " guestfs_ln_s (g, \"/etc/init.d/portmap\",\n"
527 " \"/etc/rc3.d/S30portmap\");\n"
533 #: ../src/guestfs.pod:224
535 "Libguestfs will reject attempts to use relative paths and there is no "
536 "concept of a current working directory."
541 #: ../src/guestfs.pod:227
543 "Libguestfs can return errors in many situations: for example if the "
544 "filesystem isn't writable, or if a file or directory that you requested "
545 "doesn't exist. If you are using the C API (documented here) you have to "
546 "check for those error conditions after each call. (Other language bindings "
547 "turn these errors into exceptions)."
552 #: ../src/guestfs.pod:233
554 "File writes are affected by the per-handle umask, set by calling L</"
555 "guestfs_umask> and defaulting to 022. See L</UMASK>."
560 #: ../src/guestfs.pod:236
566 #: ../src/guestfs.pod:238
568 "Libguestfs contains API calls to read, create and modify partition tables on "
574 #: ../src/guestfs.pod:241
576 "In the common case where you want to create a single partition covering the "
577 "whole disk, you should use the L</guestfs_part_disk> call:"
582 #: ../src/guestfs.pod:245
585 " const char *parttype = \"mbr\";\n"
586 " if (disk_is_larger_than_2TB)\n"
587 " parttype = \"gpt\";\n"
588 " guestfs_part_disk (g, \"/dev/sda\", parttype);\n"
594 #: ../src/guestfs.pod:250
596 "Obviously this effectively wipes anything that was on that disk image before."
601 #: ../src/guestfs.pod:253
607 #: ../src/guestfs.pod:255
609 "Libguestfs provides access to a large part of the LVM2 API, such as L</"
610 "guestfs_lvcreate> and L</guestfs_vgremove>. It won't make much sense unless "
611 "you familiarize yourself with the concepts of physical volumes, volume "
612 "groups and logical volumes."
617 #: ../src/guestfs.pod:260
619 "This author strongly recommends reading the LVM HOWTO, online at L<http://"
620 "tldp.org/HOWTO/LVM-HOWTO/>."
625 #: ../src/guestfs.pod:263
630 #: ../src/guestfs.pod:265
632 "Use L</guestfs_cat> to download small, text only files. This call is "
633 "limited to files which are less than 2 MB and which cannot contain any ASCII "
634 "NUL (C<\\0>) characters. However the API is very simple to use."
639 #: ../src/guestfs.pod:269
641 "L</guestfs_read_file> can be used to read files which contain arbitrary 8 "
642 "bit data, since it returns a (pointer, size) pair. However it is still "
643 "limited to \"small\" files, less than 2 MB."
648 #: ../src/guestfs.pod:273
650 "L</guestfs_download> can be used to download any file, with no limits on "
651 "content or size (even files larger than 4 GB)."
656 #: ../src/guestfs.pod:276
658 "To download multiple files, see L</guestfs_tar_out> and L</guestfs_tgz_out>."
663 #: ../src/guestfs.pod:279
669 #: ../src/guestfs.pod:281
671 "It's often the case that you want to write a file or files to the disk image."
676 #: ../src/guestfs.pod:284
678 "To write a small file with fixed content, use L</guestfs_write>. To create "
679 "a file of all zeroes, use L</guestfs_truncate_size> (sparse) or L</"
680 "guestfs_fallocate64> (with all disk blocks allocated). There are a variety "
681 "of other functions for creating test files, for example L</guestfs_fill> and "
682 "L</guestfs_fill_pattern>."
687 #: ../src/guestfs.pod:290
689 "To upload a single file, use L</guestfs_upload>. This call has no limits on "
690 "file content or size (even files larger than 4 GB)."
695 #: ../src/guestfs.pod:293
697 "To upload multiple files, see L</guestfs_tar_in> and L</guestfs_tgz_in>."
702 #: ../src/guestfs.pod:295
704 "However the fastest way to upload I<large numbers of arbitrary files> is to "
705 "turn them into a squashfs or CD ISO (see L<mksquashfs(8)> and L<mkisofs(8)"
706 ">), then attach this using L</guestfs_add_drive_ro>. If you add the drive "
707 "in a predictable way (eg. adding it last after all other drives) then you "
708 "can get the device name from L</guestfs_list_devices> and mount it directly "
709 "using L</guestfs_mount_ro>. Note that squashfs images are sometimes non-"
710 "portable between kernel versions, and they don't support labels or UUIDs. "
711 "If you want to pre-build an image or you need to mount it using a label or "
712 "UUID, use an ISO image instead."
717 #: ../src/guestfs.pod:306
723 #: ../src/guestfs.pod:308
725 "There are various different commands for copying between files and devices "
726 "and in and out of the guest filesystem. These are summarised in the table "
732 #: ../src/guestfs.pod:314
733 msgid "B<file> to B<file>"
738 #: ../src/guestfs.pod:316
740 "Use L</guestfs_cp> to copy a single file, or L</guestfs_cp_a> to copy "
741 "directories recursively."
746 #: ../src/guestfs.pod:319
747 msgid "B<file or device> to B<file or device>"
752 #: ../src/guestfs.pod:321
754 "Use L</guestfs_dd> which efficiently uses L<dd(1)> to copy between files and "
755 "devices in the guest."
760 #: ../src/guestfs.pod:324
761 msgid "Example: duplicate the contents of an LV:"
766 #: ../src/guestfs.pod:326
769 " guestfs_dd (g, \"/dev/VG/Original\", \"/dev/VG/Copy\");\n"
775 #: ../src/guestfs.pod:328
777 "The destination (C</dev/VG/Copy>) must be at least as large as the source "
778 "(C</dev/VG/Original>). To copy less than the whole source device, use L</"
779 "guestfs_copy_size>."
784 #: ../src/guestfs.pod:332
785 msgid "B<file on the host> to B<file or device>"
790 #: ../src/guestfs.pod:334
791 msgid "Use L</guestfs_upload>. See L</UPLOADING> above."
796 #: ../src/guestfs.pod:336
797 msgid "B<file or device> to B<file on the host>"
802 #: ../src/guestfs.pod:338
803 msgid "Use L</guestfs_download>. See L</DOWNLOADING> above."
808 #: ../src/guestfs.pod:342
809 msgid "UPLOADING AND DOWNLOADING TO PIPES AND FILE DESCRIPTORS"
814 #: ../src/guestfs.pod:344
816 "Calls like L</guestfs_upload>, L</guestfs_download>, L</guestfs_tar_in>, L</"
817 "guestfs_tar_out> etc appear to only take filenames as arguments, so it "
818 "appears you can only upload and download to files. However many Un*x-like "
819 "hosts let you use the special device files C</dev/stdin>, C</dev/stdout>, C</"
820 "dev/stderr> and C</dev/fd/N> to read and write from stdin, stdout, stderr, "
821 "and arbitrary file descriptor N."
826 #: ../src/guestfs.pod:352
827 msgid "For example, L<virt-cat(1)> writes its output to stdout by doing:"
831 #: ../src/guestfs.pod:355
834 " guestfs_download (g, filename, \"/dev/stdout\");\n"
840 #: ../src/guestfs.pod:357
841 msgid "and you can write tar output to a pipe C<fd> by doing:"
845 #: ../src/guestfs.pod:359
849 " snprintf (devfd, sizeof devfd, \"/dev/fd/%d\", fd);\n"
850 " guestfs_tar_out (g, \"/\", devfd);\n"
856 #: ../src/guestfs.pod:363
857 msgid "LISTING FILES"
862 #: ../src/guestfs.pod:365
864 "L</guestfs_ll> is just designed for humans to read (mainly when using the "
865 "L<guestfish(1)>-equivalent command C<ll>)."
870 #: ../src/guestfs.pod:368
872 "L</guestfs_ls> is a quick way to get a list of files in a directory from "
873 "programs, as a flat list of strings."
878 #: ../src/guestfs.pod:371
880 "L</guestfs_readdir> is a programmatic way to get a list of files in a "
881 "directory, plus additional information about each one. It is more "
882 "equivalent to using the L<readdir(3)> call on a local filesystem."
887 #: ../src/guestfs.pod:375
889 "L</guestfs_find> and L</guestfs_find0> can be used to recursively list files."
894 #: ../src/guestfs.pod:378
895 msgid "RUNNING COMMANDS"
900 #: ../src/guestfs.pod:380
902 "Although libguestfs is primarily an API for manipulating files inside guest "
903 "images, we also provide some limited facilities for running commands inside "
909 #: ../src/guestfs.pod:384
910 msgid "There are many limitations to this:"
915 #: ../src/guestfs.pod:388 ../src/guestfs.pod:393 ../src/guestfs.pod:398
916 #: ../src/guestfs.pod:402 ../src/guestfs.pod:407 ../src/guestfs.pod:411
917 #: ../src/guestfs.pod:416 ../src/guestfs.pod:421 ../src/guestfs.pod:1087
918 #: ../src/guestfs.pod:1091 ../src/guestfs.pod:1095 ../src/guestfs.pod:1100
919 #: ../src/guestfs.pod:1108 ../src/guestfs.pod:1127 ../src/guestfs.pod:1135
920 #: ../src/guestfs.pod:1157 ../src/guestfs.pod:1161 ../src/guestfs.pod:1165
921 #: ../src/guestfs.pod:1169 ../src/guestfs.pod:1173 ../src/guestfs.pod:1177
922 #: ../src/guestfs.pod:1659 ../src/guestfs.pod:1664 ../src/guestfs.pod:1668
923 #: ../src/guestfs.pod:1769 ../src/guestfs.pod:1774 ../src/guestfs.pod:1778
924 #: ../src/guestfs.pod:1788 ../src/guestfs.pod:2022 ../src/guestfs.pod:2027
925 #: ../src/guestfs.pod:2033 ../src/guestfs.pod:2041 ../src/guestfs.pod:2395
926 #: ../src/guestfs.pod:2401 ../src/guestfs.pod:2406 ../src/guestfs.pod:2412
927 #: ../src/guestfs.pod:2877 ../src/guestfs.pod:2881 ../src/guestfs.pod:2885
928 #: ../src/guestfs.pod:2889 ../src/guestfs-actions.pod:15
929 #: ../src/guestfs-actions.pod:22 ../src/guestfs-actions.pod:577
930 #: ../src/guestfs-actions.pod:585 ../src/guestfs-actions.pod:592
931 #: ../src/guestfs-actions.pod:599 ../src/guestfs-actions.pod:1600
932 #: ../src/guestfs-actions.pod:1604 ../src/guestfs-actions.pod:1608
933 #: ../src/guestfs-actions.pod:1612 ../src/guestfs-actions.pod:1620
934 #: ../src/guestfs-actions.pod:1624 ../src/guestfs-actions.pod:1628
935 #: ../src/guestfs-actions.pod:1638 ../src/guestfs-actions.pod:1642
936 #: ../src/guestfs-actions.pod:1646 ../src/guestfs-actions.pod:1784
937 #: ../src/guestfs-actions.pod:1788 ../src/guestfs-actions.pod:1793
938 #: ../src/guestfs-actions.pod:1798 ../src/guestfs-actions.pod:1859
939 #: ../src/guestfs-actions.pod:1863 ../src/guestfs-actions.pod:1868
940 #: ../fish/guestfish.pod:443 ../fish/guestfish.pod:447
941 #: ../fish/guestfish.pod:451 ../fish/guestfish.pod:455
942 #: ../fish/guestfish-actions.pod:13 ../fish/guestfish-actions.pod:20
943 #: ../fish/guestfish-actions.pod:380 ../fish/guestfish-actions.pod:388
944 #: ../fish/guestfish-actions.pod:395 ../fish/guestfish-actions.pod:402
945 #: ../fish/guestfish-actions.pod:1072 ../fish/guestfish-actions.pod:1076
946 #: ../fish/guestfish-actions.pod:1080 ../fish/guestfish-actions.pod:1084
947 #: ../fish/guestfish-actions.pod:1092 ../fish/guestfish-actions.pod:1096
948 #: ../fish/guestfish-actions.pod:1100 ../fish/guestfish-actions.pod:1110
949 #: ../fish/guestfish-actions.pod:1114 ../fish/guestfish-actions.pod:1118
950 #: ../fish/guestfish-actions.pod:1208 ../fish/guestfish-actions.pod:1212
951 #: ../fish/guestfish-actions.pod:1217 ../fish/guestfish-actions.pod:1222
952 #: ../fish/guestfish-actions.pod:1264 ../fish/guestfish-actions.pod:1268
953 #: ../fish/guestfish-actions.pod:1273 ../tools/virt-edit.pl:351
954 #: ../tools/virt-edit.pl:356 ../tools/virt-edit.pl:361
955 #: ../tools/virt-edit.pl:372 ../tools/virt-edit.pl:376
956 #: ../tools/virt-win-reg.pl:536 ../tools/virt-win-reg.pl:542
957 #: ../tools/virt-win-reg.pl:548
963 #: ../src/guestfs.pod:390
965 "The kernel version that the command runs under will be different from what "
971 #: ../src/guestfs.pod:395
973 "If the command needs to communicate with daemons, then most likely they "
979 #: ../src/guestfs.pod:400
980 msgid "The command will be running in limited memory."
985 #: ../src/guestfs.pod:404
987 "The network may not be available unless you enable it (see L</"
988 "guestfs_set_network>)."
993 #: ../src/guestfs.pod:409
994 msgid "Only supports Linux guests (not Windows, BSD, etc)."
999 #: ../src/guestfs.pod:413
1001 "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
1006 #: ../src/guestfs.pod:418
1008 "For SELinux guests, you may need to enable SELinux and load policy first. "
1009 "See L</SELINUX> in this manpage."
1014 #: ../src/guestfs.pod:423
1016 "I<Security:> It is not safe to run commands from untrusted, possibly "
1017 "malicious guests. These commands may attempt to exploit your program by "
1018 "sending unexpected output. They could also try to exploit the Linux kernel "
1019 "or qemu provided by the libguestfs appliance. They could use the network "
1020 "provided by the libguestfs appliance to bypass ordinary network partitions "
1021 "and firewalls. They could use the elevated privileges or different SELinux "
1022 "context of your program to their advantage."
1027 #: ../src/guestfs.pod:432
1029 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
1030 "(a script which runs when the guest next boots normally), and to have this "
1031 "script run the commands you want in the normal context of the running guest, "
1032 "network security and so on. For information about other security issues, "
1038 #: ../src/guestfs.pod:440
1040 "The two main API calls to run commands are L</guestfs_command> and L</"
1041 "guestfs_sh> (there are also variations)."
1046 #: ../src/guestfs.pod:443
1048 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
1049 "shell globs, redirections, etc will work."
1054 #: ../src/guestfs.pod:446
1055 msgid "CONFIGURATION FILES"
1060 #: ../src/guestfs.pod:448
1062 "To read and write configuration files in Linux guest filesystems, we "
1063 "strongly recommend using Augeas. For example, Augeas understands how to "
1064 "read and write, say, a Linux shadow password file or X.org configuration "
1065 "file, and so avoids you having to write that code."
1070 #: ../src/guestfs.pod:453
1072 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs. We don't "
1073 "document Augeas itself here because there is excellent documentation on the "
1074 "L<http://augeas.net/> website."
1079 #: ../src/guestfs.pod:457
1081 "If you don't want to use Augeas (you fool!) then try calling L</"
1082 "guestfs_read_lines> to get the file as a list of lines which you can iterate "
1088 #: ../src/guestfs.pod:461
1094 #: ../src/guestfs.pod:463
1096 "We support SELinux guests. To ensure that labeling happens correctly in "
1097 "SELinux guests, you need to enable SELinux and load the guest's policy:"
1102 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1280 ../src/guestfs.pod:1411
1103 #: ../src/guestfs.pod:2440
1109 #: ../src/guestfs.pod:471
1110 msgid "Before launching, do:"
1115 #: ../src/guestfs.pod:473
1118 " guestfs_set_selinux (g, 1);\n"
1124 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1284 ../src/guestfs.pod:1415
1125 #: ../src/guestfs.pod:2465
1131 #: ../src/guestfs.pod:477
1133 "After mounting the guest's filesystem(s), load the policy. This is best "
1134 "done by running the L<load_policy(8)> command in the guest itself:"
1139 #: ../src/guestfs.pod:481
1142 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
1148 #: ../src/guestfs.pod:483
1150 "(Older versions of C<load_policy> require you to specify the name of the "
1156 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1421
1162 #: ../src/guestfs.pod:488
1164 "Optionally, set the security context for the API. The correct security "
1165 "context to use can only be known by inspecting the guest. As an example:"
1170 #: ../src/guestfs.pod:492
1173 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
1179 #: ../src/guestfs.pod:496
1180 msgid "This will work for running commands and editing existing files."
1185 #: ../src/guestfs.pod:498
1187 "When new files are created, you may need to label them explicitly, for "
1188 "example by running the external command C<restorecon pathname>."
1193 #: ../src/guestfs.pod:502
1199 #: ../src/guestfs.pod:504
1201 "Certain calls are affected by the current file mode creation mask (the "
1202 "\"umask\"). In particular ones which create files or directories, such as "
1203 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>. This affects "
1204 "either the default mode that the file is created with or modifies the mode "
1210 #: ../src/guestfs.pod:510
1212 "The default umask is C<022>, so files are created with modes such as C<0644> "
1213 "and directories with C<0755>."
1218 #: ../src/guestfs.pod:513
1220 "There are two ways to avoid being affected by umask. Either set umask to 0 "
1221 "(call C<guestfs_umask (g, 0)> early after launching). Or call L</"
1222 "guestfs_chmod> after creating each file or directory."
1227 #: ../src/guestfs.pod:517
1228 msgid "For more information about umask, see L<umask(2)>."
1233 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:765
1234 msgid "ENCRYPTED DISKS"
1239 #: ../src/guestfs.pod:521
1241 "Libguestfs allows you to access Linux guests which have been encrypted using "
1242 "whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1243 "standard. This includes nearly all whole disk encryption systems used by "
1244 "modern Linux guests."
1249 #: ../src/guestfs.pod:527
1251 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1252 "returns the string C<crypto_LUKS>)."
1257 #: ../src/guestfs.pod:530
1259 "Then open these devices by calling L</guestfs_luks_open>. Obviously you "
1260 "will require the passphrase!"
1265 #: ../src/guestfs.pod:533
1267 "Opening a LUKS device creates a new device mapper device called C</dev/"
1268 "mapper/mapname> (where C<mapname> is the string you supply to L</"
1269 "guestfs_luks_open>). Reads and writes to this mapper device are decrypted "
1270 "from and encrypted to the underlying block device respectively."
1275 #: ../src/guestfs.pod:539
1277 "LVM volume groups on the device can be made visible by calling L</"
1278 "guestfs_vgscan> followed by L</guestfs_vg_activate_all>. The logical volume"
1279 "(s) can now be mounted in the usual way."
1284 #: ../src/guestfs.pod:543
1286 "Use the reverse process to close a LUKS device. Unmount any logical volumes "
1287 "on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1288 "[\"/dev/VG\"])>. Then close the mapper device by calling L</"
1289 "guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1290 "underlying encrypted block device)."
1295 #: ../src/guestfs.pod:550
1300 #: ../src/guestfs.pod:552
1302 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1303 "contains operating systems, an install CD or a live CD. (These APIs used to "
1304 "be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since "
1305 "version 1.5.3 the most frequently used part of this library has been "
1306 "rewritten in C and moved into the core code)."
1311 #: ../src/guestfs.pod:559
1313 "Add all disks belonging to the unknown virtual machine and call L</"
1314 "guestfs_launch> in the usual way."
1319 #: ../src/guestfs.pod:562
1321 "Then call L</guestfs_inspect_os>. This function uses other libguestfs calls "
1322 "and certain heuristics, and returns a list of operating systems that were "
1323 "found. An empty list means none were found. A single element is the root "
1324 "filesystem of the operating system. For dual- or multi-boot guests, "
1325 "multiple roots can be returned, each one corresponding to a separate "
1326 "operating system. (Multi-boot virtual machines are extremely rare in the "
1327 "world of virtualization, but since this scenario can happen, we have built "
1328 "libguestfs to deal with it.)"
1333 #: ../src/guestfs.pod:571
1335 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1336 "to get additional details about that operating system. For example, call L</"
1337 "guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
1338 "Windows and Linux-based operating systems respectively."
1343 #: ../src/guestfs.pod:577
1345 "Un*x-like and Linux-based operating systems usually consist of several "
1346 "filesystems which are mounted at boot time (for example, a separate boot "
1347 "partition mounted on C</boot>). The inspection rules are able to detect how "
1348 "filesystems correspond to mount points. Call "
1349 "C<guestfs_inspect_get_mountpoints> to get this mapping. It might return a "
1350 "hash table like this example:"
1355 #: ../src/guestfs.pod:584
1358 " /boot => /dev/sda1\n"
1359 " / => /dev/vg_guest/lv_root\n"
1360 " /usr => /dev/vg_guest/lv_usr\n"
1366 #: ../src/guestfs.pod:588
1368 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1369 "filesystems as suggested."
1374 #: ../src/guestfs.pod:591
1376 "Be careful to mount filesystems in the right order (eg. C</> before C</"
1377 "usr>). Sorting the keys of the hash by length, shortest first, should work."
1382 #: ../src/guestfs.pod:595
1384 "Inspection currently only works for some common operating systems. "
1385 "Contributors are welcome to send patches for other operating systems that we "
1386 "currently cannot detect."
1391 #: ../src/guestfs.pod:599
1393 "Encrypted disks must be opened before inspection. See L</ENCRYPTED DISKS> "
1394 "for more details. The L</guestfs_inspect_os> function just ignores any "
1395 "encrypted devices."
1400 #: ../src/guestfs.pod:603
1402 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1403 "inspection and caches the results in the guest handle. Subsequent calls to "
1404 "C<guestfs_inspect_get_*> return this cached information, but I<do not> re-"
1405 "read the disks. If you change the content of the guest disks, you can redo "
1406 "inspection by calling L</guestfs_inspect_os> again. (L</"
1407 "guestfs_inspect_list_applications> works a little differently from the other "
1408 "calls and does read the disks. See documentation for that function for "
1413 #: ../src/guestfs.pod:612
1414 msgid "INSPECTING INSTALL DISKS"
1418 #: ../src/guestfs.pod:614
1420 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1425 #: ../src/guestfs.pod:617
1427 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1428 "system, which currently can be C<installed> (a regular operating system) or "
1429 "C<installer> (some sort of install disk)."
1433 #: ../src/guestfs.pod:621
1435 "Further information is available about the operating system that can be "
1436 "installed using the regular inspection APIs like L</"
1437 "guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> etc."
1441 #: ../src/guestfs.pod:626
1443 "Some additional information specific to installer disks is also available "
1444 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and L</"
1445 "guestfs_inspect_is_multipart> calls."
1450 #: ../src/guestfs.pod:631
1451 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1456 #: ../src/guestfs.pod:633
1458 "Libguestfs can mount NTFS partitions. It does this using the L<http://www."
1459 "ntfs-3g.org/> driver."
1464 #: ../src/guestfs.pod:636
1465 msgid "DRIVE LETTERS AND PATHS"
1470 #: ../src/guestfs.pod:638
1472 "DOS and Windows still use drive letters, and the filesystems are always "
1473 "treated as case insensitive by Windows itself, and therefore you might find "
1474 "a Windows configuration file referring to a path like C<c:\\windows"
1475 "\\system32>. When the filesystem is mounted in libguestfs, that directory "
1476 "might be referred to as C</WINDOWS/System32>."
1480 #: ../src/guestfs.pod:644
1482 "Drive letter mappings can be found using inspection (see L</INSPECTION> and "
1483 "L</guestfs_inspect_get_drive_mappings>)"
1487 #: ../src/guestfs.pod:647
1489 "Dealing with separator characters (backslash vs forward slash) is outside "
1490 "the scope of libguestfs, but usually a simple character replacement will "
1495 #: ../src/guestfs.pod:651
1497 "To resolve the case insensitivity of paths, call L</"
1498 "guestfs_case_sensitive_path>."
1503 #: ../src/guestfs.pod:654
1504 msgid "ACCESSING THE WINDOWS REGISTRY"
1509 #: ../src/guestfs.pod:656
1511 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1512 "files, through the library C<hivex> which is part of the libguestfs project "
1513 "although ships as a separate tarball. You have to locate and download the "
1514 "hive file(s) yourself, and then pass them to C<hivex> functions. See also "
1515 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and L<virt-win-"
1516 "reg(1)> for more help on this issue."
1521 #: ../src/guestfs.pod:664
1522 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1527 #: ../src/guestfs.pod:666
1529 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1530 "provide something which looks like a Linux symlink. The way it tries to do "
1531 "the rewriting is described here:"
1536 #: ../src/guestfs.pod:670
1538 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1544 #: ../src/guestfs.pod:672
1546 "The essential problem is that ntfs-3g simply does not have enough "
1547 "information to do a correct job. NTFS links can contain drive letters and "
1548 "references to external device GUIDs that ntfs-3g has no way of resolving. "
1549 "It is almost certainly the case that libguestfs callers should ignore what "
1550 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1555 #: ../src/guestfs.pod:679
1557 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use L</"
1558 "guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1559 "attribute, and read the raw reparse data from that (you can find the format "
1560 "documented in various places around the web)."
1565 #: ../src/guestfs.pod:684
1566 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1571 #: ../src/guestfs.pod:686
1573 "There are other useful extended attributes that can be read from ntfs-3g "
1574 "filesystems (using L</guestfs_getxattr>). See:"
1579 #: ../src/guestfs.pod:689
1581 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1586 #: ../src/guestfs.pod:691
1587 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1592 #: ../src/guestfs.pod:693
1594 "Although we don't want to discourage you from using the C API, we will "
1595 "mention here that the same API is also available in other languages."
1599 #: ../src/guestfs.pod:696
1601 "The API is broadly identical in all supported languages. This means that "
1602 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
1603 "in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1604 "OCaml. In other words, a straightforward, predictable isomorphism between "
1610 #: ../src/guestfs.pod:702
1612 "Error messages are automatically transformed into exceptions if the language "
1618 #: ../src/guestfs.pod:705
1620 "We don't try to \"object orientify\" parts of the API in OO languages, "
1621 "although contributors are welcome to write higher level APIs above what we "
1622 "provide in their favourite languages if they wish."
1627 #: ../src/guestfs.pod:711
1633 #: ../src/guestfs.pod:713
1635 "You can use the I<guestfs.h> header file from C++ programs. The C++ API is "
1636 "identical to the C API. C++ classes and exceptions are not used."
1641 #: ../src/guestfs.pod:717
1647 #: ../src/guestfs.pod:719
1649 "The C# bindings are highly experimental. Please read the warnings at the "
1650 "top of C<csharp/Libguestfs.cs>."
1655 #: ../src/guestfs.pod:722
1661 #: ../src/guestfs.pod:724
1663 "This is the only language binding that is working but incomplete. Only "
1664 "calls which return simple integers have been bound in Haskell, and we are "
1665 "looking for help to complete this binding."
1670 #: ../src/guestfs.pod:728
1676 #: ../src/guestfs.pod:730
1678 "Full documentation is contained in the Javadoc which is distributed with "
1684 #: ../src/guestfs.pod:733
1689 #: ../src/guestfs.pod:735
1690 msgid "See L<guestfs-ocaml(3)>."
1695 #: ../src/guestfs.pod:737
1700 #: ../src/guestfs.pod:739
1701 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1706 #: ../src/guestfs.pod:741
1712 #: ../src/guestfs.pod:743
1714 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1715 "the php-libguestfs package for your distribution."
1720 #: ../src/guestfs.pod:746
1721 msgid "The PHP binding only works correctly on 64 bit machines."
1726 #: ../src/guestfs.pod:748
1731 #: ../src/guestfs.pod:750
1732 msgid "See L<guestfs-python(3)>."
1737 #: ../src/guestfs.pod:752
1742 #: ../src/guestfs.pod:754
1743 msgid "See L<guestfs-ruby(3)>."
1748 #: ../src/guestfs.pod:756
1749 msgid "B<shell scripts>"
1753 #: ../src/guestfs.pod:758
1754 msgid "See L<guestfish(1)>."
1759 #: ../src/guestfs.pod:762
1760 msgid "LIBGUESTFS GOTCHAS"
1765 #: ../src/guestfs.pod:764
1767 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1768 "system [...] that works in the way it is documented but is counterintuitive "
1769 "and almost invites mistakes.\""
1774 #: ../src/guestfs.pod:768
1776 "Since we developed libguestfs and the associated tools, there are several "
1777 "things we would have designed differently, but are now stuck with for "
1778 "backwards compatibility or other reasons. If there is ever a libguestfs 2.0 "
1779 "release, you can expect these to change. Beware of them."
1784 #: ../src/guestfs.pod:776
1785 msgid "Autosync / forgetting to sync."
1790 #: ../src/guestfs.pod:778
1792 "When modifying a filesystem from C or another language, you B<must> unmount "
1793 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1794 "libguestfs handle. You can also call:"
1799 #: ../src/guestfs.pod:782
1802 " guestfs_set_autosync (g, 1);\n"
1808 #: ../src/guestfs.pod:784
1810 "to have the unmount/sync done automatically for you when the handle 'g' is "
1811 "closed. (This feature is called \"autosync\", L</guestfs_set_autosync> q.v.)"
1816 #: ../src/guestfs.pod:788
1818 "If you forget to do this, then it is entirely possible that your changes "
1819 "won't be written out, or will be partially written, or (very rarely) that "
1820 "you'll get disk corruption."
1825 #: ../src/guestfs.pod:792
1827 "Note that in L<guestfish(3)> autosync is the default. So quick and dirty "
1828 "guestfish scripts that forget to sync will work just fine, which can make "
1829 "this very puzzling if you are trying to debug a problem."
1834 #: ../src/guestfs.pod:796
1836 "Update: Autosync is enabled by default for all API users starting from "
1837 "libguestfs 1.5.24."
1842 #: ../src/guestfs.pod:799
1843 msgid "Mount option C<-o sync> should not be the default."
1848 #: ../src/guestfs.pod:801
1850 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly. "
1851 "However C<-o sync> does not add any reliability benefit, but does have a "
1852 "very large performance impact."
1857 #: ../src/guestfs.pod:805
1859 "The work around is to use L</guestfs_mount_options> and set the mount "
1860 "options that you actually want to use."
1865 #: ../src/guestfs.pod:808
1866 msgid "Read-only should be the default."
1871 #: ../src/guestfs.pod:810
1873 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1874 "specify I<--rw> if you want to make changes to the image."
1879 #: ../src/guestfs.pod:813
1880 msgid "This would reduce the potential to corrupt live VM images."
1885 #: ../src/guestfs.pod:815
1887 "Note that many filesystems change the disk when you just mount and unmount, "
1888 "even if you didn't perform any writes. You need to use L</"
1889 "guestfs_add_drive_ro> to guarantee that the disk is not changed."
1894 #: ../src/guestfs.pod:819
1895 msgid "guestfish command line is hard to use."
1900 #: ../src/guestfs.pod:821
1902 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1903 "examination). It tries to run a guestfish command C<disk.img> which doesn't "
1904 "exist, so it fails. In earlier versions of guestfish the error message was "
1905 "also unintuitive, but we have corrected this since. Like the Bourne shell, "
1906 "we should have used C<guestfish -c command> to run commands."
1911 #: ../src/guestfs.pod:828
1912 msgid "guestfish megabyte modifiers don't work right on all commands"
1917 #: ../src/guestfs.pod:830
1919 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1920 "other modifiers). What guestfish actually does is to multiply the number "
1921 "part by the modifier part and pass the result to the C API. However this "
1922 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1923 "expecting some other unit (eg. megabytes)."
1928 #: ../src/guestfs.pod:837
1929 msgid "The most common is L</guestfs_lvcreate>. The guestfish command:"
1934 #: ../src/guestfs.pod:839
1937 " lvcreate LV VG 100M\n"
1943 #: ../src/guestfs.pod:841
1945 "does not do what you might expect. Instead because L</guestfs_lvcreate> is "
1946 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1947 "megabytes * megabytes) logical volume. The error message you get from this "
1948 "is also a little obscure."
1953 #: ../src/guestfs.pod:846
1955 "This could be fixed in the generator by specially marking parameters and "
1956 "return values which take bytes or other units."
1961 #: ../src/guestfs.pod:849
1962 msgid "Ambiguity between devices and paths"
1967 #: ../src/guestfs.pod:851
1969 "There is a subtle ambiguity in the API between a device name (eg. C</dev/"
1970 "sdb2>) and a similar pathname. A file might just happen to be called "
1971 "C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1976 #: ../src/guestfs.pod:856
1978 "In the current API we usually resolve this ambiguity by having two separate "
1979 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>. "
1980 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1981 "detecting if the path supplied begins with C</dev/>."
1986 #: ../src/guestfs.pod:862
1988 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1989 "make paths/devices into structured names. One way to do this would be to "
1990 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1991 "aspect of grub. Another way would be to use a structured type, equivalent "
1992 "to this OCaml type:"
1997 #: ../src/guestfs.pod:868
2000 " type path = Path of string | Device of int | Partition of int * int\n"
2006 #: ../src/guestfs.pod:870
2007 msgid "which would allow you to pass arguments like:"
2012 #: ../src/guestfs.pod:872
2015 " Path \"/foo/bar\"\n"
2016 " Device 1 (* /dev/sdb, or perhaps /dev/sda *)\n"
2017 " Partition (1, 2) (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
2018 " Path \"/dev/sdb2\" (* not a device *)\n"
2024 #: ../src/guestfs.pod:877
2026 "As you can see there are still problems to resolve even with this "
2027 "representation. Also consider how it might work in guestfish."
2032 #: ../src/guestfs.pod:882
2033 msgid "PROTOCOL LIMITS"
2038 #: ../src/guestfs.pod:884
2040 "Internally libguestfs uses a message-based protocol to pass API calls and "
2041 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
2042 "plenty more detail about this). The maximum message size used by the "
2043 "protocol is slightly less than 4 MB. For some API calls you may need to be "
2044 "aware of this limit. The API calls which may be affected are individually "
2045 "documented, with a link back to this section of the documentation."
2050 #: ../src/guestfs.pod:892
2052 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
2053 "a simple string. Because this string is at some point internally encoded as "
2054 "a message, the maximum size that it can return is slightly under 4 MB. If "
2055 "the requested file is larger than this then you will get an error."
2060 #: ../src/guestfs.pod:898
2062 "In order to transfer large files into and out of the guest filesystem, you "
2063 "need to use particular calls that support this. The sections L</UPLOADING> "
2064 "and L</DOWNLOADING> document how to do this."
2069 #: ../src/guestfs.pod:902
2071 "You might also consider mounting the disk image using our FUSE filesystem "
2072 "support (L<guestmount(1)>)."
2077 #: ../src/guestfs.pod:905
2078 msgid "KEYS AND PASSPHRASES"
2083 #: ../src/guestfs.pod:907
2085 "Certain libguestfs calls take a parameter that contains sensitive key "
2086 "material, passed in as a C string."
2091 #: ../src/guestfs.pod:910
2093 "In the future we would hope to change the libguestfs implementation so that "
2094 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
2095 "swap. However this is I<not> done at the moment, because of the complexity "
2096 "of such an implementation."
2101 #: ../src/guestfs.pod:915
2103 "Therefore you should be aware that any key parameter you pass to libguestfs "
2104 "might end up being written out to the swap partition. If this is a concern, "
2105 "scrub the swap partition or don't use libguestfs on encrypted devices."
2110 #: ../src/guestfs.pod:920
2111 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
2116 #: ../src/guestfs.pod:922
2118 "All high-level libguestfs actions are synchronous. If you want to use "
2119 "libguestfs asynchronously then you must create a thread."
2124 #: ../src/guestfs.pod:925
2126 "Only use the handle from a single thread. Either use the handle exclusively "
2127 "from one thread, or provide your own mutex so that two threads cannot issue "
2128 "calls on the same handle at the same time."
2133 #: ../src/guestfs.pod:929
2135 "See the graphical program guestfs-browser for one possible architecture for "
2136 "multithreaded programs using libvirt and libguestfs."
2141 #: ../src/guestfs.pod:932
2146 #: ../src/guestfs.pod:934
2148 "Libguestfs needs a supermin appliance, which it finds by looking along an "
2154 #: ../src/guestfs.pod:937
2156 "By default it looks for these in the directory C<$libdir/guestfs> (eg. C</"
2157 "usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
2162 #: ../src/guestfs.pod:940
2164 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
2165 "to change the directories that libguestfs will search in. The value is a "
2166 "colon-separated list of paths. The current directory is I<not> searched "
2167 "unless the path contains an empty element or C<.>. For example "
2168 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
2169 "then C</usr/lib/guestfs>."
2174 #: ../src/guestfs.pod:947
2175 msgid "QEMU WRAPPERS"
2180 #: ../src/guestfs.pod:949
2182 "If you want to compile your own qemu, run qemu from a non-standard location, "
2183 "or pass extra arguments to qemu, then you can write a shell-script wrapper "
2189 #: ../src/guestfs.pod:953
2191 "There is one important rule to remember: you I<must C<exec qemu>> as the "
2192 "last command in the shell script (so that qemu replaces the shell and "
2193 "becomes the direct child of the libguestfs-using program). If you don't do "
2194 "this, then the qemu process won't be cleaned up correctly."
2199 #: ../src/guestfs.pod:958
2201 "Here is an example of a wrapper, where I have built my own copy of qemu from "
2207 #: ../src/guestfs.pod:961
2211 " qemudir=/home/rjones/d/qemu\n"
2212 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios \"$@\"\n"
2218 #: ../src/guestfs.pod:965
2220 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
2221 "then use it by setting the LIBGUESTFS_QEMU environment variable. For "
2227 #: ../src/guestfs.pod:969
2230 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
2236 #: ../src/guestfs.pod:971
2238 "Note that libguestfs also calls qemu with the -help and -version options in "
2239 "order to determine features."
2243 #: ../src/guestfs.pod:974
2244 msgid "ATTACHING TO RUNNING DAEMONS"
2248 #: ../src/guestfs.pod:976
2250 "I<Note (1):> This is B<highly experimental> and has a tendency to eat "
2251 "babies. Use with caution."
2255 #: ../src/guestfs.pod:979
2257 "I<Note (2):> This section explains how to attach to a running daemon from a "
2258 "low level perspective. For most users, simply using virt tools such as "
2259 "L<guestfish(1)> with the I<--live> option will \"just work\"."
2263 #: ../src/guestfs.pod:983
2264 msgid "Using guestfs_set_attach_method"
2268 #: ../src/guestfs.pod:985
2270 "By calling L</guestfs_set_attach_method> you can change how the library "
2271 "connects to the C<guestfsd> daemon in L</guestfs_launch> (read L</"
2272 "ARCHITECTURE> for some background)."
2276 #: ../src/guestfs.pod:989
2278 "The normal attach method is C<appliance>, where a small appliance is created "
2279 "containing the daemon, and then the library connects to this."
2283 #: ../src/guestfs.pod:992
2285 "Setting attach method to C<unix:I<path>> (where I<path> is the path of a "
2286 "Unix domain socket) causes L</guestfs_launch> to connect to an existing "
2287 "daemon over the Unix domain socket."
2291 #: ../src/guestfs.pod:996
2293 "The normal use for this is to connect to a running virtual machine that "
2294 "contains a C<guestfsd> daemon, and send commands so you can read and write "
2295 "files inside the live virtual machine."
2299 #: ../src/guestfs.pod:1000
2300 msgid "Using guestfs_add_domain with live flag"
2304 #: ../src/guestfs.pod:1002
2306 "L</guestfs_add_domain> provides some help for getting the correct attach "
2307 "method. If you pass the C<live> option to this function, then (if the "
2308 "virtual machine is running) it will examine the libvirt XML looking for a "
2309 "virtio-serial channel to connect to:"
2313 #: ../src/guestfs.pod:1008
2320 " <channel type='unix'>\n"
2321 " <source mode='bind' path='/path/to/socket'/>\n"
2322 " <target type='virtio' name='org.libguestfs.channel.0'/>\n"
2331 #: ../src/guestfs.pod:1020
2333 "L</guestfs_add_domain> extracts C</path/to/socket> and sets the attach "
2334 "method to C<unix:/path/to/socket>."
2338 #: ../src/guestfs.pod:1023
2340 "Some of the libguestfs tools (including guestfish) support a I<--live> "
2341 "option which is passed through to L</guestfs_add_domain> thus allowing you "
2342 "to attach to and modify live virtual machines."
2346 #: ../src/guestfs.pod:1027
2348 "The virtual machine needs to have been set up beforehand so that it has the "
2349 "virtio-serial channel and so that guestfsd is running inside it."
2354 #: ../src/guestfs.pod:1031
2355 msgid "ABI GUARANTEE"
2360 #: ../src/guestfs.pod:1033
2362 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
2363 "actions as outlined in this section. Although we will deprecate some "
2364 "actions, for example if they get replaced by newer calls, we will keep the "
2365 "old actions forever. This allows you the developer to program in confidence "
2366 "against the libguestfs API."
2371 #: ../src/guestfs.pod:1039
2372 msgid "BLOCK DEVICE NAMING"
2377 #: ../src/guestfs.pod:1041
2379 "In the kernel there is now quite a profusion of schemata for naming block "
2380 "devices (in this context, by I<block device> I mean a physical or virtual "
2381 "hard drive). The original Linux IDE driver used names starting with C</dev/"
2382 "hd*>. SCSI devices have historically used a different naming scheme, C</dev/"
2383 "sd*>. When the Linux kernel I<libata> driver became a popular replacement "
2384 "for the old IDE driver (particularly for SATA devices) those devices also "
2385 "used the C</dev/sd*> scheme. Additionally we now have virtual machines with "
2386 "paravirtualized drivers. This has created several different naming systems, "
2387 "such as C</dev/vd*> for virtio disks and C</dev/xvd*> for Xen PV disks."
2392 #: ../src/guestfs.pod:1053
2394 "As discussed above, libguestfs uses a qemu appliance running an embedded "
2395 "Linux kernel to access block devices. We can run a variety of appliances "
2396 "based on a variety of Linux kernels."
2401 #: ../src/guestfs.pod:1057
2403 "This causes a problem for libguestfs because many API calls use device or "
2404 "partition names. Working scripts and the recipe (example) scripts that we "
2405 "make available over the internet could fail if the naming scheme changes."
2410 #: ../src/guestfs.pod:1062
2412 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>. "
2413 "Internally C</dev/sd*> names are translated, if necessary, to other names as "
2414 "required. For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
2415 "device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2420 #: ../src/guestfs.pod:1068
2422 "Note that this I<only> applies to parameters. The L</guestfs_list_devices>, "
2423 "L</guestfs_list_partitions> and similar calls return the true names of the "
2424 "devices and partitions as known to the appliance."
2429 #: ../src/guestfs.pod:1073
2430 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2435 #: ../src/guestfs.pod:1075
2437 "Usually this translation is transparent. However in some (very rare) cases "
2438 "you may need to know the exact algorithm. Such cases include where you use "
2439 "L</guestfs_config> to add a mixture of virtio and IDE devices to the qemu-"
2440 "based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> devices."
2445 #: ../src/guestfs.pod:1081
2447 "The algorithm is applied only to I<parameters> which are known to be either "
2448 "device or partition names. Return values from functions such as L</"
2449 "guestfs_list_devices> are never changed."
2454 #: ../src/guestfs.pod:1089
2455 msgid "Is the string a parameter which is a device or partition name?"
2460 #: ../src/guestfs.pod:1093
2461 msgid "Does the string begin with C</dev/sd>?"
2466 #: ../src/guestfs.pod:1097
2468 "Does the named device exist? If so, we use that device. However if I<not> "
2469 "then we continue with this algorithm."
2474 #: ../src/guestfs.pod:1102
2475 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2480 #: ../src/guestfs.pod:1104
2481 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2486 #: ../src/guestfs.pod:1106
2487 msgid "If that named device exists, use it. If not, continue."
2492 #: ../src/guestfs.pod:1110
2493 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2498 #: ../src/guestfs.pod:1112
2499 msgid "If that named device exists, use it. If not, return an error."
2504 #: ../src/guestfs.pod:1116
2505 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2510 #: ../src/guestfs.pod:1118
2512 "Although the standard naming scheme and automatic translation is useful for "
2513 "simple programs and guestfish scripts, for larger programs it is best not to "
2514 "rely on this mechanism."
2519 #: ../src/guestfs.pod:1122
2521 "Where possible for maximum future portability programs using libguestfs "
2522 "should use these future-proof techniques:"
2527 #: ../src/guestfs.pod:1129
2529 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2530 "device names, and then use those names directly."
2535 #: ../src/guestfs.pod:1132
2537 "Since those device names exist by definition, they will never be translated."
2542 #: ../src/guestfs.pod:1137
2544 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2545 "filesystem labels."
2550 #: ../src/guestfs.pod:1142
2556 #: ../src/guestfs.pod:1144
2558 "This section discusses security implications of using libguestfs, "
2559 "particularly with untrusted or malicious guests or disk images."
2564 #: ../src/guestfs.pod:1147
2565 msgid "GENERAL SECURITY CONSIDERATIONS"
2570 #: ../src/guestfs.pod:1149
2572 "Be careful with any files or data that you download from a guest (by "
2573 "\"download\" we mean not just the L</guestfs_download> command but any "
2574 "command that reads files, filenames, directories or anything else from a "
2575 "disk image). An attacker could manipulate the data to fool your program "
2576 "into doing the wrong thing. Consider cases such as:"
2581 #: ../src/guestfs.pod:1159
2582 msgid "the data (file etc) not being present"
2587 #: ../src/guestfs.pod:1163
2588 msgid "being present but empty"
2593 #: ../src/guestfs.pod:1167
2594 msgid "being much larger than normal"
2599 #: ../src/guestfs.pod:1171
2600 msgid "containing arbitrary 8 bit data"
2605 #: ../src/guestfs.pod:1175
2606 msgid "being in an unexpected character encoding"
2611 #: ../src/guestfs.pod:1179
2612 msgid "containing homoglyphs."
2617 #: ../src/guestfs.pod:1183
2618 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2623 #: ../src/guestfs.pod:1185
2625 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2626 "(VFS) module can sometimes be escalated into exploits by deliberately "
2627 "creating a malicious, malformed filesystem. These exploits are very severe "
2628 "for two reasons. Firstly there are very many filesystem drivers in the "
2629 "kernel, and many of them are infrequently used and not much developer "
2630 "attention has been paid to the code. Linux userspace helps potential "
2631 "crackers by detecting the filesystem type and automatically choosing the "
2632 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2633 "the administrator. Secondly, a kernel-level exploit is like a local root "
2634 "exploit (worse in some ways), giving immediate and total access to the "
2635 "system right down to the hardware level."
2640 #: ../src/guestfs.pod:1198
2642 "That explains why you should never mount a filesystem from an untrusted "
2643 "guest on your host kernel. How about libguestfs? We run a Linux kernel "
2644 "inside a qemu virtual machine, usually running as a non-root user. The "
2645 "attacker would need to write a filesystem which first exploited the kernel, "
2646 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2647 "the libguestfs protocol, and finally to be as serious as the host kernel "
2648 "exploit it would need to escalate its privileges to root. This multi-step "
2649 "escalation, performed by a static piece of data, is thought to be extremely "
2650 "hard to do, although we never say 'never' about security issues."
2655 #: ../src/guestfs.pod:1209
2657 "In any case callers can reduce the attack surface by forcing the filesystem "
2658 "type when mounting (use L</guestfs_mount_vfs>)."
2663 #: ../src/guestfs.pod:1212
2664 msgid "PROTOCOL SECURITY"
2669 #: ../src/guestfs.pod:1214
2671 "The protocol is designed to be secure, being based on RFC 4506 (XDR) with a "
2672 "defined upper message size. However a program that uses libguestfs must "
2673 "also take care - for example you can write a program that downloads a binary "
2674 "from a disk image and executes it locally, and no amount of protocol "
2675 "security will save you from the consequences."
2680 #: ../src/guestfs.pod:1220
2681 msgid "INSPECTION SECURITY"
2686 #: ../src/guestfs.pod:1222
2688 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2689 "directly from the guest, and these could contain any 8 bit data. Callers "
2690 "should be careful to escape these before printing them to a structured file "
2691 "(for example, use HTML escaping if creating a web page)."
2696 #: ../src/guestfs.pod:1228
2698 "Guest configuration may be altered in unusual ways by the administrator of "
2699 "the virtual machine, and may not reflect reality (particularly for untrusted "
2700 "or actively malicious guests). For example we parse the hostname from "
2701 "configuration files like C</etc/sysconfig/network> that we find in the "
2702 "guest, but the guest administrator can easily manipulate these files to "
2703 "provide the wrong hostname."
2708 #: ../src/guestfs.pod:1236
2710 "The inspection API parses guest configuration using two external libraries: "
2711 "Augeas (Linux configuration) and hivex (Windows Registry). Both are "
2712 "designed to be robust in the face of malicious data, although denial of "
2713 "service attacks are still possible, for example with oversized configuration "
2719 #: ../src/guestfs.pod:1242
2720 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2725 #: ../src/guestfs.pod:1244
2727 "Be very cautious about running commands from the guest. By running a "
2728 "command in the guest, you are giving CPU time to a binary that you do not "
2729 "control, under the same user account as the library, albeit wrapped in qemu "
2730 "virtualization. More information and alternatives can be found in the "
2731 "section L</RUNNING COMMANDS>."
2736 #: ../src/guestfs.pod:1250
2737 msgid "CVE-2010-3851"
2742 #: ../src/guestfs.pod:1252
2743 msgid "https://bugzilla.redhat.com/642934"
2748 #: ../src/guestfs.pod:1254
2750 "This security bug concerns the automatic disk format detection that qemu "
2751 "does on disk images."
2756 #: ../src/guestfs.pod:1257
2758 "A raw disk image is just the raw bytes, there is no header. Other disk "
2759 "images like qcow2 contain a special header. Qemu deals with this by looking "
2760 "for one of the known headers, and if none is found then assuming the disk "
2761 "image must be raw."
2766 #: ../src/guestfs.pod:1262
2768 "This allows a guest which has been given a raw disk image to write some "
2769 "other header. At next boot (or when the disk image is accessed by "
2770 "libguestfs) qemu would do autodetection and think the disk image format was, "
2771 "say, qcow2 based on the header written by the guest."
2776 #: ../src/guestfs.pod:1267
2778 "This in itself would not be a problem, but qcow2 offers many features, one "
2779 "of which is to allow a disk image to refer to another image (called the "
2780 "\"backing disk\"). It does this by placing the path to the backing disk "
2781 "into the qcow2 header. This path is not validated and could point to any "
2782 "host file (eg. \"/etc/passwd\"). The backing disk is then exposed through "
2783 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2784 "control of the attacker."
2789 #: ../src/guestfs.pod:1275
2791 "In libguestfs this is rather hard to exploit except under two circumstances:"
2796 #: ../src/guestfs.pod:1282
2797 msgid "You have enabled the network or have opened the disk in write mode."
2802 #: ../src/guestfs.pod:1286
2804 "You are also running untrusted code from the guest (see L</RUNNING "
2810 #: ../src/guestfs.pod:1291
2812 "The way to avoid this is to specify the expected disk format when adding "
2813 "disks (the optional C<format> option to L</guestfs_add_drive_opts>). You "
2814 "should always do this if the disk is raw format, and it's a good idea for "
2820 #: ../src/guestfs.pod:1296
2822 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2823 "format is fetched from libvirt and passed through."
2828 #: ../src/guestfs.pod:1299
2830 "For libguestfs tools, use the I<--format> command line parameter as "
2836 #: ../src/guestfs.pod:1302
2837 msgid "CONNECTION MANAGEMENT"
2842 #: ../src/guestfs.pod:1304
2848 #: ../src/guestfs.pod:1306
2850 "C<guestfs_h> is the opaque type representing a connection handle. Create a "
2851 "handle by calling L</guestfs_create>. Call L</guestfs_close> to free the "
2852 "handle and release all resources used."
2857 #: ../src/guestfs.pod:1310
2859 "For information on using multiple handles and threads, see the section L</"
2860 "MULTIPLE HANDLES AND MULTIPLE THREADS> below."
2865 #: ../src/guestfs.pod:1313
2866 msgid "guestfs_create"
2871 #: ../src/guestfs.pod:1315
2874 " guestfs_h *guestfs_create (void);\n"
2880 #: ../src/guestfs.pod:1317
2881 msgid "Create a connection handle."
2886 #: ../src/guestfs.pod:1319
2888 "You have to call L</guestfs_add_drive_opts> (or one of the equivalent calls) "
2889 "on the handle at least once."
2894 #: ../src/guestfs.pod:1322
2896 "This function returns a non-NULL pointer to a handle on success or NULL on "
2902 #: ../src/guestfs.pod:1325
2903 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2908 #: ../src/guestfs.pod:1327
2910 "You may also want to configure error handling for the handle. See L</ERROR "
2911 "HANDLING> section below."
2916 #: ../src/guestfs.pod:1330
2917 msgid "guestfs_close"
2922 #: ../src/guestfs.pod:1332
2925 " void guestfs_close (guestfs_h *g);\n"
2931 #: ../src/guestfs.pod:1334
2932 msgid "This closes the connection handle and frees up all resources used."
2937 #: ../src/guestfs.pod:1336
2938 msgid "ERROR HANDLING"
2943 #: ../src/guestfs.pod:1338
2945 "API functions can return errors. For example, almost all functions that "
2946 "return C<int> will return C<-1> to indicate an error."
2951 #: ../src/guestfs.pod:1341
2953 "Additional information is available for errors: an error message string and "
2954 "optionally an error number (errno) if the thing that failed was a system "
2960 #: ../src/guestfs.pod:1345
2962 "You can get at the additional information about the last error on the handle "
2963 "by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
2964 "up an error handler with L</guestfs_set_error_handler>."
2969 #: ../src/guestfs.pod:1350
2971 "When the handle is created, a default error handler is installed which "
2972 "prints the error message string to C<stderr>. For small short-running "
2973 "command line programs it is sufficient to do:"
2978 #: ../src/guestfs.pod:1354
2981 " if (guestfs_launch (g) == -1)\n"
2982 " exit (EXIT_FAILURE);\n"
2988 #: ../src/guestfs.pod:1357
2990 "since the default error handler will ensure that an error message has been "
2991 "printed to C<stderr> before the program exits."
2996 #: ../src/guestfs.pod:1360
2998 "For other programs the caller will almost certainly want to install an "
2999 "alternate error handler or do error handling in-line like this:"
3004 #: ../src/guestfs.pod:1363
3007 " g = guestfs_create ();\n"
3013 #: ../src/guestfs.pod:1365
3016 " /* This disables the default behaviour of printing errors\n"
3018 " guestfs_set_error_handler (g, NULL, NULL);\n"
3024 #: ../src/guestfs.pod:1369
3027 " if (guestfs_launch (g) == -1) {\n"
3028 " /* Examine the error message and print it etc. */\n"
3029 " char *msg = guestfs_last_error (g);\n"
3030 " int errnum = guestfs_last_errno (g);\n"
3031 " fprintf (stderr, \"%s\\n\", msg);\n"
3039 #: ../src/guestfs.pod:1377
3041 "Out of memory errors are handled differently. The default action is to call "
3042 "L<abort(3)>. If this is undesirable, then you can set a handler using L</"
3043 "guestfs_set_out_of_memory_handler>."
3048 #: ../src/guestfs.pod:1381
3050 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
3051 "because there is no handle if this happens there is no way to get additional "
3052 "error information. However L</guestfs_create> is supposed to be a "
3053 "lightweight operation which can only fail because of insufficient memory (it "
3054 "returns NULL in this case)."
3059 #: ../src/guestfs.pod:1387
3060 msgid "guestfs_last_error"
3065 #: ../src/guestfs.pod:1389
3068 " const char *guestfs_last_error (guestfs_h *g);\n"
3074 #: ../src/guestfs.pod:1391
3076 "This returns the last error message that happened on C<g>. If there has not "
3077 "been an error since the handle was created, then this returns C<NULL>."
3082 #: ../src/guestfs.pod:1395
3084 "The lifetime of the returned string is until the next error occurs, or L</"
3085 "guestfs_close> is called."
3090 #: ../src/guestfs.pod:1398
3091 msgid "guestfs_last_errno"
3096 #: ../src/guestfs.pod:1400
3099 " int guestfs_last_errno (guestfs_h *g);\n"
3105 #: ../src/guestfs.pod:1402
3106 msgid "This returns the last error number (errno) that happened on C<g>."
3111 #: ../src/guestfs.pod:1404
3112 msgid "If successful, an errno integer not equal to zero is returned."
3117 #: ../src/guestfs.pod:1406
3119 "If no error, this returns 0. This call can return 0 in three situations:"
3124 #: ../src/guestfs.pod:1413
3125 msgid "There has not been any error on the handle."
3130 #: ../src/guestfs.pod:1417
3132 "There has been an error but the errno was meaningless. This corresponds to "
3133 "the case where the error did not come from a failed system call, but for "
3134 "some other reason."
3139 #: ../src/guestfs.pod:1423
3141 "There was an error from a failed system call, but for some reason the errno "
3142 "was not captured and returned. This usually indicates a bug in libguestfs."
3147 #: ../src/guestfs.pod:1429
3149 "Libguestfs tries to convert the errno from inside the applicance into a "
3150 "corresponding errno for the caller (not entirely trivial: the appliance "
3151 "might be running a completely different operating system from the library "
3152 "and error numbers are not standardized across Un*xen). If this could not be "
3153 "done, then the error is translated to C<EINVAL>. In practice this should "
3154 "only happen in very rare circumstances."
3159 #: ../src/guestfs.pod:1437
3160 msgid "guestfs_set_error_handler"
3165 #: ../src/guestfs.pod:1439
3168 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
3170 " const char *msg);\n"
3171 " void guestfs_set_error_handler (guestfs_h *g,\n"
3172 " guestfs_error_handler_cb cb,\n"
3179 #: ../src/guestfs.pod:1446
3181 "The callback C<cb> will be called if there is an error. The parameters "
3182 "passed to the callback are an opaque data pointer and the error message "
3188 #: ../src/guestfs.pod:1450
3190 "C<errno> is not passed to the callback. To get that the callback must call "
3191 "L</guestfs_last_errno>."
3196 #: ../src/guestfs.pod:1453
3198 "Note that the message string C<msg> is freed as soon as the callback "
3199 "function returns, so if you want to stash it somewhere you must make your "
3205 #: ../src/guestfs.pod:1457
3206 msgid "The default handler prints messages on C<stderr>."
3211 #: ../src/guestfs.pod:1459
3212 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
3217 #: ../src/guestfs.pod:1461
3218 msgid "guestfs_get_error_handler"
3223 #: ../src/guestfs.pod:1463
3226 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
3227 " void **opaque_rtn);\n"
3233 #: ../src/guestfs.pod:1466
3234 msgid "Returns the current error handler callback."
3239 #: ../src/guestfs.pod:1468
3240 msgid "guestfs_set_out_of_memory_handler"
3245 #: ../src/guestfs.pod:1470
3248 " typedef void (*guestfs_abort_cb) (void);\n"
3249 " int guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
3250 " guestfs_abort_cb);\n"
3256 #: ../src/guestfs.pod:1474
3258 "The callback C<cb> will be called if there is an out of memory situation. "
3259 "I<Note this callback must not return>."
3264 #: ../src/guestfs.pod:1477
3265 msgid "The default is to call L<abort(3)>."
3270 #: ../src/guestfs.pod:1479
3272 "You cannot set C<cb> to C<NULL>. You can't ignore out of memory situations."
3277 #: ../src/guestfs.pod:1482
3278 msgid "guestfs_get_out_of_memory_handler"
3283 #: ../src/guestfs.pod:1484
3286 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
3292 #: ../src/guestfs.pod:1486
3293 msgid "This returns the current out of memory handler."
3298 #: ../src/guestfs.pod:1488
3304 #: ../src/guestfs.pod:1490 ../fish/guestfish.pod:1008
3310 #: ../src/guestfs.pod:1492
3316 #: ../src/guestfs.pod:1494
3322 #: ../src/guestfs.pod:1496
3323 msgid "AVAILABILITY"
3328 #: ../src/guestfs.pod:1498
3329 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
3334 #: ../src/guestfs.pod:1500
3336 "Using L</guestfs_available> you can test availability of the following "
3337 "groups of functions. This test queries the appliance to see if the "
3338 "appliance you are currently using supports the functionality."
3343 #: ../src/guestfs.pod:1505
3344 msgid "@AVAILABILITY@"
3349 #: ../src/guestfs.pod:1507
3350 msgid "GUESTFISH supported COMMAND"
3355 #: ../src/guestfs.pod:1509
3357 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
3358 "prints out the available groups and whether they are supported by this build "
3359 "of libguestfs. Note however that you have to do C<run> first."
3364 #: ../src/guestfs.pod:1514
3365 msgid "SINGLE CALLS AT COMPILE TIME"
3370 #: ../src/guestfs.pod:1516
3372 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
3373 "function, such as:"
3378 #: ../src/guestfs.pod:1519
3381 " #define LIBGUESTFS_HAVE_DD 1\n"
3387 #: ../src/guestfs.pod:1521
3388 msgid "if L</guestfs_dd> is available."
3393 #: ../src/guestfs.pod:1523
3395 "Before version 1.5.8, if you needed to test whether a single libguestfs "
3396 "function is available at compile time, we recommended using build tools such "
3397 "as autoconf or cmake. For example in autotools you could use:"
3402 #: ../src/guestfs.pod:1528
3405 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
3406 " AC_CHECK_FUNCS([guestfs_dd])\n"
3412 #: ../src/guestfs.pod:1531
3414 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
3420 #: ../src/guestfs.pod:1534
3421 msgid "SINGLE CALLS AT RUN TIME"
3426 #: ../src/guestfs.pod:1536
3428 "Testing at compile time doesn't guarantee that a function really exists in "
3429 "the library. The reason is that you might be dynamically linked against a "
3430 "previous I<libguestfs.so> (dynamic library) which doesn't have the call. "
3431 "This situation unfortunately results in a segmentation fault, which is a "
3432 "shortcoming of the C dynamic linking system itself."
3437 #: ../src/guestfs.pod:1543
3439 "You can use L<dlopen(3)> to test if a function is available at run time, as "
3440 "in this example program (note that you still need the compile time check as "
3446 #: ../src/guestfs.pod:1547
3449 " #include <stdio.h>\n"
3450 " #include <stdlib.h>\n"
3451 " #include <unistd.h>\n"
3452 " #include <dlfcn.h>\n"
3453 " #include <guestfs.h>\n"
3459 #: ../src/guestfs.pod:1553
3464 " #ifdef LIBGUESTFS_HAVE_DD\n"
3466 " int has_function;\n"
3472 #: ../src/guestfs.pod:1559
3475 " /* Test if the function guestfs_dd is really available. */\n"
3476 " dl = dlopen (NULL, RTLD_LAZY);\n"
3478 " fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
3479 " exit (EXIT_FAILURE);\n"
3481 " has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
3488 #: ../src/guestfs.pod:1568
3491 " if (!has_function)\n"
3492 " printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
3494 " printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
3495 " /* Now it's safe to call\n"
3496 " guestfs_dd (g, \"foo\", \"bar\");\n"
3500 " printf (\"guestfs_dd function was not found at compile time\\n\");\n"
3508 #: ../src/guestfs.pod:1581
3510 "You may think the above is an awful lot of hassle, and it is. There are "
3511 "other ways outside of the C linking system to ensure that this kind of "
3512 "incompatibility never arises, such as using package versioning:"
3517 #: ../src/guestfs.pod:1586
3520 " Requires: libguestfs >= 1.0.80\n"
3526 #: ../src/guestfs.pod:1588
3527 msgid "CALLS WITH OPTIONAL ARGUMENTS"
3532 #: ../src/guestfs.pod:1590
3534 "A recent feature of the API is the introduction of calls which take optional "
3535 "arguments. In C these are declared 3 ways. The main way is as a call which "
3536 "takes variable arguments (ie. C<...>), as in this example:"
3541 #: ../src/guestfs.pod:1595
3544 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
3550 #: ../src/guestfs.pod:1597
3552 "Call this with a list of optional arguments, terminated by C<-1>. So to "
3553 "call with no optional arguments specified:"
3558 #: ../src/guestfs.pod:1600
3561 " guestfs_add_drive_opts (g, filename, -1);\n"
3567 #: ../src/guestfs.pod:1602
3568 msgid "With a single optional argument:"
3573 #: ../src/guestfs.pod:1604
3576 " guestfs_add_drive_opts (g, filename,\n"
3577 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3584 #: ../src/guestfs.pod:1608
3590 #: ../src/guestfs.pod:1610
3593 " guestfs_add_drive_opts (g, filename,\n"
3594 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3595 " GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3602 #: ../src/guestfs.pod:1615
3604 "and so forth. Don't forget the terminating C<-1> otherwise Bad Things will "
3610 #: ../src/guestfs.pod:1618
3611 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3616 #: ../src/guestfs.pod:1620
3618 "The second variant has the same name with the suffix C<_va>, which works the "
3619 "same way but takes a C<va_list>. See the C manual for details. For the "
3620 "example function, this is declared:"
3625 #: ../src/guestfs.pod:1624
3628 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3635 #: ../src/guestfs.pod:1627
3636 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3641 #: ../src/guestfs.pod:1629
3643 "The third variant is useful where you need to construct these calls. You "
3644 "pass in a structure where you fill in the optional fields. The structure "
3645 "has a bitmask as the first element which you must set to indicate which "
3646 "fields you have filled in. For our example function the structure and call "
3652 #: ../src/guestfs.pod:1635
3655 " struct guestfs_add_drive_opts_argv {\n"
3656 " uint64_t bitmask;\n"
3658 " const char *format;\n"
3661 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3662 " const struct guestfs_add_drive_opts_argv *optargs);\n"
3668 #: ../src/guestfs.pod:1644
3669 msgid "You could call it like this:"
3674 #: ../src/guestfs.pod:1646
3677 " struct guestfs_add_drive_opts_argv optargs = {\n"
3678 " .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3679 " GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3681 " .format = \"qcow2\"\n"
3688 #: ../src/guestfs.pod:1653
3691 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3697 #: ../src/guestfs.pod:1655 ../src/guestfs-actions.pod:11
3698 #: ../src/guestfs-actions.pod:1855 ../fish/guestfish-actions.pod:9
3699 #: ../fish/guestfish-actions.pod:1260 ../tools/virt-win-reg.pl:532
3705 #: ../src/guestfs.pod:1661
3706 msgid "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3711 #: ../src/guestfs.pod:1666
3712 msgid "You do not need to fill in all fields of the structure."
3717 #: ../src/guestfs.pod:1670
3719 "There must be a one-to-one correspondence between fields of the structure "
3720 "that are filled in, and bits set in the bitmask."
3725 #: ../src/guestfs.pod:1675
3726 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3731 #: ../src/guestfs.pod:1677
3733 "In other languages, optional arguments are expressed in the way that is "
3734 "natural for that language. We refer you to the language-specific "
3735 "documentation for more details on that."
3740 #: ../src/guestfs.pod:1681
3741 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3746 #: ../src/guestfs.pod:1683
3747 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3751 #: ../src/guestfs.pod:1685
3753 "B<Note:> This section documents the generic event mechanism introduced in "
3754 "libguestfs 1.10, which you should use in new code if possible. The old "
3755 "functions C<guestfs_set_log_message_callback>, "
3756 "C<guestfs_set_subprocess_quit_callback>, "
3757 "C<guestfs_set_launch_done_callback>, C<guestfs_set_close_callback> and "
3758 "C<guestfs_set_progress_callback> are no longer documented in this manual "
3763 #: ../src/guestfs.pod:1693
3765 "Handles generate events when certain things happen, such as log messages "
3766 "being generated, progress messages during long-running operations, or the "
3767 "handle being closed. The API calls described below let you register a "
3768 "callback to be called when events happen. You can register multiple "
3769 "callbacks (for the same, different or overlapping sets of events), and "
3770 "individually remove callbacks. If callbacks are not removed, then they "
3771 "remain in force until the handle is closed."
3775 #: ../src/guestfs.pod:1701
3777 "In the current implementation, events are only generated synchronously: that "
3778 "means that events (and hence callbacks) can only happen while you are in the "
3779 "middle of making another libguestfs call. The callback is called in the "
3784 #: ../src/guestfs.pod:1706
3786 "Events may contain a payload, usually nothing (void), an array of 64 bit "
3787 "unsigned integers, or a message buffer. Payloads are discussed later on."
3791 #: ../src/guestfs.pod:1710
3792 msgid "CLASSES OF EVENTS"
3796 #: ../src/guestfs.pod:1714
3797 msgid "GUESTFS_EVENT_CLOSE (payload type: void)"
3801 #: ../src/guestfs.pod:1717
3803 "The callback function will be called while the handle is being closed "
3804 "(synchronously from L</guestfs_close>)."
3809 #: ../src/guestfs.pod:1720
3811 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3812 "handles that are open when the program exits. This means that this callback "
3813 "might be called indirectly from L<exit(3)>, which can cause unexpected "
3814 "problems in higher-level languages (eg. if your HLL interpreter has already "
3815 "been cleaned up by the time this is called, and if your callback then jumps "
3816 "into some HLL function)."
3820 #: ../src/guestfs.pod:1727
3822 "If no callback is registered: the handle is closed without any callback "
3827 #: ../src/guestfs.pod:1730
3828 msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)"
3832 #: ../src/guestfs.pod:1733
3834 "The callback function will be called when the child process quits, either "
3835 "asynchronously or if killed by L</guestfs_kill_subprocess>. (This "
3836 "corresponds to a transition from any state to the CONFIG state)."
3840 #: ../src/guestfs.pod:1737 ../src/guestfs.pod:1746
3841 msgid "If no callback is registered: the event is ignored."
3845 #: ../src/guestfs.pod:1739
3846 msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)"
3850 #: ../src/guestfs.pod:1742
3852 "The callback function will be called when the child process becomes ready "
3853 "first time after it has been launched. (This corresponds to a transition "
3854 "from LAUNCHING to the READY state)."
3858 #: ../src/guestfs.pod:1748
3859 msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)"
3864 #: ../src/guestfs.pod:1751
3866 "Some long-running operations can generate progress messages. If this "
3867 "callback is registered, then it will be called each time a progress message "
3868 "is generated (usually two seconds after the operation started, and three "
3869 "times per second thereafter until it completes, although the frequency may "
3870 "change in future versions)."
3874 #: ../src/guestfs.pod:1757
3876 "The callback receives in the payload four unsigned 64 bit numbers which are "
3877 "(in order): C<proc_nr>, C<serial>, C<position>, C<total>."
3881 #: ../src/guestfs.pod:1760
3883 "The units of C<total> are not defined, although for some operations C<total> "
3884 "may relate in some way to the amount of data to be transferred (eg. in bytes "
3885 "or megabytes), and C<position> may be the portion which has been transferred."
3890 #: ../src/guestfs.pod:1765
3891 msgid "The only defined and stable parts of the API are:"
3896 #: ../src/guestfs.pod:1771
3898 "The callback can display to the user some type of progress bar or indicator "
3899 "which shows the ratio of C<position>:C<total>."
3904 #: ../src/guestfs.pod:1776
3905 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3909 #: ../src/guestfs.pod:1780
3911 "If any progress notification is sent during a call, then a final progress "
3912 "notification is always sent when C<position> = C<total> (I<unless> the call "
3913 "fails with an error)."
3918 #: ../src/guestfs.pod:1784
3920 "This is to simplify caller code, so callers can easily set the progress "
3921 "indicator to \"100%\" at the end of the operation, without requiring special "
3922 "code to detect this case."
3926 #: ../src/guestfs.pod:1790
3928 "For some calls we are unable to estimate the progress of the call, but we "
3929 "can still generate progress messages to indicate activity. This is known as "
3930 "\"pulse mode\", and is directly supported by certain progress bar "
3931 "implementations (eg. GtkProgressBar)."
3935 #: ../src/guestfs.pod:1795
3937 "For these calls, zero or more progress messages are generated with "
3938 "C<position = 0> and C<total = 1>, followed by a final message with "
3939 "C<position = total = 1>."
3943 #: ../src/guestfs.pod:1799
3945 "As noted above, if the call fails with an error then the final message may "
3950 #: ../src/guestfs.pod:1804
3952 "The callback also receives the procedure number (C<proc_nr>) and serial "
3953 "number (C<serial>) of the call. These are only useful for debugging "
3954 "protocol issues, and the callback can normally ignore them. The callback "
3955 "may want to print these numbers in error messages or debugging messages."
3959 #: ../src/guestfs.pod:1810
3960 msgid "If no callback is registered: progress messages are discarded."
3964 #: ../src/guestfs.pod:1812
3965 msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)"
3969 #: ../src/guestfs.pod:1815
3971 "The callback function is called whenever a log message is generated by qemu, "
3972 "the appliance kernel, guestfsd (daemon), or utility programs."
3976 #: ../src/guestfs.pod:1818
3978 "If the verbose flag (L</guestfs_set_verbose>) is set before launch (L</"
3979 "guestfs_launch>) then additional debug messages are generated."
3983 #: ../src/guestfs.pod:1821 ../src/guestfs.pod:1835
3985 "If no callback is registered: the messages are discarded unless the verbose "
3986 "flag is set in which case they are sent to stderr. You can override the "
3987 "printing of verbose messages to stderr by setting up a callback."
3991 #: ../src/guestfs.pod:1826
3992 msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)"
3996 #: ../src/guestfs.pod:1829
3998 "The callback function is called whenever a log message is generated by the "
3999 "library part of libguestfs."
4003 #: ../src/guestfs.pod:1832
4005 "If the verbose flag (L</guestfs_set_verbose>) is set then additional debug "
4006 "messages are generated."
4010 #: ../src/guestfs.pod:1840
4011 msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)"
4015 #: ../src/guestfs.pod:1843
4017 "The callback function is called whenever a trace message is generated. This "
4018 "only applies if the trace flag (L</guestfs_set_trace>) is set."
4022 #: ../src/guestfs.pod:1846
4024 "If no callback is registered: the messages are sent to stderr. You can "
4025 "override the printing of trace messages to stderr by setting up a callback."
4029 #: ../src/guestfs.pod:1852
4030 msgid "guestfs_set_event_callback"
4034 #: ../src/guestfs.pod:1854
4037 " int guestfs_set_event_callback (guestfs_h *g,\n"
4038 " guestfs_event_callback cb,\n"
4039 " uint64_t event_bitmask,\n"
4046 #: ../src/guestfs.pod:1860
4048 "This function registers a callback (C<cb>) for all event classes in the "
4053 #: ../src/guestfs.pod:1863
4055 "For example, to register for all log message events, you could call this "
4056 "function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>. "
4057 "To register a single callback for all possible classes of events, use "
4058 "C<GUESTFS_EVENT_ALL>."
4062 #: ../src/guestfs.pod:1869
4063 msgid "C<flags> should always be passed as 0."
4067 #: ../src/guestfs.pod:1871
4069 "C<opaque> is an opaque pointer which is passed to the callback. You can use "
4070 "it for any purpose."
4074 #: ../src/guestfs.pod:1874
4076 "The return value is the event handle (an integer) which you can use to "
4077 "delete the callback (see below)."
4081 #: ../src/guestfs.pod:1877
4083 "If there is an error, this function returns C<-1>, and sets the error in the "
4084 "handle in the usual way (see L</guestfs_last_error> etc.)"
4088 #: ../src/guestfs.pod:1880
4090 "Callbacks remain in effect until they are deleted, or until the handle is "
4095 #: ../src/guestfs.pod:1883
4097 "In the case where multiple callbacks are registered for a particular event "
4098 "class, all of the callbacks are called. The order in which multiple "
4099 "callbacks are called is not defined."
4103 #: ../src/guestfs.pod:1887
4104 msgid "guestfs_delete_event_callback"
4108 #: ../src/guestfs.pod:1889
4111 " void guestfs_delete_event_callback (guestfs_h *g, int event_handle);\n"
4116 #: ../src/guestfs.pod:1891
4118 "Delete a callback that was previously registered. C<event_handle> should be "
4119 "the integer that was returned by a previous call to "
4120 "C<guestfs_set_event_callback> on the same handle."
4124 #: ../src/guestfs.pod:1895
4125 msgid "guestfs_event_callback"
4129 #: ../src/guestfs.pod:1897
4132 " typedef void (*guestfs_event_callback) (\n"
4135 " uint64_t event,\n"
4136 " int event_handle,\n"
4138 " const char *buf, size_t buf_len,\n"
4139 " const uint64_t *array, size_t array_len);\n"
4144 #: ../src/guestfs.pod:1906
4146 "This is the type of the event callback function that you have to provide."
4150 #: ../src/guestfs.pod:1909
4152 "The basic parameters are: the handle (C<g>), the opaque user pointer "
4153 "(C<opaque>), the event class (eg. C<GUESTFS_EVENT_PROGRESS>), the event "
4154 "handle, and C<flags> which in the current API you should ignore."
4158 #: ../src/guestfs.pod:1913
4160 "The remaining parameters contain the event payload (if any). Each event may "
4161 "contain a payload, which usually relates to the event class, but for future "
4162 "proofing your code should be written to handle any payload for any event "
4167 #: ../src/guestfs.pod:1918
4169 "C<buf> and C<buf_len> contain a message buffer (if C<buf_len == 0>, then "
4170 "there is no message buffer). Note that this message buffer can contain "
4171 "arbitrary 8 bit data, including NUL bytes."
4175 #: ../src/guestfs.pod:1922
4177 "C<array> and C<array_len> is an array of 64 bit unsigned integers. At the "
4178 "moment this is only used for progress messages."
4182 #: ../src/guestfs.pod:1925
4183 msgid "EXAMPLE: CAPTURING LOG MESSAGES"
4187 #: ../src/guestfs.pod:1927
4189 "One motivation for the generic event API was to allow GUI programs to "
4190 "capture debug and other messages. In libguestfs E<le> 1.8 these were sent "
4191 "unconditionally to C<stderr>."
4195 #: ../src/guestfs.pod:1931
4197 "Events associated with log messages are: C<GUESTFS_EVENT_LIBRARY>, "
4198 "C<GUESTFS_EVENT_APPLIANCE> and C<GUESTFS_EVENT_TRACE>. (Note that error "
4199 "messages are not events; you must capture error messages separately)."
4203 #: ../src/guestfs.pod:1936
4205 "Programs have to set up a callback to capture the classes of events of "
4210 #: ../src/guestfs.pod:1939
4214 " guestfs_set_event_callback\n"
4215 " (g, message_callback,\n"
4216 " GUESTFS_EVENT_LIBRARY|GUESTFS_EVENT_APPLIANCE|\n"
4217 " GUESTFS_EVENT_TRACE,\n"
4218 " 0, NULL) == -1)\n"
4219 " if (eh == -1) {\n"
4220 " // handle error in the usual way\n"
4226 #: ../src/guestfs.pod:1949
4228 "The callback can then direct messages to the appropriate place. In this "
4229 "example, messages are directed to syslog:"
4233 #: ../src/guestfs.pod:1952
4237 " message_callback (\n"
4240 " uint64_t event,\n"
4241 " int event_handle,\n"
4243 " const char *buf, size_t buf_len,\n"
4244 " const uint64_t *array, size_t array_len)\n"
4246 " const int priority = LOG_USER|LOG_INFO;\n"
4247 " if (buf_len > 0)\n"
4248 " syslog (priority, \"event 0x%lx: %s\", event, buf);\n"
4255 #: ../src/guestfs.pod:1967
4256 msgid "PRIVATE DATA AREA"
4260 #: ../src/guestfs.pod:1969
4262 "You can attach named pieces of private data to the libguestfs handle, fetch "
4263 "them by name, and walk over them, for the lifetime of the handle. This is "
4264 "called the private data area and is only available from the C API."
4269 #: ../src/guestfs.pod:1974
4270 msgid "To attach a named piece of data, use the following call:"
4275 #: ../src/guestfs.pod:1976
4278 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
4284 #: ../src/guestfs.pod:1978
4286 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
4287 "pointer (which can be C<NULL>). Any previous item with the same name is "
4293 #: ../src/guestfs.pod:1982
4295 "You can use any C<key> you want, but names beginning with an underscore "
4296 "character are reserved for internal libguestfs purposes (for implementing "
4297 "language bindings). It is recommended to prefix the name with some unique "
4298 "string to avoid collisions with other users."
4303 #: ../src/guestfs.pod:1987
4304 msgid "To retrieve the pointer, use:"
4309 #: ../src/guestfs.pod:1989
4312 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
4318 #: ../src/guestfs.pod:1991
4320 "This function returns C<NULL> if either no data is found associated with "
4321 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
4326 #: ../src/guestfs.pod:1995
4328 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
4329 "way. As far as libguestfs is concerned, it need not be a valid pointer at "
4330 "all. In particular, libguestfs does I<not> try to free the data when the "
4331 "handle is closed. If the data must be freed, then the caller must either "
4332 "free it before calling L</guestfs_close> or must set up a close callback to "
4333 "do it (see L</GUESTFS_EVENT_CLOSE>)."
4337 #: ../src/guestfs.pod:2002
4338 msgid "To walk over all entries, use these two functions:"
4342 #: ../src/guestfs.pod:2004
4345 " void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n"
4350 #: ../src/guestfs.pod:2006
4353 " void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n"
4358 #: ../src/guestfs.pod:2008
4360 "C<guestfs_first_private> returns the first key, pointer pair (\"first\" does "
4361 "not have any particular meaning -- keys are not returned in any defined "
4362 "order). A pointer to the key is returned in C<*key_rtn> and the "
4363 "corresponding data pointer is returned from the function. C<NULL> is "
4364 "returned if there are no keys stored in the handle."
4368 #: ../src/guestfs.pod:2014
4370 "C<guestfs_next_private> returns the next key, pointer pair. The return "
4371 "value of this function is also C<NULL> is there are no further entries to "
4376 #: ../src/guestfs.pod:2018
4377 msgid "Notes about walking over entries:"
4381 #: ../src/guestfs.pod:2024
4383 "You must not call C<guestfs_set_private> while walking over the entries."
4387 #: ../src/guestfs.pod:2029
4389 "The handle maintains an internal iterator which is reset when you call "
4390 "C<guestfs_first_private>. This internal iterator is invalidated when you "
4391 "call C<guestfs_set_private>."
4395 #: ../src/guestfs.pod:2035
4396 msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
4400 #: ../src/guestfs.pod:2037
4403 " guestfs_set_private (g, key, NULL);\n"
4408 #: ../src/guestfs.pod:2039
4409 msgid "then that C<key> is not returned when walking."
4413 #: ../src/guestfs.pod:2043
4415 "C<*key_rtn> is only valid until the next call to C<guestfs_first_private>, "
4416 "C<guestfs_next_private> or C<guestfs_set_private>."
4420 #: ../src/guestfs.pod:2049
4422 "The following example code shows how to print all keys and data pointers "
4423 "that are associated with the handle C<g>:"
4427 #: ../src/guestfs.pod:2052
4430 " const char *key;\n"
4431 " void *data = guestfs_first_private (g, &key);\n"
4432 " while (data != NULL)\n"
4434 " printf (\"key = %s, data = %p\\n\", key, data);\n"
4435 " data = guestfs_next_private (g, &key);\n"
4441 #: ../src/guestfs.pod:2060
4443 "More commonly you are only interested in keys that begin with an application-"
4444 "specific prefix C<foo_>. Modify the loop like so:"
4448 #: ../src/guestfs.pod:2063
4451 " const char *key;\n"
4452 " void *data = guestfs_first_private (g, &key);\n"
4453 " while (data != NULL)\n"
4455 " if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4456 " printf (\"key = %s, data = %p\\n\", key, data);\n"
4457 " data = guestfs_next_private (g, &key);\n"
4463 #: ../src/guestfs.pod:2072
4465 "If you need to modify keys while walking, then you have to jump back to the "
4466 "beginning of the loop. For example, to delete all keys prefixed with "
4471 #: ../src/guestfs.pod:2076
4474 " const char *key;\n"
4477 " data = guestfs_first_private (g, &key);\n"
4478 " while (data != NULL)\n"
4480 " if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4482 " guestfs_set_private (g, key, NULL);\n"
4483 " /* note that 'key' pointer is now invalid, and so is\n"
4484 " the internal iterator */\n"
4487 " data = guestfs_next_private (g, &key);\n"
4493 #: ../src/guestfs.pod:2092
4495 "Note that the above loop is guaranteed to terminate because the keys are "
4496 "being deleted, but other manipulations of keys within the loop might not "
4497 "terminate unless you also maintain an indication of which keys have been "
4503 #: ../src/guestfs.pod:2097 ../src/guestfs.pod:2102
4509 #: ../src/guestfs.pod:2099
4511 "<!-- old anchor for the next section --> <a name="
4512 "\"state_machine_and_low_level_event_api\"/>"
4517 #: ../src/guestfs.pod:2104
4518 msgid "ARCHITECTURE"
4523 #: ../src/guestfs.pod:2106
4525 "Internally, libguestfs is implemented by running an appliance (a special "
4526 "type of small virtual machine) using L<qemu(1)>. Qemu runs as a child "
4527 "process of the main program."
4532 #: ../src/guestfs.pod:2110
4535 " ___________________\n"
4537 " | main program |\n"
4539 " | | child process / appliance\n"
4540 " | | __________________________\n"
4542 " +-------------------+ RPC | +-----------------+ |\n"
4543 " | libguestfs <--------------------> guestfsd | |\n"
4544 " | | | +-----------------+ |\n"
4545 " \\___________________/ | | Linux kernel | |\n"
4546 " | +--^--------------+ |\n"
4547 " \\_________|________________/\n"
4553 " \\______________/\n"
4559 #: ../src/guestfs.pod:2130
4561 "The library, linked to the main program, creates the child process and hence "
4562 "the appliance in the L</guestfs_launch> function."
4567 #: ../src/guestfs.pod:2133
4569 "Inside the appliance is a Linux kernel and a complete stack of userspace "
4570 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
4571 "L</guestfsd>. The library talks to L</guestfsd> using remote procedure "
4572 "calls (RPC). There is a mostly one-to-one correspondence between libguestfs "
4573 "API calls and RPC calls to the daemon. Lastly the disk image(s) are "
4574 "attached to the qemu process which translates device access by the "
4575 "appliance's Linux kernel into accesses to the image."
4580 #: ../src/guestfs.pod:2142
4582 "A common misunderstanding is that the appliance \"is\" the virtual machine. "
4583 "Although the disk image you are attached to might also be used by some "
4584 "virtual machine, libguestfs doesn't know or care about this. (But you will "
4585 "care if both libguestfs's qemu process and your virtual machine are trying "
4586 "to update the disk image at the same time, since these usually results in "
4587 "massive disk corruption)."
4592 #: ../src/guestfs.pod:2149
4593 msgid "STATE MACHINE"
4598 #: ../src/guestfs.pod:2151
4599 msgid "libguestfs uses a state machine to model the child process:"
4604 #: ../src/guestfs.pod:2153
4616 " / | \\ \\ guestfs_launch\n"
4617 " / | _\\__V______\n"
4619 " / | | LAUNCHING |\n"
4620 " / | \\___________/\n"
4622 " / | guestfs_launch\n"
4624 " ______ / __|____V\n"
4625 " / \\ ------> / \\\n"
4626 " | BUSY | | READY |\n"
4627 " \\______/ <------ \\________/\n"
4633 #: ../src/guestfs.pod:2175
4635 "The normal transitions are (1) CONFIG (when the handle is created, but there "
4636 "is no child process), (2) LAUNCHING (when the child process is booting up), "
4637 "(3) alternating between READY and BUSY as commands are issued to, and "
4638 "carried out by, the child process."
4643 #: ../src/guestfs.pod:2180
4645 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
4646 "asynchronously at any time (eg. due to some internal error), and that causes "
4647 "the state to transition back to CONFIG."
4652 #: ../src/guestfs.pod:2184
4654 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
4655 "issued when in the CONFIG state."
4660 #: ../src/guestfs.pod:2187
4662 "The API offers one call that goes from CONFIG through LAUNCHING to READY. "
4663 "L</guestfs_launch> blocks until the child process is READY to accept "
4664 "commands (or until some failure or timeout). L</guestfs_launch> internally "
4665 "moves the state from CONFIG to LAUNCHING while it is running."
4670 #: ../src/guestfs.pod:2193
4672 "API actions such as L</guestfs_mount> can only be issued when in the READY "
4673 "state. These API calls block waiting for the command to be carried out (ie. "
4674 "the state to transition to BUSY and then back to READY). There are no non-"
4675 "blocking versions, and no way to issue more than one command per handle at "
4681 #: ../src/guestfs.pod:2199
4683 "Finally, the child process sends asynchronous messages back to the main "
4684 "program, such as kernel log messages. You can register a callback to "
4685 "receive these messages."
4690 #: ../src/guestfs.pod:2203
4696 #: ../src/guestfs.pod:2205
4697 msgid "COMMUNICATION PROTOCOL"
4702 #: ../src/guestfs.pod:2207
4704 "Don't rely on using this protocol directly. This section documents how it "
4705 "currently works, but it may change at any time."
4710 #: ../src/guestfs.pod:2210
4712 "The protocol used to talk between the library and the daemon running inside "
4713 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
4714 "1014, RFC 1832, RFC 4506)."
4719 #: ../src/guestfs.pod:2214
4721 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
4722 "this file is automatically generated)."
4727 #: ../src/guestfs.pod:2217
4729 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
4730 "and C<FileOut> parameters, which are handled with very simple request/reply "
4731 "messages. Then there are functions that have any C<FileIn> or C<FileOut> "
4732 "parameters, which use the same request and reply messages, but they may also "
4733 "be followed by files sent using a chunked encoding."
4738 #: ../src/guestfs.pod:2224
4739 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4744 #: ../src/guestfs.pod:2226
4745 msgid "For ordinary functions, the request message is:"
4750 #: ../src/guestfs.pod:2228
4753 " total length (header + arguments,\n"
4754 " but not including the length word itself)\n"
4755 " struct guestfs_message_header (encoded as XDR)\n"
4756 " struct guestfs_<foo>_args (encoded as XDR)\n"
4762 #: ../src/guestfs.pod:2233
4764 "The total length field allows the daemon to allocate a fixed size buffer "
4765 "into which it slurps the rest of the message. As a result, the total length "
4766 "is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
4767 "effective size of any request is limited to somewhere under this size."
4772 #: ../src/guestfs.pod:2239
4774 "Note also that many functions don't take any arguments, in which case the "
4775 "C<guestfs_I<foo>_args> is completely omitted."
4780 #: ../src/guestfs.pod:2242
4782 "The header contains the procedure number (C<guestfs_proc>) which is how the "
4783 "receiver knows what type of args structure to expect, or none at all."
4788 #: ../src/guestfs.pod:2246
4790 "For functions that take optional arguments, the optional arguments are "
4791 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
4792 "arguments. A bitmask in the header indicates which optional arguments are "
4793 "meaningful. The bitmask is also checked to see if it contains bits set "
4794 "which the daemon does not know about (eg. if more optional arguments were "
4795 "added in a later version of the library), and this causes the call to be "
4801 #: ../src/guestfs.pod:2254
4802 msgid "The reply message for ordinary functions is:"
4807 #: ../src/guestfs.pod:2256
4810 " total length (header + ret,\n"
4811 " but not including the length word itself)\n"
4812 " struct guestfs_message_header (encoded as XDR)\n"
4813 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4819 #: ../src/guestfs.pod:2261
4821 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
4822 "functions that return no formal return values."
4827 #: ../src/guestfs.pod:2264
4829 "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
4834 #: ../src/guestfs.pod:2267
4836 "In the case of an error, a flag is set in the header, and the reply message "
4837 "is slightly changed:"
4842 #: ../src/guestfs.pod:2270
4845 " total length (header + error,\n"
4846 " but not including the length word itself)\n"
4847 " struct guestfs_message_header (encoded as XDR)\n"
4848 " struct guestfs_message_error (encoded as XDR)\n"
4854 #: ../src/guestfs.pod:2275
4856 "The C<guestfs_message_error> structure contains the error message as a "
4862 #: ../src/guestfs.pod:2278
4863 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4868 #: ../src/guestfs.pod:2280
4870 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest. "
4871 "The normal request message is sent (see above). However this is followed by "
4872 "a sequence of file chunks."
4877 #: ../src/guestfs.pod:2284
4880 " total length (header + arguments,\n"
4881 " but not including the length word itself,\n"
4882 " and not including the chunks)\n"
4883 " struct guestfs_message_header (encoded as XDR)\n"
4884 " struct guestfs_<foo>_args (encoded as XDR)\n"
4885 " sequence of chunks for FileIn param #0\n"
4886 " sequence of chunks for FileIn param #1 etc.\n"
4892 #: ../src/guestfs.pod:2292
4893 msgid "The \"sequence of chunks\" is:"
4898 #: ../src/guestfs.pod:2294
4901 " length of chunk (not including length word itself)\n"
4902 " struct guestfs_chunk (encoded as XDR)\n"
4903 " length of chunk\n"
4904 " struct guestfs_chunk (encoded as XDR)\n"
4906 " length of chunk\n"
4907 " struct guestfs_chunk (with data.data_len == 0)\n"
4913 #: ../src/guestfs.pod:2302
4915 "The final chunk has the C<data_len> field set to zero. Additionally a flag "
4916 "is set in the final chunk to indicate either successful completion or early "
4922 #: ../src/guestfs.pod:2306
4924 "At time of writing there are no functions that have more than one FileIn "
4925 "parameter. However this is (theoretically) supported, by sending the "
4926 "sequence of chunks for each FileIn parameter one after another (from left to "
4932 #: ../src/guestfs.pod:2311
4934 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
4935 "transfer. The library does this by sending a chunk with a special flag set "
4936 "to indicate cancellation. When the daemon sees this, it cancels the whole "
4937 "RPC, does I<not> send any reply, and goes back to reading the next request."
4942 #: ../src/guestfs.pod:2317
4944 "The daemon may also cancel. It does this by writing a special word "
4945 "C<GUESTFS_CANCEL_FLAG> to the socket. The library listens for this during "
4946 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
4947 "cancel chunk). The special word is chosen so that even if cancellation "
4948 "happens right at the end of the transfer (after the library has finished "
4949 "writing and has started listening for the reply), the \"spurious\" cancel "
4950 "flag will not be confused with the reply message."
4955 #: ../src/guestfs.pod:2326
4957 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
4958 "limit), and also files where the size is not known in advance (eg. from "
4959 "pipes or sockets). However the chunks are rather small "
4960 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
4961 "to keep much in memory."
4966 #: ../src/guestfs.pod:2332
4967 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4972 #: ../src/guestfs.pod:2334
4974 "The protocol for FileOut parameters is exactly the same as for FileIn "
4975 "parameters, but with the roles of daemon and library reversed."
4980 #: ../src/guestfs.pod:2337
4983 " total length (header + ret,\n"
4984 " but not including the length word itself,\n"
4985 " and not including the chunks)\n"
4986 " struct guestfs_message_header (encoded as XDR)\n"
4987 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4988 " sequence of chunks for FileOut param #0\n"
4989 " sequence of chunks for FileOut param #1 etc.\n"
4995 #: ../src/guestfs.pod:2345
4996 msgid "INITIAL MESSAGE"
5001 #: ../src/guestfs.pod:2347
5003 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
5004 "which indicates that the guest and daemon is alive. This is what L</"
5005 "guestfs_launch> waits for."
5010 #: ../src/guestfs.pod:2351
5011 msgid "PROGRESS NOTIFICATION MESSAGES"
5016 #: ../src/guestfs.pod:2353
5018 "The daemon may send progress notification messages at any time. These are "
5019 "distinguished by the normal length word being replaced by "
5020 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
5024 #: ../src/guestfs.pod:2357
5026 "The library turns them into progress callbacks (see L</"
5027 "GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards them "
5033 #: ../src/guestfs.pod:2361
5035 "The daemon self-limits the frequency of progress messages it sends (see "
5036 "C<daemon/proto.c:notify_progress>). Not all calls generate progress "
5042 #: ../src/guestfs.pod:2365
5043 msgid "LIBGUESTFS VERSION NUMBERS"
5048 #: ../src/guestfs.pod:2367
5050 "Since April 2010, libguestfs has started to make separate development and "
5051 "stable releases, along with corresponding branches in our git repository. "
5052 "These separate releases can be identified by version number:"
5057 #: ../src/guestfs.pod:2372
5060 " even numbers for stable: 1.2.x, 1.4.x, ...\n"
5061 " .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
5067 " | `-------- sub-version\n"
5069 " `------ always '1' because we don't change the ABI\n"
5075 #: ../src/guestfs.pod:2383
5076 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
5081 #: ../src/guestfs.pod:2385
5083 "As time passes we cherry pick fixes from the development branch and backport "
5084 "those into the stable branch, the effect being that the stable branch should "
5085 "get more stable and less buggy over time. So the stable releases are ideal "
5086 "for people who don't need new features but would just like the software to "
5092 #: ../src/guestfs.pod:2391
5093 msgid "Our criteria for backporting changes are:"
5098 #: ../src/guestfs.pod:2397
5100 "Documentation changes which don't affect any code are backported unless the "
5101 "documentation refers to a future feature which is not in stable."
5106 #: ../src/guestfs.pod:2403
5108 "Bug fixes which are not controversial, fix obvious problems, and have been "
5109 "well tested are backported."
5114 #: ../src/guestfs.pod:2408
5116 "Simple rearrangements of code which shouldn't affect how it works get "
5117 "backported. This is so that the code in the two branches doesn't get too "
5118 "far out of step, allowing us to backport future fixes more easily."
5123 #: ../src/guestfs.pod:2414
5125 "We I<don't> backport new features, new APIs, new tools etc, except in one "
5126 "exceptional case: the new feature is required in order to implement an "
5127 "important bug fix."
5132 #: ../src/guestfs.pod:2420
5134 "A new stable branch starts when we think the new features in development are "
5135 "substantial and compelling enough over the current stable branch to warrant "
5136 "it. When that happens we create new stable and development versions 1.N.0 "
5137 "and 1.(N+1).0 [N is even]. The new dot-oh release won't necessarily be so "
5138 "stable at this point, but by backporting fixes from development, that branch "
5139 "will stabilize over time."
5143 #: ../src/guestfs.pod:2428
5144 msgid "EXTENDING LIBGUESTFS"
5148 #: ../src/guestfs.pod:2430
5149 msgid "ADDING A NEW API ACTION"
5153 #: ../src/guestfs.pod:2432
5155 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
5156 "documentation) are generated, and this makes it easy to extend the "
5161 #: ../src/guestfs.pod:2436
5162 msgid "To add a new API action there are two changes:"
5166 #: ../src/guestfs.pod:2442
5168 "You need to add a description of the call (name, parameters, return type, "
5169 "tests, documentation) to C<generator/generator_actions.ml>."
5173 #: ../src/guestfs.pod:2445
5175 "There are two sorts of API action, depending on whether the call goes "
5176 "through to the daemon in the appliance, or is serviced entirely by the "
5177 "library (see L</ARCHITECTURE> above). L</guestfs_sync> is an example of the "
5178 "former, since the sync is done in the appliance. L</guestfs_set_trace> is "
5179 "an example of the latter, since a trace flag is maintained in the handle and "
5180 "all tracing is done on the library side."
5184 #: ../src/guestfs.pod:2453
5186 "Most new actions are of the first type, and get added to the "
5187 "C<daemon_functions> list. Each function has a unique procedure number used "
5188 "in the RPC protocol which is assigned to that action when we publish "
5189 "libguestfs and cannot be reused. Take the latest procedure number and "
5194 #: ../src/guestfs.pod:2459
5196 "For library-only actions of the second type, add to the "
5197 "C<non_daemon_functions> list. Since these functions are serviced by the "
5198 "library and do not travel over the RPC mechanism to the daemon, these "
5199 "functions do not need a procedure number, and so the procedure number is set "
5204 #: ../src/guestfs.pod:2467
5205 msgid "Implement the action (in C):"
5209 #: ../src/guestfs.pod:2469
5211 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
5212 "C<daemon/> directory."
5216 #: ../src/guestfs.pod:2472
5218 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
5219 "(note: double underscore) in the C<src/> directory."
5223 #: ../src/guestfs.pod:2475
5224 msgid "In either case, use another function as an example of what to do."
5228 #: ../src/guestfs.pod:2479
5229 msgid "After making these changes, use C<make> to compile."
5233 #: ../src/guestfs.pod:2481
5235 "Note that you don't need to implement the RPC, language bindings, manual "
5236 "pages or anything else. It's all automatically generated from the OCaml "
5241 #: ../src/guestfs.pod:2485
5242 msgid "ADDING TESTS FOR AN API ACTION"
5246 #: ../src/guestfs.pod:2487
5248 "You can supply zero or as many tests as you want per API call. The tests "
5249 "can either be added as part of the API description (C<generator/"
5250 "generator_actions.ml>), or in some rarer cases you may want to drop a script "
5251 "into C<regressions/>. Note that adding a script to C<regressions/> is "
5252 "slower, so if possible use the first method."
5256 #: ../src/guestfs.pod:2493
5258 "The following describes the test environment used when you add an API test "
5259 "in C<generator_actions.ml>."
5263 #: ../src/guestfs.pod:2496
5264 msgid "The test environment has 4 block devices:"
5268 #: ../src/guestfs.pod:2500
5269 msgid "C</dev/sda> 500MB"
5273 #: ../src/guestfs.pod:2502
5274 msgid "General block device for testing."
5278 #: ../src/guestfs.pod:2504
5279 msgid "C</dev/sdb> 50MB"
5283 #: ../src/guestfs.pod:2506
5285 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
5290 #: ../src/guestfs.pod:2509
5291 msgid "C</dev/sdc> 10MB"
5295 #: ../src/guestfs.pod:2511
5296 msgid "Used in a few tests where two block devices are needed."
5300 #: ../src/guestfs.pod:2513
5305 #: ../src/guestfs.pod:2515
5306 msgid "ISO with fixed content (see C<images/test.iso>)."
5310 #: ../src/guestfs.pod:2519
5312 "To be able to run the tests in a reasonable amount of time, the libguestfs "
5313 "appliance and block devices are reused between tests. So don't try testing "
5314 "L</guestfs_kill_subprocess> :-x"
5318 #: ../src/guestfs.pod:2523
5320 "Each test starts with an initial scenario, selected using one of the "
5321 "C<Init*> expressions, described in C<generator/generator_types.ml>. These "
5322 "initialize the disks mentioned above in a particular way as documented in "
5323 "C<generator_types.ml>. You should not assume anything about the previous "
5324 "contents of other disks that are not initialized."
5328 #: ../src/guestfs.pod:2529
5330 "You can add a prerequisite clause to any individual test. This is a run-"
5331 "time check, which, if it fails, causes the test to be skipped. Useful if "
5332 "testing a command which might not work on all variations of libguestfs "
5333 "builds. A test that has prerequisite of C<Always> means to run "
5338 #: ../src/guestfs.pod:2535
5340 "In addition, packagers can skip individual tests by setting environment "
5341 "variables before running C<make check>."
5345 #: ../src/guestfs.pod:2538
5348 " SKIP_TEST_<CMD>_<NUM>=1\n"
5353 #: ../src/guestfs.pod:2540
5354 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
5358 #: ../src/guestfs.pod:2542
5363 #: ../src/guestfs.pod:2544
5366 " SKIP_TEST_<CMD>=1\n"
5371 #: ../src/guestfs.pod:2546
5372 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
5376 #: ../src/guestfs.pod:2548
5377 msgid "Packagers can run only certain tests by setting for example:"
5381 #: ../src/guestfs.pod:2550
5384 " TEST_ONLY=\"vfs_type zerofree\"\n"
5389 #: ../src/guestfs.pod:2552
5391 "See C<capitests/tests.c> for more details of how these environment variables "
5396 #: ../src/guestfs.pod:2555
5397 msgid "DEBUGGING NEW API ACTIONS"
5401 #: ../src/guestfs.pod:2557
5402 msgid "Test new actions work before submitting them."
5406 #: ../src/guestfs.pod:2559
5407 msgid "You can use guestfish to try out new commands."
5411 #: ../src/guestfs.pod:2561
5413 "Debugging the daemon is a problem because it runs inside a minimal "
5414 "environment. However you can fprintf messages in the daemon to stderr, and "
5415 "they will show up if you use C<guestfish -v>."
5419 #: ../src/guestfs.pod:2565
5420 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
5424 #: ../src/guestfs.pod:2567
5426 "Our C source code generally adheres to some basic code-formatting "
5427 "conventions. The existing code base is not totally consistent on this "
5428 "front, but we do prefer that contributed code be formatted similarly. In "
5429 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
5430 "indentation level, and other than that, follow the K&R style."
5434 #: ../src/guestfs.pod:2573
5436 "If you use Emacs, add the following to one of one of your start-up files (e."
5437 "g., ~/.emacs), to help ensure that you get indentation right:"
5441 #: ../src/guestfs.pod:2576
5444 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
5445 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
5446 " (add-hook 'find-file-hook\n"
5447 " '(lambda () (if (and buffer-file-name\n"
5448 " (string-match \"/libguestfs\\\\>\"\n"
5449 " (buffer-file-name))\n"
5450 " (not (string-equal mode-name \"Change Log\"))\n"
5451 " (not (string-equal mode-name \"Makefile\")))\n"
5452 " (setq indent-tabs-mode nil))))\n"
5457 #: ../src/guestfs.pod:2586
5460 " ;;; When editing C sources in libguestfs, use this style.\n"
5461 " (defun libguestfs-c-mode ()\n"
5462 " \"C mode with adjusted defaults for use with libguestfs.\"\n"
5464 " (c-set-style \"K&R\")\n"
5465 " (setq c-indent-level 2)\n"
5466 " (setq c-basic-offset 2))\n"
5467 " (add-hook 'c-mode-hook\n"
5468 " '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
5469 " (buffer-file-name))\n"
5470 " (libguestfs-c-mode))))\n"
5475 #: ../src/guestfs.pod:2598
5476 msgid "Enable warnings when compiling (and fix any problems this finds):"
5480 #: ../src/guestfs.pod:2601
5483 " ./configure --enable-gcc-warnings\n"
5488 #: ../src/guestfs.pod:2603
5489 msgid "Useful targets are:"
5493 #: ../src/guestfs.pod:2605
5496 " make syntax-check # checks the syntax of the C code\n"
5497 " make check # runs the test suite\n"
5502 #: ../src/guestfs.pod:2608
5503 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
5507 #: ../src/guestfs.pod:2610
5509 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
5510 "which are used to do shell quoting."
5514 #: ../src/guestfs.pod:2615
5519 #: ../src/guestfs.pod:2617
5521 "Simple shell quoted string. Any spaces or other shell characters are "
5526 #: ../src/guestfs.pod:2620
5531 #: ../src/guestfs.pod:2622
5533 "Same as C<%Q> except the string is treated as a path which is prefixed by "
5539 #: ../src/guestfs.pod:2627 ../fish/guestfish.pod:240 ../fish/guestfish.pod:613
5540 msgid "For example:"
5544 #: ../src/guestfs.pod:2629
5547 " asprintf (&cmd, \"cat %R\", path);\n"
5552 #: ../src/guestfs.pod:2631
5553 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
5557 #: ../src/guestfs.pod:2633
5559 "I<Note:> Do I<not> use these when you are passing parameters to the C<command"
5560 "{,r,v,rv}()> functions. These parameters do NOT need to be quoted because "
5561 "they are not passed via the shell (instead, straight to exec). You probably "
5562 "want to use the C<sysroot_path()> function however."
5566 #: ../src/guestfs.pod:2639
5567 msgid "SUBMITTING YOUR NEW API ACTIONS"
5571 #: ../src/guestfs.pod:2641
5573 "Submit patches to the mailing list: L<http://www.redhat.com/mailman/listinfo/"
5574 "libguestfs> and CC to L<rjones@redhat.com>."
5578 #: ../src/guestfs.pod:2645
5579 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5583 #: ../src/guestfs.pod:2647
5584 msgid "We support i18n (gettext anyhow) in the library."
5588 #: ../src/guestfs.pod:2649
5590 "However many messages come from the daemon, and we don't translate those at "
5591 "the moment. One reason is that the appliance generally has all locale files "
5592 "removed from it, because they take up a lot of space. So we'd have to readd "
5593 "some of those, as well as copying our PO files into the appliance."
5597 #: ../src/guestfs.pod:2655
5599 "Debugging messages are never translated, since they are intended for the "
5604 #: ../src/guestfs.pod:2658
5605 msgid "SOURCE CODE SUBDIRECTORIES"
5609 #: ../src/guestfs.pod:2662 ../src/guestfs-actions.pod:5806
5610 #: ../fish/guestfish-actions.pod:3900
5611 msgid "C<appliance>"
5615 #: ../src/guestfs.pod:2664
5616 msgid "The libguestfs appliance, build scripts and so on."
5620 #: ../src/guestfs.pod:2666
5621 msgid "C<capitests>"
5625 #: ../src/guestfs.pod:2668
5626 msgid "Automated tests of the C API."
5630 #: ../src/guestfs.pod:2670
5635 #: ../src/guestfs.pod:2672
5637 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
5642 #: ../src/guestfs.pod:2675
5647 #: ../src/guestfs.pod:2677
5648 msgid "Outside contributions, experimental parts."
5652 #: ../src/guestfs.pod:2679
5657 #: ../src/guestfs.pod:2681
5659 "The daemon that runs inside the libguestfs appliance and carries out actions."
5663 #: ../src/guestfs.pod:2684
5668 #: ../src/guestfs.pod:2686
5669 msgid "L<virt-df(1)> command and documentation."
5673 #: ../src/guestfs.pod:2688
5678 #: ../src/guestfs.pod:2690
5679 msgid "C API example code."
5683 #: ../src/guestfs.pod:2692
5688 #: ../src/guestfs.pod:2694
5690 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5691 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
5692 "L<virt-tar-out(1)>."
5696 #: ../src/guestfs.pod:2698
5701 #: ../src/guestfs.pod:2700
5703 "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5707 #: ../src/guestfs.pod:2702
5708 msgid "C<generator>"
5712 #: ../src/guestfs.pod:2704
5714 "The crucially important generator, used to automatically generate large "
5715 "amounts of boilerplate C code for things like RPC and bindings."
5719 #: ../src/guestfs.pod:2707
5724 #: ../src/guestfs.pod:2709
5725 msgid "Files used by the test suite."
5729 #: ../src/guestfs.pod:2711
5730 msgid "Some \"phony\" guest images which we test against."
5734 #: ../src/guestfs.pod:2713
5735 msgid "C<inspector>"
5739 #: ../src/guestfs.pod:2715
5740 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5744 #: ../src/guestfs.pod:2717
5749 #: ../src/guestfs.pod:2719
5750 msgid "Logo used on the website. The fish is called Arthur by the way."
5754 #: ../src/guestfs.pod:2721
5759 #: ../src/guestfs.pod:2723
5760 msgid "M4 macros used by autoconf."
5764 #: ../src/guestfs.pod:2725
5769 #: ../src/guestfs.pod:2727
5770 msgid "Translations of simple gettext strings."
5774 #: ../src/guestfs.pod:2729
5779 #: ../src/guestfs.pod:2731
5781 "The build infrastructure and PO files for translations of manpages and POD "
5782 "files. Eventually this will be combined with the C<po> directory, but that "
5783 "is rather complicated."
5787 #: ../src/guestfs.pod:2735
5788 msgid "C<regressions>"
5792 #: ../src/guestfs.pod:2737
5793 msgid "Regression tests."
5797 #: ../src/guestfs.pod:2739
5802 #: ../src/guestfs.pod:2741
5803 msgid "L<virt-rescue(1)> command and documentation."
5807 #: ../src/guestfs.pod:2743
5812 #: ../src/guestfs.pod:2745
5813 msgid "Source code to the C library."
5817 #: ../src/guestfs.pod:2747
5822 #: ../src/guestfs.pod:2749
5823 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5827 #: ../src/guestfs.pod:2751
5828 msgid "C<test-tool>"
5832 #: ../src/guestfs.pod:2753
5834 "Test tool for end users to test if their qemu/kernel combination will work "
5839 #: ../src/guestfs.pod:2756
5844 #: ../src/guestfs.pod:2758
5849 #: ../src/guestfs.pod:2760
5854 #: ../src/guestfs.pod:2762
5859 #: ../src/guestfs.pod:2764
5864 #: ../src/guestfs.pod:2766
5869 #: ../src/guestfs.pod:2768
5874 #: ../src/guestfs.pod:2770
5879 #: ../src/guestfs.pod:2772
5880 msgid "Language bindings."
5885 #: ../src/guestfs.pod:2776 ../fish/guestfish.pod:1015
5886 #: ../test-tool/libguestfs-test-tool.pod:82 ../tools/virt-edit.pl:476
5887 msgid "ENVIRONMENT VARIABLES"
5892 #: ../src/guestfs.pod:2780 ../fish/guestfish.pod:1041
5893 msgid "LIBGUESTFS_APPEND"
5898 #: ../src/guestfs.pod:2782 ../fish/guestfish.pod:1043
5899 msgid "Pass additional options to the guest kernel."
5904 #: ../src/guestfs.pod:2784 ../fish/guestfish.pod:1045
5905 msgid "LIBGUESTFS_DEBUG"
5910 #: ../src/guestfs.pod:2786
5912 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages. This has the same "
5913 "effect as calling C<guestfs_set_verbose (g, 1)>."
5918 #: ../src/guestfs.pod:2789 ../fish/guestfish.pod:1050
5919 msgid "LIBGUESTFS_MEMSIZE"
5924 #: ../src/guestfs.pod:2791 ../fish/guestfish.pod:1052
5926 "Set the memory allocated to the qemu process, in megabytes. For example:"
5931 #: ../src/guestfs.pod:2794 ../fish/guestfish.pod:1055
5934 " LIBGUESTFS_MEMSIZE=700\n"
5940 #: ../src/guestfs.pod:2796 ../fish/guestfish.pod:1057
5941 msgid "LIBGUESTFS_PATH"
5945 #: ../src/guestfs.pod:2798
5947 "Set the path that libguestfs uses to search for a supermin appliance. See "
5948 "the discussion of paths in section L</PATH> above."
5953 #: ../src/guestfs.pod:2801 ../fish/guestfish.pod:1062
5954 msgid "LIBGUESTFS_QEMU"
5959 #: ../src/guestfs.pod:2803 ../fish/guestfish.pod:1064
5961 "Set the default qemu binary that libguestfs uses. If not set, then the qemu "
5962 "which was found at compile time by the configure script is used."
5967 #: ../src/guestfs.pod:2807
5968 msgid "See also L</QEMU WRAPPERS> above."
5973 #: ../src/guestfs.pod:2809 ../fish/guestfish.pod:1068
5974 msgid "LIBGUESTFS_TRACE"
5979 #: ../src/guestfs.pod:2811
5981 "Set C<LIBGUESTFS_TRACE=1> to enable command traces. This has the same "
5982 "effect as calling C<guestfs_set_trace (g, 1)>."
5987 #: ../src/guestfs.pod:2814 ../fish/guestfish.pod:1077
5992 #: ../src/guestfs.pod:2816 ../fish/guestfish.pod:1079
5994 "Location of temporary directory, defaults to C</tmp> except for the cached "
5995 "supermin appliance which defaults to C</var/tmp>."
5999 #: ../src/guestfs.pod:2819 ../fish/guestfish.pod:1082
6001 "If libguestfs was compiled to use the supermin appliance then the real "
6002 "appliance is cached in this directory, shared between all handles belonging "
6003 "to the same EUID. You can use C<$TMPDIR> to configure another directory to "
6004 "use in case C</var/tmp> is not large enough."
6009 #: ../src/guestfs.pod:2827 ../fish/guestfish.pod:1149
6010 #: ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:267
6011 #: ../tools/virt-edit.pl:496 ../tools/virt-win-reg.pl:572
6012 #: ../tools/virt-list-filesystems.pl:189 ../tools/virt-tar.pl:286
6013 #: ../tools/virt-make-fs.pl:539 ../tools/virt-list-partitions.pl:257
6018 #: ../src/guestfs.pod:2829
6020 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, L<guestfs-"
6021 "ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, L<virt-copy-in"
6022 "(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems"
6023 "(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-"
6024 "partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-"
6025 "tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<qemu(1)"
6026 ">, L<febootstrap(1)>, L<hivex(3)>, L<http://libguestfs.org/>."
6031 #: ../src/guestfs.pod:2856
6033 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, L<lvm"
6034 "(8)>, L<disktype(1)>."
6039 #: ../src/guestfs.pod:2863 ../tools/virt-win-reg.pl:587
6040 #: ../tools/virt-make-fs.pl:553
6046 #: ../src/guestfs.pod:2865
6047 msgid "To get a list of bugs against libguestfs use this link:"
6052 #: ../src/guestfs.pod:2867
6054 "L<https://bugzilla.redhat.com/buglist.cgi?"
6055 "component=libguestfs&product=Virtualization+Tools>"
6060 #: ../src/guestfs.pod:2869
6061 msgid "To report a new bug against libguestfs use this link:"
6066 #: ../src/guestfs.pod:2871
6068 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
6069 "component=libguestfs&product=Virtualization+Tools>"
6074 #: ../src/guestfs.pod:2873
6075 msgid "When reporting a bug, please check:"
6080 #: ../src/guestfs.pod:2879
6081 msgid "That the bug hasn't been reported already."
6086 #: ../src/guestfs.pod:2883
6087 msgid "That you are testing a recent version."
6092 #: ../src/guestfs.pod:2887
6093 msgid "Describe the bug accurately, and give a way to reproduce it."
6098 #: ../src/guestfs.pod:2891
6100 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
6106 #: ../src/guestfs.pod:2896 ../fish/guestfish.pod:1172
6107 #: ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:278
6113 #: ../src/guestfs.pod:2898 ../fish/guestfish.pod:1174
6114 #: ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:280
6115 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
6120 #: ../src/guestfs.pod:2900 ../fish/guestfish.pod:1176
6121 #: ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:282
6122 #: ../tools/virt-edit.pl:514 ../tools/virt-win-reg.pl:602
6123 #: ../tools/virt-list-filesystems.pl:206 ../tools/virt-tar.pl:305
6124 #: ../tools/virt-make-fs.pl:568 ../tools/virt-list-partitions.pl:273
6129 #: ../src/guestfs.pod:2902 ../fish/guestfish.pod:1178
6130 #: ../test-tool/libguestfs-test-tool.pod:99
6131 msgid "Copyright (C) 2009-2011 Red Hat Inc. L<http://libguestfs.org/>"
6136 #: ../src/guestfs.pod:2905
6138 "This library is free software; you can redistribute it and/or modify it "
6139 "under the terms of the GNU Lesser General Public License as published by the "
6140 "Free Software Foundation; either version 2 of the License, or (at your "
6141 "option) any later version."
6146 #: ../src/guestfs.pod:2910
6148 "This library is distributed in the hope that it will be useful, but WITHOUT "
6149 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
6150 "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License "
6156 #: ../src/guestfs.pod:2915
6158 "You should have received a copy of the GNU Lesser General Public License "
6159 "along with this library; if not, write to the Free Software Foundation, "
6160 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
6165 #: ../src/guestfs-actions.pod:1
6166 msgid "guestfs_add_cdrom"
6171 #: ../src/guestfs-actions.pod:3
6175 " guestfs_add_cdrom (guestfs_h *g,\n"
6176 " const char *filename);\n"
6182 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
6183 msgid "This function adds a virtual CD-ROM disk image to the guest."
6188 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
6189 msgid "This is equivalent to the qemu parameter C<-cdrom filename>."
6194 #: ../src/guestfs-actions.pod:17
6196 "This call checks for the existence of C<filename>. This stops you from "
6197 "specifying other types of drive which are supported by qemu such as C<nbd:> "
6198 "and C<http:> URLs. To specify those, use the general C<guestfs_config> call "
6204 #: ../src/guestfs-actions.pod:24
6206 "If you just want to add an ISO file (often you use this as an efficient way "
6207 "to transfer large files into the guest), then you should probably use "
6208 "C<guestfs_add_drive_ro> instead."
6213 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:134
6214 #: ../src/guestfs-actions.pod:195 ../src/guestfs-actions.pod:232
6215 #: ../src/guestfs-actions.pod:246 ../src/guestfs-actions.pod:267
6216 #: ../src/guestfs-actions.pod:287 ../src/guestfs-actions.pod:301
6217 #: ../src/guestfs-actions.pod:416 ../src/guestfs-actions.pod:436
6218 #: ../src/guestfs-actions.pod:450 ../src/guestfs-actions.pod:495
6219 #: ../src/guestfs-actions.pod:523 ../src/guestfs-actions.pod:541
6220 #: ../src/guestfs-actions.pod:608 ../src/guestfs-actions.pod:641
6221 #: ../src/guestfs-actions.pod:655 ../src/guestfs-actions.pod:670
6222 #: ../src/guestfs-actions.pod:769 ../src/guestfs-actions.pod:787
6223 #: ../src/guestfs-actions.pod:801 ../src/guestfs-actions.pod:815
6224 #: ../src/guestfs-actions.pod:976 ../src/guestfs-actions.pod:996
6225 #: ../src/guestfs-actions.pod:1014 ../src/guestfs-actions.pod:1098
6226 #: ../src/guestfs-actions.pod:1116 ../src/guestfs-actions.pod:1135
6227 #: ../src/guestfs-actions.pod:1149 ../src/guestfs-actions.pod:1169
6228 #: ../src/guestfs-actions.pod:1239 ../src/guestfs-actions.pod:1270
6229 #: ../src/guestfs-actions.pod:1295 ../src/guestfs-actions.pod:1337
6230 #: ../src/guestfs-actions.pod:1443 ../src/guestfs-actions.pod:1477
6231 #: ../src/guestfs-actions.pod:1695 ../src/guestfs-actions.pod:1717
6232 #: ../src/guestfs-actions.pod:1804 ../src/guestfs-actions.pod:2266
6233 #: ../src/guestfs-actions.pod:2410 ../src/guestfs-actions.pod:2471
6234 #: ../src/guestfs-actions.pod:2506 ../src/guestfs-actions.pod:3451
6235 #: ../src/guestfs-actions.pod:3466 ../src/guestfs-actions.pod:3491
6236 #: ../src/guestfs-actions.pod:3646 ../src/guestfs-actions.pod:3660
6237 #: ../src/guestfs-actions.pod:3673 ../src/guestfs-actions.pod:3687
6238 #: ../src/guestfs-actions.pod:3702 ../src/guestfs-actions.pod:3738
6239 #: ../src/guestfs-actions.pod:3810 ../src/guestfs-actions.pod:3830
6240 #: ../src/guestfs-actions.pod:3847 ../src/guestfs-actions.pod:3870
6241 #: ../src/guestfs-actions.pod:3893 ../src/guestfs-actions.pod:3925
6242 #: ../src/guestfs-actions.pod:3944 ../src/guestfs-actions.pod:3963
6243 #: ../src/guestfs-actions.pod:3998 ../src/guestfs-actions.pod:4010
6244 #: ../src/guestfs-actions.pod:4046 ../src/guestfs-actions.pod:4062
6245 #: ../src/guestfs-actions.pod:4075 ../src/guestfs-actions.pod:4090
6246 #: ../src/guestfs-actions.pod:4107 ../src/guestfs-actions.pod:4200
6247 #: ../src/guestfs-actions.pod:4220 ../src/guestfs-actions.pod:4233
6248 #: ../src/guestfs-actions.pod:4284 ../src/guestfs-actions.pod:4302
6249 #: ../src/guestfs-actions.pod:4320 ../src/guestfs-actions.pod:4336
6250 #: ../src/guestfs-actions.pod:4350 ../src/guestfs-actions.pod:4364
6251 #: ../src/guestfs-actions.pod:4381 ../src/guestfs-actions.pod:4396
6252 #: ../src/guestfs-actions.pod:4416 ../src/guestfs-actions.pod:4474
6253 #: ../src/guestfs-actions.pod:4547 ../src/guestfs-actions.pod:4578
6254 #: ../src/guestfs-actions.pod:4597 ../src/guestfs-actions.pod:4616
6255 #: ../src/guestfs-actions.pod:4628 ../src/guestfs-actions.pod:4645
6256 #: ../src/guestfs-actions.pod:4658 ../src/guestfs-actions.pod:4673
6257 #: ../src/guestfs-actions.pod:4688 ../src/guestfs-actions.pod:4723
6258 #: ../src/guestfs-actions.pod:4738 ../src/guestfs-actions.pod:4758
6259 #: ../src/guestfs-actions.pod:4772 ../src/guestfs-actions.pod:4789
6260 #: ../src/guestfs-actions.pod:4838 ../src/guestfs-actions.pod:4875
6261 #: ../src/guestfs-actions.pod:4889 ../src/guestfs-actions.pod:4917
6262 #: ../src/guestfs-actions.pod:4934 ../src/guestfs-actions.pod:4952
6263 #: ../src/guestfs-actions.pod:5086 ../src/guestfs-actions.pod:5143
6264 #: ../src/guestfs-actions.pod:5165 ../src/guestfs-actions.pod:5183
6265 #: ../src/guestfs-actions.pod:5215 ../src/guestfs-actions.pod:5281
6266 #: ../src/guestfs-actions.pod:5298 ../src/guestfs-actions.pod:5311
6267 #: ../src/guestfs-actions.pod:5325 ../src/guestfs-actions.pod:5614
6268 #: ../src/guestfs-actions.pod:5633 ../src/guestfs-actions.pod:5652
6269 #: ../src/guestfs-actions.pod:5664 ../src/guestfs-actions.pod:5676
6270 #: ../src/guestfs-actions.pod:5690 ../src/guestfs-actions.pod:5702
6271 #: ../src/guestfs-actions.pod:5716 ../src/guestfs-actions.pod:5732
6272 #: ../src/guestfs-actions.pod:5753 ../src/guestfs-actions.pod:5772
6273 #: ../src/guestfs-actions.pod:5791 ../src/guestfs-actions.pod:5821
6274 #: ../src/guestfs-actions.pod:5837 ../src/guestfs-actions.pod:5860
6275 #: ../src/guestfs-actions.pod:5878 ../src/guestfs-actions.pod:5897
6276 #: ../src/guestfs-actions.pod:5918 ../src/guestfs-actions.pod:5937
6277 #: ../src/guestfs-actions.pod:5954 ../src/guestfs-actions.pod:5982
6278 #: ../src/guestfs-actions.pod:6006 ../src/guestfs-actions.pod:6025
6279 #: ../src/guestfs-actions.pod:6049 ../src/guestfs-actions.pod:6068
6280 #: ../src/guestfs-actions.pod:6083 ../src/guestfs-actions.pod:6102
6281 #: ../src/guestfs-actions.pod:6139 ../src/guestfs-actions.pod:6162
6282 #: ../src/guestfs-actions.pod:6188 ../src/guestfs-actions.pod:6296
6283 #: ../src/guestfs-actions.pod:6417 ../src/guestfs-actions.pod:6429
6284 #: ../src/guestfs-actions.pod:6442 ../src/guestfs-actions.pod:6455
6285 #: ../src/guestfs-actions.pod:6477 ../src/guestfs-actions.pod:6490
6286 #: ../src/guestfs-actions.pod:6503 ../src/guestfs-actions.pod:6516
6287 #: ../src/guestfs-actions.pod:6531 ../src/guestfs-actions.pod:6590
6288 #: ../src/guestfs-actions.pod:6607 ../src/guestfs-actions.pod:6623
6289 #: ../src/guestfs-actions.pod:6639 ../src/guestfs-actions.pod:6656
6290 #: ../src/guestfs-actions.pod:6669 ../src/guestfs-actions.pod:6689
6291 #: ../src/guestfs-actions.pod:6725 ../src/guestfs-actions.pod:6739
6292 #: ../src/guestfs-actions.pod:6780 ../src/guestfs-actions.pod:6793
6293 #: ../src/guestfs-actions.pod:6811 ../src/guestfs-actions.pod:6845
6294 #: ../src/guestfs-actions.pod:6881 ../src/guestfs-actions.pod:7000
6295 #: ../src/guestfs-actions.pod:7018 ../src/guestfs-actions.pod:7032
6296 #: ../src/guestfs-actions.pod:7087 ../src/guestfs-actions.pod:7100
6297 #: ../src/guestfs-actions.pod:7145 ../src/guestfs-actions.pod:7178
6298 #: ../src/guestfs-actions.pod:7232 ../src/guestfs-actions.pod:7258
6299 #: ../src/guestfs-actions.pod:7324 ../src/guestfs-actions.pod:7343
6300 #: ../src/guestfs-actions.pod:7372
6301 msgid "This function returns 0 on success or -1 on error."
6306 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:248
6307 #: ../src/guestfs-actions.pod:269 ../fish/guestfish-actions.pod:28
6308 #: ../fish/guestfish-actions.pod:158 ../fish/guestfish-actions.pod:172
6310 "This function is deprecated. In new code, use the C<add_drive_opts> call "
6316 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:251
6317 #: ../src/guestfs-actions.pod:272 ../src/guestfs-actions.pod:1448
6318 #: ../src/guestfs-actions.pod:1944 ../src/guestfs-actions.pod:1965
6319 #: ../src/guestfs-actions.pod:4421 ../src/guestfs-actions.pod:7266
6320 #: ../src/guestfs-actions.pod:7435 ../fish/guestfish-actions.pod:31
6321 #: ../fish/guestfish-actions.pod:161 ../fish/guestfish-actions.pod:175
6322 #: ../fish/guestfish-actions.pod:956 ../fish/guestfish-actions.pod:1319
6323 #: ../fish/guestfish-actions.pod:1333 ../fish/guestfish-actions.pod:3000
6324 #: ../fish/guestfish-actions.pod:4858 ../fish/guestfish-actions.pod:4955
6326 "Deprecated functions will not be removed from the API, but the fact that "
6327 "they are deprecated indicates that there are problems with correct use of "
6333 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:136
6334 #: ../src/guestfs-actions.pod:1100 ../src/guestfs-actions.pod:1916
6335 #: ../src/guestfs-actions.pod:2014 ../src/guestfs-actions.pod:2117
6336 #: ../src/guestfs-actions.pod:3453 ../src/guestfs-actions.pod:3473
6337 #: ../src/guestfs-actions.pod:4725 ../src/guestfs-actions.pod:5839
6338 #: ../src/guestfs-actions.pod:5956 ../src/guestfs-actions.pod:6070
6339 #: ../src/guestfs-actions.pod:6533 ../src/guestfs-actions.pod:6658
6340 #: ../src/guestfs-actions.pod:7180
6341 msgid "(Added in 0.3)"
6346 #: ../src/guestfs-actions.pod:41
6347 msgid "guestfs_add_domain"
6352 #: ../src/guestfs-actions.pod:43
6356 " guestfs_add_domain (guestfs_h *g,\n"
6357 " const char *dom,\n"
6364 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:145
6365 #: ../src/guestfs-actions.pod:4435
6367 "You may supply a list of optional arguments to this call. Use zero or more "
6368 "of the following pairs of parameters, and terminate the list with C<-1> on "
6369 "its own. See L</CALLS WITH OPTIONAL ARGUMENTS>."
6373 #: ../src/guestfs-actions.pod:53
6376 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
6377 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
6378 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
6379 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
6385 #: ../src/guestfs-actions.pod:58
6387 "This function adds the disk(s) attached to the named libvirt domain C<dom>. "
6388 "It works by connecting to libvirt, requesting the domain and domain XML from "
6389 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
6395 #: ../src/guestfs-actions.pod:63 ../fish/guestfish-actions.pod:46
6397 "The number of disks added is returned. This operation is atomic: if an "
6398 "error is returned, then no disks are added."
6403 #: ../src/guestfs-actions.pod:66 ../fish/guestfish-actions.pod:49
6405 "This function does some minimal checks to make sure the libvirt domain is "
6406 "not running (unless C<readonly> is true). In a future version we will try "
6407 "to acquire the libvirt lock on each disk."
6412 #: ../src/guestfs-actions.pod:70 ../fish/guestfish-actions.pod:53
6414 "Disks must be accessible locally. This often means that adding disks from a "
6415 "remote libvirt connection (see L<http://libvirt.org/remote.html>) will fail "
6416 "unless those disks are accessible via the same device path locally too."
6420 #: ../src/guestfs-actions.pod:75 ../fish/guestfish-actions.pod:58
6422 "The optional C<libvirturi> parameter sets the libvirt URI (see L<http://"
6423 "libvirt.org/uri.html>). If this is not set then we connect to the default "
6424 "libvirt URI (or one set through an environment variable, see the libvirt "
6425 "documentation for full details)."
6429 #: ../src/guestfs-actions.pod:81 ../fish/guestfish-actions.pod:64
6431 "The optional C<live> flag controls whether this call will try to connect to "
6432 "a running virtual machine C<guestfsd> process if it sees a suitable "
6433 "E<lt>channelE<gt> element in the libvirt XML definition. The default (if "
6434 "the flag is omitted) is never to try. See L<guestfs(3)/ATTACHING TO RUNNING "
6435 "DAEMONS> for more information."
6440 #: ../src/guestfs-actions.pod:88
6442 "The other optional parameters are passed directly through to "
6443 "C<guestfs_add_drive_opts>."
6448 #: ../src/guestfs-actions.pod:91 ../src/guestfs-actions.pod:344
6449 #: ../src/guestfs-actions.pod:509 ../src/guestfs-actions.pod:687
6450 #: ../src/guestfs-actions.pod:718 ../src/guestfs-actions.pod:736
6451 #: ../src/guestfs-actions.pod:755 ../src/guestfs-actions.pod:1315
6452 #: ../src/guestfs-actions.pod:1674 ../src/guestfs-actions.pod:1877
6453 #: ../src/guestfs-actions.pod:1986 ../src/guestfs-actions.pod:2026
6454 #: ../src/guestfs-actions.pod:2081 ../src/guestfs-actions.pod:2104
6455 #: ../src/guestfs-actions.pod:2397 ../src/guestfs-actions.pod:2772
6456 #: ../src/guestfs-actions.pod:2793 ../src/guestfs-actions.pod:4861
6457 #: ../src/guestfs-actions.pod:4989 ../src/guestfs-actions.pod:5395
6458 #: ../src/guestfs-actions.pod:5421 ../src/guestfs-actions.pod:6766
6459 #: ../src/guestfs-actions.pod:7191 ../src/guestfs-actions.pod:7204
6460 #: ../src/guestfs-actions.pod:7217
6461 msgid "On error this function returns -1."
6466 #: ../src/guestfs-actions.pod:93
6467 msgid "(Added in 1.7.4)"
6472 #: ../src/guestfs-actions.pod:95
6473 msgid "guestfs_add_domain_va"
6478 #: ../src/guestfs-actions.pod:97
6482 " guestfs_add_domain_va (guestfs_h *g,\n"
6483 " const char *dom,\n"
6490 #: ../src/guestfs-actions.pod:102
6491 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
6496 #: ../src/guestfs-actions.pod:104 ../src/guestfs-actions.pod:115
6497 #: ../src/guestfs-actions.pod:208 ../src/guestfs-actions.pod:219
6498 #: ../src/guestfs-actions.pod:4488 ../src/guestfs-actions.pod:4500
6499 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
6504 #: ../src/guestfs-actions.pod:106
6505 msgid "guestfs_add_domain_argv"
6510 #: ../src/guestfs-actions.pod:108
6514 " guestfs_add_domain_argv (guestfs_h *g,\n"
6515 " const char *dom,\n"
6516 " const struct guestfs_add_domain_argv *optargs);\n"
6522 #: ../src/guestfs-actions.pod:113
6523 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
6528 #: ../src/guestfs-actions.pod:117
6529 msgid "guestfs_add_drive"
6534 #: ../src/guestfs-actions.pod:119
6538 " guestfs_add_drive (guestfs_h *g,\n"
6539 " const char *filename);\n"
6545 #: ../src/guestfs-actions.pod:123
6547 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
6548 "optional parameters, so the disk is added writable, with the format being "
6549 "detected automatically."
6554 #: ../src/guestfs-actions.pod:127
6556 "Automatic detection of the format opens you up to a potential security hole "
6557 "when dealing with untrusted raw-format images. See CVE-2010-3851 and "
6558 "RHBZ#642934. Specifying the format closes this security hole. Therefore "
6559 "you should think about replacing calls to this function with calls to "
6560 "C<guestfs_add_drive_opts>, and specifying the format."
6565 #: ../src/guestfs-actions.pod:138
6566 msgid "guestfs_add_drive_opts"
6571 #: ../src/guestfs-actions.pod:140
6575 " guestfs_add_drive_opts (guestfs_h *g,\n"
6576 " const char *filename,\n"
6583 #: ../src/guestfs-actions.pod:150
6586 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6587 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6588 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6594 #: ../src/guestfs-actions.pod:154 ../fish/guestfish-actions.pod:97
6596 "This function adds a virtual machine disk image C<filename> to libguestfs. "
6597 "The first time you call this function, the disk appears as C</dev/sda>, the "
6598 "second time as C</dev/sdb>, and so on."
6603 #: ../src/guestfs-actions.pod:159 ../fish/guestfish-actions.pod:102
6605 "You don't necessarily need to be root when using libguestfs. However you "
6606 "obviously do need sufficient permissions to access the filename for whatever "
6607 "operations you want to perform (ie. read access if you just want to read the "
6608 "image or write access if you want to modify the image)."
6613 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:108
6614 msgid "This call checks that C<filename> exists."
6619 #: ../src/guestfs-actions.pod:167 ../src/guestfs-actions.pod:4446
6620 #: ../fish/guestfish-actions.pod:110 ../fish/guestfish-actions.pod:3011
6621 msgid "The optional arguments are:"
6626 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:114
6632 #: ../src/guestfs-actions.pod:173 ../fish/guestfish-actions.pod:116
6634 "If true then the image is treated as read-only. Writes are still allowed, "
6635 "but they are stored in a temporary snapshot overlay which is discarded at "
6636 "the end. The disk that you add is not modified."
6641 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:120
6647 #: ../src/guestfs-actions.pod:179
6649 "This forces the image format. If you omit this (or use C<guestfs_add_drive> "
6650 "or C<guestfs_add_drive_ro>) then the format is automatically detected. "
6651 "Possible formats include C<raw> and C<qcow2>."
6656 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:126
6658 "Automatic detection of the format opens you up to a potential security hole "
6659 "when dealing with untrusted raw-format images. See CVE-2010-3851 and "
6660 "RHBZ#642934. Specifying the format closes this security hole."
6665 #: ../src/guestfs-actions.pod:188 ../fish/guestfish-actions.pod:131
6671 #: ../src/guestfs-actions.pod:190
6673 "This rarely-used option lets you emulate the behaviour of the deprecated "
6674 "C<guestfs_add_drive_with_if> call (q.v.)"
6679 #: ../src/guestfs-actions.pod:197
6680 msgid "(Added in 1.5.23)"
6685 #: ../src/guestfs-actions.pod:199
6686 msgid "guestfs_add_drive_opts_va"
6691 #: ../src/guestfs-actions.pod:201
6695 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6696 " const char *filename,\n"
6703 #: ../src/guestfs-actions.pod:206
6704 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6709 #: ../src/guestfs-actions.pod:210
6710 msgid "guestfs_add_drive_opts_argv"
6715 #: ../src/guestfs-actions.pod:212
6719 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6720 " const char *filename,\n"
6721 " const struct guestfs_add_drive_opts_argv *optargs);\n"
6727 #: ../src/guestfs-actions.pod:217
6728 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6733 #: ../src/guestfs-actions.pod:221
6734 msgid "guestfs_add_drive_ro"
6739 #: ../src/guestfs-actions.pod:223
6743 " guestfs_add_drive_ro (guestfs_h *g,\n"
6744 " const char *filename);\n"
6750 #: ../src/guestfs-actions.pod:227
6752 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6753 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6754 "disk is added read-only, with the format being detected automatically."
6759 #: ../src/guestfs-actions.pod:234
6760 msgid "(Added in 1.0.38)"
6765 #: ../src/guestfs-actions.pod:236
6766 msgid "guestfs_add_drive_ro_with_if"
6771 #: ../src/guestfs-actions.pod:238
6775 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6776 " const char *filename,\n"
6777 " const char *iface);\n"
6783 #: ../src/guestfs-actions.pod:243
6785 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6786 "QEMU interface emulation to use at run time."
6791 #: ../src/guestfs-actions.pod:255 ../src/guestfs-actions.pod:276
6792 #: ../src/guestfs-actions.pod:2356
6793 msgid "(Added in 1.0.84)"
6798 #: ../src/guestfs-actions.pod:257
6799 msgid "guestfs_add_drive_with_if"
6804 #: ../src/guestfs-actions.pod:259
6808 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6809 " const char *filename,\n"
6810 " const char *iface);\n"
6816 #: ../src/guestfs-actions.pod:264
6818 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
6819 "QEMU interface emulation to use at run time."
6824 #: ../src/guestfs-actions.pod:278
6825 msgid "guestfs_aug_clear"
6830 #: ../src/guestfs-actions.pod:280
6834 " guestfs_aug_clear (guestfs_h *g,\n"
6835 " const char *augpath);\n"
6841 #: ../src/guestfs-actions.pod:284 ../fish/guestfish-actions.pod:183
6843 "Set the value associated with C<path> to C<NULL>. This is the same as the "
6844 "L<augtool(1)> C<clear> command."
6849 #: ../src/guestfs-actions.pod:289 ../src/guestfs-actions.pod:2106
6850 msgid "(Added in 1.3.4)"
6855 #: ../src/guestfs-actions.pod:291
6856 msgid "guestfs_aug_close"
6861 #: ../src/guestfs-actions.pod:293
6865 " guestfs_aug_close (guestfs_h *g);\n"
6871 #: ../src/guestfs-actions.pod:296
6873 "Close the current Augeas handle and free up any resources used by it. After "
6874 "calling this, you have to call C<guestfs_aug_init> again before you can use "
6875 "any other Augeas functions."
6880 #: ../src/guestfs-actions.pod:303 ../src/guestfs-actions.pod:328
6881 #: ../src/guestfs-actions.pod:346 ../src/guestfs-actions.pod:360
6882 #: ../src/guestfs-actions.pod:418 ../src/guestfs-actions.pod:438
6883 #: ../src/guestfs-actions.pod:452 ../src/guestfs-actions.pod:483
6884 #: ../src/guestfs-actions.pod:497 ../src/guestfs-actions.pod:511
6885 #: ../src/guestfs-actions.pod:525 ../src/guestfs-actions.pod:543
6886 #: ../src/guestfs-actions.pod:5472
6887 msgid "(Added in 0.7)"
6892 #: ../src/guestfs-actions.pod:305
6893 msgid "guestfs_aug_defnode"
6898 #: ../src/guestfs-actions.pod:307
6901 " struct guestfs_int_bool *\n"
6902 " guestfs_aug_defnode (guestfs_h *g,\n"
6903 " const char *name,\n"
6904 " const char *expr,\n"
6905 " const char *val);\n"
6911 #: ../src/guestfs-actions.pod:313 ../fish/guestfish-actions.pod:199
6913 "Defines a variable C<name> whose value is the result of evaluating C<expr>."
6918 #: ../src/guestfs-actions.pod:316
6920 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
6921 "calling C<guestfs_aug_set> C<expr>, C<value>. C<name> will be the nodeset "
6922 "containing that single node."
6927 #: ../src/guestfs-actions.pod:320 ../fish/guestfish-actions.pod:206
6929 "On success this returns a pair containing the number of nodes in the "
6930 "nodeset, and a boolean flag if a node was created."
6935 #: ../src/guestfs-actions.pod:324
6937 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
6938 "an error. I<The caller must call C<guestfs_free_int_bool> after use>."
6943 #: ../src/guestfs-actions.pod:330
6944 msgid "guestfs_aug_defvar"
6949 #: ../src/guestfs-actions.pod:332
6953 " guestfs_aug_defvar (guestfs_h *g,\n"
6954 " const char *name,\n"
6955 " const char *expr);\n"
6961 #: ../src/guestfs-actions.pod:337 ../fish/guestfish-actions.pod:214
6963 "Defines an Augeas variable C<name> whose value is the result of evaluating "
6964 "C<expr>. If C<expr> is NULL, then C<name> is undefined."
6969 #: ../src/guestfs-actions.pod:341 ../fish/guestfish-actions.pod:218
6971 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
6972 "evaluates to something which is not a nodeset."
6977 #: ../src/guestfs-actions.pod:348
6978 msgid "guestfs_aug_get"
6983 #: ../src/guestfs-actions.pod:350
6987 " guestfs_aug_get (guestfs_h *g,\n"
6988 " const char *augpath);\n"
6994 #: ../src/guestfs-actions.pod:354 ../fish/guestfish-actions.pod:225
6996 "Look up the value associated with C<path>. If C<path> matches exactly one "
6997 "node, the C<value> is returned."
7002 #: ../src/guestfs-actions.pod:357 ../src/guestfs-actions.pod:857
7003 #: ../src/guestfs-actions.pod:875 ../src/guestfs-actions.pod:935
7004 #: ../src/guestfs-actions.pod:951 ../src/guestfs-actions.pod:1054
7005 #: ../src/guestfs-actions.pod:1184 ../src/guestfs-actions.pod:1201
7006 #: ../src/guestfs-actions.pod:1220 ../src/guestfs-actions.pod:1354
7007 #: ../src/guestfs-actions.pod:1545 ../src/guestfs-actions.pod:1657
7008 #: ../src/guestfs-actions.pod:1820 ../src/guestfs-actions.pod:1837
7009 #: ../src/guestfs-actions.pod:1904 ../src/guestfs-actions.pod:1938
7010 #: ../src/guestfs-actions.pod:1959 ../src/guestfs-actions.pod:2129
7011 #: ../src/guestfs-actions.pod:2321 ../src/guestfs-actions.pod:2528
7012 #: ../src/guestfs-actions.pod:2613 ../src/guestfs-actions.pod:2724
7013 #: ../src/guestfs-actions.pod:2744 ../src/guestfs-actions.pod:2864
7014 #: ../src/guestfs-actions.pod:2895 ../src/guestfs-actions.pod:2919
7015 #: ../src/guestfs-actions.pod:2956 ../src/guestfs-actions.pod:3016
7016 #: ../src/guestfs-actions.pod:3039 ../src/guestfs-actions.pod:3060
7017 #: ../src/guestfs-actions.pod:3632 ../src/guestfs-actions.pod:3982
7018 #: ../src/guestfs-actions.pod:4152 ../src/guestfs-actions.pod:4262
7019 #: ../src/guestfs-actions.pod:5007 ../src/guestfs-actions.pod:5200
7020 #: ../src/guestfs-actions.pod:5370 ../src/guestfs-actions.pod:5548
7021 #: ../src/guestfs-actions.pod:5597 ../src/guestfs-actions.pod:6209
7022 #: ../src/guestfs-actions.pod:6225 ../src/guestfs-actions.pod:6242
7023 #: ../src/guestfs-actions.pod:6266 ../src/guestfs-actions.pod:6940
7024 #: ../src/guestfs-actions.pod:6959 ../src/guestfs-actions.pod:6977
7025 #: ../src/guestfs-actions.pod:7157 ../src/guestfs-actions.pod:7429
7027 "This function returns a string, or NULL on error. I<The caller must free "
7028 "the returned string after use>."
7033 #: ../src/guestfs-actions.pod:362
7034 msgid "guestfs_aug_init"
7039 #: ../src/guestfs-actions.pod:364
7043 " guestfs_aug_init (guestfs_h *g,\n"
7044 " const char *root,\n"
7051 #: ../src/guestfs-actions.pod:369 ../fish/guestfish-actions.pod:232
7053 "Create a new Augeas handle for editing configuration files. If there was "
7054 "any previous Augeas handle associated with this guestfs session, then it is "
7060 #: ../src/guestfs-actions.pod:373
7061 msgid "You must call this before using any other C<guestfs_aug_*> commands."
7066 #: ../src/guestfs-actions.pod:376 ../fish/guestfish-actions.pod:239
7068 "C<root> is the filesystem root. C<root> must not be NULL, use C</> instead."
7073 #: ../src/guestfs-actions.pod:379 ../fish/guestfish-actions.pod:242
7075 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
7076 "logical I<or> of the following integers:"
7081 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:248
7082 msgid "C<AUG_SAVE_BACKUP> = 1"
7087 #: ../src/guestfs-actions.pod:387 ../fish/guestfish-actions.pod:250
7088 msgid "Keep the original file with a C<.augsave> extension."
7093 #: ../src/guestfs-actions.pod:389 ../fish/guestfish-actions.pod:252
7094 msgid "C<AUG_SAVE_NEWFILE> = 2"
7099 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:254
7101 "Save changes into a file with extension C<.augnew>, and do not overwrite "
7102 "original. Overrides C<AUG_SAVE_BACKUP>."
7107 #: ../src/guestfs-actions.pod:394 ../fish/guestfish-actions.pod:257
7108 msgid "C<AUG_TYPE_CHECK> = 4"
7113 #: ../src/guestfs-actions.pod:396 ../fish/guestfish-actions.pod:259
7114 msgid "Typecheck lenses (can be expensive)."
7119 #: ../src/guestfs-actions.pod:398 ../fish/guestfish-actions.pod:261
7120 msgid "C<AUG_NO_STDINC> = 8"
7125 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:263
7126 msgid "Do not use standard load path for modules."
7131 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:265
7132 msgid "C<AUG_SAVE_NOOP> = 16"
7137 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:267
7138 msgid "Make save a no-op, just record what would have been changed."
7143 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:269
7144 msgid "C<AUG_NO_LOAD> = 32"
7149 #: ../src/guestfs-actions.pod:408
7150 msgid "Do not load the tree in C<guestfs_aug_init>."
7155 #: ../src/guestfs-actions.pod:412
7156 msgid "To close the handle, you can call C<guestfs_aug_close>."
7161 #: ../src/guestfs-actions.pod:414 ../fish/guestfish-actions.pod:277
7162 msgid "To find out more about Augeas, see L<http://augeas.net/>."
7167 #: ../src/guestfs-actions.pod:420
7168 msgid "guestfs_aug_insert"
7173 #: ../src/guestfs-actions.pod:422
7177 " guestfs_aug_insert (guestfs_h *g,\n"
7178 " const char *augpath,\n"
7179 " const char *label,\n"
7186 #: ../src/guestfs-actions.pod:428 ../fish/guestfish-actions.pod:283
7188 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
7189 "or after C<path> (depending on the boolean flag C<before>)."
7194 #: ../src/guestfs-actions.pod:432 ../fish/guestfish-actions.pod:287
7196 "C<path> must match exactly one existing node in the tree, and C<label> must "
7197 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
7202 #: ../src/guestfs-actions.pod:440
7203 msgid "guestfs_aug_load"
7208 #: ../src/guestfs-actions.pod:442
7212 " guestfs_aug_load (guestfs_h *g);\n"
7218 #: ../src/guestfs-actions.pod:445 ../fish/guestfish-actions.pod:295
7219 msgid "Load files into the tree."
7224 #: ../src/guestfs-actions.pod:447 ../fish/guestfish-actions.pod:297
7225 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
7230 #: ../src/guestfs-actions.pod:454
7231 msgid "guestfs_aug_ls"
7236 #: ../src/guestfs-actions.pod:456
7240 " guestfs_aug_ls (guestfs_h *g,\n"
7241 " const char *augpath);\n"
7247 #: ../src/guestfs-actions.pod:460
7249 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
7250 "sorting the resulting nodes into alphabetical order."
7255 #: ../src/guestfs-actions.pod:463 ../src/guestfs-actions.pod:479
7256 #: ../src/guestfs-actions.pod:625 ../src/guestfs-actions.pod:1073
7257 #: ../src/guestfs-actions.pod:1369 ../src/guestfs-actions.pod:1388
7258 #: ../src/guestfs-actions.pod:1491 ../src/guestfs-actions.pod:1510
7259 #: ../src/guestfs-actions.pod:1759 ../src/guestfs-actions.pod:2201
7260 #: ../src/guestfs-actions.pod:2217 ../src/guestfs-actions.pod:2236
7261 #: ../src/guestfs-actions.pod:2279 ../src/guestfs-actions.pod:2303
7262 #: ../src/guestfs-actions.pod:2374 ../src/guestfs-actions.pod:2423
7263 #: ../src/guestfs-actions.pod:2682 ../src/guestfs-actions.pod:2973
7264 #: ../src/guestfs-actions.pod:3262 ../src/guestfs-actions.pod:3552
7265 #: ../src/guestfs-actions.pod:3614 ../src/guestfs-actions.pod:3719
7266 #: ../src/guestfs-actions.pod:4124 ../src/guestfs-actions.pod:4822
7267 #: ../src/guestfs-actions.pod:5342 ../src/guestfs-actions.pod:5468
7268 #: ../src/guestfs-actions.pod:5582 ../src/guestfs-actions.pod:6282
7269 #: ../src/guestfs-actions.pod:6343 ../src/guestfs-actions.pod:6398
7270 #: ../src/guestfs-actions.pod:6544 ../src/guestfs-actions.pod:6568
7271 #: ../src/guestfs-actions.pod:7050 ../src/guestfs-actions.pod:7070
7272 #: ../src/guestfs-actions.pod:7117 ../src/guestfs-actions.pod:7282
7273 #: ../src/guestfs-actions.pod:7301 ../src/guestfs-actions.pod:7386
7274 #: ../src/guestfs-actions.pod:7405 ../src/guestfs-actions.pod:7451
7275 #: ../src/guestfs-actions.pod:7470
7277 "This function returns a NULL-terminated array of strings (like L<environ(3)"
7278 ">), or NULL if there was an error. I<The caller must free the strings and "
7279 "the array after use>."
7284 #: ../src/guestfs-actions.pod:467 ../src/guestfs-actions.pod:998
7285 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:1426
7286 #: ../src/guestfs-actions.pod:3340 ../src/guestfs-actions.pod:3371
7287 #: ../src/guestfs-actions.pod:3965 ../src/guestfs-actions.pod:4015
7288 #: ../src/guestfs-actions.pod:4202 ../src/guestfs-actions.pod:4235
7289 #: ../src/guestfs-actions.pod:4398 ../src/guestfs-actions.pod:4826
7290 #: ../src/guestfs-actions.pod:5283 ../src/guestfs-actions.pod:5678
7291 #: ../src/guestfs-actions.pod:5692 ../src/guestfs-actions.pod:5704
7292 #: ../src/guestfs-actions.pod:6144 ../src/guestfs-actions.pod:6782
7293 #: ../src/guestfs-actions.pod:6795 ../src/guestfs-actions.pod:7034
7294 #: ../src/guestfs-actions.pod:7270
7295 msgid "(Added in 0.8)"
7300 #: ../src/guestfs-actions.pod:469
7301 msgid "guestfs_aug_match"
7306 #: ../src/guestfs-actions.pod:471
7310 " guestfs_aug_match (guestfs_h *g,\n"
7311 " const char *augpath);\n"
7317 #: ../src/guestfs-actions.pod:475 ../fish/guestfish-actions.pod:311
7319 "Returns a list of paths which match the path expression C<path>. The "
7320 "returned paths are sufficiently qualified so that they match exactly one "
7321 "node in the current tree."
7326 #: ../src/guestfs-actions.pod:485
7327 msgid "guestfs_aug_mv"
7332 #: ../src/guestfs-actions.pod:487
7336 " guestfs_aug_mv (guestfs_h *g,\n"
7337 " const char *src,\n"
7338 " const char *dest);\n"
7344 #: ../src/guestfs-actions.pod:492 ../fish/guestfish-actions.pod:319
7346 "Move the node C<src> to C<dest>. C<src> must match exactly one node. "
7347 "C<dest> is overwritten if it exists."
7352 #: ../src/guestfs-actions.pod:499
7353 msgid "guestfs_aug_rm"
7358 #: ../src/guestfs-actions.pod:501
7362 " guestfs_aug_rm (guestfs_h *g,\n"
7363 " const char *augpath);\n"
7369 #: ../src/guestfs-actions.pod:505 ../fish/guestfish-actions.pod:326
7370 msgid "Remove C<path> and all of its children."
7375 #: ../src/guestfs-actions.pod:507 ../fish/guestfish-actions.pod:328
7376 msgid "On success this returns the number of entries which were removed."
7381 #: ../src/guestfs-actions.pod:513
7382 msgid "guestfs_aug_save"
7387 #: ../src/guestfs-actions.pod:515
7391 " guestfs_aug_save (guestfs_h *g);\n"
7397 #: ../src/guestfs-actions.pod:518 ../fish/guestfish-actions.pod:334
7398 msgid "This writes all pending changes to disk."
7403 #: ../src/guestfs-actions.pod:520
7405 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
7411 #: ../src/guestfs-actions.pod:527
7412 msgid "guestfs_aug_set"
7417 #: ../src/guestfs-actions.pod:529
7421 " guestfs_aug_set (guestfs_h *g,\n"
7422 " const char *augpath,\n"
7423 " const char *val);\n"
7429 #: ../src/guestfs-actions.pod:534 ../fish/guestfish-actions.pod:343
7430 msgid "Set the value associated with C<path> to C<val>."
7435 #: ../src/guestfs-actions.pod:536
7437 "In the Augeas API, it is possible to clear a node by setting the value to "
7438 "NULL. Due to an oversight in the libguestfs API you cannot do that with "
7439 "this call. Instead you must use the C<guestfs_aug_clear> call."
7444 #: ../src/guestfs-actions.pod:545
7445 msgid "guestfs_available"
7450 #: ../src/guestfs-actions.pod:547
7454 " guestfs_available (guestfs_h *g,\n"
7455 " char *const *groups);\n"
7461 #: ../src/guestfs-actions.pod:551 ../fish/guestfish-actions.pod:354
7463 "This command is used to check the availability of some groups of "
7464 "functionality in the appliance, which not all builds of the libguestfs "
7465 "appliance will be able to provide."
7470 #: ../src/guestfs-actions.pod:555
7472 "The libguestfs groups, and the functions that those groups correspond to, "
7473 "are listed in L<guestfs(3)/AVAILABILITY>. You can also fetch this list at "
7474 "runtime by calling C<guestfs_available_all_groups>."
7479 #: ../src/guestfs-actions.pod:560 ../fish/guestfish-actions.pod:363
7481 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", \"augeas"
7482 "\"]> would check for the availability of the Linux inotify functions and "
7483 "Augeas (configuration file editing) functions."
7488 #: ../src/guestfs-actions.pod:565 ../fish/guestfish-actions.pod:368
7489 msgid "The command returns no error if I<all> requested groups are available."
7494 #: ../src/guestfs-actions.pod:567 ../fish/guestfish-actions.pod:370
7496 "It fails with an error if one or more of the requested groups is unavailable "
7502 #: ../src/guestfs-actions.pod:570 ../fish/guestfish-actions.pod:373
7504 "If an unknown group name is included in the list of groups then an error is "
7510 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:376
7516 #: ../src/guestfs-actions.pod:579
7517 msgid "You must call C<guestfs_launch> before calling this function."
7522 #: ../src/guestfs-actions.pod:581 ../fish/guestfish-actions.pod:384
7524 "The reason is because we don't know what groups are supported by the "
7525 "appliance/daemon until it is running and can be queried."
7530 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:390
7532 "If a group of functions is available, this does not necessarily mean that "
7533 "they will work. You still have to check for errors when calling individual "
7534 "API functions even if they are available."
7539 #: ../src/guestfs-actions.pod:594 ../fish/guestfish-actions.pod:397
7541 "It is usually the job of distro packagers to build complete functionality "
7542 "into the libguestfs appliance. Upstream libguestfs, if built from source "
7543 "with all requirements satisfied, will support everything."
7548 #: ../src/guestfs-actions.pod:601
7550 "This call was added in version C<1.0.80>. In previous versions of "
7551 "libguestfs all you could do would be to speculatively execute a command to "
7552 "find out if the daemon implemented it. See also C<guestfs_version>."
7557 #: ../src/guestfs-actions.pod:610 ../src/guestfs-actions.pod:1171
7558 msgid "(Added in 1.0.80)"
7563 #: ../src/guestfs-actions.pod:612
7564 msgid "guestfs_available_all_groups"
7569 #: ../src/guestfs-actions.pod:614
7573 " guestfs_available_all_groups (guestfs_h *g);\n"
7579 #: ../src/guestfs-actions.pod:617
7581 "This command returns a list of all optional groups that this daemon knows "
7582 "about. Note this returns both supported and unsupported groups. To find "
7583 "out which ones the daemon can actually support you have to call "
7584 "C<guestfs_available> on each member of the returned list."
7589 #: ../src/guestfs-actions.pod:623
7590 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
7595 #: ../src/guestfs-actions.pod:629
7596 msgid "(Added in 1.3.15)"
7601 #: ../src/guestfs-actions.pod:631
7602 msgid "guestfs_base64_in"
7607 #: ../src/guestfs-actions.pod:633
7611 " guestfs_base64_in (guestfs_h *g,\n"
7612 " const char *base64file,\n"
7613 " const char *filename);\n"
7619 #: ../src/guestfs-actions.pod:638 ../fish/guestfish-actions.pod:427
7621 "This command uploads base64-encoded data from C<base64file> to C<filename>."
7626 #: ../src/guestfs-actions.pod:643 ../src/guestfs-actions.pod:657
7627 msgid "(Added in 1.3.5)"
7632 #: ../src/guestfs-actions.pod:645
7633 msgid "guestfs_base64_out"
7638 #: ../src/guestfs-actions.pod:647
7642 " guestfs_base64_out (guestfs_h *g,\n"
7643 " const char *filename,\n"
7644 " const char *base64file);\n"
7650 #: ../src/guestfs-actions.pod:652 ../fish/guestfish-actions.pod:436
7652 "This command downloads the contents of C<filename>, writing it out to local "
7653 "file C<base64file> encoded as base64."
7658 #: ../src/guestfs-actions.pod:659
7659 msgid "guestfs_blockdev_flushbufs"
7664 #: ../src/guestfs-actions.pod:661
7668 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
7669 " const char *device);\n"
7675 #: ../src/guestfs-actions.pod:665 ../fish/guestfish-actions.pod:445
7677 "This tells the kernel to flush internal buffers associated with C<device>."
7682 #: ../src/guestfs-actions.pod:668 ../src/guestfs-actions.pod:685
7683 #: ../src/guestfs-actions.pod:700 ../src/guestfs-actions.pod:716
7684 #: ../src/guestfs-actions.pod:734 ../src/guestfs-actions.pod:753
7685 #: ../src/guestfs-actions.pod:767 ../src/guestfs-actions.pod:785
7686 #: ../src/guestfs-actions.pod:799 ../src/guestfs-actions.pod:813
7687 #: ../fish/guestfish-actions.pod:448 ../fish/guestfish-actions.pod:459
7688 #: ../fish/guestfish-actions.pod:468 ../fish/guestfish-actions.pod:478
7689 #: ../fish/guestfish-actions.pod:490 ../fish/guestfish-actions.pod:503
7690 #: ../fish/guestfish-actions.pod:511 ../fish/guestfish-actions.pod:522
7691 #: ../fish/guestfish-actions.pod:530 ../fish/guestfish-actions.pod:538
7692 msgid "This uses the L<blockdev(8)> command."
7697 #: ../src/guestfs-actions.pod:672 ../src/guestfs-actions.pod:689
7698 #: ../src/guestfs-actions.pod:704 ../src/guestfs-actions.pod:720
7699 #: ../src/guestfs-actions.pod:738 ../src/guestfs-actions.pod:757
7700 #: ../src/guestfs-actions.pod:771 ../src/guestfs-actions.pod:789
7701 #: ../src/guestfs-actions.pod:803 ../src/guestfs-actions.pod:817
7702 msgid "(Added in 0.9.3)"
7707 #: ../src/guestfs-actions.pod:674
7708 msgid "guestfs_blockdev_getbsz"
7713 #: ../src/guestfs-actions.pod:676
7717 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
7718 " const char *device);\n"
7724 #: ../src/guestfs-actions.pod:680 ../fish/guestfish-actions.pod:454
7725 msgid "This returns the block size of a device."
7730 #: ../src/guestfs-actions.pod:682 ../src/guestfs-actions.pod:782
7731 #: ../fish/guestfish-actions.pod:456 ../fish/guestfish-actions.pod:519
7733 "(Note this is different from both I<size in blocks> and I<filesystem block "
7739 #: ../src/guestfs-actions.pod:691
7740 msgid "guestfs_blockdev_getro"
7745 #: ../src/guestfs-actions.pod:693
7749 " guestfs_blockdev_getro (guestfs_h *g,\n"
7750 " const char *device);\n"
7756 #: ../src/guestfs-actions.pod:697 ../fish/guestfish-actions.pod:465
7758 "Returns a boolean indicating if the block device is read-only (true if read-"
7759 "only, false if not)."
7764 #: ../src/guestfs-actions.pod:702 ../src/guestfs-actions.pod:1409
7765 #: ../src/guestfs-actions.pod:1424 ../src/guestfs-actions.pod:1914
7766 #: ../src/guestfs-actions.pod:1925 ../src/guestfs-actions.pod:1997
7767 #: ../src/guestfs-actions.pod:2052 ../src/guestfs-actions.pod:2067
7768 #: ../src/guestfs-actions.pod:2092 ../src/guestfs-actions.pod:2115
7769 #: ../src/guestfs-actions.pod:3080 ../src/guestfs-actions.pod:3097
7770 #: ../src/guestfs-actions.pod:3116 ../src/guestfs-actions.pod:3279
7771 #: ../src/guestfs-actions.pod:3293 ../src/guestfs-actions.pod:3308
7772 #: ../src/guestfs-actions.pod:3322 ../src/guestfs-actions.pod:3338
7773 #: ../src/guestfs-actions.pod:3353 ../src/guestfs-actions.pod:3369
7774 #: ../src/guestfs-actions.pod:3383 ../src/guestfs-actions.pod:3396
7775 #: ../src/guestfs-actions.pod:3410 ../src/guestfs-actions.pod:3425
7776 #: ../src/guestfs-actions.pod:3440 ../src/guestfs-actions.pod:4971
7777 msgid "This function returns a C truth value on success or -1 on error."
7782 #: ../src/guestfs-actions.pod:706
7783 msgid "guestfs_blockdev_getsize64"
7788 #: ../src/guestfs-actions.pod:708
7792 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7793 " const char *device);\n"
7799 #: ../src/guestfs-actions.pod:712 ../fish/guestfish-actions.pod:474
7800 msgid "This returns the size of the device in bytes."
7805 #: ../src/guestfs-actions.pod:714
7806 msgid "See also C<guestfs_blockdev_getsz>."
7811 #: ../src/guestfs-actions.pod:722
7812 msgid "guestfs_blockdev_getss"
7817 #: ../src/guestfs-actions.pod:724
7821 " guestfs_blockdev_getss (guestfs_h *g,\n"
7822 " const char *device);\n"
7828 #: ../src/guestfs-actions.pod:728 ../fish/guestfish-actions.pod:484
7830 "This returns the size of sectors on a block device. Usually 512, but can be "
7831 "larger for modern devices."
7836 #: ../src/guestfs-actions.pod:731
7838 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
7844 #: ../src/guestfs-actions.pod:740
7845 msgid "guestfs_blockdev_getsz"
7850 #: ../src/guestfs-actions.pod:742
7854 " guestfs_blockdev_getsz (guestfs_h *g,\n"
7855 " const char *device);\n"
7861 #: ../src/guestfs-actions.pod:746 ../fish/guestfish-actions.pod:496
7863 "This returns the size of the device in units of 512-byte sectors (even if "
7864 "the sectorsize isn't 512 bytes ... weird)."
7869 #: ../src/guestfs-actions.pod:749
7871 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
7872 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
7877 #: ../src/guestfs-actions.pod:759
7878 msgid "guestfs_blockdev_rereadpt"
7883 #: ../src/guestfs-actions.pod:761
7887 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
7888 " const char *device);\n"
7894 #: ../src/guestfs-actions.pod:765 ../fish/guestfish-actions.pod:509
7895 msgid "Reread the partition table on C<device>."
7900 #: ../src/guestfs-actions.pod:773
7901 msgid "guestfs_blockdev_setbsz"
7906 #: ../src/guestfs-actions.pod:775
7910 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
7911 " const char *device,\n"
7912 " int blocksize);\n"
7918 #: ../src/guestfs-actions.pod:780 ../fish/guestfish-actions.pod:517
7919 msgid "This sets the block size of a device."
7924 #: ../src/guestfs-actions.pod:791
7925 msgid "guestfs_blockdev_setro"
7930 #: ../src/guestfs-actions.pod:793
7934 " guestfs_blockdev_setro (guestfs_h *g,\n"
7935 " const char *device);\n"
7941 #: ../src/guestfs-actions.pod:797 ../fish/guestfish-actions.pod:528
7942 msgid "Sets the block device named C<device> to read-only."
7947 #: ../src/guestfs-actions.pod:805
7948 msgid "guestfs_blockdev_setrw"
7953 #: ../src/guestfs-actions.pod:807
7957 " guestfs_blockdev_setrw (guestfs_h *g,\n"
7958 " const char *device);\n"
7964 #: ../src/guestfs-actions.pod:811 ../fish/guestfish-actions.pod:536
7965 msgid "Sets the block device named C<device> to read-write."
7970 #: ../src/guestfs-actions.pod:819
7971 msgid "guestfs_case_sensitive_path"
7976 #: ../src/guestfs-actions.pod:821
7980 " guestfs_case_sensitive_path (guestfs_h *g,\n"
7981 " const char *path);\n"
7987 #: ../src/guestfs-actions.pod:825 ../fish/guestfish-actions.pod:544
7989 "This can be used to resolve case insensitive paths on a filesystem which is "
7990 "case sensitive. The use case is to resolve paths which you have read from "
7991 "Windows configuration files or the Windows Registry, to the true path."
7996 #: ../src/guestfs-actions.pod:830 ../fish/guestfish-actions.pod:549
7998 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
7999 "(and probably others), which is that although the underlying filesystem is "
8000 "case-insensitive, the driver exports the filesystem to Linux as case-"
8006 #: ../src/guestfs-actions.pod:835 ../fish/guestfish-actions.pod:554
8008 "One consequence of this is that special directories such as C<c:\\windows> "
8009 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
8010 "precise details of how they were created. In Windows itself this would not "
8016 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:560
8018 "Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-faq/"
8024 #: ../src/guestfs-actions.pod:844 ../fish/guestfish-actions.pod:563
8026 "This function resolves the true case of each element in the path and returns "
8027 "the case-sensitive path."
8032 #: ../src/guestfs-actions.pod:847
8034 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\") might return C<"
8035 "\"/WINDOWS/system32\"> (the exact return value would depend on details of "
8036 "how the directories were originally created under Windows)."
8041 #: ../src/guestfs-actions.pod:852 ../fish/guestfish-actions.pod:571
8042 msgid "I<Note>: This function does not handle drive names, backslashes etc."
8047 #: ../src/guestfs-actions.pod:855
8048 msgid "See also C<guestfs_realpath>."
8053 #: ../src/guestfs-actions.pod:860 ../src/guestfs-actions.pod:6962
8054 msgid "(Added in 1.0.75)"
8059 #: ../src/guestfs-actions.pod:862
8065 #: ../src/guestfs-actions.pod:864
8069 " guestfs_cat (guestfs_h *g,\n"
8070 " const char *path);\n"
8076 #: ../src/guestfs-actions.pod:868 ../src/guestfs-actions.pod:5458
8077 #: ../fish/guestfish-actions.pod:580 ../fish/guestfish-actions.pod:3659
8078 msgid "Return the contents of the file named C<path>."
8083 #: ../src/guestfs-actions.pod:870
8085 "Note that this function cannot correctly handle binary files (specifically, "
8086 "files containing C<\\0> character which is treated as end of string). For "
8087 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
8088 "functions which have a more complex interface."
8093 #: ../src/guestfs-actions.pod:878 ../src/guestfs-actions.pod:1057
8094 #: ../src/guestfs-actions.pod:1077 ../src/guestfs-actions.pod:1373
8095 #: ../src/guestfs-actions.pod:1392 ../src/guestfs-actions.pod:1495
8096 #: ../src/guestfs-actions.pod:1514 ../src/guestfs-actions.pod:1763
8097 #: ../src/guestfs-actions.pod:2221 ../src/guestfs-actions.pod:2240
8098 #: ../src/guestfs-actions.pod:2283 ../src/guestfs-actions.pod:2307
8099 #: ../src/guestfs-actions.pod:2324 ../src/guestfs-actions.pod:2353
8100 #: ../src/guestfs-actions.pod:5240 ../src/guestfs-actions.pod:5266
8101 #: ../src/guestfs-actions.pod:5397 ../src/guestfs-actions.pod:5423
8102 #: ../src/guestfs-actions.pod:5447 ../src/guestfs-actions.pod:6347
8103 #: ../src/guestfs-actions.pod:6402 ../src/guestfs-actions.pod:6548
8104 #: ../src/guestfs-actions.pod:6572 ../src/guestfs-actions.pod:7234
8105 #: ../src/guestfs-actions.pod:7260 ../src/guestfs-actions.pod:7286
8106 #: ../src/guestfs-actions.pod:7305 ../src/guestfs-actions.pod:7390
8107 #: ../src/guestfs-actions.pod:7409 ../src/guestfs-actions.pod:7455
8108 #: ../src/guestfs-actions.pod:7474 ../fish/guestfish-actions.pod:587
8109 #: ../fish/guestfish-actions.pod:722 ../fish/guestfish-actions.pod:734
8110 #: ../fish/guestfish-actions.pod:910 ../fish/guestfish-actions.pod:920
8111 #: ../fish/guestfish-actions.pod:987 ../fish/guestfish-actions.pod:997
8112 #: ../fish/guestfish-actions.pod:1192 ../fish/guestfish-actions.pod:1493
8113 #: ../fish/guestfish-actions.pod:1503 ../fish/guestfish-actions.pod:1531
8114 #: ../fish/guestfish-actions.pod:1546 ../fish/guestfish-actions.pod:1556
8115 #: ../fish/guestfish-actions.pod:1575 ../fish/guestfish-actions.pod:3529
8116 #: ../fish/guestfish-actions.pod:3544 ../fish/guestfish-actions.pod:3620
8117 #: ../fish/guestfish-actions.pod:3637 ../fish/guestfish-actions.pod:3652
8118 #: ../fish/guestfish-actions.pod:4278 ../fish/guestfish-actions.pod:4324
8119 #: ../fish/guestfish-actions.pod:4409 ../fish/guestfish-actions.pod:4424
8120 #: ../fish/guestfish-actions.pod:4834 ../fish/guestfish-actions.pod:4852
8121 #: ../fish/guestfish-actions.pod:4869 ../fish/guestfish-actions.pod:4879
8122 #: ../fish/guestfish-actions.pod:4927 ../fish/guestfish-actions.pod:4937
8123 #: ../fish/guestfish-actions.pod:4966 ../fish/guestfish-actions.pod:4976
8125 "Because of the message protocol, there is a transfer limit of somewhere "
8126 "between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>."
8131 #: ../src/guestfs-actions.pod:881 ../src/guestfs-actions.pod:3556
8132 #: ../src/guestfs-actions.pod:3618 ../src/guestfs-actions.pod:3635
8133 #: ../src/guestfs-actions.pod:3723 ../src/guestfs-actions.pod:4128
8134 #: ../src/guestfs-actions.pod:4142 ../src/guestfs-actions.pod:5346
8135 #: ../src/guestfs-actions.pod:5360 ../src/guestfs-actions.pod:7121
8136 #: ../src/guestfs-actions.pod:7135
8137 msgid "(Added in 0.4)"
8142 #: ../src/guestfs-actions.pod:883
8143 msgid "guestfs_checksum"
8148 #: ../src/guestfs-actions.pod:885
8152 " guestfs_checksum (guestfs_h *g,\n"
8153 " const char *csumtype,\n"
8154 " const char *path);\n"
8160 #: ../src/guestfs-actions.pod:890 ../fish/guestfish-actions.pod:594
8162 "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
8167 #: ../src/guestfs-actions.pod:893 ../fish/guestfish-actions.pod:597
8169 "The type of checksum to compute is given by the C<csumtype> parameter which "
8170 "must have one of the following values:"
8175 #: ../src/guestfs-actions.pod:898 ../fish/guestfish-actions.pod:602
8181 #: ../src/guestfs-actions.pod:900 ../fish/guestfish-actions.pod:604
8183 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
8189 #: ../src/guestfs-actions.pod:903 ../fish/guestfish-actions.pod:607
8195 #: ../src/guestfs-actions.pod:905 ../fish/guestfish-actions.pod:609
8196 msgid "Compute the MD5 hash (using the C<md5sum> program)."
8201 #: ../src/guestfs-actions.pod:907 ../fish/guestfish-actions.pod:611
8207 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:613
8208 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
8213 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:615
8219 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:617
8220 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
8225 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:619
8231 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:621
8232 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
8237 #: ../src/guestfs-actions.pod:919 ../fish/guestfish-actions.pod:623
8243 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:625
8244 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
8249 #: ../src/guestfs-actions.pod:923 ../fish/guestfish-actions.pod:627
8255 #: ../src/guestfs-actions.pod:925 ../fish/guestfish-actions.pod:629
8256 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
8261 #: ../src/guestfs-actions.pod:929 ../fish/guestfish-actions.pod:633
8262 msgid "The checksum is returned as a printable string."
8267 #: ../src/guestfs-actions.pod:931
8268 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
8273 #: ../src/guestfs-actions.pod:933
8274 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
8279 #: ../src/guestfs-actions.pod:938 ../src/guestfs-actions.pod:1246
8280 #: ../src/guestfs-actions.pod:2083 ../src/guestfs-actions.pod:3295
8281 #: ../src/guestfs-actions.pod:3324 ../src/guestfs-actions.pod:3385
8282 #: ../src/guestfs-actions.pod:3412 ../src/guestfs-actions.pod:6818
8283 msgid "(Added in 1.0.2)"
8288 #: ../src/guestfs-actions.pod:940
8289 msgid "guestfs_checksum_device"
8294 #: ../src/guestfs-actions.pod:942
8298 " guestfs_checksum_device (guestfs_h *g,\n"
8299 " const char *csumtype,\n"
8300 " const char *device);\n"
8306 #: ../src/guestfs-actions.pod:947
8308 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
8309 "device named C<device>. For the types of checksums supported see the "
8310 "C<guestfs_checksum> command."
8315 #: ../src/guestfs-actions.pod:954 ../src/guestfs-actions.pod:4877
8316 #: ../src/guestfs-actions.pod:4936 ../src/guestfs-actions.pod:4973
8317 #: ../src/guestfs-actions.pod:4991 ../src/guestfs-actions.pod:5167
8318 #: ../src/guestfs-actions.pod:6727 ../src/guestfs-actions.pod:6741
8319 #: ../src/guestfs-actions.pod:7147
8320 msgid "(Added in 1.3.2)"
8325 #: ../src/guestfs-actions.pod:956
8326 msgid "guestfs_checksums_out"
8331 #: ../src/guestfs-actions.pod:958
8335 " guestfs_checksums_out (guestfs_h *g,\n"
8336 " const char *csumtype,\n"
8337 " const char *directory,\n"
8338 " const char *sumsfile);\n"
8344 #: ../src/guestfs-actions.pod:964 ../fish/guestfish-actions.pod:651
8346 "This command computes the checksums of all regular files in C<directory> and "
8347 "then emits a list of those checksums to the local output file C<sumsfile>."
8352 #: ../src/guestfs-actions.pod:968 ../fish/guestfish-actions.pod:655
8354 "This can be used for verifying the integrity of a virtual machine. However "
8355 "to be properly secure you should pay attention to the output of the checksum "
8356 "command (it uses the ones from GNU coreutils). In particular when the "
8357 "filename is not printable, coreutils uses a special backslash syntax. For "
8358 "more information, see the GNU coreutils info file."
8363 #: ../src/guestfs-actions.pod:978
8364 msgid "(Added in 1.3.7)"
8369 #: ../src/guestfs-actions.pod:980
8370 msgid "guestfs_chmod"
8375 #: ../src/guestfs-actions.pod:982
8379 " guestfs_chmod (guestfs_h *g,\n"
8381 " const char *path);\n"
8387 #: ../src/guestfs-actions.pod:987 ../fish/guestfish-actions.pod:669
8389 "Change the mode (permissions) of C<path> to C<mode>. Only numeric modes are "
8395 #: ../src/guestfs-actions.pod:990 ../fish/guestfish-actions.pod:672
8397 "I<Note>: When using this command from guestfish, C<mode> by default would be "
8398 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
8404 #: ../src/guestfs-actions.pod:994 ../src/guestfs-actions.pod:4379
8405 #: ../src/guestfs-actions.pod:4576 ../src/guestfs-actions.pod:4595
8406 #: ../src/guestfs-actions.pod:4614 ../fish/guestfish-actions.pod:676
8407 #: ../fish/guestfish-actions.pod:2975 ../fish/guestfish-actions.pod:3104
8408 #: ../fish/guestfish-actions.pod:3114 ../fish/guestfish-actions.pod:3124
8409 msgid "The mode actually set is affected by the umask."
8414 #: ../src/guestfs-actions.pod:1000
8415 msgid "guestfs_chown"
8420 #: ../src/guestfs-actions.pod:1002
8424 " guestfs_chown (guestfs_h *g,\n"
8427 " const char *path);\n"
8433 #: ../src/guestfs-actions.pod:1008 ../fish/guestfish-actions.pod:682
8434 msgid "Change the file owner to C<owner> and group to C<group>."
8439 #: ../src/guestfs-actions.pod:1010 ../src/guestfs-actions.pod:3487
8440 #: ../fish/guestfish-actions.pod:684 ../fish/guestfish-actions.pod:2433
8442 "Only numeric uid and gid are supported. If you want to use names, you will "
8443 "need to locate and parse the password file yourself (Augeas support makes "
8444 "this relatively easy)."
8449 #: ../src/guestfs-actions.pod:1018
8450 msgid "guestfs_command"
8455 #: ../src/guestfs-actions.pod:1020
8459 " guestfs_command (guestfs_h *g,\n"
8460 " char *const *arguments);\n"
8466 #: ../src/guestfs-actions.pod:1024 ../fish/guestfish-actions.pod:692
8468 "This call runs a command from the guest filesystem. The filesystem must be "
8469 "mounted, and must contain a compatible operating system (ie. something "
8470 "Linux, with the same or compatible processor architecture)."
8475 #: ../src/guestfs-actions.pod:1029
8477 "The single parameter is an argv-style list of arguments. The first element "
8478 "is the name of the program to run. Subsequent elements are parameters. The "
8479 "list must be non-empty (ie. must contain a program name). Note that the "
8480 "command runs directly, and is I<not> invoked via the shell (see "
8486 #: ../src/guestfs-actions.pod:1036 ../fish/guestfish-actions.pod:704
8487 msgid "The return value is anything printed to I<stdout> by the command."
8492 #: ../src/guestfs-actions.pod:1039 ../fish/guestfish-actions.pod:707
8494 "If the command returns a non-zero exit status, then this function returns an "
8495 "error message. The error message string is the content of I<stderr> from "
8501 #: ../src/guestfs-actions.pod:1043 ../fish/guestfish-actions.pod:711
8503 "The C<$PATH> environment variable will contain at least C</usr/bin> and C</"
8504 "bin>. If you require a program from another location, you should provide "
8505 "the full path in the first parameter."
8510 #: ../src/guestfs-actions.pod:1048 ../fish/guestfish-actions.pod:716
8512 "Shared libraries and data files required by the program must be available on "
8513 "filesystems which are mounted in the correct places. It is the caller's "
8514 "responsibility to ensure all filesystems that are needed are mounted at the "
8520 #: ../src/guestfs-actions.pod:1060 ../src/guestfs-actions.pod:1080
8521 #: ../src/guestfs-actions.pod:1548
8522 msgid "(Added in 0.9.1)"
8527 #: ../src/guestfs-actions.pod:1062
8528 msgid "guestfs_command_lines"
8533 #: ../src/guestfs-actions.pod:1064
8537 " guestfs_command_lines (guestfs_h *g,\n"
8538 " char *const *arguments);\n"
8544 #: ../src/guestfs-actions.pod:1068
8546 "This is the same as C<guestfs_command>, but splits the result into a list of "
8552 #: ../src/guestfs-actions.pod:1071
8553 msgid "See also: C<guestfs_sh_lines>"
8558 #: ../src/guestfs-actions.pod:1082
8559 msgid "guestfs_config"
8564 #: ../src/guestfs-actions.pod:1084
8568 " guestfs_config (guestfs_h *g,\n"
8569 " const char *qemuparam,\n"
8570 " const char *qemuvalue);\n"
8576 #: ../src/guestfs-actions.pod:1089 ../fish/guestfish-actions.pod:741
8578 "This can be used to add arbitrary qemu command line parameters of the form "
8579 "C<-param value>. Actually it's not quite arbitrary - we prevent you from "
8580 "setting some parameters which would interfere with parameters that we use."
8585 #: ../src/guestfs-actions.pod:1094 ../fish/guestfish-actions.pod:746
8586 msgid "The first character of C<param> string must be a C<-> (dash)."
8591 #: ../src/guestfs-actions.pod:1096 ../fish/guestfish-actions.pod:748
8592 msgid "C<value> can be NULL."
8597 #: ../src/guestfs-actions.pod:1102
8598 msgid "guestfs_copy_size"
8603 #: ../src/guestfs-actions.pod:1104
8607 " guestfs_copy_size (guestfs_h *g,\n"
8608 " const char *src,\n"
8609 " const char *dest,\n"
8616 #: ../src/guestfs-actions.pod:1110 ../fish/guestfish-actions.pod:754
8618 "This command copies exactly C<size> bytes from one source device or file "
8619 "C<src> to another destination device or file C<dest>."
8624 #: ../src/guestfs-actions.pod:1113 ../fish/guestfish-actions.pod:757
8626 "Note this will fail if the source is too short or if the destination is not "
8631 #: ../src/guestfs-actions.pod:1118 ../src/guestfs-actions.pod:1241
8632 #: ../src/guestfs-actions.pod:1272 ../src/guestfs-actions.pod:1317
8633 #: ../src/guestfs-actions.pod:1697 ../src/guestfs-actions.pod:1719
8634 #: ../src/guestfs-actions.pod:3468 ../src/guestfs-actions.pod:6813
8635 #: ../src/guestfs-actions.pod:6847 ../src/guestfs-actions.pod:7326
8636 #: ../src/guestfs-actions.pod:7345
8638 "This long-running command can generate progress notification messages so "
8639 "that the caller can display a progress bar or indicator. To receive these "
8640 "messages, the caller must register a progress event callback. See L<guestfs"
8641 "(3)/GUESTFS_EVENT_PROGRESS>."
8646 #: ../src/guestfs-actions.pod:1123 ../src/guestfs-actions.pod:4155
8647 #: ../src/guestfs-actions.pod:5373 ../src/guestfs-actions.pod:7054
8648 #: ../src/guestfs-actions.pod:7074 ../src/guestfs-actions.pod:7160
8649 msgid "(Added in 1.0.87)"
8654 #: ../src/guestfs-actions.pod:1125
8660 #: ../src/guestfs-actions.pod:1127
8664 " guestfs_cp (guestfs_h *g,\n"
8665 " const char *src,\n"
8666 " const char *dest);\n"
8672 #: ../src/guestfs-actions.pod:1132 ../fish/guestfish-actions.pod:764
8674 "This copies a file from C<src> to C<dest> where C<dest> is either a "
8675 "destination filename or destination directory."
8680 #: ../src/guestfs-actions.pod:1137 ../src/guestfs-actions.pod:1151
8681 #: ../src/guestfs-actions.pod:1223 ../src/guestfs-actions.pod:1297
8682 #: ../src/guestfs-actions.pod:1411 ../src/guestfs-actions.pod:4840
8683 #: ../src/guestfs-actions.pod:5217
8684 msgid "(Added in 1.0.18)"
8689 #: ../src/guestfs-actions.pod:1139
8690 msgid "guestfs_cp_a"
8695 #: ../src/guestfs-actions.pod:1141
8699 " guestfs_cp_a (guestfs_h *g,\n"
8700 " const char *src,\n"
8701 " const char *dest);\n"
8707 #: ../src/guestfs-actions.pod:1146 ../fish/guestfish-actions.pod:771
8709 "This copies a file or directory from C<src> to C<dest> recursively using the "
8715 #: ../src/guestfs-actions.pod:1153
8721 #: ../src/guestfs-actions.pod:1155
8725 " guestfs_dd (guestfs_h *g,\n"
8726 " const char *src,\n"
8727 " const char *dest);\n"
8733 #: ../src/guestfs-actions.pod:1160 ../fish/guestfish-actions.pod:778
8735 "This command copies from one source device or file C<src> to another "
8736 "destination device or file C<dest>. Normally you would use this to copy to "
8737 "or from a device or partition, for example to duplicate a filesystem."
8742 #: ../src/guestfs-actions.pod:1165
8744 "If the destination is a device, it must be as large or larger than the "
8745 "source file or device, otherwise the copy will fail. This command cannot do "
8746 "partial copies (see C<guestfs_copy_size>)."
8751 #: ../src/guestfs-actions.pod:1173
8757 #: ../src/guestfs-actions.pod:1175
8761 " guestfs_df (guestfs_h *g);\n"
8767 #: ../src/guestfs-actions.pod:1178 ../fish/guestfish-actions.pod:791
8768 msgid "This command runs the C<df> command to report disk space used."
8773 #: ../src/guestfs-actions.pod:1180 ../src/guestfs-actions.pod:1197
8775 "This command is mostly useful for interactive sessions. It is I<not> "
8776 "intended that you try to parse the output string. Use C<guestfs_statvfs> "
8782 #: ../src/guestfs-actions.pod:1187 ../src/guestfs-actions.pod:1204
8783 #: ../src/guestfs-actions.pod:1322 ../src/guestfs-actions.pod:2286
8784 #: ../src/guestfs-actions.pod:2310 ../src/guestfs-actions.pod:2378
8785 #: ../src/guestfs-actions.pod:4265 ../src/guestfs-actions.pod:4740
8786 #: ../src/guestfs-actions.pod:6551 ../src/guestfs-actions.pod:6575
8787 #: ../src/guestfs-actions.pod:7193 ../src/guestfs-actions.pod:7206
8788 #: ../src/guestfs-actions.pod:7219
8789 msgid "(Added in 1.0.54)"
8794 #: ../src/guestfs-actions.pod:1189
8795 msgid "guestfs_df_h"
8800 #: ../src/guestfs-actions.pod:1191
8804 " guestfs_df_h (guestfs_h *g);\n"
8810 #: ../src/guestfs-actions.pod:1194 ../fish/guestfish-actions.pod:801
8812 "This command runs the C<df -h> command to report disk space used in human-"
8818 #: ../src/guestfs-actions.pod:1206
8819 msgid "guestfs_dmesg"
8824 #: ../src/guestfs-actions.pod:1208
8828 " guestfs_dmesg (guestfs_h *g);\n"
8834 #: ../src/guestfs-actions.pod:1211 ../fish/guestfish-actions.pod:812
8836 "This returns the kernel messages (C<dmesg> output) from the guest kernel. "
8837 "This is sometimes useful for extended debugging of problems."
8842 #: ../src/guestfs-actions.pod:1215
8844 "Another way to get the same information is to enable verbose messages with "
8845 "C<guestfs_set_verbose> or by setting the environment variable "
8846 "C<LIBGUESTFS_DEBUG=1> before running the program."
8851 #: ../src/guestfs-actions.pod:1225
8852 msgid "guestfs_download"
8857 #: ../src/guestfs-actions.pod:1227
8861 " guestfs_download (guestfs_h *g,\n"
8862 " const char *remotefilename,\n"
8863 " const char *filename);\n"
8869 #: ../src/guestfs-actions.pod:1232 ../src/guestfs-actions.pod:1257
8870 #: ../fish/guestfish-actions.pod:825 ../fish/guestfish-actions.pod:838
8872 "Download file C<remotefilename> and save it as C<filename> on the local "
8878 #: ../src/guestfs-actions.pod:1235 ../src/guestfs-actions.pod:6807
8879 #: ../fish/guestfish-actions.pod:828 ../fish/guestfish-actions.pod:4582
8880 msgid "C<filename> can also be a named pipe."
8885 #: ../src/guestfs-actions.pod:1237
8886 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
8891 #: ../src/guestfs-actions.pod:1248
8892 msgid "guestfs_download_offset"
8897 #: ../src/guestfs-actions.pod:1250
8901 " guestfs_download_offset (guestfs_h *g,\n"
8902 " const char *remotefilename,\n"
8903 " const char *filename,\n"
8904 " int64_t offset,\n"
8911 #: ../src/guestfs-actions.pod:1260 ../fish/guestfish-actions.pod:841
8913 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
8914 "region must be within the file or device)."
8919 #: ../src/guestfs-actions.pod:1263
8921 "Note that there is no limit on the amount of data that can be downloaded "
8922 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
8923 "full amount unless an error occurs."
8928 #: ../src/guestfs-actions.pod:1268
8929 msgid "See also C<guestfs_download>, C<guestfs_pread>."
8934 #: ../src/guestfs-actions.pod:1277 ../src/guestfs-actions.pod:6852
8935 msgid "(Added in 1.5.17)"
8940 #: ../src/guestfs-actions.pod:1279
8941 msgid "guestfs_drop_caches"
8946 #: ../src/guestfs-actions.pod:1281
8950 " guestfs_drop_caches (guestfs_h *g,\n"
8951 " int whattodrop);\n"
8957 #: ../src/guestfs-actions.pod:1285 ../fish/guestfish-actions.pod:857
8959 "This instructs the guest kernel to drop its page cache, and/or dentries and "
8960 "inode caches. The parameter C<whattodrop> tells the kernel what precisely "
8961 "to drop, see L<http://linux-mm.org/Drop_Caches>"
8966 #: ../src/guestfs-actions.pod:1290 ../fish/guestfish-actions.pod:862
8967 msgid "Setting C<whattodrop> to 3 should drop everything."
8972 #: ../src/guestfs-actions.pod:1292 ../fish/guestfish-actions.pod:864
8974 "This automatically calls L<sync(2)> before the operation, so that the "
8975 "maximum guest memory is freed."
8980 #: ../src/guestfs-actions.pod:1299
8986 #: ../src/guestfs-actions.pod:1301
8990 " guestfs_du (guestfs_h *g,\n"
8991 " const char *path);\n"
8997 #: ../src/guestfs-actions.pod:1305 ../fish/guestfish-actions.pod:871
8999 "This command runs the C<du -s> command to estimate file space usage for "
9005 #: ../src/guestfs-actions.pod:1308 ../fish/guestfish-actions.pod:874
9007 "C<path> can be a file or a directory. If C<path> is a directory then the "
9008 "estimate includes the contents of the directory and all subdirectories "
9014 #: ../src/guestfs-actions.pod:1312 ../fish/guestfish-actions.pod:878
9016 "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
9021 #: ../src/guestfs-actions.pod:1324
9022 msgid "guestfs_e2fsck_f"
9027 #: ../src/guestfs-actions.pod:1326
9031 " guestfs_e2fsck_f (guestfs_h *g,\n"
9032 " const char *device);\n"
9038 #: ../src/guestfs-actions.pod:1330 ../fish/guestfish-actions.pod:885
9040 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
9041 "on C<device>, noninteractively (C<-p>), even if the filesystem appears to be "
9047 #: ../src/guestfs-actions.pod:1334
9049 "This command is only needed because of C<guestfs_resize2fs> (q.v.). "
9050 "Normally you should use C<guestfs_fsck>."
9055 #: ../src/guestfs-actions.pod:1339
9056 msgid "(Added in 1.0.29)"
9061 #: ../src/guestfs-actions.pod:1341
9062 msgid "guestfs_echo_daemon"
9067 #: ../src/guestfs-actions.pod:1343
9071 " guestfs_echo_daemon (guestfs_h *g,\n"
9072 " char *const *words);\n"
9078 #: ../src/guestfs-actions.pod:1347 ../fish/guestfish-actions.pod:896
9080 "This command concatenates the list of C<words> passed with single spaces "
9081 "between them and returns the resulting string."
9086 #: ../src/guestfs-actions.pod:1350 ../fish/guestfish-actions.pod:899
9087 msgid "You can use this command to test the connection through to the daemon."
9092 #: ../src/guestfs-actions.pod:1352
9093 msgid "See also C<guestfs_ping_daemon>."
9098 #: ../src/guestfs-actions.pod:1357 ../src/guestfs-actions.pod:2094
9099 #: ../src/guestfs-actions.pod:6051
9100 msgid "(Added in 1.0.69)"
9105 #: ../src/guestfs-actions.pod:1359
9106 msgid "guestfs_egrep"
9111 #: ../src/guestfs-actions.pod:1361
9115 " guestfs_egrep (guestfs_h *g,\n"
9116 " const char *regex,\n"
9117 " const char *path);\n"
9123 #: ../src/guestfs-actions.pod:1366 ../fish/guestfish-actions.pod:907
9125 "This calls the external C<egrep> program and returns the matching lines."
9130 #: ../src/guestfs-actions.pod:1376 ../src/guestfs-actions.pod:1395
9131 #: ../src/guestfs-actions.pod:1452 ../src/guestfs-actions.pod:1498
9132 #: ../src/guestfs-actions.pod:1517 ../src/guestfs-actions.pod:2224
9133 #: ../src/guestfs-actions.pod:2243 ../src/guestfs-actions.pod:2399
9134 #: ../src/guestfs-actions.pod:2412 ../src/guestfs-actions.pod:2427
9135 #: ../src/guestfs-actions.pod:2473 ../src/guestfs-actions.pod:2495
9136 #: ../src/guestfs-actions.pod:2508 ../src/guestfs-actions.pod:3648
9137 #: ../src/guestfs-actions.pod:3662 ../src/guestfs-actions.pod:3675
9138 #: ../src/guestfs-actions.pod:3689 ../src/guestfs-actions.pod:4675
9139 #: ../src/guestfs-actions.pod:5551 ../src/guestfs-actions.pod:5600
9140 #: ../src/guestfs-actions.pod:6419 ../src/guestfs-actions.pod:6431
9141 #: ../src/guestfs-actions.pod:6444 ../src/guestfs-actions.pod:6457
9142 #: ../src/guestfs-actions.pod:6479 ../src/guestfs-actions.pod:6492
9143 #: ../src/guestfs-actions.pod:6505 ../src/guestfs-actions.pod:6518
9144 #: ../src/guestfs-actions.pod:7289 ../src/guestfs-actions.pod:7308
9145 #: ../src/guestfs-actions.pod:7393 ../src/guestfs-actions.pod:7412
9146 #: ../src/guestfs-actions.pod:7458 ../src/guestfs-actions.pod:7477
9147 msgid "(Added in 1.0.66)"
9152 #: ../src/guestfs-actions.pod:1378
9153 msgid "guestfs_egrepi"
9158 #: ../src/guestfs-actions.pod:1380
9162 " guestfs_egrepi (guestfs_h *g,\n"
9163 " const char *regex,\n"
9164 " const char *path);\n"
9170 #: ../src/guestfs-actions.pod:1385 ../fish/guestfish-actions.pod:917
9172 "This calls the external C<egrep -i> program and returns the matching lines."
9177 #: ../src/guestfs-actions.pod:1397
9178 msgid "guestfs_equal"
9183 #: ../src/guestfs-actions.pod:1399
9187 " guestfs_equal (guestfs_h *g,\n"
9188 " const char *file1,\n"
9189 " const char *file2);\n"
9195 #: ../src/guestfs-actions.pod:1404 ../fish/guestfish-actions.pod:927
9197 "This compares the two files C<file1> and C<file2> and returns true if their "
9198 "content is exactly equal, or false otherwise."
9203 #: ../src/guestfs-actions.pod:1407 ../fish/guestfish-actions.pod:930
9204 msgid "The external L<cmp(1)> program is used for the comparison."
9209 #: ../src/guestfs-actions.pod:1413
9210 msgid "guestfs_exists"
9215 #: ../src/guestfs-actions.pod:1415
9219 " guestfs_exists (guestfs_h *g,\n"
9220 " const char *path);\n"
9226 #: ../src/guestfs-actions.pod:1419 ../fish/guestfish-actions.pod:936
9228 "This returns C<true> if and only if there is a file, directory (or anything) "
9229 "with the given C<path> name."
9234 #: ../src/guestfs-actions.pod:1422
9235 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
9240 #: ../src/guestfs-actions.pod:1428
9241 msgid "guestfs_fallocate"
9246 #: ../src/guestfs-actions.pod:1430
9250 " guestfs_fallocate (guestfs_h *g,\n"
9251 " const char *path,\n"
9258 #: ../src/guestfs-actions.pod:1435 ../src/guestfs-actions.pod:1461
9259 #: ../fish/guestfish-actions.pod:945 ../fish/guestfish-actions.pod:964
9261 "This command preallocates a file (containing zero bytes) named C<path> of "
9262 "size C<len> bytes. If the file exists already, it is overwritten."
9267 #: ../src/guestfs-actions.pod:1439 ../fish/guestfish-actions.pod:949
9269 "Do not confuse this with the guestfish-specific C<alloc> command which "
9270 "allocates a file in the host and attaches it as a device."
9275 #: ../src/guestfs-actions.pod:1445 ../fish/guestfish-actions.pod:953
9277 "This function is deprecated. In new code, use the C<fallocate64> call "
9283 #: ../src/guestfs-actions.pod:1454
9284 msgid "guestfs_fallocate64"
9289 #: ../src/guestfs-actions.pod:1456
9293 " guestfs_fallocate64 (guestfs_h *g,\n"
9294 " const char *path,\n"
9301 #: ../src/guestfs-actions.pod:1465
9303 "Note that this call allocates disk blocks for the file. To create a sparse "
9304 "file use C<guestfs_truncate_size> instead."
9309 #: ../src/guestfs-actions.pod:1468
9311 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
9312 "oversight it only allowed 30 bit lengths to be specified, effectively "
9313 "limiting the maximum size of files created through that call to 1GB."
9318 #: ../src/guestfs-actions.pod:1473 ../fish/guestfish-actions.pod:976
9320 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
9321 "commands which create a file in the host and attach it as a device."
9326 #: ../src/guestfs-actions.pod:1479
9327 msgid "(Added in 1.3.17)"
9332 #: ../src/guestfs-actions.pod:1481
9333 msgid "guestfs_fgrep"
9338 #: ../src/guestfs-actions.pod:1483
9342 " guestfs_fgrep (guestfs_h *g,\n"
9343 " const char *pattern,\n"
9344 " const char *path);\n"
9350 #: ../src/guestfs-actions.pod:1488 ../fish/guestfish-actions.pod:984
9352 "This calls the external C<fgrep> program and returns the matching lines."
9357 #: ../src/guestfs-actions.pod:1500
9358 msgid "guestfs_fgrepi"
9363 #: ../src/guestfs-actions.pod:1502
9367 " guestfs_fgrepi (guestfs_h *g,\n"
9368 " const char *pattern,\n"
9369 " const char *path);\n"
9375 #: ../src/guestfs-actions.pod:1507 ../fish/guestfish-actions.pod:994
9377 "This calls the external C<fgrep -i> program and returns the matching lines."
9382 #: ../src/guestfs-actions.pod:1519
9383 msgid "guestfs_file"
9388 #: ../src/guestfs-actions.pod:1521
9392 " guestfs_file (guestfs_h *g,\n"
9393 " const char *path);\n"
9399 #: ../src/guestfs-actions.pod:1525 ../fish/guestfish-actions.pod:1004
9401 "This call uses the standard L<file(1)> command to determine the type or "
9402 "contents of the file."
9407 #: ../src/guestfs-actions.pod:1528 ../fish/guestfish-actions.pod:1007
9409 "This call will also transparently look inside various types of compressed "
9415 #: ../src/guestfs-actions.pod:1531 ../fish/guestfish-actions.pod:1010
9417 "The exact command which runs is C<file -zb path>. Note in particular that "
9418 "the filename is not prepended to the output (the C<-b> option)."
9423 #: ../src/guestfs-actions.pod:1535
9425 "This command can also be used on C</dev/> devices (and partitions, LV "
9426 "names). You can for example use this to determine if a device contains a "
9427 "filesystem, although it's usually better to use C<guestfs_vfs_type>."
9432 #: ../src/guestfs-actions.pod:1540 ../fish/guestfish-actions.pod:1019
9434 "If the C<path> does not begin with C</dev/> then this command only works for "
9435 "the content of regular files. For other file types (directory, symbolic "
9436 "link etc) it will just return the string C<directory> etc."
9441 #: ../src/guestfs-actions.pod:1550
9442 msgid "guestfs_file_architecture"
9447 #: ../src/guestfs-actions.pod:1552
9451 " guestfs_file_architecture (guestfs_h *g,\n"
9452 " const char *filename);\n"
9458 #: ../src/guestfs-actions.pod:1556 ../fish/guestfish-actions.pod:1028
9460 "This detects the architecture of the binary C<filename>, and returns it if "
9466 #: ../src/guestfs-actions.pod:1559 ../fish/guestfish-actions.pod:1031
9467 msgid "Currently defined architectures are:"
9472 #: ../src/guestfs-actions.pod:1563 ../fish/guestfish-actions.pod:1035
9478 #: ../src/guestfs-actions.pod:1565 ../fish/guestfish-actions.pod:1037
9480 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
9481 "irrespective of the precise processor requirements of the binary."
9486 #: ../src/guestfs-actions.pod:1568 ../fish/guestfish-actions.pod:1040
9492 #: ../src/guestfs-actions.pod:1570 ../fish/guestfish-actions.pod:1042
9493 msgid "64 bit x86-64."
9498 #: ../src/guestfs-actions.pod:1572 ../fish/guestfish-actions.pod:1044
9504 #: ../src/guestfs-actions.pod:1574 ../fish/guestfish-actions.pod:1046
9505 msgid "32 bit SPARC."
9510 #: ../src/guestfs-actions.pod:1576 ../fish/guestfish-actions.pod:1048
9516 #: ../src/guestfs-actions.pod:1578 ../fish/guestfish-actions.pod:1050
9517 msgid "64 bit SPARC V9 and above."
9522 #: ../src/guestfs-actions.pod:1580 ../fish/guestfish-actions.pod:1052
9528 #: ../src/guestfs-actions.pod:1582 ../fish/guestfish-actions.pod:1054
9529 msgid "Intel Itanium."
9534 #: ../src/guestfs-actions.pod:1584 ../fish/guestfish-actions.pod:1056
9540 #: ../src/guestfs-actions.pod:1586 ../fish/guestfish-actions.pod:1058
9541 msgid "32 bit Power PC."
9546 #: ../src/guestfs-actions.pod:1588 ../fish/guestfish-actions.pod:1060
9552 #: ../src/guestfs-actions.pod:1590 ../fish/guestfish-actions.pod:1062
9553 msgid "64 bit Power PC."
9558 #: ../src/guestfs-actions.pod:1594 ../fish/guestfish-actions.pod:1066
9559 msgid "Libguestfs may return other architecture strings in future."
9564 #: ../src/guestfs-actions.pod:1596 ../fish/guestfish-actions.pod:1068
9565 msgid "The function works on at least the following types of files:"
9570 #: ../src/guestfs-actions.pod:1602 ../fish/guestfish-actions.pod:1074
9571 msgid "many types of Un*x and Linux binary"
9576 #: ../src/guestfs-actions.pod:1606 ../fish/guestfish-actions.pod:1078
9577 msgid "many types of Un*x and Linux shared library"
9582 #: ../src/guestfs-actions.pod:1610 ../fish/guestfish-actions.pod:1082
9583 msgid "Windows Win32 and Win64 binaries"
9588 #: ../src/guestfs-actions.pod:1614 ../fish/guestfish-actions.pod:1086
9589 msgid "Windows Win32 and Win64 DLLs"
9594 #: ../src/guestfs-actions.pod:1616 ../fish/guestfish-actions.pod:1088
9595 msgid "Win32 binaries and DLLs return C<i386>."
9600 #: ../src/guestfs-actions.pod:1618 ../fish/guestfish-actions.pod:1090
9601 msgid "Win64 binaries and DLLs return C<x86_64>."
9606 #: ../src/guestfs-actions.pod:1622 ../fish/guestfish-actions.pod:1094
9607 msgid "Linux kernel modules"
9612 #: ../src/guestfs-actions.pod:1626 ../fish/guestfish-actions.pod:1098
9613 msgid "Linux new-style initrd images"
9618 #: ../src/guestfs-actions.pod:1630 ../fish/guestfish-actions.pod:1102
9619 msgid "some non-x86 Linux vmlinuz kernels"
9624 #: ../src/guestfs-actions.pod:1634 ../fish/guestfish-actions.pod:1106
9625 msgid "What it can't do currently:"
9630 #: ../src/guestfs-actions.pod:1640 ../fish/guestfish-actions.pod:1112
9631 msgid "static libraries (libfoo.a)"
9636 #: ../src/guestfs-actions.pod:1644 ../fish/guestfish-actions.pod:1116
9637 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
9642 #: ../src/guestfs-actions.pod:1648 ../fish/guestfish-actions.pod:1120
9643 msgid "x86 Linux vmlinuz kernels"
9648 #: ../src/guestfs-actions.pod:1650 ../fish/guestfish-actions.pod:1122
9650 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
9651 "compressed code, and are horribly hard to unpack. If you want to find the "
9652 "architecture of a kernel, use the architecture of the associated initrd or "
9653 "kernel module(s) instead."
9658 #: ../src/guestfs-actions.pod:1660 ../src/guestfs-actions.pod:1823
9659 #: ../src/guestfs-actions.pod:1840 ../src/guestfs-actions.pod:2531
9660 #: ../src/guestfs-actions.pod:2616 ../src/guestfs-actions.pod:2686
9661 #: ../src/guestfs-actions.pod:2774 ../src/guestfs-actions.pod:2795
9662 #: ../src/guestfs-actions.pod:2838 ../src/guestfs-actions.pod:2922
9663 #: ../src/guestfs-actions.pod:3019 ../src/guestfs-actions.pod:3266
9664 #: ../src/guestfs-actions.pod:3398
9665 msgid "(Added in 1.5.3)"
9670 #: ../src/guestfs-actions.pod:1662
9671 msgid "guestfs_filesize"
9676 #: ../src/guestfs-actions.pod:1664
9680 " guestfs_filesize (guestfs_h *g,\n"
9681 " const char *file);\n"
9687 #: ../src/guestfs-actions.pod:1668 ../fish/guestfish-actions.pod:1133
9688 msgid "This command returns the size of C<file> in bytes."
9693 #: ../src/guestfs-actions.pod:1670
9695 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
9696 "C<guestfs_is_dir>, C<guestfs_is_file> etc. To get the size of block "
9697 "devices, use C<guestfs_blockdev_getsize64>."
9702 #: ../src/guestfs-actions.pod:1676
9703 msgid "(Added in 1.0.82)"
9708 #: ../src/guestfs-actions.pod:1678
9709 msgid "guestfs_fill"
9714 #: ../src/guestfs-actions.pod:1680
9718 " guestfs_fill (guestfs_h *g,\n"
9721 " const char *path);\n"
9727 #: ../src/guestfs-actions.pod:1686 ../fish/guestfish-actions.pod:1143
9729 "This command creates a new file called C<path>. The initial content of the "
9730 "file is C<len> octets of C<c>, where C<c> must be a number in the range C<"
9736 #: ../src/guestfs-actions.pod:1690
9738 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
9739 "C<guestfs_truncate_size>. To create a file with a pattern of repeating "
9740 "bytes use C<guestfs_fill_pattern>."
9745 #: ../src/guestfs-actions.pod:1702
9746 msgid "(Added in 1.0.79)"
9751 #: ../src/guestfs-actions.pod:1704
9752 msgid "guestfs_fill_pattern"
9757 #: ../src/guestfs-actions.pod:1706
9761 " guestfs_fill_pattern (guestfs_h *g,\n"
9762 " const char *pattern,\n"
9764 " const char *path);\n"
9770 #: ../src/guestfs-actions.pod:1712
9772 "This function is like C<guestfs_fill> except that it creates a new file of "
9773 "length C<len> containing the repeating pattern of bytes in C<pattern>. The "
9774 "pattern is truncated if necessary to ensure the length of the file is "
9775 "exactly C<len> bytes."
9780 #: ../src/guestfs-actions.pod:1724
9781 msgid "(Added in 1.3.12)"
9786 #: ../src/guestfs-actions.pod:1726
9787 msgid "guestfs_find"
9792 #: ../src/guestfs-actions.pod:1728
9796 " guestfs_find (guestfs_h *g,\n"
9797 " const char *directory);\n"
9803 #: ../src/guestfs-actions.pod:1732 ../fish/guestfish-actions.pod:1165
9805 "This command lists out all files and directories, recursively, starting at "
9806 "C<directory>. It is essentially equivalent to running the shell command "
9807 "C<find directory -print> but some post-processing happens on the output, "
9813 #: ../src/guestfs-actions.pod:1737 ../fish/guestfish-actions.pod:1170
9815 "This returns a list of strings I<without any prefix>. Thus if the directory "
9821 #: ../src/guestfs-actions.pod:1740 ../fish/guestfish-actions.pod:1173
9832 #: ../src/guestfs-actions.pod:1744
9834 "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
9839 #: ../src/guestfs-actions.pod:1747 ../fish/guestfish-actions.pod:1180
9851 #: ../src/guestfs-actions.pod:1752 ../fish/guestfish-actions.pod:1185
9852 msgid "If C<directory> is not a directory, then this command returns an error."
9857 #: ../src/guestfs-actions.pod:1755 ../fish/guestfish-actions.pod:1188
9858 msgid "The returned list is sorted."
9863 #: ../src/guestfs-actions.pod:1757
9864 msgid "See also C<guestfs_find0>."
9869 #: ../src/guestfs-actions.pod:1766 ../src/guestfs-actions.pod:4092
9870 #: ../src/guestfs-actions.pod:5635
9871 msgid "(Added in 1.0.27)"
9876 #: ../src/guestfs-actions.pod:1768
9877 msgid "guestfs_find0"
9882 #: ../src/guestfs-actions.pod:1770
9886 " guestfs_find0 (guestfs_h *g,\n"
9887 " const char *directory,\n"
9888 " const char *files);\n"
9894 #: ../src/guestfs-actions.pod:1775 ../fish/guestfish-actions.pod:1199
9896 "This command lists out all files and directories, recursively, starting at "
9897 "C<directory>, placing the resulting list in the external file called "
9903 #: ../src/guestfs-actions.pod:1779
9905 "This command works the same way as C<guestfs_find> with the following "
9911 #: ../src/guestfs-actions.pod:1786 ../fish/guestfish-actions.pod:1210
9912 msgid "The resulting list is written to an external file."
9917 #: ../src/guestfs-actions.pod:1790 ../fish/guestfish-actions.pod:1214
9919 "Items (filenames) in the result are separated by C<\\0> characters. See "
9920 "L<find(1)> option I<-print0>."
9925 #: ../src/guestfs-actions.pod:1795 ../fish/guestfish-actions.pod:1219
9926 msgid "This command is not limited in the number of names that it can return."
9931 #: ../src/guestfs-actions.pod:1800 ../fish/guestfish-actions.pod:1224
9932 msgid "The result list is not sorted."
9937 #: ../src/guestfs-actions.pod:1806
9938 msgid "(Added in 1.0.74)"
9943 #: ../src/guestfs-actions.pod:1808
9944 msgid "guestfs_findfs_label"
9949 #: ../src/guestfs-actions.pod:1810
9953 " guestfs_findfs_label (guestfs_h *g,\n"
9954 " const char *label);\n"
9960 #: ../src/guestfs-actions.pod:1814 ../fish/guestfish-actions.pod:1234
9962 "This command searches the filesystems and returns the one which has the "
9963 "given label. An error is returned if no such filesystem can be found."
9968 #: ../src/guestfs-actions.pod:1818
9969 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
9974 #: ../src/guestfs-actions.pod:1825
9975 msgid "guestfs_findfs_uuid"
9980 #: ../src/guestfs-actions.pod:1827
9984 " guestfs_findfs_uuid (guestfs_h *g,\n"
9985 " const char *uuid);\n"
9991 #: ../src/guestfs-actions.pod:1831 ../fish/guestfish-actions.pod:1244
9993 "This command searches the filesystems and returns the one which has the "
9994 "given UUID. An error is returned if no such filesystem can be found."
9999 #: ../src/guestfs-actions.pod:1835
10000 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
10005 #: ../src/guestfs-actions.pod:1842
10006 msgid "guestfs_fsck"
10011 #: ../src/guestfs-actions.pod:1844
10015 " guestfs_fsck (guestfs_h *g,\n"
10016 " const char *fstype,\n"
10017 " const char *device);\n"
10023 #: ../src/guestfs-actions.pod:1849 ../fish/guestfish-actions.pod:1254
10025 "This runs the filesystem checker (fsck) on C<device> which should have "
10026 "filesystem type C<fstype>."
10031 #: ../src/guestfs-actions.pod:1852 ../fish/guestfish-actions.pod:1257
10033 "The returned integer is the status. See L<fsck(8)> for the list of status "
10034 "codes from C<fsck>."
10039 #: ../src/guestfs-actions.pod:1861 ../fish/guestfish-actions.pod:1266
10040 msgid "Multiple status codes can be summed together."
10045 #: ../src/guestfs-actions.pod:1865 ../fish/guestfish-actions.pod:1270
10047 "A non-zero return code can mean \"success\", for example if errors have been "
10048 "corrected on the filesystem."
10053 #: ../src/guestfs-actions.pod:1870 ../fish/guestfish-actions.pod:1275
10054 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
10059 #: ../src/guestfs-actions.pod:1875 ../fish/guestfish-actions.pod:1280
10061 "This command is entirely equivalent to running C<fsck -a -t fstype device>."
10066 #: ../src/guestfs-actions.pod:1879 ../src/guestfs-actions.pod:7331
10067 msgid "(Added in 1.0.16)"
10072 #: ../src/guestfs-actions.pod:1881
10073 msgid "guestfs_get_append"
10078 #: ../src/guestfs-actions.pod:1883
10082 " guestfs_get_append (guestfs_h *g);\n"
10088 #: ../src/guestfs-actions.pod:1886 ../fish/guestfish-actions.pod:1286
10090 "Return the additional kernel options which are added to the guest kernel "
10096 #: ../src/guestfs-actions.pod:1889 ../fish/guestfish-actions.pod:1289
10097 msgid "If C<NULL> then no options are added."
10102 #: ../src/guestfs-actions.pod:1891
10104 "This function returns a string which may be NULL. There is no way to return "
10105 "an error from this function. The string is owned by the guest handle and "
10106 "must I<not> be freed."
10111 #: ../src/guestfs-actions.pod:1895 ../src/guestfs-actions.pod:5313
10112 #: ../src/guestfs-actions.pod:5793 ../src/guestfs-actions.pod:6193
10113 #: ../src/guestfs-actions.pod:6212 ../src/guestfs-actions.pod:6228
10114 #: ../src/guestfs-actions.pod:6245 ../src/guestfs-actions.pod:7002
10115 #: ../src/guestfs-actions.pod:7020 ../src/guestfs-actions.pod:7374
10116 msgid "(Added in 1.0.26)"
10120 #: ../src/guestfs-actions.pod:1897
10121 msgid "guestfs_get_attach_method"
10125 #: ../src/guestfs-actions.pod:1899
10129 " guestfs_get_attach_method (guestfs_h *g);\n"
10134 #: ../src/guestfs-actions.pod:1902
10135 msgid "Return the current attach method. See C<guestfs_set_attach_method>."
10140 #: ../src/guestfs-actions.pod:1907
10141 msgid "guestfs_get_autosync"
10146 #: ../src/guestfs-actions.pod:1909
10150 " guestfs_get_autosync (guestfs_h *g);\n"
10156 #: ../src/guestfs-actions.pod:1912 ../fish/guestfish-actions.pod:1301
10157 msgid "Get the autosync flag."
10162 #: ../src/guestfs-actions.pod:1918
10163 msgid "guestfs_get_direct"
10168 #: ../src/guestfs-actions.pod:1920
10172 " guestfs_get_direct (guestfs_h *g);\n"
10178 #: ../src/guestfs-actions.pod:1923 ../fish/guestfish-actions.pod:1307
10179 msgid "Return the direct appliance mode flag."
10184 #: ../src/guestfs-actions.pod:1927 ../src/guestfs-actions.pod:5862
10185 msgid "(Added in 1.0.72)"
10190 #: ../src/guestfs-actions.pod:1929
10191 msgid "guestfs_get_e2label"
10196 #: ../src/guestfs-actions.pod:1931
10200 " guestfs_get_e2label (guestfs_h *g,\n"
10201 " const char *device);\n"
10207 #: ../src/guestfs-actions.pod:1935 ../fish/guestfish-actions.pod:1313
10209 "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
10214 #: ../src/guestfs-actions.pod:1941 ../fish/guestfish-actions.pod:1316
10216 "This function is deprecated. In new code, use the C<vfs_label> call instead."
10221 #: ../src/guestfs-actions.pod:1948 ../src/guestfs-actions.pod:1969
10222 #: ../src/guestfs-actions.pod:5880 ../src/guestfs-actions.pod:5899
10223 msgid "(Added in 1.0.15)"
10228 #: ../src/guestfs-actions.pod:1950
10229 msgid "guestfs_get_e2uuid"
10234 #: ../src/guestfs-actions.pod:1952
10238 " guestfs_get_e2uuid (guestfs_h *g,\n"
10239 " const char *device);\n"
10245 #: ../src/guestfs-actions.pod:1956 ../fish/guestfish-actions.pod:1327
10247 "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
10252 #: ../src/guestfs-actions.pod:1962 ../fish/guestfish-actions.pod:1330
10254 "This function is deprecated. In new code, use the C<vfs_uuid> call instead."
10259 #: ../src/guestfs-actions.pod:1971
10260 msgid "guestfs_get_memsize"
10265 #: ../src/guestfs-actions.pod:1973
10269 " guestfs_get_memsize (guestfs_h *g);\n"
10275 #: ../src/guestfs-actions.pod:1976 ../fish/guestfish-actions.pod:1341
10277 "This gets the memory size in megabytes allocated to the qemu subprocess."
10282 #: ../src/guestfs-actions.pod:1979
10284 "If C<guestfs_set_memsize> was not called on this handle, and if "
10285 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
10286 "value for memsize."
10291 #: ../src/guestfs-actions.pod:1983 ../src/guestfs-actions.pod:2064
10292 #: ../src/guestfs-actions.pod:5915 ../src/guestfs-actions.pod:6022
10293 #: ../fish/guestfish-actions.pod:1348 ../fish/guestfish-actions.pod:1399
10294 #: ../fish/guestfish-actions.pod:3985 ../fish/guestfish-actions.pod:4072
10296 "For more information on the architecture of libguestfs, see L<guestfs(3)>."
10301 #: ../src/guestfs-actions.pod:1988 ../src/guestfs-actions.pod:4383
10302 #: ../src/guestfs-actions.pod:4580 ../src/guestfs-actions.pod:4599
10303 #: ../src/guestfs-actions.pod:4618 ../src/guestfs-actions.pod:4630
10304 #: ../src/guestfs-actions.pod:4647 ../src/guestfs-actions.pod:4660
10305 #: ../src/guestfs-actions.pod:5538 ../src/guestfs-actions.pod:5920
10306 #: ../src/guestfs-actions.pod:6167 ../src/guestfs-actions.pod:6768
10307 msgid "(Added in 1.0.55)"
10312 #: ../src/guestfs-actions.pod:1990
10313 msgid "guestfs_get_network"
10318 #: ../src/guestfs-actions.pod:1992
10322 " guestfs_get_network (guestfs_h *g);\n"
10328 #: ../src/guestfs-actions.pod:1995 ../fish/guestfish-actions.pod:1355
10329 msgid "This returns the enable network flag."
10334 #: ../src/guestfs-actions.pod:1999 ../src/guestfs-actions.pod:5939
10335 msgid "(Added in 1.5.4)"
10340 #: ../src/guestfs-actions.pod:2001
10341 msgid "guestfs_get_path"
10346 #: ../src/guestfs-actions.pod:2003
10350 " guestfs_get_path (guestfs_h *g);\n"
10356 #: ../src/guestfs-actions.pod:2006 ../fish/guestfish-actions.pod:1361
10357 msgid "Return the current search path."
10362 #: ../src/guestfs-actions.pod:2008 ../fish/guestfish-actions.pod:1363
10364 "This is always non-NULL. If it wasn't set already, then this will return "
10365 "the default path."
10370 #: ../src/guestfs-actions.pod:2011 ../src/guestfs-actions.pod:2040
10372 "This function returns a string, or NULL on error. The string is owned by "
10373 "the guest handle and must I<not> be freed."
10378 #: ../src/guestfs-actions.pod:2016
10379 msgid "guestfs_get_pid"
10384 #: ../src/guestfs-actions.pod:2018
10388 " guestfs_get_pid (guestfs_h *g);\n"
10394 #: ../src/guestfs-actions.pod:2021 ../fish/guestfish-actions.pod:1372
10396 "Return the process ID of the qemu subprocess. If there is no qemu "
10397 "subprocess, then this will return an error."
10402 #: ../src/guestfs-actions.pod:2024 ../fish/guestfish-actions.pod:1375
10403 msgid "This is an internal call used for debugging and testing."
10408 #: ../src/guestfs-actions.pod:2028
10409 msgid "(Added in 1.0.56)"
10414 #: ../src/guestfs-actions.pod:2030
10415 msgid "guestfs_get_qemu"
10420 #: ../src/guestfs-actions.pod:2032
10424 " guestfs_get_qemu (guestfs_h *g);\n"
10430 #: ../src/guestfs-actions.pod:2035 ../fish/guestfish-actions.pod:1381
10431 msgid "Return the current qemu binary."
10436 #: ../src/guestfs-actions.pod:2037 ../fish/guestfish-actions.pod:1383
10438 "This is always non-NULL. If it wasn't set already, then this will return "
10439 "the default qemu binary name."
10444 #: ../src/guestfs-actions.pod:2043 ../src/guestfs-actions.pod:5984
10445 msgid "(Added in 1.0.6)"
10450 #: ../src/guestfs-actions.pod:2045
10451 msgid "guestfs_get_recovery_proc"
10456 #: ../src/guestfs-actions.pod:2047
10460 " guestfs_get_recovery_proc (guestfs_h *g);\n"
10466 #: ../src/guestfs-actions.pod:2050 ../fish/guestfish-actions.pod:1390
10467 msgid "Return the recovery process enabled flag."
10472 #: ../src/guestfs-actions.pod:2054 ../src/guestfs-actions.pod:3493
10473 #: ../src/guestfs-actions.pod:3790 ../src/guestfs-actions.pod:4190
10474 #: ../src/guestfs-actions.pod:4222 ../src/guestfs-actions.pod:5243
10475 #: ../src/guestfs-actions.pod:5586 ../src/guestfs-actions.pod:6008
10476 #: ../src/guestfs-actions.pod:6671 ../src/guestfs-actions.pod:6691
10477 #: ../src/guestfs-actions.pod:6883
10478 msgid "(Added in 1.0.77)"
10483 #: ../src/guestfs-actions.pod:2056
10484 msgid "guestfs_get_selinux"
10489 #: ../src/guestfs-actions.pod:2058
10493 " guestfs_get_selinux (guestfs_h *g);\n"
10499 #: ../src/guestfs-actions.pod:2061
10501 "This returns the current setting of the selinux flag which is passed to the "
10502 "appliance at boot time. See C<guestfs_set_selinux>."
10507 #: ../src/guestfs-actions.pod:2069 ../src/guestfs-actions.pod:2132
10508 #: ../src/guestfs-actions.pod:6027 ../src/guestfs-actions.pod:6085
10509 msgid "(Added in 1.0.67)"
10514 #: ../src/guestfs-actions.pod:2071
10515 msgid "guestfs_get_state"
10520 #: ../src/guestfs-actions.pod:2073
10524 " guestfs_get_state (guestfs_h *g);\n"
10530 #: ../src/guestfs-actions.pod:2076 ../fish/guestfish-actions.pod:1406
10532 "This returns the current state as an opaque integer. This is only useful "
10533 "for printing debug and internal error messages."
10538 #: ../src/guestfs-actions.pod:2079 ../src/guestfs-actions.pod:3291
10539 #: ../src/guestfs-actions.pod:3320 ../src/guestfs-actions.pod:3381
10540 #: ../src/guestfs-actions.pod:3408 ../fish/guestfish-actions.pod:1409
10541 #: ../fish/guestfish-actions.pod:2315 ../fish/guestfish-actions.pod:2333
10542 #: ../fish/guestfish-actions.pod:2371 ../fish/guestfish-actions.pod:2387
10543 msgid "For more information on states, see L<guestfs(3)>."
10548 #: ../src/guestfs-actions.pod:2085
10549 msgid "guestfs_get_trace"
10554 #: ../src/guestfs-actions.pod:2087
10558 " guestfs_get_trace (guestfs_h *g);\n"
10564 #: ../src/guestfs-actions.pod:2090 ../fish/guestfish-actions.pod:1415
10565 msgid "Return the command trace flag."
10570 #: ../src/guestfs-actions.pod:2096
10571 msgid "guestfs_get_umask"
10576 #: ../src/guestfs-actions.pod:2098
10580 " guestfs_get_umask (guestfs_h *g);\n"
10586 #: ../src/guestfs-actions.pod:2101
10588 "Return the current umask. By default the umask is C<022> unless it has been "
10589 "set by calling C<guestfs_umask>."
10594 #: ../src/guestfs-actions.pod:2108
10595 msgid "guestfs_get_verbose"
10600 #: ../src/guestfs-actions.pod:2110
10604 " guestfs_get_verbose (guestfs_h *g);\n"
10610 #: ../src/guestfs-actions.pod:2113 ../fish/guestfish-actions.pod:1428
10611 msgid "This returns the verbose messages flag."
10616 #: ../src/guestfs-actions.pod:2119
10617 msgid "guestfs_getcon"
10622 #: ../src/guestfs-actions.pod:2121
10626 " guestfs_getcon (guestfs_h *g);\n"
10632 #: ../src/guestfs-actions.pod:2124 ../fish/guestfish-actions.pod:1434
10633 msgid "This gets the SELinux security context of the daemon."
10638 #: ../src/guestfs-actions.pod:2126
10640 "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
10645 #: ../src/guestfs-actions.pod:2134
10646 msgid "guestfs_getxattr"
10651 #: ../src/guestfs-actions.pod:2136
10655 " guestfs_getxattr (guestfs_h *g,\n"
10656 " const char *path,\n"
10657 " const char *name,\n"
10658 " size_t *size_r);\n"
10664 #: ../src/guestfs-actions.pod:2142
10666 "Get a single extended attribute from file C<path> named C<name>. This call "
10667 "follows symlinks. If you want to lookup an extended attribute for the "
10668 "symlink itself, use C<guestfs_lgetxattr>."
10673 #: ../src/guestfs-actions.pod:2146 ../src/guestfs-actions.pod:3507
10675 "Normally it is better to get all extended attributes from a file in one go "
10676 "by calling C<guestfs_getxattrs>. However some Linux filesystem "
10677 "implementations are buggy and do not provide a way to list out attributes. "
10678 "For these filesystems (notably ntfs-3g) you have to know the names of the "
10679 "extended attributes you want in advance and call this function."
10684 #: ../src/guestfs-actions.pod:2153 ../src/guestfs-actions.pod:3514
10685 #: ../fish/guestfish-actions.pod:1454 ../fish/guestfish-actions.pod:2452
10687 "Extended attribute values are blobs of binary data. If there is no extended "
10688 "attribute named C<name>, this returns an error."
10693 #: ../src/guestfs-actions.pod:2156
10694 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
10699 #: ../src/guestfs-actions.pod:2158 ../src/guestfs-actions.pod:2349
10700 #: ../src/guestfs-actions.pod:3519 ../src/guestfs-actions.pod:5236
10701 #: ../src/guestfs-actions.pod:5262 ../src/guestfs-actions.pod:5443
10703 "This function returns a buffer, or NULL on error. The size of the returned "
10704 "buffer is written to C<*size_r>. I<The caller must free the returned buffer "
10709 #: ../src/guestfs-actions.pod:2162 ../src/guestfs-actions.pod:3523
10710 msgid "(Added in 1.7.24)"
10715 #: ../src/guestfs-actions.pod:2164
10716 msgid "guestfs_getxattrs"
10721 #: ../src/guestfs-actions.pod:2166
10724 " struct guestfs_xattr_list *\n"
10725 " guestfs_getxattrs (guestfs_h *g,\n"
10726 " const char *path);\n"
10732 #: ../src/guestfs-actions.pod:2170 ../fish/guestfish-actions.pod:1463
10734 "This call lists the extended attributes of the file or directory C<path>."
10739 #: ../src/guestfs-actions.pod:2173 ../fish/guestfish-actions.pod:1466
10741 "At the system call level, this is a combination of the L<listxattr(2)> and "
10742 "L<getxattr(2)> calls."
10747 #: ../src/guestfs-actions.pod:2176
10748 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
10753 #: ../src/guestfs-actions.pod:2178 ../src/guestfs-actions.pod:3535
10754 #: ../src/guestfs-actions.pod:4186
10756 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
10757 "an error. I<The caller must call C<guestfs_free_xattr_list> after use>."
10762 #: ../src/guestfs-actions.pod:2182 ../src/guestfs-actions.pod:3539
10763 #: ../src/guestfs-actions.pod:3704 ../src/guestfs-actions.pod:3740
10764 #: ../src/guestfs-actions.pod:5616 ../src/guestfs-actions.pod:6104
10765 #: ../src/guestfs-actions.pod:7439
10766 msgid "(Added in 1.0.59)"
10771 #: ../src/guestfs-actions.pod:2184
10772 msgid "guestfs_glob_expand"
10777 #: ../src/guestfs-actions.pod:2186
10781 " guestfs_glob_expand (guestfs_h *g,\n"
10782 " const char *pattern);\n"
10788 #: ../src/guestfs-actions.pod:2190 ../fish/guestfish-actions.pod:1475
10790 "This command searches for all the pathnames matching C<pattern> according to "
10791 "the wildcard expansion rules used by the shell."
10796 #: ../src/guestfs-actions.pod:2194 ../fish/guestfish-actions.pod:1479
10798 "If no paths match, then this returns an empty list (note: not an error)."
10803 #: ../src/guestfs-actions.pod:2197 ../fish/guestfish-actions.pod:1482
10805 "It is just a wrapper around the C L<glob(3)> function with flags C<GLOB_MARK|"
10806 "GLOB_BRACE>. See that manual page for more details."
10811 #: ../src/guestfs-actions.pod:2205 ../src/guestfs-actions.pod:6269
10812 #: ../src/guestfs-actions.pod:6286
10813 msgid "(Added in 1.0.50)"
10818 #: ../src/guestfs-actions.pod:2207
10819 msgid "guestfs_grep"
10824 #: ../src/guestfs-actions.pod:2209
10828 " guestfs_grep (guestfs_h *g,\n"
10829 " const char *regex,\n"
10830 " const char *path);\n"
10836 #: ../src/guestfs-actions.pod:2214 ../fish/guestfish-actions.pod:1490
10837 msgid "This calls the external C<grep> program and returns the matching lines."
10842 #: ../src/guestfs-actions.pod:2226
10843 msgid "guestfs_grepi"
10848 #: ../src/guestfs-actions.pod:2228
10852 " guestfs_grepi (guestfs_h *g,\n"
10853 " const char *regex,\n"
10854 " const char *path);\n"
10860 #: ../src/guestfs-actions.pod:2233 ../fish/guestfish-actions.pod:1500
10862 "This calls the external C<grep -i> program and returns the matching lines."
10867 #: ../src/guestfs-actions.pod:2245
10868 msgid "guestfs_grub_install"
10873 #: ../src/guestfs-actions.pod:2247
10877 " guestfs_grub_install (guestfs_h *g,\n"
10878 " const char *root,\n"
10879 " const char *device);\n"
10885 #: ../src/guestfs-actions.pod:2252 ../fish/guestfish-actions.pod:1510
10887 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
10888 "the root directory being C<root>."
10893 #: ../src/guestfs-actions.pod:2255 ../fish/guestfish-actions.pod:1513
10895 "Note: If grub-install reports the error \"No suitable drive was found in the "
10896 "generated device map.\" it may be that you need to create a C</boot/grub/"
10897 "device.map> file first that contains the mapping between grub device names "
10898 "and Linux device names. It is usually sufficient to create a file "
10904 #: ../src/guestfs-actions.pod:2262 ../fish/guestfish-actions.pod:1520
10907 " (hd0) /dev/vda\n"
10913 #: ../src/guestfs-actions.pod:2264 ../fish/guestfish-actions.pod:1522
10914 msgid "replacing C</dev/vda> with the name of the installation device."
10919 #: ../src/guestfs-actions.pod:2268
10920 msgid "(Added in 1.0.17)"
10925 #: ../src/guestfs-actions.pod:2270
10926 msgid "guestfs_head"
10931 #: ../src/guestfs-actions.pod:2272
10935 " guestfs_head (guestfs_h *g,\n"
10936 " const char *path);\n"
10942 #: ../src/guestfs-actions.pod:2276 ../fish/guestfish-actions.pod:1528
10944 "This command returns up to the first 10 lines of a file as a list of strings."
10949 #: ../src/guestfs-actions.pod:2288
10950 msgid "guestfs_head_n"
10955 #: ../src/guestfs-actions.pod:2290
10959 " guestfs_head_n (guestfs_h *g,\n"
10961 " const char *path);\n"
10967 #: ../src/guestfs-actions.pod:2295 ../fish/guestfish-actions.pod:1538
10969 "If the parameter C<nrlines> is a positive number, this returns the first "
10970 "C<nrlines> lines of the file C<path>."
10975 #: ../src/guestfs-actions.pod:2298 ../fish/guestfish-actions.pod:1541
10977 "If the parameter C<nrlines> is a negative number, this returns lines from "
10978 "the file C<path>, excluding the last C<nrlines> lines."
10983 #: ../src/guestfs-actions.pod:2301 ../src/guestfs-actions.pod:6566
10984 #: ../fish/guestfish-actions.pod:1544 ../fish/guestfish-actions.pod:4422
10985 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
10990 #: ../src/guestfs-actions.pod:2312
10991 msgid "guestfs_hexdump"
10996 #: ../src/guestfs-actions.pod:2314
11000 " guestfs_hexdump (guestfs_h *g,\n"
11001 " const char *path);\n"
11007 #: ../src/guestfs-actions.pod:2318 ../fish/guestfish-actions.pod:1553
11009 "This runs C<hexdump -C> on the given C<path>. The result is the human-"
11010 "readable, canonical hex dump of the file."
11015 #: ../src/guestfs-actions.pod:2327 ../src/guestfs-actions.pod:6350
11016 #: ../src/guestfs-actions.pod:6405
11017 msgid "(Added in 1.0.22)"
11022 #: ../src/guestfs-actions.pod:2329
11023 msgid "guestfs_initrd_cat"
11028 #: ../src/guestfs-actions.pod:2331
11032 " guestfs_initrd_cat (guestfs_h *g,\n"
11033 " const char *initrdpath,\n"
11034 " const char *filename,\n"
11035 " size_t *size_r);\n"
11041 #: ../src/guestfs-actions.pod:2337 ../fish/guestfish-actions.pod:1563
11043 "This command unpacks the file C<filename> from the initrd file called "
11044 "C<initrdpath>. The filename must be given I<without> the initial C</> "
11050 #: ../src/guestfs-actions.pod:2341 ../fish/guestfish-actions.pod:1567
11052 "For example, in guestfish you could use the following command to examine the "
11053 "boot script (usually called C</init>) contained in a Linux initrd or "
11059 #: ../src/guestfs-actions.pod:2345 ../fish/guestfish-actions.pod:1571
11062 " initrd-cat /boot/initrd-<version>.img init\n"
11068 #: ../src/guestfs-actions.pod:2347
11069 msgid "See also C<guestfs_initrd_list>."
11074 #: ../src/guestfs-actions.pod:2358
11075 msgid "guestfs_initrd_list"
11080 #: ../src/guestfs-actions.pod:2360
11084 " guestfs_initrd_list (guestfs_h *g,\n"
11085 " const char *path);\n"
11091 #: ../src/guestfs-actions.pod:2364 ../fish/guestfish-actions.pod:1582
11092 msgid "This command lists out files contained in an initrd."
11097 #: ../src/guestfs-actions.pod:2366 ../fish/guestfish-actions.pod:1584
11099 "The files are listed without any initial C</> character. The files are "
11100 "listed in the order they appear (not necessarily alphabetical). Directory "
11101 "names are listed as separate items."
11106 #: ../src/guestfs-actions.pod:2370 ../fish/guestfish-actions.pod:1588
11108 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
11109 "initrd. We I<only> support the newer initramfs format (compressed cpio "
11115 #: ../src/guestfs-actions.pod:2380
11116 msgid "guestfs_inotify_add_watch"
11121 #: ../src/guestfs-actions.pod:2382
11125 " guestfs_inotify_add_watch (guestfs_h *g,\n"
11126 " const char *path,\n"
11133 #: ../src/guestfs-actions.pod:2387 ../fish/guestfish-actions.pod:1596
11134 msgid "Watch C<path> for the events listed in C<mask>."
11139 #: ../src/guestfs-actions.pod:2389 ../fish/guestfish-actions.pod:1598
11141 "Note that if C<path> is a directory then events within that directory are "
11142 "watched, but this does I<not> happen recursively (in subdirectories)."
11147 #: ../src/guestfs-actions.pod:2393 ../fish/guestfish-actions.pod:1602
11149 "Note for non-C or non-Linux callers: the inotify events are defined by the "
11150 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
11155 #: ../src/guestfs-actions.pod:2401
11156 msgid "guestfs_inotify_close"
11161 #: ../src/guestfs-actions.pod:2403
11165 " guestfs_inotify_close (guestfs_h *g);\n"
11171 #: ../src/guestfs-actions.pod:2406 ../fish/guestfish-actions.pod:1610
11173 "This closes the inotify handle which was previously opened by inotify_init. "
11174 "It removes all watches, throws away any pending events, and deallocates all "
11180 #: ../src/guestfs-actions.pod:2414
11181 msgid "guestfs_inotify_files"
11186 #: ../src/guestfs-actions.pod:2416
11190 " guestfs_inotify_files (guestfs_h *g);\n"
11196 #: ../src/guestfs-actions.pod:2419
11198 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
11199 "returns a list of pathnames of objects that were touched. The returned "
11200 "pathnames are sorted and deduplicated."
11205 #: ../src/guestfs-actions.pod:2429
11206 msgid "guestfs_inotify_init"
11211 #: ../src/guestfs-actions.pod:2431
11215 " guestfs_inotify_init (guestfs_h *g,\n"
11216 " int maxevents);\n"
11222 #: ../src/guestfs-actions.pod:2435 ../fish/guestfish-actions.pod:1626
11224 "This command creates a new inotify handle. The inotify subsystem can be "
11225 "used to notify events which happen to objects in the guest filesystem."
11230 #: ../src/guestfs-actions.pod:2439
11232 "C<maxevents> is the maximum number of events which will be queued up between "
11233 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>. If this is "
11234 "passed as C<0>, then the kernel (or previously set) default is used. For "
11235 "Linux 2.6.29 the default was 16384 events. Beyond this limit, the kernel "
11236 "throws away events, but records the fact that it threw them away by setting "
11237 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
11238 "C<guestfs_inotify_read>)."
11243 #: ../src/guestfs-actions.pod:2449
11245 "Before any events are generated, you have to add some watches to the "
11246 "internal watch list. See: C<guestfs_inotify_add_watch>, "
11247 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
11252 #: ../src/guestfs-actions.pod:2455
11254 "Queued up events should be read periodically by calling "
11255 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
11256 "wrapper around C<guestfs_inotify_read>). If you don't read the events out "
11257 "often enough then you risk the internal queue overflowing."
11262 #: ../src/guestfs-actions.pod:2462
11264 "The handle should be closed after use by calling C<guestfs_inotify_close>. "
11265 "This also removes any watches automatically."
11270 #: ../src/guestfs-actions.pod:2466 ../fish/guestfish-actions.pod:1657
11272 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
11273 "by the Linux kernel, which is roughly what we expose via libguestfs. Note "
11274 "that there is one global inotify handle per libguestfs instance."
11279 #: ../src/guestfs-actions.pod:2475
11280 msgid "guestfs_inotify_read"
11285 #: ../src/guestfs-actions.pod:2477
11288 " struct guestfs_inotify_event_list *\n"
11289 " guestfs_inotify_read (guestfs_h *g);\n"
11295 #: ../src/guestfs-actions.pod:2480 ../fish/guestfish-actions.pod:1666
11297 "Return the complete queue of events that have happened since the previous "
11303 #: ../src/guestfs-actions.pod:2483 ../fish/guestfish-actions.pod:1669
11304 msgid "If no events have happened, this returns an empty list."
11309 #: ../src/guestfs-actions.pod:2485 ../fish/guestfish-actions.pod:1671
11311 "I<Note>: In order to make sure that all events have been read, you must call "
11312 "this function repeatedly until it returns an empty list. The reason is that "
11313 "the call will read events up to the maximum appliance-to-host message size "
11314 "and leave remaining events in the queue."
11319 #: ../src/guestfs-actions.pod:2491
11321 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
11322 "there was an error. I<The caller must call "
11323 "C<guestfs_free_inotify_event_list> after use>."
11328 #: ../src/guestfs-actions.pod:2497
11329 msgid "guestfs_inotify_rm_watch"
11334 #: ../src/guestfs-actions.pod:2499
11338 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
11345 #: ../src/guestfs-actions.pod:2503
11347 "Remove a previously defined inotify watch. See C<guestfs_inotify_add_watch>."
11352 #: ../src/guestfs-actions.pod:2510
11353 msgid "guestfs_inspect_get_arch"
11358 #: ../src/guestfs-actions.pod:2512
11362 " guestfs_inspect_get_arch (guestfs_h *g,\n"
11363 " const char *root);\n"
11369 #: ../src/guestfs-actions.pod:2516 ../src/guestfs-actions.pod:2539
11370 #: ../src/guestfs-actions.pod:2624 ../src/guestfs-actions.pod:2668
11371 #: ../src/guestfs-actions.pod:2694 ../src/guestfs-actions.pod:2733
11372 #: ../src/guestfs-actions.pod:2755 ../src/guestfs-actions.pod:2782
11373 #: ../src/guestfs-actions.pod:2803 ../src/guestfs-actions.pod:2846
11374 #: ../src/guestfs-actions.pod:2875 ../src/guestfs-actions.pod:2906
11375 #: ../src/guestfs-actions.pod:2930 ../src/guestfs-actions.pod:2985
11376 #: ../src/guestfs-actions.pod:3027 ../src/guestfs-actions.pod:3048
11377 #: ../src/guestfs-actions.pod:3071 ../src/guestfs-actions.pod:3088
11378 #: ../src/guestfs-actions.pod:3105 ../src/guestfs-actions.pod:3124
11380 "This function should only be called with a root device string as returned by "
11381 "C<guestfs_inspect_os>."
11386 #: ../src/guestfs-actions.pod:2519
11388 "This returns the architecture of the inspected operating system. The "
11389 "possible return values are listed under C<guestfs_file_architecture>."
11394 #: ../src/guestfs-actions.pod:2523 ../fish/guestfish-actions.pod:1695
11396 "If the architecture could not be determined, then the string C<unknown> is "
11402 #: ../src/guestfs-actions.pod:2526 ../src/guestfs-actions.pod:2611
11403 #: ../src/guestfs-actions.pod:2722 ../src/guestfs-actions.pod:2742
11404 #: ../src/guestfs-actions.pod:2770 ../src/guestfs-actions.pod:2862
11405 #: ../src/guestfs-actions.pod:2893 ../src/guestfs-actions.pod:2917
11406 #: ../src/guestfs-actions.pod:2971 ../src/guestfs-actions.pod:3014
11407 #: ../src/guestfs-actions.pod:3037 ../src/guestfs-actions.pod:3058
11408 #: ../src/guestfs-actions.pod:3078 ../src/guestfs-actions.pod:3095
11409 #: ../src/guestfs-actions.pod:3114 ../src/guestfs-actions.pod:3217
11410 #: ../src/guestfs-actions.pod:3258 ../fish/guestfish-actions.pod:1698
11411 #: ../fish/guestfish-actions.pod:1776 ../fish/guestfish-actions.pod:1864
11412 #: ../fish/guestfish-actions.pod:1879 ../fish/guestfish-actions.pod:1900
11413 #: ../fish/guestfish-actions.pod:1970 ../fish/guestfish-actions.pod:1994
11414 #: ../fish/guestfish-actions.pod:2011 ../fish/guestfish-actions.pod:2054
11415 #: ../fish/guestfish-actions.pod:2089 ../fish/guestfish-actions.pod:2105
11416 #: ../fish/guestfish-actions.pod:2121 ../fish/guestfish-actions.pod:2134
11417 #: ../fish/guestfish-actions.pod:2147 ../fish/guestfish-actions.pod:2162
11418 #: ../fish/guestfish-actions.pod:2261 ../fish/guestfish-actions.pod:2295
11419 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
11424 #: ../src/guestfs-actions.pod:2533
11425 msgid "guestfs_inspect_get_distro"
11430 #: ../src/guestfs-actions.pod:2535
11434 " guestfs_inspect_get_distro (guestfs_h *g,\n"
11435 " const char *root);\n"
11441 #: ../src/guestfs-actions.pod:2542 ../fish/guestfish-actions.pod:1707
11443 "This returns the distro (distribution) of the inspected operating system."
11448 #: ../src/guestfs-actions.pod:2545 ../fish/guestfish-actions.pod:1710
11449 msgid "Currently defined distros are:"
11454 #: ../src/guestfs-actions.pod:2549 ../fish/guestfish-actions.pod:1714
11455 msgid "\"archlinux\""
11460 #: ../src/guestfs-actions.pod:2551 ../fish/guestfish-actions.pod:1716
11461 msgid "Arch Linux."
11466 #: ../src/guestfs-actions.pod:2553 ../fish/guestfish-actions.pod:1718
11472 #: ../src/guestfs-actions.pod:2555 ../fish/guestfish-actions.pod:1720
11478 #: ../src/guestfs-actions.pod:2557 ../fish/guestfish-actions.pod:1722
11484 #: ../src/guestfs-actions.pod:2559 ../fish/guestfish-actions.pod:1724
11490 #: ../src/guestfs-actions.pod:2561 ../fish/guestfish-actions.pod:1726
11496 #: ../src/guestfs-actions.pod:2563 ../fish/guestfish-actions.pod:1728
11502 #: ../src/guestfs-actions.pod:2565 ../fish/guestfish-actions.pod:1730
11503 msgid "\"linuxmint\""
11508 #: ../src/guestfs-actions.pod:2567 ../fish/guestfish-actions.pod:1732
11509 msgid "Linux Mint."
11514 #: ../src/guestfs-actions.pod:2569 ../fish/guestfish-actions.pod:1734
11515 msgid "\"mandriva\""
11520 #: ../src/guestfs-actions.pod:2571 ../fish/guestfish-actions.pod:1736
11526 #: ../src/guestfs-actions.pod:2573 ../fish/guestfish-actions.pod:1738
11532 #: ../src/guestfs-actions.pod:2575 ../fish/guestfish-actions.pod:1740
11538 #: ../src/guestfs-actions.pod:2577 ../fish/guestfish-actions.pod:1742
11544 #: ../src/guestfs-actions.pod:2579 ../fish/guestfish-actions.pod:1744
11550 #: ../src/guestfs-actions.pod:2581 ../fish/guestfish-actions.pod:1746
11551 msgid "\"redhat-based\""
11556 #: ../src/guestfs-actions.pod:2583 ../fish/guestfish-actions.pod:1748
11557 msgid "Some Red Hat-derived distro."
11562 #: ../src/guestfs-actions.pod:2585 ../fish/guestfish-actions.pod:1750
11568 #: ../src/guestfs-actions.pod:2587 ../fish/guestfish-actions.pod:1752
11569 msgid "Red Hat Enterprise Linux and some derivatives."
11573 #: ../src/guestfs-actions.pod:2589 ../fish/guestfish-actions.pod:1754
11574 msgid "\"slackware\""
11578 #: ../src/guestfs-actions.pod:2591 ../fish/guestfish-actions.pod:1756
11584 #: ../src/guestfs-actions.pod:2593 ../fish/guestfish-actions.pod:1758
11590 #: ../src/guestfs-actions.pod:2595 ../fish/guestfish-actions.pod:1760
11596 #: ../src/guestfs-actions.pod:2597 ../src/guestfs-actions.pod:2713
11597 #: ../src/guestfs-actions.pod:3005 ../fish/guestfish-actions.pod:1762
11598 #: ../fish/guestfish-actions.pod:1855 ../fish/guestfish-actions.pod:2080
11599 msgid "\"unknown\""
11604 #: ../src/guestfs-actions.pod:2599 ../fish/guestfish-actions.pod:1764
11605 msgid "The distro could not be determined."
11610 #: ../src/guestfs-actions.pod:2601 ../src/guestfs-actions.pod:2997
11611 #: ../fish/guestfish-actions.pod:1766 ../fish/guestfish-actions.pod:2072
11612 msgid "\"windows\""
11617 #: ../src/guestfs-actions.pod:2603 ../fish/guestfish-actions.pod:1768
11619 "Windows does not have distributions. This string is returned if the OS type "
11625 #: ../src/guestfs-actions.pod:2608 ../src/guestfs-actions.pod:2719
11626 #: ../src/guestfs-actions.pod:3011 ../fish/guestfish-actions.pod:1773
11627 #: ../fish/guestfish-actions.pod:1861 ../fish/guestfish-actions.pod:2086
11629 "Future versions of libguestfs may return other strings here. The caller "
11630 "should be prepared to handle any string."
11634 #: ../src/guestfs-actions.pod:2618
11635 msgid "guestfs_inspect_get_drive_mappings"
11639 #: ../src/guestfs-actions.pod:2620
11643 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
11644 " const char *root);\n"
11649 #: ../src/guestfs-actions.pod:2627 ../fish/guestfish-actions.pod:1785
11651 "This call is useful for Windows which uses a primitive system of assigning "
11652 "drive letters (like \"C:\") to partitions. This inspection API examines the "
11653 "Windows Registry to find out how disks/partitions are mapped to drive "
11654 "letters, and returns a hash table as in the example below:"
11658 #: ../src/guestfs-actions.pod:2633 ../fish/guestfish-actions.pod:1791
11661 " C => /dev/vda2\n"
11662 " E => /dev/vdb1\n"
11663 " F => /dev/vdc1\n"
11668 #: ../src/guestfs-actions.pod:2637 ../fish/guestfish-actions.pod:1795
11670 "Note that keys are drive letters. For Windows, the key is case insensitive "
11671 "and just contains the drive letter, without the customary colon separator "
11676 #: ../src/guestfs-actions.pod:2641 ../fish/guestfish-actions.pod:1799
11678 "In future we may support other operating systems that also used drive "
11679 "letters, but the keys for those might not be case insensitive and might be "
11680 "longer than 1 character. For example in OS-9, hard drives were named C<h0>, "
11685 #: ../src/guestfs-actions.pod:2646 ../fish/guestfish-actions.pod:1804
11687 "For Windows guests, currently only hard drive mappings are returned. "
11688 "Removable disks (eg. DVD-ROMs) are ignored."
11692 #: ../src/guestfs-actions.pod:2649 ../fish/guestfish-actions.pod:1807
11694 "For guests that do not use drive mappings, or if the drive mappings could "
11695 "not be determined, this returns an empty hash table."
11699 #: ../src/guestfs-actions.pod:2652
11701 "Please read L<guestfs(3)/INSPECTION> for more details. See also "
11702 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
11707 #: ../src/guestfs-actions.pod:2656 ../src/guestfs-actions.pod:2832
11708 #: ../src/guestfs-actions.pod:3592 ../src/guestfs-actions.pod:4802
11709 #: ../src/guestfs-actions.pod:6707
11711 "This function returns a NULL-terminated array of strings, or NULL if there "
11712 "was an error. The array of strings will always have length C<2n+1>, where "
11713 "C<n> keys and values alternate, followed by the trailing NULL entry. I<The "
11714 "caller must free the strings and the array after use>."
11719 #: ../src/guestfs-actions.pod:2662
11720 msgid "guestfs_inspect_get_filesystems"
11725 #: ../src/guestfs-actions.pod:2664
11729 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
11730 " const char *root);\n"
11736 #: ../src/guestfs-actions.pod:2671 ../fish/guestfish-actions.pod:1821
11738 "This returns a list of all the filesystems that we think are associated with "
11739 "this operating system. This includes the root filesystem, other ordinary "
11740 "filesystems, and non-mounted devices like swap partitions."
11745 #: ../src/guestfs-actions.pod:2676 ../fish/guestfish-actions.pod:1826
11747 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
11748 "to be shared between operating systems."
11753 #: ../src/guestfs-actions.pod:2679
11755 "Please read L<guestfs(3)/INSPECTION> for more details. See also "
11756 "C<guestfs_inspect_get_mountpoints>."
11760 #: ../src/guestfs-actions.pod:2688
11761 msgid "guestfs_inspect_get_format"
11765 #: ../src/guestfs-actions.pod:2690
11769 " guestfs_inspect_get_format (guestfs_h *g,\n"
11770 " const char *root);\n"
11775 #: ../src/guestfs-actions.pod:2697 ../fish/guestfish-actions.pod:1839
11777 "This returns the format of the inspected operating system. You can use it "
11778 "to detect install images, live CDs and similar."
11782 #: ../src/guestfs-actions.pod:2700 ../fish/guestfish-actions.pod:1842
11783 msgid "Currently defined formats are:"
11787 #: ../src/guestfs-actions.pod:2704 ../fish/guestfish-actions.pod:1846
11788 msgid "\"installed\""
11792 #: ../src/guestfs-actions.pod:2706 ../fish/guestfish-actions.pod:1848
11793 msgid "This is an installed operating system."
11797 #: ../src/guestfs-actions.pod:2708 ../fish/guestfish-actions.pod:1850
11798 msgid "\"installer\""
11802 #: ../src/guestfs-actions.pod:2710 ../fish/guestfish-actions.pod:1852
11804 "The disk image being inspected is not an installed operating system, but a "
11805 "I<bootable> install disk, live CD, or similar."
11809 #: ../src/guestfs-actions.pod:2715 ../fish/guestfish-actions.pod:1857
11810 msgid "The format of this disk image is not known."
11815 #: ../src/guestfs-actions.pod:2727
11816 msgid "guestfs_inspect_get_hostname"
11821 #: ../src/guestfs-actions.pod:2729
11825 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
11826 " const char *root);\n"
11832 #: ../src/guestfs-actions.pod:2736 ../fish/guestfish-actions.pod:1873
11834 "This function returns the hostname of the operating system as found by "
11835 "inspection of the guest's configuration files."
11840 #: ../src/guestfs-actions.pod:2739 ../fish/guestfish-actions.pod:1876
11842 "If the hostname could not be determined, then the string C<unknown> is "
11848 #: ../src/guestfs-actions.pod:2747
11849 msgid "(Added in 1.7.9)"
11854 #: ../src/guestfs-actions.pod:2749
11855 msgid "guestfs_inspect_get_major_version"
11860 #: ../src/guestfs-actions.pod:2751
11864 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
11865 " const char *root);\n"
11871 #: ../src/guestfs-actions.pod:2758 ../fish/guestfish-actions.pod:1888
11873 "This returns the major version number of the inspected operating system."
11878 #: ../src/guestfs-actions.pod:2761 ../fish/guestfish-actions.pod:1891
11880 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
11881 "popular public names used by the operating system. Notably the operating "
11882 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
11883 "1). You can find out the real versions corresponding to releases of Windows "
11884 "by consulting Wikipedia or MSDN."
11889 #: ../src/guestfs-actions.pod:2768 ../src/guestfs-actions.pod:2788
11890 #: ../fish/guestfish-actions.pod:1898 ../fish/guestfish-actions.pod:1912
11891 msgid "If the version could not be determined, then C<0> is returned."
11896 #: ../src/guestfs-actions.pod:2776
11897 msgid "guestfs_inspect_get_minor_version"
11902 #: ../src/guestfs-actions.pod:2778
11906 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
11907 " const char *root);\n"
11913 #: ../src/guestfs-actions.pod:2785 ../fish/guestfish-actions.pod:1909
11915 "This returns the minor version number of the inspected operating system."
11920 #: ../src/guestfs-actions.pod:2790
11922 "Please read L<guestfs(3)/INSPECTION> for more details. See also "
11923 "C<guestfs_inspect_get_major_version>."
11928 #: ../src/guestfs-actions.pod:2797
11929 msgid "guestfs_inspect_get_mountpoints"
11934 #: ../src/guestfs-actions.pod:2799
11938 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
11939 " const char *root);\n"
11944 #: ../src/guestfs-actions.pod:2806 ../fish/guestfish-actions.pod:1924
11946 "This returns a hash of where we think the filesystems associated with this "
11947 "operating system should be mounted. Callers should note that this is at "
11948 "best an educated guess made by reading configuration files such as C</etc/"
11949 "fstab>. I<In particular note> that this may return filesystems which are "
11950 "non-existent or not mountable and callers should be prepared to handle or "
11951 "ignore failures if they try to mount them."
11956 #: ../src/guestfs-actions.pod:2815 ../fish/guestfish-actions.pod:1933
11958 "Each element in the returned hashtable has a key which is the path of the "
11959 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
11960 "mounted there (eg. C</dev/sda1>)."
11965 #: ../src/guestfs-actions.pod:2820 ../fish/guestfish-actions.pod:1938
11967 "Non-mounted devices such as swap devices are I<not> returned in this list."
11971 #: ../src/guestfs-actions.pod:2823
11973 "For operating systems like Windows which still use drive letters, this call "
11974 "will only return an entry for the first drive \"mounted on\" C</>. For "
11975 "information about the mapping of drive letters to partitions, see "
11976 "C<guestfs_inspect_get_drive_mappings>."
11981 #: ../src/guestfs-actions.pod:2829
11983 "Please read L<guestfs(3)/INSPECTION> for more details. See also "
11984 "C<guestfs_inspect_get_filesystems>."
11989 #: ../src/guestfs-actions.pod:2840
11990 msgid "guestfs_inspect_get_package_format"
11995 #: ../src/guestfs-actions.pod:2842
11999 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
12000 " const char *root);\n"
12006 #: ../src/guestfs-actions.pod:2849
12008 "This function and C<guestfs_inspect_get_package_management> return the "
12009 "package format and package management tool used by the inspected operating "
12010 "system. For example for Fedora these functions would return C<rpm> (package "
12011 "format) and C<yum> (package management)."
12016 #: ../src/guestfs-actions.pod:2855 ../fish/guestfish-actions.pod:1963
12018 "This returns the string C<unknown> if we could not determine the package "
12019 "format I<or> if the operating system does not have a real packaging system "
12025 #: ../src/guestfs-actions.pod:2859 ../fish/guestfish-actions.pod:1967
12027 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>. "
12028 "Future versions of libguestfs may return other strings."
12033 #: ../src/guestfs-actions.pod:2867 ../src/guestfs-actions.pod:2898
12034 msgid "(Added in 1.7.5)"
12039 #: ../src/guestfs-actions.pod:2869
12040 msgid "guestfs_inspect_get_package_management"
12045 #: ../src/guestfs-actions.pod:2871
12049 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
12050 " const char *root);\n"
12056 #: ../src/guestfs-actions.pod:2878
12058 "C<guestfs_inspect_get_package_format> and this function return the package "
12059 "format and package management tool used by the inspected operating system. "
12060 "For example for Fedora these functions would return C<rpm> (package format) "
12061 "and C<yum> (package management)."
12066 #: ../src/guestfs-actions.pod:2884 ../fish/guestfish-actions.pod:1985
12068 "This returns the string C<unknown> if we could not determine the package "
12069 "management tool I<or> if the operating system does not have a real packaging "
12070 "system (eg. Windows)."
12075 #: ../src/guestfs-actions.pod:2888 ../fish/guestfish-actions.pod:1989
12077 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
12078 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>. Future versions of "
12079 "libguestfs may return other strings."
12084 #: ../src/guestfs-actions.pod:2900
12085 msgid "guestfs_inspect_get_product_name"
12090 #: ../src/guestfs-actions.pod:2902
12094 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
12095 " const char *root);\n"
12101 #: ../src/guestfs-actions.pod:2909 ../fish/guestfish-actions.pod:2003
12103 "This returns the product name of the inspected operating system. The "
12104 "product name is generally some freeform string which can be displayed to the "
12105 "user, but should not be parsed by programs."
12110 #: ../src/guestfs-actions.pod:2914 ../fish/guestfish-actions.pod:2008
12112 "If the product name could not be determined, then the string C<unknown> is "
12117 #: ../src/guestfs-actions.pod:2924
12118 msgid "guestfs_inspect_get_product_variant"
12122 #: ../src/guestfs-actions.pod:2926
12126 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
12127 " const char *root);\n"
12132 #: ../src/guestfs-actions.pod:2933 ../fish/guestfish-actions.pod:2020
12133 msgid "This returns the product variant of the inspected operating system."
12137 #: ../src/guestfs-actions.pod:2936 ../fish/guestfish-actions.pod:2023
12139 "For Windows guests, this returns the contents of the Registry key C<HKLM"
12140 "\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
12141 "is usually a string such as C<Client> or C<Server> (other values are "
12142 "possible). This can be used to distinguish consumer and enterprise versions "
12143 "of Windows that have the same version number (for example, Windows 7 and "
12144 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
12145 "the latter is C<Server>)."
12149 #: ../src/guestfs-actions.pod:2945 ../fish/guestfish-actions.pod:2032
12151 "For enterprise Linux guests, in future we intend this to return the product "
12152 "variant such as C<Desktop>, C<Server> and so on. But this is not "
12153 "implemented at present."
12157 #: ../src/guestfs-actions.pod:2949 ../fish/guestfish-actions.pod:2036
12159 "If the product variant could not be determined, then the string C<unknown> "
12164 #: ../src/guestfs-actions.pod:2952
12166 "Please read L<guestfs(3)/INSPECTION> for more details. See also "
12167 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
12172 #: ../src/guestfs-actions.pod:2959
12173 msgid "guestfs_inspect_get_roots"
12178 #: ../src/guestfs-actions.pod:2961
12182 " guestfs_inspect_get_roots (guestfs_h *g);\n"
12188 #: ../src/guestfs-actions.pod:2964
12190 "This function is a convenient way to get the list of root devices, as "
12191 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
12192 "the whole inspection process."
12197 #: ../src/guestfs-actions.pod:2968
12199 "This returns an empty list if either no root devices were found or the "
12200 "caller has not called C<guestfs_inspect_os>."
12205 #: ../src/guestfs-actions.pod:2977
12206 msgid "(Added in 1.7.3)"
12211 #: ../src/guestfs-actions.pod:2979
12212 msgid "guestfs_inspect_get_type"
12217 #: ../src/guestfs-actions.pod:2981
12221 " guestfs_inspect_get_type (guestfs_h *g,\n"
12222 " const char *root);\n"
12228 #: ../src/guestfs-actions.pod:2988 ../fish/guestfish-actions.pod:2063
12230 "This returns the type of the inspected operating system. Currently defined "
12236 #: ../src/guestfs-actions.pod:2993 ../fish/guestfish-actions.pod:2068
12242 #: ../src/guestfs-actions.pod:2995 ../fish/guestfish-actions.pod:2070
12243 msgid "Any Linux-based operating system."
12248 #: ../src/guestfs-actions.pod:2999 ../fish/guestfish-actions.pod:2074
12249 msgid "Any Microsoft Windows operating system."
12254 #: ../src/guestfs-actions.pod:3001 ../fish/guestfish-actions.pod:2076
12255 msgid "\"freebsd\""
12260 #: ../src/guestfs-actions.pod:3003 ../fish/guestfish-actions.pod:2078
12266 #: ../src/guestfs-actions.pod:3007 ../fish/guestfish-actions.pod:2082
12267 msgid "The operating system type could not be determined."
12271 #: ../src/guestfs-actions.pod:3021
12272 msgid "guestfs_inspect_get_windows_current_control_set"
12276 #: ../src/guestfs-actions.pod:3023
12280 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
12281 " const char *root);\n"
12286 #: ../src/guestfs-actions.pod:3030 ../fish/guestfish-actions.pod:2098
12288 "This returns the Windows CurrentControlSet of the inspected guest. The "
12289 "CurrentControlSet is a registry key name such as C<ControlSet001>."
12293 #: ../src/guestfs-actions.pod:3033 ../fish/guestfish-actions.pod:2101
12295 "This call assumes that the guest is Windows and that the Registry could be "
12296 "examined by inspection. If this is not the case then an error is returned."
12301 #: ../src/guestfs-actions.pod:3042
12302 msgid "guestfs_inspect_get_windows_systemroot"
12307 #: ../src/guestfs-actions.pod:3044
12311 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
12312 " const char *root);\n"
12318 #: ../src/guestfs-actions.pod:3051 ../fish/guestfish-actions.pod:2114
12320 "This returns the Windows systemroot of the inspected guest. The systemroot "
12321 "is a directory path such as C</WINDOWS>."
12326 #: ../src/guestfs-actions.pod:3054 ../fish/guestfish-actions.pod:2117
12328 "This call assumes that the guest is Windows and that the systemroot could be "
12329 "determined by inspection. If this is not the case then an error is returned."
12334 #: ../src/guestfs-actions.pod:3063
12335 msgid "(Added in 1.5.25)"
12339 #: ../src/guestfs-actions.pod:3065
12340 msgid "guestfs_inspect_is_live"
12344 #: ../src/guestfs-actions.pod:3067
12348 " guestfs_inspect_is_live (guestfs_h *g,\n"
12349 " const char *root);\n"
12354 #: ../src/guestfs-actions.pod:3074
12356 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12357 "disk), then this returns true if a live image was detected on the disk."
12361 #: ../src/guestfs-actions.pod:3082
12362 msgid "guestfs_inspect_is_multipart"
12366 #: ../src/guestfs-actions.pod:3084
12370 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
12371 " const char *root);\n"
12376 #: ../src/guestfs-actions.pod:3091
12378 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12379 "disk), then this returns true if the disk is part of a set."
12383 #: ../src/guestfs-actions.pod:3099
12384 msgid "guestfs_inspect_is_netinst"
12388 #: ../src/guestfs-actions.pod:3101
12392 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
12393 " const char *root);\n"
12398 #: ../src/guestfs-actions.pod:3108
12400 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12401 "disk), then this returns true if the disk is a network installer, ie. not a "
12402 "self-contained install CD but one which is likely to require network access "
12403 "to complete the install."
12408 #: ../src/guestfs-actions.pod:3118
12409 msgid "guestfs_inspect_list_applications"
12414 #: ../src/guestfs-actions.pod:3120
12417 " struct guestfs_application_list *\n"
12418 " guestfs_inspect_list_applications (guestfs_h *g,\n"
12419 " const char *root);\n"
12425 #: ../src/guestfs-actions.pod:3127 ../fish/guestfish-actions.pod:2171
12426 msgid "Return the list of applications installed in the operating system."
12431 #: ../src/guestfs-actions.pod:3129
12433 "I<Note:> This call works differently from other parts of the inspection "
12434 "API. You have to call C<guestfs_inspect_os>, then "
12435 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
12436 "this. Listing applications is a significantly more difficult operation "
12437 "which requires access to the full filesystem. Also note that unlike the "
12438 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
12439 "the libguestfs handle, this call actually reads parts of the mounted "
12440 "filesystems during the call."
12445 #: ../src/guestfs-actions.pod:3139 ../fish/guestfish-actions.pod:2183
12447 "This returns an empty list if the inspection code was not able to determine "
12448 "the list of applications."
12453 #: ../src/guestfs-actions.pod:3142 ../fish/guestfish-actions.pod:2186
12454 msgid "The application structure contains the following fields:"
12459 #: ../src/guestfs-actions.pod:3146 ../fish/guestfish-actions.pod:2190
12460 msgid "C<app_name>"
12465 #: ../src/guestfs-actions.pod:3148 ../fish/guestfish-actions.pod:2192
12467 "The name of the application. For Red Hat-derived and Debian-derived Linux "
12468 "guests, this is the package name."
12473 #: ../src/guestfs-actions.pod:3151 ../fish/guestfish-actions.pod:2195
12474 msgid "C<app_display_name>"
12479 #: ../src/guestfs-actions.pod:3153 ../fish/guestfish-actions.pod:2197
12481 "The display name of the application, sometimes localized to the install "
12482 "language of the guest operating system."
12487 #: ../src/guestfs-actions.pod:3156 ../fish/guestfish-actions.pod:2200
12489 "If unavailable this is returned as an empty string C<\"\">. Callers needing "
12490 "to display something can use C<app_name> instead."
12495 #: ../src/guestfs-actions.pod:3159 ../fish/guestfish-actions.pod:2203
12496 msgid "C<app_epoch>"
12501 #: ../src/guestfs-actions.pod:3161 ../fish/guestfish-actions.pod:2205
12503 "For package managers which use epochs, this contains the epoch of the "
12504 "package (an integer). If unavailable, this is returned as C<0>."
12509 #: ../src/guestfs-actions.pod:3164 ../fish/guestfish-actions.pod:2208
12510 msgid "C<app_version>"
12515 #: ../src/guestfs-actions.pod:3166 ../fish/guestfish-actions.pod:2210
12517 "The version string of the application or package. If unavailable this is "
12518 "returned as an empty string C<\"\">."
12523 #: ../src/guestfs-actions.pod:3169 ../fish/guestfish-actions.pod:2213
12524 msgid "C<app_release>"
12529 #: ../src/guestfs-actions.pod:3171 ../fish/guestfish-actions.pod:2215
12531 "The release string of the application or package, for package managers that "
12532 "use this. If unavailable this is returned as an empty string C<\"\">."
12537 #: ../src/guestfs-actions.pod:3175 ../fish/guestfish-actions.pod:2219
12538 msgid "C<app_install_path>"
12543 #: ../src/guestfs-actions.pod:3177 ../fish/guestfish-actions.pod:2221
12545 "The installation path of the application (on operating systems such as "
12546 "Windows which use installation paths). This path is in the format used by "
12547 "the guest operating system, it is not a libguestfs path."
12552 #: ../src/guestfs-actions.pod:3182 ../fish/guestfish-actions.pod:2226
12553 msgid "If unavailable this is returned as an empty string C<\"\">."
12558 #: ../src/guestfs-actions.pod:3184 ../fish/guestfish-actions.pod:2228
12559 msgid "C<app_trans_path>"
12564 #: ../src/guestfs-actions.pod:3186 ../fish/guestfish-actions.pod:2230
12566 "The install path translated into a libguestfs path. If unavailable this is "
12567 "returned as an empty string C<\"\">."
12572 #: ../src/guestfs-actions.pod:3189 ../fish/guestfish-actions.pod:2233
12573 msgid "C<app_publisher>"
12578 #: ../src/guestfs-actions.pod:3191 ../fish/guestfish-actions.pod:2235
12580 "The name of the publisher of the application, for package managers that use "
12581 "this. If unavailable this is returned as an empty string C<\"\">."
12586 #: ../src/guestfs-actions.pod:3195 ../fish/guestfish-actions.pod:2239
12592 #: ../src/guestfs-actions.pod:3197 ../fish/guestfish-actions.pod:2241
12594 "The URL (eg. upstream URL) of the application. If unavailable this is "
12595 "returned as an empty string C<\"\">."
12600 #: ../src/guestfs-actions.pod:3200 ../fish/guestfish-actions.pod:2244
12601 msgid "C<app_source_package>"
12606 #: ../src/guestfs-actions.pod:3202 ../fish/guestfish-actions.pod:2246
12608 "For packaging systems which support this, the name of the source package. "
12609 "If unavailable this is returned as an empty string C<\"\">."
12614 #: ../src/guestfs-actions.pod:3205 ../fish/guestfish-actions.pod:2249
12615 msgid "C<app_summary>"
12620 #: ../src/guestfs-actions.pod:3207 ../fish/guestfish-actions.pod:2251
12622 "A short (usually one line) description of the application or package. If "
12623 "unavailable this is returned as an empty string C<\"\">."
12628 #: ../src/guestfs-actions.pod:3210 ../fish/guestfish-actions.pod:2254
12629 msgid "C<app_description>"
12634 #: ../src/guestfs-actions.pod:3212 ../fish/guestfish-actions.pod:2256
12636 "A longer description of the application or package. If unavailable this is "
12637 "returned as an empty string C<\"\">."
12642 #: ../src/guestfs-actions.pod:3219
12644 "This function returns a C<struct guestfs_application_list *>, or NULL if "
12645 "there was an error. I<The caller must call C<guestfs_free_application_list> "
12651 #: ../src/guestfs-actions.pod:3223
12652 msgid "(Added in 1.7.8)"
12657 #: ../src/guestfs-actions.pod:3225
12658 msgid "guestfs_inspect_os"
12663 #: ../src/guestfs-actions.pod:3227
12667 " guestfs_inspect_os (guestfs_h *g);\n"
12673 #: ../src/guestfs-actions.pod:3230 ../fish/guestfish-actions.pod:2267
12675 "This function uses other libguestfs functions and certain heuristics to "
12676 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
12677 "for operating systems."
12682 #: ../src/guestfs-actions.pod:3234 ../fish/guestfish-actions.pod:2271
12683 msgid "The list returned is empty if no operating systems were found."
12688 #: ../src/guestfs-actions.pod:3236 ../fish/guestfish-actions.pod:2273
12690 "If one operating system was found, then this returns a list with a single "
12691 "element, which is the name of the root filesystem of this operating system. "
12692 "It is also possible for this function to return a list containing more than "
12693 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
12694 "element being the root filesystem of one of the operating systems."
12699 #: ../src/guestfs-actions.pod:3243
12701 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
12702 "functions in order to query further information about each operating system, "
12703 "such as the name and version."
12708 #: ../src/guestfs-actions.pod:3248
12710 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
12711 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
12712 "the contents. This should be called with no disks currently mounted. The "
12713 "function may also use Augeas, so any existing Augeas handle will be closed."
12718 #: ../src/guestfs-actions.pod:3254 ../fish/guestfish-actions.pod:2291
12720 "This function cannot decrypt encrypted disks. The caller must do that first "
12721 "(supplying the necessary keys) if the disk is encrypted."
12726 #: ../src/guestfs-actions.pod:3260 ../src/guestfs-actions.pod:3550
12727 #: ../src/guestfs-actions.pod:3612
12728 msgid "See also C<guestfs_list_filesystems>."
12733 #: ../src/guestfs-actions.pod:3268
12734 msgid "guestfs_is_blockdev"
12739 #: ../src/guestfs-actions.pod:3270
12743 " guestfs_is_blockdev (guestfs_h *g,\n"
12744 " const char *path);\n"
12750 #: ../src/guestfs-actions.pod:3274 ../fish/guestfish-actions.pod:2303
12752 "This returns C<true> if and only if there is a block device with the given "
12758 #: ../src/guestfs-actions.pod:3277 ../src/guestfs-actions.pod:3306
12759 #: ../src/guestfs-actions.pod:3336 ../src/guestfs-actions.pod:3351
12760 #: ../src/guestfs-actions.pod:3367 ../src/guestfs-actions.pod:3423
12761 #: ../src/guestfs-actions.pod:3438
12762 msgid "See also C<guestfs_stat>."
12767 #: ../src/guestfs-actions.pod:3281 ../src/guestfs-actions.pod:3310
12768 #: ../src/guestfs-actions.pod:3355 ../src/guestfs-actions.pod:3427
12769 #: ../src/guestfs-actions.pod:3442
12770 msgid "(Added in 1.5.10)"
12775 #: ../src/guestfs-actions.pod:3283
12776 msgid "guestfs_is_busy"
12781 #: ../src/guestfs-actions.pod:3285
12785 " guestfs_is_busy (guestfs_h *g);\n"
12791 #: ../src/guestfs-actions.pod:3288 ../fish/guestfish-actions.pod:2312
12793 "This returns true iff this handle is busy processing a command (in the "
12799 #: ../src/guestfs-actions.pod:3297
12800 msgid "guestfs_is_chardev"
12805 #: ../src/guestfs-actions.pod:3299
12809 " guestfs_is_chardev (guestfs_h *g,\n"
12810 " const char *path);\n"
12816 #: ../src/guestfs-actions.pod:3303 ../fish/guestfish-actions.pod:2321
12818 "This returns C<true> if and only if there is a character device with the "
12819 "given C<path> name."
12824 #: ../src/guestfs-actions.pod:3312
12825 msgid "guestfs_is_config"
12830 #: ../src/guestfs-actions.pod:3314
12834 " guestfs_is_config (guestfs_h *g);\n"
12840 #: ../src/guestfs-actions.pod:3317 ../fish/guestfish-actions.pod:2330
12842 "This returns true iff this handle is being configured (in the C<CONFIG> "
12848 #: ../src/guestfs-actions.pod:3326
12849 msgid "guestfs_is_dir"
12854 #: ../src/guestfs-actions.pod:3328
12858 " guestfs_is_dir (guestfs_h *g,\n"
12859 " const char *path);\n"
12865 #: ../src/guestfs-actions.pod:3332 ../fish/guestfish-actions.pod:2339
12867 "This returns C<true> if and only if there is a directory with the given "
12868 "C<path> name. Note that it returns false for other objects like files."
12873 #: ../src/guestfs-actions.pod:3342
12874 msgid "guestfs_is_fifo"
12879 #: ../src/guestfs-actions.pod:3344
12883 " guestfs_is_fifo (guestfs_h *g,\n"
12884 " const char *path);\n"
12890 #: ../src/guestfs-actions.pod:3348 ../fish/guestfish-actions.pod:2349
12892 "This returns C<true> if and only if there is a FIFO (named pipe) with the "
12893 "given C<path> name."
12898 #: ../src/guestfs-actions.pod:3357
12899 msgid "guestfs_is_file"
12904 #: ../src/guestfs-actions.pod:3359
12908 " guestfs_is_file (guestfs_h *g,\n"
12909 " const char *path);\n"
12915 #: ../src/guestfs-actions.pod:3363 ../fish/guestfish-actions.pod:2358
12917 "This returns C<true> if and only if there is a regular file with the given "
12918 "C<path> name. Note that it returns false for other objects like directories."
12923 #: ../src/guestfs-actions.pod:3373
12924 msgid "guestfs_is_launching"
12929 #: ../src/guestfs-actions.pod:3375
12933 " guestfs_is_launching (guestfs_h *g);\n"
12939 #: ../src/guestfs-actions.pod:3378 ../fish/guestfish-actions.pod:2368
12941 "This returns true iff this handle is launching the subprocess (in the "
12942 "C<LAUNCHING> state)."
12947 #: ../src/guestfs-actions.pod:3387
12948 msgid "guestfs_is_lv"
12953 #: ../src/guestfs-actions.pod:3389
12957 " guestfs_is_lv (guestfs_h *g,\n"
12958 " const char *device);\n"
12964 #: ../src/guestfs-actions.pod:3393 ../fish/guestfish-actions.pod:2377
12966 "This command tests whether C<device> is a logical volume, and returns true "
12967 "iff this is the case."
12972 #: ../src/guestfs-actions.pod:3400
12973 msgid "guestfs_is_ready"
12978 #: ../src/guestfs-actions.pod:3402
12982 " guestfs_is_ready (guestfs_h *g);\n"
12988 #: ../src/guestfs-actions.pod:3405 ../fish/guestfish-actions.pod:2384
12990 "This returns true iff this handle is ready to accept commands (in the "
12996 #: ../src/guestfs-actions.pod:3414
12997 msgid "guestfs_is_socket"
13002 #: ../src/guestfs-actions.pod:3416
13006 " guestfs_is_socket (guestfs_h *g,\n"
13007 " const char *path);\n"
13013 #: ../src/guestfs-actions.pod:3420 ../fish/guestfish-actions.pod:2393
13015 "This returns C<true> if and only if there is a Unix domain socket with the "
13016 "given C<path> name."
13021 #: ../src/guestfs-actions.pod:3429
13022 msgid "guestfs_is_symlink"
13027 #: ../src/guestfs-actions.pod:3431
13031 " guestfs_is_symlink (guestfs_h *g,\n"
13032 " const char *path);\n"
13038 #: ../src/guestfs-actions.pod:3435 ../fish/guestfish-actions.pod:2402
13040 "This returns C<true> if and only if there is a symbolic link with the given "
13046 #: ../src/guestfs-actions.pod:3444
13047 msgid "guestfs_kill_subprocess"
13052 #: ../src/guestfs-actions.pod:3446
13056 " guestfs_kill_subprocess (guestfs_h *g);\n"
13062 #: ../src/guestfs-actions.pod:3449 ../fish/guestfish-actions.pod:2411
13063 msgid "This kills the qemu subprocess. You should never need to call this."
13068 #: ../src/guestfs-actions.pod:3455
13069 msgid "guestfs_launch"
13074 #: ../src/guestfs-actions.pod:3457
13078 " guestfs_launch (guestfs_h *g);\n"
13084 #: ../src/guestfs-actions.pod:3460 ../fish/guestfish-actions.pod:2419
13086 "Internally libguestfs is implemented by running a virtual machine using "
13092 #: ../src/guestfs-actions.pod:3463 ../fish/guestfish-actions.pod:2422
13094 "You should call this after configuring the handle (eg. adding drives) but "
13095 "before performing any actions."
13100 #: ../src/guestfs-actions.pod:3475
13101 msgid "guestfs_lchown"
13106 #: ../src/guestfs-actions.pod:3477
13110 " guestfs_lchown (guestfs_h *g,\n"
13113 " const char *path);\n"
13119 #: ../src/guestfs-actions.pod:3483
13121 "Change the file owner to C<owner> and group to C<group>. This is like "
13122 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
13123 "changed, not the target."
13128 #: ../src/guestfs-actions.pod:3495
13129 msgid "guestfs_lgetxattr"
13134 #: ../src/guestfs-actions.pod:3497
13138 " guestfs_lgetxattr (guestfs_h *g,\n"
13139 " const char *path,\n"
13140 " const char *name,\n"
13141 " size_t *size_r);\n"
13147 #: ../src/guestfs-actions.pod:3503 ../fish/guestfish-actions.pod:2441
13149 "Get a single extended attribute from file C<path> named C<name>. If C<path> "
13150 "is a symlink, then this call returns an extended attribute from the symlink."
13155 #: ../src/guestfs-actions.pod:3517
13156 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
13161 #: ../src/guestfs-actions.pod:3525
13162 msgid "guestfs_lgetxattrs"
13167 #: ../src/guestfs-actions.pod:3527
13170 " struct guestfs_xattr_list *\n"
13171 " guestfs_lgetxattrs (guestfs_h *g,\n"
13172 " const char *path);\n"
13178 #: ../src/guestfs-actions.pod:3531
13180 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
13181 "then it returns the extended attributes of the link itself."
13186 #: ../src/guestfs-actions.pod:3541
13187 msgid "guestfs_list_devices"
13192 #: ../src/guestfs-actions.pod:3543
13196 " guestfs_list_devices (guestfs_h *g);\n"
13202 #: ../src/guestfs-actions.pod:3546 ../fish/guestfish-actions.pod:2469
13203 msgid "List all the block devices."
13208 #: ../src/guestfs-actions.pod:3548 ../fish/guestfish-actions.pod:2471
13209 msgid "The full block device names are returned, eg. C</dev/sda>."
13214 #: ../src/guestfs-actions.pod:3558
13215 msgid "guestfs_list_filesystems"
13220 #: ../src/guestfs-actions.pod:3560
13224 " guestfs_list_filesystems (guestfs_h *g);\n"
13230 #: ../src/guestfs-actions.pod:3563 ../fish/guestfish-actions.pod:2479
13232 "This inspection command looks for filesystems on partitions, block devices "
13233 "and logical volumes, returning a list of devices containing filesystems and "
13239 #: ../src/guestfs-actions.pod:3567 ../fish/guestfish-actions.pod:2483
13241 "The return value is a hash, where the keys are the devices containing "
13242 "filesystems, and the values are the filesystem types. For example:"
13247 #: ../src/guestfs-actions.pod:3571 ../fish/guestfish-actions.pod:2487
13250 " \"/dev/sda1\" => \"ntfs\"\n"
13251 " \"/dev/sda2\" => \"ext2\"\n"
13252 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
13253 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
13259 #: ../src/guestfs-actions.pod:3576 ../fish/guestfish-actions.pod:2492
13261 "The value can have the special value \"unknown\", meaning the content of the "
13262 "device is undetermined or empty. \"swap\" means a Linux swap partition."
13267 #: ../src/guestfs-actions.pod:3580
13269 "This command runs other libguestfs commands, which might include "
13270 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
13271 "soon after launch and only when nothing is mounted."
13276 #: ../src/guestfs-actions.pod:3584
13278 "Not all of the filesystems returned will be mountable. In particular, swap "
13279 "partitions are returned in the list. Also this command does not check that "
13280 "each filesystem found is valid and mountable, and some filesystems might be "
13281 "mountable but require special options. Filesystems may not all belong to a "
13282 "single logical operating system (use C<guestfs_inspect_os> to look for OSes)."
13287 #: ../src/guestfs-actions.pod:3598 ../src/guestfs-actions.pod:5203
13288 msgid "(Added in 1.5.15)"
13293 #: ../src/guestfs-actions.pod:3600
13294 msgid "guestfs_list_partitions"
13299 #: ../src/guestfs-actions.pod:3602
13303 " guestfs_list_partitions (guestfs_h *g);\n"
13309 #: ../src/guestfs-actions.pod:3605 ../fish/guestfish-actions.pod:2512
13310 msgid "List all the partitions detected on all block devices."
13315 #: ../src/guestfs-actions.pod:3607 ../fish/guestfish-actions.pod:2514
13316 msgid "The full partition device names are returned, eg. C</dev/sda1>"
13321 #: ../src/guestfs-actions.pod:3609
13323 "This does not return logical volumes. For that you will need to call "
13329 #: ../src/guestfs-actions.pod:3620
13335 #: ../src/guestfs-actions.pod:3622
13339 " guestfs_ll (guestfs_h *g,\n"
13340 " const char *directory);\n"
13346 #: ../src/guestfs-actions.pod:3626 ../fish/guestfish-actions.pod:2525
13348 "List the files in C<directory> (relative to the root directory, there is no "
13349 "cwd) in the format of 'ls -la'."
13354 #: ../src/guestfs-actions.pod:3629 ../fish/guestfish-actions.pod:2528
13356 "This command is mostly useful for interactive sessions. It is I<not> "
13357 "intended that you try to parse the output string."
13362 #: ../src/guestfs-actions.pod:3637
13368 #: ../src/guestfs-actions.pod:3639
13372 " guestfs_ln (guestfs_h *g,\n"
13373 " const char *target,\n"
13374 " const char *linkname);\n"
13380 #: ../src/guestfs-actions.pod:3644 ../fish/guestfish-actions.pod:2535
13381 msgid "This command creates a hard link using the C<ln> command."
13386 #: ../src/guestfs-actions.pod:3650
13387 msgid "guestfs_ln_f"
13392 #: ../src/guestfs-actions.pod:3652
13396 " guestfs_ln_f (guestfs_h *g,\n"
13397 " const char *target,\n"
13398 " const char *linkname);\n"
13404 #: ../src/guestfs-actions.pod:3657 ../fish/guestfish-actions.pod:2541
13406 "This command creates a hard link using the C<ln -f> command. The C<-f> "
13407 "option removes the link (C<linkname>) if it exists already."
13412 #: ../src/guestfs-actions.pod:3664
13413 msgid "guestfs_ln_s"
13418 #: ../src/guestfs-actions.pod:3666
13422 " guestfs_ln_s (guestfs_h *g,\n"
13423 " const char *target,\n"
13424 " const char *linkname);\n"
13430 #: ../src/guestfs-actions.pod:3671 ../fish/guestfish-actions.pod:2548
13431 msgid "This command creates a symbolic link using the C<ln -s> command."
13436 #: ../src/guestfs-actions.pod:3677
13437 msgid "guestfs_ln_sf"
13442 #: ../src/guestfs-actions.pod:3679
13446 " guestfs_ln_sf (guestfs_h *g,\n"
13447 " const char *target,\n"
13448 " const char *linkname);\n"
13454 #: ../src/guestfs-actions.pod:3684 ../fish/guestfish-actions.pod:2554
13456 "This command creates a symbolic link using the C<ln -sf> command, The C<-f> "
13457 "option removes the link (C<linkname>) if it exists already."
13462 #: ../src/guestfs-actions.pod:3691
13463 msgid "guestfs_lremovexattr"
13468 #: ../src/guestfs-actions.pod:3693
13472 " guestfs_lremovexattr (guestfs_h *g,\n"
13473 " const char *xattr,\n"
13474 " const char *path);\n"
13480 #: ../src/guestfs-actions.pod:3698
13482 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
13483 "link, then it removes an extended attribute of the link itself."
13488 #: ../src/guestfs-actions.pod:3706
13494 #: ../src/guestfs-actions.pod:3708
13498 " guestfs_ls (guestfs_h *g,\n"
13499 " const char *directory);\n"
13505 #: ../src/guestfs-actions.pod:3712 ../fish/guestfish-actions.pod:2569
13507 "List the files in C<directory> (relative to the root directory, there is no "
13508 "cwd). The '.' and '..' entries are not returned, but hidden files are shown."
13513 #: ../src/guestfs-actions.pod:3716
13515 "This command is mostly useful for interactive sessions. Programs should "
13516 "probably use C<guestfs_readdir> instead."
13521 #: ../src/guestfs-actions.pod:3725
13522 msgid "guestfs_lsetxattr"
13527 #: ../src/guestfs-actions.pod:3727
13531 " guestfs_lsetxattr (guestfs_h *g,\n"
13532 " const char *xattr,\n"
13533 " const char *val,\n"
13535 " const char *path);\n"
13541 #: ../src/guestfs-actions.pod:3734
13543 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
13544 "then it sets an extended attribute of the link itself."
13549 #: ../src/guestfs-actions.pod:3742
13550 msgid "guestfs_lstat"
13555 #: ../src/guestfs-actions.pod:3744
13558 " struct guestfs_stat *\n"
13559 " guestfs_lstat (guestfs_h *g,\n"
13560 " const char *path);\n"
13566 #: ../src/guestfs-actions.pod:3748 ../src/guestfs-actions.pod:6306
13567 #: ../fish/guestfish-actions.pod:2588 ../fish/guestfish-actions.pod:4257
13568 msgid "Returns file information for the given C<path>."
13573 #: ../src/guestfs-actions.pod:3750
13575 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
13576 "link, then the link is stat-ed, not the file it refers to."
13581 #: ../src/guestfs-actions.pod:3754 ../fish/guestfish-actions.pod:2594
13582 msgid "This is the same as the C<lstat(2)> system call."
13587 #: ../src/guestfs-actions.pod:3756 ../src/guestfs-actions.pod:6310
13589 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
13590 "error. I<The caller must call C<guestfs_free_stat> after use>."
13595 #: ../src/guestfs-actions.pod:3760 ../src/guestfs-actions.pod:6314
13596 #: ../src/guestfs-actions.pod:6332 ../src/guestfs-actions.pod:6713
13597 msgid "(Added in 0.9.2)"
13602 #: ../src/guestfs-actions.pod:3762
13603 msgid "guestfs_lstatlist"
13608 #: ../src/guestfs-actions.pod:3764
13611 " struct guestfs_stat_list *\n"
13612 " guestfs_lstatlist (guestfs_h *g,\n"
13613 " const char *path,\n"
13614 " char *const *names);\n"
13620 #: ../src/guestfs-actions.pod:3769
13622 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
13623 "files, where all files are in the directory C<path>. C<names> is the list "
13624 "of files from this directory."
13629 #: ../src/guestfs-actions.pod:3773 ../fish/guestfish-actions.pod:2604
13631 "On return you get a list of stat structs, with a one-to-one correspondence "
13632 "to the C<names> list. If any name did not exist or could not be lstat'd, "
13633 "then the C<ino> field of that structure is set to C<-1>."
13638 #: ../src/guestfs-actions.pod:3778
13640 "This call is intended for programs that want to efficiently list a directory "
13641 "contents without making many round-trips. See also C<guestfs_lxattrlist> "
13642 "for a similarly efficient call for getting extended attributes. Very long "
13643 "directory listings might cause the protocol message size to be exceeded, "
13644 "causing this call to fail. The caller must split up such requests into "
13645 "smaller groups of names."
13650 #: ../src/guestfs-actions.pod:3786
13652 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
13653 "an error. I<The caller must call C<guestfs_free_stat_list> after use>."
13658 #: ../src/guestfs-actions.pod:3792
13659 msgid "guestfs_luks_add_key"
13664 #: ../src/guestfs-actions.pod:3794
13668 " guestfs_luks_add_key (guestfs_h *g,\n"
13669 " const char *device,\n"
13670 " const char *key,\n"
13671 " const char *newkey,\n"
13678 #: ../src/guestfs-actions.pod:3801 ../fish/guestfish-actions.pod:2621
13680 "This command adds a new key on LUKS device C<device>. C<key> is any "
13681 "existing key, and is used to access the device. C<newkey> is the new key to "
13682 "add. C<keyslot> is the key slot that will be replaced."
13687 #: ../src/guestfs-actions.pod:3806
13689 "Note that if C<keyslot> already contains a key, then this command will "
13690 "fail. You have to use C<guestfs_luks_kill_slot> first to remove that key."
13695 #: ../src/guestfs-actions.pod:3812 ../src/guestfs-actions.pod:3852
13696 #: ../src/guestfs-actions.pod:3875 ../src/guestfs-actions.pod:3895
13697 #: ../src/guestfs-actions.pod:3927 ../src/guestfs-actions.pod:3946
13699 "This function takes a key or passphrase parameter which could contain "
13700 "sensitive material. Read the section L</KEYS AND PASSPHRASES> for more "
13706 #: ../src/guestfs-actions.pod:3816 ../src/guestfs-actions.pod:3856
13707 #: ../src/guestfs-actions.pod:3879 ../src/guestfs-actions.pod:3899
13708 msgid "(Added in 1.5.2)"
13713 #: ../src/guestfs-actions.pod:3818
13714 msgid "guestfs_luks_close"
13719 #: ../src/guestfs-actions.pod:3820
13723 " guestfs_luks_close (guestfs_h *g,\n"
13724 " const char *device);\n"
13730 #: ../src/guestfs-actions.pod:3824
13732 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
13733 "or C<guestfs_luks_open_ro>. The C<device> parameter must be the name of the "
13734 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
13735 "underlying block device."
13740 #: ../src/guestfs-actions.pod:3832 ../src/guestfs-actions.pod:3931
13741 #: ../src/guestfs-actions.pod:3950 ../src/guestfs-actions.pod:4000
13742 #: ../src/guestfs-actions.pod:4048
13743 msgid "(Added in 1.5.1)"
13748 #: ../src/guestfs-actions.pod:3834
13749 msgid "guestfs_luks_format"
13754 #: ../src/guestfs-actions.pod:3836
13758 " guestfs_luks_format (guestfs_h *g,\n"
13759 " const char *device,\n"
13760 " const char *key,\n"
13767 #: ../src/guestfs-actions.pod:3842 ../fish/guestfish-actions.pod:2647
13769 "This command erases existing data on C<device> and formats the device as a "
13770 "LUKS encrypted device. C<key> is the initial key, which is added to key "
13771 "slot C<slot>. (LUKS supports 8 key slots, numbered 0-7)."
13776 #: ../src/guestfs-actions.pod:3849 ../src/guestfs-actions.pod:3872
13777 #: ../src/guestfs-actions.pod:4012 ../src/guestfs-actions.pod:4954
13778 #: ../src/guestfs-actions.pod:5734 ../src/guestfs-actions.pod:6141
13779 #: ../src/guestfs-actions.pod:6164 ../src/guestfs-actions.pod:6190
13780 #: ../src/guestfs-actions.pod:7350 ../fish/guestfish-actions.pod:2655
13781 #: ../fish/guestfish-actions.pod:2668 ../fish/guestfish-actions.pod:2752
13782 #: ../fish/guestfish-actions.pod:3326 ../fish/guestfish-actions.pod:3846
13783 #: ../fish/guestfish-actions.pod:4156 ../fish/guestfish-actions.pod:4172
13784 #: ../fish/guestfish-actions.pod:4187 ../fish/guestfish-actions.pod:4902
13786 "B<This command is dangerous. Without careful use you can easily destroy all "
13792 #: ../src/guestfs-actions.pod:3858
13793 msgid "guestfs_luks_format_cipher"
13798 #: ../src/guestfs-actions.pod:3860
13802 " guestfs_luks_format_cipher (guestfs_h *g,\n"
13803 " const char *device,\n"
13804 " const char *key,\n"
13806 " const char *cipher);\n"
13812 #: ../src/guestfs-actions.pod:3867
13814 "This command is the same as C<guestfs_luks_format> but it also allows you to "
13815 "set the C<cipher> used."
13820 #: ../src/guestfs-actions.pod:3881
13821 msgid "guestfs_luks_kill_slot"
13826 #: ../src/guestfs-actions.pod:3883
13830 " guestfs_luks_kill_slot (guestfs_h *g,\n"
13831 " const char *device,\n"
13832 " const char *key,\n"
13839 #: ../src/guestfs-actions.pod:3889 ../fish/guestfish-actions.pod:2675
13841 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
13842 "device C<device>. C<key> must be one of the I<other> keys."
13847 #: ../src/guestfs-actions.pod:3901
13848 msgid "guestfs_luks_open"
13853 #: ../src/guestfs-actions.pod:3903
13857 " guestfs_luks_open (guestfs_h *g,\n"
13858 " const char *device,\n"
13859 " const char *key,\n"
13860 " const char *mapname);\n"
13866 #: ../src/guestfs-actions.pod:3909 ../fish/guestfish-actions.pod:2686
13868 "This command opens a block device which has been encrypted according to the "
13869 "Linux Unified Key Setup (LUKS) standard."
13874 #: ../src/guestfs-actions.pod:3912 ../fish/guestfish-actions.pod:2689
13875 msgid "C<device> is the encrypted block device or partition."
13880 #: ../src/guestfs-actions.pod:3914 ../fish/guestfish-actions.pod:2691
13882 "The caller must supply one of the keys associated with the LUKS block "
13883 "device, in the C<key> parameter."
13888 #: ../src/guestfs-actions.pod:3917 ../fish/guestfish-actions.pod:2694
13890 "This creates a new block device called C</dev/mapper/mapname>. Reads and "
13891 "writes to this block device are decrypted from and encrypted to the "
13892 "underlying C<device> respectively."
13897 #: ../src/guestfs-actions.pod:3921
13899 "If this block device contains LVM volume groups, then calling "
13900 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
13906 #: ../src/guestfs-actions.pod:3933
13907 msgid "guestfs_luks_open_ro"
13912 #: ../src/guestfs-actions.pod:3935
13916 " guestfs_luks_open_ro (guestfs_h *g,\n"
13917 " const char *device,\n"
13918 " const char *key,\n"
13919 " const char *mapname);\n"
13925 #: ../src/guestfs-actions.pod:3941
13927 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
13933 #: ../src/guestfs-actions.pod:3952
13934 msgid "guestfs_lvcreate"
13939 #: ../src/guestfs-actions.pod:3954
13943 " guestfs_lvcreate (guestfs_h *g,\n"
13944 " const char *logvol,\n"
13945 " const char *volgroup,\n"
13952 #: ../src/guestfs-actions.pod:3960 ../fish/guestfish-actions.pod:2719
13954 "This creates an LVM logical volume called C<logvol> on the volume group "
13955 "C<volgroup>, with C<size> megabytes."
13960 #: ../src/guestfs-actions.pod:3967
13961 msgid "guestfs_lvm_canonical_lv_name"
13966 #: ../src/guestfs-actions.pod:3969
13970 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
13971 " const char *lvname);\n"
13977 #: ../src/guestfs-actions.pod:3973 ../fish/guestfish-actions.pod:2726
13979 "This converts alternative naming schemes for LVs that you might find to the "
13980 "canonical name. For example, C</dev/mapper/VG-LV> is converted to C</dev/VG/"
13986 #: ../src/guestfs-actions.pod:3977 ../fish/guestfish-actions.pod:2730
13988 "This command returns an error if the C<lvname> parameter does not refer to a "
13994 #: ../src/guestfs-actions.pod:3980
13995 msgid "See also C<guestfs_is_lv>."
14000 #: ../src/guestfs-actions.pod:3985
14001 msgid "(Added in 1.5.24)"
14006 #: ../src/guestfs-actions.pod:3987
14007 msgid "guestfs_lvm_clear_filter"
14012 #: ../src/guestfs-actions.pod:3989
14016 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
14022 #: ../src/guestfs-actions.pod:3992
14024 "This undoes the effect of C<guestfs_lvm_set_filter>. LVM will be able to "
14025 "see every block device."
14030 #: ../src/guestfs-actions.pod:3995 ../src/guestfs-actions.pod:4037
14031 #: ../fish/guestfish-actions.pod:2742 ../fish/guestfish-actions.pod:2773
14033 "This command also clears the LVM cache and performs a volume group scan."
14038 #: ../src/guestfs-actions.pod:4002
14039 msgid "guestfs_lvm_remove_all"
14044 #: ../src/guestfs-actions.pod:4004
14048 " guestfs_lvm_remove_all (guestfs_h *g);\n"
14054 #: ../src/guestfs-actions.pod:4007 ../fish/guestfish-actions.pod:2749
14056 "This command removes all LVM logical volumes, volume groups and physical "
14062 #: ../src/guestfs-actions.pod:4017
14063 msgid "guestfs_lvm_set_filter"
14068 #: ../src/guestfs-actions.pod:4019
14072 " guestfs_lvm_set_filter (guestfs_h *g,\n"
14073 " char *const *devices);\n"
14079 #: ../src/guestfs-actions.pod:4023 ../fish/guestfish-actions.pod:2759
14081 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
14082 "block devices in the list C<devices>, and will ignore all other attached "
14088 #: ../src/guestfs-actions.pod:4027 ../fish/guestfish-actions.pod:2763
14090 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
14091 "get LVM to ignore the duplicates, otherwise LVM can get confused. Note also "
14092 "there are two types of duplication possible: either cloned PVs/VGs which "
14093 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
14094 "same name. In normal operation you cannot create this situation, but you "
14095 "can do it outside LVM, eg. by cloning disk images or by bit twiddling "
14096 "inside the LVM metadata."
14101 #: ../src/guestfs-actions.pod:4040 ../fish/guestfish-actions.pod:2776
14102 msgid "You can filter whole block devices or individual partitions."
14107 #: ../src/guestfs-actions.pod:4042 ../fish/guestfish-actions.pod:2778
14109 "You cannot use this if any VG is currently in use (eg. contains a mounted "
14110 "filesystem), even if you are not filtering out that VG."
14115 #: ../src/guestfs-actions.pod:4050
14116 msgid "guestfs_lvremove"
14121 #: ../src/guestfs-actions.pod:4052
14125 " guestfs_lvremove (guestfs_h *g,\n"
14126 " const char *device);\n"
14132 #: ../src/guestfs-actions.pod:4056 ../fish/guestfish-actions.pod:2786
14134 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
14135 "LV, such as C</dev/VG/LV>."
14140 #: ../src/guestfs-actions.pod:4059 ../fish/guestfish-actions.pod:2789
14142 "You can also remove all LVs in a volume group by specifying the VG name, C</"
14148 #: ../src/guestfs-actions.pod:4064 ../src/guestfs-actions.pod:5300
14149 #: ../src/guestfs-actions.pod:7089
14150 msgid "(Added in 1.0.13)"
14155 #: ../src/guestfs-actions.pod:4066
14156 msgid "guestfs_lvrename"
14161 #: ../src/guestfs-actions.pod:4068
14165 " guestfs_lvrename (guestfs_h *g,\n"
14166 " const char *logvol,\n"
14167 " const char *newlogvol);\n"
14173 #: ../src/guestfs-actions.pod:4073 ../fish/guestfish-actions.pod:2796
14174 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
14179 #: ../src/guestfs-actions.pod:4077 ../src/guestfs-actions.pod:7102
14180 msgid "(Added in 1.0.83)"
14185 #: ../src/guestfs-actions.pod:4079
14186 msgid "guestfs_lvresize"
14191 #: ../src/guestfs-actions.pod:4081
14195 " guestfs_lvresize (guestfs_h *g,\n"
14196 " const char *device,\n"
14203 #: ../src/guestfs-actions.pod:4086 ../fish/guestfish-actions.pod:2802
14205 "This resizes (expands or shrinks) an existing LVM logical volume to "
14206 "C<mbytes>. When reducing, data in the reduced part is lost."
14211 #: ../src/guestfs-actions.pod:4094
14212 msgid "guestfs_lvresize_free"
14217 #: ../src/guestfs-actions.pod:4096
14221 " guestfs_lvresize_free (guestfs_h *g,\n"
14222 " const char *lv,\n"
14229 #: ../src/guestfs-actions.pod:4101 ../fish/guestfish-actions.pod:2810
14231 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
14232 "remaining free space in the volume group. Commonly you would call this with "
14233 "pc = 100 which expands the logical volume as much as possible, using all "
14234 "remaining free space in the volume group."
14239 #: ../src/guestfs-actions.pod:4109
14240 msgid "(Added in 1.3.3)"
14245 #: ../src/guestfs-actions.pod:4111
14246 msgid "guestfs_lvs"
14251 #: ../src/guestfs-actions.pod:4113
14255 " guestfs_lvs (guestfs_h *g);\n"
14261 #: ../src/guestfs-actions.pod:4116 ../fish/guestfish-actions.pod:2820
14263 "List all the logical volumes detected. This is the equivalent of the L<lvs"
14269 #: ../src/guestfs-actions.pod:4119 ../fish/guestfish-actions.pod:2823
14271 "This returns a list of the logical volume device names (eg. C</dev/"
14272 "VolGroup00/LogVol00>)."
14277 #: ../src/guestfs-actions.pod:4122
14278 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
14283 #: ../src/guestfs-actions.pod:4130
14284 msgid "guestfs_lvs_full"
14289 #: ../src/guestfs-actions.pod:4132
14292 " struct guestfs_lvm_lv_list *\n"
14293 " guestfs_lvs_full (guestfs_h *g);\n"
14299 #: ../src/guestfs-actions.pod:4135 ../fish/guestfish-actions.pod:2832
14301 "List all the logical volumes detected. This is the equivalent of the L<lvs"
14302 "(8)> command. The \"full\" version includes all fields."
14307 #: ../src/guestfs-actions.pod:4138
14309 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
14310 "was an error. I<The caller must call C<guestfs_free_lvm_lv_list> after use>."
14315 #: ../src/guestfs-actions.pod:4144
14316 msgid "guestfs_lvuuid"
14321 #: ../src/guestfs-actions.pod:4146
14325 " guestfs_lvuuid (guestfs_h *g,\n"
14326 " const char *device);\n"
14332 #: ../src/guestfs-actions.pod:4150 ../fish/guestfish-actions.pod:2839
14333 msgid "This command returns the UUID of the LVM LV C<device>."
14338 #: ../src/guestfs-actions.pod:4157
14339 msgid "guestfs_lxattrlist"
14344 #: ../src/guestfs-actions.pod:4159
14347 " struct guestfs_xattr_list *\n"
14348 " guestfs_lxattrlist (guestfs_h *g,\n"
14349 " const char *path,\n"
14350 " char *const *names);\n"
14356 #: ../src/guestfs-actions.pod:4164 ../fish/guestfish-actions.pod:2845
14358 "This call allows you to get the extended attributes of multiple files, where "
14359 "all files are in the directory C<path>. C<names> is the list of files from "
14365 #: ../src/guestfs-actions.pod:4168 ../fish/guestfish-actions.pod:2849
14367 "On return you get a flat list of xattr structs which must be interpreted "
14368 "sequentially. The first xattr struct always has a zero-length C<attrname>. "
14369 "C<attrval> in this struct is zero-length to indicate there was an error "
14370 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
14371 "number (the number of following attributes for this file, which could be C<"
14372 "\"0\">). Then after the first xattr struct are the zero or more attributes "
14373 "for the first named file. This repeats for the second and subsequent files."
14378 #: ../src/guestfs-actions.pod:4178
14380 "This call is intended for programs that want to efficiently list a directory "
14381 "contents without making many round-trips. See also C<guestfs_lstatlist> for "
14382 "a similarly efficient call for getting standard stats. Very long directory "
14383 "listings might cause the protocol message size to be exceeded, causing this "
14384 "call to fail. The caller must split up such requests into smaller groups of "
14390 #: ../src/guestfs-actions.pod:4192
14391 msgid "guestfs_mkdir"
14396 #: ../src/guestfs-actions.pod:4194
14400 " guestfs_mkdir (guestfs_h *g,\n"
14401 " const char *path);\n"
14407 #: ../src/guestfs-actions.pod:4198 ../fish/guestfish-actions.pod:2871
14408 msgid "Create a directory named C<path>."
14413 #: ../src/guestfs-actions.pod:4204
14414 msgid "guestfs_mkdir_mode"
14419 #: ../src/guestfs-actions.pod:4206
14423 " guestfs_mkdir_mode (guestfs_h *g,\n"
14424 " const char *path,\n"
14431 #: ../src/guestfs-actions.pod:4211 ../fish/guestfish-actions.pod:2877
14433 "This command creates a directory, setting the initial permissions of the "
14434 "directory to C<mode>."
14439 #: ../src/guestfs-actions.pod:4214 ../fish/guestfish-actions.pod:2880
14441 "For common Linux filesystems, the actual mode which is set will be C<mode & "
14442 "~umask & 01777>. Non-native-Linux filesystems may interpret the mode in "
14448 #: ../src/guestfs-actions.pod:4218
14449 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
14454 #: ../src/guestfs-actions.pod:4224
14455 msgid "guestfs_mkdir_p"
14460 #: ../src/guestfs-actions.pod:4226
14464 " guestfs_mkdir_p (guestfs_h *g,\n"
14465 " const char *path);\n"
14471 #: ../src/guestfs-actions.pod:4230 ../fish/guestfish-actions.pod:2890
14473 "Create a directory named C<path>, creating any parent directories as "
14474 "necessary. This is like the C<mkdir -p> shell command."
14479 #: ../src/guestfs-actions.pod:4237
14480 msgid "guestfs_mkdtemp"
14485 #: ../src/guestfs-actions.pod:4239
14489 " guestfs_mkdtemp (guestfs_h *g,\n"
14490 " const char *template);\n"
14496 #: ../src/guestfs-actions.pod:4243 ../fish/guestfish-actions.pod:2897
14498 "This command creates a temporary directory. The C<template> parameter "
14499 "should be a full pathname for the temporary directory name with the final "
14500 "six characters being \"XXXXXX\"."
14505 #: ../src/guestfs-actions.pod:4248 ../fish/guestfish-actions.pod:2902
14507 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
14508 "being suitable for Windows filesystems."
14513 #: ../src/guestfs-actions.pod:4251 ../fish/guestfish-actions.pod:2905
14514 msgid "The name of the temporary directory that was created is returned."
14519 #: ../src/guestfs-actions.pod:4254 ../fish/guestfish-actions.pod:2908
14520 msgid "The temporary directory is created with mode 0700 and is owned by root."
14525 #: ../src/guestfs-actions.pod:4257 ../fish/guestfish-actions.pod:2911
14527 "The caller is responsible for deleting the temporary directory and its "
14528 "contents after use."
14533 #: ../src/guestfs-actions.pod:4260 ../fish/guestfish-actions.pod:2914
14534 msgid "See also: L<mkdtemp(3)>"
14539 #: ../src/guestfs-actions.pod:4267
14540 msgid "guestfs_mke2fs_J"
14545 #: ../src/guestfs-actions.pod:4269
14549 " guestfs_mke2fs_J (guestfs_h *g,\n"
14550 " const char *fstype,\n"
14551 " int blocksize,\n"
14552 " const char *device,\n"
14553 " const char *journal);\n"
14559 #: ../src/guestfs-actions.pod:4276 ../fish/guestfish-actions.pod:2920
14561 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14562 "C<journal>. It is equivalent to the command:"
14567 #: ../src/guestfs-actions.pod:4280 ../fish/guestfish-actions.pod:2924
14570 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
14576 #: ../src/guestfs-actions.pod:4282
14577 msgid "See also C<guestfs_mke2journal>."
14582 #: ../src/guestfs-actions.pod:4286 ../src/guestfs-actions.pod:4304
14583 #: ../src/guestfs-actions.pod:4322 ../src/guestfs-actions.pod:4338
14584 #: ../src/guestfs-actions.pod:4352 ../src/guestfs-actions.pod:4366
14585 #: ../src/guestfs-actions.pod:4425 ../src/guestfs-actions.pod:4690
14586 msgid "(Added in 1.0.68)"
14591 #: ../src/guestfs-actions.pod:4288
14592 msgid "guestfs_mke2fs_JL"
14597 #: ../src/guestfs-actions.pod:4290
14601 " guestfs_mke2fs_JL (guestfs_h *g,\n"
14602 " const char *fstype,\n"
14603 " int blocksize,\n"
14604 " const char *device,\n"
14605 " const char *label);\n"
14611 #: ../src/guestfs-actions.pod:4297 ../fish/guestfish-actions.pod:2932
14613 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14614 "the journal labeled C<label>."
14619 #: ../src/guestfs-actions.pod:4300
14620 msgid "See also C<guestfs_mke2journal_L>."
14625 #: ../src/guestfs-actions.pod:4306
14626 msgid "guestfs_mke2fs_JU"
14631 #: ../src/guestfs-actions.pod:4308
14635 " guestfs_mke2fs_JU (guestfs_h *g,\n"
14636 " const char *fstype,\n"
14637 " int blocksize,\n"
14638 " const char *device,\n"
14639 " const char *uuid);\n"
14645 #: ../src/guestfs-actions.pod:4315 ../fish/guestfish-actions.pod:2941
14647 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14648 "the journal with UUID C<uuid>."
14653 #: ../src/guestfs-actions.pod:4318
14654 msgid "See also C<guestfs_mke2journal_U>."
14659 #: ../src/guestfs-actions.pod:4324
14660 msgid "guestfs_mke2journal"
14665 #: ../src/guestfs-actions.pod:4326
14669 " guestfs_mke2journal (guestfs_h *g,\n"
14670 " int blocksize,\n"
14671 " const char *device);\n"
14677 #: ../src/guestfs-actions.pod:4331 ../fish/guestfish-actions.pod:2950
14679 "This creates an ext2 external journal on C<device>. It is equivalent to the "
14685 #: ../src/guestfs-actions.pod:4334 ../fish/guestfish-actions.pod:2953
14688 " mke2fs -O journal_dev -b blocksize device\n"
14694 #: ../src/guestfs-actions.pod:4340
14695 msgid "guestfs_mke2journal_L"
14700 #: ../src/guestfs-actions.pod:4342
14704 " guestfs_mke2journal_L (guestfs_h *g,\n"
14705 " int blocksize,\n"
14706 " const char *label,\n"
14707 " const char *device);\n"
14713 #: ../src/guestfs-actions.pod:4348 ../fish/guestfish-actions.pod:2959
14714 msgid "This creates an ext2 external journal on C<device> with label C<label>."
14719 #: ../src/guestfs-actions.pod:4354
14720 msgid "guestfs_mke2journal_U"
14725 #: ../src/guestfs-actions.pod:4356
14729 " guestfs_mke2journal_U (guestfs_h *g,\n"
14730 " int blocksize,\n"
14731 " const char *uuid,\n"
14732 " const char *device);\n"
14738 #: ../src/guestfs-actions.pod:4362 ../fish/guestfish-actions.pod:2965
14739 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
14744 #: ../src/guestfs-actions.pod:4368
14745 msgid "guestfs_mkfifo"
14750 #: ../src/guestfs-actions.pod:4370
14754 " guestfs_mkfifo (guestfs_h *g,\n"
14756 " const char *path);\n"
14762 #: ../src/guestfs-actions.pod:4375
14764 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>. It "
14765 "is just a convenient wrapper around C<guestfs_mknod>."
14770 #: ../src/guestfs-actions.pod:4385
14771 msgid "guestfs_mkfs"
14776 #: ../src/guestfs-actions.pod:4387
14780 " guestfs_mkfs (guestfs_h *g,\n"
14781 " const char *fstype,\n"
14782 " const char *device);\n"
14788 #: ../src/guestfs-actions.pod:4392 ../fish/guestfish-actions.pod:2981
14790 "This creates a filesystem on C<device> (usually a partition or LVM logical "
14791 "volume). The filesystem type is C<fstype>, for example C<ext3>."
14796 #: ../src/guestfs-actions.pod:4400
14797 msgid "guestfs_mkfs_b"
14802 #: ../src/guestfs-actions.pod:4402
14806 " guestfs_mkfs_b (guestfs_h *g,\n"
14807 " const char *fstype,\n"
14808 " int blocksize,\n"
14809 " const char *device);\n"
14815 #: ../src/guestfs-actions.pod:4408
14817 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
14818 "block size of the resulting filesystem. Supported block sizes depend on the "
14819 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
14824 #: ../src/guestfs-actions.pod:4413 ../src/guestfs-actions.pod:4456
14825 #: ../fish/guestfish-actions.pod:2994 ../fish/guestfish-actions.pod:3021
14827 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
14833 #: ../src/guestfs-actions.pod:4418 ../fish/guestfish-actions.pod:2997
14835 "This function is deprecated. In new code, use the C<mkfs_opts> call instead."
14840 #: ../src/guestfs-actions.pod:4427
14841 msgid "guestfs_mkfs_opts"
14846 #: ../src/guestfs-actions.pod:4429
14850 " guestfs_mkfs_opts (guestfs_h *g,\n"
14851 " const char *fstype,\n"
14852 " const char *device,\n"
14858 #: ../src/guestfs-actions.pod:4440
14861 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
14862 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
14868 #: ../src/guestfs-actions.pod:4443 ../fish/guestfish-actions.pod:3008
14870 "This function creates a filesystem on C<device>. The filesystem type is "
14871 "C<fstype>, for example C<ext3>."
14876 #: ../src/guestfs-actions.pod:4450 ../fish/guestfish-actions.pod:3015
14877 msgid "C<blocksize>"
14882 #: ../src/guestfs-actions.pod:4452 ../fish/guestfish-actions.pod:3017
14884 "The filesystem block size. Supported block sizes depend on the filesystem "
14885 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
14890 #: ../src/guestfs-actions.pod:4459 ../fish/guestfish-actions.pod:3024
14891 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
14895 #: ../src/guestfs-actions.pod:4461 ../fish/guestfish-actions.pod:3026
14896 msgid "C<features>"
14900 #: ../src/guestfs-actions.pod:4463 ../fish/guestfish-actions.pod:3028
14901 msgid "This passes the C<-O> parameter to the external mkfs program."
14905 #: ../src/guestfs-actions.pod:4465 ../fish/guestfish-actions.pod:3030
14907 "For certain filesystem types, this allows extra filesystem features to be "
14908 "selected. See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
14912 #: ../src/guestfs-actions.pod:4469 ../fish/guestfish-actions.pod:3034
14914 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
14919 #: ../src/guestfs-actions.pod:4476
14920 msgid "(Added in 1.7.19)"
14925 #: ../src/guestfs-actions.pod:4478
14926 msgid "guestfs_mkfs_opts_va"
14931 #: ../src/guestfs-actions.pod:4480
14935 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
14936 " const char *fstype,\n"
14937 " const char *device,\n"
14938 " va_list args);\n"
14944 #: ../src/guestfs-actions.pod:4486
14945 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
14950 #: ../src/guestfs-actions.pod:4490
14951 msgid "guestfs_mkfs_opts_argv"
14956 #: ../src/guestfs-actions.pod:4492
14960 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
14961 " const char *fstype,\n"
14962 " const char *device,\n"
14963 " const struct guestfs_mkfs_opts_argv *optargs);\n"
14969 #: ../src/guestfs-actions.pod:4498
14970 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
14975 #: ../src/guestfs-actions.pod:4502
14976 msgid "guestfs_mkmountpoint"
14981 #: ../src/guestfs-actions.pod:4504
14985 " guestfs_mkmountpoint (guestfs_h *g,\n"
14986 " const char *exemptpath);\n"
14992 #: ../src/guestfs-actions.pod:4508
14994 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
14995 "that can be used to create extra mountpoints before mounting the first "
15001 #: ../src/guestfs-actions.pod:4512 ../fish/guestfish-actions.pod:3049
15003 "These calls are I<only> necessary in some very limited circumstances, mainly "
15004 "the case where you want to mount a mix of unrelated and/or read-only "
15005 "filesystems together."
15010 #: ../src/guestfs-actions.pod:4516 ../fish/guestfish-actions.pod:3053
15012 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
15013 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
15014 "inside that. You can unpack this as follows in guestfish:"
15019 #: ../src/guestfs-actions.pod:4521 ../fish/guestfish-actions.pod:3058
15022 " add-ro Fedora-11-i686-Live.iso\n"
15024 " mkmountpoint /cd\n"
15025 " mkmountpoint /sqsh\n"
15026 " mkmountpoint /ext3fs\n"
15027 " mount /dev/sda /cd\n"
15028 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
15029 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
15035 #: ../src/guestfs-actions.pod:4530 ../fish/guestfish-actions.pod:3067
15036 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
15041 #: ../src/guestfs-actions.pod:4532
15043 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>. You "
15044 "may get unexpected errors if you try to mix these calls. It is safest to "
15045 "manually unmount filesystems and remove mountpoints after use."
15050 #: ../src/guestfs-actions.pod:4536
15052 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
15053 "first, so for this to work for manual mountpoints, you must ensure that the "
15054 "innermost mountpoints have the longest pathnames, as in the example code "
15060 #: ../src/guestfs-actions.pod:4541 ../fish/guestfish-actions.pod:3078
15062 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
15066 #: ../src/guestfs-actions.pod:4543
15068 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
15069 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
15070 "can also trigger these issues."
15075 #: ../src/guestfs-actions.pod:4549 ../src/guestfs-actions.pod:4808
15076 #: ../src/guestfs-actions.pod:5718
15077 msgid "(Added in 1.0.62)"
15082 #: ../src/guestfs-actions.pod:4551
15083 msgid "guestfs_mknod"
15088 #: ../src/guestfs-actions.pod:4553
15092 " guestfs_mknod (guestfs_h *g,\n"
15096 " const char *path);\n"
15102 #: ../src/guestfs-actions.pod:4560 ../fish/guestfish-actions.pod:3088
15104 "This call creates block or character special devices, or named pipes (FIFOs)."
15109 #: ../src/guestfs-actions.pod:4563 ../fish/guestfish-actions.pod:3091
15111 "The C<mode> parameter should be the mode, using the standard constants. "
15112 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
15113 "used when creating block and character special devices."
15118 #: ../src/guestfs-actions.pod:4568
15120 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
15121 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
15122 "regular file). These constants are available in the standard Linux header "
15123 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
15124 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
15125 "the appropriate constant for you."
15130 #: ../src/guestfs-actions.pod:4582
15131 msgid "guestfs_mknod_b"
15136 #: ../src/guestfs-actions.pod:4584
15140 " guestfs_mknod_b (guestfs_h *g,\n"
15144 " const char *path);\n"
15150 #: ../src/guestfs-actions.pod:4591
15152 "This call creates a block device node called C<path> with mode C<mode> and "
15153 "device major/minor C<devmajor> and C<devminor>. It is just a convenient "
15154 "wrapper around C<guestfs_mknod>."
15159 #: ../src/guestfs-actions.pod:4601
15160 msgid "guestfs_mknod_c"
15165 #: ../src/guestfs-actions.pod:4603
15169 " guestfs_mknod_c (guestfs_h *g,\n"
15173 " const char *path);\n"
15179 #: ../src/guestfs-actions.pod:4610
15181 "This call creates a char device node called C<path> with mode C<mode> and "
15182 "device major/minor C<devmajor> and C<devminor>. It is just a convenient "
15183 "wrapper around C<guestfs_mknod>."
15188 #: ../src/guestfs-actions.pod:4620
15189 msgid "guestfs_mkswap"
15194 #: ../src/guestfs-actions.pod:4622
15198 " guestfs_mkswap (guestfs_h *g,\n"
15199 " const char *device);\n"
15205 #: ../src/guestfs-actions.pod:4626 ../fish/guestfish-actions.pod:3130
15206 msgid "Create a swap partition on C<device>."
15211 #: ../src/guestfs-actions.pod:4632
15212 msgid "guestfs_mkswap_L"
15217 #: ../src/guestfs-actions.pod:4634
15221 " guestfs_mkswap_L (guestfs_h *g,\n"
15222 " const char *label,\n"
15223 " const char *device);\n"
15229 #: ../src/guestfs-actions.pod:4639 ../fish/guestfish-actions.pod:3136
15230 msgid "Create a swap partition on C<device> with label C<label>."
15235 #: ../src/guestfs-actions.pod:4641 ../fish/guestfish-actions.pod:3138
15237 "Note that you cannot attach a swap label to a block device (eg. C</dev/"
15238 "sda>), just to a partition. This appears to be a limitation of the kernel "
15244 #: ../src/guestfs-actions.pod:4649
15245 msgid "guestfs_mkswap_U"
15250 #: ../src/guestfs-actions.pod:4651
15254 " guestfs_mkswap_U (guestfs_h *g,\n"
15255 " const char *uuid,\n"
15256 " const char *device);\n"
15262 #: ../src/guestfs-actions.pod:4656 ../fish/guestfish-actions.pod:3146
15263 msgid "Create a swap partition on C<device> with UUID C<uuid>."
15268 #: ../src/guestfs-actions.pod:4662
15269 msgid "guestfs_mkswap_file"
15274 #: ../src/guestfs-actions.pod:4664
15278 " guestfs_mkswap_file (guestfs_h *g,\n"
15279 " const char *path);\n"
15285 #: ../src/guestfs-actions.pod:4668 ../fish/guestfish-actions.pod:3152
15286 msgid "Create a swap file."
15291 #: ../src/guestfs-actions.pod:4670
15293 "This command just writes a swap file signature to an existing file. To "
15294 "create the file itself, use something like C<guestfs_fallocate>."
15299 #: ../src/guestfs-actions.pod:4677
15300 msgid "guestfs_modprobe"
15305 #: ../src/guestfs-actions.pod:4679
15309 " guestfs_modprobe (guestfs_h *g,\n"
15310 " const char *modulename);\n"
15316 #: ../src/guestfs-actions.pod:4683 ../fish/guestfish-actions.pod:3161
15317 msgid "This loads a kernel module in the appliance."
15322 #: ../src/guestfs-actions.pod:4685 ../fish/guestfish-actions.pod:3163
15324 "The kernel module must have been whitelisted when libguestfs was built (see "
15325 "C<appliance/kmod.whitelist.in> in the source)."
15330 #: ../src/guestfs-actions.pod:4692
15331 msgid "guestfs_mount"
15336 #: ../src/guestfs-actions.pod:4694
15340 " guestfs_mount (guestfs_h *g,\n"
15341 " const char *device,\n"
15342 " const char *mountpoint);\n"
15348 #: ../src/guestfs-actions.pod:4699 ../fish/guestfish-actions.pod:3170
15350 "Mount a guest disk at a position in the filesystem. Block devices are named "
15351 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest. If "
15352 "those block devices contain partitions, they will have the usual names (eg. "
15353 "C</dev/sda1>). Also LVM C</dev/VG/LV>-style names can be used."
15358 #: ../src/guestfs-actions.pod:4705 ../fish/guestfish-actions.pod:3176
15360 "The rules are the same as for L<mount(2)>: A filesystem must first be "
15361 "mounted on C</> before others can be mounted. Other filesystems can only be "
15362 "mounted on directories which already exist."
15367 #: ../src/guestfs-actions.pod:4710 ../fish/guestfish-actions.pod:3181
15369 "The mounted filesystem is writable, if we have sufficient permissions on the "
15370 "underlying device."
15375 #: ../src/guestfs-actions.pod:4713
15377 "B<Important note:> When you use this call, the filesystem options C<sync> "
15378 "and C<noatime> are set implicitly. This was originally done because we "
15379 "thought it would improve reliability, but it turns out that I<-o sync> has a "
15380 "very large negative performance impact and negligible effect on "
15381 "reliability. Therefore we recommend that you avoid using C<guestfs_mount> "
15382 "in any code that needs performance, and instead use C<guestfs_mount_options> "
15383 "(use an empty string for the first parameter if you don't want any options)."
15388 #: ../src/guestfs-actions.pod:4727
15389 msgid "guestfs_mount_loop"
15394 #: ../src/guestfs-actions.pod:4729
15398 " guestfs_mount_loop (guestfs_h *g,\n"
15399 " const char *file,\n"
15400 " const char *mountpoint);\n"
15406 #: ../src/guestfs-actions.pod:4734 ../fish/guestfish-actions.pod:3198
15408 "This command lets you mount C<file> (a filesystem image in a file) on a "
15409 "mount point. It is entirely equivalent to the command C<mount -o loop file "
15415 #: ../src/guestfs-actions.pod:4742
15416 msgid "guestfs_mount_options"
15421 #: ../src/guestfs-actions.pod:4744
15425 " guestfs_mount_options (guestfs_h *g,\n"
15426 " const char *options,\n"
15427 " const char *device,\n"
15428 " const char *mountpoint);\n"
15434 #: ../src/guestfs-actions.pod:4750
15436 "This is the same as the C<guestfs_mount> command, but it allows you to set "
15437 "the mount options as for the L<mount(8)> I<-o> flag."
15442 #: ../src/guestfs-actions.pod:4754 ../fish/guestfish-actions.pod:3210
15444 "If the C<options> parameter is an empty string, then no options are passed "
15445 "(all options default to whatever the filesystem uses)."
15450 #: ../src/guestfs-actions.pod:4760 ../src/guestfs-actions.pod:4774
15451 #: ../src/guestfs-actions.pod:4791
15452 msgid "(Added in 1.0.10)"
15457 #: ../src/guestfs-actions.pod:4762
15458 msgid "guestfs_mount_ro"
15463 #: ../src/guestfs-actions.pod:4764
15467 " guestfs_mount_ro (guestfs_h *g,\n"
15468 " const char *device,\n"
15469 " const char *mountpoint);\n"
15475 #: ../src/guestfs-actions.pod:4769
15477 "This is the same as the C<guestfs_mount> command, but it mounts the "
15478 "filesystem with the read-only (I<-o ro>) flag."
15483 #: ../src/guestfs-actions.pod:4776
15484 msgid "guestfs_mount_vfs"
15489 #: ../src/guestfs-actions.pod:4778
15493 " guestfs_mount_vfs (guestfs_h *g,\n"
15494 " const char *options,\n"
15495 " const char *vfstype,\n"
15496 " const char *device,\n"
15497 " const char *mountpoint);\n"
15503 #: ../src/guestfs-actions.pod:4785
15505 "This is the same as the C<guestfs_mount> command, but it allows you to set "
15506 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
15512 #: ../src/guestfs-actions.pod:4793
15513 msgid "guestfs_mountpoints"
15518 #: ../src/guestfs-actions.pod:4795
15522 " guestfs_mountpoints (guestfs_h *g);\n"
15528 #: ../src/guestfs-actions.pod:4798
15530 "This call is similar to C<guestfs_mounts>. That call returns a list of "
15531 "devices. This one returns a hash table (map) of device name to directory "
15532 "where the device is mounted."
15537 #: ../src/guestfs-actions.pod:4810
15538 msgid "guestfs_mounts"
15543 #: ../src/guestfs-actions.pod:4812
15547 " guestfs_mounts (guestfs_h *g);\n"
15553 #: ../src/guestfs-actions.pod:4815 ../fish/guestfish-actions.pod:3241
15555 "This returns the list of currently mounted filesystems. It returns the list "
15556 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
15561 #: ../src/guestfs-actions.pod:4818 ../fish/guestfish-actions.pod:3244
15562 msgid "Some internal mounts are not shown."
15567 #: ../src/guestfs-actions.pod:4820
15568 msgid "See also: C<guestfs_mountpoints>"
15573 #: ../src/guestfs-actions.pod:4828
15579 #: ../src/guestfs-actions.pod:4830
15583 " guestfs_mv (guestfs_h *g,\n"
15584 " const char *src,\n"
15585 " const char *dest);\n"
15591 #: ../src/guestfs-actions.pod:4835 ../fish/guestfish-actions.pod:3252
15593 "This moves a file from C<src> to C<dest> where C<dest> is either a "
15594 "destination filename or destination directory."
15599 #: ../src/guestfs-actions.pod:4842
15600 msgid "guestfs_ntfs_3g_probe"
15605 #: ../src/guestfs-actions.pod:4844
15609 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
15611 " const char *device);\n"
15617 #: ../src/guestfs-actions.pod:4849 ../fish/guestfish-actions.pod:3259
15619 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
15620 "C<device> for mountability. (Not all NTFS volumes can be mounted read-"
15621 "write, and some cannot be mounted at all)."
15626 #: ../src/guestfs-actions.pod:4853 ../fish/guestfish-actions.pod:3263
15628 "C<rw> is a boolean flag. Set it to true if you want to test if the volume "
15629 "can be mounted read-write. Set it to false if you want to test if the "
15630 "volume can be mounted read-only."
15635 #: ../src/guestfs-actions.pod:4857 ../fish/guestfish-actions.pod:3267
15637 "The return value is an integer which C<0> if the operation would succeed, or "
15638 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
15643 #: ../src/guestfs-actions.pod:4863
15644 msgid "(Added in 1.0.43)"
15649 #: ../src/guestfs-actions.pod:4865
15650 msgid "guestfs_ntfsresize"
15655 #: ../src/guestfs-actions.pod:4867
15659 " guestfs_ntfsresize (guestfs_h *g,\n"
15660 " const char *device);\n"
15666 #: ../src/guestfs-actions.pod:4871 ../fish/guestfish-actions.pod:3275
15668 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
15669 "size of the underlying device. See also L<ntfsresize(8)>."
15674 #: ../src/guestfs-actions.pod:4879
15675 msgid "guestfs_ntfsresize_size"
15680 #: ../src/guestfs-actions.pod:4881
15684 " guestfs_ntfsresize_size (guestfs_h *g,\n"
15685 " const char *device,\n"
15686 " int64_t size);\n"
15692 #: ../src/guestfs-actions.pod:4886
15694 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
15695 "to specify the new size (in bytes) explicitly."
15700 #: ../src/guestfs-actions.pod:4891 ../src/guestfs-actions.pod:5327
15701 #: ../src/guestfs-actions.pod:5400 ../src/guestfs-actions.pod:5666
15702 #: ../src/guestfs-actions.pod:7237
15703 msgid "(Added in 1.3.14)"
15708 #: ../src/guestfs-actions.pod:4893
15709 msgid "guestfs_part_add"
15714 #: ../src/guestfs-actions.pod:4895
15718 " guestfs_part_add (guestfs_h *g,\n"
15719 " const char *device,\n"
15720 " const char *prlogex,\n"
15721 " int64_t startsect,\n"
15722 " int64_t endsect);\n"
15728 #: ../src/guestfs-actions.pod:4902
15730 "This command adds a partition to C<device>. If there is no partition table "
15731 "on the device, call C<guestfs_part_init> first."
15736 #: ../src/guestfs-actions.pod:4905 ../fish/guestfish-actions.pod:3293
15738 "The C<prlogex> parameter is the type of partition. Normally you should pass "
15739 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
15740 "C<logical>) and C<e> (or C<extended>) partition types."
15745 #: ../src/guestfs-actions.pod:4910 ../fish/guestfish-actions.pod:3298
15747 "C<startsect> and C<endsect> are the start and end of the partition in "
15748 "I<sectors>. C<endsect> may be negative, which means it counts backwards "
15749 "from the end of the disk (C<-1> is the last sector)."
15754 #: ../src/guestfs-actions.pod:4914
15756 "Creating a partition which covers the whole disk is not so easy. Use "
15757 "C<guestfs_part_disk> to do that."
15762 #: ../src/guestfs-actions.pod:4919 ../src/guestfs-actions.pod:4957
15763 #: ../src/guestfs-actions.pod:5010 ../src/guestfs-actions.pod:5088
15764 #: ../src/guestfs-actions.pod:5126 ../src/guestfs-actions.pod:5145
15765 #: ../src/guestfs-actions.pod:5185
15766 msgid "(Added in 1.0.78)"
15771 #: ../src/guestfs-actions.pod:4921
15772 msgid "guestfs_part_del"
15777 #: ../src/guestfs-actions.pod:4923
15781 " guestfs_part_del (guestfs_h *g,\n"
15782 " const char *device,\n"
15789 #: ../src/guestfs-actions.pod:4928 ../fish/guestfish-actions.pod:3309
15790 msgid "This command deletes the partition numbered C<partnum> on C<device>."
15795 #: ../src/guestfs-actions.pod:4930 ../fish/guestfish-actions.pod:3311
15797 "Note that in the case of MBR partitioning, deleting an extended partition "
15798 "also deletes any logical partitions it contains."
15803 #: ../src/guestfs-actions.pod:4938
15804 msgid "guestfs_part_disk"
15809 #: ../src/guestfs-actions.pod:4940
15813 " guestfs_part_disk (guestfs_h *g,\n"
15814 " const char *device,\n"
15815 " const char *parttype);\n"
15821 #: ../src/guestfs-actions.pod:4945
15823 "This command is simply a combination of C<guestfs_part_init> followed by "
15824 "C<guestfs_part_add> to create a single primary partition covering the whole "
15830 #: ../src/guestfs-actions.pod:4949
15832 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
15833 "possible values are described in C<guestfs_part_init>."
15838 #: ../src/guestfs-actions.pod:4959
15839 msgid "guestfs_part_get_bootable"
15844 #: ../src/guestfs-actions.pod:4961
15848 " guestfs_part_get_bootable (guestfs_h *g,\n"
15849 " const char *device,\n"
15856 #: ../src/guestfs-actions.pod:4966 ../fish/guestfish-actions.pod:3333
15858 "This command returns true if the partition C<partnum> on C<device> has the "
15859 "bootable flag set."
15864 #: ../src/guestfs-actions.pod:4969
15865 msgid "See also C<guestfs_part_set_bootable>."
15870 #: ../src/guestfs-actions.pod:4975
15871 msgid "guestfs_part_get_mbr_id"
15876 #: ../src/guestfs-actions.pod:4977
15880 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
15881 " const char *device,\n"
15888 #: ../src/guestfs-actions.pod:4982 ../fish/guestfish-actions.pod:3342
15890 "Returns the MBR type byte (also known as the ID byte) from the numbered "
15891 "partition C<partnum>."
15896 #: ../src/guestfs-actions.pod:4985 ../src/guestfs-actions.pod:5161
15898 "Note that only MBR (old DOS-style) partitions have type bytes. You will get "
15899 "undefined results for other partition table types (see "
15900 "C<guestfs_part_get_parttype>)."
15905 #: ../src/guestfs-actions.pod:4993
15906 msgid "guestfs_part_get_parttype"
15911 #: ../src/guestfs-actions.pod:4995
15915 " guestfs_part_get_parttype (guestfs_h *g,\n"
15916 " const char *device);\n"
15922 #: ../src/guestfs-actions.pod:4999 ../fish/guestfish-actions.pod:3353
15924 "This command examines the partition table on C<device> and returns the "
15925 "partition table type (format) being used."
15930 #: ../src/guestfs-actions.pod:5002
15932 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
15933 "table), C<gpt> (a GPT/EFI-style partition table). Other values are "
15934 "possible, although unusual. See C<guestfs_part_init> for a full list."
15939 #: ../src/guestfs-actions.pod:5012
15940 msgid "guestfs_part_init"
15945 #: ../src/guestfs-actions.pod:5014
15949 " guestfs_part_init (guestfs_h *g,\n"
15950 " const char *device,\n"
15951 " const char *parttype);\n"
15957 #: ../src/guestfs-actions.pod:5019 ../fish/guestfish-actions.pod:3365
15959 "This creates an empty partition table on C<device> of one of the partition "
15960 "types listed below. Usually C<parttype> should be either C<msdos> or C<gpt> "
15961 "(for large disks)."
15966 #: ../src/guestfs-actions.pod:5023
15968 "Initially there are no partitions. Following this, you should call "
15969 "C<guestfs_part_add> for each partition required."
15974 #: ../src/guestfs-actions.pod:5026 ../fish/guestfish-actions.pod:3372
15975 msgid "Possible values for C<parttype> are:"
15980 #: ../src/guestfs-actions.pod:5030 ../fish/guestfish-actions.pod:3376
15981 msgid "B<efi> | B<gpt>"
15986 #: ../src/guestfs-actions.pod:5032 ../fish/guestfish-actions.pod:3378
15987 msgid "Intel EFI / GPT partition table."
15992 #: ../src/guestfs-actions.pod:5034 ../fish/guestfish-actions.pod:3380
15994 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
15995 "and Intel-based Mac OS X. It also has limited backwards compatibility with "
15996 "the C<mbr> format."
16001 #: ../src/guestfs-actions.pod:5038 ../fish/guestfish-actions.pod:3384
16002 msgid "B<mbr> | B<msdos>"
16007 #: ../src/guestfs-actions.pod:5040 ../fish/guestfish-actions.pod:3386
16009 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
16010 "Windows. This partition type will B<only> work for device sizes up to 2 "
16011 "TB. For large disks we recommend using C<gpt>."
16016 #: ../src/guestfs-actions.pod:5047 ../fish/guestfish-actions.pod:3393
16018 "Other partition table types that may work but are not supported include:"
16023 #: ../src/guestfs-actions.pod:5052 ../fish/guestfish-actions.pod:3398
16029 #: ../src/guestfs-actions.pod:5054 ../fish/guestfish-actions.pod:3400
16030 msgid "AIX disk labels."
16035 #: ../src/guestfs-actions.pod:5056 ../fish/guestfish-actions.pod:3402
16036 msgid "B<amiga> | B<rdb>"
16041 #: ../src/guestfs-actions.pod:5058 ../fish/guestfish-actions.pod:3404
16042 msgid "Amiga \"Rigid Disk Block\" format."
16047 #: ../src/guestfs-actions.pod:5060 ../fish/guestfish-actions.pod:3406
16053 #: ../src/guestfs-actions.pod:5062 ../fish/guestfish-actions.pod:3408
16054 msgid "BSD disk labels."
16059 #: ../src/guestfs-actions.pod:5064 ../fish/guestfish-actions.pod:3410
16065 #: ../src/guestfs-actions.pod:5066 ../fish/guestfish-actions.pod:3412
16066 msgid "DASD, used on IBM mainframes."
16071 #: ../src/guestfs-actions.pod:5068 ../fish/guestfish-actions.pod:3414
16077 #: ../src/guestfs-actions.pod:5070 ../fish/guestfish-actions.pod:3416
16078 msgid "MIPS/SGI volumes."
16083 #: ../src/guestfs-actions.pod:5072 ../fish/guestfish-actions.pod:3418
16089 #: ../src/guestfs-actions.pod:5074 ../fish/guestfish-actions.pod:3420
16090 msgid "Old Mac partition format. Modern Macs use C<gpt>."
16095 #: ../src/guestfs-actions.pod:5076 ../fish/guestfish-actions.pod:3422
16101 #: ../src/guestfs-actions.pod:5078 ../fish/guestfish-actions.pod:3424
16102 msgid "NEC PC-98 format, common in Japan apparently."
16107 #: ../src/guestfs-actions.pod:5080 ../fish/guestfish-actions.pod:3426
16113 #: ../src/guestfs-actions.pod:5082 ../fish/guestfish-actions.pod:3428
16114 msgid "Sun disk labels."
16119 #: ../src/guestfs-actions.pod:5090
16120 msgid "guestfs_part_list"
16125 #: ../src/guestfs-actions.pod:5092
16128 " struct guestfs_partition_list *\n"
16129 " guestfs_part_list (guestfs_h *g,\n"
16130 " const char *device);\n"
16136 #: ../src/guestfs-actions.pod:5096 ../fish/guestfish-actions.pod:3436
16138 "This command parses the partition table on C<device> and returns the list of "
16139 "partitions found."
16144 #: ../src/guestfs-actions.pod:5099 ../fish/guestfish-actions.pod:3439
16145 msgid "The fields in the returned structure are:"
16150 #: ../src/guestfs-actions.pod:5103 ../fish/guestfish-actions.pod:3443
16151 msgid "B<part_num>"
16156 #: ../src/guestfs-actions.pod:5105 ../fish/guestfish-actions.pod:3445
16157 msgid "Partition number, counting from 1."
16162 #: ../src/guestfs-actions.pod:5107 ../fish/guestfish-actions.pod:3447
16163 msgid "B<part_start>"
16168 #: ../src/guestfs-actions.pod:5109
16170 "Start of the partition I<in bytes>. To get sectors you have to divide by "
16171 "the device's sector size, see C<guestfs_blockdev_getss>."
16176 #: ../src/guestfs-actions.pod:5112 ../fish/guestfish-actions.pod:3452
16177 msgid "B<part_end>"
16182 #: ../src/guestfs-actions.pod:5114 ../fish/guestfish-actions.pod:3454
16183 msgid "End of the partition in bytes."
16188 #: ../src/guestfs-actions.pod:5116 ../fish/guestfish-actions.pod:3456
16189 msgid "B<part_size>"
16194 #: ../src/guestfs-actions.pod:5118 ../fish/guestfish-actions.pod:3458
16195 msgid "Size of the partition in bytes."
16200 #: ../src/guestfs-actions.pod:5122
16202 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
16203 "was an error. I<The caller must call C<guestfs_free_partition_list> after "
16209 #: ../src/guestfs-actions.pod:5128
16210 msgid "guestfs_part_set_bootable"
16215 #: ../src/guestfs-actions.pod:5130
16219 " guestfs_part_set_bootable (guestfs_h *g,\n"
16220 " const char *device,\n"
16222 " int bootable);\n"
16228 #: ../src/guestfs-actions.pod:5136 ../fish/guestfish-actions.pod:3466
16230 "This sets the bootable flag on partition numbered C<partnum> on device "
16231 "C<device>. Note that partitions are numbered from 1."
16236 #: ../src/guestfs-actions.pod:5139 ../fish/guestfish-actions.pod:3469
16238 "The bootable flag is used by some operating systems (notably Windows) to "
16239 "determine which partition to boot from. It is by no means universally "
16245 #: ../src/guestfs-actions.pod:5147
16246 msgid "guestfs_part_set_mbr_id"
16251 #: ../src/guestfs-actions.pod:5149
16255 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
16256 " const char *device,\n"
16264 #: ../src/guestfs-actions.pod:5155 ../fish/guestfish-actions.pod:3477
16266 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
16267 "C<partnum> to C<idbyte>. Note that the type bytes quoted in most "
16268 "documentation are in fact hexadecimal numbers, but usually documented "
16269 "without any leading \"0x\" which might be confusing."
16274 #: ../src/guestfs-actions.pod:5169
16275 msgid "guestfs_part_set_name"
16280 #: ../src/guestfs-actions.pod:5171
16284 " guestfs_part_set_name (guestfs_h *g,\n"
16285 " const char *device,\n"
16287 " const char *name);\n"
16293 #: ../src/guestfs-actions.pod:5177 ../fish/guestfish-actions.pod:3491
16295 "This sets the partition name on partition numbered C<partnum> on device "
16296 "C<device>. Note that partitions are numbered from 1."
16301 #: ../src/guestfs-actions.pod:5180 ../fish/guestfish-actions.pod:3494
16303 "The partition name can only be set on certain types of partition table. "
16304 "This works on C<gpt> but not on C<mbr> partitions."
16309 #: ../src/guestfs-actions.pod:5187
16310 msgid "guestfs_part_to_dev"
16315 #: ../src/guestfs-actions.pod:5189
16319 " guestfs_part_to_dev (guestfs_h *g,\n"
16320 " const char *partition);\n"
16326 #: ../src/guestfs-actions.pod:5193 ../fish/guestfish-actions.pod:3501
16328 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
16329 "partition number, returning the device name (eg. \"/dev/sdb\")."
16334 #: ../src/guestfs-actions.pod:5197
16336 "The named partition must exist, for example as a string returned from "
16337 "C<guestfs_list_partitions>."
16342 #: ../src/guestfs-actions.pod:5205
16343 msgid "guestfs_ping_daemon"
16348 #: ../src/guestfs-actions.pod:5207
16352 " guestfs_ping_daemon (guestfs_h *g);\n"
16358 #: ../src/guestfs-actions.pod:5210 ../fish/guestfish-actions.pod:3512
16360 "This is a test probe into the guestfs daemon running inside the qemu "
16361 "subprocess. Calling this function checks that the daemon responds to the "
16362 "ping message, without affecting the daemon or attached block device(s) in "
16368 #: ../src/guestfs-actions.pod:5219
16369 msgid "guestfs_pread"
16374 #: ../src/guestfs-actions.pod:5221
16378 " guestfs_pread (guestfs_h *g,\n"
16379 " const char *path,\n"
16381 " int64_t offset,\n"
16382 " size_t *size_r);\n"
16388 #: ../src/guestfs-actions.pod:5228 ../fish/guestfish-actions.pod:3521
16390 "This command lets you read part of a file. It reads C<count> bytes of the "
16391 "file, starting at C<offset>, from file C<path>."
16396 #: ../src/guestfs-actions.pod:5231 ../src/guestfs-actions.pod:5257
16397 #: ../fish/guestfish-actions.pod:3524 ../fish/guestfish-actions.pod:3539
16399 "This may read fewer bytes than requested. For further details see the "
16400 "L<pread(2)> system call."
16405 #: ../src/guestfs-actions.pod:5234
16406 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
16411 #: ../src/guestfs-actions.pod:5245
16412 msgid "guestfs_pread_device"
16417 #: ../src/guestfs-actions.pod:5247
16421 " guestfs_pread_device (guestfs_h *g,\n"
16422 " const char *device,\n"
16424 " int64_t offset,\n"
16425 " size_t *size_r);\n"
16431 #: ../src/guestfs-actions.pod:5254 ../fish/guestfish-actions.pod:3536
16433 "This command lets you read part of a file. It reads C<count> bytes of "
16434 "C<device>, starting at C<offset>."
16439 #: ../src/guestfs-actions.pod:5260
16440 msgid "See also C<guestfs_pread>."
16445 #: ../src/guestfs-actions.pod:5269
16446 msgid "(Added in 1.5.21)"
16451 #: ../src/guestfs-actions.pod:5271
16452 msgid "guestfs_pvcreate"
16457 #: ../src/guestfs-actions.pod:5273
16461 " guestfs_pvcreate (guestfs_h *g,\n"
16462 " const char *device);\n"
16468 #: ../src/guestfs-actions.pod:5277 ../fish/guestfish-actions.pod:3551
16470 "This creates an LVM physical volume on the named C<device>, where C<device> "
16471 "should usually be a partition name such as C</dev/sda1>."
16476 #: ../src/guestfs-actions.pod:5285
16477 msgid "guestfs_pvremove"
16482 #: ../src/guestfs-actions.pod:5287
16486 " guestfs_pvremove (guestfs_h *g,\n"
16487 " const char *device);\n"
16493 #: ../src/guestfs-actions.pod:5291 ../fish/guestfish-actions.pod:3559
16495 "This wipes a physical volume C<device> so that LVM will no longer recognise "
16501 #: ../src/guestfs-actions.pod:5294 ../fish/guestfish-actions.pod:3562
16503 "The implementation uses the C<pvremove> command which refuses to wipe "
16504 "physical volumes that contain any volume groups, so you have to remove those "
16510 #: ../src/guestfs-actions.pod:5302
16511 msgid "guestfs_pvresize"
16516 #: ../src/guestfs-actions.pod:5304
16520 " guestfs_pvresize (guestfs_h *g,\n"
16521 " const char *device);\n"
16527 #: ../src/guestfs-actions.pod:5308 ../fish/guestfish-actions.pod:3570
16529 "This resizes (expands or shrinks) an existing LVM physical volume to match "
16530 "the new size of the underlying device."
16535 #: ../src/guestfs-actions.pod:5315
16536 msgid "guestfs_pvresize_size"
16541 #: ../src/guestfs-actions.pod:5317
16545 " guestfs_pvresize_size (guestfs_h *g,\n"
16546 " const char *device,\n"
16547 " int64_t size);\n"
16553 #: ../src/guestfs-actions.pod:5322
16555 "This command is the same as C<guestfs_pvresize> except that it allows you to "
16556 "specify the new size (in bytes) explicitly."
16561 #: ../src/guestfs-actions.pod:5329
16562 msgid "guestfs_pvs"
16567 #: ../src/guestfs-actions.pod:5331
16571 " guestfs_pvs (guestfs_h *g);\n"
16577 #: ../src/guestfs-actions.pod:5334 ../fish/guestfish-actions.pod:3584
16579 "List all the physical volumes detected. This is the equivalent of the L<pvs"
16585 #: ../src/guestfs-actions.pod:5337 ../fish/guestfish-actions.pod:3587
16587 "This returns a list of just the device names that contain PVs (eg. C</dev/"
16593 #: ../src/guestfs-actions.pod:5340
16594 msgid "See also C<guestfs_pvs_full>."
16599 #: ../src/guestfs-actions.pod:5348
16600 msgid "guestfs_pvs_full"
16605 #: ../src/guestfs-actions.pod:5350
16608 " struct guestfs_lvm_pv_list *\n"
16609 " guestfs_pvs_full (guestfs_h *g);\n"
16615 #: ../src/guestfs-actions.pod:5353 ../fish/guestfish-actions.pod:3596
16617 "List all the physical volumes detected. This is the equivalent of the L<pvs"
16618 "(8)> command. The \"full\" version includes all fields."
16623 #: ../src/guestfs-actions.pod:5356
16625 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
16626 "was an error. I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
16631 #: ../src/guestfs-actions.pod:5362
16632 msgid "guestfs_pvuuid"
16637 #: ../src/guestfs-actions.pod:5364
16641 " guestfs_pvuuid (guestfs_h *g,\n"
16642 " const char *device);\n"
16648 #: ../src/guestfs-actions.pod:5368 ../fish/guestfish-actions.pod:3603
16649 msgid "This command returns the UUID of the LVM PV C<device>."
16654 #: ../src/guestfs-actions.pod:5375
16655 msgid "guestfs_pwrite"
16660 #: ../src/guestfs-actions.pod:5377
16664 " guestfs_pwrite (guestfs_h *g,\n"
16665 " const char *path,\n"
16666 " const char *content,\n"
16667 " size_t content_size,\n"
16668 " int64_t offset);\n"
16674 #: ../src/guestfs-actions.pod:5384 ../fish/guestfish-actions.pod:3609
16676 "This command writes to part of a file. It writes the data buffer C<content> "
16677 "to the file C<path> starting at offset C<offset>."
16682 #: ../src/guestfs-actions.pod:5387 ../fish/guestfish-actions.pod:3612
16684 "This command implements the L<pwrite(2)> system call, and like that system "
16685 "call it may not write the full data requested. The return value is the "
16686 "number of bytes that were actually written to the file. This could even be "
16687 "0, although short writes are unlikely for regular files in ordinary "
16693 #: ../src/guestfs-actions.pod:5393
16694 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
16699 #: ../src/guestfs-actions.pod:5402
16700 msgid "guestfs_pwrite_device"
16705 #: ../src/guestfs-actions.pod:5404
16709 " guestfs_pwrite_device (guestfs_h *g,\n"
16710 " const char *device,\n"
16711 " const char *content,\n"
16712 " size_t content_size,\n"
16713 " int64_t offset);\n"
16719 #: ../src/guestfs-actions.pod:5411 ../fish/guestfish-actions.pod:3627
16721 "This command writes to part of a device. It writes the data buffer "
16722 "C<content> to C<device> starting at offset C<offset>."
16727 #: ../src/guestfs-actions.pod:5414 ../fish/guestfish-actions.pod:3630
16729 "This command implements the L<pwrite(2)> system call, and like that system "
16730 "call it may not write the full data requested (although short writes to disk "
16731 "devices and partitions are probably impossible with standard Linux kernels)."
16736 #: ../src/guestfs-actions.pod:5419
16737 msgid "See also C<guestfs_pwrite>."
16742 #: ../src/guestfs-actions.pod:5426
16743 msgid "(Added in 1.5.20)"
16748 #: ../src/guestfs-actions.pod:5428
16749 msgid "guestfs_read_file"
16754 #: ../src/guestfs-actions.pod:5430
16758 " guestfs_read_file (guestfs_h *g,\n"
16759 " const char *path,\n"
16760 " size_t *size_r);\n"
16766 #: ../src/guestfs-actions.pod:5435 ../fish/guestfish-actions.pod:3644
16767 msgid "This calls returns the contents of the file C<path> as a buffer."
16772 #: ../src/guestfs-actions.pod:5438
16774 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
16775 "embedded ASCII NUL characters. However unlike C<guestfs_download>, this "
16776 "function is limited in the total size of file that can be handled."
16781 #: ../src/guestfs-actions.pod:5450
16782 msgid "(Added in 1.0.63)"
16787 #: ../src/guestfs-actions.pod:5452
16788 msgid "guestfs_read_lines"
16793 #: ../src/guestfs-actions.pod:5454
16797 " guestfs_read_lines (guestfs_h *g,\n"
16798 " const char *path);\n"
16804 #: ../src/guestfs-actions.pod:5460 ../fish/guestfish-actions.pod:3661
16806 "The file contents are returned as a list of lines. Trailing C<LF> and "
16807 "C<CRLF> character sequences are I<not> returned."
16812 #: ../src/guestfs-actions.pod:5463
16814 "Note that this function cannot correctly handle binary files (specifically, "
16815 "files containing C<\\0> character which is treated as end of line). For "
16816 "those you need to use the C<guestfs_read_file> function which has a more "
16817 "complex interface."
16822 #: ../src/guestfs-actions.pod:5474
16823 msgid "guestfs_readdir"
16828 #: ../src/guestfs-actions.pod:5476
16831 " struct guestfs_dirent_list *\n"
16832 " guestfs_readdir (guestfs_h *g,\n"
16833 " const char *dir);\n"
16839 #: ../src/guestfs-actions.pod:5480 ../fish/guestfish-actions.pod:3673
16840 msgid "This returns the list of directory entries in directory C<dir>."
16845 #: ../src/guestfs-actions.pod:5482 ../fish/guestfish-actions.pod:3675
16847 "All entries in the directory are returned, including C<.> and C<..>. The "
16848 "entries are I<not> sorted, but returned in the same order as the underlying "
16854 #: ../src/guestfs-actions.pod:5486 ../fish/guestfish-actions.pod:3679
16856 "Also this call returns basic file type information about each file. The "
16857 "C<ftyp> field will contain one of the following characters:"
16862 #: ../src/guestfs-actions.pod:5491 ../fish/guestfish-actions.pod:3684
16868 #: ../src/guestfs-actions.pod:5493 ../fish/guestfish-actions.pod:3686
16869 msgid "Block special"
16874 #: ../src/guestfs-actions.pod:5495 ../fish/guestfish-actions.pod:3688
16880 #: ../src/guestfs-actions.pod:5497 ../fish/guestfish-actions.pod:3690
16881 msgid "Char special"
16886 #: ../src/guestfs-actions.pod:5499 ../fish/guestfish-actions.pod:3692
16892 #: ../src/guestfs-actions.pod:5501 ../fish/guestfish-actions.pod:3694
16898 #: ../src/guestfs-actions.pod:5503 ../fish/guestfish-actions.pod:3696
16904 #: ../src/guestfs-actions.pod:5505 ../fish/guestfish-actions.pod:3698
16905 msgid "FIFO (named pipe)"
16910 #: ../src/guestfs-actions.pod:5507 ../fish/guestfish-actions.pod:3700
16916 #: ../src/guestfs-actions.pod:5509 ../fish/guestfish-actions.pod:3702
16917 msgid "Symbolic link"
16922 #: ../src/guestfs-actions.pod:5511 ../fish/guestfish-actions.pod:3704
16928 #: ../src/guestfs-actions.pod:5513 ../fish/guestfish-actions.pod:3706
16929 msgid "Regular file"
16934 #: ../src/guestfs-actions.pod:5515 ../fish/guestfish-actions.pod:3708
16940 #: ../src/guestfs-actions.pod:5517 ../fish/guestfish-actions.pod:3710
16946 #: ../src/guestfs-actions.pod:5519 ../fish/guestfish-actions.pod:3712
16952 #: ../src/guestfs-actions.pod:5521 ../fish/guestfish-actions.pod:3714
16953 msgid "Unknown file type"
16958 #: ../src/guestfs-actions.pod:5523 ../fish/guestfish-actions.pod:3716
16964 #: ../src/guestfs-actions.pod:5525 ../fish/guestfish-actions.pod:3718
16966 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
16971 #: ../src/guestfs-actions.pod:5530
16973 "This function is primarily intended for use by programs. To get a simple "
16974 "list of names, use C<guestfs_ls>. To get a printable directory for human "
16975 "consumption, use C<guestfs_ll>."
16980 #: ../src/guestfs-actions.pod:5534
16982 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
16983 "was an error. I<The caller must call C<guestfs_free_dirent_list> after use>."
16988 #: ../src/guestfs-actions.pod:5540
16989 msgid "guestfs_readlink"
16994 #: ../src/guestfs-actions.pod:5542
16998 " guestfs_readlink (guestfs_h *g,\n"
16999 " const char *path);\n"
17005 #: ../src/guestfs-actions.pod:5546 ../fish/guestfish-actions.pod:3731
17006 msgid "This command reads the target of a symbolic link."
17011 #: ../src/guestfs-actions.pod:5553
17012 msgid "guestfs_readlinklist"
17017 #: ../src/guestfs-actions.pod:5555
17021 " guestfs_readlinklist (guestfs_h *g,\n"
17022 " const char *path,\n"
17023 " char *const *names);\n"
17029 #: ../src/guestfs-actions.pod:5560 ../fish/guestfish-actions.pod:3737
17031 "This call allows you to do a C<readlink> operation on multiple files, where "
17032 "all files are in the directory C<path>. C<names> is the list of files from "
17038 #: ../src/guestfs-actions.pod:5564 ../fish/guestfish-actions.pod:3741
17040 "On return you get a list of strings, with a one-to-one correspondence to the "
17041 "C<names> list. Each string is the value of the symbolic link."
17046 #: ../src/guestfs-actions.pod:5568 ../fish/guestfish-actions.pod:3745
17048 "If the C<readlink(2)> operation fails on any name, then the corresponding "
17049 "result string is the empty string C<\"\">. However the whole operation is "
17050 "completed even if there were C<readlink(2)> errors, and so you can call this "
17051 "function with names where you don't know if they are symbolic links already "
17052 "(albeit slightly less efficient)."
17057 #: ../src/guestfs-actions.pod:5575 ../fish/guestfish-actions.pod:3752
17059 "This call is intended for programs that want to efficiently list a directory "
17060 "contents without making many round-trips. Very long directory listings "
17061 "might cause the protocol message size to be exceeded, causing this call to "
17062 "fail. The caller must split up such requests into smaller groups of names."
17067 #: ../src/guestfs-actions.pod:5588
17068 msgid "guestfs_realpath"
17073 #: ../src/guestfs-actions.pod:5590
17077 " guestfs_realpath (guestfs_h *g,\n"
17078 " const char *path);\n"
17084 #: ../src/guestfs-actions.pod:5594 ../fish/guestfish-actions.pod:3763
17086 "Return the canonicalized absolute pathname of C<path>. The returned path "
17087 "has no C<.>, C<..> or symbolic link path elements."
17092 #: ../src/guestfs-actions.pod:5602
17093 msgid "guestfs_removexattr"
17098 #: ../src/guestfs-actions.pod:5604
17102 " guestfs_removexattr (guestfs_h *g,\n"
17103 " const char *xattr,\n"
17104 " const char *path);\n"
17110 #: ../src/guestfs-actions.pod:5609 ../fish/guestfish-actions.pod:3770
17112 "This call removes the extended attribute named C<xattr> of the file C<path>."
17117 #: ../src/guestfs-actions.pod:5612
17118 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
17123 #: ../src/guestfs-actions.pod:5618
17124 msgid "guestfs_resize2fs"
17129 #: ../src/guestfs-actions.pod:5620
17133 " guestfs_resize2fs (guestfs_h *g,\n"
17134 " const char *device);\n"
17140 #: ../src/guestfs-actions.pod:5624 ../fish/guestfish-actions.pod:3779
17142 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
17143 "underlying device."
17148 #: ../src/guestfs-actions.pod:5627
17150 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
17151 "C<device> before calling this command. For unknown reasons C<resize2fs> "
17152 "sometimes gives an error about this and sometimes not. In any case, it is "
17153 "always safe to call C<guestfs_e2fsck_f> before calling this function."
17157 #: ../src/guestfs-actions.pod:5637
17158 msgid "guestfs_resize2fs_M"
17162 #: ../src/guestfs-actions.pod:5639
17166 " guestfs_resize2fs_M (guestfs_h *g,\n"
17167 " const char *device);\n"
17172 #: ../src/guestfs-actions.pod:5643
17174 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
17175 "resized to its minimum size. This works like the C<-M> option to the "
17176 "C<resize2fs> command."
17180 #: ../src/guestfs-actions.pod:5647
17182 "To get the resulting size of the filesystem you should call "
17183 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values. "
17184 "These two numbers, multiplied together, give the resulting size of the "
17185 "minimal filesystem in bytes."
17190 #: ../src/guestfs-actions.pod:5654
17191 msgid "guestfs_resize2fs_size"
17196 #: ../src/guestfs-actions.pod:5656
17200 " guestfs_resize2fs_size (guestfs_h *g,\n"
17201 " const char *device,\n"
17202 " int64_t size);\n"
17208 #: ../src/guestfs-actions.pod:5661
17210 "This command is the same as C<guestfs_resize2fs> except that it allows you "
17211 "to specify the new size (in bytes) explicitly."
17216 #: ../src/guestfs-actions.pod:5668
17222 #: ../src/guestfs-actions.pod:5670
17226 " guestfs_rm (guestfs_h *g,\n"
17227 " const char *path);\n"
17233 #: ../src/guestfs-actions.pod:5674 ../fish/guestfish-actions.pod:3812
17234 msgid "Remove the single file C<path>."
17239 #: ../src/guestfs-actions.pod:5680
17240 msgid "guestfs_rm_rf"
17245 #: ../src/guestfs-actions.pod:5682
17249 " guestfs_rm_rf (guestfs_h *g,\n"
17250 " const char *path);\n"
17256 #: ../src/guestfs-actions.pod:5686 ../fish/guestfish-actions.pod:3818
17258 "Remove the file or directory C<path>, recursively removing the contents if "
17259 "its a directory. This is like the C<rm -rf> shell command."
17264 #: ../src/guestfs-actions.pod:5694
17265 msgid "guestfs_rmdir"
17270 #: ../src/guestfs-actions.pod:5696
17274 " guestfs_rmdir (guestfs_h *g,\n"
17275 " const char *path);\n"
17281 #: ../src/guestfs-actions.pod:5700 ../fish/guestfish-actions.pod:3826
17282 msgid "Remove the single directory C<path>."
17287 #: ../src/guestfs-actions.pod:5706
17288 msgid "guestfs_rmmountpoint"
17293 #: ../src/guestfs-actions.pod:5708
17297 " guestfs_rmmountpoint (guestfs_h *g,\n"
17298 " const char *exemptpath);\n"
17304 #: ../src/guestfs-actions.pod:5712
17306 "This calls removes a mountpoint that was previously created with "
17307 "C<guestfs_mkmountpoint>. See C<guestfs_mkmountpoint> for full details."
17312 #: ../src/guestfs-actions.pod:5720
17313 msgid "guestfs_scrub_device"
17318 #: ../src/guestfs-actions.pod:5722
17322 " guestfs_scrub_device (guestfs_h *g,\n"
17323 " const char *device);\n"
17329 #: ../src/guestfs-actions.pod:5726 ../fish/guestfish-actions.pod:3840
17331 "This command writes patterns over C<device> to make data retrieval more "
17337 #: ../src/guestfs-actions.pod:5729 ../src/guestfs-actions.pod:5750
17338 #: ../src/guestfs-actions.pod:5769 ../fish/guestfish-actions.pod:3843
17339 #: ../fish/guestfish-actions.pod:3858 ../fish/guestfish-actions.pod:3871
17341 "It is an interface to the L<scrub(1)> program. See that manual page for "
17347 #: ../src/guestfs-actions.pod:5737 ../src/guestfs-actions.pod:5755
17348 #: ../src/guestfs-actions.pod:5774
17349 msgid "(Added in 1.0.52)"
17354 #: ../src/guestfs-actions.pod:5739
17355 msgid "guestfs_scrub_file"
17360 #: ../src/guestfs-actions.pod:5741
17364 " guestfs_scrub_file (guestfs_h *g,\n"
17365 " const char *file);\n"
17371 #: ../src/guestfs-actions.pod:5745 ../fish/guestfish-actions.pod:3853
17373 "This command writes patterns over a file to make data retrieval more "
17379 #: ../src/guestfs-actions.pod:5748 ../fish/guestfish-actions.pod:3856
17380 msgid "The file is I<removed> after scrubbing."
17385 #: ../src/guestfs-actions.pod:5757
17386 msgid "guestfs_scrub_freespace"
17391 #: ../src/guestfs-actions.pod:5759
17395 " guestfs_scrub_freespace (guestfs_h *g,\n"
17396 " const char *dir);\n"
17402 #: ../src/guestfs-actions.pod:5763
17404 "This command creates the directory C<dir> and then fills it with files until "
17405 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
17406 "and deletes them. The intention is to scrub any free space on the partition "
17407 "containing C<dir>."
17412 #: ../src/guestfs-actions.pod:5776
17413 msgid "guestfs_set_append"
17418 #: ../src/guestfs-actions.pod:5778
17422 " guestfs_set_append (guestfs_h *g,\n"
17423 " const char *append);\n"
17429 #: ../src/guestfs-actions.pod:5782 ../fish/guestfish-actions.pod:3880
17431 "This function is used to add additional options to the guest kernel command "
17437 #: ../src/guestfs-actions.pod:5785 ../fish/guestfish-actions.pod:3883
17439 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
17440 "environment variable."
17445 #: ../src/guestfs-actions.pod:5788 ../fish/guestfish-actions.pod:3886
17447 "Setting C<append> to C<NULL> means I<no> additional options are passed "
17448 "(libguestfs always adds a few of its own)."
17452 #: ../src/guestfs-actions.pod:5795
17453 msgid "guestfs_set_attach_method"
17457 #: ../src/guestfs-actions.pod:5797
17461 " guestfs_set_attach_method (guestfs_h *g,\n"
17462 " const char *attachmethod);\n"
17467 #: ../src/guestfs-actions.pod:5801 ../fish/guestfish-actions.pod:3895
17469 "Set the method that libguestfs uses to connect to the back end guestfsd "
17470 "daemon. Possible methods are:"
17474 #: ../src/guestfs-actions.pod:5808 ../fish/guestfish-actions.pod:3902
17476 "Launch an appliance and connect to it. This is the ordinary method and the "
17481 #: ../src/guestfs-actions.pod:5811 ../fish/guestfish-actions.pod:3905
17482 msgid "C<unix:I<path>>"
17486 #: ../src/guestfs-actions.pod:5813 ../fish/guestfish-actions.pod:3907
17487 msgid "Connect to the Unix domain socket I<path>."
17491 #: ../src/guestfs-actions.pod:5815 ../fish/guestfish-actions.pod:3909
17493 "This method lets you connect to an existing daemon or (using virtio-serial) "
17494 "to a live guest. For more information, see L<guestfs(3)/ATTACHING TO "
17495 "RUNNING DAEMONS>."
17500 #: ../src/guestfs-actions.pod:5823
17501 msgid "guestfs_set_autosync"
17506 #: ../src/guestfs-actions.pod:5825
17510 " guestfs_set_autosync (guestfs_h *g,\n"
17511 " int autosync);\n"
17516 #: ../src/guestfs-actions.pod:5829 ../fish/guestfish-actions.pod:3921
17518 "If C<autosync> is true, this enables autosync. Libguestfs will make a best "
17519 "effort attempt to make filesystems consistent and synchronized when the "
17520 "handle is closed (also if the program exits without closing handles)."
17525 #: ../src/guestfs-actions.pod:5834 ../fish/guestfish-actions.pod:3926
17527 "This is enabled by default (since libguestfs 1.5.24, previously it was "
17528 "disabled by default)."
17533 #: ../src/guestfs-actions.pod:5841
17534 msgid "guestfs_set_direct"
17539 #: ../src/guestfs-actions.pod:5843
17543 " guestfs_set_direct (guestfs_h *g,\n"
17550 #: ../src/guestfs-actions.pod:5847 ../fish/guestfish-actions.pod:3935
17552 "If the direct appliance mode flag is enabled, then stdin and stdout are "
17553 "passed directly through to the appliance once it is launched."
17558 #: ../src/guestfs-actions.pod:5851
17560 "One consequence of this is that log messages aren't caught by the library "
17561 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
17567 #: ../src/guestfs-actions.pod:5855 ../fish/guestfish-actions.pod:3943
17568 msgid "You probably don't want to use this unless you know what you are doing."
17573 #: ../src/guestfs-actions.pod:5858 ../fish/guestfish-actions.pod:3946
17574 msgid "The default is disabled."
17579 #: ../src/guestfs-actions.pod:5864
17580 msgid "guestfs_set_e2label"
17585 #: ../src/guestfs-actions.pod:5866
17589 " guestfs_set_e2label (guestfs_h *g,\n"
17590 " const char *device,\n"
17591 " const char *label);\n"
17597 #: ../src/guestfs-actions.pod:5871 ../fish/guestfish-actions.pod:3952
17599 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
17600 "C<label>. Filesystem labels are limited to 16 characters."
17605 #: ../src/guestfs-actions.pod:5875
17607 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
17608 "the existing label on a filesystem."
17613 #: ../src/guestfs-actions.pod:5882
17614 msgid "guestfs_set_e2uuid"
17619 #: ../src/guestfs-actions.pod:5884
17623 " guestfs_set_e2uuid (guestfs_h *g,\n"
17624 " const char *device,\n"
17625 " const char *uuid);\n"
17631 #: ../src/guestfs-actions.pod:5889 ../fish/guestfish-actions.pod:3963
17633 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
17634 "C<uuid>. The format of the UUID and alternatives such as C<clear>, "
17635 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
17640 #: ../src/guestfs-actions.pod:5894
17642 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
17643 "the existing UUID of a filesystem."
17648 #: ../src/guestfs-actions.pod:5901
17649 msgid "guestfs_set_memsize"
17654 #: ../src/guestfs-actions.pod:5903
17658 " guestfs_set_memsize (guestfs_h *g,\n"
17665 #: ../src/guestfs-actions.pod:5907
17667 "This sets the memory size in megabytes allocated to the qemu subprocess. "
17668 "This only has any effect if called before C<guestfs_launch>."
17673 #: ../src/guestfs-actions.pod:5911 ../fish/guestfish-actions.pod:3981
17675 "You can also change this by setting the environment variable "
17676 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
17681 #: ../src/guestfs-actions.pod:5922
17682 msgid "guestfs_set_network"
17687 #: ../src/guestfs-actions.pod:5924
17691 " guestfs_set_network (guestfs_h *g,\n"
17698 #: ../src/guestfs-actions.pod:5928 ../fish/guestfish-actions.pod:3994
17700 "If C<network> is true, then the network is enabled in the libguestfs "
17701 "appliance. The default is false."
17706 #: ../src/guestfs-actions.pod:5931 ../fish/guestfish-actions.pod:3997
17708 "This affects whether commands are able to access the network (see L<guestfs"
17709 "(3)/RUNNING COMMANDS>)."
17714 #: ../src/guestfs-actions.pod:5934
17716 "You must call this before calling C<guestfs_launch>, otherwise it has no "
17722 #: ../src/guestfs-actions.pod:5941
17723 msgid "guestfs_set_path"
17728 #: ../src/guestfs-actions.pod:5943
17732 " guestfs_set_path (guestfs_h *g,\n"
17733 " const char *searchpath);\n"
17739 #: ../src/guestfs-actions.pod:5947 ../fish/guestfish-actions.pod:4009
17740 msgid "Set the path that libguestfs searches for kernel and initrd.img."
17745 #: ../src/guestfs-actions.pod:5949 ../fish/guestfish-actions.pod:4011
17747 "The default is C<$libdir/guestfs> unless overridden by setting "
17748 "C<LIBGUESTFS_PATH> environment variable."
17753 #: ../src/guestfs-actions.pod:5952 ../fish/guestfish-actions.pod:4014
17754 msgid "Setting C<path> to C<NULL> restores the default path."
17759 #: ../src/guestfs-actions.pod:5958
17760 msgid "guestfs_set_qemu"
17765 #: ../src/guestfs-actions.pod:5960
17769 " guestfs_set_qemu (guestfs_h *g,\n"
17770 " const char *qemu);\n"
17776 #: ../src/guestfs-actions.pod:5964 ../fish/guestfish-actions.pod:4022
17777 msgid "Set the qemu binary that we will use."
17782 #: ../src/guestfs-actions.pod:5966 ../fish/guestfish-actions.pod:4024
17784 "The default is chosen when the library was compiled by the configure script."
17789 #: ../src/guestfs-actions.pod:5969 ../fish/guestfish-actions.pod:4027
17791 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
17797 #: ../src/guestfs-actions.pod:5972 ../fish/guestfish-actions.pod:4030
17798 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
17803 #: ../src/guestfs-actions.pod:5974 ../fish/guestfish-actions.pod:4032
17805 "Note that you should call this function as early as possible after creating "
17806 "the handle. This is because some pre-launch operations depend on testing "
17807 "qemu features (by running C<qemu -help>). If the qemu binary changes, we "
17808 "don't retest features, and so you might see inconsistent results. Using the "
17809 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
17810 "the qemu binary at the same time as the handle is created."
17815 #: ../src/guestfs-actions.pod:5986
17816 msgid "guestfs_set_recovery_proc"
17821 #: ../src/guestfs-actions.pod:5988
17825 " guestfs_set_recovery_proc (guestfs_h *g,\n"
17826 " int recoveryproc);\n"
17832 #: ../src/guestfs-actions.pod:5992
17834 "If this is called with the parameter C<false> then C<guestfs_launch> does "
17835 "not create a recovery process. The purpose of the recovery process is to "
17836 "stop runaway qemu processes in the case where the main program aborts "
17842 #: ../src/guestfs-actions.pod:5997
17844 "This only has any effect if called before C<guestfs_launch>, and the default "
17850 #: ../src/guestfs-actions.pod:6000 ../fish/guestfish-actions.pod:4054
17852 "About the only time when you would want to disable this is if the main "
17853 "process will fork itself into the background (\"daemonize\" itself). In "
17854 "this case the recovery process thinks that the main program has disappeared "
17855 "and so kills qemu, which is not very helpful."
17860 #: ../src/guestfs-actions.pod:6010
17861 msgid "guestfs_set_selinux"
17866 #: ../src/guestfs-actions.pod:6012
17870 " guestfs_set_selinux (guestfs_h *g,\n"
17877 #: ../src/guestfs-actions.pod:6016 ../fish/guestfish-actions.pod:4066
17879 "This sets the selinux flag that is passed to the appliance at boot time. "
17880 "The default is C<selinux=0> (disabled)."
17885 #: ../src/guestfs-actions.pod:6019 ../fish/guestfish-actions.pod:4069
17887 "Note that if SELinux is enabled, it is always in Permissive mode "
17888 "(C<enforcing=0>)."
17893 #: ../src/guestfs-actions.pod:6029
17894 msgid "guestfs_set_trace"
17899 #: ../src/guestfs-actions.pod:6031
17903 " guestfs_set_trace (guestfs_h *g,\n"
17909 #: ../src/guestfs-actions.pod:6035 ../fish/guestfish-actions.pod:4081
17911 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
17912 "return values are traced."
17917 #: ../src/guestfs-actions.pod:6038 ../fish/guestfish-actions.pod:4084
17919 "If you want to trace C API calls into libguestfs (and other libraries) then "
17920 "possibly a better way is to use the external ltrace(1) command."
17925 #: ../src/guestfs-actions.pod:6042 ../fish/guestfish-actions.pod:4088
17927 "Command traces are disabled unless the environment variable "
17928 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
17932 #: ../src/guestfs-actions.pod:6045
17934 "Trace messages are normally sent to C<stderr>, unless you register a "
17935 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
17940 #: ../src/guestfs-actions.pod:6053
17941 msgid "guestfs_set_verbose"
17946 #: ../src/guestfs-actions.pod:6055
17950 " guestfs_set_verbose (guestfs_h *g,\n"
17956 #: ../src/guestfs-actions.pod:6059 ../fish/guestfish-actions.pod:4101
17957 msgid "If C<verbose> is true, this turns on verbose messages."
17962 #: ../src/guestfs-actions.pod:6061 ../fish/guestfish-actions.pod:4103
17964 "Verbose messages are disabled unless the environment variable "
17965 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
17969 #: ../src/guestfs-actions.pod:6064
17971 "Verbose messages are normally sent to C<stderr>, unless you register a "
17972 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
17977 #: ../src/guestfs-actions.pod:6072
17978 msgid "guestfs_setcon"
17983 #: ../src/guestfs-actions.pod:6074
17987 " guestfs_setcon (guestfs_h *g,\n"
17988 " const char *context);\n"
17994 #: ../src/guestfs-actions.pod:6078 ../fish/guestfish-actions.pod:4114
17996 "This sets the SELinux security context of the daemon to the string "
18002 #: ../src/guestfs-actions.pod:6081 ../fish/guestfish-actions.pod:4117
18003 msgid "See the documentation about SELINUX in L<guestfs(3)>."
18008 #: ../src/guestfs-actions.pod:6087
18009 msgid "guestfs_setxattr"
18014 #: ../src/guestfs-actions.pod:6089
18018 " guestfs_setxattr (guestfs_h *g,\n"
18019 " const char *xattr,\n"
18020 " const char *val,\n"
18022 " const char *path);\n"
18028 #: ../src/guestfs-actions.pod:6096 ../fish/guestfish-actions.pod:4123
18030 "This call sets the extended attribute named C<xattr> of the file C<path> to "
18031 "the value C<val> (of length C<vallen>). The value is arbitrary 8 bit data."
18036 #: ../src/guestfs-actions.pod:6100
18037 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
18042 #: ../src/guestfs-actions.pod:6106
18043 msgid "guestfs_sfdisk"
18048 #: ../src/guestfs-actions.pod:6108
18052 " guestfs_sfdisk (guestfs_h *g,\n"
18053 " const char *device,\n"
18057 " char *const *lines);\n"
18063 #: ../src/guestfs-actions.pod:6116 ../fish/guestfish-actions.pod:4133
18065 "This is a direct interface to the L<sfdisk(8)> program for creating "
18066 "partitions on block devices."
18071 #: ../src/guestfs-actions.pod:6119 ../fish/guestfish-actions.pod:4136
18072 msgid "C<device> should be a block device, for example C</dev/sda>."
18077 #: ../src/guestfs-actions.pod:6121 ../fish/guestfish-actions.pod:4138
18079 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
18080 "sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
18081 "H> and I<-S> parameters. If you pass C<0> for any of these, then the "
18082 "corresponding parameter is omitted. Usually for 'large' disks, you can just "
18083 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
18084 "the kernel) cannot work out the right geometry and you will need to tell it."
18089 #: ../src/guestfs-actions.pod:6129 ../fish/guestfish-actions.pod:4146
18091 "C<lines> is a list of lines that we feed to C<sfdisk>. For more information "
18092 "refer to the L<sfdisk(8)> manpage."
18097 #: ../src/guestfs-actions.pod:6132 ../fish/guestfish-actions.pod:4149
18099 "To create a single partition occupying the whole disk, you would pass "
18100 "C<lines> as a single element list, when the single element being the string "
18106 #: ../src/guestfs-actions.pod:6136
18108 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
18113 #: ../src/guestfs-actions.pod:6146
18114 msgid "guestfs_sfdiskM"
18119 #: ../src/guestfs-actions.pod:6148
18123 " guestfs_sfdiskM (guestfs_h *g,\n"
18124 " const char *device,\n"
18125 " char *const *lines);\n"
18131 #: ../src/guestfs-actions.pod:6153
18133 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
18134 "partition sizes are specified in megabytes only (rounded to the nearest "
18135 "cylinder) and you don't need to specify the cyls, heads and sectors "
18136 "parameters which were rarely if ever used anyway."
18141 #: ../src/guestfs-actions.pod:6159
18143 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
18144 "C<guestfs_part_disk>"
18149 #: ../src/guestfs-actions.pod:6169
18150 msgid "guestfs_sfdisk_N"
18155 #: ../src/guestfs-actions.pod:6171
18159 " guestfs_sfdisk_N (guestfs_h *g,\n"
18160 " const char *device,\n"
18165 " const char *line);\n"
18171 #: ../src/guestfs-actions.pod:6180 ../fish/guestfish-actions.pod:4179
18173 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
18174 "(note: C<n> counts from 1)."
18179 #: ../src/guestfs-actions.pod:6183
18181 "For other parameters, see C<guestfs_sfdisk>. You should usually pass C<0> "
18182 "for the cyls/heads/sectors parameters."
18187 #: ../src/guestfs-actions.pod:6186
18188 msgid "See also: C<guestfs_part_add>"
18193 #: ../src/guestfs-actions.pod:6195
18194 msgid "guestfs_sfdisk_disk_geometry"
18199 #: ../src/guestfs-actions.pod:6197
18203 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
18204 " const char *device);\n"
18210 #: ../src/guestfs-actions.pod:6201
18212 "This displays the disk geometry of C<device> read from the partition table. "
18213 "Especially in the case where the underlying block device has been resized, "
18214 "this can be different from the kernel's idea of the geometry (see "
18215 "C<guestfs_sfdisk_kernel_geometry>)."
18220 #: ../src/guestfs-actions.pod:6206 ../src/guestfs-actions.pod:6222
18221 #: ../fish/guestfish-actions.pod:4199 ../fish/guestfish-actions.pod:4208
18222 msgid "The result is in human-readable format, and not designed to be parsed."
18227 #: ../src/guestfs-actions.pod:6214
18228 msgid "guestfs_sfdisk_kernel_geometry"
18233 #: ../src/guestfs-actions.pod:6216
18237 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
18238 " const char *device);\n"
18244 #: ../src/guestfs-actions.pod:6220 ../fish/guestfish-actions.pod:4206
18245 msgid "This displays the kernel's idea of the geometry of C<device>."
18250 #: ../src/guestfs-actions.pod:6230
18251 msgid "guestfs_sfdisk_l"
18256 #: ../src/guestfs-actions.pod:6232
18260 " guestfs_sfdisk_l (guestfs_h *g,\n"
18261 " const char *device);\n"
18267 #: ../src/guestfs-actions.pod:6236 ../fish/guestfish-actions.pod:4215
18269 "This displays the partition table on C<device>, in the human-readable output "
18270 "of the L<sfdisk(8)> command. It is not intended to be parsed."
18275 #: ../src/guestfs-actions.pod:6240
18276 msgid "See also: C<guestfs_part_list>"
18281 #: ../src/guestfs-actions.pod:6247
18287 #: ../src/guestfs-actions.pod:6249
18291 " guestfs_sh (guestfs_h *g,\n"
18292 " const char *command);\n"
18298 #: ../src/guestfs-actions.pod:6253 ../fish/guestfish-actions.pod:4225
18300 "This call runs a command from the guest filesystem via the guest's C</bin/"
18306 #: ../src/guestfs-actions.pod:6256
18307 msgid "This is like C<guestfs_command>, but passes the command to:"
18312 #: ../src/guestfs-actions.pod:6258 ../fish/guestfish-actions.pod:4230
18315 " /bin/sh -c \"command\"\n"
18321 #: ../src/guestfs-actions.pod:6260 ../fish/guestfish-actions.pod:4232
18323 "Depending on the guest's shell, this usually results in wildcards being "
18324 "expanded, shell expressions being interpolated and so on."
18329 #: ../src/guestfs-actions.pod:6264
18330 msgid "All the provisos about C<guestfs_command> apply to this call."
18335 #: ../src/guestfs-actions.pod:6271
18336 msgid "guestfs_sh_lines"
18341 #: ../src/guestfs-actions.pod:6273
18345 " guestfs_sh_lines (guestfs_h *g,\n"
18346 " const char *command);\n"
18352 #: ../src/guestfs-actions.pod:6277
18354 "This is the same as C<guestfs_sh>, but splits the result into a list of "
18360 #: ../src/guestfs-actions.pod:6280
18361 msgid "See also: C<guestfs_command_lines>"
18366 #: ../src/guestfs-actions.pod:6288
18367 msgid "guestfs_sleep"
18372 #: ../src/guestfs-actions.pod:6290
18376 " guestfs_sleep (guestfs_h *g,\n"
18383 #: ../src/guestfs-actions.pod:6294 ../fish/guestfish-actions.pod:4251
18384 msgid "Sleep for C<secs> seconds."
18389 #: ../src/guestfs-actions.pod:6298
18390 msgid "(Added in 1.0.41)"
18395 #: ../src/guestfs-actions.pod:6300 ../src/guestfs-structs.pod:109
18396 msgid "guestfs_stat"
18401 #: ../src/guestfs-actions.pod:6302
18404 " struct guestfs_stat *\n"
18405 " guestfs_stat (guestfs_h *g,\n"
18406 " const char *path);\n"
18412 #: ../src/guestfs-actions.pod:6308 ../fish/guestfish-actions.pod:4259
18413 msgid "This is the same as the C<stat(2)> system call."
18418 #: ../src/guestfs-actions.pod:6316 ../src/guestfs-structs.pod:135
18419 msgid "guestfs_statvfs"
18424 #: ../src/guestfs-actions.pod:6318
18427 " struct guestfs_statvfs *\n"
18428 " guestfs_statvfs (guestfs_h *g,\n"
18429 " const char *path);\n"
18435 #: ../src/guestfs-actions.pod:6322 ../fish/guestfish-actions.pod:4265
18437 "Returns file system statistics for any mounted file system. C<path> should "
18438 "be a file or directory in the mounted file system (typically it is the mount "
18439 "point itself, but it doesn't need to be)."
18444 #: ../src/guestfs-actions.pod:6326 ../fish/guestfish-actions.pod:4269
18445 msgid "This is the same as the C<statvfs(2)> system call."
18450 #: ../src/guestfs-actions.pod:6328
18452 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
18453 "error. I<The caller must call C<guestfs_free_statvfs> after use>."
18458 #: ../src/guestfs-actions.pod:6334
18459 msgid "guestfs_strings"
18464 #: ../src/guestfs-actions.pod:6336
18468 " guestfs_strings (guestfs_h *g,\n"
18469 " const char *path);\n"
18475 #: ../src/guestfs-actions.pod:6340 ../fish/guestfish-actions.pod:4275
18477 "This runs the L<strings(1)> command on a file and returns the list of "
18478 "printable strings found."
18483 #: ../src/guestfs-actions.pod:6352
18484 msgid "guestfs_strings_e"
18489 #: ../src/guestfs-actions.pod:6354
18493 " guestfs_strings_e (guestfs_h *g,\n"
18494 " const char *encoding,\n"
18495 " const char *path);\n"
18501 #: ../src/guestfs-actions.pod:6359
18503 "This is like the C<guestfs_strings> command, but allows you to specify the "
18504 "encoding of strings that are looked for in the source file C<path>."
18509 #: ../src/guestfs-actions.pod:6363 ../fish/guestfish-actions.pod:4289
18510 msgid "Allowed encodings are:"
18515 #: ../src/guestfs-actions.pod:6367 ../fish/guestfish-actions.pod:4293
18521 #: ../src/guestfs-actions.pod:6369
18523 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
18524 "ISO-8859-X (this is what C<guestfs_strings> uses)."
18529 #: ../src/guestfs-actions.pod:6372 ../fish/guestfish-actions.pod:4298
18535 #: ../src/guestfs-actions.pod:6374 ../fish/guestfish-actions.pod:4300
18536 msgid "Single 8-bit-byte characters."
18541 #: ../src/guestfs-actions.pod:6376 ../fish/guestfish-actions.pod:4302
18547 #: ../src/guestfs-actions.pod:6378 ../fish/guestfish-actions.pod:4304
18548 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
18553 #: ../src/guestfs-actions.pod:6381 ../fish/guestfish-actions.pod:4307
18554 msgid "l (lower case letter L)"
18559 #: ../src/guestfs-actions.pod:6383 ../fish/guestfish-actions.pod:4309
18561 "16-bit little endian such as UTF-16LE and UCS-2LE. This is useful for "
18562 "examining binaries in Windows guests."
18567 #: ../src/guestfs-actions.pod:6386 ../fish/guestfish-actions.pod:4312
18573 #: ../src/guestfs-actions.pod:6388 ../fish/guestfish-actions.pod:4314
18574 msgid "32-bit big endian such as UCS-4BE."
18579 #: ../src/guestfs-actions.pod:6390 ../fish/guestfish-actions.pod:4316
18585 #: ../src/guestfs-actions.pod:6392 ../fish/guestfish-actions.pod:4318
18586 msgid "32-bit little endian such as UCS-4LE."
18591 #: ../src/guestfs-actions.pod:6396 ../fish/guestfish-actions.pod:4322
18592 msgid "The returned strings are transcoded to UTF-8."
18597 #: ../src/guestfs-actions.pod:6407
18598 msgid "guestfs_swapoff_device"
18603 #: ../src/guestfs-actions.pod:6409
18607 " guestfs_swapoff_device (guestfs_h *g,\n"
18608 " const char *device);\n"
18614 #: ../src/guestfs-actions.pod:6413
18616 "This command disables the libguestfs appliance swap device or partition "
18617 "named C<device>. See C<guestfs_swapon_device>."
18622 #: ../src/guestfs-actions.pod:6421
18623 msgid "guestfs_swapoff_file"
18628 #: ../src/guestfs-actions.pod:6423
18632 " guestfs_swapoff_file (guestfs_h *g,\n"
18633 " const char *file);\n"
18639 #: ../src/guestfs-actions.pod:6427 ../fish/guestfish-actions.pod:4339
18640 msgid "This command disables the libguestfs appliance swap on file."
18645 #: ../src/guestfs-actions.pod:6433
18646 msgid "guestfs_swapoff_label"
18651 #: ../src/guestfs-actions.pod:6435
18655 " guestfs_swapoff_label (guestfs_h *g,\n"
18656 " const char *label);\n"
18662 #: ../src/guestfs-actions.pod:6439 ../fish/guestfish-actions.pod:4345
18664 "This command disables the libguestfs appliance swap on labeled swap "
18670 #: ../src/guestfs-actions.pod:6446
18671 msgid "guestfs_swapoff_uuid"
18676 #: ../src/guestfs-actions.pod:6448
18680 " guestfs_swapoff_uuid (guestfs_h *g,\n"
18681 " const char *uuid);\n"
18687 #: ../src/guestfs-actions.pod:6452 ../fish/guestfish-actions.pod:4352
18689 "This command disables the libguestfs appliance swap partition with the given "
18695 #: ../src/guestfs-actions.pod:6459
18696 msgid "guestfs_swapon_device"
18701 #: ../src/guestfs-actions.pod:6461
18705 " guestfs_swapon_device (guestfs_h *g,\n"
18706 " const char *device);\n"
18712 #: ../src/guestfs-actions.pod:6465
18714 "This command enables the libguestfs appliance to use the swap device or "
18715 "partition named C<device>. The increased memory is made available for all "
18716 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
18721 #: ../src/guestfs-actions.pod:6470 ../fish/guestfish-actions.pod:4364
18723 "Note that you should not swap to existing guest swap partitions unless you "
18724 "know what you are doing. They may contain hibernation information, or other "
18725 "information that the guest doesn't want you to trash. You also risk leaking "
18726 "information about the host to the guest this way. Instead, attach a new "
18727 "host device to the guest and swap on that."
18732 #: ../src/guestfs-actions.pod:6481
18733 msgid "guestfs_swapon_file"
18738 #: ../src/guestfs-actions.pod:6483
18742 " guestfs_swapon_file (guestfs_h *g,\n"
18743 " const char *file);\n"
18749 #: ../src/guestfs-actions.pod:6487
18751 "This command enables swap to a file. See C<guestfs_swapon_device> for other "
18757 #: ../src/guestfs-actions.pod:6494
18758 msgid "guestfs_swapon_label"
18763 #: ../src/guestfs-actions.pod:6496
18767 " guestfs_swapon_label (guestfs_h *g,\n"
18768 " const char *label);\n"
18774 #: ../src/guestfs-actions.pod:6500
18776 "This command enables swap to a labeled swap partition. See "
18777 "C<guestfs_swapon_device> for other notes."
18782 #: ../src/guestfs-actions.pod:6507
18783 msgid "guestfs_swapon_uuid"
18788 #: ../src/guestfs-actions.pod:6509
18792 " guestfs_swapon_uuid (guestfs_h *g,\n"
18793 " const char *uuid);\n"
18799 #: ../src/guestfs-actions.pod:6513
18801 "This command enables swap to a swap partition with the given UUID. See "
18802 "C<guestfs_swapon_device> for other notes."
18807 #: ../src/guestfs-actions.pod:6520
18808 msgid "guestfs_sync"
18813 #: ../src/guestfs-actions.pod:6522
18817 " guestfs_sync (guestfs_h *g);\n"
18823 #: ../src/guestfs-actions.pod:6525 ../fish/guestfish-actions.pod:4396
18825 "This syncs the disk, so that any writes are flushed through to the "
18826 "underlying disk image."
18831 #: ../src/guestfs-actions.pod:6528 ../fish/guestfish-actions.pod:4399
18833 "You should always call this if you have modified a disk image, before "
18834 "closing the handle."
18839 #: ../src/guestfs-actions.pod:6535
18840 msgid "guestfs_tail"
18845 #: ../src/guestfs-actions.pod:6537
18849 " guestfs_tail (guestfs_h *g,\n"
18850 " const char *path);\n"
18856 #: ../src/guestfs-actions.pod:6541 ../fish/guestfish-actions.pod:4406
18858 "This command returns up to the last 10 lines of a file as a list of strings."
18863 #: ../src/guestfs-actions.pod:6553
18864 msgid "guestfs_tail_n"
18869 #: ../src/guestfs-actions.pod:6555
18873 " guestfs_tail_n (guestfs_h *g,\n"
18875 " const char *path);\n"
18881 #: ../src/guestfs-actions.pod:6560 ../fish/guestfish-actions.pod:4416
18883 "If the parameter C<nrlines> is a positive number, this returns the last "
18884 "C<nrlines> lines of the file C<path>."
18889 #: ../src/guestfs-actions.pod:6563 ../fish/guestfish-actions.pod:4419
18891 "If the parameter C<nrlines> is a negative number, this returns lines from "
18892 "the file C<path>, starting with the C<-nrlines>th line."
18897 #: ../src/guestfs-actions.pod:6577
18898 msgid "guestfs_tar_in"
18903 #: ../src/guestfs-actions.pod:6579
18907 " guestfs_tar_in (guestfs_h *g,\n"
18908 " const char *tarfile,\n"
18909 " const char *directory);\n"
18915 #: ../src/guestfs-actions.pod:6584 ../fish/guestfish-actions.pod:4431
18917 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
18918 "tar file) into C<directory>."
18923 #: ../src/guestfs-actions.pod:6587
18925 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
18930 #: ../src/guestfs-actions.pod:6592 ../src/guestfs-actions.pod:6609
18931 #: ../src/guestfs-actions.pod:6625 ../src/guestfs-actions.pod:6641
18932 msgid "(Added in 1.0.3)"
18937 #: ../src/guestfs-actions.pod:6594
18938 msgid "guestfs_tar_out"
18943 #: ../src/guestfs-actions.pod:6596
18947 " guestfs_tar_out (guestfs_h *g,\n"
18948 " const char *directory,\n"
18949 " const char *tarfile);\n"
18955 #: ../src/guestfs-actions.pod:6601 ../fish/guestfish-actions.pod:4443
18957 "This command packs the contents of C<directory> and downloads it to local "
18963 #: ../src/guestfs-actions.pod:6604
18965 "To download a compressed tarball, use C<guestfs_tgz_out> or "
18966 "C<guestfs_txz_out>."
18971 #: ../src/guestfs-actions.pod:6611
18972 msgid "guestfs_tgz_in"
18977 #: ../src/guestfs-actions.pod:6613
18981 " guestfs_tgz_in (guestfs_h *g,\n"
18982 " const char *tarball,\n"
18983 " const char *directory);\n"
18989 #: ../src/guestfs-actions.pod:6618 ../fish/guestfish-actions.pod:4455
18991 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
18992 "tar file) into C<directory>."
18997 #: ../src/guestfs-actions.pod:6621
18998 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
19003 #: ../src/guestfs-actions.pod:6627
19004 msgid "guestfs_tgz_out"
19009 #: ../src/guestfs-actions.pod:6629
19013 " guestfs_tgz_out (guestfs_h *g,\n"
19014 " const char *directory,\n"
19015 " const char *tarball);\n"
19021 #: ../src/guestfs-actions.pod:6634 ../fish/guestfish-actions.pod:4466
19023 "This command packs the contents of C<directory> and downloads it to local "
19029 #: ../src/guestfs-actions.pod:6637
19030 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
19035 #: ../src/guestfs-actions.pod:6643
19036 msgid "guestfs_touch"
19041 #: ../src/guestfs-actions.pod:6645
19045 " guestfs_touch (guestfs_h *g,\n"
19046 " const char *path);\n"
19052 #: ../src/guestfs-actions.pod:6649 ../fish/guestfish-actions.pod:4477
19054 "Touch acts like the L<touch(1)> command. It can be used to update the "
19055 "timestamps on a file, or, if the file does not exist, to create a new zero-"
19061 #: ../src/guestfs-actions.pod:6653 ../fish/guestfish-actions.pod:4481
19063 "This command only works on regular files, and will fail on other file types "
19064 "such as directories, symbolic links, block special etc."
19069 #: ../src/guestfs-actions.pod:6660
19070 msgid "guestfs_truncate"
19075 #: ../src/guestfs-actions.pod:6662
19079 " guestfs_truncate (guestfs_h *g,\n"
19080 " const char *path);\n"
19086 #: ../src/guestfs-actions.pod:6666 ../fish/guestfish-actions.pod:4488
19088 "This command truncates C<path> to a zero-length file. The file must exist "
19094 #: ../src/guestfs-actions.pod:6673
19095 msgid "guestfs_truncate_size"
19100 #: ../src/guestfs-actions.pod:6675
19104 " guestfs_truncate_size (guestfs_h *g,\n"
19105 " const char *path,\n"
19106 " int64_t size);\n"
19112 #: ../src/guestfs-actions.pod:6680 ../fish/guestfish-actions.pod:4495
19114 "This command truncates C<path> to size C<size> bytes. The file must exist "
19120 #: ../src/guestfs-actions.pod:6683
19122 "If the current file size is less than C<size> then the file is extended to "
19123 "the required size with zero bytes. This creates a sparse file (ie. disk "
19124 "blocks are not allocated for the file until you write to it). To create a "
19125 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
19130 #: ../src/guestfs-actions.pod:6693
19131 msgid "guestfs_tune2fs_l"
19136 #: ../src/guestfs-actions.pod:6695
19140 " guestfs_tune2fs_l (guestfs_h *g,\n"
19141 " const char *device);\n"
19147 #: ../src/guestfs-actions.pod:6699 ../fish/guestfish-actions.pod:4508
19149 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
19155 #: ../src/guestfs-actions.pod:6702 ../fish/guestfish-actions.pod:4511
19157 "It is the same as running C<tune2fs -l device>. See L<tune2fs(8)> manpage "
19158 "for more details. The list of fields returned isn't clearly defined, and "
19159 "depends on both the version of C<tune2fs> that libguestfs was built against, "
19160 "and the filesystem itself."
19165 #: ../src/guestfs-actions.pod:6715
19166 msgid "guestfs_txz_in"
19171 #: ../src/guestfs-actions.pod:6717
19175 " guestfs_txz_in (guestfs_h *g,\n"
19176 " const char *tarball,\n"
19177 " const char *directory);\n"
19183 #: ../src/guestfs-actions.pod:6722 ../fish/guestfish-actions.pod:4520
19185 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
19186 "tar file) into C<directory>."
19191 #: ../src/guestfs-actions.pod:6729
19192 msgid "guestfs_txz_out"
19197 #: ../src/guestfs-actions.pod:6731
19201 " guestfs_txz_out (guestfs_h *g,\n"
19202 " const char *directory,\n"
19203 " const char *tarball);\n"
19209 #: ../src/guestfs-actions.pod:6736 ../fish/guestfish-actions.pod:4529
19211 "This command packs the contents of C<directory> and downloads it to local "
19212 "file C<tarball> (as an xz compressed tar archive)."
19217 #: ../src/guestfs-actions.pod:6743
19218 msgid "guestfs_umask"
19223 #: ../src/guestfs-actions.pod:6745
19227 " guestfs_umask (guestfs_h *g,\n"
19234 #: ../src/guestfs-actions.pod:6749 ../fish/guestfish-actions.pod:4538
19236 "This function sets the mask used for creating new files and device nodes to "
19242 #: ../src/guestfs-actions.pod:6752 ../fish/guestfish-actions.pod:4541
19244 "Typical umask values would be C<022> which creates new files with "
19245 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
19246 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
19251 #: ../src/guestfs-actions.pod:6757 ../fish/guestfish-actions.pod:4546
19253 "The default umask is C<022>. This is important because it means that "
19254 "directories and device nodes will be created with C<0644> or C<0755> mode "
19255 "even if you specify C<0777>."
19260 #: ../src/guestfs-actions.pod:6761
19262 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
19263 "C<guestfs_mkdir>."
19268 #: ../src/guestfs-actions.pod:6764 ../fish/guestfish-actions.pod:4553
19269 msgid "This call returns the previous umask."
19274 #: ../src/guestfs-actions.pod:6770
19275 msgid "guestfs_umount"
19280 #: ../src/guestfs-actions.pod:6772
19284 " guestfs_umount (guestfs_h *g,\n"
19285 " const char *pathordevice);\n"
19291 #: ../src/guestfs-actions.pod:6776 ../fish/guestfish-actions.pod:4561
19293 "This unmounts the given filesystem. The filesystem may be specified either "
19294 "by its mountpoint (path) or the device which contains the filesystem."
19299 #: ../src/guestfs-actions.pod:6784
19300 msgid "guestfs_umount_all"
19305 #: ../src/guestfs-actions.pod:6786
19309 " guestfs_umount_all (guestfs_h *g);\n"
19315 #: ../src/guestfs-actions.pod:6789 ../fish/guestfish-actions.pod:4571
19316 msgid "This unmounts all mounted filesystems."
19321 #: ../src/guestfs-actions.pod:6791 ../fish/guestfish-actions.pod:4573
19322 msgid "Some internal mounts are not unmounted by this call."
19327 #: ../src/guestfs-actions.pod:6797
19328 msgid "guestfs_upload"
19333 #: ../src/guestfs-actions.pod:6799
19337 " guestfs_upload (guestfs_h *g,\n"
19338 " const char *filename,\n"
19339 " const char *remotefilename);\n"
19345 #: ../src/guestfs-actions.pod:6804 ../src/guestfs-actions.pod:6828
19346 #: ../fish/guestfish-actions.pod:4579 ../fish/guestfish-actions.pod:4592
19347 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
19352 #: ../src/guestfs-actions.pod:6809
19353 msgid "See also C<guestfs_download>."
19358 #: ../src/guestfs-actions.pod:6820
19359 msgid "guestfs_upload_offset"
19364 #: ../src/guestfs-actions.pod:6822
19368 " guestfs_upload_offset (guestfs_h *g,\n"
19369 " const char *filename,\n"
19370 " const char *remotefilename,\n"
19371 " int64_t offset);\n"
19377 #: ../src/guestfs-actions.pod:6831 ../fish/guestfish-actions.pod:4595
19379 "C<remotefilename> is overwritten starting at the byte C<offset> specified. "
19380 "The intention is to overwrite parts of existing files or devices, although "
19381 "if a non-existant file is specified then it is created with a \"hole\" "
19382 "before C<offset>. The size of the data written is implicit in the size of "
19383 "the source C<filename>."
19388 #: ../src/guestfs-actions.pod:6838
19390 "Note that there is no limit on the amount of data that can be uploaded with "
19391 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
19392 "full amount unless an error occurs."
19397 #: ../src/guestfs-actions.pod:6843
19398 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
19403 #: ../src/guestfs-actions.pod:6854
19404 msgid "guestfs_utimens"
19409 #: ../src/guestfs-actions.pod:6856
19413 " guestfs_utimens (guestfs_h *g,\n"
19414 " const char *path,\n"
19415 " int64_t atsecs,\n"
19416 " int64_t atnsecs,\n"
19417 " int64_t mtsecs,\n"
19418 " int64_t mtnsecs);\n"
19424 #: ../src/guestfs-actions.pod:6864 ../fish/guestfish-actions.pod:4615
19425 msgid "This command sets the timestamps of a file with nanosecond precision."
19430 #: ../src/guestfs-actions.pod:6867 ../fish/guestfish-actions.pod:4618
19432 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
19438 #: ../src/guestfs-actions.pod:6870 ../fish/guestfish-actions.pod:4621
19440 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
19441 "nanoseconds from the epoch."
19446 #: ../src/guestfs-actions.pod:6873 ../fish/guestfish-actions.pod:4624
19448 "If the C<*nsecs> field contains the special value C<-1> then the "
19449 "corresponding timestamp is set to the current time. (The C<*secs> field is "
19450 "ignored in this case)."
19455 #: ../src/guestfs-actions.pod:6877 ../fish/guestfish-actions.pod:4628
19457 "If the C<*nsecs> field contains the special value C<-2> then the "
19458 "corresponding timestamp is left unchanged. (The C<*secs> field is ignored "
19464 #: ../src/guestfs-actions.pod:6885 ../src/guestfs-structs.pod:175
19465 msgid "guestfs_version"
19470 #: ../src/guestfs-actions.pod:6887
19473 " struct guestfs_version *\n"
19474 " guestfs_version (guestfs_h *g);\n"
19480 #: ../src/guestfs-actions.pod:6890 ../fish/guestfish-actions.pod:4636
19482 "Return the libguestfs version number that the program is linked against."
19487 #: ../src/guestfs-actions.pod:6893 ../fish/guestfish-actions.pod:4639
19489 "Note that because of dynamic linking this is not necessarily the version of "
19490 "libguestfs that you compiled against. You can compile the program, and then "
19491 "at runtime dynamically link against a completely different C<libguestfs.so> "
19497 #: ../src/guestfs-actions.pod:6898 ../fish/guestfish-actions.pod:4644
19499 "This call was added in version C<1.0.58>. In previous versions of "
19500 "libguestfs there was no way to get the version number. From C code you can "
19501 "use dynamic linker functions to find out if this symbol exists (if it "
19502 "doesn't, then it's an earlier version)."
19507 #: ../src/guestfs-actions.pod:6904 ../fish/guestfish-actions.pod:4650
19509 "The call returns a structure with four elements. The first three (C<major>, "
19510 "C<minor> and C<release>) are numbers and correspond to the usual version "
19511 "triplet. The fourth element (C<extra>) is a string and is normally empty, "
19512 "but may be used for distro-specific information."
19517 #: ../src/guestfs-actions.pod:6910 ../fish/guestfish-actions.pod:4656
19519 "To construct the original version string: C<$major.$minor.$release$extra>"
19524 #: ../src/guestfs-actions.pod:6913 ../fish/guestfish-actions.pod:4659
19525 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
19530 #: ../src/guestfs-actions.pod:6915
19532 "I<Note:> Don't use this call to test for availability of features. In "
19533 "enterprise distributions we backport features from later versions into "
19534 "earlier versions, making this an unreliable way to test for features. Use "
19535 "C<guestfs_available> instead."
19540 #: ../src/guestfs-actions.pod:6921
19542 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
19543 "error. I<The caller must call C<guestfs_free_version> after use>."
19548 #: ../src/guestfs-actions.pod:6925
19549 msgid "(Added in 1.0.58)"
19554 #: ../src/guestfs-actions.pod:6927
19555 msgid "guestfs_vfs_label"
19560 #: ../src/guestfs-actions.pod:6929
19564 " guestfs_vfs_label (guestfs_h *g,\n"
19565 " const char *device);\n"
19571 #: ../src/guestfs-actions.pod:6933 ../fish/guestfish-actions.pod:4671
19572 msgid "This returns the filesystem label of the filesystem on C<device>."
19577 #: ../src/guestfs-actions.pod:6936 ../fish/guestfish-actions.pod:4674
19578 msgid "If the filesystem is unlabeled, this returns the empty string."
19583 #: ../src/guestfs-actions.pod:6938
19584 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
19589 #: ../src/guestfs-actions.pod:6943 ../src/guestfs-actions.pod:6980
19590 msgid "(Added in 1.3.18)"
19595 #: ../src/guestfs-actions.pod:6945
19596 msgid "guestfs_vfs_type"
19601 #: ../src/guestfs-actions.pod:6947
19605 " guestfs_vfs_type (guestfs_h *g,\n"
19606 " const char *device);\n"
19612 #: ../src/guestfs-actions.pod:6951 ../fish/guestfish-actions.pod:4682
19614 "This command gets the filesystem type corresponding to the filesystem on "
19620 #: ../src/guestfs-actions.pod:6954 ../fish/guestfish-actions.pod:4685
19622 "For most filesystems, the result is the name of the Linux VFS module which "
19623 "would be used to mount this filesystem if you mounted it without specifying "
19624 "the filesystem type. For example a string such as C<ext3> or C<ntfs>."
19629 #: ../src/guestfs-actions.pod:6964
19630 msgid "guestfs_vfs_uuid"
19635 #: ../src/guestfs-actions.pod:6966
19639 " guestfs_vfs_uuid (guestfs_h *g,\n"
19640 " const char *device);\n"
19646 #: ../src/guestfs-actions.pod:6970 ../fish/guestfish-actions.pod:4694
19647 msgid "This returns the filesystem UUID of the filesystem on C<device>."
19652 #: ../src/guestfs-actions.pod:6973 ../fish/guestfish-actions.pod:4697
19653 msgid "If the filesystem does not have a UUID, this returns the empty string."
19658 #: ../src/guestfs-actions.pod:6975
19659 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
19664 #: ../src/guestfs-actions.pod:6982
19665 msgid "guestfs_vg_activate"
19670 #: ../src/guestfs-actions.pod:6984
19674 " guestfs_vg_activate (guestfs_h *g,\n"
19676 " char *const *volgroups);\n"
19682 #: ../src/guestfs-actions.pod:6989 ../fish/guestfish-actions.pod:4705
19684 "This command activates or (if C<activate> is false) deactivates all logical "
19685 "volumes in the listed volume groups C<volgroups>. If activated, then they "
19686 "are made known to the kernel, ie. they appear as C</dev/mapper> devices. If "
19687 "deactivated, then those devices disappear."
19692 #: ../src/guestfs-actions.pod:6995 ../fish/guestfish-actions.pod:4711
19693 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
19698 #: ../src/guestfs-actions.pod:6997 ../fish/guestfish-actions.pod:4713
19700 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
19701 "activated or deactivated."
19706 #: ../src/guestfs-actions.pod:7004
19707 msgid "guestfs_vg_activate_all"
19712 #: ../src/guestfs-actions.pod:7006
19716 " guestfs_vg_activate_all (guestfs_h *g,\n"
19717 " int activate);\n"
19723 #: ../src/guestfs-actions.pod:7010 ../fish/guestfish-actions.pod:4720
19725 "This command activates or (if C<activate> is false) deactivates all logical "
19726 "volumes in all volume groups. If activated, then they are made known to the "
19727 "kernel, ie. they appear as C</dev/mapper> devices. If deactivated, then "
19728 "those devices disappear."
19733 #: ../src/guestfs-actions.pod:7016 ../fish/guestfish-actions.pod:4726
19734 msgid "This command is the same as running C<vgchange -a y|n>"
19739 #: ../src/guestfs-actions.pod:7022
19740 msgid "guestfs_vgcreate"
19745 #: ../src/guestfs-actions.pod:7024
19749 " guestfs_vgcreate (guestfs_h *g,\n"
19750 " const char *volgroup,\n"
19751 " char *const *physvols);\n"
19757 #: ../src/guestfs-actions.pod:7029 ../fish/guestfish-actions.pod:4732
19759 "This creates an LVM volume group called C<volgroup> from the non-empty list "
19760 "of physical volumes C<physvols>."
19765 #: ../src/guestfs-actions.pod:7036
19766 msgid "guestfs_vglvuuids"
19771 #: ../src/guestfs-actions.pod:7038
19775 " guestfs_vglvuuids (guestfs_h *g,\n"
19776 " const char *vgname);\n"
19782 #: ../src/guestfs-actions.pod:7042 ../fish/guestfish-actions.pod:4739
19784 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
19785 "volumes created in this volume group."
19790 #: ../src/guestfs-actions.pod:7045
19792 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
19793 "associate logical volumes and volume groups."
19798 #: ../src/guestfs-actions.pod:7048
19799 msgid "See also C<guestfs_vgpvuuids>."
19804 #: ../src/guestfs-actions.pod:7056
19805 msgid "guestfs_vgpvuuids"
19810 #: ../src/guestfs-actions.pod:7058
19814 " guestfs_vgpvuuids (guestfs_h *g,\n"
19815 " const char *vgname);\n"
19821 #: ../src/guestfs-actions.pod:7062 ../fish/guestfish-actions.pod:4751
19823 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
19824 "volumes that this volume group resides on."
19829 #: ../src/guestfs-actions.pod:7065
19831 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
19832 "associate physical volumes and volume groups."
19837 #: ../src/guestfs-actions.pod:7068
19838 msgid "See also C<guestfs_vglvuuids>."
19843 #: ../src/guestfs-actions.pod:7076
19844 msgid "guestfs_vgremove"
19849 #: ../src/guestfs-actions.pod:7078
19853 " guestfs_vgremove (guestfs_h *g,\n"
19854 " const char *vgname);\n"
19860 #: ../src/guestfs-actions.pod:7082 ../fish/guestfish-actions.pod:4763
19861 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
19866 #: ../src/guestfs-actions.pod:7084 ../fish/guestfish-actions.pod:4765
19868 "This also forcibly removes all logical volumes in the volume group (if any)."
19873 #: ../src/guestfs-actions.pod:7091
19874 msgid "guestfs_vgrename"
19879 #: ../src/guestfs-actions.pod:7093
19883 " guestfs_vgrename (guestfs_h *g,\n"
19884 " const char *volgroup,\n"
19885 " const char *newvolgroup);\n"
19891 #: ../src/guestfs-actions.pod:7098 ../fish/guestfish-actions.pod:4772
19892 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
19897 #: ../src/guestfs-actions.pod:7104
19898 msgid "guestfs_vgs"
19903 #: ../src/guestfs-actions.pod:7106
19907 " guestfs_vgs (guestfs_h *g);\n"
19913 #: ../src/guestfs-actions.pod:7109 ../fish/guestfish-actions.pod:4778
19915 "List all the volumes groups detected. This is the equivalent of the L<vgs(8)"
19921 #: ../src/guestfs-actions.pod:7112 ../fish/guestfish-actions.pod:4781
19923 "This returns a list of just the volume group names that were detected (eg. "
19929 #: ../src/guestfs-actions.pod:7115
19930 msgid "See also C<guestfs_vgs_full>."
19935 #: ../src/guestfs-actions.pod:7123
19936 msgid "guestfs_vgs_full"
19941 #: ../src/guestfs-actions.pod:7125
19944 " struct guestfs_lvm_vg_list *\n"
19945 " guestfs_vgs_full (guestfs_h *g);\n"
19951 #: ../src/guestfs-actions.pod:7128 ../fish/guestfish-actions.pod:4790
19953 "List all the volumes groups detected. This is the equivalent of the L<vgs(8)"
19954 "> command. The \"full\" version includes all fields."
19959 #: ../src/guestfs-actions.pod:7131
19961 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
19962 "was an error. I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
19967 #: ../src/guestfs-actions.pod:7137
19968 msgid "guestfs_vgscan"
19973 #: ../src/guestfs-actions.pod:7139
19977 " guestfs_vgscan (guestfs_h *g);\n"
19983 #: ../src/guestfs-actions.pod:7142 ../fish/guestfish-actions.pod:4797
19985 "This rescans all block devices and rebuilds the list of LVM physical "
19986 "volumes, volume groups and logical volumes."
19991 #: ../src/guestfs-actions.pod:7149
19992 msgid "guestfs_vguuid"
19997 #: ../src/guestfs-actions.pod:7151
20001 " guestfs_vguuid (guestfs_h *g,\n"
20002 " const char *vgname);\n"
20008 #: ../src/guestfs-actions.pod:7155 ../fish/guestfish-actions.pod:4804
20009 msgid "This command returns the UUID of the LVM VG named C<vgname>."
20014 #: ../src/guestfs-actions.pod:7162
20015 msgid "guestfs_wait_ready"
20020 #: ../src/guestfs-actions.pod:7164
20024 " guestfs_wait_ready (guestfs_h *g);\n"
20030 #: ../src/guestfs-actions.pod:7167
20031 msgid "This function is a no op."
20036 #: ../src/guestfs-actions.pod:7169
20038 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
20039 "calling C<guestfs_launch> to wait for the launch to complete. However this "
20040 "is no longer necessary because C<guestfs_launch> now does the waiting."
20045 #: ../src/guestfs-actions.pod:7174
20047 "If you see any calls to this function in code then you can just remove them, "
20048 "unless you want to retain compatibility with older versions of the API."
20053 #: ../src/guestfs-actions.pod:7182
20054 msgid "guestfs_wc_c"
20059 #: ../src/guestfs-actions.pod:7184
20063 " guestfs_wc_c (guestfs_h *g,\n"
20064 " const char *path);\n"
20070 #: ../src/guestfs-actions.pod:7188 ../fish/guestfish-actions.pod:4810
20072 "This command counts the characters in a file, using the C<wc -c> external "
20078 #: ../src/guestfs-actions.pod:7195
20079 msgid "guestfs_wc_l"
20084 #: ../src/guestfs-actions.pod:7197
20088 " guestfs_wc_l (guestfs_h *g,\n"
20089 " const char *path);\n"
20095 #: ../src/guestfs-actions.pod:7201 ../fish/guestfish-actions.pod:4817
20097 "This command counts the lines in a file, using the C<wc -l> external command."
20102 #: ../src/guestfs-actions.pod:7208
20103 msgid "guestfs_wc_w"
20108 #: ../src/guestfs-actions.pod:7210
20112 " guestfs_wc_w (guestfs_h *g,\n"
20113 " const char *path);\n"
20119 #: ../src/guestfs-actions.pod:7214 ../fish/guestfish-actions.pod:4824
20121 "This command counts the words in a file, using the C<wc -w> external command."
20126 #: ../src/guestfs-actions.pod:7221
20127 msgid "guestfs_write"
20132 #: ../src/guestfs-actions.pod:7223
20136 " guestfs_write (guestfs_h *g,\n"
20137 " const char *path,\n"
20138 " const char *content,\n"
20139 " size_t content_size);\n"
20145 #: ../src/guestfs-actions.pod:7229 ../fish/guestfish-actions.pod:4831
20147 "This call creates a file called C<path>. The content of the file is the "
20148 "string C<content> (which can contain any 8 bit data)."
20153 #: ../src/guestfs-actions.pod:7239
20154 msgid "guestfs_write_file"
20159 #: ../src/guestfs-actions.pod:7241
20163 " guestfs_write_file (guestfs_h *g,\n"
20164 " const char *path,\n"
20165 " const char *content,\n"
20172 #: ../src/guestfs-actions.pod:7247 ../fish/guestfish-actions.pod:4841
20174 "This call creates a file called C<path>. The contents of the file is the "
20175 "string C<content> (which can contain any 8 bit data), with length C<size>."
20180 #: ../src/guestfs-actions.pod:7251 ../fish/guestfish-actions.pod:4845
20182 "As a special case, if C<size> is C<0> then the length is calculated using "
20183 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
20188 #: ../src/guestfs-actions.pod:7255 ../fish/guestfish-actions.pod:4849
20190 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
20191 "I<not> work, even if the length is specified."
20196 #: ../src/guestfs-actions.pod:7263 ../fish/guestfish-actions.pod:4855
20198 "This function is deprecated. In new code, use the C<write> call instead."
20203 #: ../src/guestfs-actions.pod:7272
20204 msgid "guestfs_zegrep"
20209 #: ../src/guestfs-actions.pod:7274
20213 " guestfs_zegrep (guestfs_h *g,\n"
20214 " const char *regex,\n"
20215 " const char *path);\n"
20221 #: ../src/guestfs-actions.pod:7279 ../fish/guestfish-actions.pod:4866
20223 "This calls the external C<zegrep> program and returns the matching lines."
20228 #: ../src/guestfs-actions.pod:7291
20229 msgid "guestfs_zegrepi"
20234 #: ../src/guestfs-actions.pod:7293
20238 " guestfs_zegrepi (guestfs_h *g,\n"
20239 " const char *regex,\n"
20240 " const char *path);\n"
20246 #: ../src/guestfs-actions.pod:7298 ../fish/guestfish-actions.pod:4876
20248 "This calls the external C<zegrep -i> program and returns the matching lines."
20253 #: ../src/guestfs-actions.pod:7310
20254 msgid "guestfs_zero"
20259 #: ../src/guestfs-actions.pod:7312
20263 " guestfs_zero (guestfs_h *g,\n"
20264 " const char *device);\n"
20270 #: ../src/guestfs-actions.pod:7316 ../fish/guestfish-actions.pod:4886
20271 msgid "This command writes zeroes over the first few blocks of C<device>."
20276 #: ../src/guestfs-actions.pod:7318 ../fish/guestfish-actions.pod:4888
20278 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
20279 "securely wipe the device). It should be sufficient to remove any partition "
20280 "tables, filesystem superblocks and so on."
20285 #: ../src/guestfs-actions.pod:7322
20286 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
20291 #: ../src/guestfs-actions.pod:7333
20292 msgid "guestfs_zero_device"
20297 #: ../src/guestfs-actions.pod:7335
20301 " guestfs_zero_device (guestfs_h *g,\n"
20302 " const char *device);\n"
20308 #: ../src/guestfs-actions.pod:7339
20310 "This command writes zeroes over the entire C<device>. Compare with "
20311 "C<guestfs_zero> which just zeroes the first few blocks of a device."
20316 #: ../src/guestfs-actions.pod:7353
20317 msgid "(Added in 1.3.1)"
20322 #: ../src/guestfs-actions.pod:7355
20323 msgid "guestfs_zerofree"
20328 #: ../src/guestfs-actions.pod:7357
20332 " guestfs_zerofree (guestfs_h *g,\n"
20333 " const char *device);\n"
20339 #: ../src/guestfs-actions.pod:7361 ../fish/guestfish-actions.pod:4909
20341 "This runs the I<zerofree> program on C<device>. This program claims to zero "
20342 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
20343 "possible to compress the filesystem more effectively."
20348 #: ../src/guestfs-actions.pod:7366 ../fish/guestfish-actions.pod:4914
20349 msgid "You should B<not> run this program if the filesystem is mounted."
20354 #: ../src/guestfs-actions.pod:7369 ../fish/guestfish-actions.pod:4917
20356 "It is possible that using this program can damage the filesystem or data on "
20362 #: ../src/guestfs-actions.pod:7376
20363 msgid "guestfs_zfgrep"
20368 #: ../src/guestfs-actions.pod:7378
20372 " guestfs_zfgrep (guestfs_h *g,\n"
20373 " const char *pattern,\n"
20374 " const char *path);\n"
20380 #: ../src/guestfs-actions.pod:7383 ../fish/guestfish-actions.pod:4924
20382 "This calls the external C<zfgrep> program and returns the matching lines."
20387 #: ../src/guestfs-actions.pod:7395
20388 msgid "guestfs_zfgrepi"
20393 #: ../src/guestfs-actions.pod:7397
20397 " guestfs_zfgrepi (guestfs_h *g,\n"
20398 " const char *pattern,\n"
20399 " const char *path);\n"
20405 #: ../src/guestfs-actions.pod:7402 ../fish/guestfish-actions.pod:4934
20407 "This calls the external C<zfgrep -i> program and returns the matching lines."
20412 #: ../src/guestfs-actions.pod:7414
20413 msgid "guestfs_zfile"
20418 #: ../src/guestfs-actions.pod:7416
20422 " guestfs_zfile (guestfs_h *g,\n"
20423 " const char *meth,\n"
20424 " const char *path);\n"
20430 #: ../src/guestfs-actions.pod:7421 ../fish/guestfish-actions.pod:4944
20432 "This command runs C<file> after first decompressing C<path> using C<method>."
20437 #: ../src/guestfs-actions.pod:7424 ../fish/guestfish-actions.pod:4947
20438 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
20443 #: ../src/guestfs-actions.pod:7426
20445 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
20451 #: ../src/guestfs-actions.pod:7432 ../fish/guestfish-actions.pod:4952
20453 "This function is deprecated. In new code, use the C<file> call instead."
20458 #: ../src/guestfs-actions.pod:7441
20459 msgid "guestfs_zgrep"
20464 #: ../src/guestfs-actions.pod:7443
20468 " guestfs_zgrep (guestfs_h *g,\n"
20469 " const char *regex,\n"
20470 " const char *path);\n"
20476 #: ../src/guestfs-actions.pod:7448 ../fish/guestfish-actions.pod:4963
20478 "This calls the external C<zgrep> program and returns the matching lines."
20483 #: ../src/guestfs-actions.pod:7460
20484 msgid "guestfs_zgrepi"
20489 #: ../src/guestfs-actions.pod:7462
20493 " guestfs_zgrepi (guestfs_h *g,\n"
20494 " const char *regex,\n"
20495 " const char *path);\n"
20501 #: ../src/guestfs-actions.pod:7467 ../fish/guestfish-actions.pod:4973
20503 "This calls the external C<zgrep -i> program and returns the matching lines."
20508 #: ../src/guestfs-availability.pod:3
20514 #: ../src/guestfs-availability.pod:5
20516 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> L</"
20517 "guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> L</"
20518 "guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> L</"
20519 "guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> L</guestfs_aug_rm> "
20520 "L</guestfs_aug_save> L</guestfs_aug_set>"
20525 #: ../src/guestfs-availability.pod:21
20531 #: ../src/guestfs-availability.pod:23
20533 "The following functions: L</guestfs_inotify_add_watch> L</"
20534 "guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> L</"
20535 "guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
20540 #: ../src/guestfs-availability.pod:31
20541 msgid "B<linuxfsuuid>"
20546 #: ../src/guestfs-availability.pod:33
20548 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> L</"
20549 "guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
20554 #: ../src/guestfs-availability.pod:40
20555 msgid "B<linuxmodules>"
20560 #: ../src/guestfs-availability.pod:42
20561 msgid "The following functions: L</guestfs_modprobe>"
20566 #: ../src/guestfs-availability.pod:45
20567 msgid "B<linuxxattrs>"
20572 #: ../src/guestfs-availability.pod:47
20574 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> L</"
20575 "guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> L</"
20576 "guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> L</"
20577 "guestfs_setxattr>"
20582 #: ../src/guestfs-availability.pod:58
20588 #: ../src/guestfs-availability.pod:60
20590 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> L</"
20591 "guestfs_luks_format> L</guestfs_luks_format_cipher> L</"
20592 "guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
20597 #: ../src/guestfs-availability.pod:69
20603 #: ../src/guestfs-availability.pod:71
20605 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> L</"
20606 "guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> L</"
20607 "guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> L</"
20608 "guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> L</"
20609 "guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> L</"
20610 "guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> L</"
20611 "guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> L</guestfs_vgs_full>"
20616 #: ../src/guestfs-availability.pod:94
20622 #: ../src/guestfs-availability.pod:96
20624 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> L</"
20625 "guestfs_mknod_b> L</guestfs_mknod_c>"
20630 #: ../src/guestfs-availability.pod:102
20636 #: ../src/guestfs-availability.pod:104
20637 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
20642 #: ../src/guestfs-availability.pod:107
20643 msgid "B<ntfsprogs>"
20648 #: ../src/guestfs-availability.pod:109
20650 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
20655 #: ../src/guestfs-availability.pod:113
20656 msgid "B<realpath>"
20661 #: ../src/guestfs-availability.pod:115
20662 msgid "The following functions: L</guestfs_realpath>"
20667 #: ../src/guestfs-availability.pod:118
20673 #: ../src/guestfs-availability.pod:120
20675 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> L</"
20676 "guestfs_scrub_freespace>"
20681 #: ../src/guestfs-availability.pod:125
20687 #: ../src/guestfs-availability.pod:127
20688 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
20693 #: ../src/guestfs-availability.pod:131
20699 #: ../src/guestfs-availability.pod:133
20700 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
20705 #: ../src/guestfs-availability.pod:137
20706 msgid "B<zerofree>"
20711 #: ../src/guestfs-availability.pod:139
20712 msgid "The following functions: L</guestfs_zerofree>"
20717 #: ../src/guestfs-structs.pod:1
20718 msgid "guestfs_int_bool"
20723 #: ../src/guestfs-structs.pod:3
20726 " struct guestfs_int_bool {\n"
20735 #: ../src/guestfs-structs.pod:8
20738 " struct guestfs_int_bool_list {\n"
20739 " uint32_t len; /* Number of elements in list. */\n"
20740 " struct guestfs_int_bool *val; /* Elements. */\n"
20747 #: ../src/guestfs-structs.pod:13
20750 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
20751 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
20757 #: ../src/guestfs-structs.pod:16
20758 msgid "guestfs_lvm_pv"
20763 #: ../src/guestfs-structs.pod:18
20766 " struct guestfs_lvm_pv {\n"
20767 " char *pv_name;\n"
20768 " /* The next field is NOT nul-terminated, be careful when printing it: */\n"
20769 " char pv_uuid[32];\n"
20771 " uint64_t pv_size;\n"
20772 " uint64_t dev_size;\n"
20773 " uint64_t pv_free;\n"
20774 " uint64_t pv_used;\n"
20775 " char *pv_attr;\n"
20776 " int64_t pv_pe_count;\n"
20777 " int64_t pv_pe_alloc_count;\n"
20778 " char *pv_tags;\n"
20779 " uint64_t pe_start;\n"
20780 " int64_t pv_mda_count;\n"
20781 " uint64_t pv_mda_free;\n"
20788 #: ../src/guestfs-structs.pod:36
20791 " struct guestfs_lvm_pv_list {\n"
20792 " uint32_t len; /* Number of elements in list. */\n"
20793 " struct guestfs_lvm_pv *val; /* Elements. */\n"
20800 #: ../src/guestfs-structs.pod:41
20803 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
20804 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
20810 #: ../src/guestfs-structs.pod:44
20811 msgid "guestfs_lvm_vg"
20816 #: ../src/guestfs-structs.pod:46
20819 " struct guestfs_lvm_vg {\n"
20820 " char *vg_name;\n"
20821 " /* The next field is NOT nul-terminated, be careful when printing it: */\n"
20822 " char vg_uuid[32];\n"
20824 " char *vg_attr;\n"
20825 " uint64_t vg_size;\n"
20826 " uint64_t vg_free;\n"
20827 " char *vg_sysid;\n"
20828 " uint64_t vg_extent_size;\n"
20829 " int64_t vg_extent_count;\n"
20830 " int64_t vg_free_count;\n"
20831 " int64_t max_lv;\n"
20832 " int64_t max_pv;\n"
20833 " int64_t pv_count;\n"
20834 " int64_t lv_count;\n"
20835 " int64_t snap_count;\n"
20836 " int64_t vg_seqno;\n"
20837 " char *vg_tags;\n"
20838 " int64_t vg_mda_count;\n"
20839 " uint64_t vg_mda_free;\n"
20846 #: ../src/guestfs-structs.pod:69
20849 " struct guestfs_lvm_vg_list {\n"
20850 " uint32_t len; /* Number of elements in list. */\n"
20851 " struct guestfs_lvm_vg *val; /* Elements. */\n"
20858 #: ../src/guestfs-structs.pod:74
20861 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
20862 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
20868 #: ../src/guestfs-structs.pod:77
20869 msgid "guestfs_lvm_lv"
20874 #: ../src/guestfs-structs.pod:79
20877 " struct guestfs_lvm_lv {\n"
20878 " char *lv_name;\n"
20879 " /* The next field is NOT nul-terminated, be careful when printing it: */\n"
20880 " char lv_uuid[32];\n"
20881 " char *lv_attr;\n"
20882 " int64_t lv_major;\n"
20883 " int64_t lv_minor;\n"
20884 " int64_t lv_kernel_major;\n"
20885 " int64_t lv_kernel_minor;\n"
20886 " uint64_t lv_size;\n"
20887 " int64_t seg_count;\n"
20889 " /* The next field is [0..100] or -1 meaning 'not present': */\n"
20890 " float snap_percent;\n"
20891 " /* The next field is [0..100] or -1 meaning 'not present': */\n"
20892 " float copy_percent;\n"
20893 " char *move_pv;\n"
20894 " char *lv_tags;\n"
20895 " char *mirror_log;\n"
20896 " char *modules;\n"
20903 #: ../src/guestfs-structs.pod:101
20906 " struct guestfs_lvm_lv_list {\n"
20907 " uint32_t len; /* Number of elements in list. */\n"
20908 " struct guestfs_lvm_lv *val; /* Elements. */\n"
20915 #: ../src/guestfs-structs.pod:106
20918 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
20919 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
20925 #: ../src/guestfs-structs.pod:111
20928 " struct guestfs_stat {\n"
20932 " int64_t nlink;\n"
20937 " int64_t blksize;\n"
20938 " int64_t blocks;\n"
20939 " int64_t atime;\n"
20940 " int64_t mtime;\n"
20941 " int64_t ctime;\n"
20948 #: ../src/guestfs-structs.pod:127
20951 " struct guestfs_stat_list {\n"
20952 " uint32_t len; /* Number of elements in list. */\n"
20953 " struct guestfs_stat *val; /* Elements. */\n"
20960 #: ../src/guestfs-structs.pod:132
20963 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
20964 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
20970 #: ../src/guestfs-structs.pod:137
20973 " struct guestfs_statvfs {\n"
20974 " int64_t bsize;\n"
20975 " int64_t frsize;\n"
20976 " int64_t blocks;\n"
20977 " int64_t bfree;\n"
20978 " int64_t bavail;\n"
20979 " int64_t files;\n"
20980 " int64_t ffree;\n"
20981 " int64_t favail;\n"
20984 " int64_t namemax;\n"
20991 #: ../src/guestfs-structs.pod:151
20994 " struct guestfs_statvfs_list {\n"
20995 " uint32_t len; /* Number of elements in list. */\n"
20996 " struct guestfs_statvfs *val; /* Elements. */\n"
21003 #: ../src/guestfs-structs.pod:156
21006 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
21007 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
21013 #: ../src/guestfs-structs.pod:159
21014 msgid "guestfs_dirent"
21019 #: ../src/guestfs-structs.pod:161
21022 " struct guestfs_dirent {\n"
21032 #: ../src/guestfs-structs.pod:167
21035 " struct guestfs_dirent_list {\n"
21036 " uint32_t len; /* Number of elements in list. */\n"
21037 " struct guestfs_dirent *val; /* Elements. */\n"
21044 #: ../src/guestfs-structs.pod:172
21047 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
21048 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
21054 #: ../src/guestfs-structs.pod:177
21057 " struct guestfs_version {\n"
21058 " int64_t major;\n"
21059 " int64_t minor;\n"
21060 " int64_t release;\n"
21068 #: ../src/guestfs-structs.pod:184
21071 " struct guestfs_version_list {\n"
21072 " uint32_t len; /* Number of elements in list. */\n"
21073 " struct guestfs_version *val; /* Elements. */\n"
21080 #: ../src/guestfs-structs.pod:189
21083 " void guestfs_free_version (struct guestfs_free_version *);\n"
21084 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
21090 #: ../src/guestfs-structs.pod:192
21091 msgid "guestfs_xattr"
21096 #: ../src/guestfs-structs.pod:194
21099 " struct guestfs_xattr {\n"
21100 " char *attrname;\n"
21101 " /* The next two fields describe a byte array. */\n"
21102 " uint32_t attrval_len;\n"
21103 " char *attrval;\n"
21110 #: ../src/guestfs-structs.pod:201
21113 " struct guestfs_xattr_list {\n"
21114 " uint32_t len; /* Number of elements in list. */\n"
21115 " struct guestfs_xattr *val; /* Elements. */\n"
21122 #: ../src/guestfs-structs.pod:206
21125 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
21126 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
21132 #: ../src/guestfs-structs.pod:209
21133 msgid "guestfs_inotify_event"
21138 #: ../src/guestfs-structs.pod:211
21141 " struct guestfs_inotify_event {\n"
21142 " int64_t in_wd;\n"
21143 " uint32_t in_mask;\n"
21144 " uint32_t in_cookie;\n"
21145 " char *in_name;\n"
21152 #: ../src/guestfs-structs.pod:218
21155 " struct guestfs_inotify_event_list {\n"
21156 " uint32_t len; /* Number of elements in list. */\n"
21157 " struct guestfs_inotify_event *val; /* Elements. */\n"
21164 #: ../src/guestfs-structs.pod:223
21167 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
21168 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
21174 #: ../src/guestfs-structs.pod:226
21175 msgid "guestfs_partition"
21180 #: ../src/guestfs-structs.pod:228
21183 " struct guestfs_partition {\n"
21184 " int32_t part_num;\n"
21185 " uint64_t part_start;\n"
21186 " uint64_t part_end;\n"
21187 " uint64_t part_size;\n"
21194 #: ../src/guestfs-structs.pod:235
21197 " struct guestfs_partition_list {\n"
21198 " uint32_t len; /* Number of elements in list. */\n"
21199 " struct guestfs_partition *val; /* Elements. */\n"
21206 #: ../src/guestfs-structs.pod:240
21209 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
21210 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
21216 #: ../src/guestfs-structs.pod:243
21217 msgid "guestfs_application"
21222 #: ../src/guestfs-structs.pod:245
21225 " struct guestfs_application {\n"
21226 " char *app_name;\n"
21227 " char *app_display_name;\n"
21228 " int32_t app_epoch;\n"
21229 " char *app_version;\n"
21230 " char *app_release;\n"
21231 " char *app_install_path;\n"
21232 " char *app_trans_path;\n"
21233 " char *app_publisher;\n"
21234 " char *app_url;\n"
21235 " char *app_source_package;\n"
21236 " char *app_summary;\n"
21237 " char *app_description;\n"
21244 #: ../src/guestfs-structs.pod:260
21247 " struct guestfs_application_list {\n"
21248 " uint32_t len; /* Number of elements in list. */\n"
21249 " struct guestfs_application *val; /* Elements. */\n"
21256 #: ../src/guestfs-structs.pod:265
21259 " void guestfs_free_application (struct guestfs_free_application *);\n"
21260 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
21266 #: ../fish/guestfish.pod:5
21267 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
21272 #: ../fish/guestfish.pod:9
21275 " guestfish [--options] [commands]\n"
21281 #: ../fish/guestfish.pod:11
21290 #: ../fish/guestfish.pod:13
21293 " guestfish [--ro|--rw] -a disk.img\n"
21299 #: ../fish/guestfish.pod:15
21302 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
21308 #: ../fish/guestfish.pod:17
21311 " guestfish -d libvirt-domain\n"
21317 #: ../fish/guestfish.pod:19
21320 " guestfish [--ro|--rw] -a disk.img -i\n"
21326 #: ../fish/guestfish.pod:21
21329 " guestfish -d libvirt-domain -i\n"
21335 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-edit.pl:44
21336 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
21342 #: ../fish/guestfish.pod:25
21344 "Using guestfish in read/write mode on live virtual machines can be "
21345 "dangerous, potentially causing disk corruption. Use the I<--ro> (read-only) "
21346 "option to use guestfish safely if the disk image or virtual machine might be "
21352 #: ../fish/guestfish.pod:32
21354 "Guestfish is a shell and command-line tool for examining and modifying "
21355 "virtual machine filesystems. It uses libguestfs and exposes all of the "
21356 "functionality of the guestfs API, see L<guestfs(3)>."
21361 #: ../fish/guestfish.pod:36
21363 "Guestfish gives you structured access to the libguestfs API, from shell "
21364 "scripts or the command line or interactively. If you want to rescue a "
21365 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
21371 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:947
21372 #: ../fuse/guestmount.pod:39 ../tools/virt-edit.pl:63 ../tools/virt-tar.pl:50
21378 #: ../fish/guestfish.pod:43
21379 msgid "As an interactive shell"
21384 #: ../fish/guestfish.pod:45
21393 #: ../fish/guestfish.pod:47
21396 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
21397 " editing virtual machine filesystems.\n"
21403 #: ../fish/guestfish.pod:50
21406 " Type: 'help' for a list of commands\n"
21407 " 'man' to read the manual\n"
21408 " 'quit' to quit the shell\n"
21414 #: ../fish/guestfish.pod:54
21417 " ><fs> add-ro disk.img\n"
21419 " ><fs> list-filesystems\n"
21420 " /dev/sda1: ext4\n"
21421 " /dev/vg_guest/lv_root: ext4\n"
21422 " /dev/vg_guest/lv_swap: swap\n"
21423 " ><fs> mount /dev/vg_guest/lv_root /\n"
21424 " ><fs> cat /etc/fstab\n"
21426 " # Created by anaconda\n"
21434 #: ../fish/guestfish.pod:67
21435 msgid "From shell scripts"
21440 #: ../fish/guestfish.pod:69
21441 msgid "Create a new C</etc/motd> file in a guest or disk image:"
21446 #: ../fish/guestfish.pod:71
21449 " guestfish <<_EOF_\n"
21452 " mount /dev/vg_guest/lv_root /\n"
21453 " write /etc/motd \"Welcome, new users\"\n"
21460 #: ../fish/guestfish.pod:78
21461 msgid "List the LVM logical volumes in a disk image:"
21466 #: ../fish/guestfish.pod:80
21469 " guestfish -a disk.img --ro <<_EOF_\n"
21478 #: ../fish/guestfish.pod:85
21479 msgid "List all the filesystems in a disk image:"
21484 #: ../fish/guestfish.pod:87
21487 " guestfish -a disk.img --ro <<_EOF_\n"
21489 " list-filesystems\n"
21496 #: ../fish/guestfish.pod:92
21497 msgid "On one command line"
21502 #: ../fish/guestfish.pod:94
21503 msgid "Update C</etc/resolv.conf> in a guest:"
21508 #: ../fish/guestfish.pod:96
21512 " add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
21513 " write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
21519 #: ../fish/guestfish.pod:100
21520 msgid "Edit C</boot/grub/grub.conf> interactively:"
21525 #: ../fish/guestfish.pod:102
21528 " guestfish --rw --add disk.img \\\n"
21529 " --mount /dev/vg_guest/lv_root \\\n"
21530 " --mount /dev/sda1:/boot \\\n"
21531 " edit /boot/grub/grub.conf\n"
21537 #: ../fish/guestfish.pod:107
21538 msgid "Mount disks automatically"
21543 #: ../fish/guestfish.pod:109
21545 "Use the I<-i> option to automatically mount the disks from a virtual machine:"
21550 #: ../fish/guestfish.pod:112
21553 " guestfish --ro -a disk.img -i cat /etc/group\n"
21559 #: ../fish/guestfish.pod:114
21562 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
21568 #: ../fish/guestfish.pod:116
21569 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
21574 #: ../fish/guestfish.pod:118
21577 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
21583 #: ../fish/guestfish.pod:120
21584 msgid "As a script interpreter"
21589 #: ../fish/guestfish.pod:122
21590 msgid "Create a 100MB disk containing an ext2-formatted partition:"
21595 #: ../fish/guestfish.pod:124
21598 " #!/usr/bin/guestfish -f\n"
21599 " sparse test1.img 100M\n"
21601 " part-disk /dev/sda mbr\n"
21602 " mkfs ext2 /dev/sda1\n"
21608 #: ../fish/guestfish.pod:130
21609 msgid "Start with a prepared disk"
21614 #: ../fish/guestfish.pod:132
21616 "An alternate way to create a 100MB disk called C<test1.img> containing a "
21617 "single ext2-formatted partition:"
21622 #: ../fish/guestfish.pod:135
21625 " guestfish -N fs\n"
21631 #: ../fish/guestfish.pod:137
21632 msgid "To list what is available do:"
21637 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:938
21640 " guestfish -N help | less\n"
21646 #: ../fish/guestfish.pod:141
21647 msgid "Remote control"
21652 #: ../fish/guestfish.pod:143
21655 " eval \"`guestfish --listen`\"\n"
21656 " guestfish --remote add-ro disk.img\n"
21657 " guestfish --remote run\n"
21658 " guestfish --remote lvs\n"
21664 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
21665 #: ../fuse/guestmount.pod:73 ../tools/virt-edit.pl:81
21666 #: ../tools/virt-win-reg.pl:96 ../tools/virt-list-filesystems.pl:53
21667 #: ../tools/virt-tar.pl:103 ../tools/virt-make-fs.pl:153
21668 #: ../tools/virt-list-partitions.pl:54
21674 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:131
21675 #: ../tools/virt-edit.pl:89 ../tools/virt-win-reg.pl:104
21676 #: ../tools/virt-list-filesystems.pl:61 ../tools/virt-tar.pl:111
21677 #: ../tools/virt-make-fs.pl:161 ../tools/virt-list-partitions.pl:62
21683 #: ../fish/guestfish.pod:154
21684 msgid "Displays general help on options."
21689 #: ../fish/guestfish.pod:156
21695 #: ../fish/guestfish.pod:158
21696 msgid "B<--cmd-help>"
21701 #: ../fish/guestfish.pod:160
21702 msgid "Lists all available guestfish commands."
21707 #: ../fish/guestfish.pod:162
21713 #: ../fish/guestfish.pod:164
21714 msgid "B<--cmd-help cmd>"
21719 #: ../fish/guestfish.pod:166
21720 msgid "Displays detailed help on a single command C<cmd>."
21725 #: ../fish/guestfish.pod:168
21726 msgid "B<-a image>"
21731 #: ../fish/guestfish.pod:170
21732 msgid "B<--add image>"
21737 #: ../fish/guestfish.pod:172
21738 msgid "Add a block device or virtual machine image to the shell."
21743 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:81
21745 "The format of the disk image is auto-detected. To override this and force a "
21746 "particular format use the I<--format=..> option."
21750 #: ../fish/guestfish.pod:177
21752 "Using this flag is mostly equivalent to using the C<add> command, with "
21753 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
21754 "the I<--format=...> flag was given."
21759 #: ../fish/guestfish.pod:181
21765 #: ../fish/guestfish.pod:183
21766 msgid "B<--connect URI>"
21771 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:86
21773 "When used in conjunction with the I<-d> option, this specifies the libvirt "
21774 "URI to use. The default is to use the default libvirt connection."
21779 #: ../fish/guestfish.pod:189
21785 #: ../fish/guestfish.pod:191
21787 "If using the I<--listen> option and a csh-like shell, use this option. See "
21788 "section L</REMOTE CONTROL AND CSH> below."
21793 #: ../fish/guestfish.pod:194
21794 msgid "B<-d libvirt-domain>"
21799 #: ../fish/guestfish.pod:196
21800 msgid "B<--domain libvirt-domain>"
21805 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:92
21807 "Add disks from the named libvirt domain. If the I<--ro> option is also "
21808 "used, then any libvirt domain can be used. However in write mode, only "
21809 "libvirt domains which are shut down can be named here."
21814 #: ../fish/guestfish.pod:202
21816 "Using this flag is mostly equivalent to using the C<add-domain> command, "
21817 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
21818 "if the I<--format:...> flag was given."
21823 #: ../fish/guestfish.pod:206
21829 #: ../fish/guestfish.pod:208
21830 msgid "B<--no-dest-paths>"
21835 #: ../fish/guestfish.pod:210
21837 "Don't tab-complete paths on the guest filesystem. It is useful to be able "
21838 "to hit the tab key to complete paths on the guest filesystem, but this "
21839 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
21840 "allow this feature to be disabled."
21845 #: ../fish/guestfish.pod:215 ../fuse/guestmount.pod:108
21846 msgid "B<--echo-keys>"
21851 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:110
21853 "When prompting for keys and passphrases, guestfish normally turns echoing "
21854 "off so you cannot see what you are typing. If you are not worried about "
21855 "Tempest attacks and there is no one else in the room you can specify this "
21856 "flag to see what you are typing."
21861 #: ../fish/guestfish.pod:222
21867 #: ../fish/guestfish.pod:224
21868 msgid "B<--file file>"
21873 #: ../fish/guestfish.pod:226
21874 msgid "Read commands from C<file>. To write pure guestfish scripts, use:"
21879 #: ../fish/guestfish.pod:229
21882 " #!/usr/bin/guestfish -f\n"
21888 #: ../fish/guestfish.pod:231
21889 msgid "B<--format=raw|qcow2|..>"
21894 #: ../fish/guestfish.pod:233
21895 msgid "B<--format>"
21900 #: ../fish/guestfish.pod:235 ../fuse/guestmount.pod:117
21902 "The default for the I<-a> option is to auto-detect the format of the disk "
21903 "image. Using this forces the disk format for I<-a> options which follow on "
21904 "the command line. Using I<--format> with no argument switches back to auto-"
21905 "detection for subsequent I<-a> options."
21910 #: ../fish/guestfish.pod:242
21913 " guestfish --format=raw -a disk.img\n"
21919 #: ../fish/guestfish.pod:244
21920 msgid "forces raw format (no auto-detection) for C<disk.img>."
21925 #: ../fish/guestfish.pod:246
21928 " guestfish --format=raw -a disk.img --format -a another.img\n"
21934 #: ../fish/guestfish.pod:248
21936 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
21937 "detection for C<another.img>."
21942 #: ../fish/guestfish.pod:251
21944 "If you have untrusted raw-format guest disk images, you should use this "
21945 "option to specify the disk format. This avoids a possible security problem "
21946 "with malicious guests (CVE-2010-3851). See also L</add-drive-opts>."
21951 #: ../fish/guestfish.pod:256
21957 #: ../fish/guestfish.pod:258
21958 msgid "B<--inspector>"
21963 #: ../fish/guestfish.pod:260 ../fuse/guestmount.pod:137
21965 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
21966 "system and mount filesystems as they would be mounted on the real virtual "
21972 #: ../fish/guestfish.pod:264
21973 msgid "Typical usage is either:"
21978 #: ../fish/guestfish.pod:266
21981 " guestfish -d myguest -i\n"
21987 #: ../fish/guestfish.pod:268
21988 msgid "(for an inactive libvirt domain called I<myguest>), or:"
21993 #: ../fish/guestfish.pod:270
21996 " guestfish --ro -d myguest -i\n"
22002 #: ../fish/guestfish.pod:272
22003 msgid "(for active domains, readonly), or specify the block device directly:"
22008 #: ../fish/guestfish.pod:274
22011 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
22017 #: ../fish/guestfish.pod:276
22019 "Note that the command line syntax changed slightly over older versions of "
22020 "guestfish. You can still use the old syntax:"
22025 #: ../fish/guestfish.pod:279
22028 " guestfish [--ro] -i disk.img\n"
22034 #: ../fish/guestfish.pod:281
22037 " guestfish [--ro] -i libvirt-domain\n"
22043 #: ../fish/guestfish.pod:283
22045 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
22046 "then using other commands to mount the filesystems that were found."
22051 #: ../fish/guestfish.pod:287 ../fuse/guestmount.pod:141
22052 msgid "B<--keys-from-stdin>"
22057 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:143
22059 "Read key or passphrase parameters from stdin. The default is to try to read "
22060 "passphrases from the user by opening C</dev/tty>."
22065 #: ../fish/guestfish.pod:292
22066 msgid "B<--listen>"
22071 #: ../fish/guestfish.pod:294
22073 "Fork into the background and listen for remote commands. See section L</"
22074 "REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
22078 #: ../fish/guestfish.pod:297 ../fuse/guestmount.pod:146
22083 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:148
22085 "Connect to a live virtual machine. (Experimental, see L<guestfs(3)/"
22086 "ATTACHING TO RUNNING DAEMONS>)."
22090 #: ../fish/guestfish.pod:302 ../fuse/guestmount.pod:151
22091 msgid "B<-m dev[:mountpoint[:options]]>"
22095 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:153
22096 msgid "B<--mount dev[:mountpoint[:options]]>"
22101 #: ../fish/guestfish.pod:306
22102 msgid "Mount the named partition or logical volume on the given mountpoint."
22107 #: ../fish/guestfish.pod:308
22108 msgid "If the mountpoint is omitted, it defaults to C</>."
22113 #: ../fish/guestfish.pod:310
22114 msgid "You have to mount something on C</> before most commands will work."
22119 #: ../fish/guestfish.pod:312
22121 "If any I<-m> or I<--mount> options are given, the guest is automatically "
22127 #: ../fish/guestfish.pod:315
22129 "If you don't know what filesystems a disk image contains, you can either run "
22130 "guestfish without this option, then list the partitions, filesystems and LVs "
22131 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
22132 "commands), or you can use the L<virt-filesystems(1)> program."
22136 #: ../fish/guestfish.pod:321 ../fuse/guestmount.pod:161
22138 "The third (and rarely used) part of the mount parameter is the list of mount "
22139 "options used to mount the underlying filesystem. If this is not given, then "
22140 "the mount options are either the empty string or C<ro> (the latter if the "
22141 "I<--ro> flag is used). By specifying the mount options, you override this "
22142 "default choice. Probably the only time you would use this is to enable ACLs "
22143 "and/or extended attributes if the filesystem can support them:"
22147 #: ../fish/guestfish.pod:329 ../fuse/guestmount.pod:169
22150 " -m /dev/sda1:/:acl,user_xattr\n"
22155 #: ../fish/guestfish.pod:331
22156 msgid "Using this flag is equivalent to using the C<mount-options> command."
22161 #: ../fish/guestfish.pod:333
22167 #: ../fish/guestfish.pod:335
22168 msgid "B<--no-sync>"
22173 #: ../fish/guestfish.pod:337
22175 "Disable autosync. This is enabled by default. See the discussion of "
22176 "autosync in the L<guestfs(3)> manpage."
22181 #: ../fish/guestfish.pod:340
22187 #: ../fish/guestfish.pod:342
22188 msgid "B<--new type>"
22193 #: ../fish/guestfish.pod:344
22199 #: ../fish/guestfish.pod:346
22201 "Prepare a fresh disk image formatted as \"type\". This is an alternative to "
22202 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
22203 "preformatted disk with a filesystem and adds it. See L</PREPARED DISK "
22209 #: ../fish/guestfish.pod:351
22210 msgid "B<--progress-bars>"
22215 #: ../fish/guestfish.pod:353
22216 msgid "Enable progress bars, even when guestfish is used non-interactively."
22221 #: ../fish/guestfish.pod:355
22223 "Progress bars are enabled by default when guestfish is used as an "
22224 "interactive shell."
22229 #: ../fish/guestfish.pod:358
22230 msgid "B<--no-progress-bars>"
22235 #: ../fish/guestfish.pod:360
22236 msgid "Disable progress bars."
22241 #: ../fish/guestfish.pod:362
22242 msgid "B<--remote[=pid]>"
22247 #: ../fish/guestfish.pod:364
22249 "Send remote commands to C<$GUESTFISH_PID> or C<pid>. See section L</REMOTE "
22250 "CONTROL GUESTFISH OVER A SOCKET> below."
22255 #: ../fish/guestfish.pod:367
22261 #: ../fish/guestfish.pod:369
22267 #: ../fish/guestfish.pod:371
22269 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
22270 "mounts are done read-only."
22275 #: ../fish/guestfish.pod:374
22277 "The option must always be used if the disk image or virtual machine might be "
22278 "running, and is generally recommended in cases where you don't need write "
22279 "access to the disk."
22284 #: ../fish/guestfish.pod:378
22286 "Note that prepared disk images created with I<-N> are not affected by this "
22287 "option. Also commands like C<add> are not affected - you have to specify "
22288 "the C<readonly:true> option explicitly if you need it."
22293 #: ../fish/guestfish.pod:382
22294 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
22299 #: ../fish/guestfish.pod:384 ../fuse/guestmount.pod:225
22300 msgid "B<--selinux>"
22305 #: ../fish/guestfish.pod:386
22306 msgid "Enable SELinux support for the guest. See L<guestfs(3)/SELINUX>."
22311 #: ../fish/guestfish.pod:388
22317 #: ../fish/guestfish.pod:390
22318 msgid "B<--verbose>"
22323 #: ../fish/guestfish.pod:392
22325 "Enable very verbose messages. This is particularly useful if you find a bug."
22330 #: ../fish/guestfish.pod:395
22336 #: ../fish/guestfish.pod:397 ../tools/virt-edit.pl:97
22337 #: ../tools/virt-win-reg.pl:112 ../tools/virt-list-filesystems.pl:69
22338 #: ../tools/virt-tar.pl:119 ../tools/virt-make-fs.pl:169
22339 #: ../tools/virt-list-partitions.pl:70
22340 msgid "B<--version>"
22345 #: ../fish/guestfish.pod:399
22346 msgid "Display the guestfish / libguestfs version number and exit."
22351 #: ../fish/guestfish.pod:401
22357 #: ../fish/guestfish.pod:403
22362 #: ../fish/guestfish.pod:405 ../fuse/guestmount.pod:239
22364 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
22365 "mounts are done read-write."
22369 #: ../fish/guestfish.pod:408
22370 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
22375 #: ../fish/guestfish.pod:410
22381 #: ../fish/guestfish.pod:412
22382 msgid "Echo each command before executing it."
22387 #: ../fish/guestfish.pod:416
22388 msgid "COMMANDS ON COMMAND LINE"
22393 #: ../fish/guestfish.pod:418
22395 "Any additional (non-option) arguments are treated as commands to execute."
22400 #: ../fish/guestfish.pod:421
22402 "Commands to execute should be separated by a colon (C<:>), where the colon "
22403 "is a separate parameter. Thus:"
22408 #: ../fish/guestfish.pod:424
22411 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
22417 #: ../fish/guestfish.pod:426
22419 "If there are no additional arguments, then we enter a shell, either an "
22420 "interactive shell with a prompt (if the input is a terminal) or a non-"
22421 "interactive shell."
22426 #: ../fish/guestfish.pod:430
22428 "In either command line mode or non-interactive shell, the first command that "
22429 "gives an error causes the whole shell to exit. In interactive mode (with a "
22430 "prompt) if a command fails, you can continue to enter commands."
22435 #: ../fish/guestfish.pod:435
22436 msgid "USING launch (OR run)"
22441 #: ../fish/guestfish.pod:437
22443 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
22444 "then launch it, then mount any disks you need, and finally issue actions/"
22445 "commands. So the general order of the day is:"
22450 #: ../fish/guestfish.pod:445
22451 msgid "add or -a/--add"
22456 #: ../fish/guestfish.pod:449
22457 msgid "launch (aka run)"
22462 #: ../fish/guestfish.pod:453
22463 msgid "mount or -m/--mount"
22468 #: ../fish/guestfish.pod:457
22469 msgid "any other commands"
22474 #: ../fish/guestfish.pod:461
22476 "C<run> is a synonym for C<launch>. You must C<launch> (or C<run>) your "
22477 "guest before mounting or performing any other commands."
22482 #: ../fish/guestfish.pod:464
22484 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
22485 "I<--new> options were given then C<run> is done automatically, simply "
22486 "because guestfish can't perform the action you asked for without doing this."
22491 #: ../fish/guestfish.pod:469
22492 msgid "OPENING DISKS FOR READ AND WRITE"
22496 #: ../fish/guestfish.pod:471
22498 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
22499 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
22500 "I<-i> and I<-m> open disk images read-only or for writing."
22504 #: ../fish/guestfish.pod:476
22506 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
22507 "opening disk images supplied on the command line for write. To open a disk "
22508 "image read-only you have to do I<-a image --ro>."
22513 #: ../fish/guestfish.pod:480
22515 "This matters: If you accidentally open a live VM disk image writable then "
22516 "you will cause irreversible disk corruption."
22520 #: ../fish/guestfish.pod:483
22522 "By libguestfs 1.12 we intend to change the default the other way. Disk "
22523 "images will be opened read-only. You will have to either specify "
22524 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
22525 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
22526 "access for disk images specified by those other command line options."
22530 #: ../fish/guestfish.pod:490
22532 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
22533 "which does nothing (it is already the default). However it is highly "
22534 "recommended that you use this option to indicate that you need write access, "
22535 "and prepare your scripts for the day when this option will be required for "
22541 #: ../fish/guestfish.pod:496
22543 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
22544 "other libguestfs program apart from guestfish and guestmount."
22549 #: ../fish/guestfish.pod:499
22555 #: ../fish/guestfish.pod:501
22557 "You can quote ordinary parameters using either single or double quotes. For "
22563 #: ../fish/guestfish.pod:504
22566 " add \"file with a space.img\"\n"
22572 #: ../fish/guestfish.pod:506
22575 " rm '/file name'\n"
22581 #: ../fish/guestfish.pod:508
22590 #: ../fish/guestfish.pod:510
22592 "A few commands require a list of strings to be passed. For these, use a "
22593 "whitespace-separated list, enclosed in quotes. Strings containing "
22594 "whitespace to be passed through must be enclosed in single quotes. A "
22595 "literal single quote must be escaped with a backslash."
22600 #: ../fish/guestfish.pod:515
22603 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
22604 " command \"/bin/echo 'foo bar'\"\n"
22605 " command \"/bin/echo \\'foo\\'\"\n"
22611 #: ../fish/guestfish.pod:519
22612 msgid "OPTIONAL ARGUMENTS"
22617 #: ../fish/guestfish.pod:521
22619 "Some commands take optional arguments. These arguments appear in this "
22620 "documentation as C<[argname:..]>. You can use them as in these examples:"
22625 #: ../fish/guestfish.pod:525
22628 " add-drive-opts filename\n"
22634 #: ../fish/guestfish.pod:527
22637 " add-drive-opts filename readonly:true\n"
22643 #: ../fish/guestfish.pod:529
22646 " add-drive-opts filename format:qcow2 readonly:false\n"
22652 #: ../fish/guestfish.pod:531
22654 "Each optional argument can appear at most once. All optional arguments must "
22655 "appear after the required ones."
22660 #: ../fish/guestfish.pod:534
22666 #: ../fish/guestfish.pod:536
22668 "This section applies to all commands which can take integers as parameters."
22673 #: ../fish/guestfish.pod:539
22674 msgid "SIZE SUFFIX"
22679 #: ../fish/guestfish.pod:541
22681 "When the command takes a parameter measured in bytes, you can use one of the "
22682 "following suffixes to specify kilobytes, megabytes and larger sizes:"
22687 #: ../fish/guestfish.pod:547
22688 msgid "B<k> or B<K> or B<KiB>"
22693 #: ../fish/guestfish.pod:549
22694 msgid "The size in kilobytes (multiplied by 1024)."
22699 #: ../fish/guestfish.pod:551
22705 #: ../fish/guestfish.pod:553
22706 msgid "The size in SI 1000 byte units."
22711 #: ../fish/guestfish.pod:555
22712 msgid "B<M> or B<MiB>"
22717 #: ../fish/guestfish.pod:557
22718 msgid "The size in megabytes (multiplied by 1048576)."
22723 #: ../fish/guestfish.pod:559
22729 #: ../fish/guestfish.pod:561
22730 msgid "The size in SI 1000000 byte units."
22735 #: ../fish/guestfish.pod:563
22736 msgid "B<G> or B<GiB>"
22741 #: ../fish/guestfish.pod:565
22742 msgid "The size in gigabytes (multiplied by 2**30)."
22747 #: ../fish/guestfish.pod:567
22753 #: ../fish/guestfish.pod:569
22754 msgid "The size in SI 10**9 byte units."
22759 #: ../fish/guestfish.pod:571
22760 msgid "B<T> or B<TiB>"
22765 #: ../fish/guestfish.pod:573
22766 msgid "The size in terabytes (multiplied by 2**40)."
22771 #: ../fish/guestfish.pod:575
22777 #: ../fish/guestfish.pod:577
22778 msgid "The size in SI 10**12 byte units."
22783 #: ../fish/guestfish.pod:579
22784 msgid "B<P> or B<PiB>"
22789 #: ../fish/guestfish.pod:581
22790 msgid "The size in petabytes (multiplied by 2**50)."
22795 #: ../fish/guestfish.pod:583
22801 #: ../fish/guestfish.pod:585
22802 msgid "The size in SI 10**15 byte units."
22807 #: ../fish/guestfish.pod:587
22808 msgid "B<E> or B<EiB>"
22813 #: ../fish/guestfish.pod:589
22814 msgid "The size in exabytes (multiplied by 2**60)."
22819 #: ../fish/guestfish.pod:591
22825 #: ../fish/guestfish.pod:593
22826 msgid "The size in SI 10**18 byte units."
22831 #: ../fish/guestfish.pod:595
22832 msgid "B<Z> or B<ZiB>"
22837 #: ../fish/guestfish.pod:597
22838 msgid "The size in zettabytes (multiplied by 2**70)."
22843 #: ../fish/guestfish.pod:599
22849 #: ../fish/guestfish.pod:601
22850 msgid "The size in SI 10**21 byte units."
22855 #: ../fish/guestfish.pod:603
22856 msgid "B<Y> or B<YiB>"
22861 #: ../fish/guestfish.pod:605
22862 msgid "The size in yottabytes (multiplied by 2**80)."
22867 #: ../fish/guestfish.pod:607
22873 #: ../fish/guestfish.pod:609
22874 msgid "The size in SI 10**24 byte units."
22879 #: ../fish/guestfish.pod:615
22882 " truncate-size /file 1G\n"
22888 #: ../fish/guestfish.pod:617
22889 msgid "would truncate the file to 1 gigabyte."
22894 #: ../fish/guestfish.pod:619
22896 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
22897 "the parameter to L</memsize> is specified in megabytes already). Adding a "
22898 "suffix will probably not do what you expect."
22903 #: ../fish/guestfish.pod:623
22904 msgid "OCTAL AND HEXADECIMAL NUMBERS"
22909 #: ../fish/guestfish.pod:625
22911 "For specifying the radix (base) use the C convention: C<0> to prefix an "
22912 "octal number or C<0x> to prefix a hexadecimal number. For example:"
22917 #: ../fish/guestfish.pod:628
22920 " 1234 decimal number 1234\n"
22921 " 02322 octal number, equivalent to decimal 1234\n"
22922 " 0x4d2 hexadecimal number, equivalent to decimal 1234\n"
22928 #: ../fish/guestfish.pod:632
22930 "When using the C<chmod> command, you almost always want to specify an octal "
22931 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
22932 "L<chmod(1)> program):"
22937 #: ../fish/guestfish.pod:636
22940 " chmod 0777 /public # OK\n"
22941 " chmod 777 /public # WRONG! This is mode 777 decimal = 01411 octal.\n"
22947 #: ../fish/guestfish.pod:639
22949 "Commands that return numbers usually print them in decimal, but some "
22950 "commands print numbers in other radices (eg. C<umask> prints the mode in "
22951 "octal, preceeded by C<0>)."
22956 #: ../fish/guestfish.pod:643
22957 msgid "WILDCARDS AND GLOBBING"
22962 #: ../fish/guestfish.pod:645
22964 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
22965 "(globbing) by default. So for example the following will not do what you "
22971 #: ../fish/guestfish.pod:649
22980 #: ../fish/guestfish.pod:651
22982 "Assuming you don't have a directory called literally C</home/*> then the "
22983 "above command will return an error."
22988 #: ../fish/guestfish.pod:654
22989 msgid "To perform wildcard expansion, use the C<glob> command."
22994 #: ../fish/guestfish.pod:656
22997 " glob rm-rf /home/*\n"
23003 #: ../fish/guestfish.pod:658
23005 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
23006 "many times), equivalent to:"
23011 #: ../fish/guestfish.pod:661
23014 " rm-rf /home/jim\n"
23015 " rm-rf /home/joe\n"
23016 " rm-rf /home/mary\n"
23022 #: ../fish/guestfish.pod:665
23023 msgid "C<glob> only works on simple guest paths and not on device names."
23028 #: ../fish/guestfish.pod:667
23030 "If you have several parameters, each containing a wildcard, then glob will "
23031 "perform a Cartesian product."
23036 #: ../fish/guestfish.pod:670
23042 #: ../fish/guestfish.pod:672
23044 "Any line which starts with a I<#> character is treated as a comment and "
23045 "ignored. The I<#> can optionally be preceeded by whitespace, but B<not> by "
23046 "a command. For example:"
23051 #: ../fish/guestfish.pod:676
23054 " # this is a comment\n"
23055 " # this is a comment\n"
23056 " foo # NOT a comment\n"
23062 #: ../fish/guestfish.pod:680
23063 msgid "Blank lines are also ignored."
23068 #: ../fish/guestfish.pod:682
23069 msgid "RUNNING COMMANDS LOCALLY"
23074 #: ../fish/guestfish.pod:684
23076 "Any line which starts with a I<!> character is treated as a command sent to "
23077 "the local shell (C</bin/sh> or whatever L<system(3)> uses). For example:"
23082 #: ../fish/guestfish.pod:688
23086 " tgz-out /remote local/remote-data.tar.gz\n"
23092 #: ../fish/guestfish.pod:691
23094 "will create a directory C<local> on the host, and then export the contents "
23095 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>. "
23096 "(See C<tgz-out>)."
23101 #: ../fish/guestfish.pod:695
23103 "To change the local directory, use the C<lcd> command. C<!cd> will have no "
23104 "effect, due to the way that subprocesses work in Unix."
23108 #: ../fish/guestfish.pod:698
23109 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
23113 #: ../fish/guestfish.pod:700
23115 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
23116 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
23117 "and executed as guestfish commands."
23121 #: ../fish/guestfish.pod:704
23123 "Thus you can use shell script to construct arbitrary guestfish commands "
23124 "which are then parsed by guestfish."
23128 #: ../fish/guestfish.pod:707
23130 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
23131 "through C</foo.100>) using guestfish commands alone. However this is simple "
23132 "if we use a shell script to create the guestfish commands for us:"
23136 #: ../fish/guestfish.pod:712
23139 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
23144 #: ../fish/guestfish.pod:714
23145 msgid "or with names like C</foo.001>:"
23149 #: ../fish/guestfish.pod:716
23152 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
23157 #: ../fish/guestfish.pod:718
23159 "When using guestfish interactively it can be helpful to just run the shell "
23160 "script first (ie. remove the initial C<E<lt>> character so it is just an "
23161 "ordinary I<!> local command), see what guestfish commands it would run, and "
23162 "when you are happy with those prepend the C<E<lt>> character to run the "
23163 "guestfish commands for real."
23168 #: ../fish/guestfish.pod:724
23174 #: ../fish/guestfish.pod:726
23176 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
23177 "command (a guestfish command) to the second command (any host command). For "
23183 #: ../fish/guestfish.pod:730
23186 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
23192 #: ../fish/guestfish.pod:732
23194 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
23195 "program). The above command would list all accounts in the guest filesystem "
23196 "which have UID 0, ie. root accounts including backdoors. Other examples:"
23201 #: ../fish/guestfish.pod:737
23204 " hexdump /bin/ls | head\n"
23205 " list-devices | tail -1\n"
23206 " tgz-out / - | tar ztf -\n"
23212 #: ../fish/guestfish.pod:741
23214 "The space before the pipe symbol is required, any space after the pipe "
23215 "symbol is optional. Everything after the pipe symbol is just passed "
23216 "straight to the host shell, so it can contain redirections, globs and "
23217 "anything else that makes sense on the host side."
23222 #: ../fish/guestfish.pod:746
23224 "To use a literal argument which begins with a pipe symbol, you have to quote "
23230 #: ../fish/guestfish.pod:749
23239 #: ../fish/guestfish.pod:751
23240 msgid "HOME DIRECTORIES"
23245 #: ../fish/guestfish.pod:753
23247 "If a parameter starts with the character C<~> then the tilde may be expanded "
23248 "as a home directory path (either C<~> for the current user's home directory, "
23249 "or C<~user> for another user)."
23254 #: ../fish/guestfish.pod:757
23256 "Note that home directory expansion happens for users known I<on the host>, "
23257 "not in the guest filesystem."
23262 #: ../fish/guestfish.pod:760
23264 "To use a literal argument which begins with a tilde, you have to quote it, "
23270 #: ../fish/guestfish.pod:763
23279 #: ../fish/guestfish.pod:767
23281 "Libguestfs has some support for Linux guests encrypted according to the "
23282 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
23283 "disk encryption systems used by modern Linux guests. Currently only LVM-on-"
23284 "LUKS is supported."
23289 #: ../fish/guestfish.pod:772
23290 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
23295 #: ../fish/guestfish.pod:774
23298 " ><fs> vfs-type /dev/sda2\n"
23305 #: ../fish/guestfish.pod:777
23307 "Then open those devices using L</luks-open>. This creates a device-mapper "
23308 "device called C</dev/mapper/luksdev>."
23313 #: ../fish/guestfish.pod:780
23316 " ><fs> luks-open /dev/sda2 luksdev\n"
23317 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
23323 #: ../fish/guestfish.pod:783
23325 "Finally you have to tell LVM to scan for volume groups on the newly created "
23331 #: ../fish/guestfish.pod:786
23335 " vg-activate-all true\n"
23341 #: ../fish/guestfish.pod:789
23342 msgid "The logical volume(s) can now be mounted in the usual way."
23347 #: ../fish/guestfish.pod:791
23349 "Before closing a LUKS device you must unmount any logical volumes on it and "
23350 "deactivate the volume groups by calling C<vg-activate false VG> on each "
23351 "one. Then you can close the mapper device:"
23356 #: ../fish/guestfish.pod:795
23359 " vg-activate false /dev/VG\n"
23360 " luks-close /dev/mapper/luksdev\n"
23366 #: ../fish/guestfish.pod:798 ../tools/virt-edit.pl:342
23367 msgid "WINDOWS PATHS"
23371 #: ../fish/guestfish.pod:800
23373 "If a path is prefixed with C<win:> then you can use Windows-style drive "
23374 "letters and paths (with some limitations). The following commands are "
23380 #: ../fish/guestfish.pod:804
23383 " file /WINDOWS/system32/config/system.LOG\n"
23389 #: ../fish/guestfish.pod:806
23392 " file win:\\windows\\system32\\config\\system.log\n"
23397 #: ../fish/guestfish.pod:808
23400 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
23405 #: ../fish/guestfish.pod:810
23407 "The parameter is rewritten \"behind the scenes\" by looking up the position "
23408 "where the drive is mounted, prepending that to the path, changing all "
23409 "backslash characters to forward slash, then resolving the result using L</"
23410 "case-sensitive-path>. For example if the E: drive was mounted on C</e> then "
23411 "the parameter might be rewritten like this:"
23415 #: ../fish/guestfish.pod:816
23418 " win:e:\\foo\\bar => /e/FOO/bar\n"
23423 #: ../fish/guestfish.pod:818
23424 msgid "This only works in argument positions that expect a path."
23429 #: ../fish/guestfish.pod:820
23430 msgid "UPLOADING AND DOWNLOADING FILES"
23435 #: ../fish/guestfish.pod:822
23437 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
23438 "others which upload from or download to a local file, you can use the "
23439 "special filename C<-> to mean \"from stdin\" or \"to stdout\". For example:"
23444 #: ../fish/guestfish.pod:826
23453 #: ../fish/guestfish.pod:828
23455 "reads stdin and creates from that a file C</foo> in the disk image, and:"
23460 #: ../fish/guestfish.pod:831
23463 " tar-out /etc - | tar tf -\n"
23469 #: ../fish/guestfish.pod:833
23471 "writes the tarball to stdout and then pipes that into the external \"tar\" "
23472 "command (see L</PIPES>)."
23477 #: ../fish/guestfish.pod:836
23479 "When using C<-> to read from stdin, the input is read up to the end of "
23480 "stdin. You can also use a special \"heredoc\"-like syntax to read up to "
23481 "some arbitrary end marker:"
23486 #: ../fish/guestfish.pod:840
23489 " upload -<<END /foo\n"
23499 #: ../fish/guestfish.pod:846
23501 "Any string of characters can be used instead of C<END>. The end marker must "
23502 "appear on a line of its own, without any preceeding or following characters "
23503 "(not even spaces)."
23508 #: ../fish/guestfish.pod:850
23510 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
23511 "upload local files (so-called \"FileIn\" parameters in the generator)."
23516 #: ../fish/guestfish.pod:853
23517 msgid "EXIT ON ERROR BEHAVIOUR"
23522 #: ../fish/guestfish.pod:855
23524 "By default, guestfish will ignore any errors when in interactive mode (ie. "
23525 "taking commands from a human over a tty), and will exit on the first error "
23526 "in non-interactive mode (scripts, commands given on the command line)."
23531 #: ../fish/guestfish.pod:860
23533 "If you prefix a command with a I<-> character, then that command will not "
23534 "cause guestfish to exit, even if that (one) command returns an error."
23539 #: ../fish/guestfish.pod:864
23540 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
23545 #: ../fish/guestfish.pod:866
23547 "Guestfish can be remote-controlled over a socket. This is useful "
23548 "particularly in shell scripts where you want to make several different "
23549 "changes to a filesystem, but you don't want the overhead of starting up a "
23550 "guestfish process each time."
23555 #: ../fish/guestfish.pod:871
23556 msgid "Start a guestfish server process using:"
23561 #: ../fish/guestfish.pod:873
23564 " eval \"`guestfish --listen`\"\n"
23570 #: ../fish/guestfish.pod:875
23571 msgid "and then send it commands by doing:"
23576 #: ../fish/guestfish.pod:877
23579 " guestfish --remote cmd [...]\n"
23585 #: ../fish/guestfish.pod:879
23586 msgid "To cause the server to exit, send it the exit command:"
23591 #: ../fish/guestfish.pod:881
23594 " guestfish --remote exit\n"
23600 #: ../fish/guestfish.pod:883
23602 "Note that the server will normally exit if there is an error in a command. "
23603 "You can change this in the usual way. See section L</EXIT ON ERROR "
23609 #: ../fish/guestfish.pod:887
23610 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
23615 #: ../fish/guestfish.pod:889
23617 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
23618 "is how the I<--remote> option knows where to send the commands. You can "
23619 "have several guestfish listener processes running using:"
23624 #: ../fish/guestfish.pod:893
23627 " eval \"`guestfish --listen`\"\n"
23628 " pid1=$GUESTFISH_PID\n"
23629 " eval \"`guestfish --listen`\"\n"
23630 " pid2=$GUESTFISH_PID\n"
23632 " guestfish --remote=$pid1 cmd\n"
23633 " guestfish --remote=$pid2 cmd\n"
23639 #: ../fish/guestfish.pod:901
23640 msgid "REMOTE CONTROL AND CSH"
23645 #: ../fish/guestfish.pod:903
23647 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
23653 #: ../fish/guestfish.pod:906
23656 " eval \"`guestfish --listen --csh`\"\n"
23662 #: ../fish/guestfish.pod:908
23663 msgid "REMOTE CONTROL DETAILS"
23668 #: ../fish/guestfish.pod:910
23670 "Remote control happens over a Unix domain socket called C</tmp/.guestfish-"
23671 "$UID/socket-$PID>, where C<$UID> is the effective user ID of the process, "
23672 "and C<$PID> is the process ID of the server."
23677 #: ../fish/guestfish.pod:914
23678 msgid "Guestfish client and server versions must match exactly."
23683 #: ../fish/guestfish.pod:916
23684 msgid "PREPARED DISK IMAGES"
23689 #: ../fish/guestfish.pod:918
23691 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
23692 "preformatted disk images that guestfish can make for you to save typing. "
23693 "This is particularly useful for testing purposes. This option is used "
23694 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
23695 "can be mixed with I<-a>)."
23700 #: ../fish/guestfish.pod:924
23702 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
23703 "the second and so on. Existing files in the current directory are "
23709 #: ../fish/guestfish.pod:928
23711 "The type briefly describes how the disk should be sized, partitioned, how "
23712 "filesystem(s) should be created, and how content should be added. "
23713 "Optionally the type can be followed by extra parameters, separated by C<:> "
23714 "(colon) characters. For example, I<-N fs> creates a default 100MB, sparsely-"
23715 "allocated disk, containing a single partition, with the partition formatted "
23716 "as ext2. I<-N fs:ext4:1G> is the same, but for an ext4 filesystem on a 1GB "
23722 #: ../fish/guestfish.pod:936
23723 msgid "To list the available types and any extra parameters they take, run:"
23728 #: ../fish/guestfish.pod:940
23730 "Note that the prepared filesystem is not mounted. You would usually have to "
23731 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
23736 #: ../fish/guestfish.pod:944
23738 "If any I<-N> or I<--new> options are given, the guest is automatically "
23744 #: ../fish/guestfish.pod:949
23745 msgid "Create a 100MB disk with an ext4-formatted partition:"
23750 #: ../fish/guestfish.pod:951
23753 " guestfish -N fs:ext4\n"
23759 #: ../fish/guestfish.pod:953
23760 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
23765 #: ../fish/guestfish.pod:955
23768 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
23774 #: ../fish/guestfish.pod:957
23775 msgid "Create a blank 200MB disk:"
23780 #: ../fish/guestfish.pod:959
23783 " guestfish -N disk:200M\n"
23789 #: ../fish/guestfish.pod:961
23790 msgid "PROGRESS BARS"
23795 #: ../fish/guestfish.pod:963
23797 "Some (not all) long-running commands send progress notification messages as "
23798 "they are running. Guestfish turns these messages into progress bars."
23803 #: ../fish/guestfish.pod:967
23805 "When a command that supports progress bars takes longer than two seconds to "
23806 "run, and if progress bars are enabled, then you will see one appearing below "
23812 #: ../fish/guestfish.pod:971
23815 " ><fs> copy-size /large-file /another-file 2048M\n"
23816 " / 10% [#####-----------------------------------------] 00:30\n"
23822 #: ../fish/guestfish.pod:974
23824 "The spinner on the left hand side moves round once for every progress "
23825 "notification received from the backend. This is a (reasonably) golden "
23826 "assurance that the command is \"doing something\" even if the progress bar "
23827 "is not moving, because the command is able to send the progress "
23828 "notifications. When the bar reaches 100% and the command finishes, the "
23829 "spinner disappears."
23834 #: ../fish/guestfish.pod:981
23836 "Progress bars are enabled by default when guestfish is used interactively. "
23837 "You can enable them even for non-interactive modes using I<--progress-bars>, "
23838 "and you can disable them completely using I<--no-progress-bars>."
23843 #: ../fish/guestfish.pod:986
23844 msgid "GUESTFISH COMMANDS"
23849 #: ../fish/guestfish.pod:988
23851 "The commands in this section are guestfish convenience commands, in other "
23852 "words, they are not part of the L<guestfs(3)> API."
23857 #: ../fish/guestfish.pod:991
23863 #: ../fish/guestfish.pod:993
23873 #: ../fish/guestfish.pod:996
23874 msgid "Without any parameter, this provides general help."
23879 #: ../fish/guestfish.pod:998
23880 msgid "With a C<cmd> parameter, this displays detailed help for that command."
23885 #: ../fish/guestfish.pod:1000
23886 msgid "quit | exit"
23891 #: ../fish/guestfish.pod:1002
23892 msgid "This exits guestfish. You can also use C<^D> key."
23897 #: ../fish/guestfish.pod:1004
23898 msgid "@FISH_COMMANDS@"
23903 #: ../fish/guestfish.pod:1006
23909 #: ../fish/guestfish.pod:1010 ../test-tool/libguestfs-test-tool.pod:77
23915 #: ../fish/guestfish.pod:1012
23917 "guestfish returns 0 if the commands completed without error, or 1 if there "
23923 #: ../fish/guestfish.pod:1019
23929 #: ../fish/guestfish.pod:1021
23931 "The C<edit> command uses C<$EDITOR> as the editor. If not set, it uses "
23937 #: ../fish/guestfish.pod:1024
23938 msgid "GUESTFISH_PID"
23943 #: ../fish/guestfish.pod:1026
23945 "Used with the I<--remote> option to specify the remote guestfish process to "
23946 "control. See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
23951 #: ../fish/guestfish.pod:1030
23957 #: ../fish/guestfish.pod:1032
23959 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor. If "
23960 "not specified, the external L<hexedit(1)> program is used."
23965 #: ../fish/guestfish.pod:1036
23971 #: ../fish/guestfish.pod:1038
23973 "If compiled with GNU readline support, various files in the home directory "
23974 "can be used. See L</FILES>."
23979 #: ../fish/guestfish.pod:1047
23981 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages. This has the same "
23982 "effect as using the B<-v> option."
23987 #: ../fish/guestfish.pod:1059
23989 "Set the path that guestfish uses to search for kernel and initrd.img. See "
23990 "the discussion of paths in L<guestfs(3)>."
23995 #: ../fish/guestfish.pod:1070
23996 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
24001 #: ../fish/guestfish.pod:1072
24007 #: ../fish/guestfish.pod:1074
24009 "The C<more> command uses C<$PAGER> as the pager. If not set, it uses "
24015 #: ../fish/guestfish.pod:1090 ../fuse/guestmount.pod:252
24020 #: ../fish/guestfish.pod:1094 ../fuse/guestmount.pod:256
24021 msgid "$HOME/.libguestfs-tools.rc"
24025 #: ../fish/guestfish.pod:1096 ../fuse/guestmount.pod:258
24026 msgid "/etc/libguestfs-tools.conf"
24030 #: ../fish/guestfish.pod:1098 ../fuse/guestmount.pod:260
24032 "This configuration file controls the default read-only or read-write mode "
24033 "(I<--ro> or I<--rw>)."
24037 #: ../fish/guestfish.pod:1101
24038 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
24043 #: ../fish/guestfish.pod:1103
24044 msgid "$HOME/.guestfish"
24049 #: ../fish/guestfish.pod:1105
24051 "If compiled with GNU readline support, then the command history is saved in "
24057 #: ../fish/guestfish.pod:1108
24058 msgid "$HOME/.inputrc"
24063 #: ../fish/guestfish.pod:1110
24064 msgid "/etc/inputrc"
24069 #: ../fish/guestfish.pod:1112
24071 "If compiled with GNU readline support, then these files can be used to "
24072 "configure readline. For further information, please see L<readline(3)/"
24073 "INITIALIZATION FILE>."
24078 #: ../fish/guestfish.pod:1116
24079 msgid "To write rules which only apply to guestfish, use:"
24084 #: ../fish/guestfish.pod:1118
24095 #: ../fish/guestfish.pod:1122
24097 "Variables that you can set in inputrc that change the behaviour of guestfish "
24098 "in useful ways include:"
24103 #: ../fish/guestfish.pod:1127
24104 msgid "completion-ignore-case (default: on)"
24109 #: ../fish/guestfish.pod:1129
24111 "By default, guestfish will ignore case when tab-completing paths on the "
24117 #: ../fish/guestfish.pod:1132
24120 " set completion-ignore-case off\n"
24126 #: ../fish/guestfish.pod:1134
24127 msgid "to make guestfish case sensitive."
24132 #: ../fish/guestfish.pod:1138
24138 #: ../fish/guestfish.pod:1140
24139 msgid "test2.img (etc)"
24144 #: ../fish/guestfish.pod:1142
24146 "When using the C<-N> or C<--new> option, the prepared disk or filesystem "
24147 "will be created in the file C<test1.img> in the current directory. The "
24148 "second use of C<-N> will use C<test2.img> and so on. Any existing file with "
24149 "the same name will be overwritten."
24153 #: ../fish/guestfish.pod:1151
24155 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-in(1)"
24156 ">, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)"
24157 ">, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-partitions"
24158 "(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)"
24159 ">, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)"
24160 ">, L<hexedit(1)>."
24165 #: ../fish/guestfish.pod:1181 ../test-tool/libguestfs-test-tool.pod:102
24166 #: ../fuse/guestmount.pod:287 ../tools/virt-edit.pl:518
24167 #: ../tools/virt-win-reg.pl:606 ../tools/virt-list-filesystems.pl:210
24168 #: ../tools/virt-tar.pl:309 ../tools/virt-make-fs.pl:572
24169 #: ../tools/virt-list-partitions.pl:277
24171 "This program is free software; you can redistribute it and/or modify it "
24172 "under the terms of the GNU General Public License as published by the Free "
24173 "Software Foundation; either version 2 of the License, or (at your option) "
24174 "any later version."
24179 #: ../fish/guestfish.pod:1186 ../test-tool/libguestfs-test-tool.pod:107
24180 #: ../fuse/guestmount.pod:292 ../tools/virt-edit.pl:523
24181 #: ../tools/virt-win-reg.pl:611 ../tools/virt-list-filesystems.pl:215
24182 #: ../tools/virt-tar.pl:314 ../tools/virt-make-fs.pl:577
24183 #: ../tools/virt-list-partitions.pl:282
24185 "This program is distributed in the hope that it will be useful, but WITHOUT "
24186 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
24187 "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for "
24193 #: ../fish/guestfish.pod:1191 ../test-tool/libguestfs-test-tool.pod:112
24194 #: ../fuse/guestmount.pod:297 ../tools/virt-edit.pl:528
24195 #: ../tools/virt-win-reg.pl:616 ../tools/virt-list-filesystems.pl:220
24196 #: ../tools/virt-tar.pl:319 ../tools/virt-make-fs.pl:582
24197 #: ../tools/virt-list-partitions.pl:287
24199 "You should have received a copy of the GNU General Public License along with "
24200 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
24201 "Ave, Cambridge, MA 02139, USA."
24206 #: ../fish/guestfish-actions.pod:1
24212 #: ../fish/guestfish-actions.pod:3
24215 " add-cdrom filename\n"
24221 #: ../fish/guestfish-actions.pod:15
24223 "This call checks for the existence of C<filename>. This stops you from "
24224 "specifying other types of drive which are supported by qemu such as C<nbd:> "
24225 "and C<http:> URLs. To specify those, use the general L</config> call "
24231 #: ../fish/guestfish-actions.pod:22
24233 "If you just want to add an ISO file (often you use this as an efficient way "
24234 "to transfer large files into the guest), then you should probably use L</add-"
24235 "drive-ro> instead."
24240 #: ../fish/guestfish-actions.pod:35
24246 #: ../fish/guestfish-actions.pod:37
24251 #: ../fish/guestfish-actions.pod:39
24254 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..]\n"
24260 #: ../fish/guestfish-actions.pod:41
24262 "This function adds the disk(s) attached to the named libvirt domain C<dom>. "
24263 "It works by connecting to libvirt, requesting the domain and domain XML from "
24264 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
24269 #: ../fish/guestfish-actions.pod:71
24271 "The other optional parameters are passed directly through to L</add-drive-"
24277 #: ../fish/guestfish-actions.pod:74 ../fish/guestfish-actions.pod:138
24278 #: ../fish/guestfish-actions.pod:3039
24280 "This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>."
24285 #: ../fish/guestfish-actions.pod:76
24291 #: ../fish/guestfish-actions.pod:78
24294 " add-drive filename\n"
24300 #: ../fish/guestfish-actions.pod:80
24302 "This function is the equivalent of calling L</add-drive-opts> with no "
24303 "optional parameters, so the disk is added writable, with the format being "
24304 "detected automatically."
24309 #: ../fish/guestfish-actions.pod:84
24311 "Automatic detection of the format opens you up to a potential security hole "
24312 "when dealing with untrusted raw-format images. See CVE-2010-3851 and "
24313 "RHBZ#642934. Specifying the format closes this security hole. Therefore "
24314 "you should think about replacing calls to this function with calls to L</add-"
24315 "drive-opts>, and specifying the format."
24320 #: ../fish/guestfish-actions.pod:91
24321 msgid "add-drive-opts"
24326 #: ../fish/guestfish-actions.pod:93
24332 #: ../fish/guestfish-actions.pod:95
24335 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
24341 #: ../fish/guestfish-actions.pod:122
24343 "This forces the image format. If you omit this (or use L</add-drive> or L</"
24344 "add-drive-ro>) then the format is automatically detected. Possible formats "
24345 "include C<raw> and C<qcow2>."
24350 #: ../fish/guestfish-actions.pod:133
24352 "This rarely-used option lets you emulate the behaviour of the deprecated L</"
24353 "add-drive-with-if> call (q.v.)"
24358 #: ../fish/guestfish-actions.pod:140
24359 msgid "add-drive-ro"
24364 #: ../fish/guestfish-actions.pod:142
24370 #: ../fish/guestfish-actions.pod:144
24373 " add-drive-ro filename\n"
24379 #: ../fish/guestfish-actions.pod:146
24381 "This function is the equivalent of calling L</add-drive-opts> with the "
24382 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
24383 "is added read-only, with the format being detected automatically."
24388 #: ../fish/guestfish-actions.pod:151
24389 msgid "add-drive-ro-with-if"
24394 #: ../fish/guestfish-actions.pod:153
24397 " add-drive-ro-with-if filename iface\n"
24403 #: ../fish/guestfish-actions.pod:155
24405 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
24406 "interface emulation to use at run time."
24411 #: ../fish/guestfish-actions.pod:165
24412 msgid "add-drive-with-if"
24417 #: ../fish/guestfish-actions.pod:167
24420 " add-drive-with-if filename iface\n"
24426 #: ../fish/guestfish-actions.pod:169
24428 "This is the same as L</add-drive> but it allows you to specify the QEMU "
24429 "interface emulation to use at run time."
24434 #: ../fish/guestfish-actions.pod:179
24440 #: ../fish/guestfish-actions.pod:181
24443 " aug-clear augpath\n"
24449 #: ../fish/guestfish-actions.pod:186
24455 #: ../fish/guestfish-actions.pod:188
24464 #: ../fish/guestfish-actions.pod:190
24466 "Close the current Augeas handle and free up any resources used by it. After "
24467 "calling this, you have to call L</aug-init> again before you can use any "
24468 "other Augeas functions."
24473 #: ../fish/guestfish-actions.pod:195
24474 msgid "aug-defnode"
24479 #: ../fish/guestfish-actions.pod:197
24482 " aug-defnode name expr val\n"
24488 #: ../fish/guestfish-actions.pod:202
24490 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
24491 "calling L</aug-set> C<expr>, C<value>. C<name> will be the nodeset "
24492 "containing that single node."
24497 #: ../fish/guestfish-actions.pod:210
24503 #: ../fish/guestfish-actions.pod:212
24506 " aug-defvar name expr\n"
24512 #: ../fish/guestfish-actions.pod:221
24518 #: ../fish/guestfish-actions.pod:223
24521 " aug-get augpath\n"
24527 #: ../fish/guestfish-actions.pod:228
24533 #: ../fish/guestfish-actions.pod:230
24536 " aug-init root flags\n"
24542 #: ../fish/guestfish-actions.pod:236
24543 msgid "You must call this before using any other L</aug-*> commands."
24548 #: ../fish/guestfish-actions.pod:271
24549 msgid "Do not load the tree in L</aug-init>."
24554 #: ../fish/guestfish-actions.pod:275
24555 msgid "To close the handle, you can call L</aug-close>."
24560 #: ../fish/guestfish-actions.pod:279
24566 #: ../fish/guestfish-actions.pod:281
24569 " aug-insert augpath label true|false\n"
24575 #: ../fish/guestfish-actions.pod:291
24581 #: ../fish/guestfish-actions.pod:293
24590 #: ../fish/guestfish-actions.pod:300
24596 #: ../fish/guestfish-actions.pod:302
24599 " aug-ls augpath\n"
24605 #: ../fish/guestfish-actions.pod:304
24607 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
24608 "resulting nodes into alphabetical order."
24613 #: ../fish/guestfish-actions.pod:307
24619 #: ../fish/guestfish-actions.pod:309
24622 " aug-match augpath\n"
24628 #: ../fish/guestfish-actions.pod:315
24634 #: ../fish/guestfish-actions.pod:317
24637 " aug-mv src dest\n"
24643 #: ../fish/guestfish-actions.pod:322
24649 #: ../fish/guestfish-actions.pod:324
24652 " aug-rm augpath\n"
24658 #: ../fish/guestfish-actions.pod:330
24664 #: ../fish/guestfish-actions.pod:332
24673 #: ../fish/guestfish-actions.pod:336
24675 "The flags which were passed to L</aug-init> affect exactly how files are "
24681 #: ../fish/guestfish-actions.pod:339
24687 #: ../fish/guestfish-actions.pod:341
24690 " aug-set augpath val\n"
24696 #: ../fish/guestfish-actions.pod:345
24698 "In the Augeas API, it is possible to clear a node by setting the value to "
24699 "NULL. Due to an oversight in the libguestfs API you cannot do that with "
24700 "this call. Instead you must use the L</aug-clear> call."
24705 #: ../fish/guestfish-actions.pod:350
24711 #: ../fish/guestfish-actions.pod:352
24714 " available 'groups ...'\n"
24720 #: ../fish/guestfish-actions.pod:358
24722 "The libguestfs groups, and the functions that those groups correspond to, "
24723 "are listed in L<guestfs(3)/AVAILABILITY>. You can also fetch this list at "
24724 "runtime by calling L</available-all-groups>."
24729 #: ../fish/guestfish-actions.pod:382
24730 msgid "You must call L</launch> before calling this function."
24735 #: ../fish/guestfish-actions.pod:404
24737 "This call was added in version C<1.0.80>. In previous versions of "
24738 "libguestfs all you could do would be to speculatively execute a command to "
24739 "find out if the daemon implemented it. See also L</version>."
24744 #: ../fish/guestfish-actions.pod:411
24745 msgid "available-all-groups"
24750 #: ../fish/guestfish-actions.pod:413
24753 " available-all-groups\n"
24759 #: ../fish/guestfish-actions.pod:415
24761 "This command returns a list of all optional groups that this daemon knows "
24762 "about. Note this returns both supported and unsupported groups. To find "
24763 "out which ones the daemon can actually support you have to call L</"
24764 "available> on each member of the returned list."
24769 #: ../fish/guestfish-actions.pod:421
24770 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
24775 #: ../fish/guestfish-actions.pod:423
24781 #: ../fish/guestfish-actions.pod:425
24784 " base64-in (base64file|-) filename\n"
24790 #: ../fish/guestfish-actions.pod:430 ../fish/guestfish-actions.pod:439
24791 #: ../fish/guestfish-actions.pod:663 ../fish/guestfish-actions.pod:832
24792 #: ../fish/guestfish-actions.pod:851 ../fish/guestfish-actions.pod:1228
24793 #: ../fish/guestfish-actions.pod:4437 ../fish/guestfish-actions.pod:4449
24794 #: ../fish/guestfish-actions.pod:4460 ../fish/guestfish-actions.pod:4471
24795 #: ../fish/guestfish-actions.pod:4523 ../fish/guestfish-actions.pod:4532
24796 #: ../fish/guestfish-actions.pod:4586 ../fish/guestfish-actions.pod:4609
24797 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
24802 #: ../fish/guestfish-actions.pod:432
24808 #: ../fish/guestfish-actions.pod:434
24811 " base64-out filename (base64file|-)\n"
24817 #: ../fish/guestfish-actions.pod:441
24818 msgid "blockdev-flushbufs"
24823 #: ../fish/guestfish-actions.pod:443
24826 " blockdev-flushbufs device\n"
24832 #: ../fish/guestfish-actions.pod:450
24833 msgid "blockdev-getbsz"
24838 #: ../fish/guestfish-actions.pod:452
24841 " blockdev-getbsz device\n"
24847 #: ../fish/guestfish-actions.pod:461
24848 msgid "blockdev-getro"
24853 #: ../fish/guestfish-actions.pod:463
24856 " blockdev-getro device\n"
24862 #: ../fish/guestfish-actions.pod:470
24863 msgid "blockdev-getsize64"
24868 #: ../fish/guestfish-actions.pod:472
24871 " blockdev-getsize64 device\n"
24877 #: ../fish/guestfish-actions.pod:476
24878 msgid "See also L</blockdev-getsz>."
24883 #: ../fish/guestfish-actions.pod:480
24884 msgid "blockdev-getss"
24889 #: ../fish/guestfish-actions.pod:482
24892 " blockdev-getss device\n"
24898 #: ../fish/guestfish-actions.pod:487
24900 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
24905 #: ../fish/guestfish-actions.pod:492
24906 msgid "blockdev-getsz"
24911 #: ../fish/guestfish-actions.pod:494
24914 " blockdev-getsz device\n"
24920 #: ../fish/guestfish-actions.pod:499
24922 "See also L</blockdev-getss> for the real sector size of the device, and L</"
24923 "blockdev-getsize64> for the more useful I<size in bytes>."
24928 #: ../fish/guestfish-actions.pod:505
24929 msgid "blockdev-rereadpt"
24934 #: ../fish/guestfish-actions.pod:507
24937 " blockdev-rereadpt device\n"
24943 #: ../fish/guestfish-actions.pod:513
24944 msgid "blockdev-setbsz"
24949 #: ../fish/guestfish-actions.pod:515
24952 " blockdev-setbsz device blocksize\n"
24958 #: ../fish/guestfish-actions.pod:524
24959 msgid "blockdev-setro"
24964 #: ../fish/guestfish-actions.pod:526
24967 " blockdev-setro device\n"
24973 #: ../fish/guestfish-actions.pod:532
24974 msgid "blockdev-setrw"
24979 #: ../fish/guestfish-actions.pod:534
24982 " blockdev-setrw device\n"
24988 #: ../fish/guestfish-actions.pod:540
24989 msgid "case-sensitive-path"
24994 #: ../fish/guestfish-actions.pod:542
24997 " case-sensitive-path path\n"
25003 #: ../fish/guestfish-actions.pod:566
25005 "Thus L</case-sensitive-path> (\"/Windows/System32\") might return C<\"/"
25006 "WINDOWS/system32\"> (the exact return value would depend on details of how "
25007 "the directories were originally created under Windows)."
25012 #: ../fish/guestfish-actions.pod:574
25013 msgid "See also L</realpath>."
25018 #: ../fish/guestfish-actions.pod:576
25024 #: ../fish/guestfish-actions.pod:578
25033 #: ../fish/guestfish-actions.pod:582
25035 "Note that this function cannot correctly handle binary files (specifically, "
25036 "files containing C<\\0> character which is treated as end of string). For "
25037 "those you need to use the L</read-file> or L</download> functions which have "
25038 "a more complex interface."
25043 #: ../fish/guestfish-actions.pod:590
25049 #: ../fish/guestfish-actions.pod:592
25052 " checksum csumtype path\n"
25058 #: ../fish/guestfish-actions.pod:635
25059 msgid "To get the checksum for a device, use L</checksum-device>."
25064 #: ../fish/guestfish-actions.pod:637
25065 msgid "To get the checksums for many files, use L</checksums-out>."
25070 #: ../fish/guestfish-actions.pod:639
25071 msgid "checksum-device"
25076 #: ../fish/guestfish-actions.pod:641
25079 " checksum-device csumtype device\n"
25085 #: ../fish/guestfish-actions.pod:643
25087 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
25088 "device named C<device>. For the types of checksums supported see the L</"
25089 "checksum> command."
25094 #: ../fish/guestfish-actions.pod:647
25095 msgid "checksums-out"
25100 #: ../fish/guestfish-actions.pod:649
25103 " checksums-out csumtype directory (sumsfile|-)\n"
25109 #: ../fish/guestfish-actions.pod:665
25115 #: ../fish/guestfish-actions.pod:667
25118 " chmod mode path\n"
25124 #: ../fish/guestfish-actions.pod:678
25130 #: ../fish/guestfish-actions.pod:680
25133 " chown owner group path\n"
25139 #: ../fish/guestfish-actions.pod:688
25145 #: ../fish/guestfish-actions.pod:690
25148 " command 'arguments ...'\n"
25154 #: ../fish/guestfish-actions.pod:697
25156 "The single parameter is an argv-style list of arguments. The first element "
25157 "is the name of the program to run. Subsequent elements are parameters. The "
25158 "list must be non-empty (ie. must contain a program name). Note that the "
25159 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
25164 #: ../fish/guestfish-actions.pod:725
25165 msgid "command-lines"
25170 #: ../fish/guestfish-actions.pod:727
25173 " command-lines 'arguments ...'\n"
25179 #: ../fish/guestfish-actions.pod:729
25181 "This is the same as L</command>, but splits the result into a list of lines."
25186 #: ../fish/guestfish-actions.pod:732
25187 msgid "See also: L</sh-lines>"
25192 #: ../fish/guestfish-actions.pod:737
25198 #: ../fish/guestfish-actions.pod:739
25201 " config qemuparam qemuvalue\n"
25207 #: ../fish/guestfish-actions.pod:750
25213 #: ../fish/guestfish-actions.pod:752
25216 " copy-size src dest size\n"
25222 #: ../fish/guestfish-actions.pod:760
25228 #: ../fish/guestfish-actions.pod:762
25237 #: ../fish/guestfish-actions.pod:767
25243 #: ../fish/guestfish-actions.pod:769
25252 #: ../fish/guestfish-actions.pod:774
25258 #: ../fish/guestfish-actions.pod:776
25267 #: ../fish/guestfish-actions.pod:783
25269 "If the destination is a device, it must be as large or larger than the "
25270 "source file or device, otherwise the copy will fail. This command cannot do "
25271 "partial copies (see L</copy-size>)."
25276 #: ../fish/guestfish-actions.pod:787
25282 #: ../fish/guestfish-actions.pod:789
25291 #: ../fish/guestfish-actions.pod:793 ../fish/guestfish-actions.pod:804
25293 "This command is mostly useful for interactive sessions. It is I<not> "
25294 "intended that you try to parse the output string. Use L</statvfs> from "
25300 #: ../fish/guestfish-actions.pod:797
25306 #: ../fish/guestfish-actions.pod:799
25315 #: ../fish/guestfish-actions.pod:808
25321 #: ../fish/guestfish-actions.pod:810
25330 #: ../fish/guestfish-actions.pod:816
25332 "Another way to get the same information is to enable verbose messages with "
25333 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
25334 "before running the program."
25339 #: ../fish/guestfish-actions.pod:821
25345 #: ../fish/guestfish-actions.pod:823
25348 " download remotefilename (filename|-)\n"
25354 #: ../fish/guestfish-actions.pod:830
25355 msgid "See also L</upload>, L</cat>."
25360 #: ../fish/guestfish-actions.pod:834
25361 msgid "download-offset"
25366 #: ../fish/guestfish-actions.pod:836
25369 " download-offset remotefilename (filename|-) offset size\n"
25375 #: ../fish/guestfish-actions.pod:844
25377 "Note that there is no limit on the amount of data that can be downloaded "
25378 "with this call, unlike with L</pread>, and this call always reads the full "
25379 "amount unless an error occurs."
25384 #: ../fish/guestfish-actions.pod:849
25385 msgid "See also L</download>, L</pread>."
25390 #: ../fish/guestfish-actions.pod:853
25391 msgid "drop-caches"
25396 #: ../fish/guestfish-actions.pod:855
25399 " drop-caches whattodrop\n"
25405 #: ../fish/guestfish-actions.pod:867
25411 #: ../fish/guestfish-actions.pod:869
25420 #: ../fish/guestfish-actions.pod:881
25426 #: ../fish/guestfish-actions.pod:883
25429 " e2fsck-f device\n"
25435 #: ../fish/guestfish-actions.pod:889
25437 "This command is only needed because of L</resize2fs> (q.v.). Normally you "
25438 "should use L</fsck>."
25443 #: ../fish/guestfish-actions.pod:892
25444 msgid "echo-daemon"
25449 #: ../fish/guestfish-actions.pod:894
25452 " echo-daemon 'words ...'\n"
25458 #: ../fish/guestfish-actions.pod:901
25459 msgid "See also L</ping-daemon>."
25464 #: ../fish/guestfish-actions.pod:903
25470 #: ../fish/guestfish-actions.pod:905
25473 " egrep regex path\n"
25479 #: ../fish/guestfish-actions.pod:913
25485 #: ../fish/guestfish-actions.pod:915
25488 " egrepi regex path\n"
25494 #: ../fish/guestfish-actions.pod:923
25500 #: ../fish/guestfish-actions.pod:925
25503 " equal file1 file2\n"
25509 #: ../fish/guestfish-actions.pod:932
25515 #: ../fish/guestfish-actions.pod:934
25524 #: ../fish/guestfish-actions.pod:939
25525 msgid "See also L</is-file>, L</is-dir>, L</stat>."
25530 #: ../fish/guestfish-actions.pod:941
25536 #: ../fish/guestfish-actions.pod:943
25539 " fallocate path len\n"
25545 #: ../fish/guestfish-actions.pod:960
25546 msgid "fallocate64"
25551 #: ../fish/guestfish-actions.pod:962
25554 " fallocate64 path len\n"
25560 #: ../fish/guestfish-actions.pod:968
25562 "Note that this call allocates disk blocks for the file. To create a sparse "
25563 "file use L</truncate-size> instead."
25568 #: ../fish/guestfish-actions.pod:971
25570 "The deprecated call L</fallocate> does the same, but owing to an oversight "
25571 "it only allowed 30 bit lengths to be specified, effectively limiting the "
25572 "maximum size of files created through that call to 1GB."
25577 #: ../fish/guestfish-actions.pod:980
25583 #: ../fish/guestfish-actions.pod:982
25586 " fgrep pattern path\n"
25592 #: ../fish/guestfish-actions.pod:990
25598 #: ../fish/guestfish-actions.pod:992
25601 " fgrepi pattern path\n"
25607 #: ../fish/guestfish-actions.pod:1000
25613 #: ../fish/guestfish-actions.pod:1002
25622 #: ../fish/guestfish-actions.pod:1014
25624 "This command can also be used on C</dev/> devices (and partitions, LV "
25625 "names). You can for example use this to determine if a device contains a "
25626 "filesystem, although it's usually better to use L</vfs-type>."
25631 #: ../fish/guestfish-actions.pod:1024
25632 msgid "file-architecture"
25637 #: ../fish/guestfish-actions.pod:1026
25640 " file-architecture filename\n"
25646 #: ../fish/guestfish-actions.pod:1129
25652 #: ../fish/guestfish-actions.pod:1131
25661 #: ../fish/guestfish-actions.pod:1135
25663 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
25664 "file> etc. To get the size of block devices, use L</blockdev-getsize64>."
25669 #: ../fish/guestfish-actions.pod:1139
25675 #: ../fish/guestfish-actions.pod:1141
25678 " fill c len path\n"
25684 #: ../fish/guestfish-actions.pod:1147
25686 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
25687 "L</truncate-size>. To create a file with a pattern of repeating bytes use "
25688 "L</fill-pattern>."
25693 #: ../fish/guestfish-actions.pod:1152
25694 msgid "fill-pattern"
25699 #: ../fish/guestfish-actions.pod:1154
25702 " fill-pattern pattern len path\n"
25708 #: ../fish/guestfish-actions.pod:1156
25710 "This function is like L</fill> except that it creates a new file of length "
25711 "C<len> containing the repeating pattern of bytes in C<pattern>. The pattern "
25712 "is truncated if necessary to ensure the length of the file is exactly C<len> "
25718 #: ../fish/guestfish-actions.pod:1161
25724 #: ../fish/guestfish-actions.pod:1163
25727 " find directory\n"
25733 #: ../fish/guestfish-actions.pod:1177
25734 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
25739 #: ../fish/guestfish-actions.pod:1190
25740 msgid "See also L</find0>."
25745 #: ../fish/guestfish-actions.pod:1195
25751 #: ../fish/guestfish-actions.pod:1197
25754 " find0 directory (files|-)\n"
25760 #: ../fish/guestfish-actions.pod:1203
25762 "This command works the same way as L</find> with the following exceptions:"
25767 #: ../fish/guestfish-actions.pod:1230
25768 msgid "findfs-label"
25773 #: ../fish/guestfish-actions.pod:1232
25776 " findfs-label label\n"
25782 #: ../fish/guestfish-actions.pod:1238
25783 msgid "To find the label of a filesystem, use L</vfs-label>."
25788 #: ../fish/guestfish-actions.pod:1240
25789 msgid "findfs-uuid"
25794 #: ../fish/guestfish-actions.pod:1242
25797 " findfs-uuid uuid\n"
25803 #: ../fish/guestfish-actions.pod:1248
25804 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
25809 #: ../fish/guestfish-actions.pod:1250
25815 #: ../fish/guestfish-actions.pod:1252
25818 " fsck fstype device\n"
25824 #: ../fish/guestfish-actions.pod:1282
25830 #: ../fish/guestfish-actions.pod:1284
25838 #: ../fish/guestfish-actions.pod:1291
25839 msgid "get-attach-method"
25843 #: ../fish/guestfish-actions.pod:1293
25846 " get-attach-method\n"
25851 #: ../fish/guestfish-actions.pod:1295
25852 msgid "Return the current attach method. See L</set-attach-method>."
25857 #: ../fish/guestfish-actions.pod:1297
25858 msgid "get-autosync"
25863 #: ../fish/guestfish-actions.pod:1299
25872 #: ../fish/guestfish-actions.pod:1303
25878 #: ../fish/guestfish-actions.pod:1305
25887 #: ../fish/guestfish-actions.pod:1309
25888 msgid "get-e2label"
25893 #: ../fish/guestfish-actions.pod:1311
25896 " get-e2label device\n"
25902 #: ../fish/guestfish-actions.pod:1323
25908 #: ../fish/guestfish-actions.pod:1325
25911 " get-e2uuid device\n"
25917 #: ../fish/guestfish-actions.pod:1337
25918 msgid "get-memsize"
25923 #: ../fish/guestfish-actions.pod:1339
25932 #: ../fish/guestfish-actions.pod:1344
25934 "If L</set-memsize> was not called on this handle, and if "
25935 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
25936 "value for memsize."
25941 #: ../fish/guestfish-actions.pod:1351
25942 msgid "get-network"
25947 #: ../fish/guestfish-actions.pod:1353
25956 #: ../fish/guestfish-actions.pod:1357
25962 #: ../fish/guestfish-actions.pod:1359
25971 #: ../fish/guestfish-actions.pod:1366
25977 #: ../fish/guestfish-actions.pod:1368
25983 #: ../fish/guestfish-actions.pod:1370
25992 #: ../fish/guestfish-actions.pod:1377
25998 #: ../fish/guestfish-actions.pod:1379
26007 #: ../fish/guestfish-actions.pod:1386
26008 msgid "get-recovery-proc"
26013 #: ../fish/guestfish-actions.pod:1388
26016 " get-recovery-proc\n"
26022 #: ../fish/guestfish-actions.pod:1392
26023 msgid "get-selinux"
26028 #: ../fish/guestfish-actions.pod:1394
26037 #: ../fish/guestfish-actions.pod:1396
26039 "This returns the current setting of the selinux flag which is passed to the "
26040 "appliance at boot time. See L</set-selinux>."
26045 #: ../fish/guestfish-actions.pod:1402
26051 #: ../fish/guestfish-actions.pod:1404
26060 #: ../fish/guestfish-actions.pod:1411
26066 #: ../fish/guestfish-actions.pod:1413
26075 #: ../fish/guestfish-actions.pod:1417
26081 #: ../fish/guestfish-actions.pod:1419
26090 #: ../fish/guestfish-actions.pod:1421
26092 "Return the current umask. By default the umask is C<022> unless it has been "
26093 "set by calling L</umask>."
26098 #: ../fish/guestfish-actions.pod:1424
26099 msgid "get-verbose"
26104 #: ../fish/guestfish-actions.pod:1426
26113 #: ../fish/guestfish-actions.pod:1430
26119 #: ../fish/guestfish-actions.pod:1432
26128 #: ../fish/guestfish-actions.pod:1436
26129 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
26134 #: ../fish/guestfish-actions.pod:1439
26140 #: ../fish/guestfish-actions.pod:1441
26143 " getxattr path name\n"
26149 #: ../fish/guestfish-actions.pod:1443
26151 "Get a single extended attribute from file C<path> named C<name>. This call "
26152 "follows symlinks. If you want to lookup an extended attribute for the "
26153 "symlink itself, use L</lgetxattr>."
26158 #: ../fish/guestfish-actions.pod:1447 ../fish/guestfish-actions.pod:2445
26160 "Normally it is better to get all extended attributes from a file in one go "
26161 "by calling L</getxattrs>. However some Linux filesystem implementations are "
26162 "buggy and do not provide a way to list out attributes. For these "
26163 "filesystems (notably ntfs-3g) you have to know the names of the extended "
26164 "attributes you want in advance and call this function."
26169 #: ../fish/guestfish-actions.pod:1457
26170 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
26175 #: ../fish/guestfish-actions.pod:1459
26181 #: ../fish/guestfish-actions.pod:1461
26184 " getxattrs path\n"
26190 #: ../fish/guestfish-actions.pod:1469
26191 msgid "See also: L</lgetxattrs>, L<attr(5)>."
26196 #: ../fish/guestfish-actions.pod:1471
26197 msgid "glob-expand"
26202 #: ../fish/guestfish-actions.pod:1473
26205 " glob-expand pattern\n"
26211 #: ../fish/guestfish-actions.pod:1486
26217 #: ../fish/guestfish-actions.pod:1488
26220 " grep regex path\n"
26226 #: ../fish/guestfish-actions.pod:1496
26232 #: ../fish/guestfish-actions.pod:1498
26235 " grepi regex path\n"
26241 #: ../fish/guestfish-actions.pod:1506
26242 msgid "grub-install"
26247 #: ../fish/guestfish-actions.pod:1508
26250 " grub-install root device\n"
26256 #: ../fish/guestfish-actions.pod:1524
26262 #: ../fish/guestfish-actions.pod:1526
26271 #: ../fish/guestfish-actions.pod:1534
26277 #: ../fish/guestfish-actions.pod:1536
26280 " head-n nrlines path\n"
26286 #: ../fish/guestfish-actions.pod:1549
26292 #: ../fish/guestfish-actions.pod:1551
26301 #: ../fish/guestfish-actions.pod:1559
26307 #: ../fish/guestfish-actions.pod:1561
26310 " initrd-cat initrdpath filename\n"
26316 #: ../fish/guestfish-actions.pod:1573
26317 msgid "See also L</initrd-list>."
26322 #: ../fish/guestfish-actions.pod:1578
26323 msgid "initrd-list"
26328 #: ../fish/guestfish-actions.pod:1580
26331 " initrd-list path\n"
26337 #: ../fish/guestfish-actions.pod:1592
26338 msgid "inotify-add-watch"
26343 #: ../fish/guestfish-actions.pod:1594
26346 " inotify-add-watch path mask\n"
26352 #: ../fish/guestfish-actions.pod:1606
26353 msgid "inotify-close"
26358 #: ../fish/guestfish-actions.pod:1608
26367 #: ../fish/guestfish-actions.pod:1614
26368 msgid "inotify-files"
26373 #: ../fish/guestfish-actions.pod:1616
26382 #: ../fish/guestfish-actions.pod:1618
26384 "This function is a helpful wrapper around L</inotify-read> which just "
26385 "returns a list of pathnames of objects that were touched. The returned "
26386 "pathnames are sorted and deduplicated."
26391 #: ../fish/guestfish-actions.pod:1622
26392 msgid "inotify-init"
26397 #: ../fish/guestfish-actions.pod:1624
26400 " inotify-init maxevents\n"
26406 #: ../fish/guestfish-actions.pod:1630
26408 "C<maxevents> is the maximum number of events which will be queued up between "
26409 "calls to L</inotify-read> or L</inotify-files>. If this is passed as C<0>, "
26410 "then the kernel (or previously set) default is used. For Linux 2.6.29 the "
26411 "default was 16384 events. Beyond this limit, the kernel throws away events, "
26412 "but records the fact that it threw them away by setting a flag "
26413 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
26418 #: ../fish/guestfish-actions.pod:1640
26420 "Before any events are generated, you have to add some watches to the "
26421 "internal watch list. See: L</inotify-add-watch>, L</inotify-rm-watch> and "
26422 "L</inotify-watch-all>."
26427 #: ../fish/guestfish-actions.pod:1646
26429 "Queued up events should be read periodically by calling L</inotify-read> (or "
26430 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>). "
26431 "If you don't read the events out often enough then you risk the internal "
26432 "queue overflowing."
26437 #: ../fish/guestfish-actions.pod:1653
26439 "The handle should be closed after use by calling L</inotify-close>. This "
26440 "also removes any watches automatically."
26445 #: ../fish/guestfish-actions.pod:1662
26446 msgid "inotify-read"
26451 #: ../fish/guestfish-actions.pod:1664
26460 #: ../fish/guestfish-actions.pod:1677
26461 msgid "inotify-rm-watch"
26466 #: ../fish/guestfish-actions.pod:1679
26469 " inotify-rm-watch wd\n"
26475 #: ../fish/guestfish-actions.pod:1681
26476 msgid "Remove a previously defined inotify watch. See L</inotify-add-watch>."
26481 #: ../fish/guestfish-actions.pod:1684
26482 msgid "inspect-get-arch"
26487 #: ../fish/guestfish-actions.pod:1686
26490 " inspect-get-arch root\n"
26496 #: ../fish/guestfish-actions.pod:1688 ../fish/guestfish-actions.pod:1704
26497 #: ../fish/guestfish-actions.pod:1782 ../fish/guestfish-actions.pod:1818
26498 #: ../fish/guestfish-actions.pod:1836 ../fish/guestfish-actions.pod:1870
26499 #: ../fish/guestfish-actions.pod:1885 ../fish/guestfish-actions.pod:1906
26500 #: ../fish/guestfish-actions.pod:1921 ../fish/guestfish-actions.pod:1954
26501 #: ../fish/guestfish-actions.pod:1976 ../fish/guestfish-actions.pod:2000
26502 #: ../fish/guestfish-actions.pod:2017 ../fish/guestfish-actions.pod:2060
26503 #: ../fish/guestfish-actions.pod:2095 ../fish/guestfish-actions.pod:2111
26504 #: ../fish/guestfish-actions.pod:2127 ../fish/guestfish-actions.pod:2140
26505 #: ../fish/guestfish-actions.pod:2153 ../fish/guestfish-actions.pod:2168
26507 "This function should only be called with a root device string as returned by "
26513 #: ../fish/guestfish-actions.pod:1691
26515 "This returns the architecture of the inspected operating system. The "
26516 "possible return values are listed under L</file-architecture>."
26521 #: ../fish/guestfish-actions.pod:1700
26522 msgid "inspect-get-distro"
26527 #: ../fish/guestfish-actions.pod:1702
26530 " inspect-get-distro root\n"
26535 #: ../fish/guestfish-actions.pod:1778
26536 msgid "inspect-get-drive-mappings"
26540 #: ../fish/guestfish-actions.pod:1780
26543 " inspect-get-drive-mappings root\n"
26548 #: ../fish/guestfish-actions.pod:1810
26550 "Please read L<guestfs(3)/INSPECTION> for more details. See also L</inspect-"
26551 "get-mountpoints>, L</inspect-get-filesystems>."
26556 #: ../fish/guestfish-actions.pod:1814
26557 msgid "inspect-get-filesystems"
26562 #: ../fish/guestfish-actions.pod:1816
26565 " inspect-get-filesystems root\n"
26571 #: ../fish/guestfish-actions.pod:1829
26573 "Please read L<guestfs(3)/INSPECTION> for more details. See also L</inspect-"
26574 "get-mountpoints>."
26578 #: ../fish/guestfish-actions.pod:1832
26579 msgid "inspect-get-format"
26583 #: ../fish/guestfish-actions.pod:1834
26586 " inspect-get-format root\n"
26592 #: ../fish/guestfish-actions.pod:1866
26593 msgid "inspect-get-hostname"
26598 #: ../fish/guestfish-actions.pod:1868
26601 " inspect-get-hostname root\n"
26607 #: ../fish/guestfish-actions.pod:1881
26608 msgid "inspect-get-major-version"
26613 #: ../fish/guestfish-actions.pod:1883
26616 " inspect-get-major-version root\n"
26622 #: ../fish/guestfish-actions.pod:1902
26623 msgid "inspect-get-minor-version"
26628 #: ../fish/guestfish-actions.pod:1904
26631 " inspect-get-minor-version root\n"
26637 #: ../fish/guestfish-actions.pod:1914
26639 "Please read L<guestfs(3)/INSPECTION> for more details. See also L</inspect-"
26640 "get-major-version>."
26645 #: ../fish/guestfish-actions.pod:1917
26646 msgid "inspect-get-mountpoints"
26651 #: ../fish/guestfish-actions.pod:1919
26654 " inspect-get-mountpoints root\n"
26659 #: ../fish/guestfish-actions.pod:1941
26661 "For operating systems like Windows which still use drive letters, this call "
26662 "will only return an entry for the first drive \"mounted on\" C</>. For "
26663 "information about the mapping of drive letters to partitions, see L</inspect-"
26664 "get-drive-mappings>."
26669 #: ../fish/guestfish-actions.pod:1947
26671 "Please read L<guestfs(3)/INSPECTION> for more details. See also L</inspect-"
26672 "get-filesystems>."
26677 #: ../fish/guestfish-actions.pod:1950
26678 msgid "inspect-get-package-format"
26683 #: ../fish/guestfish-actions.pod:1952
26686 " inspect-get-package-format root\n"
26692 #: ../fish/guestfish-actions.pod:1957
26694 "This function and L</inspect-get-package-management> return the package "
26695 "format and package management tool used by the inspected operating system. "
26696 "For example for Fedora these functions would return C<rpm> (package format) "
26697 "and C<yum> (package management)."
26702 #: ../fish/guestfish-actions.pod:1972
26703 msgid "inspect-get-package-management"
26708 #: ../fish/guestfish-actions.pod:1974
26711 " inspect-get-package-management root\n"
26717 #: ../fish/guestfish-actions.pod:1979
26719 "L</inspect-get-package-format> and this function return the package format "
26720 "and package management tool used by the inspected operating system. For "
26721 "example for Fedora these functions would return C<rpm> (package format) and "
26722 "C<yum> (package management)."
26727 #: ../fish/guestfish-actions.pod:1996
26728 msgid "inspect-get-product-name"
26733 #: ../fish/guestfish-actions.pod:1998
26736 " inspect-get-product-name root\n"
26741 #: ../fish/guestfish-actions.pod:2013
26742 msgid "inspect-get-product-variant"
26746 #: ../fish/guestfish-actions.pod:2015
26749 " inspect-get-product-variant root\n"
26754 #: ../fish/guestfish-actions.pod:2039
26756 "Please read L<guestfs(3)/INSPECTION> for more details. See also L</inspect-"
26757 "get-product-name>, L</inspect-get-major-version>."
26762 #: ../fish/guestfish-actions.pod:2043
26763 msgid "inspect-get-roots"
26768 #: ../fish/guestfish-actions.pod:2045
26771 " inspect-get-roots\n"
26777 #: ../fish/guestfish-actions.pod:2047
26779 "This function is a convenient way to get the list of root devices, as "
26780 "returned from a previous call to L</inspect-os>, but without redoing the "
26781 "whole inspection process."
26786 #: ../fish/guestfish-actions.pod:2051
26788 "This returns an empty list if either no root devices were found or the "
26789 "caller has not called L</inspect-os>."
26794 #: ../fish/guestfish-actions.pod:2056
26795 msgid "inspect-get-type"
26800 #: ../fish/guestfish-actions.pod:2058
26803 " inspect-get-type root\n"
26808 #: ../fish/guestfish-actions.pod:2091
26809 msgid "inspect-get-windows-current-control-set"
26813 #: ../fish/guestfish-actions.pod:2093
26816 " inspect-get-windows-current-control-set root\n"
26822 #: ../fish/guestfish-actions.pod:2107
26823 msgid "inspect-get-windows-systemroot"
26828 #: ../fish/guestfish-actions.pod:2109
26831 " inspect-get-windows-systemroot root\n"
26836 #: ../fish/guestfish-actions.pod:2123
26837 msgid "inspect-is-live"
26841 #: ../fish/guestfish-actions.pod:2125
26844 " inspect-is-live root\n"
26849 #: ../fish/guestfish-actions.pod:2130
26851 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
26852 "then this returns true if a live image was detected on the disk."
26856 #: ../fish/guestfish-actions.pod:2136
26857 msgid "inspect-is-multipart"
26861 #: ../fish/guestfish-actions.pod:2138
26864 " inspect-is-multipart root\n"
26869 #: ../fish/guestfish-actions.pod:2143
26871 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
26872 "then this returns true if the disk is part of a set."
26876 #: ../fish/guestfish-actions.pod:2149
26877 msgid "inspect-is-netinst"
26881 #: ../fish/guestfish-actions.pod:2151
26884 " inspect-is-netinst root\n"
26889 #: ../fish/guestfish-actions.pod:2156
26891 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
26892 "then this returns true if the disk is a network installer, ie. not a self-"
26893 "contained install CD but one which is likely to require network access to "
26894 "complete the install."
26899 #: ../fish/guestfish-actions.pod:2164
26900 msgid "inspect-list-applications"
26905 #: ../fish/guestfish-actions.pod:2166
26908 " inspect-list-applications root\n"
26914 #: ../fish/guestfish-actions.pod:2173
26916 "I<Note:> This call works differently from other parts of the inspection "
26917 "API. You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
26918 "then mount up the disks, before calling this. Listing applications is a "
26919 "significantly more difficult operation which requires access to the full "
26920 "filesystem. Also note that unlike the other L</inspect-get-*> calls which "
26921 "are just returning data cached in the libguestfs handle, this call actually "
26922 "reads parts of the mounted filesystems during the call."
26927 #: ../fish/guestfish-actions.pod:2263
26933 #: ../fish/guestfish-actions.pod:2265
26942 #: ../fish/guestfish-actions.pod:2280
26944 "You can pass the root string(s) returned to other L</inspect-get-*> "
26945 "functions in order to query further information about each operating system, "
26946 "such as the name and version."
26951 #: ../fish/guestfish-actions.pod:2285
26953 "This function uses other libguestfs features such as L</mount-ro> and L</"
26954 "umount-all> in order to mount and unmount filesystems and look at the "
26955 "contents. This should be called with no disks currently mounted. The "
26956 "function may also use Augeas, so any existing Augeas handle will be closed."
26961 #: ../fish/guestfish-actions.pod:2297 ../fish/guestfish-actions.pod:2473
26962 #: ../fish/guestfish-actions.pod:2519
26963 msgid "See also L</list-filesystems>."
26968 #: ../fish/guestfish-actions.pod:2299
26969 msgid "is-blockdev"
26974 #: ../fish/guestfish-actions.pod:2301
26977 " is-blockdev path\n"
26983 #: ../fish/guestfish-actions.pod:2306 ../fish/guestfish-actions.pod:2324
26984 #: ../fish/guestfish-actions.pod:2343 ../fish/guestfish-actions.pod:2352
26985 #: ../fish/guestfish-actions.pod:2362 ../fish/guestfish-actions.pod:2396
26986 #: ../fish/guestfish-actions.pod:2405
26987 msgid "See also L</stat>."
26992 #: ../fish/guestfish-actions.pod:2308
26998 #: ../fish/guestfish-actions.pod:2310
27007 #: ../fish/guestfish-actions.pod:2317
27013 #: ../fish/guestfish-actions.pod:2319
27016 " is-chardev path\n"
27022 #: ../fish/guestfish-actions.pod:2326
27028 #: ../fish/guestfish-actions.pod:2328
27037 #: ../fish/guestfish-actions.pod:2335
27043 #: ../fish/guestfish-actions.pod:2337
27052 #: ../fish/guestfish-actions.pod:2345
27058 #: ../fish/guestfish-actions.pod:2347
27067 #: ../fish/guestfish-actions.pod:2354
27073 #: ../fish/guestfish-actions.pod:2356
27082 #: ../fish/guestfish-actions.pod:2364
27083 msgid "is-launching"
27088 #: ../fish/guestfish-actions.pod:2366
27097 #: ../fish/guestfish-actions.pod:2373
27103 #: ../fish/guestfish-actions.pod:2375
27112 #: ../fish/guestfish-actions.pod:2380
27118 #: ../fish/guestfish-actions.pod:2382
27127 #: ../fish/guestfish-actions.pod:2389
27133 #: ../fish/guestfish-actions.pod:2391
27136 " is-socket path\n"
27142 #: ../fish/guestfish-actions.pod:2398
27148 #: ../fish/guestfish-actions.pod:2400
27151 " is-symlink path\n"
27157 #: ../fish/guestfish-actions.pod:2407
27158 msgid "kill-subprocess"
27163 #: ../fish/guestfish-actions.pod:2409
27166 " kill-subprocess\n"
27172 #: ../fish/guestfish-actions.pod:2413
27178 #: ../fish/guestfish-actions.pod:2415
27184 #: ../fish/guestfish-actions.pod:2417
27193 #: ../fish/guestfish-actions.pod:2425
27199 #: ../fish/guestfish-actions.pod:2427
27202 " lchown owner group path\n"
27208 #: ../fish/guestfish-actions.pod:2429
27210 "Change the file owner to C<owner> and group to C<group>. This is like L</"
27211 "chown> but if C<path> is a symlink then the link itself is changed, not the "
27217 #: ../fish/guestfish-actions.pod:2437
27223 #: ../fish/guestfish-actions.pod:2439
27226 " lgetxattr path name\n"
27232 #: ../fish/guestfish-actions.pod:2455
27233 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
27238 #: ../fish/guestfish-actions.pod:2457
27244 #: ../fish/guestfish-actions.pod:2459
27247 " lgetxattrs path\n"
27253 #: ../fish/guestfish-actions.pod:2461
27255 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
27256 "it returns the extended attributes of the link itself."
27261 #: ../fish/guestfish-actions.pod:2465
27262 msgid "list-devices"
27267 #: ../fish/guestfish-actions.pod:2467
27276 #: ../fish/guestfish-actions.pod:2475
27277 msgid "list-filesystems"
27282 #: ../fish/guestfish-actions.pod:2477
27285 " list-filesystems\n"
27291 #: ../fish/guestfish-actions.pod:2496
27293 "This command runs other libguestfs commands, which might include L</mount> "
27294 "and L</umount>, and therefore you should use this soon after launch and only "
27295 "when nothing is mounted."
27300 #: ../fish/guestfish-actions.pod:2500
27302 "Not all of the filesystems returned will be mountable. In particular, swap "
27303 "partitions are returned in the list. Also this command does not check that "
27304 "each filesystem found is valid and mountable, and some filesystems might be "
27305 "mountable but require special options. Filesystems may not all belong to a "
27306 "single logical operating system (use L</inspect-os> to look for OSes)."
27311 #: ../fish/guestfish-actions.pod:2508
27312 msgid "list-partitions"
27317 #: ../fish/guestfish-actions.pod:2510
27320 " list-partitions\n"
27326 #: ../fish/guestfish-actions.pod:2516
27328 "This does not return logical volumes. For that you will need to call L</"
27334 #: ../fish/guestfish-actions.pod:2521
27340 #: ../fish/guestfish-actions.pod:2523
27349 #: ../fish/guestfish-actions.pod:2531
27355 #: ../fish/guestfish-actions.pod:2533
27358 " ln target linkname\n"
27364 #: ../fish/guestfish-actions.pod:2537
27370 #: ../fish/guestfish-actions.pod:2539
27373 " ln-f target linkname\n"
27379 #: ../fish/guestfish-actions.pod:2544
27385 #: ../fish/guestfish-actions.pod:2546
27388 " ln-s target linkname\n"
27394 #: ../fish/guestfish-actions.pod:2550
27400 #: ../fish/guestfish-actions.pod:2552
27403 " ln-sf target linkname\n"
27409 #: ../fish/guestfish-actions.pod:2557
27410 msgid "lremovexattr"
27415 #: ../fish/guestfish-actions.pod:2559
27418 " lremovexattr xattr path\n"
27424 #: ../fish/guestfish-actions.pod:2561
27426 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
27427 "it removes an extended attribute of the link itself."
27432 #: ../fish/guestfish-actions.pod:2565
27438 #: ../fish/guestfish-actions.pod:2567
27447 #: ../fish/guestfish-actions.pod:2573
27449 "This command is mostly useful for interactive sessions. Programs should "
27450 "probably use L</readdir> instead."
27455 #: ../fish/guestfish-actions.pod:2576
27461 #: ../fish/guestfish-actions.pod:2578
27464 " lsetxattr xattr val vallen path\n"
27470 #: ../fish/guestfish-actions.pod:2580
27472 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
27473 "sets an extended attribute of the link itself."
27478 #: ../fish/guestfish-actions.pod:2584
27484 #: ../fish/guestfish-actions.pod:2586
27493 #: ../fish/guestfish-actions.pod:2590
27495 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
27496 "the link is stat-ed, not the file it refers to."
27501 #: ../fish/guestfish-actions.pod:2596
27507 #: ../fish/guestfish-actions.pod:2598
27510 " lstatlist path 'names ...'\n"
27516 #: ../fish/guestfish-actions.pod:2600
27518 "This call allows you to perform the L</lstat> operation on multiple files, "
27519 "where all files are in the directory C<path>. C<names> is the list of files "
27520 "from this directory."
27525 #: ../fish/guestfish-actions.pod:2609
27527 "This call is intended for programs that want to efficiently list a directory "
27528 "contents without making many round-trips. See also L</lxattrlist> for a "
27529 "similarly efficient call for getting extended attributes. Very long "
27530 "directory listings might cause the protocol message size to be exceeded, "
27531 "causing this call to fail. The caller must split up such requests into "
27532 "smaller groups of names."
27537 #: ../fish/guestfish-actions.pod:2617
27538 msgid "luks-add-key"
27543 #: ../fish/guestfish-actions.pod:2619
27546 " luks-add-key device keyslot\n"
27552 #: ../fish/guestfish-actions.pod:2626
27554 "Note that if C<keyslot> already contains a key, then this command will "
27555 "fail. You have to use L</luks-kill-slot> first to remove that key."
27560 #: ../fish/guestfish-actions.pod:2630 ../fish/guestfish-actions.pod:2652
27561 #: ../fish/guestfish-actions.pod:2665 ../fish/guestfish-actions.pod:2679
27562 #: ../fish/guestfish-actions.pod:2702 ../fish/guestfish-actions.pod:2712
27564 "This command has one or more key or passphrase parameters. Guestfish will "
27565 "prompt for these separately."
27570 #: ../fish/guestfish-actions.pod:2633
27576 #: ../fish/guestfish-actions.pod:2635
27579 " luks-close device\n"
27585 #: ../fish/guestfish-actions.pod:2637
27587 "This closes a LUKS device that was created earlier by L</luks-open> or L</"
27588 "luks-open-ro>. The C<device> parameter must be the name of the LUKS mapping "
27589 "device (ie. C</dev/mapper/mapname>) and I<not> the name of the underlying "
27595 #: ../fish/guestfish-actions.pod:2643
27596 msgid "luks-format"
27601 #: ../fish/guestfish-actions.pod:2645
27604 " luks-format device keyslot\n"
27610 #: ../fish/guestfish-actions.pod:2658
27611 msgid "luks-format-cipher"
27616 #: ../fish/guestfish-actions.pod:2660
27619 " luks-format-cipher device keyslot cipher\n"
27625 #: ../fish/guestfish-actions.pod:2662
27627 "This command is the same as L</luks-format> but it also allows you to set "
27628 "the C<cipher> used."
27633 #: ../fish/guestfish-actions.pod:2671
27634 msgid "luks-kill-slot"
27639 #: ../fish/guestfish-actions.pod:2673
27642 " luks-kill-slot device keyslot\n"
27648 #: ../fish/guestfish-actions.pod:2682
27654 #: ../fish/guestfish-actions.pod:2684
27657 " luks-open device mapname\n"
27663 #: ../fish/guestfish-actions.pod:2698
27665 "If this block device contains LVM volume groups, then calling L</vgscan> "
27666 "followed by L</vg-activate-all> will make them visible."
27671 #: ../fish/guestfish-actions.pod:2705
27672 msgid "luks-open-ro"
27677 #: ../fish/guestfish-actions.pod:2707
27680 " luks-open-ro device mapname\n"
27686 #: ../fish/guestfish-actions.pod:2709
27688 "This is the same as L</luks-open> except that a read-only mapping is created."
27693 #: ../fish/guestfish-actions.pod:2715
27699 #: ../fish/guestfish-actions.pod:2717
27702 " lvcreate logvol volgroup mbytes\n"
27708 #: ../fish/guestfish-actions.pod:2722
27709 msgid "lvm-canonical-lv-name"
27714 #: ../fish/guestfish-actions.pod:2724
27717 " lvm-canonical-lv-name lvname\n"
27723 #: ../fish/guestfish-actions.pod:2733
27724 msgid "See also L</is-lv>."
27729 #: ../fish/guestfish-actions.pod:2735
27730 msgid "lvm-clear-filter"
27735 #: ../fish/guestfish-actions.pod:2737
27738 " lvm-clear-filter\n"
27744 #: ../fish/guestfish-actions.pod:2739
27746 "This undoes the effect of L</lvm-set-filter>. LVM will be able to see every "
27752 #: ../fish/guestfish-actions.pod:2745
27753 msgid "lvm-remove-all"
27758 #: ../fish/guestfish-actions.pod:2747
27761 " lvm-remove-all\n"
27767 #: ../fish/guestfish-actions.pod:2755
27768 msgid "lvm-set-filter"
27773 #: ../fish/guestfish-actions.pod:2757
27776 " lvm-set-filter 'devices ...'\n"
27782 #: ../fish/guestfish-actions.pod:2782
27788 #: ../fish/guestfish-actions.pod:2784
27791 " lvremove device\n"
27797 #: ../fish/guestfish-actions.pod:2792
27803 #: ../fish/guestfish-actions.pod:2794
27806 " lvrename logvol newlogvol\n"
27812 #: ../fish/guestfish-actions.pod:2798
27818 #: ../fish/guestfish-actions.pod:2800
27821 " lvresize device mbytes\n"
27827 #: ../fish/guestfish-actions.pod:2806
27828 msgid "lvresize-free"
27833 #: ../fish/guestfish-actions.pod:2808
27836 " lvresize-free lv percent\n"
27842 #: ../fish/guestfish-actions.pod:2816
27848 #: ../fish/guestfish-actions.pod:2818
27857 #: ../fish/guestfish-actions.pod:2826
27858 msgid "See also L</lvs-full>, L</list-filesystems>."
27863 #: ../fish/guestfish-actions.pod:2828
27869 #: ../fish/guestfish-actions.pod:2830
27878 #: ../fish/guestfish-actions.pod:2835
27884 #: ../fish/guestfish-actions.pod:2837
27893 #: ../fish/guestfish-actions.pod:2841
27899 #: ../fish/guestfish-actions.pod:2843
27902 " lxattrlist path 'names ...'\n"
27908 #: ../fish/guestfish-actions.pod:2859
27910 "This call is intended for programs that want to efficiently list a directory "
27911 "contents without making many round-trips. See also L</lstatlist> for a "
27912 "similarly efficient call for getting standard stats. Very long directory "
27913 "listings might cause the protocol message size to be exceeded, causing this "
27914 "call to fail. The caller must split up such requests into smaller groups of "
27920 #: ../fish/guestfish-actions.pod:2867
27926 #: ../fish/guestfish-actions.pod:2869
27935 #: ../fish/guestfish-actions.pod:2873
27941 #: ../fish/guestfish-actions.pod:2875
27944 " mkdir-mode path mode\n"
27950 #: ../fish/guestfish-actions.pod:2884
27951 msgid "See also L</mkdir>, L</umask>"
27956 #: ../fish/guestfish-actions.pod:2886
27962 #: ../fish/guestfish-actions.pod:2888
27971 #: ../fish/guestfish-actions.pod:2893
27977 #: ../fish/guestfish-actions.pod:2895
27980 " mkdtemp template\n"
27986 #: ../fish/guestfish-actions.pod:2916
27992 #: ../fish/guestfish-actions.pod:2918
27995 " mke2fs-J fstype blocksize device journal\n"
28001 #: ../fish/guestfish-actions.pod:2926
28002 msgid "See also L</mke2journal>."
28007 #: ../fish/guestfish-actions.pod:2928
28013 #: ../fish/guestfish-actions.pod:2930
28016 " mke2fs-JL fstype blocksize device label\n"
28022 #: ../fish/guestfish-actions.pod:2935
28023 msgid "See also L</mke2journal-L>."
28028 #: ../fish/guestfish-actions.pod:2937
28034 #: ../fish/guestfish-actions.pod:2939
28037 " mke2fs-JU fstype blocksize device uuid\n"
28043 #: ../fish/guestfish-actions.pod:2944
28044 msgid "See also L</mke2journal-U>."
28049 #: ../fish/guestfish-actions.pod:2946
28050 msgid "mke2journal"
28055 #: ../fish/guestfish-actions.pod:2948
28058 " mke2journal blocksize device\n"
28064 #: ../fish/guestfish-actions.pod:2955
28065 msgid "mke2journal-L"
28070 #: ../fish/guestfish-actions.pod:2957
28073 " mke2journal-L blocksize label device\n"
28079 #: ../fish/guestfish-actions.pod:2961
28080 msgid "mke2journal-U"
28085 #: ../fish/guestfish-actions.pod:2963
28088 " mke2journal-U blocksize uuid device\n"
28094 #: ../fish/guestfish-actions.pod:2967
28100 #: ../fish/guestfish-actions.pod:2969
28103 " mkfifo mode path\n"
28109 #: ../fish/guestfish-actions.pod:2971
28111 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>. It "
28112 "is just a convenient wrapper around L</mknod>."
28117 #: ../fish/guestfish-actions.pod:2977
28123 #: ../fish/guestfish-actions.pod:2979
28126 " mkfs fstype device\n"
28132 #: ../fish/guestfish-actions.pod:2985
28138 #: ../fish/guestfish-actions.pod:2987
28141 " mkfs-b fstype blocksize device\n"
28147 #: ../fish/guestfish-actions.pod:2989
28149 "This call is similar to L</mkfs>, but it allows you to control the block "
28150 "size of the resulting filesystem. Supported block sizes depend on the "
28151 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
28156 #: ../fish/guestfish-actions.pod:3004
28161 #: ../fish/guestfish-actions.pod:3006
28164 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
28170 #: ../fish/guestfish-actions.pod:3041
28171 msgid "mkmountpoint"
28176 #: ../fish/guestfish-actions.pod:3043
28179 " mkmountpoint exemptpath\n"
28185 #: ../fish/guestfish-actions.pod:3045
28187 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
28188 "to create extra mountpoints before mounting the first filesystem."
28193 #: ../fish/guestfish-actions.pod:3069
28195 "L</mkmountpoint> is not compatible with L</umount-all>. You may get "
28196 "unexpected errors if you try to mix these calls. It is safest to manually "
28197 "unmount filesystems and remove mountpoints after use."
28202 #: ../fish/guestfish-actions.pod:3073
28204 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
28205 "for this to work for manual mountpoints, you must ensure that the innermost "
28206 "mountpoints have the longest pathnames, as in the example code above."
28210 #: ../fish/guestfish-actions.pod:3080
28212 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
28213 "L</umount-all> to be called when the handle is closed which can also trigger "
28219 #: ../fish/guestfish-actions.pod:3084
28225 #: ../fish/guestfish-actions.pod:3086
28228 " mknod mode devmajor devminor path\n"
28234 #: ../fish/guestfish-actions.pod:3096
28236 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
28237 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
28238 "regular file). These constants are available in the standard Linux header "
28239 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
28240 "wrappers around this command which bitwise OR in the appropriate constant "
28246 #: ../fish/guestfish-actions.pod:3106
28252 #: ../fish/guestfish-actions.pod:3108
28255 " mknod-b mode devmajor devminor path\n"
28261 #: ../fish/guestfish-actions.pod:3110
28263 "This call creates a block device node called C<path> with mode C<mode> and "
28264 "device major/minor C<devmajor> and C<devminor>. It is just a convenient "
28265 "wrapper around L</mknod>."
28270 #: ../fish/guestfish-actions.pod:3116
28276 #: ../fish/guestfish-actions.pod:3118
28279 " mknod-c mode devmajor devminor path\n"
28285 #: ../fish/guestfish-actions.pod:3120
28287 "This call creates a char device node called C<path> with mode C<mode> and "
28288 "device major/minor C<devmajor> and C<devminor>. It is just a convenient "
28289 "wrapper around L</mknod>."
28294 #: ../fish/guestfish-actions.pod:3126
28300 #: ../fish/guestfish-actions.pod:3128
28309 #: ../fish/guestfish-actions.pod:3132
28315 #: ../fish/guestfish-actions.pod:3134
28318 " mkswap-L label device\n"
28324 #: ../fish/guestfish-actions.pod:3142
28330 #: ../fish/guestfish-actions.pod:3144
28333 " mkswap-U uuid device\n"
28339 #: ../fish/guestfish-actions.pod:3148
28340 msgid "mkswap-file"
28345 #: ../fish/guestfish-actions.pod:3150
28348 " mkswap-file path\n"
28354 #: ../fish/guestfish-actions.pod:3154
28356 "This command just writes a swap file signature to an existing file. To "
28357 "create the file itself, use something like L</fallocate>."
28362 #: ../fish/guestfish-actions.pod:3157
28368 #: ../fish/guestfish-actions.pod:3159
28371 " modprobe modulename\n"
28377 #: ../fish/guestfish-actions.pod:3166
28383 #: ../fish/guestfish-actions.pod:3168
28386 " mount device mountpoint\n"
28392 #: ../fish/guestfish-actions.pod:3184
28394 "B<Important note:> When you use this call, the filesystem options C<sync> "
28395 "and C<noatime> are set implicitly. This was originally done because we "
28396 "thought it would improve reliability, but it turns out that I<-o sync> has a "
28397 "very large negative performance impact and negligible effect on "
28398 "reliability. Therefore we recommend that you avoid using L</mount> in any "
28399 "code that needs performance, and instead use L</mount-options> (use an empty "
28400 "string for the first parameter if you don't want any options)."
28405 #: ../fish/guestfish-actions.pod:3194
28411 #: ../fish/guestfish-actions.pod:3196
28414 " mount-loop file mountpoint\n"
28420 #: ../fish/guestfish-actions.pod:3202
28421 msgid "mount-options"
28426 #: ../fish/guestfish-actions.pod:3204
28429 " mount-options options device mountpoint\n"
28435 #: ../fish/guestfish-actions.pod:3206
28437 "This is the same as the L</mount> command, but it allows you to set the "
28438 "mount options as for the L<mount(8)> I<-o> flag."
28443 #: ../fish/guestfish-actions.pod:3214
28449 #: ../fish/guestfish-actions.pod:3216
28452 " mount-ro device mountpoint\n"
28458 #: ../fish/guestfish-actions.pod:3218
28460 "This is the same as the L</mount> command, but it mounts the filesystem with "
28461 "the read-only (I<-o ro>) flag."
28466 #: ../fish/guestfish-actions.pod:3221
28472 #: ../fish/guestfish-actions.pod:3223
28475 " mount-vfs options vfstype device mountpoint\n"
28481 #: ../fish/guestfish-actions.pod:3225
28483 "This is the same as the L</mount> command, but it allows you to set both the "
28484 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
28489 #: ../fish/guestfish-actions.pod:3229
28490 msgid "mountpoints"
28495 #: ../fish/guestfish-actions.pod:3231
28504 #: ../fish/guestfish-actions.pod:3233
28506 "This call is similar to L</mounts>. That call returns a list of devices. "
28507 "This one returns a hash table (map) of device name to directory where the "
28508 "device is mounted."
28513 #: ../fish/guestfish-actions.pod:3237
28519 #: ../fish/guestfish-actions.pod:3239
28528 #: ../fish/guestfish-actions.pod:3246
28529 msgid "See also: L</mountpoints>"
28534 #: ../fish/guestfish-actions.pod:3248
28540 #: ../fish/guestfish-actions.pod:3250
28549 #: ../fish/guestfish-actions.pod:3255
28550 msgid "ntfs-3g-probe"
28555 #: ../fish/guestfish-actions.pod:3257
28558 " ntfs-3g-probe true|false device\n"
28564 #: ../fish/guestfish-actions.pod:3271
28570 #: ../fish/guestfish-actions.pod:3273
28573 " ntfsresize device\n"
28579 #: ../fish/guestfish-actions.pod:3279
28580 msgid "ntfsresize-size"
28585 #: ../fish/guestfish-actions.pod:3281
28588 " ntfsresize-size device size\n"
28594 #: ../fish/guestfish-actions.pod:3283
28596 "This command is the same as L</ntfsresize> except that it allows you to "
28597 "specify the new size (in bytes) explicitly."
28602 #: ../fish/guestfish-actions.pod:3286
28608 #: ../fish/guestfish-actions.pod:3288
28611 " part-add device prlogex startsect endsect\n"
28617 #: ../fish/guestfish-actions.pod:3290
28619 "This command adds a partition to C<device>. If there is no partition table "
28620 "on the device, call L</part-init> first."
28625 #: ../fish/guestfish-actions.pod:3302
28627 "Creating a partition which covers the whole disk is not so easy. Use L</"
28628 "part-disk> to do that."
28633 #: ../fish/guestfish-actions.pod:3305
28639 #: ../fish/guestfish-actions.pod:3307
28642 " part-del device partnum\n"
28648 #: ../fish/guestfish-actions.pod:3315
28654 #: ../fish/guestfish-actions.pod:3317
28657 " part-disk device parttype\n"
28663 #: ../fish/guestfish-actions.pod:3319
28665 "This command is simply a combination of L</part-init> followed by L</part-"
28666 "add> to create a single primary partition covering the whole disk."
28671 #: ../fish/guestfish-actions.pod:3323
28673 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
28674 "possible values are described in L</part-init>."
28679 #: ../fish/guestfish-actions.pod:3329
28680 msgid "part-get-bootable"
28685 #: ../fish/guestfish-actions.pod:3331
28688 " part-get-bootable device partnum\n"
28694 #: ../fish/guestfish-actions.pod:3336
28695 msgid "See also L</part-set-bootable>."
28700 #: ../fish/guestfish-actions.pod:3338
28701 msgid "part-get-mbr-id"
28706 #: ../fish/guestfish-actions.pod:3340
28709 " part-get-mbr-id device partnum\n"
28715 #: ../fish/guestfish-actions.pod:3345 ../fish/guestfish-actions.pod:3483
28717 "Note that only MBR (old DOS-style) partitions have type bytes. You will get "
28718 "undefined results for other partition table types (see L</part-get-"
28724 #: ../fish/guestfish-actions.pod:3349
28725 msgid "part-get-parttype"
28730 #: ../fish/guestfish-actions.pod:3351
28733 " part-get-parttype device\n"
28739 #: ../fish/guestfish-actions.pod:3356
28741 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
28742 "table), C<gpt> (a GPT/EFI-style partition table). Other values are "
28743 "possible, although unusual. See L</part-init> for a full list."
28748 #: ../fish/guestfish-actions.pod:3361
28754 #: ../fish/guestfish-actions.pod:3363
28757 " part-init device parttype\n"
28763 #: ../fish/guestfish-actions.pod:3369
28765 "Initially there are no partitions. Following this, you should call L</part-"
28766 "add> for each partition required."
28771 #: ../fish/guestfish-actions.pod:3432
28777 #: ../fish/guestfish-actions.pod:3434
28780 " part-list device\n"
28786 #: ../fish/guestfish-actions.pod:3449
28788 "Start of the partition I<in bytes>. To get sectors you have to divide by "
28789 "the device's sector size, see L</blockdev-getss>."
28794 #: ../fish/guestfish-actions.pod:3462
28795 msgid "part-set-bootable"
28800 #: ../fish/guestfish-actions.pod:3464
28803 " part-set-bootable device partnum true|false\n"
28809 #: ../fish/guestfish-actions.pod:3473
28810 msgid "part-set-mbr-id"
28815 #: ../fish/guestfish-actions.pod:3475
28818 " part-set-mbr-id device partnum idbyte\n"
28824 #: ../fish/guestfish-actions.pod:3487
28825 msgid "part-set-name"
28830 #: ../fish/guestfish-actions.pod:3489
28833 " part-set-name device partnum name\n"
28839 #: ../fish/guestfish-actions.pod:3497
28840 msgid "part-to-dev"
28845 #: ../fish/guestfish-actions.pod:3499
28848 " part-to-dev partition\n"
28854 #: ../fish/guestfish-actions.pod:3505
28856 "The named partition must exist, for example as a string returned from L</"
28857 "list-partitions>."
28862 #: ../fish/guestfish-actions.pod:3508
28863 msgid "ping-daemon"
28868 #: ../fish/guestfish-actions.pod:3510
28877 #: ../fish/guestfish-actions.pod:3517
28883 #: ../fish/guestfish-actions.pod:3519
28886 " pread path count offset\n"
28892 #: ../fish/guestfish-actions.pod:3527
28893 msgid "See also L</pwrite>, L</pread-device>."
28898 #: ../fish/guestfish-actions.pod:3532
28899 msgid "pread-device"
28904 #: ../fish/guestfish-actions.pod:3534
28907 " pread-device device count offset\n"
28913 #: ../fish/guestfish-actions.pod:3542
28914 msgid "See also L</pread>."
28919 #: ../fish/guestfish-actions.pod:3547
28925 #: ../fish/guestfish-actions.pod:3549
28928 " pvcreate device\n"
28934 #: ../fish/guestfish-actions.pod:3555
28940 #: ../fish/guestfish-actions.pod:3557
28943 " pvremove device\n"
28949 #: ../fish/guestfish-actions.pod:3566
28955 #: ../fish/guestfish-actions.pod:3568
28958 " pvresize device\n"
28964 #: ../fish/guestfish-actions.pod:3573
28965 msgid "pvresize-size"
28970 #: ../fish/guestfish-actions.pod:3575
28973 " pvresize-size device size\n"
28979 #: ../fish/guestfish-actions.pod:3577
28981 "This command is the same as L</pvresize> except that it allows you to "
28982 "specify the new size (in bytes) explicitly."
28987 #: ../fish/guestfish-actions.pod:3580
28993 #: ../fish/guestfish-actions.pod:3582
29002 #: ../fish/guestfish-actions.pod:3590
29003 msgid "See also L</pvs-full>."
29008 #: ../fish/guestfish-actions.pod:3592
29014 #: ../fish/guestfish-actions.pod:3594
29023 #: ../fish/guestfish-actions.pod:3599
29029 #: ../fish/guestfish-actions.pod:3601
29038 #: ../fish/guestfish-actions.pod:3605
29044 #: ../fish/guestfish-actions.pod:3607
29047 " pwrite path content offset\n"
29053 #: ../fish/guestfish-actions.pod:3618
29054 msgid "See also L</pread>, L</pwrite-device>."
29059 #: ../fish/guestfish-actions.pod:3623
29060 msgid "pwrite-device"
29065 #: ../fish/guestfish-actions.pod:3625
29068 " pwrite-device device content offset\n"
29074 #: ../fish/guestfish-actions.pod:3635
29075 msgid "See also L</pwrite>."
29080 #: ../fish/guestfish-actions.pod:3640
29086 #: ../fish/guestfish-actions.pod:3642
29089 " read-file path\n"
29095 #: ../fish/guestfish-actions.pod:3647
29097 "Unlike L</cat>, this function can correctly handle files that contain "
29098 "embedded ASCII NUL characters. However unlike L</download>, this function "
29099 "is limited in the total size of file that can be handled."
29104 #: ../fish/guestfish-actions.pod:3655
29110 #: ../fish/guestfish-actions.pod:3657
29113 " read-lines path\n"
29119 #: ../fish/guestfish-actions.pod:3664
29121 "Note that this function cannot correctly handle binary files (specifically, "
29122 "files containing C<\\0> character which is treated as end of line). For "
29123 "those you need to use the L</read-file> function which has a more complex "
29129 #: ../fish/guestfish-actions.pod:3669
29135 #: ../fish/guestfish-actions.pod:3671
29144 #: ../fish/guestfish-actions.pod:3723
29146 "This function is primarily intended for use by programs. To get a simple "
29147 "list of names, use L</ls>. To get a printable directory for human "
29148 "consumption, use L</ll>."
29153 #: ../fish/guestfish-actions.pod:3727
29159 #: ../fish/guestfish-actions.pod:3729
29168 #: ../fish/guestfish-actions.pod:3733
29169 msgid "readlinklist"
29174 #: ../fish/guestfish-actions.pod:3735
29177 " readlinklist path 'names ...'\n"
29183 #: ../fish/guestfish-actions.pod:3759
29189 #: ../fish/guestfish-actions.pod:3761
29198 #: ../fish/guestfish-actions.pod:3766
29199 msgid "removexattr"
29204 #: ../fish/guestfish-actions.pod:3768
29207 " removexattr xattr path\n"
29213 #: ../fish/guestfish-actions.pod:3773
29214 msgid "See also: L</lremovexattr>, L<attr(5)>."
29219 #: ../fish/guestfish-actions.pod:3775
29225 #: ../fish/guestfish-actions.pod:3777
29228 " resize2fs device\n"
29234 #: ../fish/guestfish-actions.pod:3782
29236 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
29237 "before calling this command. For unknown reasons C<resize2fs> sometimes "
29238 "gives an error about this and sometimes not. In any case, it is always safe "
29239 "to call L</e2fsck-f> before calling this function."
29243 #: ../fish/guestfish-actions.pod:3788
29244 msgid "resize2fs-M"
29248 #: ../fish/guestfish-actions.pod:3790
29251 " resize2fs-M device\n"
29256 #: ../fish/guestfish-actions.pod:3792
29258 "This command is the same as L</resize2fs>, but the filesystem is resized to "
29259 "its minimum size. This works like the C<-M> option to the C<resize2fs> "
29264 #: ../fish/guestfish-actions.pod:3796
29266 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
29267 "and read the C<Block size> and C<Block count> values. These two numbers, "
29268 "multiplied together, give the resulting size of the minimal filesystem in "
29274 #: ../fish/guestfish-actions.pod:3801
29275 msgid "resize2fs-size"
29280 #: ../fish/guestfish-actions.pod:3803
29283 " resize2fs-size device size\n"
29289 #: ../fish/guestfish-actions.pod:3805
29291 "This command is the same as L</resize2fs> except that it allows you to "
29292 "specify the new size (in bytes) explicitly."
29297 #: ../fish/guestfish-actions.pod:3808
29303 #: ../fish/guestfish-actions.pod:3810
29312 #: ../fish/guestfish-actions.pod:3814
29318 #: ../fish/guestfish-actions.pod:3816
29327 #: ../fish/guestfish-actions.pod:3822
29333 #: ../fish/guestfish-actions.pod:3824
29342 #: ../fish/guestfish-actions.pod:3828
29343 msgid "rmmountpoint"
29348 #: ../fish/guestfish-actions.pod:3830
29351 " rmmountpoint exemptpath\n"
29357 #: ../fish/guestfish-actions.pod:3832
29359 "This calls removes a mountpoint that was previously created with L</"
29360 "mkmountpoint>. See L</mkmountpoint> for full details."
29365 #: ../fish/guestfish-actions.pod:3836
29366 msgid "scrub-device"
29371 #: ../fish/guestfish-actions.pod:3838
29374 " scrub-device device\n"
29380 #: ../fish/guestfish-actions.pod:3849
29386 #: ../fish/guestfish-actions.pod:3851
29389 " scrub-file file\n"
29395 #: ../fish/guestfish-actions.pod:3861
29396 msgid "scrub-freespace"
29401 #: ../fish/guestfish-actions.pod:3863
29404 " scrub-freespace dir\n"
29410 #: ../fish/guestfish-actions.pod:3865
29412 "This command creates the directory C<dir> and then fills it with files until "
29413 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
29414 "deletes them. The intention is to scrub any free space on the partition "
29415 "containing C<dir>."
29420 #: ../fish/guestfish-actions.pod:3874
29426 #: ../fish/guestfish-actions.pod:3876
29432 #: ../fish/guestfish-actions.pod:3878
29435 " set-append append\n"
29440 #: ../fish/guestfish-actions.pod:3889
29441 msgid "set-attach-method"
29445 #: ../fish/guestfish-actions.pod:3891
29446 msgid "attach-method"
29450 #: ../fish/guestfish-actions.pod:3893
29453 " set-attach-method attachmethod\n"
29459 #: ../fish/guestfish-actions.pod:3915
29460 msgid "set-autosync"
29465 #: ../fish/guestfish-actions.pod:3917
29471 #: ../fish/guestfish-actions.pod:3919
29474 " set-autosync true|false\n"
29480 #: ../fish/guestfish-actions.pod:3929
29486 #: ../fish/guestfish-actions.pod:3931
29492 #: ../fish/guestfish-actions.pod:3933
29495 " set-direct true|false\n"
29501 #: ../fish/guestfish-actions.pod:3939
29503 "One consequence of this is that log messages aren't caught by the library "
29504 "and handled by L</set-log-message-callback>, but go straight to stdout."
29509 #: ../fish/guestfish-actions.pod:3948
29510 msgid "set-e2label"
29515 #: ../fish/guestfish-actions.pod:3950
29518 " set-e2label device label\n"
29524 #: ../fish/guestfish-actions.pod:3956
29526 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
29527 "label on a filesystem."
29532 #: ../fish/guestfish-actions.pod:3959
29538 #: ../fish/guestfish-actions.pod:3961
29541 " set-e2uuid device uuid\n"
29547 #: ../fish/guestfish-actions.pod:3968
29549 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
29550 "UUID of a filesystem."
29555 #: ../fish/guestfish-actions.pod:3971
29556 msgid "set-memsize"
29561 #: ../fish/guestfish-actions.pod:3973
29567 #: ../fish/guestfish-actions.pod:3975
29570 " set-memsize memsize\n"
29576 #: ../fish/guestfish-actions.pod:3977
29578 "This sets the memory size in megabytes allocated to the qemu subprocess. "
29579 "This only has any effect if called before L</launch>."
29584 #: ../fish/guestfish-actions.pod:3988
29585 msgid "set-network"
29590 #: ../fish/guestfish-actions.pod:3990
29596 #: ../fish/guestfish-actions.pod:3992
29599 " set-network true|false\n"
29605 #: ../fish/guestfish-actions.pod:4000
29607 "You must call this before calling L</launch>, otherwise it has no effect."
29612 #: ../fish/guestfish-actions.pod:4003
29618 #: ../fish/guestfish-actions.pod:4005
29624 #: ../fish/guestfish-actions.pod:4007
29627 " set-path searchpath\n"
29633 #: ../fish/guestfish-actions.pod:4016
29639 #: ../fish/guestfish-actions.pod:4018
29645 #: ../fish/guestfish-actions.pod:4020
29654 #: ../fish/guestfish-actions.pod:4040
29655 msgid "set-recovery-proc"
29660 #: ../fish/guestfish-actions.pod:4042
29661 msgid "recovery-proc"
29666 #: ../fish/guestfish-actions.pod:4044
29669 " set-recovery-proc true|false\n"
29675 #: ../fish/guestfish-actions.pod:4046
29677 "If this is called with the parameter C<false> then L</launch> does not "
29678 "create a recovery process. The purpose of the recovery process is to stop "
29679 "runaway qemu processes in the case where the main program aborts abruptly."
29684 #: ../fish/guestfish-actions.pod:4051
29686 "This only has any effect if called before L</launch>, and the default is "
29692 #: ../fish/guestfish-actions.pod:4060
29693 msgid "set-selinux"
29698 #: ../fish/guestfish-actions.pod:4062
29704 #: ../fish/guestfish-actions.pod:4064
29707 " set-selinux true|false\n"
29713 #: ../fish/guestfish-actions.pod:4075
29719 #: ../fish/guestfish-actions.pod:4077
29725 #: ../fish/guestfish-actions.pod:4079
29728 " set-trace true|false\n"
29733 #: ../fish/guestfish-actions.pod:4091
29735 "Trace messages are normally sent to C<stderr>, unless you register a "
29736 "callback to send them somewhere else (see L</set-event-callback>)."
29741 #: ../fish/guestfish-actions.pod:4095
29742 msgid "set-verbose"
29747 #: ../fish/guestfish-actions.pod:4097
29753 #: ../fish/guestfish-actions.pod:4099
29756 " set-verbose true|false\n"
29761 #: ../fish/guestfish-actions.pod:4106
29763 "Verbose messages are normally sent to C<stderr>, unless you register a "
29764 "callback to send them somewhere else (see L</set-event-callback>)."
29769 #: ../fish/guestfish-actions.pod:4110
29775 #: ../fish/guestfish-actions.pod:4112
29778 " setcon context\n"
29784 #: ../fish/guestfish-actions.pod:4119
29790 #: ../fish/guestfish-actions.pod:4121
29793 " setxattr xattr val vallen path\n"
29799 #: ../fish/guestfish-actions.pod:4127
29800 msgid "See also: L</lsetxattr>, L<attr(5)>."
29805 #: ../fish/guestfish-actions.pod:4129
29811 #: ../fish/guestfish-actions.pod:4131
29814 " sfdisk device cyls heads sectors 'lines ...'\n"
29820 #: ../fish/guestfish-actions.pod:4153
29821 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
29826 #: ../fish/guestfish-actions.pod:4159
29832 #: ../fish/guestfish-actions.pod:4161
29835 " sfdiskM device 'lines ...'\n"
29841 #: ../fish/guestfish-actions.pod:4163
29843 "This is a simplified interface to the L</sfdisk> command, where partition "
29844 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
29845 "you don't need to specify the cyls, heads and sectors parameters which were "
29846 "rarely if ever used anyway."
29851 #: ../fish/guestfish-actions.pod:4169
29852 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
29857 #: ../fish/guestfish-actions.pod:4175
29863 #: ../fish/guestfish-actions.pod:4177
29866 " sfdisk-N device partnum cyls heads sectors line\n"
29872 #: ../fish/guestfish-actions.pod:4182
29874 "For other parameters, see L</sfdisk>. You should usually pass C<0> for the "
29875 "cyls/heads/sectors parameters."
29880 #: ../fish/guestfish-actions.pod:4185
29881 msgid "See also: L</part-add>"
29886 #: ../fish/guestfish-actions.pod:4190
29887 msgid "sfdisk-disk-geometry"
29892 #: ../fish/guestfish-actions.pod:4192
29895 " sfdisk-disk-geometry device\n"
29901 #: ../fish/guestfish-actions.pod:4194
29903 "This displays the disk geometry of C<device> read from the partition table. "
29904 "Especially in the case where the underlying block device has been resized, "
29905 "this can be different from the kernel's idea of the geometry (see L</sfdisk-"
29906 "kernel-geometry>)."
29911 #: ../fish/guestfish-actions.pod:4202
29912 msgid "sfdisk-kernel-geometry"
29917 #: ../fish/guestfish-actions.pod:4204
29920 " sfdisk-kernel-geometry device\n"
29926 #: ../fish/guestfish-actions.pod:4211
29932 #: ../fish/guestfish-actions.pod:4213
29935 " sfdisk-l device\n"
29941 #: ../fish/guestfish-actions.pod:4219
29942 msgid "See also: L</part-list>"
29947 #: ../fish/guestfish-actions.pod:4221
29953 #: ../fish/guestfish-actions.pod:4223
29962 #: ../fish/guestfish-actions.pod:4228
29963 msgid "This is like L</command>, but passes the command to:"
29968 #: ../fish/guestfish-actions.pod:4236
29969 msgid "All the provisos about L</command> apply to this call."
29974 #: ../fish/guestfish-actions.pod:4238
29980 #: ../fish/guestfish-actions.pod:4240
29983 " sh-lines command\n"
29989 #: ../fish/guestfish-actions.pod:4242
29990 msgid "This is the same as L</sh>, but splits the result into a list of lines."
29995 #: ../fish/guestfish-actions.pod:4245
29996 msgid "See also: L</command-lines>"
30001 #: ../fish/guestfish-actions.pod:4247
30007 #: ../fish/guestfish-actions.pod:4249
30016 #: ../fish/guestfish-actions.pod:4253
30022 #: ../fish/guestfish-actions.pod:4255
30031 #: ../fish/guestfish-actions.pod:4261
30037 #: ../fish/guestfish-actions.pod:4263
30046 #: ../fish/guestfish-actions.pod:4271
30052 #: ../fish/guestfish-actions.pod:4273
30061 #: ../fish/guestfish-actions.pod:4281
30067 #: ../fish/guestfish-actions.pod:4283
30070 " strings-e encoding path\n"
30076 #: ../fish/guestfish-actions.pod:4285
30078 "This is like the L</strings> command, but allows you to specify the encoding "
30079 "of strings that are looked for in the source file C<path>."
30084 #: ../fish/guestfish-actions.pod:4295
30086 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
30087 "ISO-8859-X (this is what L</strings> uses)."
30092 #: ../fish/guestfish-actions.pod:4327
30093 msgid "swapoff-device"
30098 #: ../fish/guestfish-actions.pod:4329
30101 " swapoff-device device\n"
30107 #: ../fish/guestfish-actions.pod:4331
30109 "This command disables the libguestfs appliance swap device or partition "
30110 "named C<device>. See L</swapon-device>."
30115 #: ../fish/guestfish-actions.pod:4335
30116 msgid "swapoff-file"
30121 #: ../fish/guestfish-actions.pod:4337
30124 " swapoff-file file\n"
30130 #: ../fish/guestfish-actions.pod:4341
30131 msgid "swapoff-label"
30136 #: ../fish/guestfish-actions.pod:4343
30139 " swapoff-label label\n"
30145 #: ../fish/guestfish-actions.pod:4348
30146 msgid "swapoff-uuid"
30151 #: ../fish/guestfish-actions.pod:4350
30154 " swapoff-uuid uuid\n"
30160 #: ../fish/guestfish-actions.pod:4355
30161 msgid "swapon-device"
30166 #: ../fish/guestfish-actions.pod:4357
30169 " swapon-device device\n"
30175 #: ../fish/guestfish-actions.pod:4359
30177 "This command enables the libguestfs appliance to use the swap device or "
30178 "partition named C<device>. The increased memory is made available for all "
30179 "commands, for example those run using L</command> or L</sh>."
30184 #: ../fish/guestfish-actions.pod:4371
30185 msgid "swapon-file"
30190 #: ../fish/guestfish-actions.pod:4373
30193 " swapon-file file\n"
30199 #: ../fish/guestfish-actions.pod:4375
30201 "This command enables swap to a file. See L</swapon-device> for other notes."
30206 #: ../fish/guestfish-actions.pod:4378
30207 msgid "swapon-label"
30212 #: ../fish/guestfish-actions.pod:4380
30215 " swapon-label label\n"
30221 #: ../fish/guestfish-actions.pod:4382
30223 "This command enables swap to a labeled swap partition. See L</swapon-"
30224 "device> for other notes."
30229 #: ../fish/guestfish-actions.pod:4385
30230 msgid "swapon-uuid"
30235 #: ../fish/guestfish-actions.pod:4387
30238 " swapon-uuid uuid\n"
30244 #: ../fish/guestfish-actions.pod:4389
30246 "This command enables swap to a swap partition with the given UUID. See L</"
30247 "swapon-device> for other notes."
30252 #: ../fish/guestfish-actions.pod:4392
30258 #: ../fish/guestfish-actions.pod:4394
30267 #: ../fish/guestfish-actions.pod:4402
30273 #: ../fish/guestfish-actions.pod:4404
30282 #: ../fish/guestfish-actions.pod:4412
30288 #: ../fish/guestfish-actions.pod:4414
30291 " tail-n nrlines path\n"
30297 #: ../fish/guestfish-actions.pod:4427
30303 #: ../fish/guestfish-actions.pod:4429
30306 " tar-in (tarfile|-) directory\n"
30312 #: ../fish/guestfish-actions.pod:4434
30313 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
30318 #: ../fish/guestfish-actions.pod:4439
30324 #: ../fish/guestfish-actions.pod:4441
30327 " tar-out directory (tarfile|-)\n"
30333 #: ../fish/guestfish-actions.pod:4446
30334 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
30339 #: ../fish/guestfish-actions.pod:4451
30345 #: ../fish/guestfish-actions.pod:4453
30348 " tgz-in (tarball|-) directory\n"
30354 #: ../fish/guestfish-actions.pod:4458
30355 msgid "To upload an uncompressed tarball, use L</tar-in>."
30360 #: ../fish/guestfish-actions.pod:4462
30366 #: ../fish/guestfish-actions.pod:4464
30369 " tgz-out directory (tarball|-)\n"
30375 #: ../fish/guestfish-actions.pod:4469
30376 msgid "To download an uncompressed tarball, use L</tar-out>."
30381 #: ../fish/guestfish-actions.pod:4473
30387 #: ../fish/guestfish-actions.pod:4475
30396 #: ../fish/guestfish-actions.pod:4484
30402 #: ../fish/guestfish-actions.pod:4486
30411 #: ../fish/guestfish-actions.pod:4491
30412 msgid "truncate-size"
30417 #: ../fish/guestfish-actions.pod:4493
30420 " truncate-size path size\n"
30426 #: ../fish/guestfish-actions.pod:4498
30428 "If the current file size is less than C<size> then the file is extended to "
30429 "the required size with zero bytes. This creates a sparse file (ie. disk "
30430 "blocks are not allocated for the file until you write to it). To create a "
30431 "non-sparse file of zeroes, use L</fallocate64> instead."
30436 #: ../fish/guestfish-actions.pod:4504
30442 #: ../fish/guestfish-actions.pod:4506
30445 " tune2fs-l device\n"
30451 #: ../fish/guestfish-actions.pod:4516
30457 #: ../fish/guestfish-actions.pod:4518
30460 " txz-in (tarball|-) directory\n"
30466 #: ../fish/guestfish-actions.pod:4525
30472 #: ../fish/guestfish-actions.pod:4527
30475 " txz-out directory (tarball|-)\n"
30481 #: ../fish/guestfish-actions.pod:4534
30487 #: ../fish/guestfish-actions.pod:4536
30496 #: ../fish/guestfish-actions.pod:4550
30497 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
30502 #: ../fish/guestfish-actions.pod:4555
30508 #: ../fish/guestfish-actions.pod:4557
30514 #: ../fish/guestfish-actions.pod:4559
30517 " umount pathordevice\n"
30523 #: ../fish/guestfish-actions.pod:4565
30529 #: ../fish/guestfish-actions.pod:4567
30530 msgid "unmount-all"
30535 #: ../fish/guestfish-actions.pod:4569
30544 #: ../fish/guestfish-actions.pod:4575
30550 #: ../fish/guestfish-actions.pod:4577
30553 " upload (filename|-) remotefilename\n"
30559 #: ../fish/guestfish-actions.pod:4584
30560 msgid "See also L</download>."
30565 #: ../fish/guestfish-actions.pod:4588
30566 msgid "upload-offset"
30571 #: ../fish/guestfish-actions.pod:4590
30574 " upload-offset (filename|-) remotefilename offset\n"
30580 #: ../fish/guestfish-actions.pod:4602
30582 "Note that there is no limit on the amount of data that can be uploaded with "
30583 "this call, unlike with L</pwrite>, and this call always writes the full "
30584 "amount unless an error occurs."
30589 #: ../fish/guestfish-actions.pod:4607
30590 msgid "See also L</upload>, L</pwrite>."
30595 #: ../fish/guestfish-actions.pod:4611
30601 #: ../fish/guestfish-actions.pod:4613
30604 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
30610 #: ../fish/guestfish-actions.pod:4632
30616 #: ../fish/guestfish-actions.pod:4634
30625 #: ../fish/guestfish-actions.pod:4661
30627 "I<Note:> Don't use this call to test for availability of features. In "
30628 "enterprise distributions we backport features from later versions into "
30629 "earlier versions, making this an unreliable way to test for features. Use "
30630 "L</available> instead."
30635 #: ../fish/guestfish-actions.pod:4667
30641 #: ../fish/guestfish-actions.pod:4669
30644 " vfs-label device\n"
30650 #: ../fish/guestfish-actions.pod:4676
30651 msgid "To find a filesystem from the label, use L</findfs-label>."
30656 #: ../fish/guestfish-actions.pod:4678
30662 #: ../fish/guestfish-actions.pod:4680
30665 " vfs-type device\n"
30671 #: ../fish/guestfish-actions.pod:4690
30677 #: ../fish/guestfish-actions.pod:4692
30680 " vfs-uuid device\n"
30686 #: ../fish/guestfish-actions.pod:4699
30687 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
30692 #: ../fish/guestfish-actions.pod:4701
30693 msgid "vg-activate"
30698 #: ../fish/guestfish-actions.pod:4703
30701 " vg-activate true|false 'volgroups ...'\n"
30707 #: ../fish/guestfish-actions.pod:4716
30708 msgid "vg-activate-all"
30713 #: ../fish/guestfish-actions.pod:4718
30716 " vg-activate-all true|false\n"
30722 #: ../fish/guestfish-actions.pod:4728
30728 #: ../fish/guestfish-actions.pod:4730
30731 " vgcreate volgroup 'physvols ...'\n"
30737 #: ../fish/guestfish-actions.pod:4735
30743 #: ../fish/guestfish-actions.pod:4737
30746 " vglvuuids vgname\n"
30752 #: ../fish/guestfish-actions.pod:4742
30754 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
30755 "logical volumes and volume groups."
30760 #: ../fish/guestfish-actions.pod:4745
30761 msgid "See also L</vgpvuuids>."
30766 #: ../fish/guestfish-actions.pod:4747
30772 #: ../fish/guestfish-actions.pod:4749
30775 " vgpvuuids vgname\n"
30781 #: ../fish/guestfish-actions.pod:4754
30783 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
30784 "physical volumes and volume groups."
30789 #: ../fish/guestfish-actions.pod:4757
30790 msgid "See also L</vglvuuids>."
30795 #: ../fish/guestfish-actions.pod:4759
30801 #: ../fish/guestfish-actions.pod:4761
30804 " vgremove vgname\n"
30810 #: ../fish/guestfish-actions.pod:4768
30816 #: ../fish/guestfish-actions.pod:4770
30819 " vgrename volgroup newvolgroup\n"
30825 #: ../fish/guestfish-actions.pod:4774
30831 #: ../fish/guestfish-actions.pod:4776
30840 #: ../fish/guestfish-actions.pod:4784
30841 msgid "See also L</vgs-full>."
30846 #: ../fish/guestfish-actions.pod:4786
30852 #: ../fish/guestfish-actions.pod:4788
30861 #: ../fish/guestfish-actions.pod:4793
30867 #: ../fish/guestfish-actions.pod:4795
30876 #: ../fish/guestfish-actions.pod:4800
30882 #: ../fish/guestfish-actions.pod:4802
30891 #: ../fish/guestfish-actions.pod:4806
30897 #: ../fish/guestfish-actions.pod:4808
30906 #: ../fish/guestfish-actions.pod:4813
30912 #: ../fish/guestfish-actions.pod:4815
30921 #: ../fish/guestfish-actions.pod:4820
30927 #: ../fish/guestfish-actions.pod:4822
30936 #: ../fish/guestfish-actions.pod:4827
30942 #: ../fish/guestfish-actions.pod:4829
30945 " write path content\n"
30951 #: ../fish/guestfish-actions.pod:4837
30957 #: ../fish/guestfish-actions.pod:4839
30960 " write-file path content size\n"
30966 #: ../fish/guestfish-actions.pod:4862
30972 #: ../fish/guestfish-actions.pod:4864
30975 " zegrep regex path\n"
30981 #: ../fish/guestfish-actions.pod:4872
30987 #: ../fish/guestfish-actions.pod:4874
30990 " zegrepi regex path\n"
30996 #: ../fish/guestfish-actions.pod:4882
31002 #: ../fish/guestfish-actions.pod:4884
31011 #: ../fish/guestfish-actions.pod:4892
31012 msgid "See also: L</zero-device>, L</scrub-device>."
31017 #: ../fish/guestfish-actions.pod:4894
31018 msgid "zero-device"
31023 #: ../fish/guestfish-actions.pod:4896
31026 " zero-device device\n"
31032 #: ../fish/guestfish-actions.pod:4898
31034 "This command writes zeroes over the entire C<device>. Compare with L</zero> "
31035 "which just zeroes the first few blocks of a device."
31040 #: ../fish/guestfish-actions.pod:4905
31046 #: ../fish/guestfish-actions.pod:4907
31049 " zerofree device\n"
31055 #: ../fish/guestfish-actions.pod:4920
31061 #: ../fish/guestfish-actions.pod:4922
31064 " zfgrep pattern path\n"
31070 #: ../fish/guestfish-actions.pod:4930
31076 #: ../fish/guestfish-actions.pod:4932
31079 " zfgrepi pattern path\n"
31085 #: ../fish/guestfish-actions.pod:4940
31091 #: ../fish/guestfish-actions.pod:4942
31094 " zfile meth path\n"
31100 #: ../fish/guestfish-actions.pod:4949
31102 "Since 1.0.63, use L</file> instead which can now process compressed files."
31107 #: ../fish/guestfish-actions.pod:4959
31113 #: ../fish/guestfish-actions.pod:4961
31116 " zgrep regex path\n"
31122 #: ../fish/guestfish-actions.pod:4969
31128 #: ../fish/guestfish-actions.pod:4971
31131 " zgrepi regex path\n"
31137 #: ../fish/guestfish-commands.pod:1
31143 #: ../fish/guestfish-commands.pod:3
31149 #: ../fish/guestfish-commands.pod:5
31152 " alloc filename size\n"
31158 #: ../fish/guestfish-commands.pod:7
31160 "This creates an empty (zeroed) file of the given size, and then adds so it "
31161 "can be further examined."
31166 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
31167 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
31172 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
31173 msgid "Size can be specified using standard suffixes, eg. C<1M>."
31178 #: ../fish/guestfish-commands.pod:14
31180 "To create a sparse file, use L</sparse> instead. To create a prepared disk "
31181 "image, see L</PREPARED DISK IMAGES>."
31186 #: ../fish/guestfish-commands.pod:17
31192 #: ../fish/guestfish-commands.pod:19
31195 " copy-in local [local ...] /remotedir\n"
31201 #: ../fish/guestfish-commands.pod:21
31203 "C<copy-in> copies local files or directories recursively into the disk "
31204 "image, placing them in the directory called C</remotedir> (which must "
31205 "exist). This guestfish meta-command turns into a sequence of L</tar-in> and "
31206 "other commands as necessary."
31211 #: ../fish/guestfish-commands.pod:26
31213 "Multiple local files and directories can be specified, but the last "
31214 "parameter must always be a remote directory. Wildcards cannot be used."
31219 #: ../fish/guestfish-commands.pod:30
31225 #: ../fish/guestfish-commands.pod:32
31228 " copy-out remote [remote ...] localdir\n"
31234 #: ../fish/guestfish-commands.pod:34
31236 "C<copy-out> copies remote files or directories recursively out of the disk "
31237 "image, placing them on the host disk in a local directory called C<localdir> "
31238 "(which must exist). This guestfish meta-command turns into a sequence of L</"
31239 "download>, L</tar-out> and other commands as necessary."
31244 #: ../fish/guestfish-commands.pod:40
31246 "Multiple remote files and directories can be specified, but the last "
31247 "parameter must always be a local directory. To download to the current "
31248 "directory, use C<.> as in:"
31253 #: ../fish/guestfish-commands.pod:44
31256 " copy-out /home .\n"
31262 #: ../fish/guestfish-commands.pod:46
31264 "Wildcards cannot be used in the ordinary command, but you can use them with "
31265 "the help of L</glob> like this:"
31270 #: ../fish/guestfish-commands.pod:49
31273 " glob copy-out /home/* .\n"
31279 #: ../fish/guestfish-commands.pod:51
31285 #: ../fish/guestfish-commands.pod:53
31288 " echo [params ...]\n"
31294 #: ../fish/guestfish-commands.pod:55
31295 msgid "This echos the parameters to the terminal."
31300 #: ../fish/guestfish-commands.pod:57
31306 #: ../fish/guestfish-commands.pod:59
31312 #: ../fish/guestfish-commands.pod:61
31318 #: ../fish/guestfish-commands.pod:63
31327 #: ../fish/guestfish-commands.pod:65
31329 "This is used to edit a file. It downloads the file, edits it locally using "
31330 "your editor, then uploads the result."
31335 #: ../fish/guestfish-commands.pod:68
31337 "The editor is C<$EDITOR>. However if you use the alternate commands C<vi> "
31338 "or C<emacs> you will get those corresponding editors."
31343 #: ../fish/guestfish-commands.pod:72
31349 #: ../fish/guestfish-commands.pod:74
31352 " glob command args...\n"
31358 #: ../fish/guestfish-commands.pod:76
31360 "Expand wildcards in any paths in the args list, and run C<command> "
31361 "repeatedly on each matching path."
31366 #: ../fish/guestfish-commands.pod:79
31367 msgid "See L</WILDCARDS AND GLOBBING>."
31372 #: ../fish/guestfish-commands.pod:81
31378 #: ../fish/guestfish-commands.pod:83
31381 " hexedit <filename|device>\n"
31382 " hexedit <filename|device> <max>\n"
31383 " hexedit <filename|device> <start> <max>\n"
31389 #: ../fish/guestfish-commands.pod:87
31391 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
31397 #: ../fish/guestfish-commands.pod:90
31399 "This command works by downloading potentially the whole file or device, "
31400 "editing it locally, then uploading it. If the file or device is large, you "
31401 "have to specify which part you wish to edit by using C<max> and/or C<start> "
31402 "C<max> parameters. C<start> and C<max> are specified in bytes, with the "
31403 "usual modifiers allowed such as C<1M> (1 megabyte)."
31408 #: ../fish/guestfish-commands.pod:97
31409 msgid "For example to edit the first few sectors of a disk you might do:"
31414 #: ../fish/guestfish-commands.pod:100
31417 " hexedit /dev/sda 1M\n"
31423 #: ../fish/guestfish-commands.pod:102
31425 "which would allow you to edit anywhere within the first megabyte of the disk."
31430 #: ../fish/guestfish-commands.pod:105
31431 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
31436 #: ../fish/guestfish-commands.pod:107
31439 " hexedit /dev/sda1 0x400 0x400\n"
31445 #: ../fish/guestfish-commands.pod:109
31446 msgid "(assuming the superblock is in the standard location)."
31451 #: ../fish/guestfish-commands.pod:111
31453 "This command requires the external L<hexedit(1)> program. You can specify "
31454 "another program to use by setting the C<HEXEDITOR> environment variable."
31459 #: ../fish/guestfish-commands.pod:115
31460 msgid "See also L</hexdump>."
31465 #: ../fish/guestfish-commands.pod:117
31471 #: ../fish/guestfish-commands.pod:119
31480 #: ../fish/guestfish-commands.pod:121
31482 "Change the local directory, ie. the current directory of guestfish itself."
31487 #: ../fish/guestfish-commands.pod:124
31488 msgid "Note that C<!cd> won't do what you might expect."
31493 #: ../fish/guestfish-commands.pod:126
31499 #: ../fish/guestfish-commands.pod:128
31505 #: ../fish/guestfish-commands.pod:130
31514 #: ../fish/guestfish-commands.pod:132
31515 msgid "Opens the manual page for guestfish."
31520 #: ../fish/guestfish-commands.pod:134
31526 #: ../fish/guestfish-commands.pod:136
31532 #: ../fish/guestfish-commands.pod:138
31541 #: ../fish/guestfish-commands.pod:140
31550 #: ../fish/guestfish-commands.pod:142
31551 msgid "This is used to view a file."
31556 #: ../fish/guestfish-commands.pod:144
31558 "The default viewer is C<$PAGER>. However if you use the alternate command "
31559 "C<less> you will get the C<less> command specifically."
31564 #: ../fish/guestfish-commands.pod:147
31570 #: ../fish/guestfish-commands.pod:149
31579 #: ../fish/guestfish-commands.pod:151
31581 "Close and reopen the libguestfs handle. It is not necessary to use this "
31582 "normally, because the handle is closed properly when guestfish exits. "
31583 "However this is occasionally useful for testing."
31588 #: ../fish/guestfish-commands.pod:155
31594 #: ../fish/guestfish-commands.pod:157
31597 " sparse filename size\n"
31603 #: ../fish/guestfish-commands.pod:159
31605 "This creates an empty sparse file of the given size, and then adds so it can "
31606 "be further examined."
31611 #: ../fish/guestfish-commands.pod:162
31613 "In all respects it works the same as the L</alloc> command, except that the "
31614 "image file is allocated sparsely, which means that disk blocks are not "
31615 "assigned to the file until they are needed. Sparse disk files only use "
31616 "space when written to, but they are slower and there is a danger you could "
31617 "run out of real disk space during a write operation."
31622 #: ../fish/guestfish-commands.pod:172
31628 #: ../fish/guestfish-commands.pod:174
31637 #: ../fish/guestfish-commands.pod:176
31639 "This command returns a list of the optional groups known to the daemon, and "
31640 "indicates which ones are supported by this build of the libguestfs appliance."
31645 #: ../fish/guestfish-commands.pod:180
31646 msgid "See also L<guestfs(3)/AVAILABILITY>."
31651 #: ../fish/guestfish-commands.pod:182
31657 #: ../fish/guestfish-commands.pod:184
31660 " time command args...\n"
31666 #: ../fish/guestfish-commands.pod:186
31668 "Run the command as usual, but print the elapsed time afterwards. This can "
31669 "be useful for benchmarking operations."
31674 #: ../test-tool/libguestfs-test-tool.pod:5
31675 msgid "libguestfs-test-tool - End user tests for libguestfs"
31680 #: ../test-tool/libguestfs-test-tool.pod:9
31683 " libguestfs-test-tool [--options]\n"
31689 #: ../test-tool/libguestfs-test-tool.pod:13
31691 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
31692 "and developers, to allow them to check basic libguestfs functionality is "
31693 "working. This is needed because libguestfs occasionally breaks for reasons "
31694 "beyond our control: usually because of changes in the underlying qemu or "
31695 "kernel packages, or the host environment."
31700 #: ../test-tool/libguestfs-test-tool.pod:20
31701 msgid "If you suspect a problem in libguestfs, then just run:"
31706 #: ../test-tool/libguestfs-test-tool.pod:22
31709 " libguestfs-test-tool\n"
31715 #: ../test-tool/libguestfs-test-tool.pod:24
31716 msgid "It will print lots of diagnostic messages."
31721 #: ../test-tool/libguestfs-test-tool.pod:26
31722 msgid "If it runs to completion successfully, you will see this near the end:"
31727 #: ../test-tool/libguestfs-test-tool.pod:28
31730 " ===== TEST FINISHED OK =====\n"
31736 #: ../test-tool/libguestfs-test-tool.pod:30
31737 msgid "and the test tool will exit with code 0."
31742 #: ../test-tool/libguestfs-test-tool.pod:32
31744 "If it fails (and/or exits with non-zero error code), please paste the "
31745 "B<complete, unedited> output of the test tool into a bug report. More "
31746 "information about reporting bugs can be found on the L<http://libguestfs.org/"
31752 #: ../test-tool/libguestfs-test-tool.pod:41
31758 #: ../test-tool/libguestfs-test-tool.pod:43
31759 msgid "Display short usage information and exit."
31764 #: ../test-tool/libguestfs-test-tool.pod:45
31765 msgid "I<--qemu qemu_binary>"
31770 #: ../test-tool/libguestfs-test-tool.pod:47
31772 "If you have downloaded another qemu binary, point this option at the full "
31773 "path of the binary to try it."
31778 #: ../test-tool/libguestfs-test-tool.pod:50
31779 msgid "I<--qemudir qemu_source_dir>"
31784 #: ../test-tool/libguestfs-test-tool.pod:52
31786 "If you have compiled qemu from source, point this option at the source "
31787 "directory to try it."
31792 #: ../test-tool/libguestfs-test-tool.pod:55
31793 msgid "I<--timeout N>"
31798 #: ../test-tool/libguestfs-test-tool.pod:57
31800 "Set the launch timeout to C<N> seconds. The default is 120 seconds which "
31801 "does not usually need to be adjusted unless your machine is very slow."
31806 #: ../test-tool/libguestfs-test-tool.pod:63
31807 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
31812 #: ../test-tool/libguestfs-test-tool.pod:65
31814 "If you have compiled another version of qemu from source and would like to "
31815 "try that, then you can use the I<--qemudir> option to point to the qemu "
31816 "source directory."
31821 #: ../test-tool/libguestfs-test-tool.pod:69
31823 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
31824 "option to point to the binary."
31829 #: ../test-tool/libguestfs-test-tool.pod:72
31831 "When using an alternate qemu with libguestfs, usually you would need to "
31832 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)"
31833 ">). libguestfs-test-tool writes a temporary qemu wrapper script when you "
31834 "use either of the I<--qemudir> or I<--qemu> options."
31839 #: ../test-tool/libguestfs-test-tool.pod:79
31841 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
31842 "I<1> if there was an error."
31847 #: ../test-tool/libguestfs-test-tool.pod:84
31849 "For the full list of environment variables which may affect libguestfs, "
31850 "please see the L<guestfs(3)> manual page."
31855 #: ../test-tool/libguestfs-test-tool.pod:89
31856 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
31861 #: ../fuse/guestmount.pod:5
31863 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
31868 #: ../fuse/guestmount.pod:9
31871 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
31877 #: ../fuse/guestmount.pod:11
31880 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
31886 #: ../fuse/guestmount.pod:13
31889 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
31895 #: ../fuse/guestmount.pod:17
31897 "You must I<not> use C<guestmount> in read-write mode on live virtual "
31898 "machines. If you do this, you risk disk corruption in the VM."
31903 #: ../fuse/guestmount.pod:22
31905 "The guestmount program can be used to mount virtual machine filesystems and "
31906 "other disk images on the host. It uses libguestfs for access to the guest "
31907 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
31908 "a mountable device."
31913 #: ../fuse/guestmount.pod:27
31915 "Along with other options, you have to give at least one device (I<-a> "
31916 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
31917 "option) or use the I<-i> inspection option. How this works is better "
31918 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
31924 #: ../fuse/guestmount.pod:33
31926 "FUSE lets you mount filesystems as non-root. The mountpoint must be owned "
31927 "by you, and the filesystem will not be visible to any other users unless you "
31928 "make certain global configuration changes to C</etc/fuse.conf>. To unmount "
31929 "the filesystem, use the C<fusermount -u> command."
31934 #: ../fuse/guestmount.pod:41
31936 "For a typical Windows guest which has its main filesystem on the first "
31942 #: ../fuse/guestmount.pod:44
31945 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
31951 #: ../fuse/guestmount.pod:46
31953 "For a typical Linux guest which has a /boot filesystem on the first "
31954 "partition, and the root filesystem on a logical volume:"
31959 #: ../fuse/guestmount.pod:49
31962 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
31968 #: ../fuse/guestmount.pod:51
31969 msgid "To get libguestfs to detect guest mountpoints for you:"
31974 #: ../fuse/guestmount.pod:53
31977 " guestmount -a guest.img -i --ro /mnt\n"
31983 #: ../fuse/guestmount.pod:55
31984 msgid "For a libvirt guest called \"Guest\" you could do:"
31989 #: ../fuse/guestmount.pod:57
31992 " guestmount -d Guest -i --ro /mnt\n"
31998 #: ../fuse/guestmount.pod:59
32000 "If you don't know what filesystems are contained in a guest or disk image, "
32001 "use L<virt-filesystems(1)> first:"
32006 #: ../fuse/guestmount.pod:62
32009 " virt-filesystems MyGuest\n"
32015 #: ../fuse/guestmount.pod:64
32017 "If you want to trace the libguestfs calls but without excessive debugging "
32018 "information, we recommend:"
32023 #: ../fuse/guestmount.pod:67
32026 " guestmount [...] --trace /mnt\n"
32032 #: ../fuse/guestmount.pod:69
32033 msgid "If you want to debug the program, we recommend:"
32038 #: ../fuse/guestmount.pod:71
32041 " guestmount [...] --trace --verbose /mnt\n"
32047 #: ../fuse/guestmount.pod:77
32048 msgid "B<-a image> | B<--add image>"
32053 #: ../fuse/guestmount.pod:79
32054 msgid "Add a block device or virtual machine image."
32059 #: ../fuse/guestmount.pod:84
32060 msgid "B<-c URI> | B<--connect URI>"
32065 #: ../fuse/guestmount.pod:90
32066 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
32071 #: ../fuse/guestmount.pod:96
32072 msgid "B<--dir-cache-timeout N>"
32077 #: ../fuse/guestmount.pod:98
32079 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
32080 "seconds. The readdir cache [actually, there are several semi-independent "
32081 "caches] is populated after a readdir(2) call with the stat and extended "
32082 "attributes of the files in the directory, in anticipation that they will be "
32083 "requested soon after."
32088 #: ../fuse/guestmount.pod:104
32090 "There is also a different attribute cache implemented by FUSE (see the FUSE "
32091 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
32092 "requests, only cache existing ones."
32097 #: ../fuse/guestmount.pod:115
32098 msgid "B<--format=raw|qcow2|..> | B<--format>"
32103 #: ../fuse/guestmount.pod:122
32105 "If you have untrusted raw-format guest disk images, you should use this "
32106 "option to specify the disk format. This avoids a possible security problem "
32107 "with malicious guests (CVE-2010-3851). See also L<guestfs(3)/"
32108 "guestfs_add_drive_opts>."
32113 #: ../fuse/guestmount.pod:127
32114 msgid "B<--fuse-help>"
32119 #: ../fuse/guestmount.pod:129
32120 msgid "Display help on special FUSE options (see I<-o> below)."
32125 #: ../fuse/guestmount.pod:133
32126 msgid "Display brief help and exit."
32131 #: ../fuse/guestmount.pod:135
32132 msgid "B<-i> | B<--inspector>"
32137 #: ../fuse/guestmount.pod:155
32139 "Mount the named partition or logical volume on the given mountpoint B<in the "
32140 "guest> (this has nothing to do with mountpoints in the host)."
32145 #: ../fuse/guestmount.pod:158
32147 "If the mountpoint is omitted, it defaults to C</>. You have to mount "
32148 "something on C</>."
32153 #: ../fuse/guestmount.pod:171
32154 msgid "B<-n> | B<--no-sync>"
32159 #: ../fuse/guestmount.pod:173
32161 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
32162 "unmounted. If you specify this option, then we don't attempt to sync the "
32163 "disk. See the discussion of autosync in the L<guestfs(3)> manpage."
32168 #: ../fuse/guestmount.pod:178
32169 msgid "B<-o option> | B<--option option>"
32174 #: ../fuse/guestmount.pod:180
32175 msgid "Pass extra options to FUSE."
32180 #: ../fuse/guestmount.pod:182
32182 "To get a list of all the extra options supported by FUSE, use the command "
32183 "below. Note that only the FUSE I<-o> options can be passed, and only some "
32184 "of them are a good idea."
32189 #: ../fuse/guestmount.pod:186
32192 " guestmount --fuse-help\n"
32198 #: ../fuse/guestmount.pod:188
32199 msgid "Some potentially useful FUSE options:"
32204 #: ../fuse/guestmount.pod:192
32205 msgid "B<-o allow_other>"
32210 #: ../fuse/guestmount.pod:194
32211 msgid "Allow other users to see the filesystem."
32216 #: ../fuse/guestmount.pod:196
32217 msgid "B<-o attr_timeout=N>"
32222 #: ../fuse/guestmount.pod:198
32223 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
32228 #: ../fuse/guestmount.pod:200
32229 msgid "B<-o kernel_cache>"
32234 #: ../fuse/guestmount.pod:202
32236 "Allow the kernel to cache files (reduces the number of reads that have to go "
32237 "through the L<guestfs(3)> API). This is generally a good idea if you can "
32238 "afford the extra memory usage."
32243 #: ../fuse/guestmount.pod:206
32244 msgid "B<-o uid=N> B<-o gid=N>"
32249 #: ../fuse/guestmount.pod:208
32251 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
32252 "the chosen values."
32257 #: ../fuse/guestmount.pod:213
32258 msgid "B<-r> | B<--ro>"
32263 #: ../fuse/guestmount.pod:215
32265 "Add devices and mount everything read-only. Also disallow writes and make "
32266 "the disk appear read-only to FUSE."
32271 #: ../fuse/guestmount.pod:218
32273 "This is highly recommended if you are not going to edit the guest disk. If "
32274 "the guest is running and this option is I<not> supplied, then there is a "
32275 "strong risk of disk corruption in the guest. We try to prevent this from "
32276 "happening, but it is not always possible."
32281 #: ../fuse/guestmount.pod:223
32282 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
32287 #: ../fuse/guestmount.pod:227
32288 msgid "Enable SELinux support for the guest."
32293 #: ../fuse/guestmount.pod:229
32294 msgid "B<-v> | B<--verbose>"
32299 #: ../fuse/guestmount.pod:231
32300 msgid "Enable verbose messages from underlying libguestfs."
32305 #: ../fuse/guestmount.pod:233
32306 msgid "B<-V> | B<--version>"
32311 #: ../fuse/guestmount.pod:235
32312 msgid "Display the program version and exit."
32317 #: ../fuse/guestmount.pod:237
32318 msgid "B<-w> | B<--rw>"
32322 #: ../fuse/guestmount.pod:242 ../fuse/guestmount.pod:263
32323 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
32328 #: ../fuse/guestmount.pod:244
32329 msgid "B<-x> | B<--trace>"
32334 #: ../fuse/guestmount.pod:246
32335 msgid "Trace libguestfs calls and entry into each FUSE function."
32340 #: ../fuse/guestmount.pod:248
32341 msgid "This also stops the daemon from forking into the background."
32346 #: ../fuse/guestmount.pod:269
32348 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
32349 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, L<http://fuse.sf."
32355 #: ../fuse/guestmount.pod:284
32356 msgid "Copyright (C) 2009-2010 Red Hat Inc. L<http://libguestfs.org/>"
32361 #: ../tools/virt-edit.pl:34
32362 msgid "virt-edit - Edit a file in a virtual machine"
32367 #: ../tools/virt-edit.pl:38
32370 " virt-edit [--options] domname file\n"
32376 #: ../tools/virt-edit.pl:40
32379 " virt-edit [--options] disk.img [disk.img ...] file\n"
32385 #: ../tools/virt-edit.pl:42
32388 " virt-edit [domname|disk.img] file -e 'expr'\n"
32394 #: ../tools/virt-edit.pl:46
32396 "You must I<not> use C<virt-edit> on live virtual machines. If you do this, "
32397 "you risk disk corruption in the VM. C<virt-edit> tries to stop you from "
32398 "doing this, but doesn't catch all cases."
32403 #: ../tools/virt-edit.pl:52
32405 "C<virt-edit> is a command line tool to edit C<file> where C<file> exists in "
32406 "the named virtual machine (or disk image)."
32410 #: ../tools/virt-edit.pl:55
32411 msgid "If you want to just view a file, use L<virt-cat(1)>."
32415 #: ../tools/virt-edit.pl:57
32417 "For more complex cases you should look at the L<guestfish(1)> tool (see L</"
32418 "USING GUESTFISH> below)."
32422 #: ../tools/virt-edit.pl:60
32424 "C<virt-edit> cannot be used to create a new file, nor to edit multiple "
32425 "files. L<guestfish(1)> can do that and much more."
32430 #: ../tools/virt-edit.pl:65
32431 msgid "Edit the named files interactively:"
32436 #: ../tools/virt-edit.pl:67
32439 " virt-edit mydomain /boot/grub/grub.conf\n"
32445 #: ../tools/virt-edit.pl:69
32448 " virt-edit mydomain /etc/passwd\n"
32453 #: ../tools/virt-edit.pl:71
32454 msgid "For Windows guests, some Windows paths are understood:"
32458 #: ../tools/virt-edit.pl:73
32461 " virt-edit mywindomain 'c:\\autoexec.bat'\n"
32467 #: ../tools/virt-edit.pl:75
32469 "You can also edit files non-interactively (see L</NON-INTERACTIVE EDITING> "
32470 "below). To change the init default level to 5:"
32475 #: ../tools/virt-edit.pl:79
32478 " virt-edit mydomain /etc/inittab -e 's/^id:.*/id:5:initdefault:/'\n"
32484 #: ../tools/virt-edit.pl:91 ../tools/virt-win-reg.pl:106
32485 #: ../tools/virt-list-filesystems.pl:63 ../tools/virt-tar.pl:113
32486 #: ../tools/virt-make-fs.pl:163 ../tools/virt-list-partitions.pl:64
32487 msgid "Display brief help."
32492 #: ../tools/virt-edit.pl:99 ../tools/virt-win-reg.pl:114
32493 #: ../tools/virt-list-filesystems.pl:71 ../tools/virt-tar.pl:121
32494 #: ../tools/virt-make-fs.pl:171 ../tools/virt-list-partitions.pl:72
32495 msgid "Display version number and exit."
32500 #: ../tools/virt-edit.pl:105
32501 msgid "B<--backup extension> | B<-b extension>"
32506 #: ../tools/virt-edit.pl:107
32508 "Create a backup of the original file I<in the guest disk image>. The backup "
32509 "has the original filename with C<extension> added."
32514 #: ../tools/virt-edit.pl:110
32516 "Usually the first character of C<extension> would be a dot C<.> so you would "
32522 #: ../tools/virt-edit.pl:113
32525 " virt-edit -b .orig [etc]\n"
32531 #: ../tools/virt-edit.pl:115
32532 msgid "By default, no backup file is made."
32537 #: ../tools/virt-edit.pl:121 ../tools/virt-win-reg.pl:128
32538 #: ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127
32539 #: ../tools/virt-list-partitions.pl:78
32540 msgid "B<--connect URI> | B<-c URI>"
32545 #: ../tools/virt-edit.pl:123 ../tools/virt-win-reg.pl:130
32546 #: ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129
32547 #: ../tools/virt-list-partitions.pl:80
32549 "If using libvirt, connect to the given I<URI>. If omitted, then we connect "
32550 "to the default libvirt hypervisor."
32555 #: ../tools/virt-edit.pl:126 ../tools/virt-win-reg.pl:133
32556 #: ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132
32557 #: ../tools/virt-list-partitions.pl:83
32559 "If you specify guest block devices directly, then libvirt is not used at all."
32564 #: ../tools/virt-edit.pl:133 ../tools/virt-win-reg.pl:140
32565 #: ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139
32566 #: ../tools/virt-list-partitions.pl:90
32567 msgid "B<--format> raw"
32572 #: ../tools/virt-edit.pl:135 ../tools/virt-win-reg.pl:142
32573 #: ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141
32574 #: ../tools/virt-list-partitions.pl:92
32576 "Specify the format of disk images given on the command line. If this is "
32577 "omitted then the format is autodetected from the content of the disk image."
32582 #: ../tools/virt-edit.pl:139 ../tools/virt-win-reg.pl:146
32583 #: ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145
32584 #: ../tools/virt-list-partitions.pl:96
32586 "If disk images are requested from libvirt, then this program asks libvirt "
32587 "for this information. In this case, the value of the format parameter is "
32593 #: ../tools/virt-edit.pl:143 ../tools/virt-win-reg.pl:150
32594 #: ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149
32595 #: ../tools/virt-list-partitions.pl:100
32597 "If working with untrusted raw-format guest disk images, you should ensure "
32598 "the format is always specified."
32603 #: ../tools/virt-edit.pl:150
32604 msgid "B<--expr EXPR> | B<-e EXPR>"
32609 #: ../tools/virt-edit.pl:152
32611 "Instead of launching the external editor, non-interactively apply the Perl "
32612 "expression C<EXPR> to each line in the file. See L</NON-INTERACTIVE "
32618 #: ../tools/virt-edit.pl:156
32620 "Be careful to properly quote the expression to prevent it from being altered "
32626 #: ../tools/virt-edit.pl:280
32627 msgid "NON-INTERACTIVE EDITING"
32632 #: ../tools/virt-edit.pl:282
32634 "C<virt-edit> normally calls out to C<$EDITOR> (or vi) so the system "
32635 "administrator can interactively edit the file."
32640 #: ../tools/virt-edit.pl:285
32642 "There are two ways also to use C<virt-edit> from scripts in order to make "
32643 "automated edits to files. (Note that although you I<can> use C<virt-edit> "
32644 "like this, it's less error-prone to write scripts directly using the "
32645 "libguestfs API and Augeas for configuration file editing.)"
32650 #: ../tools/virt-edit.pl:291
32652 "The first method is to temporarily set C<$EDITOR> to any script or program "
32653 "you want to run. The script is invoked as C<$EDITOR tmpfile> and it should "
32654 "update C<tmpfile> in place however it likes."
32659 #: ../tools/virt-edit.pl:295
32661 "The second method is to use the C<-e> parameter of C<virt-edit> to run a "
32662 "short Perl snippet in the style of L<sed(1)>. For example to replace all "
32663 "instances of C<foo> with C<bar> in a file:"
32668 #: ../tools/virt-edit.pl:299
32671 " virt-edit domname filename -e 's/foo/bar/'\n"
32677 #: ../tools/virt-edit.pl:301
32679 "The full power of Perl regular expressions can be used (see L<perlre(1)>). "
32680 "For example to delete root's password you could do:"
32685 #: ../tools/virt-edit.pl:304
32688 " virt-edit domname /etc/passwd -e 's/^root:.*?:/root::/'\n"
32694 #: ../tools/virt-edit.pl:306
32696 "What really happens is that the snippet is evaluated as a Perl expression "
32697 "for each line of the file. The line, including the final C<\\n>, is passed "
32698 "in C<$_> and the expression should update C<$_> or leave it unchanged."
32703 #: ../tools/virt-edit.pl:311
32705 "To delete a line, set C<$_> to the empty string. For example, to delete the "
32706 "C<apache> user account from the password file you can do:"
32711 #: ../tools/virt-edit.pl:314
32714 " virt-edit mydomain /etc/passwd -e '$_ = \"\" if /^apache:/'\n"
32720 #: ../tools/virt-edit.pl:316
32722 "To insert a line, prepend or append it to C<$_>. However appending lines to "
32723 "the end of the file is rather difficult this way since there is no concept "
32724 "of \"last line of the file\" - your expression just doesn't get called "
32725 "again. You might want to use the first method (setting C<$EDITOR>) if you "
32731 #: ../tools/virt-edit.pl:322
32733 "The variable C<$lineno> contains the current line number. As is "
32734 "traditional, the first line in the file is number C<1>."
32739 #: ../tools/virt-edit.pl:325
32741 "The return value from the expression is ignored, but the expression may call "
32742 "C<die> in order to abort the whole program, leaving the original file "
32748 #: ../tools/virt-edit.pl:329
32750 "Remember when matching the end of a line that C<$_> may contain the final C<"
32751 "\\n>, or (for DOS files) C<\\r\\n>, or if the file does not end with a "
32752 "newline then neither of these. Thus to match or substitute some text at the "
32753 "end of a line, use this regular expression:"
32758 #: ../tools/virt-edit.pl:334
32761 " /some text(\\r?\\n)?$/\n"
32767 #: ../tools/virt-edit.pl:336
32769 "Alternately, use the perl C<chomp> function, being careful not to chomp C<"
32770 "$_> itself (since that would remove all newlines from the file):"
32775 #: ../tools/virt-edit.pl:340
32778 " my $m = $_; chomp $m; $m =~ /some text$/\n"
32783 #: ../tools/virt-edit.pl:344
32785 "C<virt-edit> has a limited ability to understand Windows drive letters and "
32786 "paths (eg. C<E:\\foo\\bar.txt>)."
32790 #: ../tools/virt-edit.pl:347
32791 msgid "If and only if the guest is running Windows then:"
32795 #: ../tools/virt-edit.pl:353
32797 "Drive letter prefixes like C<C:> are resolved against the Windows Registry "
32798 "to the correct filesystem."
32802 #: ../tools/virt-edit.pl:358
32804 "Any backslash (C<\\>) characters in the path are replaced with forward "
32805 "slashes so that libguestfs can process it."
32809 #: ../tools/virt-edit.pl:363
32811 "The path is resolved case insensitively to locate the file that should be "
32816 #: ../tools/virt-edit.pl:368
32817 msgid "There are some known shortcomings:"
32821 #: ../tools/virt-edit.pl:374
32822 msgid "Some NTFS symbolic links may not be followed correctly."
32826 #: ../tools/virt-edit.pl:378
32827 msgid "NTFS junction points that cross filesystems are not followed."
32831 #: ../tools/virt-edit.pl:435
32832 msgid "USING GUESTFISH"
32836 #: ../tools/virt-edit.pl:437
32838 "L<guestfish(1)> is a more powerful, lower level tool which you can use when "
32839 "C<virt-edit> doesn't work."
32843 #: ../tools/virt-edit.pl:440
32844 msgid "Using C<virt-edit> is approximately equivalent to doing:"
32848 #: ../tools/virt-edit.pl:442
32851 " guestfish --rw -i -d domname edit /file\n"
32856 #: ../tools/virt-edit.pl:444
32858 "where C<domname> is the name of the libvirt guest, and C</file> is the full "
32859 "path to the file."
32863 #: ../tools/virt-edit.pl:447
32865 "The command above uses libguestfs's guest inspection feature and so does not "
32866 "work on guests that libguestfs cannot inspect, or on things like arbitrary "
32867 "disk images that don't contain guests. To edit a file on a disk image "
32872 #: ../tools/virt-edit.pl:452
32875 " guestfish --rw -a disk.img -m /dev/sda1 edit /file\n"
32880 #: ../tools/virt-edit.pl:454
32882 "where C<disk.img> is the disk image, C</dev/sda1> is the filesystem within "
32883 "the disk image to edit, and C</file> is the full path to the file."
32887 #: ../tools/virt-edit.pl:458
32889 "C<virt-edit> cannot create new files. Use the guestfish commands C<touch>, "
32890 "C<write> or C<upload> instead:"
32894 #: ../tools/virt-edit.pl:461
32897 " guestfish --rw -i -d domname touch /newfile\n"
32902 #: ../tools/virt-edit.pl:463
32905 " guestfish --rw -i -d domname write /newfile \"new content\"\n"
32910 #: ../tools/virt-edit.pl:465
32913 " guestfish --rw -i -d domname upload localfile /newfile\n"
32918 #: ../tools/virt-edit.pl:467
32920 "C<virt-edit> cannot edit multiple files, but guestfish can do it like this:"
32924 #: ../tools/virt-edit.pl:470
32927 " guestfish --rw -i -d domname edit /file1 : edit /file2\n"
32933 #: ../tools/virt-edit.pl:480
32939 #: ../tools/virt-edit.pl:482
32941 "If set, this string is used as the editor. It may contain arguments, eg. C<"
32947 #: ../tools/virt-edit.pl:485
32948 msgid "If not set, C<vi> is used."
32953 #: ../tools/virt-edit.pl:489 ../tools/virt-win-reg.pl:559
32954 #: ../tools/virt-list-filesystems.pl:182 ../tools/virt-tar.pl:279
32955 #: ../tools/virt-make-fs.pl:532 ../tools/virt-list-partitions.pl:250
32956 msgid "SHELL QUOTING"
32961 #: ../tools/virt-edit.pl:491 ../tools/virt-win-reg.pl:567
32962 #: ../tools/virt-list-filesystems.pl:184 ../tools/virt-tar.pl:281
32963 #: ../tools/virt-make-fs.pl:534 ../tools/virt-list-partitions.pl:252
32965 "Libvirt guest names can contain arbitrary characters, some of which have "
32966 "meaning to the shell such as C<#> and space. You may need to quote or "
32967 "escape these characters on the command line. See the shell manual page L<sh"
32968 "(1)> for details."
32972 #: ../tools/virt-edit.pl:498
32974 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-copy-in(1)>, L<virt-"
32975 "tar-in(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
32976 "L<http://libguestfs.org/>, L<perl(1)>, L<perlre(1)>."
32981 #: ../tools/virt-edit.pl:510 ../tools/virt-win-reg.pl:598
32982 #: ../tools/virt-list-filesystems.pl:202 ../tools/virt-tar.pl:301
32983 #: ../tools/virt-make-fs.pl:564 ../tools/virt-list-partitions.pl:269
32989 #: ../tools/virt-edit.pl:512 ../tools/virt-win-reg.pl:600
32990 #: ../tools/virt-list-filesystems.pl:204 ../tools/virt-tar.pl:303
32991 #: ../tools/virt-make-fs.pl:566 ../tools/virt-list-partitions.pl:271
32992 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
32996 #: ../tools/virt-edit.pl:516
32997 msgid "Copyright (C) 2009-2011 Red Hat Inc."
33002 #: ../tools/virt-win-reg.pl:37
33004 "virt-win-reg - Export and merge Windows Registry entries from a Windows guest"
33009 #: ../tools/virt-win-reg.pl:41
33012 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
33018 #: ../tools/virt-win-reg.pl:43
33021 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
33027 #: ../tools/virt-win-reg.pl:45
33030 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
33036 #: ../tools/virt-win-reg.pl:47
33039 " virt-win-reg --merge domname [input.reg ...]\n"
33045 #: ../tools/virt-win-reg.pl:49
33048 " virt-win-reg [--options] disk.img ... # instead of domname\n"
33054 #: ../tools/virt-win-reg.pl:53
33056 "You must I<not> use C<virt-win-reg> with the C<--merge> option on live "
33057 "virtual machines. If you do this, you I<will> get irreversible disk "
33058 "corruption in the VM. C<virt-win-reg> tries to stop you from doing this, "
33059 "but doesn't catch all cases."
33064 #: ../tools/virt-win-reg.pl:58
33066 "Modifying the Windows Registry is an inherently risky operation. The format "
33067 "is deliberately obscure and undocumented, and Registry changes can leave the "
33068 "system unbootable. Therefore when using the C<--merge> option, make sure "
33069 "you have a reliable backup first."
33074 #: ../tools/virt-win-reg.pl:65
33076 "This program can export and merge Windows Registry entries from a Windows "
33082 #: ../tools/virt-win-reg.pl:68
33084 "The first parameter is the libvirt guest name or the raw disk image of a "
33090 #: ../tools/virt-win-reg.pl:71
33092 "If C<--merge> is I<not> specified, then the chosen registry key is displayed/"
33093 "exported (recursively). For example:"
33098 #: ../tools/virt-win-reg.pl:74
33101 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
33107 #: ../tools/virt-win-reg.pl:76
33109 "You can also display single values from within registry keys, for example:"
33114 #: ../tools/virt-win-reg.pl:79
33117 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
33118 " $ virt-win-reg Windows7 $cvkey ProductName\n"
33119 " Windows 7 Enterprise\n"
33125 #: ../tools/virt-win-reg.pl:83
33127 "With C<--merge>, you can merge a textual regedit file into the Windows "
33133 #: ../tools/virt-win-reg.pl:86
33136 " $ virt-win-reg --merge Windows7 changes.reg\n"
33142 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
33148 #: ../tools/virt-win-reg.pl:90
33150 "This program is only meant for simple access to the registry. If you want "
33151 "to do complicated things with the registry, we suggest you download the "
33152 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
33153 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
33154 "L<hivexregedit(1)>."
33159 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
33165 #: ../tools/virt-win-reg.pl:122
33166 msgid "Enable debugging messages."
33171 #: ../tools/virt-win-reg.pl:157
33177 #: ../tools/virt-win-reg.pl:159
33179 "In merge mode, this merges a textual regedit file into the Windows Registry "
33180 "of the virtual machine. If this flag is I<not> given then virt-win-reg "
33181 "displays or exports Registry entries instead."
33186 #: ../tools/virt-win-reg.pl:163
33188 "Note that C<--merge> is I<unsafe> to use on live virtual machines, and will "
33189 "result in disk corruption. However exporting (without this flag) is always "
33195 #: ../tools/virt-win-reg.pl:171
33196 msgid "B<--encoding> UTF-16LE|ASCII"
33201 #: ../tools/virt-win-reg.pl:173
33203 "When merging (only), you may need to specify the encoding for strings to be "
33204 "used in the hive file. This is explained in detail in L<Win::Hivex::Regedit"
33205 "(3)/ENCODING STRINGS>."
33210 #: ../tools/virt-win-reg.pl:177
33212 "The default is to use UTF-16LE, which should work with recent versions of "
33218 #: ../tools/virt-win-reg.pl:402
33219 msgid "SUPPORTED SYSTEMS"
33224 #: ../tools/virt-win-reg.pl:404
33226 "The program currently supports Windows NT-derived guests starting with "
33227 "Windows XP through to at least Windows 7."
33232 #: ../tools/virt-win-reg.pl:407
33234 "Registry support is done for C<HKEY_LOCAL_MACHINE\\SAM>, C<HKEY_LOCAL_MACHINE"
33235 "\\SECURITY>, C<HKEY_LOCAL_MACHINE\\SOFTWARE>, C<HKEY_LOCAL_MACHINE\\SYSTEM> "
33236 "and C<HKEY_USERS\\.DEFAULT>."
33241 #: ../tools/virt-win-reg.pl:411
33243 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
33249 #: ../tools/virt-win-reg.pl:414
33251 "C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are B<not> supported at this "
33257 #: ../tools/virt-win-reg.pl:417
33263 #: ../tools/virt-win-reg.pl:419
33265 "C<virt-win-reg> expects that regedit files have already been reencoded in "
33266 "the local encoding. Usually on Linux hosts, this means UTF-8 with Unix-"
33267 "style line endings. Since Windows regedit files are often in UTF-16LE with "
33268 "Windows-style line endings, you may need to reencode the whole file before "
33269 "or after processing."
33274 #: ../tools/virt-win-reg.pl:425
33276 "To reencode a file from Windows format to Linux (before processing it with "
33277 "the C<--merge> option), you would do something like this:"
33282 #: ../tools/virt-win-reg.pl:428
33285 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
33291 #: ../tools/virt-win-reg.pl:430
33293 "To go in the opposite direction, after exporting and before sending the file "
33294 "to a Windows user, do something like this:"
33299 #: ../tools/virt-win-reg.pl:433
33302 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
33308 #: ../tools/virt-win-reg.pl:435
33309 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
33314 #: ../tools/virt-win-reg.pl:437
33316 "If you are unsure about the current encoding, use the L<file(1)> command. "
33317 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
33318 "style (CRLF) line endings, like this:"
33323 #: ../tools/virt-win-reg.pl:441
33326 " $ file software.reg\n"
33327 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
33328 " with CRLF line terminators\n"
33334 #: ../tools/virt-win-reg.pl:445
33335 msgid "This file would need conversion before you could C<--merge> it."
33340 #: ../tools/virt-win-reg.pl:447
33341 msgid "CurrentControlSet etc."
33346 #: ../tools/virt-win-reg.pl:449
33348 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
33349 "Registry at the level of the hive file, and therefore you cannot modify "
33355 #: ../tools/virt-win-reg.pl:453
33357 "C<CurrentControlSet> is usually an alias for C<ControlSet001>. In some "
33358 "circumstances it might refer to another control set. The way to find out is "
33359 "to look at the C<HKLM\\SYSTEM\\Select> key:"
33364 #: ../tools/virt-win-reg.pl:457
33367 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
33368 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
33369 " \"Current\"=dword:00000001\n"
33370 " \"Default\"=dword:00000001\n"
33371 " \"Failed\"=dword:00000000\n"
33372 " \"LastKnownGood\"=dword:00000002\n"
33378 #: ../tools/virt-win-reg.pl:464
33379 msgid "\"Current\" is the one which Windows will choose when it boots."
33384 #: ../tools/virt-win-reg.pl:466
33386 "Similarly, other C<Current...> keys in the path may need to be replaced."
33391 #: ../tools/virt-win-reg.pl:469
33392 msgid "WINDOWS TIPS"
33397 #: ../tools/virt-win-reg.pl:471
33399 "Note that some of these tips modify the guest disk image. The guest I<must> "
33400 "be shut off, else you will get disk corruption."
33405 #: ../tools/virt-win-reg.pl:474
33406 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
33411 #: ../tools/virt-win-reg.pl:476
33413 "Prepare a DOS batch script, VBScript or executable. Upload this using "
33414 "L<guestfish(1)>. For this example the script is called C<test.bat> and it "
33415 "is uploaded into C<C:\\>:"
33420 #: ../tools/virt-win-reg.pl:480
33423 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
33429 #: ../tools/virt-win-reg.pl:482
33430 msgid "Prepare a regedit file containing the registry change:"
33435 #: ../tools/virt-win-reg.pl:484
33438 " cat > test.reg <<'EOF'\n"
33439 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
33440 " \"Test\"=\"c:\\\\test.bat\"\n"
33447 #: ../tools/virt-win-reg.pl:489
33449 "In this example we use the key C<RunOnce> which means that the script will "
33450 "run precisely once when the first user logs in. If you want it to run every "
33451 "time a user logs in, replace C<RunOnce> with C<Run>."
33456 #: ../tools/virt-win-reg.pl:493
33457 msgid "Now update the registry:"
33462 #: ../tools/virt-win-reg.pl:495
33465 " virt-win-reg --merge WindowsGuest test.reg\n"
33471 #: ../tools/virt-win-reg.pl:497
33472 msgid "INSTALLING A SERVICE"
33477 #: ../tools/virt-win-reg.pl:499
33479 "This section assumes you are familiar with Windows services, and you either "
33480 "have a program which handles the Windows Service Control Protocol directly "
33481 "or you want to run any program using a service wrapper like SrvAny or the "
33487 #: ../tools/virt-win-reg.pl:504
33489 "First upload the program and optionally the service wrapper. In this case "
33490 "the test program is called C<test.exe> and we are using the RHSrvAny wrapper:"
33495 #: ../tools/virt-win-reg.pl:508
33498 " guestfish -i -d WindowsGuest <<EOF\n"
33499 " upload rhsrvany.exe /rhsrvany.exe\n"
33500 " upload test.exe /test.exe\n"
33507 #: ../tools/virt-win-reg.pl:513
33509 "Prepare a regedit file containing the registry changes. In this example, "
33510 "the first registry change is needed for the service itself or the service "
33511 "wrapper (if used). The second registry change is only needed because I am "
33512 "using the RHSrvAny service wrapper."
33517 #: ../tools/virt-win-reg.pl:518
33520 " cat > service.reg <<'EOF'\n"
33521 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
33522 " \"Type\"=dword:00000010\n"
33523 " \"Start\"=dword:00000002\n"
33524 " \"ErrorControl\"=dword:00000001\n"
33525 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
33526 " \"DisplayName\"=\"RHSrvAny\"\n"
33527 " \"ObjectName\"=\"NetworkService\"\n"
33533 #: ../tools/virt-win-reg.pl:527
33536 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
33537 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
33538 " \"PWD\"=\"c:\\\\Temp\"\n"
33545 #: ../tools/virt-win-reg.pl:538
33547 "For use of C<ControlSet001> see the section above in this manual page. You "
33548 "may need to adjust this according to the control set that is in use by the "
33554 #: ../tools/virt-win-reg.pl:544
33556 "C<\"ObjectName\"> controls the privileges that the service will have. An "
33557 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
33558 "privileged account."
33563 #: ../tools/virt-win-reg.pl:550
33565 "For the meaning of the magic numbers, see this Microsoft KB article: "
33566 "L<http://support.microsoft.com/kb/103000>."
33571 #: ../tools/virt-win-reg.pl:555
33572 msgid "Update the registry:"
33577 #: ../tools/virt-win-reg.pl:557
33580 " virt-win-reg --merge WindowsGuest service.reg\n"
33586 #: ../tools/virt-win-reg.pl:561
33588 "Be careful when passing parameters containing C<\\> (backslash) in the "
33589 "shell. Usually you will have to use 'single quotes' or double backslashes "
33590 "(but not both) to protect them from the shell."
33595 #: ../tools/virt-win-reg.pl:565
33596 msgid "Paths and value names are case-insensitive."
33601 #: ../tools/virt-win-reg.pl:574
33603 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, L<guestfish(1)"
33604 ">, L<virt-cat(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Win::Hivex"
33605 "(3)>, L<Win::Hivex::Regedit(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
33610 #: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:555
33612 "When reporting bugs, please enable debugging and capture the I<complete> "
33618 #: ../tools/virt-win-reg.pl:592
33621 " export LIBGUESTFS_DEBUG=1\n"
33622 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
33628 #: ../tools/virt-win-reg.pl:595
33630 "Attach /tmp/virt-win-reg.log to a new bug report at L<https://bugzilla."
33636 #: ../tools/virt-win-reg.pl:604 ../tools/virt-make-fs.pl:570
33637 msgid "Copyright (C) 2010 Red Hat Inc."
33642 #: ../tools/virt-list-filesystems.pl:32
33644 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
33649 #: ../tools/virt-list-filesystems.pl:36
33652 " virt-list-filesystems [--options] domname\n"
33658 #: ../tools/virt-list-filesystems.pl:38
33661 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
33667 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
33669 "This tool is obsolete. Use L<virt-filesystems(1)> as a more flexible "
33675 #: ../tools/virt-list-filesystems.pl:45
33677 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
33678 "are contained in a virtual machine or disk image."
33683 #: ../tools/virt-list-filesystems.pl:49
33685 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
33686 "functionality. For more complex cases you should look at the L<guestfish(1)"
33692 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
33693 msgid "B<-l> | B<--long>"
33698 #: ../tools/virt-list-filesystems.pl:108
33700 "With this option, C<virt-list-filesystems> displays the type of each "
33701 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
33706 #: ../tools/virt-list-filesystems.pl:115
33707 msgid "B<-a> | B<--all>"
33712 #: ../tools/virt-list-filesystems.pl:117
33714 "Normally we only show mountable filesystems. If this option is given then "
33715 "swap devices are shown too."
33720 #: ../tools/virt-list-filesystems.pl:191
33722 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
33723 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, L<Sys::"
33724 "Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
33729 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
33730 msgid "Copyright (C) 2009 Red Hat Inc."
33735 #: ../tools/virt-tar.pl:33
33736 msgid "virt-tar - Extract or upload files to a virtual machine"
33741 #: ../tools/virt-tar.pl:37
33744 " virt-tar [--options] -x domname directory tarball\n"
33750 #: ../tools/virt-tar.pl:39
33753 " virt-tar [--options] -u domname tarball directory\n"
33759 #: ../tools/virt-tar.pl:41
33762 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
33768 #: ../tools/virt-tar.pl:43
33771 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
33776 #: ../tools/virt-tar.pl:47
33778 "This tool is obsolete. Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
33779 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
33784 #: ../tools/virt-tar.pl:52
33785 msgid "Download C</home> from the VM into a local tarball:"
33790 #: ../tools/virt-tar.pl:54
33793 " virt-tar -x domname /home home.tar\n"
33799 #: ../tools/virt-tar.pl:56
33802 " virt-tar -zx domname /home home.tar.gz\n"
33808 #: ../tools/virt-tar.pl:58
33809 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
33814 #: ../tools/virt-tar.pl:60
33817 " virt-tar -u domname uploadstuff.tar /tmp\n"
33823 #: ../tools/virt-tar.pl:62
33826 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
33832 #: ../tools/virt-tar.pl:66
33834 "You must I<not> use C<virt-tar> with the C<-u> option (upload) on live "
33835 "virtual machines. If you do this, you risk disk corruption in the VM. "
33836 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
33841 #: ../tools/virt-tar.pl:71
33843 "You can use C<-x> (extract) on live virtual machines, but you might get "
33844 "inconsistent results or errors if there is filesystem activity inside the "
33845 "VM. If the live VM is synched and quiescent, then C<virt-tar> will usually "
33846 "work, but the only way to guarantee consistent results is if the virtual "
33847 "machine is shut down."
33852 #: ../tools/virt-tar.pl:79
33854 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
33855 "parts of a guest filesystem. There are many possibilities: making backups, "
33856 "uploading data files, snooping on guest activity, fixing or customizing "
33862 #: ../tools/virt-tar.pl:84
33864 "If you want to just view a single file, use L<virt-cat(1)>. If you just "
33865 "want to edit a single file, use L<virt-edit(1)>. For more complex cases you "
33866 "should look at the L<guestfish(1)> tool."
33871 #: ../tools/virt-tar.pl:88
33873 "There are two modes of operation: C<-x> (eXtract) downloads a directory and "
33874 "its contents (recursively) from the virtual machine into a local tarball. "
33875 "C<-u> uploads from a local tarball, unpacking it into a directory inside the "
33876 "virtual machine. You cannot use these two options together."
33881 #: ../tools/virt-tar.pl:94
33883 "In addition, you may need to use the C<-z> (gZip) option to enable "
33884 "compression. When uploading, you have to specify C<-z> if the upload file "
33885 "is compressed because virt-tar won't detect this on its own."
33890 #: ../tools/virt-tar.pl:98
33892 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs. For "
33893 "example it cannot do PKZip files or bzip2 compression. If you want that "
33894 "then you'll have to rebuild the tarballs yourself. (This is a limitation of "
33895 "the L<libguestfs(3)> API)."
33900 #: ../tools/virt-tar.pl:156
33901 msgid "B<-x> | B<--extract> | B<--download>"
33906 #: ../tools/virt-tar.pl:158
33907 msgid "B<-u> | B<--upload>"
33912 #: ../tools/virt-tar.pl:160
33914 "Use C<-x> to extract (download) a directory from a virtual machine to a "
33920 #: ../tools/virt-tar.pl:163
33922 "Use C<-u> to upload and unpack from a local tarball into a virtual machine. "
33923 "Please read the L</WARNING> section above before using this option."
33928 #: ../tools/virt-tar.pl:167
33929 msgid "You must specify exactly one of these options."
33934 #: ../tools/virt-tar.pl:173
33935 msgid "B<-z> | B<--gzip>"
33940 #: ../tools/virt-tar.pl:175
33941 msgid "Specify that the input or output tarball is gzip-compressed."
33945 #: ../tools/virt-tar.pl:288
33947 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-copy-"
33948 "in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<Sys::"
33949 "Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs."
33955 #: ../tools/virt-make-fs.pl:37
33956 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
33961 #: ../tools/virt-make-fs.pl:41
33964 " virt-make-fs [--options] input.tar output.img\n"
33970 #: ../tools/virt-make-fs.pl:43
33973 " virt-make-fs [--options] input.tar.gz output.img\n"
33979 #: ../tools/virt-make-fs.pl:45
33982 " virt-make-fs [--options] directory output.img\n"
33988 #: ../tools/virt-make-fs.pl:49
33990 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
33991 "archive or some files in a directory. It is similar to tools like L<mkisofs"
33992 "(1)>, L<genisoimage(1)> and L<mksquashfs(1)>. Unlike those tools, it can "
33993 "create common filesystem types like ext2/3 or NTFS, which can be useful if "
33994 "you want to attach these filesystems to existing virtual machines (eg. to "
33995 "import large amounts of read-only data to a VM)."
34000 #: ../tools/virt-make-fs.pl:57
34001 msgid "Basic usage is:"
34006 #: ../tools/virt-make-fs.pl:59
34009 " virt-make-fs input output\n"
34015 #: ../tools/virt-make-fs.pl:61
34017 "where C<input> is either a directory containing files that you want to add, "
34018 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
34019 "C<output> is a disk image. The input type is detected automatically. The "
34020 "output disk image defaults to a raw ext2 image unless you specify extra "
34021 "flags (see L</OPTIONS> below)."
34026 #: ../tools/virt-make-fs.pl:67
34027 msgid "EXTRA SPACE"
34032 #: ../tools/virt-make-fs.pl:69
34034 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
34035 "the files that it contains, but might have extra space. Depending on how "
34036 "you are going to use the output, you might think this extra space is wasted "
34037 "and want to minimize it, or you might want to leave space so that more files "
34038 "can be added later. Virt-make-fs defaults to minimizing the extra space, "
34039 "but you can use the C<--size> flag to leave space in the filesystem if you "
34045 #: ../tools/virt-make-fs.pl:77
34047 "An alternative way to leave extra space but not make the output image any "
34048 "bigger is to use an alternative disk image format (instead of the default "
34049 "\"raw\" format). Using C<--format=qcow2> will use the native QEmu/KVM qcow2 "
34050 "image format (check your hypervisor supports this before using it). This "
34051 "allows you to choose a large C<--size> but the extra space won't actually be "
34052 "allocated in the image until you try to store something in it."
34056 #: ../tools/virt-make-fs.pl:85
34058 "Don't forget that you can also use local commands including L<resize2fs(8)> "
34059 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
34060 "to build another image from scratch."
34065 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
34066 #: ../tools/virt-make-fs.pl:142
34072 #: ../tools/virt-make-fs.pl:91
34075 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
34081 #: ../tools/virt-make-fs.pl:93
34082 msgid "FILESYSTEM TYPE"
34087 #: ../tools/virt-make-fs.pl:95
34089 "The default filesystem type is C<ext2>. Just about any filesystem type that "
34090 "libguestfs supports can be used (but I<not> read-only formats like "
34091 "ISO9660). Here are some of the more common choices:"
34096 #: ../tools/virt-make-fs.pl:101
34102 #: ../tools/virt-make-fs.pl:103
34104 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size. If "
34105 "you are not going to use the filesystem in a way that requires the journal, "
34106 "then this is just wasted overhead."
34111 #: ../tools/virt-make-fs.pl:107
34112 msgid "I<ntfs> or I<vfat>"
34117 #: ../tools/virt-make-fs.pl:109
34118 msgid "Useful if exporting data to a Windows guest."
34123 #: ../tools/virt-make-fs.pl:111
34125 "I<Note for vfat>: The tar archive or local directory must only contain files "
34126 "which are owned by root (ie. UID:GID = 0:0). The reason is that the tar "
34127 "program running within libguestfs is unable to change the ownership of non-"
34128 "root files, since vfat itself does not support this."
34133 #: ../tools/virt-make-fs.pl:116
34139 #: ../tools/virt-make-fs.pl:118
34141 "Lower overhead than C<ext2>, but certain limitations on filename length and "
34142 "total filesystem size."
34147 #: ../tools/virt-make-fs.pl:125
34150 " virt-make-fs --type=minix input minixfs.img\n"
34156 #: ../tools/virt-make-fs.pl:127
34157 msgid "TO PARTITION OR NOT TO PARTITION"
34162 #: ../tools/virt-make-fs.pl:129
34163 msgid "Optionally virt-make-fs can add a partition table to the output disk."
34168 #: ../tools/virt-make-fs.pl:131
34170 "Adding a partition can make the disk image more compatible with certain "
34171 "virtualized operating systems which don't expect to see a filesystem "
34172 "directly located on a block device (Linux doesn't care and will happily "
34173 "handle both types)."
34178 #: ../tools/virt-make-fs.pl:136
34180 "On the other hand, if you have a partition table then the output image is no "
34181 "longer a straight filesystem. For example you cannot run L<fsck(8)> "
34182 "directly on a partitioned disk image. (However libguestfs tools such as "
34183 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
34188 #: ../tools/virt-make-fs.pl:144
34189 msgid "Add an MBR partition:"
34194 #: ../tools/virt-make-fs.pl:146
34197 " virt-make-fs --partition -- input disk.img\n"
34203 #: ../tools/virt-make-fs.pl:148
34205 "If the output disk image could be terabyte-sized or larger, it's better to "
34206 "use an EFI/GPT-compatible partition table:"
34211 #: ../tools/virt-make-fs.pl:151
34214 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
34220 #: ../tools/virt-make-fs.pl:179
34221 msgid "Enable debugging information."
34226 #: ../tools/virt-make-fs.pl:185
34227 msgid "B<--size=E<lt>NE<gt>>"
34232 #: ../tools/virt-make-fs.pl:187
34233 msgid "B<--size=+E<lt>NE<gt>>"
34238 #: ../tools/virt-make-fs.pl:189
34239 msgid "B<-s E<lt>NE<gt>>"
34244 #: ../tools/virt-make-fs.pl:191
34245 msgid "B<-s +E<lt>NE<gt>>"
34250 #: ../tools/virt-make-fs.pl:193
34252 "Use the C<--size> (or C<-s>) option to choose the size of the output image."
34257 #: ../tools/virt-make-fs.pl:196
34259 "If this option is I<not> given, then the output image will be just large "
34260 "enough to contain all the files, with not much wasted space."
34265 #: ../tools/virt-make-fs.pl:199
34267 "To choose a fixed size output disk, specify an absolute number followed by b/"
34268 "K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
34269 "Petabytes or Exabytes. This must be large enough to contain all the input "
34270 "files, else you will get an error."
34275 #: ../tools/virt-make-fs.pl:204
34277 "To leave extra space, specify C<+> (plus sign) and a number followed by b/K/"
34278 "M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
34279 "Petabytes or Exabytes. For example: C<--size=+200M> means enough space for "
34280 "the input files, and (approximately) an extra 200 MB free space."
34285 #: ../tools/virt-make-fs.pl:210
34287 "Note that virt-make-fs estimates free space, and therefore will not produce "
34288 "filesystems containing precisely the free space requested. (It is much more "
34289 "expensive and time-consuming to produce a filesystem which has precisely the "
34290 "desired free space)."
34295 #: ../tools/virt-make-fs.pl:219
34296 msgid "B<--format=E<lt>fmtE<gt>>"
34301 #: ../tools/virt-make-fs.pl:221
34302 msgid "B<-F E<lt>fmtE<gt>>"
34307 #: ../tools/virt-make-fs.pl:223
34308 msgid "Choose the output disk image format."
34313 #: ../tools/virt-make-fs.pl:225
34314 msgid "The default is C<raw> (raw disk image)."
34319 #: ../tools/virt-make-fs.pl:227
34321 "For other choices, see the L<qemu-img(1)> manpage. The only other choice "
34322 "that would really make sense here is C<qcow2>."
34327 #: ../tools/virt-make-fs.pl:234
34328 msgid "B<--type=E<lt>fsE<gt>>"
34333 #: ../tools/virt-make-fs.pl:236
34334 msgid "B<-t E<lt>fsE<gt>>"
34339 #: ../tools/virt-make-fs.pl:238
34340 msgid "Choose the output filesystem type."
34345 #: ../tools/virt-make-fs.pl:240
34346 msgid "The default is C<ext2>."
34351 #: ../tools/virt-make-fs.pl:242
34353 "Any filesystem which is supported read-write by libguestfs can be used here."
34358 #: ../tools/virt-make-fs.pl:249
34359 msgid "B<--partition>"
34364 #: ../tools/virt-make-fs.pl:251
34365 msgid "B<--partition=E<lt>parttypeE<gt>>"
34370 #: ../tools/virt-make-fs.pl:253
34372 "If specified, this flag adds an MBR partition table to the output disk image."
34377 #: ../tools/virt-make-fs.pl:256
34379 "You can change the partition table type, eg. C<--partition=gpt> for large "
34385 #: ../tools/virt-make-fs.pl:259
34387 "Note that if you just use a lonesome C<--partition>, the Perl option parser "
34388 "might consider the next parameter to be the partition type. For example:"
34393 #: ../tools/virt-make-fs.pl:263
34396 " virt-make-fs --partition input.tar ...\n"
34402 #: ../tools/virt-make-fs.pl:265
34404 "would cause virt-make-fs to think you wanted to use a partition type of "
34405 "C<input.tar> which is completely wrong. To avoid this, use C<--> (a double "
34406 "dash) between options and the input file argument:"
34411 #: ../tools/virt-make-fs.pl:269
34414 " virt-make-fs --partition -- input.tar ...\n"
34419 #: ../tools/virt-make-fs.pl:541
34421 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
34422 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
34423 "(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
34428 #: ../tools/virt-make-fs.pl:558
34431 " export LIBGUESTFS_DEBUG=1\n"
34432 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
34438 #: ../tools/virt-make-fs.pl:561
34440 "Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
34446 #: ../tools/virt-list-partitions.pl:32
34448 "virt-list-partitions - List partitions in a virtual machine or disk image"
34453 #: ../tools/virt-list-partitions.pl:36
34456 " virt-list-partitions [--options] domname\n"
34462 #: ../tools/virt-list-partitions.pl:38
34465 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
34471 #: ../tools/virt-list-partitions.pl:45
34473 "C<virt-list-partitions> is a command line tool to list the partitions that "
34474 "are contained in a virtual machine or disk image. It is mainly useful as a "
34475 "first step to using L<virt-resize(1)>."
34480 #: ../tools/virt-list-partitions.pl:50
34482 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
34483 "functionality. For more complex cases you should look at the L<guestfish(1)"
34489 #: ../tools/virt-list-partitions.pl:107
34490 msgid "B<-h> | B<--human-readable>"
34495 #: ../tools/virt-list-partitions.pl:109
34496 msgid "Show sizes in human-readable form (eg. \"1G\")."
34501 #: ../tools/virt-list-partitions.pl:117
34503 "With this option, C<virt-list-partitions> displays the type and size of each "
34504 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
34509 #: ../tools/virt-list-partitions.pl:124
34510 msgid "B<-t> | B<--total>"
34515 #: ../tools/virt-list-partitions.pl:126
34517 "Display the total size of each block device (as a separate row or rows)."
34522 #: ../tools/virt-list-partitions.pl:259
34524 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
34525 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib"
34526 "(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
34531 #: ../tools/virt-list-partitions.pl:275
34532 msgid "Copyright (C) 2009-2010 Red Hat Inc."