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-07-13 17:55+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"
839 #: ../src/guestfs.pod:357
840 msgid "and you can write tar output to a file descriptor C<fd> by doing:"
844 #: ../src/guestfs.pod:359
848 " snprintf (devfd, sizeof devfd, \"/dev/fd/%d\", fd);\n"
849 " guestfs_tar_out (g, \"/\", devfd);\n"
855 #: ../src/guestfs.pod:363
856 msgid "LISTING FILES"
861 #: ../src/guestfs.pod:365
863 "L</guestfs_ll> is just designed for humans to read (mainly when using the "
864 "L<guestfish(1)>-equivalent command C<ll>)."
869 #: ../src/guestfs.pod:368
871 "L</guestfs_ls> is a quick way to get a list of files in a directory from "
872 "programs, as a flat list of strings."
877 #: ../src/guestfs.pod:371
879 "L</guestfs_readdir> is a programmatic way to get a list of files in a "
880 "directory, plus additional information about each one. It is more "
881 "equivalent to using the L<readdir(3)> call on a local filesystem."
886 #: ../src/guestfs.pod:375
888 "L</guestfs_find> and L</guestfs_find0> can be used to recursively list files."
893 #: ../src/guestfs.pod:378
894 msgid "RUNNING COMMANDS"
899 #: ../src/guestfs.pod:380
901 "Although libguestfs is primarily an API for manipulating files inside guest "
902 "images, we also provide some limited facilities for running commands inside "
908 #: ../src/guestfs.pod:384
909 msgid "There are many limitations to this:"
914 #: ../src/guestfs.pod:388 ../src/guestfs.pod:393 ../src/guestfs.pod:398
915 #: ../src/guestfs.pod:402 ../src/guestfs.pod:407 ../src/guestfs.pod:411
916 #: ../src/guestfs.pod:416 ../src/guestfs.pod:421 ../src/guestfs.pod:1064
917 #: ../src/guestfs.pod:1068 ../src/guestfs.pod:1072 ../src/guestfs.pod:1077
918 #: ../src/guestfs.pod:1085 ../src/guestfs.pod:1104 ../src/guestfs.pod:1112
919 #: ../src/guestfs.pod:1134 ../src/guestfs.pod:1138 ../src/guestfs.pod:1142
920 #: ../src/guestfs.pod:1146 ../src/guestfs.pod:1150 ../src/guestfs.pod:1154
921 #: ../src/guestfs.pod:1643 ../src/guestfs.pod:1648 ../src/guestfs.pod:1652
922 #: ../src/guestfs.pod:1753 ../src/guestfs.pod:1758 ../src/guestfs.pod:1762
923 #: ../src/guestfs.pod:1772 ../src/guestfs.pod:2007 ../src/guestfs.pod:2012
924 #: ../src/guestfs.pod:2018 ../src/guestfs.pod:2026 ../src/guestfs.pod:2380
925 #: ../src/guestfs.pod:2386 ../src/guestfs.pod:2391 ../src/guestfs.pod:2397
926 #: ../src/guestfs.pod:2967 ../src/guestfs.pod:2971 ../src/guestfs.pod:2975
927 #: ../src/guestfs.pod:2979 ../src/guestfs-actions.pod:15
928 #: ../src/guestfs-actions.pod:22 ../src/guestfs-actions.pod:577
929 #: ../src/guestfs-actions.pod:585 ../src/guestfs-actions.pod:592
930 #: ../src/guestfs-actions.pod:599 ../src/guestfs-actions.pod:1597
931 #: ../src/guestfs-actions.pod:1601 ../src/guestfs-actions.pod:1605
932 #: ../src/guestfs-actions.pod:1609 ../src/guestfs-actions.pod:1617
933 #: ../src/guestfs-actions.pod:1621 ../src/guestfs-actions.pod:1625
934 #: ../src/guestfs-actions.pod:1635 ../src/guestfs-actions.pod:1639
935 #: ../src/guestfs-actions.pod:1643 ../src/guestfs-actions.pod:1781
936 #: ../src/guestfs-actions.pod:1785 ../src/guestfs-actions.pod:1790
937 #: ../src/guestfs-actions.pod:1795 ../src/guestfs-actions.pod:1856
938 #: ../src/guestfs-actions.pod:1860 ../src/guestfs-actions.pod:1865
939 #: ../fish/guestfish.pod:443 ../fish/guestfish.pod:447
940 #: ../fish/guestfish.pod:451 ../fish/guestfish.pod:455
941 #: ../fish/guestfish-actions.pod:13 ../fish/guestfish-actions.pod:20
942 #: ../fish/guestfish-actions.pod:380 ../fish/guestfish-actions.pod:388
943 #: ../fish/guestfish-actions.pod:395 ../fish/guestfish-actions.pod:402
944 #: ../fish/guestfish-actions.pod:1069 ../fish/guestfish-actions.pod:1073
945 #: ../fish/guestfish-actions.pod:1077 ../fish/guestfish-actions.pod:1081
946 #: ../fish/guestfish-actions.pod:1089 ../fish/guestfish-actions.pod:1093
947 #: ../fish/guestfish-actions.pod:1097 ../fish/guestfish-actions.pod:1107
948 #: ../fish/guestfish-actions.pod:1111 ../fish/guestfish-actions.pod:1115
949 #: ../fish/guestfish-actions.pod:1205 ../fish/guestfish-actions.pod:1209
950 #: ../fish/guestfish-actions.pod:1214 ../fish/guestfish-actions.pod:1219
951 #: ../fish/guestfish-actions.pod:1261 ../fish/guestfish-actions.pod:1265
952 #: ../fish/guestfish-actions.pod:1270 ../tools/virt-edit.pl:351
953 #: ../tools/virt-edit.pl:356 ../tools/virt-edit.pl:361
954 #: ../tools/virt-edit.pl:372 ../tools/virt-edit.pl:376
955 #: ../tools/virt-win-reg.pl:536 ../tools/virt-win-reg.pl:542
956 #: ../tools/virt-win-reg.pl:548
962 #: ../src/guestfs.pod:390
964 "The kernel version that the command runs under will be different from what "
970 #: ../src/guestfs.pod:395
972 "If the command needs to communicate with daemons, then most likely they "
978 #: ../src/guestfs.pod:400
979 msgid "The command will be running in limited memory."
984 #: ../src/guestfs.pod:404
986 "The network may not be available unless you enable it (see L</"
987 "guestfs_set_network>)."
992 #: ../src/guestfs.pod:409
993 msgid "Only supports Linux guests (not Windows, BSD, etc)."
998 #: ../src/guestfs.pod:413
1000 "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
1005 #: ../src/guestfs.pod:418
1007 "For SELinux guests, you may need to enable SELinux and load policy first. "
1008 "See L</SELINUX> in this manpage."
1013 #: ../src/guestfs.pod:423
1015 "I<Security:> It is not safe to run commands from untrusted, possibly "
1016 "malicious guests. These commands may attempt to exploit your program by "
1017 "sending unexpected output. They could also try to exploit the Linux kernel "
1018 "or qemu provided by the libguestfs appliance. They could use the network "
1019 "provided by the libguestfs appliance to bypass ordinary network partitions "
1020 "and firewalls. They could use the elevated privileges or different SELinux "
1021 "context of your program to their advantage."
1026 #: ../src/guestfs.pod:432
1028 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
1029 "(a script which runs when the guest next boots normally), and to have this "
1030 "script run the commands you want in the normal context of the running guest, "
1031 "network security and so on. For information about other security issues, "
1037 #: ../src/guestfs.pod:440
1039 "The two main API calls to run commands are L</guestfs_command> and L</"
1040 "guestfs_sh> (there are also variations)."
1045 #: ../src/guestfs.pod:443
1047 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
1048 "shell globs, redirections, etc will work."
1053 #: ../src/guestfs.pod:446
1054 msgid "CONFIGURATION FILES"
1059 #: ../src/guestfs.pod:448
1061 "To read and write configuration files in Linux guest filesystems, we "
1062 "strongly recommend using Augeas. For example, Augeas understands how to "
1063 "read and write, say, a Linux shadow password file or X.org configuration "
1064 "file, and so avoids you having to write that code."
1069 #: ../src/guestfs.pod:453
1071 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs. We don't "
1072 "document Augeas itself here because there is excellent documentation on the "
1073 "L<http://augeas.net/> website."
1078 #: ../src/guestfs.pod:457
1080 "If you don't want to use Augeas (you fool!) then try calling L</"
1081 "guestfs_read_lines> to get the file as a list of lines which you can iterate "
1087 #: ../src/guestfs.pod:461
1093 #: ../src/guestfs.pod:463
1095 "We support SELinux guests. To ensure that labeling happens correctly in "
1096 "SELinux guests, you need to enable SELinux and load the guest's policy:"
1101 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1257 ../src/guestfs.pod:1395
1102 #: ../src/guestfs.pod:2425
1108 #: ../src/guestfs.pod:471
1109 msgid "Before launching, do:"
1114 #: ../src/guestfs.pod:473
1117 " guestfs_set_selinux (g, 1);\n"
1123 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1261 ../src/guestfs.pod:1399
1124 #: ../src/guestfs.pod:2450
1130 #: ../src/guestfs.pod:477
1132 "After mounting the guest's filesystem(s), load the policy. This is best "
1133 "done by running the L<load_policy(8)> command in the guest itself:"
1138 #: ../src/guestfs.pod:481
1141 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
1147 #: ../src/guestfs.pod:483
1149 "(Older versions of C<load_policy> require you to specify the name of the "
1155 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1405
1161 #: ../src/guestfs.pod:488
1163 "Optionally, set the security context for the API. The correct security "
1164 "context to use can only be known by inspecting the guest. As an example:"
1169 #: ../src/guestfs.pod:492
1172 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
1178 #: ../src/guestfs.pod:496
1179 msgid "This will work for running commands and editing existing files."
1184 #: ../src/guestfs.pod:498
1186 "When new files are created, you may need to label them explicitly, for "
1187 "example by running the external command C<restorecon pathname>."
1192 #: ../src/guestfs.pod:502
1198 #: ../src/guestfs.pod:504
1200 "Certain calls are affected by the current file mode creation mask (the "
1201 "\"umask\"). In particular ones which create files or directories, such as "
1202 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>. This affects "
1203 "either the default mode that the file is created with or modifies the mode "
1209 #: ../src/guestfs.pod:510
1211 "The default umask is C<022>, so files are created with modes such as C<0644> "
1212 "and directories with C<0755>."
1217 #: ../src/guestfs.pod:513
1219 "There are two ways to avoid being affected by umask. Either set umask to 0 "
1220 "(call C<guestfs_umask (g, 0)> early after launching). Or call L</"
1221 "guestfs_chmod> after creating each file or directory."
1226 #: ../src/guestfs.pod:517
1227 msgid "For more information about umask, see L<umask(2)>."
1232 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:765
1233 msgid "ENCRYPTED DISKS"
1238 #: ../src/guestfs.pod:521
1240 "Libguestfs allows you to access Linux guests which have been encrypted using "
1241 "whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1242 "standard. This includes nearly all whole disk encryption systems used by "
1243 "modern Linux guests."
1248 #: ../src/guestfs.pod:527
1250 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1251 "returns the string C<crypto_LUKS>)."
1256 #: ../src/guestfs.pod:530
1258 "Then open these devices by calling L</guestfs_luks_open>. Obviously you "
1259 "will require the passphrase!"
1264 #: ../src/guestfs.pod:533
1266 "Opening a LUKS device creates a new device mapper device called C</dev/"
1267 "mapper/mapname> (where C<mapname> is the string you supply to L</"
1268 "guestfs_luks_open>). Reads and writes to this mapper device are decrypted "
1269 "from and encrypted to the underlying block device respectively."
1274 #: ../src/guestfs.pod:539
1276 "LVM volume groups on the device can be made visible by calling L</"
1277 "guestfs_vgscan> followed by L</guestfs_vg_activate_all>. The logical volume"
1278 "(s) can now be mounted in the usual way."
1283 #: ../src/guestfs.pod:543
1285 "Use the reverse process to close a LUKS device. Unmount any logical volumes "
1286 "on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1287 "[\"/dev/VG\"])>. Then close the mapper device by calling L</"
1288 "guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1289 "underlying encrypted block device)."
1294 #: ../src/guestfs.pod:550
1299 #: ../src/guestfs.pod:552
1301 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1302 "contains operating systems, an install CD or a live CD. (These APIs used to "
1303 "be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since "
1304 "version 1.5.3 the most frequently used part of this library has been "
1305 "rewritten in C and moved into the core code)."
1310 #: ../src/guestfs.pod:559
1312 "Add all disks belonging to the unknown virtual machine and call L</"
1313 "guestfs_launch> in the usual way."
1318 #: ../src/guestfs.pod:562
1320 "Then call L</guestfs_inspect_os>. This function uses other libguestfs calls "
1321 "and certain heuristics, and returns a list of operating systems that were "
1322 "found. An empty list means none were found. A single element is the root "
1323 "filesystem of the operating system. For dual- or multi-boot guests, "
1324 "multiple roots can be returned, each one corresponding to a separate "
1325 "operating system. (Multi-boot virtual machines are extremely rare in the "
1326 "world of virtualization, but since this scenario can happen, we have built "
1327 "libguestfs to deal with it.)"
1332 #: ../src/guestfs.pod:571
1334 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1335 "to get additional details about that operating system. For example, call L</"
1336 "guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
1337 "Windows and Linux-based operating systems respectively."
1342 #: ../src/guestfs.pod:577
1344 "Un*x-like and Linux-based operating systems usually consist of several "
1345 "filesystems which are mounted at boot time (for example, a separate boot "
1346 "partition mounted on C</boot>). The inspection rules are able to detect how "
1347 "filesystems correspond to mount points. Call "
1348 "C<guestfs_inspect_get_mountpoints> to get this mapping. It might return a "
1349 "hash table like this example:"
1354 #: ../src/guestfs.pod:584
1357 " /boot => /dev/sda1\n"
1358 " / => /dev/vg_guest/lv_root\n"
1359 " /usr => /dev/vg_guest/lv_usr\n"
1365 #: ../src/guestfs.pod:588
1367 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1368 "filesystems as suggested."
1373 #: ../src/guestfs.pod:591
1375 "Be careful to mount filesystems in the right order (eg. C</> before C</"
1376 "usr>). Sorting the keys of the hash by length, shortest first, should work."
1381 #: ../src/guestfs.pod:595
1383 "Inspection currently only works for some common operating systems. "
1384 "Contributors are welcome to send patches for other operating systems that we "
1385 "currently cannot detect."
1390 #: ../src/guestfs.pod:599
1392 "Encrypted disks must be opened before inspection. See L</ENCRYPTED DISKS> "
1393 "for more details. The L</guestfs_inspect_os> function just ignores any "
1394 "encrypted devices."
1399 #: ../src/guestfs.pod:603
1401 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1402 "inspection and caches the results in the guest handle. Subsequent calls to "
1403 "C<guestfs_inspect_get_*> return this cached information, but I<do not> re-"
1404 "read the disks. If you change the content of the guest disks, you can redo "
1405 "inspection by calling L</guestfs_inspect_os> again. (L</"
1406 "guestfs_inspect_list_applications> works a little differently from the other "
1407 "calls and does read the disks. See documentation for that function for "
1412 #: ../src/guestfs.pod:612
1413 msgid "INSPECTING INSTALL DISKS"
1417 #: ../src/guestfs.pod:614
1419 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1424 #: ../src/guestfs.pod:617
1426 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1427 "system, which currently can be C<installed> (a regular operating system) or "
1428 "C<installer> (some sort of install disk)."
1432 #: ../src/guestfs.pod:621
1434 "Further information is available about the operating system that can be "
1435 "installed using the regular inspection APIs like L</"
1436 "guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> etc."
1440 #: ../src/guestfs.pod:626
1442 "Some additional information specific to installer disks is also available "
1443 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and L</"
1444 "guestfs_inspect_is_multipart> calls."
1449 #: ../src/guestfs.pod:631
1450 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1455 #: ../src/guestfs.pod:633
1457 "Libguestfs can mount NTFS partitions. It does this using the L<http://www."
1458 "ntfs-3g.org/> driver."
1463 #: ../src/guestfs.pod:636
1464 msgid "DRIVE LETTERS AND PATHS"
1469 #: ../src/guestfs.pod:638
1471 "DOS and Windows still use drive letters, and the filesystems are always "
1472 "treated as case insensitive by Windows itself, and therefore you might find "
1473 "a Windows configuration file referring to a path like C<c:\\windows"
1474 "\\system32>. When the filesystem is mounted in libguestfs, that directory "
1475 "might be referred to as C</WINDOWS/System32>."
1479 #: ../src/guestfs.pod:644
1481 "Drive letter mappings can be found using inspection (see L</INSPECTION> and "
1482 "L</guestfs_inspect_get_drive_mappings>)"
1486 #: ../src/guestfs.pod:647
1488 "Dealing with separator characters (backslash vs forward slash) is outside "
1489 "the scope of libguestfs, but usually a simple character replacement will "
1494 #: ../src/guestfs.pod:651
1496 "To resolve the case insensitivity of paths, call L</"
1497 "guestfs_case_sensitive_path>."
1502 #: ../src/guestfs.pod:654
1503 msgid "ACCESSING THE WINDOWS REGISTRY"
1508 #: ../src/guestfs.pod:656
1510 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1511 "files, through the library C<hivex> which is part of the libguestfs project "
1512 "although ships as a separate tarball. You have to locate and download the "
1513 "hive file(s) yourself, and then pass them to C<hivex> functions. See also "
1514 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and L<virt-win-"
1515 "reg(1)> for more help on this issue."
1520 #: ../src/guestfs.pod:664
1521 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1526 #: ../src/guestfs.pod:666
1528 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1529 "provide something which looks like a Linux symlink. The way it tries to do "
1530 "the rewriting is described here:"
1535 #: ../src/guestfs.pod:670
1537 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1543 #: ../src/guestfs.pod:672
1545 "The essential problem is that ntfs-3g simply does not have enough "
1546 "information to do a correct job. NTFS links can contain drive letters and "
1547 "references to external device GUIDs that ntfs-3g has no way of resolving. "
1548 "It is almost certainly the case that libguestfs callers should ignore what "
1549 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1554 #: ../src/guestfs.pod:679
1556 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use L</"
1557 "guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1558 "attribute, and read the raw reparse data from that (you can find the format "
1559 "documented in various places around the web)."
1564 #: ../src/guestfs.pod:684
1565 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1570 #: ../src/guestfs.pod:686
1572 "There are other useful extended attributes that can be read from ntfs-3g "
1573 "filesystems (using L</guestfs_getxattr>). See:"
1578 #: ../src/guestfs.pod:689
1580 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1585 #: ../src/guestfs.pod:691
1586 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1591 #: ../src/guestfs.pod:693
1593 "Although we don't want to discourage you from using the C API, we will "
1594 "mention here that the same API is also available in other languages."
1598 #: ../src/guestfs.pod:696
1600 "The API is broadly identical in all supported languages. This means that "
1601 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
1602 "in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1603 "OCaml. In other words, a straightforward, predictable isomorphism between "
1609 #: ../src/guestfs.pod:702
1611 "Error messages are automatically transformed into exceptions if the language "
1617 #: ../src/guestfs.pod:705
1619 "We don't try to \"object orientify\" parts of the API in OO languages, "
1620 "although contributors are welcome to write higher level APIs above what we "
1621 "provide in their favourite languages if they wish."
1626 #: ../src/guestfs.pod:711
1632 #: ../src/guestfs.pod:713
1634 "You can use the I<guestfs.h> header file from C++ programs. The C++ API is "
1635 "identical to the C API. C++ classes and exceptions are not used."
1640 #: ../src/guestfs.pod:717
1646 #: ../src/guestfs.pod:719
1648 "The C# bindings are highly experimental. Please read the warnings at the "
1649 "top of C<csharp/Libguestfs.cs>."
1654 #: ../src/guestfs.pod:722
1660 #: ../src/guestfs.pod:724
1662 "This is the only language binding that is working but incomplete. Only "
1663 "calls which return simple integers have been bound in Haskell, and we are "
1664 "looking for help to complete this binding."
1669 #: ../src/guestfs.pod:728
1675 #: ../src/guestfs.pod:730
1677 "Full documentation is contained in the Javadoc which is distributed with "
1683 #: ../src/guestfs.pod:733
1688 #: ../src/guestfs.pod:735
1689 msgid "See L<guestfs-ocaml(3)>."
1694 #: ../src/guestfs.pod:737
1699 #: ../src/guestfs.pod:739
1700 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1705 #: ../src/guestfs.pod:741
1711 #: ../src/guestfs.pod:743
1713 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1714 "the php-libguestfs package for your distribution."
1719 #: ../src/guestfs.pod:746
1720 msgid "The PHP binding only works correctly on 64 bit machines."
1725 #: ../src/guestfs.pod:748
1730 #: ../src/guestfs.pod:750
1731 msgid "See L<guestfs-python(3)>."
1736 #: ../src/guestfs.pod:752
1741 #: ../src/guestfs.pod:754
1742 msgid "See L<guestfs-ruby(3)>."
1747 #: ../src/guestfs.pod:756
1748 msgid "B<shell scripts>"
1752 #: ../src/guestfs.pod:758
1753 msgid "See L<guestfish(1)>."
1758 #: ../src/guestfs.pod:762
1759 msgid "LIBGUESTFS GOTCHAS"
1764 #: ../src/guestfs.pod:764
1766 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1767 "system [...] that works in the way it is documented but is counterintuitive "
1768 "and almost invites mistakes.\""
1773 #: ../src/guestfs.pod:768
1775 "Since we developed libguestfs and the associated tools, there are several "
1776 "things we would have designed differently, but are now stuck with for "
1777 "backwards compatibility or other reasons. If there is ever a libguestfs 2.0 "
1778 "release, you can expect these to change. Beware of them."
1783 #: ../src/guestfs.pod:776
1784 msgid "Autosync / forgetting to sync."
1788 #: ../src/guestfs.pod:778
1790 "I<Update:> Autosync is enabled by default for all API users starting from "
1791 "libguestfs 1.5.24. This section only applies to older versions."
1796 #: ../src/guestfs.pod:781
1798 "When modifying a filesystem from C or another language, you B<must> unmount "
1799 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1800 "libguestfs handle. You can also call:"
1805 #: ../src/guestfs.pod:785
1808 " guestfs_set_autosync (g, 1);\n"
1814 #: ../src/guestfs.pod:787
1816 "to have the unmount/sync done automatically for you when the handle 'g' is "
1817 "closed. (This feature is called \"autosync\", L</guestfs_set_autosync> q.v.)"
1822 #: ../src/guestfs.pod:791
1824 "If you forget to do this, then it is entirely possible that your changes "
1825 "won't be written out, or will be partially written, or (very rarely) that "
1826 "you'll get disk corruption."
1831 #: ../src/guestfs.pod:795
1833 "Note that in L<guestfish(3)> autosync is the default. So quick and dirty "
1834 "guestfish scripts that forget to sync will work just fine, which can make "
1835 "this very puzzling if you are trying to debug a problem."
1840 #: ../src/guestfs.pod:799
1841 msgid "Mount option C<-o sync> should not be the default."
1846 #: ../src/guestfs.pod:801
1848 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly. "
1849 "However C<-o sync> does not add any reliability benefit, but does have a "
1850 "very large performance impact."
1855 #: ../src/guestfs.pod:805
1857 "The work around is to use L</guestfs_mount_options> and set the mount "
1858 "options that you actually want to use."
1863 #: ../src/guestfs.pod:808
1864 msgid "Read-only should be the default."
1869 #: ../src/guestfs.pod:810
1871 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1872 "specify I<--rw> if you want to make changes to the image."
1877 #: ../src/guestfs.pod:813
1878 msgid "This would reduce the potential to corrupt live VM images."
1883 #: ../src/guestfs.pod:815
1885 "Note that many filesystems change the disk when you just mount and unmount, "
1886 "even if you didn't perform any writes. You need to use L</"
1887 "guestfs_add_drive_ro> to guarantee that the disk is not changed."
1892 #: ../src/guestfs.pod:819
1893 msgid "guestfish command line is hard to use."
1898 #: ../src/guestfs.pod:821
1900 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1901 "examination). It tries to run a guestfish command C<disk.img> which doesn't "
1902 "exist, so it fails. In earlier versions of guestfish the error message was "
1903 "also unintuitive, but we have corrected this since. Like the Bourne shell, "
1904 "we should have used C<guestfish -c command> to run commands."
1909 #: ../src/guestfs.pod:828
1910 msgid "guestfish megabyte modifiers don't work right on all commands"
1915 #: ../src/guestfs.pod:830
1917 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1918 "other modifiers). What guestfish actually does is to multiply the number "
1919 "part by the modifier part and pass the result to the C API. However this "
1920 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1921 "expecting some other unit (eg. megabytes)."
1926 #: ../src/guestfs.pod:837
1927 msgid "The most common is L</guestfs_lvcreate>. The guestfish command:"
1932 #: ../src/guestfs.pod:839
1935 " lvcreate LV VG 100M\n"
1941 #: ../src/guestfs.pod:841
1943 "does not do what you might expect. Instead because L</guestfs_lvcreate> is "
1944 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1945 "megabytes * megabytes) logical volume. The error message you get from this "
1946 "is also a little obscure."
1951 #: ../src/guestfs.pod:846
1953 "This could be fixed in the generator by specially marking parameters and "
1954 "return values which take bytes or other units."
1959 #: ../src/guestfs.pod:849
1960 msgid "Ambiguity between devices and paths"
1965 #: ../src/guestfs.pod:851
1967 "There is a subtle ambiguity in the API between a device name (eg. C</dev/"
1968 "sdb2>) and a similar pathname. A file might just happen to be called "
1969 "C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1974 #: ../src/guestfs.pod:856
1976 "In the current API we usually resolve this ambiguity by having two separate "
1977 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>. "
1978 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1979 "detecting if the path supplied begins with C</dev/>."
1984 #: ../src/guestfs.pod:862
1986 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1987 "make paths/devices into structured names. One way to do this would be to "
1988 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1989 "aspect of grub. Another way would be to use a structured type, equivalent "
1990 "to this OCaml type:"
1995 #: ../src/guestfs.pod:868
1998 " type path = Path of string | Device of int | Partition of int * int\n"
2004 #: ../src/guestfs.pod:870
2005 msgid "which would allow you to pass arguments like:"
2010 #: ../src/guestfs.pod:872
2013 " Path \"/foo/bar\"\n"
2014 " Device 1 (* /dev/sdb, or perhaps /dev/sda *)\n"
2015 " Partition (1, 2) (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
2016 " Path \"/dev/sdb2\" (* not a device *)\n"
2022 #: ../src/guestfs.pod:877
2024 "As you can see there are still problems to resolve even with this "
2025 "representation. Also consider how it might work in guestfish."
2030 #: ../src/guestfs.pod:882
2031 msgid "KEYS AND PASSPHRASES"
2036 #: ../src/guestfs.pod:884
2038 "Certain libguestfs calls take a parameter that contains sensitive key "
2039 "material, passed in as a C string."
2044 #: ../src/guestfs.pod:887
2046 "In the future we would hope to change the libguestfs implementation so that "
2047 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
2048 "swap. However this is I<not> done at the moment, because of the complexity "
2049 "of such an implementation."
2054 #: ../src/guestfs.pod:892
2056 "Therefore you should be aware that any key parameter you pass to libguestfs "
2057 "might end up being written out to the swap partition. If this is a concern, "
2058 "scrub the swap partition or don't use libguestfs on encrypted devices."
2063 #: ../src/guestfs.pod:897
2064 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
2069 #: ../src/guestfs.pod:899
2071 "All high-level libguestfs actions are synchronous. If you want to use "
2072 "libguestfs asynchronously then you must create a thread."
2077 #: ../src/guestfs.pod:902
2079 "Only use the handle from a single thread. Either use the handle exclusively "
2080 "from one thread, or provide your own mutex so that two threads cannot issue "
2081 "calls on the same handle at the same time."
2086 #: ../src/guestfs.pod:906
2088 "See the graphical program guestfs-browser for one possible architecture for "
2089 "multithreaded programs using libvirt and libguestfs."
2094 #: ../src/guestfs.pod:909
2099 #: ../src/guestfs.pod:911
2101 "Libguestfs needs a supermin appliance, which it finds by looking along an "
2107 #: ../src/guestfs.pod:914
2109 "By default it looks for these in the directory C<$libdir/guestfs> (eg. C</"
2110 "usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
2115 #: ../src/guestfs.pod:917
2117 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
2118 "to change the directories that libguestfs will search in. The value is a "
2119 "colon-separated list of paths. The current directory is I<not> searched "
2120 "unless the path contains an empty element or C<.>. For example "
2121 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
2122 "then C</usr/lib/guestfs>."
2127 #: ../src/guestfs.pod:924
2128 msgid "QEMU WRAPPERS"
2133 #: ../src/guestfs.pod:926
2135 "If you want to compile your own qemu, run qemu from a non-standard location, "
2136 "or pass extra arguments to qemu, then you can write a shell-script wrapper "
2142 #: ../src/guestfs.pod:930
2144 "There is one important rule to remember: you I<must C<exec qemu>> as the "
2145 "last command in the shell script (so that qemu replaces the shell and "
2146 "becomes the direct child of the libguestfs-using program). If you don't do "
2147 "this, then the qemu process won't be cleaned up correctly."
2152 #: ../src/guestfs.pod:935
2154 "Here is an example of a wrapper, where I have built my own copy of qemu from "
2160 #: ../src/guestfs.pod:938
2164 " qemudir=/home/rjones/d/qemu\n"
2165 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios \"$@\"\n"
2171 #: ../src/guestfs.pod:942
2173 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
2174 "then use it by setting the LIBGUESTFS_QEMU environment variable. For "
2180 #: ../src/guestfs.pod:946
2183 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
2189 #: ../src/guestfs.pod:948
2191 "Note that libguestfs also calls qemu with the -help and -version options in "
2192 "order to determine features."
2196 #: ../src/guestfs.pod:951
2197 msgid "ATTACHING TO RUNNING DAEMONS"
2201 #: ../src/guestfs.pod:953
2203 "I<Note (1):> This is B<highly experimental> and has a tendency to eat "
2204 "babies. Use with caution."
2208 #: ../src/guestfs.pod:956
2210 "I<Note (2):> This section explains how to attach to a running daemon from a "
2211 "low level perspective. For most users, simply using virt tools such as "
2212 "L<guestfish(1)> with the I<--live> option will \"just work\"."
2216 #: ../src/guestfs.pod:960
2217 msgid "Using guestfs_set_attach_method"
2221 #: ../src/guestfs.pod:962
2223 "By calling L</guestfs_set_attach_method> you can change how the library "
2224 "connects to the C<guestfsd> daemon in L</guestfs_launch> (read L</"
2225 "ARCHITECTURE> for some background)."
2229 #: ../src/guestfs.pod:966
2231 "The normal attach method is C<appliance>, where a small appliance is created "
2232 "containing the daemon, and then the library connects to this."
2236 #: ../src/guestfs.pod:969
2238 "Setting attach method to C<unix:I<path>> (where I<path> is the path of a "
2239 "Unix domain socket) causes L</guestfs_launch> to connect to an existing "
2240 "daemon over the Unix domain socket."
2244 #: ../src/guestfs.pod:973
2246 "The normal use for this is to connect to a running virtual machine that "
2247 "contains a C<guestfsd> daemon, and send commands so you can read and write "
2248 "files inside the live virtual machine."
2252 #: ../src/guestfs.pod:977
2253 msgid "Using guestfs_add_domain with live flag"
2257 #: ../src/guestfs.pod:979
2259 "L</guestfs_add_domain> provides some help for getting the correct attach "
2260 "method. If you pass the C<live> option to this function, then (if the "
2261 "virtual machine is running) it will examine the libvirt XML looking for a "
2262 "virtio-serial channel to connect to:"
2266 #: ../src/guestfs.pod:985
2273 " <channel type='unix'>\n"
2274 " <source mode='bind' path='/path/to/socket'/>\n"
2275 " <target type='virtio' name='org.libguestfs.channel.0'/>\n"
2284 #: ../src/guestfs.pod:997
2286 "L</guestfs_add_domain> extracts C</path/to/socket> and sets the attach "
2287 "method to C<unix:/path/to/socket>."
2291 #: ../src/guestfs.pod:1000
2293 "Some of the libguestfs tools (including guestfish) support a I<--live> "
2294 "option which is passed through to L</guestfs_add_domain> thus allowing you "
2295 "to attach to and modify live virtual machines."
2299 #: ../src/guestfs.pod:1004
2301 "The virtual machine needs to have been set up beforehand so that it has the "
2302 "virtio-serial channel and so that guestfsd is running inside it."
2307 #: ../src/guestfs.pod:1008
2308 msgid "ABI GUARANTEE"
2313 #: ../src/guestfs.pod:1010
2315 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
2316 "actions as outlined in this section. Although we will deprecate some "
2317 "actions, for example if they get replaced by newer calls, we will keep the "
2318 "old actions forever. This allows you the developer to program in confidence "
2319 "against the libguestfs API."
2324 #: ../src/guestfs.pod:1016
2325 msgid "BLOCK DEVICE NAMING"
2330 #: ../src/guestfs.pod:1018
2332 "In the kernel there is now quite a profusion of schemata for naming block "
2333 "devices (in this context, by I<block device> I mean a physical or virtual "
2334 "hard drive). The original Linux IDE driver used names starting with C</dev/"
2335 "hd*>. SCSI devices have historically used a different naming scheme, C</dev/"
2336 "sd*>. When the Linux kernel I<libata> driver became a popular replacement "
2337 "for the old IDE driver (particularly for SATA devices) those devices also "
2338 "used the C</dev/sd*> scheme. Additionally we now have virtual machines with "
2339 "paravirtualized drivers. This has created several different naming systems, "
2340 "such as C</dev/vd*> for virtio disks and C</dev/xvd*> for Xen PV disks."
2345 #: ../src/guestfs.pod:1030
2347 "As discussed above, libguestfs uses a qemu appliance running an embedded "
2348 "Linux kernel to access block devices. We can run a variety of appliances "
2349 "based on a variety of Linux kernels."
2354 #: ../src/guestfs.pod:1034
2356 "This causes a problem for libguestfs because many API calls use device or "
2357 "partition names. Working scripts and the recipe (example) scripts that we "
2358 "make available over the internet could fail if the naming scheme changes."
2363 #: ../src/guestfs.pod:1039
2365 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>. "
2366 "Internally C</dev/sd*> names are translated, if necessary, to other names as "
2367 "required. For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
2368 "device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2373 #: ../src/guestfs.pod:1045
2375 "Note that this I<only> applies to parameters. The L</guestfs_list_devices>, "
2376 "L</guestfs_list_partitions> and similar calls return the true names of the "
2377 "devices and partitions as known to the appliance."
2382 #: ../src/guestfs.pod:1050
2383 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2388 #: ../src/guestfs.pod:1052
2390 "Usually this translation is transparent. However in some (very rare) cases "
2391 "you may need to know the exact algorithm. Such cases include where you use "
2392 "L</guestfs_config> to add a mixture of virtio and IDE devices to the qemu-"
2393 "based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> devices."
2398 #: ../src/guestfs.pod:1058
2400 "The algorithm is applied only to I<parameters> which are known to be either "
2401 "device or partition names. Return values from functions such as L</"
2402 "guestfs_list_devices> are never changed."
2407 #: ../src/guestfs.pod:1066
2408 msgid "Is the string a parameter which is a device or partition name?"
2413 #: ../src/guestfs.pod:1070
2414 msgid "Does the string begin with C</dev/sd>?"
2419 #: ../src/guestfs.pod:1074
2421 "Does the named device exist? If so, we use that device. However if I<not> "
2422 "then we continue with this algorithm."
2427 #: ../src/guestfs.pod:1079
2428 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2433 #: ../src/guestfs.pod:1081
2434 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2439 #: ../src/guestfs.pod:1083
2440 msgid "If that named device exists, use it. If not, continue."
2445 #: ../src/guestfs.pod:1087
2446 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2451 #: ../src/guestfs.pod:1089
2452 msgid "If that named device exists, use it. If not, return an error."
2457 #: ../src/guestfs.pod:1093
2458 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2463 #: ../src/guestfs.pod:1095
2465 "Although the standard naming scheme and automatic translation is useful for "
2466 "simple programs and guestfish scripts, for larger programs it is best not to "
2467 "rely on this mechanism."
2472 #: ../src/guestfs.pod:1099
2474 "Where possible for maximum future portability programs using libguestfs "
2475 "should use these future-proof techniques:"
2480 #: ../src/guestfs.pod:1106
2482 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2483 "device names, and then use those names directly."
2488 #: ../src/guestfs.pod:1109
2490 "Since those device names exist by definition, they will never be translated."
2495 #: ../src/guestfs.pod:1114
2497 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2498 "filesystem labels."
2503 #: ../src/guestfs.pod:1119
2509 #: ../src/guestfs.pod:1121
2511 "This section discusses security implications of using libguestfs, "
2512 "particularly with untrusted or malicious guests or disk images."
2517 #: ../src/guestfs.pod:1124
2518 msgid "GENERAL SECURITY CONSIDERATIONS"
2523 #: ../src/guestfs.pod:1126
2525 "Be careful with any files or data that you download from a guest (by "
2526 "\"download\" we mean not just the L</guestfs_download> command but any "
2527 "command that reads files, filenames, directories or anything else from a "
2528 "disk image). An attacker could manipulate the data to fool your program "
2529 "into doing the wrong thing. Consider cases such as:"
2534 #: ../src/guestfs.pod:1136
2535 msgid "the data (file etc) not being present"
2540 #: ../src/guestfs.pod:1140
2541 msgid "being present but empty"
2546 #: ../src/guestfs.pod:1144
2547 msgid "being much larger than normal"
2552 #: ../src/guestfs.pod:1148
2553 msgid "containing arbitrary 8 bit data"
2558 #: ../src/guestfs.pod:1152
2559 msgid "being in an unexpected character encoding"
2564 #: ../src/guestfs.pod:1156
2565 msgid "containing homoglyphs."
2570 #: ../src/guestfs.pod:1160
2571 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2576 #: ../src/guestfs.pod:1162
2578 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2579 "(VFS) module can sometimes be escalated into exploits by deliberately "
2580 "creating a malicious, malformed filesystem. These exploits are very severe "
2581 "for two reasons. Firstly there are very many filesystem drivers in the "
2582 "kernel, and many of them are infrequently used and not much developer "
2583 "attention has been paid to the code. Linux userspace helps potential "
2584 "crackers by detecting the filesystem type and automatically choosing the "
2585 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2586 "the administrator. Secondly, a kernel-level exploit is like a local root "
2587 "exploit (worse in some ways), giving immediate and total access to the "
2588 "system right down to the hardware level."
2593 #: ../src/guestfs.pod:1175
2595 "That explains why you should never mount a filesystem from an untrusted "
2596 "guest on your host kernel. How about libguestfs? We run a Linux kernel "
2597 "inside a qemu virtual machine, usually running as a non-root user. The "
2598 "attacker would need to write a filesystem which first exploited the kernel, "
2599 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2600 "the libguestfs protocol, and finally to be as serious as the host kernel "
2601 "exploit it would need to escalate its privileges to root. This multi-step "
2602 "escalation, performed by a static piece of data, is thought to be extremely "
2603 "hard to do, although we never say 'never' about security issues."
2608 #: ../src/guestfs.pod:1186
2610 "In any case callers can reduce the attack surface by forcing the filesystem "
2611 "type when mounting (use L</guestfs_mount_vfs>)."
2616 #: ../src/guestfs.pod:1189
2617 msgid "PROTOCOL SECURITY"
2622 #: ../src/guestfs.pod:1191
2624 "The protocol is designed to be secure, being based on RFC 4506 (XDR) with a "
2625 "defined upper message size. However a program that uses libguestfs must "
2626 "also take care - for example you can write a program that downloads a binary "
2627 "from a disk image and executes it locally, and no amount of protocol "
2628 "security will save you from the consequences."
2633 #: ../src/guestfs.pod:1197
2634 msgid "INSPECTION SECURITY"
2639 #: ../src/guestfs.pod:1199
2641 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2642 "directly from the guest, and these could contain any 8 bit data. Callers "
2643 "should be careful to escape these before printing them to a structured file "
2644 "(for example, use HTML escaping if creating a web page)."
2649 #: ../src/guestfs.pod:1205
2651 "Guest configuration may be altered in unusual ways by the administrator of "
2652 "the virtual machine, and may not reflect reality (particularly for untrusted "
2653 "or actively malicious guests). For example we parse the hostname from "
2654 "configuration files like C</etc/sysconfig/network> that we find in the "
2655 "guest, but the guest administrator can easily manipulate these files to "
2656 "provide the wrong hostname."
2661 #: ../src/guestfs.pod:1213
2663 "The inspection API parses guest configuration using two external libraries: "
2664 "Augeas (Linux configuration) and hivex (Windows Registry). Both are "
2665 "designed to be robust in the face of malicious data, although denial of "
2666 "service attacks are still possible, for example with oversized configuration "
2672 #: ../src/guestfs.pod:1219
2673 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2678 #: ../src/guestfs.pod:1221
2680 "Be very cautious about running commands from the guest. By running a "
2681 "command in the guest, you are giving CPU time to a binary that you do not "
2682 "control, under the same user account as the library, albeit wrapped in qemu "
2683 "virtualization. More information and alternatives can be found in the "
2684 "section L</RUNNING COMMANDS>."
2689 #: ../src/guestfs.pod:1227
2690 msgid "CVE-2010-3851"
2695 #: ../src/guestfs.pod:1229
2696 msgid "https://bugzilla.redhat.com/642934"
2701 #: ../src/guestfs.pod:1231
2703 "This security bug concerns the automatic disk format detection that qemu "
2704 "does on disk images."
2709 #: ../src/guestfs.pod:1234
2711 "A raw disk image is just the raw bytes, there is no header. Other disk "
2712 "images like qcow2 contain a special header. Qemu deals with this by looking "
2713 "for one of the known headers, and if none is found then assuming the disk "
2714 "image must be raw."
2719 #: ../src/guestfs.pod:1239
2721 "This allows a guest which has been given a raw disk image to write some "
2722 "other header. At next boot (or when the disk image is accessed by "
2723 "libguestfs) qemu would do autodetection and think the disk image format was, "
2724 "say, qcow2 based on the header written by the guest."
2729 #: ../src/guestfs.pod:1244
2731 "This in itself would not be a problem, but qcow2 offers many features, one "
2732 "of which is to allow a disk image to refer to another image (called the "
2733 "\"backing disk\"). It does this by placing the path to the backing disk "
2734 "into the qcow2 header. This path is not validated and could point to any "
2735 "host file (eg. \"/etc/passwd\"). The backing disk is then exposed through "
2736 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2737 "control of the attacker."
2742 #: ../src/guestfs.pod:1252
2744 "In libguestfs this is rather hard to exploit except under two circumstances:"
2749 #: ../src/guestfs.pod:1259
2750 msgid "You have enabled the network or have opened the disk in write mode."
2755 #: ../src/guestfs.pod:1263
2757 "You are also running untrusted code from the guest (see L</RUNNING "
2763 #: ../src/guestfs.pod:1268
2765 "The way to avoid this is to specify the expected disk format when adding "
2766 "disks (the optional C<format> option to L</guestfs_add_drive_opts>). You "
2767 "should always do this if the disk is raw format, and it's a good idea for "
2773 #: ../src/guestfs.pod:1273
2775 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2776 "format is fetched from libvirt and passed through."
2781 #: ../src/guestfs.pod:1276
2783 "For libguestfs tools, use the I<--format> command line parameter as "
2789 #: ../src/guestfs.pod:1279
2790 msgid "CONNECTION MANAGEMENT"
2795 #: ../src/guestfs.pod:1281
2801 #: ../src/guestfs.pod:1283
2803 "C<guestfs_h> is the opaque type representing a connection handle. Create a "
2804 "handle by calling L</guestfs_create>. Call L</guestfs_close> to free the "
2805 "handle and release all resources used."
2809 #: ../src/guestfs.pod:1287
2811 "For information on using multiple handles and threads, see the section L</"
2812 "MULTIPLE HANDLES AND MULTIPLE THREADS> above."
2817 #: ../src/guestfs.pod:1290
2818 msgid "guestfs_create"
2823 #: ../src/guestfs.pod:1292
2826 " guestfs_h *guestfs_create (void);\n"
2832 #: ../src/guestfs.pod:1294
2833 msgid "Create a connection handle."
2837 #: ../src/guestfs.pod:1296
2839 "On success this returns a non-NULL pointer to a handle. On error it returns "
2844 #: ../src/guestfs.pod:1299
2846 "You have to \"configure\" the handle after creating it. This includes "
2847 "calling L</guestfs_add_drive_opts> (or one of the equivalent calls) on the "
2848 "handle at least once."
2853 #: ../src/guestfs.pod:1303
2854 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2858 #: ../src/guestfs.pod:1305
2860 "You may also want to configure error handling for the handle. See the L</"
2861 "ERROR HANDLING> section below."
2866 #: ../src/guestfs.pod:1308
2867 msgid "guestfs_close"
2872 #: ../src/guestfs.pod:1310
2875 " void guestfs_close (guestfs_h *g);\n"
2881 #: ../src/guestfs.pod:1312
2882 msgid "This closes the connection handle and frees up all resources used."
2886 #: ../src/guestfs.pod:1314
2888 "If autosync was set on the handle and the handle was launched, then this "
2889 "implicitly calls various functions to unmount filesystems and sync the "
2890 "disk. See L</guestfs_set_autosync> for more details."
2894 #: ../src/guestfs.pod:1318
2895 msgid "If a close callback was set on the handle, then it is called."
2900 #: ../src/guestfs.pod:1320
2901 msgid "ERROR HANDLING"
2906 #: ../src/guestfs.pod:1322
2908 "API functions can return errors. For example, almost all functions that "
2909 "return C<int> will return C<-1> to indicate an error."
2914 #: ../src/guestfs.pod:1325
2916 "Additional information is available for errors: an error message string and "
2917 "optionally an error number (errno) if the thing that failed was a system "
2923 #: ../src/guestfs.pod:1329
2925 "You can get at the additional information about the last error on the handle "
2926 "by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
2927 "up an error handler with L</guestfs_set_error_handler>."
2932 #: ../src/guestfs.pod:1334
2934 "When the handle is created, a default error handler is installed which "
2935 "prints the error message string to C<stderr>. For small short-running "
2936 "command line programs it is sufficient to do:"
2941 #: ../src/guestfs.pod:1338
2944 " if (guestfs_launch (g) == -1)\n"
2945 " exit (EXIT_FAILURE);\n"
2951 #: ../src/guestfs.pod:1341
2953 "since the default error handler will ensure that an error message has been "
2954 "printed to C<stderr> before the program exits."
2959 #: ../src/guestfs.pod:1344
2961 "For other programs the caller will almost certainly want to install an "
2962 "alternate error handler or do error handling in-line like this:"
2967 #: ../src/guestfs.pod:1347
2970 " g = guestfs_create ();\n"
2976 #: ../src/guestfs.pod:1349
2979 " /* This disables the default behaviour of printing errors\n"
2981 " guestfs_set_error_handler (g, NULL, NULL);\n"
2987 #: ../src/guestfs.pod:1353
2990 " if (guestfs_launch (g) == -1) {\n"
2991 " /* Examine the error message and print it etc. */\n"
2992 " char *msg = guestfs_last_error (g);\n"
2993 " int errnum = guestfs_last_errno (g);\n"
2994 " fprintf (stderr, \"%s\\n\", msg);\n"
3002 #: ../src/guestfs.pod:1361
3004 "Out of memory errors are handled differently. The default action is to call "
3005 "L<abort(3)>. If this is undesirable, then you can set a handler using L</"
3006 "guestfs_set_out_of_memory_handler>."
3011 #: ../src/guestfs.pod:1365
3013 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
3014 "because there is no handle if this happens there is no way to get additional "
3015 "error information. However L</guestfs_create> is supposed to be a "
3016 "lightweight operation which can only fail because of insufficient memory (it "
3017 "returns NULL in this case)."
3022 #: ../src/guestfs.pod:1371
3023 msgid "guestfs_last_error"
3028 #: ../src/guestfs.pod:1373
3031 " const char *guestfs_last_error (guestfs_h *g);\n"
3037 #: ../src/guestfs.pod:1375
3039 "This returns the last error message that happened on C<g>. If there has not "
3040 "been an error since the handle was created, then this returns C<NULL>."
3045 #: ../src/guestfs.pod:1379
3047 "The lifetime of the returned string is until the next error occurs, or L</"
3048 "guestfs_close> is called."
3053 #: ../src/guestfs.pod:1382
3054 msgid "guestfs_last_errno"
3059 #: ../src/guestfs.pod:1384
3062 " int guestfs_last_errno (guestfs_h *g);\n"
3068 #: ../src/guestfs.pod:1386
3069 msgid "This returns the last error number (errno) that happened on C<g>."
3074 #: ../src/guestfs.pod:1388
3075 msgid "If successful, an errno integer not equal to zero is returned."
3080 #: ../src/guestfs.pod:1390
3082 "If no error, this returns 0. This call can return 0 in three situations:"
3087 #: ../src/guestfs.pod:1397
3088 msgid "There has not been any error on the handle."
3093 #: ../src/guestfs.pod:1401
3095 "There has been an error but the errno was meaningless. This corresponds to "
3096 "the case where the error did not come from a failed system call, but for "
3097 "some other reason."
3102 #: ../src/guestfs.pod:1407
3104 "There was an error from a failed system call, but for some reason the errno "
3105 "was not captured and returned. This usually indicates a bug in libguestfs."
3110 #: ../src/guestfs.pod:1413
3112 "Libguestfs tries to convert the errno from inside the applicance into a "
3113 "corresponding errno for the caller (not entirely trivial: the appliance "
3114 "might be running a completely different operating system from the library "
3115 "and error numbers are not standardized across Un*xen). If this could not be "
3116 "done, then the error is translated to C<EINVAL>. In practice this should "
3117 "only happen in very rare circumstances."
3122 #: ../src/guestfs.pod:1421
3123 msgid "guestfs_set_error_handler"
3128 #: ../src/guestfs.pod:1423
3131 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
3133 " const char *msg);\n"
3134 " void guestfs_set_error_handler (guestfs_h *g,\n"
3135 " guestfs_error_handler_cb cb,\n"
3142 #: ../src/guestfs.pod:1430
3144 "The callback C<cb> will be called if there is an error. The parameters "
3145 "passed to the callback are an opaque data pointer and the error message "
3151 #: ../src/guestfs.pod:1434
3153 "C<errno> is not passed to the callback. To get that the callback must call "
3154 "L</guestfs_last_errno>."
3159 #: ../src/guestfs.pod:1437
3161 "Note that the message string C<msg> is freed as soon as the callback "
3162 "function returns, so if you want to stash it somewhere you must make your "
3168 #: ../src/guestfs.pod:1441
3169 msgid "The default handler prints messages on C<stderr>."
3174 #: ../src/guestfs.pod:1443
3175 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
3180 #: ../src/guestfs.pod:1445
3181 msgid "guestfs_get_error_handler"
3186 #: ../src/guestfs.pod:1447
3189 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
3190 " void **opaque_rtn);\n"
3196 #: ../src/guestfs.pod:1450
3197 msgid "Returns the current error handler callback."
3202 #: ../src/guestfs.pod:1452
3203 msgid "guestfs_set_out_of_memory_handler"
3208 #: ../src/guestfs.pod:1454
3211 " typedef void (*guestfs_abort_cb) (void);\n"
3212 " int guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
3213 " guestfs_abort_cb);\n"
3219 #: ../src/guestfs.pod:1458
3221 "The callback C<cb> will be called if there is an out of memory situation. "
3222 "I<Note this callback must not return>."
3227 #: ../src/guestfs.pod:1461
3228 msgid "The default is to call L<abort(3)>."
3233 #: ../src/guestfs.pod:1463
3235 "You cannot set C<cb> to C<NULL>. You can't ignore out of memory situations."
3240 #: ../src/guestfs.pod:1466
3241 msgid "guestfs_get_out_of_memory_handler"
3246 #: ../src/guestfs.pod:1468
3249 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
3255 #: ../src/guestfs.pod:1470
3256 msgid "This returns the current out of memory handler."
3261 #: ../src/guestfs.pod:1472
3267 #: ../src/guestfs.pod:1474 ../fish/guestfish.pod:1008
3273 #: ../src/guestfs.pod:1476
3279 #: ../src/guestfs.pod:1478
3285 #: ../src/guestfs.pod:1480
3286 msgid "AVAILABILITY"
3291 #: ../src/guestfs.pod:1482
3292 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
3297 #: ../src/guestfs.pod:1484
3299 "Using L</guestfs_available> you can test availability of the following "
3300 "groups of functions. This test queries the appliance to see if the "
3301 "appliance you are currently using supports the functionality."
3306 #: ../src/guestfs.pod:1489
3307 msgid "@AVAILABILITY@"
3312 #: ../src/guestfs.pod:1491
3313 msgid "GUESTFISH supported COMMAND"
3318 #: ../src/guestfs.pod:1493
3320 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
3321 "prints out the available groups and whether they are supported by this build "
3322 "of libguestfs. Note however that you have to do C<run> first."
3327 #: ../src/guestfs.pod:1498
3328 msgid "SINGLE CALLS AT COMPILE TIME"
3333 #: ../src/guestfs.pod:1500
3335 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
3336 "function, such as:"
3341 #: ../src/guestfs.pod:1503
3344 " #define LIBGUESTFS_HAVE_DD 1\n"
3350 #: ../src/guestfs.pod:1505
3351 msgid "if L</guestfs_dd> is available."
3356 #: ../src/guestfs.pod:1507
3358 "Before version 1.5.8, if you needed to test whether a single libguestfs "
3359 "function is available at compile time, we recommended using build tools such "
3360 "as autoconf or cmake. For example in autotools you could use:"
3365 #: ../src/guestfs.pod:1512
3368 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
3369 " AC_CHECK_FUNCS([guestfs_dd])\n"
3375 #: ../src/guestfs.pod:1515
3377 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
3383 #: ../src/guestfs.pod:1518
3384 msgid "SINGLE CALLS AT RUN TIME"
3389 #: ../src/guestfs.pod:1520
3391 "Testing at compile time doesn't guarantee that a function really exists in "
3392 "the library. The reason is that you might be dynamically linked against a "
3393 "previous I<libguestfs.so> (dynamic library) which doesn't have the call. "
3394 "This situation unfortunately results in a segmentation fault, which is a "
3395 "shortcoming of the C dynamic linking system itself."
3400 #: ../src/guestfs.pod:1527
3402 "You can use L<dlopen(3)> to test if a function is available at run time, as "
3403 "in this example program (note that you still need the compile time check as "
3409 #: ../src/guestfs.pod:1531
3412 " #include <stdio.h>\n"
3413 " #include <stdlib.h>\n"
3414 " #include <unistd.h>\n"
3415 " #include <dlfcn.h>\n"
3416 " #include <guestfs.h>\n"
3422 #: ../src/guestfs.pod:1537
3427 " #ifdef LIBGUESTFS_HAVE_DD\n"
3429 " int has_function;\n"
3435 #: ../src/guestfs.pod:1543
3438 " /* Test if the function guestfs_dd is really available. */\n"
3439 " dl = dlopen (NULL, RTLD_LAZY);\n"
3441 " fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
3442 " exit (EXIT_FAILURE);\n"
3444 " has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
3451 #: ../src/guestfs.pod:1552
3454 " if (!has_function)\n"
3455 " printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
3457 " printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
3458 " /* Now it's safe to call\n"
3459 " guestfs_dd (g, \"foo\", \"bar\");\n"
3463 " printf (\"guestfs_dd function was not found at compile time\\n\");\n"
3471 #: ../src/guestfs.pod:1565
3473 "You may think the above is an awful lot of hassle, and it is. There are "
3474 "other ways outside of the C linking system to ensure that this kind of "
3475 "incompatibility never arises, such as using package versioning:"
3480 #: ../src/guestfs.pod:1570
3483 " Requires: libguestfs >= 1.0.80\n"
3489 #: ../src/guestfs.pod:1572
3490 msgid "CALLS WITH OPTIONAL ARGUMENTS"
3495 #: ../src/guestfs.pod:1574
3497 "A recent feature of the API is the introduction of calls which take optional "
3498 "arguments. In C these are declared 3 ways. The main way is as a call which "
3499 "takes variable arguments (ie. C<...>), as in this example:"
3504 #: ../src/guestfs.pod:1579
3507 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
3513 #: ../src/guestfs.pod:1581
3515 "Call this with a list of optional arguments, terminated by C<-1>. So to "
3516 "call with no optional arguments specified:"
3521 #: ../src/guestfs.pod:1584
3524 " guestfs_add_drive_opts (g, filename, -1);\n"
3530 #: ../src/guestfs.pod:1586
3531 msgid "With a single optional argument:"
3536 #: ../src/guestfs.pod:1588
3539 " guestfs_add_drive_opts (g, filename,\n"
3540 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3547 #: ../src/guestfs.pod:1592
3553 #: ../src/guestfs.pod:1594
3556 " guestfs_add_drive_opts (g, filename,\n"
3557 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3558 " GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3565 #: ../src/guestfs.pod:1599
3567 "and so forth. Don't forget the terminating C<-1> otherwise Bad Things will "
3573 #: ../src/guestfs.pod:1602
3574 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3579 #: ../src/guestfs.pod:1604
3581 "The second variant has the same name with the suffix C<_va>, which works the "
3582 "same way but takes a C<va_list>. See the C manual for details. For the "
3583 "example function, this is declared:"
3588 #: ../src/guestfs.pod:1608
3591 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3598 #: ../src/guestfs.pod:1611
3599 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3604 #: ../src/guestfs.pod:1613
3606 "The third variant is useful where you need to construct these calls. You "
3607 "pass in a structure where you fill in the optional fields. The structure "
3608 "has a bitmask as the first element which you must set to indicate which "
3609 "fields you have filled in. For our example function the structure and call "
3615 #: ../src/guestfs.pod:1619
3618 " struct guestfs_add_drive_opts_argv {\n"
3619 " uint64_t bitmask;\n"
3621 " const char *format;\n"
3624 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3625 " const struct guestfs_add_drive_opts_argv *optargs);\n"
3631 #: ../src/guestfs.pod:1628
3632 msgid "You could call it like this:"
3637 #: ../src/guestfs.pod:1630
3640 " struct guestfs_add_drive_opts_argv optargs = {\n"
3641 " .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3642 " GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3644 " .format = \"qcow2\"\n"
3651 #: ../src/guestfs.pod:1637
3654 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3660 #: ../src/guestfs.pod:1639 ../src/guestfs-actions.pod:11
3661 #: ../src/guestfs-actions.pod:1852 ../fish/guestfish-actions.pod:9
3662 #: ../fish/guestfish-actions.pod:1257 ../tools/virt-win-reg.pl:532
3668 #: ../src/guestfs.pod:1645
3669 msgid "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3674 #: ../src/guestfs.pod:1650
3675 msgid "You do not need to fill in all fields of the structure."
3680 #: ../src/guestfs.pod:1654
3682 "There must be a one-to-one correspondence between fields of the structure "
3683 "that are filled in, and bits set in the bitmask."
3688 #: ../src/guestfs.pod:1659
3689 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3694 #: ../src/guestfs.pod:1661
3696 "In other languages, optional arguments are expressed in the way that is "
3697 "natural for that language. We refer you to the language-specific "
3698 "documentation for more details on that."
3703 #: ../src/guestfs.pod:1665
3704 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3709 #: ../src/guestfs.pod:1667
3710 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3714 #: ../src/guestfs.pod:1669
3716 "B<Note:> This section documents the generic event mechanism introduced in "
3717 "libguestfs 1.10, which you should use in new code if possible. The old "
3718 "functions C<guestfs_set_log_message_callback>, "
3719 "C<guestfs_set_subprocess_quit_callback>, "
3720 "C<guestfs_set_launch_done_callback>, C<guestfs_set_close_callback> and "
3721 "C<guestfs_set_progress_callback> are no longer documented in this manual "
3726 #: ../src/guestfs.pod:1677
3728 "Handles generate events when certain things happen, such as log messages "
3729 "being generated, progress messages during long-running operations, or the "
3730 "handle being closed. The API calls described below let you register a "
3731 "callback to be called when events happen. You can register multiple "
3732 "callbacks (for the same, different or overlapping sets of events), and "
3733 "individually remove callbacks. If callbacks are not removed, then they "
3734 "remain in force until the handle is closed."
3738 #: ../src/guestfs.pod:1685
3740 "In the current implementation, events are only generated synchronously: that "
3741 "means that events (and hence callbacks) can only happen while you are in the "
3742 "middle of making another libguestfs call. The callback is called in the "
3747 #: ../src/guestfs.pod:1690
3749 "Events may contain a payload, usually nothing (void), an array of 64 bit "
3750 "unsigned integers, or a message buffer. Payloads are discussed later on."
3754 #: ../src/guestfs.pod:1694
3755 msgid "CLASSES OF EVENTS"
3759 #: ../src/guestfs.pod:1698
3760 msgid "GUESTFS_EVENT_CLOSE (payload type: void)"
3764 #: ../src/guestfs.pod:1701
3766 "The callback function will be called while the handle is being closed "
3767 "(synchronously from L</guestfs_close>)."
3772 #: ../src/guestfs.pod:1704
3774 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3775 "handles that are open when the program exits. This means that this callback "
3776 "might be called indirectly from L<exit(3)>, which can cause unexpected "
3777 "problems in higher-level languages (eg. if your HLL interpreter has already "
3778 "been cleaned up by the time this is called, and if your callback then jumps "
3779 "into some HLL function)."
3783 #: ../src/guestfs.pod:1711
3785 "If no callback is registered: the handle is closed without any callback "
3790 #: ../src/guestfs.pod:1714
3791 msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)"
3795 #: ../src/guestfs.pod:1717
3797 "The callback function will be called when the child process quits, either "
3798 "asynchronously or if killed by L</guestfs_kill_subprocess>. (This "
3799 "corresponds to a transition from any state to the CONFIG state)."
3803 #: ../src/guestfs.pod:1721 ../src/guestfs.pod:1730
3804 msgid "If no callback is registered: the event is ignored."
3808 #: ../src/guestfs.pod:1723
3809 msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)"
3813 #: ../src/guestfs.pod:1726
3815 "The callback function will be called when the child process becomes ready "
3816 "first time after it has been launched. (This corresponds to a transition "
3817 "from LAUNCHING to the READY state)."
3821 #: ../src/guestfs.pod:1732
3822 msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)"
3827 #: ../src/guestfs.pod:1735
3829 "Some long-running operations can generate progress messages. If this "
3830 "callback is registered, then it will be called each time a progress message "
3831 "is generated (usually two seconds after the operation started, and three "
3832 "times per second thereafter until it completes, although the frequency may "
3833 "change in future versions)."
3837 #: ../src/guestfs.pod:1741
3839 "The callback receives in the payload four unsigned 64 bit numbers which are "
3840 "(in order): C<proc_nr>, C<serial>, C<position>, C<total>."
3844 #: ../src/guestfs.pod:1744
3846 "The units of C<total> are not defined, although for some operations C<total> "
3847 "may relate in some way to the amount of data to be transferred (eg. in bytes "
3848 "or megabytes), and C<position> may be the portion which has been transferred."
3853 #: ../src/guestfs.pod:1749
3854 msgid "The only defined and stable parts of the API are:"
3859 #: ../src/guestfs.pod:1755
3861 "The callback can display to the user some type of progress bar or indicator "
3862 "which shows the ratio of C<position>:C<total>."
3867 #: ../src/guestfs.pod:1760
3868 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3872 #: ../src/guestfs.pod:1764
3874 "If any progress notification is sent during a call, then a final progress "
3875 "notification is always sent when C<position> = C<total> (I<unless> the call "
3876 "fails with an error)."
3881 #: ../src/guestfs.pod:1768
3883 "This is to simplify caller code, so callers can easily set the progress "
3884 "indicator to \"100%\" at the end of the operation, without requiring special "
3885 "code to detect this case."
3889 #: ../src/guestfs.pod:1774
3891 "For some calls we are unable to estimate the progress of the call, but we "
3892 "can still generate progress messages to indicate activity. This is known as "
3893 "\"pulse mode\", and is directly supported by certain progress bar "
3894 "implementations (eg. GtkProgressBar)."
3898 #: ../src/guestfs.pod:1779
3900 "For these calls, zero or more progress messages are generated with "
3901 "C<position = 0> and C<total = 1>, followed by a final message with "
3902 "C<position = total = 1>."
3906 #: ../src/guestfs.pod:1783
3908 "As noted above, if the call fails with an error then the final message may "
3913 #: ../src/guestfs.pod:1788
3915 "The callback also receives the procedure number (C<proc_nr>) and serial "
3916 "number (C<serial>) of the call. These are only useful for debugging "
3917 "protocol issues, and the callback can normally ignore them. The callback "
3918 "may want to print these numbers in error messages or debugging messages."
3922 #: ../src/guestfs.pod:1794
3923 msgid "If no callback is registered: progress messages are discarded."
3927 #: ../src/guestfs.pod:1796
3928 msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)"
3932 #: ../src/guestfs.pod:1799
3934 "The callback function is called whenever a log message is generated by qemu, "
3935 "the appliance kernel, guestfsd (daemon), or utility programs."
3939 #: ../src/guestfs.pod:1802
3941 "If the verbose flag (L</guestfs_set_verbose>) is set before launch (L</"
3942 "guestfs_launch>) then additional debug messages are generated."
3946 #: ../src/guestfs.pod:1805 ../src/guestfs.pod:1819
3948 "If no callback is registered: the messages are discarded unless the verbose "
3949 "flag is set in which case they are sent to stderr. You can override the "
3950 "printing of verbose messages to stderr by setting up a callback."
3954 #: ../src/guestfs.pod:1810
3955 msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)"
3959 #: ../src/guestfs.pod:1813
3961 "The callback function is called whenever a log message is generated by the "
3962 "library part of libguestfs."
3966 #: ../src/guestfs.pod:1816
3968 "If the verbose flag (L</guestfs_set_verbose>) is set then additional debug "
3969 "messages are generated."
3973 #: ../src/guestfs.pod:1824
3974 msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)"
3978 #: ../src/guestfs.pod:1827
3980 "The callback function is called whenever a trace message is generated. This "
3981 "only applies if the trace flag (L</guestfs_set_trace>) is set."
3985 #: ../src/guestfs.pod:1830
3987 "If no callback is registered: the messages are sent to stderr. You can "
3988 "override the printing of trace messages to stderr by setting up a callback."
3992 #: ../src/guestfs.pod:1836
3993 msgid "guestfs_set_event_callback"
3997 #: ../src/guestfs.pod:1838
4000 " int guestfs_set_event_callback (guestfs_h *g,\n"
4001 " guestfs_event_callback cb,\n"
4002 " uint64_t event_bitmask,\n"
4009 #: ../src/guestfs.pod:1844
4011 "This function registers a callback (C<cb>) for all event classes in the "
4016 #: ../src/guestfs.pod:1847
4018 "For example, to register for all log message events, you could call this "
4019 "function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>. "
4020 "To register a single callback for all possible classes of events, use "
4021 "C<GUESTFS_EVENT_ALL>."
4025 #: ../src/guestfs.pod:1853
4026 msgid "C<flags> should always be passed as 0."
4030 #: ../src/guestfs.pod:1855
4032 "C<opaque> is an opaque pointer which is passed to the callback. You can use "
4033 "it for any purpose."
4037 #: ../src/guestfs.pod:1858
4039 "The return value is the event handle (an integer) which you can use to "
4040 "delete the callback (see below)."
4044 #: ../src/guestfs.pod:1861
4046 "If there is an error, this function returns C<-1>, and sets the error in the "
4047 "handle in the usual way (see L</guestfs_last_error> etc.)"
4051 #: ../src/guestfs.pod:1864
4053 "Callbacks remain in effect until they are deleted, or until the handle is "
4058 #: ../src/guestfs.pod:1867
4060 "In the case where multiple callbacks are registered for a particular event "
4061 "class, all of the callbacks are called. The order in which multiple "
4062 "callbacks are called is not defined."
4066 #: ../src/guestfs.pod:1871
4067 msgid "guestfs_delete_event_callback"
4071 #: ../src/guestfs.pod:1873
4074 " void guestfs_delete_event_callback (guestfs_h *g, int event_handle);\n"
4079 #: ../src/guestfs.pod:1875
4081 "Delete a callback that was previously registered. C<event_handle> should be "
4082 "the integer that was returned by a previous call to "
4083 "C<guestfs_set_event_callback> on the same handle."
4087 #: ../src/guestfs.pod:1879
4088 msgid "guestfs_event_callback"
4092 #: ../src/guestfs.pod:1881
4095 " typedef void (*guestfs_event_callback) (\n"
4098 " uint64_t event,\n"
4099 " int event_handle,\n"
4101 " const char *buf, size_t buf_len,\n"
4102 " const uint64_t *array, size_t array_len);\n"
4107 #: ../src/guestfs.pod:1890
4109 "This is the type of the event callback function that you have to provide."
4113 #: ../src/guestfs.pod:1893
4115 "The basic parameters are: the handle (C<g>), the opaque user pointer "
4116 "(C<opaque>), the event class (eg. C<GUESTFS_EVENT_PROGRESS>), the event "
4117 "handle, and C<flags> which in the current API you should ignore."
4121 #: ../src/guestfs.pod:1897
4123 "The remaining parameters contain the event payload (if any). Each event may "
4124 "contain a payload, which usually relates to the event class, but for future "
4125 "proofing your code should be written to handle any payload for any event "
4130 #: ../src/guestfs.pod:1902
4132 "C<buf> and C<buf_len> contain a message buffer (if C<buf_len == 0>, then "
4133 "there is no message buffer). Note that this message buffer can contain "
4134 "arbitrary 8 bit data, including NUL bytes."
4138 #: ../src/guestfs.pod:1906
4140 "C<array> and C<array_len> is an array of 64 bit unsigned integers. At the "
4141 "moment this is only used for progress messages."
4145 #: ../src/guestfs.pod:1909
4146 msgid "EXAMPLE: CAPTURING LOG MESSAGES"
4150 #: ../src/guestfs.pod:1911
4152 "One motivation for the generic event API was to allow GUI programs to "
4153 "capture debug and other messages. In libguestfs E<le> 1.8 these were sent "
4154 "unconditionally to C<stderr>."
4158 #: ../src/guestfs.pod:1915
4160 "Events associated with log messages are: C<GUESTFS_EVENT_LIBRARY>, "
4161 "C<GUESTFS_EVENT_APPLIANCE> and C<GUESTFS_EVENT_TRACE>. (Note that error "
4162 "messages are not events; you must capture error messages separately)."
4166 #: ../src/guestfs.pod:1920
4168 "Programs have to set up a callback to capture the classes of events of "
4173 #: ../src/guestfs.pod:1923
4177 " guestfs_set_event_callback\n"
4178 " (g, message_callback,\n"
4179 " GUESTFS_EVENT_LIBRARY|GUESTFS_EVENT_APPLIANCE|\n"
4180 " GUESTFS_EVENT_TRACE,\n"
4181 " 0, NULL) == -1)\n"
4182 " if (eh == -1) {\n"
4183 " // handle error in the usual way\n"
4189 #: ../src/guestfs.pod:1933
4191 "The callback can then direct messages to the appropriate place. In this "
4192 "example, messages are directed to syslog:"
4196 #: ../src/guestfs.pod:1936
4200 " message_callback (\n"
4203 " uint64_t event,\n"
4204 " int event_handle,\n"
4206 " const char *buf, size_t buf_len,\n"
4207 " const uint64_t *array, size_t array_len)\n"
4209 " const int priority = LOG_USER|LOG_INFO;\n"
4210 " if (buf_len > 0)\n"
4211 " syslog (priority, \"event 0x%lx: %s\", event, buf);\n"
4218 #: ../src/guestfs.pod:1951
4219 msgid "PRIVATE DATA AREA"
4223 #: ../src/guestfs.pod:1953
4225 "You can attach named pieces of private data to the libguestfs handle, fetch "
4226 "them by name, and walk over them, for the lifetime of the handle. This is "
4227 "called the private data area and is only available from the C API."
4232 #: ../src/guestfs.pod:1958
4233 msgid "To attach a named piece of data, use the following call:"
4238 #: ../src/guestfs.pod:1960
4241 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
4246 #: ../src/guestfs.pod:1962
4248 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
4249 "pointer (which can be C<NULL>). Any previous item with the same key is "
4254 #: ../src/guestfs.pod:1966
4256 "You can use any C<key> you want, but your key should I<not> start with an "
4257 "underscore character. Keys beginning with an underscore character are "
4258 "reserved for internal libguestfs purposes (eg. for implementing language "
4259 "bindings). It is recommended that you prefix the key with some unique "
4260 "string to avoid collisions with other users."
4265 #: ../src/guestfs.pod:1972
4266 msgid "To retrieve the pointer, use:"
4271 #: ../src/guestfs.pod:1974
4274 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
4280 #: ../src/guestfs.pod:1976
4282 "This function returns C<NULL> if either no data is found associated with "
4283 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
4288 #: ../src/guestfs.pod:1980
4290 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
4291 "way. As far as libguestfs is concerned, it need not be a valid pointer at "
4292 "all. In particular, libguestfs does I<not> try to free the data when the "
4293 "handle is closed. If the data must be freed, then the caller must either "
4294 "free it before calling L</guestfs_close> or must set up a close callback to "
4295 "do it (see L</GUESTFS_EVENT_CLOSE>)."
4299 #: ../src/guestfs.pod:1987
4300 msgid "To walk over all entries, use these two functions:"
4304 #: ../src/guestfs.pod:1989
4307 " void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n"
4312 #: ../src/guestfs.pod:1991
4315 " void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n"
4320 #: ../src/guestfs.pod:1993
4322 "C<guestfs_first_private> returns the first key, pointer pair (\"first\" does "
4323 "not have any particular meaning -- keys are not returned in any defined "
4324 "order). A pointer to the key is returned in C<*key_rtn> and the "
4325 "corresponding data pointer is returned from the function. C<NULL> is "
4326 "returned if there are no keys stored in the handle."
4330 #: ../src/guestfs.pod:1999
4332 "C<guestfs_next_private> returns the next key, pointer pair. The return "
4333 "value of this function is also C<NULL> is there are no further entries to "
4338 #: ../src/guestfs.pod:2003
4339 msgid "Notes about walking over entries:"
4343 #: ../src/guestfs.pod:2009
4345 "You must not call C<guestfs_set_private> while walking over the entries."
4349 #: ../src/guestfs.pod:2014
4351 "The handle maintains an internal iterator which is reset when you call "
4352 "C<guestfs_first_private>. This internal iterator is invalidated when you "
4353 "call C<guestfs_set_private>."
4357 #: ../src/guestfs.pod:2020
4358 msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
4362 #: ../src/guestfs.pod:2022
4365 " guestfs_set_private (g, key, NULL);\n"
4370 #: ../src/guestfs.pod:2024
4371 msgid "then that C<key> is not returned when walking."
4375 #: ../src/guestfs.pod:2028
4377 "C<*key_rtn> is only valid until the next call to C<guestfs_first_private>, "
4378 "C<guestfs_next_private> or C<guestfs_set_private>."
4382 #: ../src/guestfs.pod:2034
4384 "The following example code shows how to print all keys and data pointers "
4385 "that are associated with the handle C<g>:"
4389 #: ../src/guestfs.pod:2037
4392 " const char *key;\n"
4393 " void *data = guestfs_first_private (g, &key);\n"
4394 " while (data != NULL)\n"
4396 " printf (\"key = %s, data = %p\\n\", key, data);\n"
4397 " data = guestfs_next_private (g, &key);\n"
4403 #: ../src/guestfs.pod:2045
4405 "More commonly you are only interested in keys that begin with an application-"
4406 "specific prefix C<foo_>. Modify the loop like so:"
4410 #: ../src/guestfs.pod:2048
4413 " const char *key;\n"
4414 " void *data = guestfs_first_private (g, &key);\n"
4415 " while (data != NULL)\n"
4417 " if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4418 " printf (\"key = %s, data = %p\\n\", key, data);\n"
4419 " data = guestfs_next_private (g, &key);\n"
4425 #: ../src/guestfs.pod:2057
4427 "If you need to modify keys while walking, then you have to jump back to the "
4428 "beginning of the loop. For example, to delete all keys prefixed with "
4433 #: ../src/guestfs.pod:2061
4436 " const char *key;\n"
4439 " data = guestfs_first_private (g, &key);\n"
4440 " while (data != NULL)\n"
4442 " if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4444 " guestfs_set_private (g, key, NULL);\n"
4445 " /* note that 'key' pointer is now invalid, and so is\n"
4446 " the internal iterator */\n"
4449 " data = guestfs_next_private (g, &key);\n"
4455 #: ../src/guestfs.pod:2077
4457 "Note that the above loop is guaranteed to terminate because the keys are "
4458 "being deleted, but other manipulations of keys within the loop might not "
4459 "terminate unless you also maintain an indication of which keys have been "
4465 #: ../src/guestfs.pod:2082 ../src/guestfs.pod:2087
4471 #: ../src/guestfs.pod:2084
4473 "<!-- old anchor for the next section --> <a name="
4474 "\"state_machine_and_low_level_event_api\"/>"
4479 #: ../src/guestfs.pod:2089
4480 msgid "ARCHITECTURE"
4485 #: ../src/guestfs.pod:2091
4487 "Internally, libguestfs is implemented by running an appliance (a special "
4488 "type of small virtual machine) using L<qemu(1)>. Qemu runs as a child "
4489 "process of the main program."
4494 #: ../src/guestfs.pod:2095
4497 " ___________________\n"
4499 " | main program |\n"
4501 " | | child process / appliance\n"
4502 " | | __________________________\n"
4504 " +-------------------+ RPC | +-----------------+ |\n"
4505 " | libguestfs <--------------------> guestfsd | |\n"
4506 " | | | +-----------------+ |\n"
4507 " \\___________________/ | | Linux kernel | |\n"
4508 " | +--^--------------+ |\n"
4509 " \\_________|________________/\n"
4515 " \\______________/\n"
4521 #: ../src/guestfs.pod:2115
4523 "The library, linked to the main program, creates the child process and hence "
4524 "the appliance in the L</guestfs_launch> function."
4529 #: ../src/guestfs.pod:2118
4531 "Inside the appliance is a Linux kernel and a complete stack of userspace "
4532 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
4533 "L</guestfsd>. The library talks to L</guestfsd> using remote procedure "
4534 "calls (RPC). There is a mostly one-to-one correspondence between libguestfs "
4535 "API calls and RPC calls to the daemon. Lastly the disk image(s) are "
4536 "attached to the qemu process which translates device access by the "
4537 "appliance's Linux kernel into accesses to the image."
4542 #: ../src/guestfs.pod:2127
4544 "A common misunderstanding is that the appliance \"is\" the virtual machine. "
4545 "Although the disk image you are attached to might also be used by some "
4546 "virtual machine, libguestfs doesn't know or care about this. (But you will "
4547 "care if both libguestfs's qemu process and your virtual machine are trying "
4548 "to update the disk image at the same time, since these usually results in "
4549 "massive disk corruption)."
4554 #: ../src/guestfs.pod:2134
4555 msgid "STATE MACHINE"
4560 #: ../src/guestfs.pod:2136
4561 msgid "libguestfs uses a state machine to model the child process:"
4566 #: ../src/guestfs.pod:2138
4578 " / | \\ \\ guestfs_launch\n"
4579 " / | _\\__V______\n"
4581 " / | | LAUNCHING |\n"
4582 " / | \\___________/\n"
4584 " / | guestfs_launch\n"
4586 " ______ / __|____V\n"
4587 " / \\ ------> / \\\n"
4588 " | BUSY | | READY |\n"
4589 " \\______/ <------ \\________/\n"
4595 #: ../src/guestfs.pod:2160
4597 "The normal transitions are (1) CONFIG (when the handle is created, but there "
4598 "is no child process), (2) LAUNCHING (when the child process is booting up), "
4599 "(3) alternating between READY and BUSY as commands are issued to, and "
4600 "carried out by, the child process."
4605 #: ../src/guestfs.pod:2165
4607 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
4608 "asynchronously at any time (eg. due to some internal error), and that causes "
4609 "the state to transition back to CONFIG."
4614 #: ../src/guestfs.pod:2169
4616 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
4617 "issued when in the CONFIG state."
4622 #: ../src/guestfs.pod:2172
4624 "The API offers one call that goes from CONFIG through LAUNCHING to READY. "
4625 "L</guestfs_launch> blocks until the child process is READY to accept "
4626 "commands (or until some failure or timeout). L</guestfs_launch> internally "
4627 "moves the state from CONFIG to LAUNCHING while it is running."
4632 #: ../src/guestfs.pod:2178
4634 "API actions such as L</guestfs_mount> can only be issued when in the READY "
4635 "state. These API calls block waiting for the command to be carried out (ie. "
4636 "the state to transition to BUSY and then back to READY). There are no non-"
4637 "blocking versions, and no way to issue more than one command per handle at "
4643 #: ../src/guestfs.pod:2184
4645 "Finally, the child process sends asynchronous messages back to the main "
4646 "program, such as kernel log messages. You can register a callback to "
4647 "receive these messages."
4652 #: ../src/guestfs.pod:2188
4658 #: ../src/guestfs.pod:2190
4659 msgid "COMMUNICATION PROTOCOL"
4664 #: ../src/guestfs.pod:2192
4666 "Don't rely on using this protocol directly. This section documents how it "
4667 "currently works, but it may change at any time."
4672 #: ../src/guestfs.pod:2195
4674 "The protocol used to talk between the library and the daemon running inside "
4675 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
4676 "1014, RFC 1832, RFC 4506)."
4681 #: ../src/guestfs.pod:2199
4683 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
4684 "this file is automatically generated)."
4689 #: ../src/guestfs.pod:2202
4691 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
4692 "and C<FileOut> parameters, which are handled with very simple request/reply "
4693 "messages. Then there are functions that have any C<FileIn> or C<FileOut> "
4694 "parameters, which use the same request and reply messages, but they may also "
4695 "be followed by files sent using a chunked encoding."
4700 #: ../src/guestfs.pod:2209
4701 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4706 #: ../src/guestfs.pod:2211
4707 msgid "For ordinary functions, the request message is:"
4712 #: ../src/guestfs.pod:2213
4715 " total length (header + arguments,\n"
4716 " but not including the length word itself)\n"
4717 " struct guestfs_message_header (encoded as XDR)\n"
4718 " struct guestfs_<foo>_args (encoded as XDR)\n"
4724 #: ../src/guestfs.pod:2218
4726 "The total length field allows the daemon to allocate a fixed size buffer "
4727 "into which it slurps the rest of the message. As a result, the total length "
4728 "is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
4729 "effective size of any request is limited to somewhere under this size."
4734 #: ../src/guestfs.pod:2224
4736 "Note also that many functions don't take any arguments, in which case the "
4737 "C<guestfs_I<foo>_args> is completely omitted."
4742 #: ../src/guestfs.pod:2227
4744 "The header contains the procedure number (C<guestfs_proc>) which is how the "
4745 "receiver knows what type of args structure to expect, or none at all."
4750 #: ../src/guestfs.pod:2231
4752 "For functions that take optional arguments, the optional arguments are "
4753 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
4754 "arguments. A bitmask in the header indicates which optional arguments are "
4755 "meaningful. The bitmask is also checked to see if it contains bits set "
4756 "which the daemon does not know about (eg. if more optional arguments were "
4757 "added in a later version of the library), and this causes the call to be "
4763 #: ../src/guestfs.pod:2239
4764 msgid "The reply message for ordinary functions is:"
4769 #: ../src/guestfs.pod:2241
4772 " total length (header + ret,\n"
4773 " but not including the length word itself)\n"
4774 " struct guestfs_message_header (encoded as XDR)\n"
4775 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4781 #: ../src/guestfs.pod:2246
4783 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
4784 "functions that return no formal return values."
4789 #: ../src/guestfs.pod:2249
4791 "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
4796 #: ../src/guestfs.pod:2252
4798 "In the case of an error, a flag is set in the header, and the reply message "
4799 "is slightly changed:"
4804 #: ../src/guestfs.pod:2255
4807 " total length (header + error,\n"
4808 " but not including the length word itself)\n"
4809 " struct guestfs_message_header (encoded as XDR)\n"
4810 " struct guestfs_message_error (encoded as XDR)\n"
4816 #: ../src/guestfs.pod:2260
4818 "The C<guestfs_message_error> structure contains the error message as a "
4824 #: ../src/guestfs.pod:2263
4825 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4830 #: ../src/guestfs.pod:2265
4832 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest. "
4833 "The normal request message is sent (see above). However this is followed by "
4834 "a sequence of file chunks."
4839 #: ../src/guestfs.pod:2269
4842 " total length (header + arguments,\n"
4843 " but not including the length word itself,\n"
4844 " and not including the chunks)\n"
4845 " struct guestfs_message_header (encoded as XDR)\n"
4846 " struct guestfs_<foo>_args (encoded as XDR)\n"
4847 " sequence of chunks for FileIn param #0\n"
4848 " sequence of chunks for FileIn param #1 etc.\n"
4854 #: ../src/guestfs.pod:2277
4855 msgid "The \"sequence of chunks\" is:"
4860 #: ../src/guestfs.pod:2279
4863 " length of chunk (not including length word itself)\n"
4864 " struct guestfs_chunk (encoded as XDR)\n"
4865 " length of chunk\n"
4866 " struct guestfs_chunk (encoded as XDR)\n"
4868 " length of chunk\n"
4869 " struct guestfs_chunk (with data.data_len == 0)\n"
4875 #: ../src/guestfs.pod:2287
4877 "The final chunk has the C<data_len> field set to zero. Additionally a flag "
4878 "is set in the final chunk to indicate either successful completion or early "
4884 #: ../src/guestfs.pod:2291
4886 "At time of writing there are no functions that have more than one FileIn "
4887 "parameter. However this is (theoretically) supported, by sending the "
4888 "sequence of chunks for each FileIn parameter one after another (from left to "
4894 #: ../src/guestfs.pod:2296
4896 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
4897 "transfer. The library does this by sending a chunk with a special flag set "
4898 "to indicate cancellation. When the daemon sees this, it cancels the whole "
4899 "RPC, does I<not> send any reply, and goes back to reading the next request."
4904 #: ../src/guestfs.pod:2302
4906 "The daemon may also cancel. It does this by writing a special word "
4907 "C<GUESTFS_CANCEL_FLAG> to the socket. The library listens for this during "
4908 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
4909 "cancel chunk). The special word is chosen so that even if cancellation "
4910 "happens right at the end of the transfer (after the library has finished "
4911 "writing and has started listening for the reply), the \"spurious\" cancel "
4912 "flag will not be confused with the reply message."
4917 #: ../src/guestfs.pod:2311
4919 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
4920 "limit), and also files where the size is not known in advance (eg. from "
4921 "pipes or sockets). However the chunks are rather small "
4922 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
4923 "to keep much in memory."
4928 #: ../src/guestfs.pod:2317
4929 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4934 #: ../src/guestfs.pod:2319
4936 "The protocol for FileOut parameters is exactly the same as for FileIn "
4937 "parameters, but with the roles of daemon and library reversed."
4942 #: ../src/guestfs.pod:2322
4945 " total length (header + ret,\n"
4946 " but not including the length word itself,\n"
4947 " and not including the chunks)\n"
4948 " struct guestfs_message_header (encoded as XDR)\n"
4949 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4950 " sequence of chunks for FileOut param #0\n"
4951 " sequence of chunks for FileOut param #1 etc.\n"
4957 #: ../src/guestfs.pod:2330
4958 msgid "INITIAL MESSAGE"
4963 #: ../src/guestfs.pod:2332
4965 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
4966 "which indicates that the guest and daemon is alive. This is what L</"
4967 "guestfs_launch> waits for."
4972 #: ../src/guestfs.pod:2336
4973 msgid "PROGRESS NOTIFICATION MESSAGES"
4978 #: ../src/guestfs.pod:2338
4980 "The daemon may send progress notification messages at any time. These are "
4981 "distinguished by the normal length word being replaced by "
4982 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
4986 #: ../src/guestfs.pod:2342
4988 "The library turns them into progress callbacks (see L</"
4989 "GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards them "
4995 #: ../src/guestfs.pod:2346
4997 "The daemon self-limits the frequency of progress messages it sends (see "
4998 "C<daemon/proto.c:notify_progress>). Not all calls generate progress "
5004 #: ../src/guestfs.pod:2350
5005 msgid "LIBGUESTFS VERSION NUMBERS"
5010 #: ../src/guestfs.pod:2352
5012 "Since April 2010, libguestfs has started to make separate development and "
5013 "stable releases, along with corresponding branches in our git repository. "
5014 "These separate releases can be identified by version number:"
5019 #: ../src/guestfs.pod:2357
5022 " even numbers for stable: 1.2.x, 1.4.x, ...\n"
5023 " .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
5029 " | `-------- sub-version\n"
5031 " `------ always '1' because we don't change the ABI\n"
5037 #: ../src/guestfs.pod:2368
5038 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
5043 #: ../src/guestfs.pod:2370
5045 "As time passes we cherry pick fixes from the development branch and backport "
5046 "those into the stable branch, the effect being that the stable branch should "
5047 "get more stable and less buggy over time. So the stable releases are ideal "
5048 "for people who don't need new features but would just like the software to "
5054 #: ../src/guestfs.pod:2376
5055 msgid "Our criteria for backporting changes are:"
5060 #: ../src/guestfs.pod:2382
5062 "Documentation changes which don't affect any code are backported unless the "
5063 "documentation refers to a future feature which is not in stable."
5068 #: ../src/guestfs.pod:2388
5070 "Bug fixes which are not controversial, fix obvious problems, and have been "
5071 "well tested are backported."
5076 #: ../src/guestfs.pod:2393
5078 "Simple rearrangements of code which shouldn't affect how it works get "
5079 "backported. This is so that the code in the two branches doesn't get too "
5080 "far out of step, allowing us to backport future fixes more easily."
5085 #: ../src/guestfs.pod:2399
5087 "We I<don't> backport new features, new APIs, new tools etc, except in one "
5088 "exceptional case: the new feature is required in order to implement an "
5089 "important bug fix."
5094 #: ../src/guestfs.pod:2405
5096 "A new stable branch starts when we think the new features in development are "
5097 "substantial and compelling enough over the current stable branch to warrant "
5098 "it. When that happens we create new stable and development versions 1.N.0 "
5099 "and 1.(N+1).0 [N is even]. The new dot-oh release won't necessarily be so "
5100 "stable at this point, but by backporting fixes from development, that branch "
5101 "will stabilize over time."
5105 #: ../src/guestfs.pod:2413
5106 msgid "EXTENDING LIBGUESTFS"
5110 #: ../src/guestfs.pod:2415
5111 msgid "ADDING A NEW API ACTION"
5115 #: ../src/guestfs.pod:2417
5117 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
5118 "documentation) are generated, and this makes it easy to extend the "
5123 #: ../src/guestfs.pod:2421
5124 msgid "To add a new API action there are two changes:"
5128 #: ../src/guestfs.pod:2427
5130 "You need to add a description of the call (name, parameters, return type, "
5131 "tests, documentation) to C<generator/generator_actions.ml>."
5135 #: ../src/guestfs.pod:2430
5137 "There are two sorts of API action, depending on whether the call goes "
5138 "through to the daemon in the appliance, or is serviced entirely by the "
5139 "library (see L</ARCHITECTURE> above). L</guestfs_sync> is an example of the "
5140 "former, since the sync is done in the appliance. L</guestfs_set_trace> is "
5141 "an example of the latter, since a trace flag is maintained in the handle and "
5142 "all tracing is done on the library side."
5146 #: ../src/guestfs.pod:2438
5148 "Most new actions are of the first type, and get added to the "
5149 "C<daemon_functions> list. Each function has a unique procedure number used "
5150 "in the RPC protocol which is assigned to that action when we publish "
5151 "libguestfs and cannot be reused. Take the latest procedure number and "
5156 #: ../src/guestfs.pod:2444
5158 "For library-only actions of the second type, add to the "
5159 "C<non_daemon_functions> list. Since these functions are serviced by the "
5160 "library and do not travel over the RPC mechanism to the daemon, these "
5161 "functions do not need a procedure number, and so the procedure number is set "
5166 #: ../src/guestfs.pod:2452
5167 msgid "Implement the action (in C):"
5171 #: ../src/guestfs.pod:2454
5173 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
5174 "C<daemon/> directory."
5178 #: ../src/guestfs.pod:2457
5180 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
5181 "(note: double underscore) in the C<src/> directory."
5185 #: ../src/guestfs.pod:2460
5186 msgid "In either case, use another function as an example of what to do."
5190 #: ../src/guestfs.pod:2464
5191 msgid "After making these changes, use C<make> to compile."
5195 #: ../src/guestfs.pod:2466
5197 "Note that you don't need to implement the RPC, language bindings, manual "
5198 "pages or anything else. It's all automatically generated from the OCaml "
5203 #: ../src/guestfs.pod:2470
5204 msgid "ADDING TESTS FOR AN API ACTION"
5208 #: ../src/guestfs.pod:2472
5210 "You can supply zero or as many tests as you want per API call. The tests "
5211 "can either be added as part of the API description (C<generator/"
5212 "generator_actions.ml>), or in some rarer cases you may want to drop a script "
5213 "into C<regressions/>. Note that adding a script to C<regressions/> is "
5214 "slower, so if possible use the first method."
5218 #: ../src/guestfs.pod:2478
5220 "The following describes the test environment used when you add an API test "
5221 "in C<generator_actions.ml>."
5225 #: ../src/guestfs.pod:2481
5226 msgid "The test environment has 4 block devices:"
5230 #: ../src/guestfs.pod:2485
5231 msgid "C</dev/sda> 500MB"
5235 #: ../src/guestfs.pod:2487
5236 msgid "General block device for testing."
5240 #: ../src/guestfs.pod:2489
5241 msgid "C</dev/sdb> 50MB"
5245 #: ../src/guestfs.pod:2491
5247 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
5252 #: ../src/guestfs.pod:2494
5253 msgid "C</dev/sdc> 10MB"
5257 #: ../src/guestfs.pod:2496
5258 msgid "Used in a few tests where two block devices are needed."
5262 #: ../src/guestfs.pod:2498
5267 #: ../src/guestfs.pod:2500
5268 msgid "ISO with fixed content (see C<images/test.iso>)."
5272 #: ../src/guestfs.pod:2504
5274 "To be able to run the tests in a reasonable amount of time, the libguestfs "
5275 "appliance and block devices are reused between tests. So don't try testing "
5276 "L</guestfs_kill_subprocess> :-x"
5280 #: ../src/guestfs.pod:2508
5282 "Each test starts with an initial scenario, selected using one of the "
5283 "C<Init*> expressions, described in C<generator/generator_types.ml>. These "
5284 "initialize the disks mentioned above in a particular way as documented in "
5285 "C<generator_types.ml>. You should not assume anything about the previous "
5286 "contents of other disks that are not initialized."
5290 #: ../src/guestfs.pod:2514
5292 "You can add a prerequisite clause to any individual test. This is a run-"
5293 "time check, which, if it fails, causes the test to be skipped. Useful if "
5294 "testing a command which might not work on all variations of libguestfs "
5295 "builds. A test that has prerequisite of C<Always> means to run "
5300 #: ../src/guestfs.pod:2520
5302 "In addition, packagers can skip individual tests by setting environment "
5303 "variables before running C<make check>."
5307 #: ../src/guestfs.pod:2523
5310 " SKIP_TEST_<CMD>_<NUM>=1\n"
5315 #: ../src/guestfs.pod:2525
5316 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
5320 #: ../src/guestfs.pod:2527
5325 #: ../src/guestfs.pod:2529
5328 " SKIP_TEST_<CMD>=1\n"
5333 #: ../src/guestfs.pod:2531
5334 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
5338 #: ../src/guestfs.pod:2533
5339 msgid "Packagers can run only certain tests by setting for example:"
5343 #: ../src/guestfs.pod:2535
5346 " TEST_ONLY=\"vfs_type zerofree\"\n"
5351 #: ../src/guestfs.pod:2537
5353 "See C<capitests/tests.c> for more details of how these environment variables "
5358 #: ../src/guestfs.pod:2540
5359 msgid "DEBUGGING NEW API ACTIONS"
5363 #: ../src/guestfs.pod:2542
5364 msgid "Test new actions work before submitting them."
5368 #: ../src/guestfs.pod:2544
5369 msgid "You can use guestfish to try out new commands."
5373 #: ../src/guestfs.pod:2546
5375 "Debugging the daemon is a problem because it runs inside a minimal "
5376 "environment. However you can fprintf messages in the daemon to stderr, and "
5377 "they will show up if you use C<guestfish -v>."
5381 #: ../src/guestfs.pod:2550
5382 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
5386 #: ../src/guestfs.pod:2552
5388 "Our C source code generally adheres to some basic code-formatting "
5389 "conventions. The existing code base is not totally consistent on this "
5390 "front, but we do prefer that contributed code be formatted similarly. In "
5391 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
5392 "indentation level, and other than that, follow the K&R style."
5396 #: ../src/guestfs.pod:2558
5398 "If you use Emacs, add the following to one of one of your start-up files (e."
5399 "g., ~/.emacs), to help ensure that you get indentation right:"
5403 #: ../src/guestfs.pod:2561
5406 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
5407 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
5408 " (add-hook 'find-file-hook\n"
5409 " '(lambda () (if (and buffer-file-name\n"
5410 " (string-match \"/libguestfs\\\\>\"\n"
5411 " (buffer-file-name))\n"
5412 " (not (string-equal mode-name \"Change Log\"))\n"
5413 " (not (string-equal mode-name \"Makefile\")))\n"
5414 " (setq indent-tabs-mode nil))))\n"
5419 #: ../src/guestfs.pod:2571
5422 " ;;; When editing C sources in libguestfs, use this style.\n"
5423 " (defun libguestfs-c-mode ()\n"
5424 " \"C mode with adjusted defaults for use with libguestfs.\"\n"
5426 " (c-set-style \"K&R\")\n"
5427 " (setq c-indent-level 2)\n"
5428 " (setq c-basic-offset 2))\n"
5429 " (add-hook 'c-mode-hook\n"
5430 " '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
5431 " (buffer-file-name))\n"
5432 " (libguestfs-c-mode))))\n"
5437 #: ../src/guestfs.pod:2583
5438 msgid "Enable warnings when compiling (and fix any problems this finds):"
5442 #: ../src/guestfs.pod:2586
5445 " ./configure --enable-gcc-warnings\n"
5450 #: ../src/guestfs.pod:2588
5451 msgid "Useful targets are:"
5455 #: ../src/guestfs.pod:2590
5458 " make syntax-check # checks the syntax of the C code\n"
5459 " make check # runs the test suite\n"
5464 #: ../src/guestfs.pod:2593
5465 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
5469 #: ../src/guestfs.pod:2595
5471 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
5472 "which are used to do shell quoting."
5476 #: ../src/guestfs.pod:2600
5481 #: ../src/guestfs.pod:2602
5483 "Simple shell quoted string. Any spaces or other shell characters are "
5488 #: ../src/guestfs.pod:2605
5493 #: ../src/guestfs.pod:2607
5495 "Same as C<%Q> except the string is treated as a path which is prefixed by "
5501 #: ../src/guestfs.pod:2612 ../fish/guestfish.pod:240 ../fish/guestfish.pod:613
5502 msgid "For example:"
5506 #: ../src/guestfs.pod:2614
5509 " asprintf (&cmd, \"cat %R\", path);\n"
5514 #: ../src/guestfs.pod:2616
5515 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
5519 #: ../src/guestfs.pod:2618
5521 "I<Note:> Do I<not> use these when you are passing parameters to the C<command"
5522 "{,r,v,rv}()> functions. These parameters do NOT need to be quoted because "
5523 "they are not passed via the shell (instead, straight to exec). You probably "
5524 "want to use the C<sysroot_path()> function however."
5528 #: ../src/guestfs.pod:2624
5529 msgid "SUBMITTING YOUR NEW API ACTIONS"
5533 #: ../src/guestfs.pod:2626
5535 "Submit patches to the mailing list: L<http://www.redhat.com/mailman/listinfo/"
5536 "libguestfs> and CC to L<rjones@redhat.com>."
5540 #: ../src/guestfs.pod:2630
5541 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5545 #: ../src/guestfs.pod:2632
5546 msgid "We support i18n (gettext anyhow) in the library."
5550 #: ../src/guestfs.pod:2634
5552 "However many messages come from the daemon, and we don't translate those at "
5553 "the moment. One reason is that the appliance generally has all locale files "
5554 "removed from it, because they take up a lot of space. So we'd have to readd "
5555 "some of those, as well as copying our PO files into the appliance."
5559 #: ../src/guestfs.pod:2640
5561 "Debugging messages are never translated, since they are intended for the "
5566 #: ../src/guestfs.pod:2643
5567 msgid "SOURCE CODE SUBDIRECTORIES"
5571 #: ../src/guestfs.pod:2647 ../src/guestfs-actions.pod:5827
5572 #: ../fish/guestfish-actions.pod:3921
5573 msgid "C<appliance>"
5577 #: ../src/guestfs.pod:2649
5578 msgid "The libguestfs appliance, build scripts and so on."
5582 #: ../src/guestfs.pod:2651
5583 msgid "C<capitests>"
5587 #: ../src/guestfs.pod:2653
5588 msgid "Automated tests of the C API."
5592 #: ../src/guestfs.pod:2655
5597 #: ../src/guestfs.pod:2657
5599 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
5604 #: ../src/guestfs.pod:2660
5609 #: ../src/guestfs.pod:2662
5611 "Safety and liveness tests of components that libguestfs depends upon (not of "
5612 "libguestfs itself). Mainly this is for qemu and the kernel."
5616 #: ../src/guestfs.pod:2665
5621 #: ../src/guestfs.pod:2667
5622 msgid "Outside contributions, experimental parts."
5626 #: ../src/guestfs.pod:2669
5631 #: ../src/guestfs.pod:2671
5633 "The daemon that runs inside the libguestfs appliance and carries out actions."
5637 #: ../src/guestfs.pod:2674
5642 #: ../src/guestfs.pod:2676
5643 msgid "L<virt-df(1)> command and documentation."
5647 #: ../src/guestfs.pod:2678
5652 #: ../src/guestfs.pod:2680
5653 msgid "C API example code."
5657 #: ../src/guestfs.pod:2682
5662 #: ../src/guestfs.pod:2684
5664 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5665 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
5666 "L<virt-tar-out(1)>."
5670 #: ../src/guestfs.pod:2688
5675 #: ../src/guestfs.pod:2690
5677 "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5681 #: ../src/guestfs.pod:2692
5682 msgid "C<generator>"
5686 #: ../src/guestfs.pod:2694
5688 "The crucially important generator, used to automatically generate large "
5689 "amounts of boilerplate C code for things like RPC and bindings."
5693 #: ../src/guestfs.pod:2697
5698 #: ../src/guestfs.pod:2699
5699 msgid "Files used by the test suite."
5703 #: ../src/guestfs.pod:2701
5704 msgid "Some \"phony\" guest images which we test against."
5708 #: ../src/guestfs.pod:2703
5709 msgid "C<inspector>"
5713 #: ../src/guestfs.pod:2705
5714 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5718 #: ../src/guestfs.pod:2707
5723 #: ../src/guestfs.pod:2709
5724 msgid "Logo used on the website. The fish is called Arthur by the way."
5728 #: ../src/guestfs.pod:2711
5733 #: ../src/guestfs.pod:2713
5734 msgid "M4 macros used by autoconf."
5738 #: ../src/guestfs.pod:2715
5743 #: ../src/guestfs.pod:2717
5744 msgid "Translations of simple gettext strings."
5748 #: ../src/guestfs.pod:2719
5753 #: ../src/guestfs.pod:2721
5755 "The build infrastructure and PO files for translations of manpages and POD "
5756 "files. Eventually this will be combined with the C<po> directory, but that "
5757 "is rather complicated."
5761 #: ../src/guestfs.pod:2725
5762 msgid "C<regressions>"
5766 #: ../src/guestfs.pod:2727
5767 msgid "Regression tests."
5771 #: ../src/guestfs.pod:2729
5776 #: ../src/guestfs.pod:2731
5777 msgid "L<virt-rescue(1)> command and documentation."
5781 #: ../src/guestfs.pod:2733
5786 #: ../src/guestfs.pod:2735
5787 msgid "Source code to the C library."
5791 #: ../src/guestfs.pod:2737
5796 #: ../src/guestfs.pod:2739
5797 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5801 #: ../src/guestfs.pod:2741
5802 msgid "C<test-tool>"
5806 #: ../src/guestfs.pod:2743
5808 "Test tool for end users to test if their qemu/kernel combination will work "
5813 #: ../src/guestfs.pod:2746
5818 #: ../src/guestfs.pod:2748
5823 #: ../src/guestfs.pod:2750
5828 #: ../src/guestfs.pod:2752
5833 #: ../src/guestfs.pod:2754
5838 #: ../src/guestfs.pod:2756
5843 #: ../src/guestfs.pod:2758
5848 #: ../src/guestfs.pod:2760
5853 #: ../src/guestfs.pod:2762
5854 msgid "Language bindings."
5858 #: ../src/guestfs.pod:2766
5864 #: ../src/guestfs.pod:2768
5865 msgid "PROTOCOL LIMITS"
5870 #: ../src/guestfs.pod:2770
5872 "Internally libguestfs uses a message-based protocol to pass API calls and "
5873 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
5874 "plenty more detail about this). The maximum message size used by the "
5875 "protocol is slightly less than 4 MB. For some API calls you may need to be "
5876 "aware of this limit. The API calls which may be affected are individually "
5877 "documented, with a link back to this section of the documentation."
5882 #: ../src/guestfs.pod:2778
5884 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
5885 "a simple string. Because this string is at some point internally encoded as "
5886 "a message, the maximum size that it can return is slightly under 4 MB. If "
5887 "the requested file is larger than this then you will get an error."
5892 #: ../src/guestfs.pod:2784
5894 "In order to transfer large files into and out of the guest filesystem, you "
5895 "need to use particular calls that support this. The sections L</UPLOADING> "
5896 "and L</DOWNLOADING> document how to do this."
5901 #: ../src/guestfs.pod:2788
5903 "You might also consider mounting the disk image using our FUSE filesystem "
5904 "support (L<guestmount(1)>)."
5908 #: ../src/guestfs.pod:2791
5909 msgid "MAXIMUM NUMBER OF DISKS"
5913 #: ../src/guestfs.pod:2793
5914 msgid "When using virtio disks (the default) the current limit is B<25> disks."
5918 #: ../src/guestfs.pod:2796
5920 "Virtio itself consumes 1 virtual PCI slot per disk, and PCI is limited to 31 "
5921 "slots. However febootstrap only understands disks with names C</dev/vda> "
5922 "through C</dev/vdz> (26 letters) and it reserves one disk for its own "
5927 #: ../src/guestfs.pod:2801
5929 "We are working to substantially raise this limit in future versions but it "
5930 "requires complex changes to qemu."
5934 #: ../src/guestfs.pod:2804
5936 "In future versions of libguestfs it should also be possible to \"hot plug\" "
5937 "disks (add and remove disks after calling L</guestfs_launch>). This also "
5938 "requires changes to qemu."
5942 #: ../src/guestfs.pod:2808
5943 msgid "MAXIMUM NUMBER OF PARTITIONS PER DISK"
5947 #: ../src/guestfs.pod:2810
5948 msgid "Virtio limits the maximum number of partitions per disk to B<15>."
5952 #: ../src/guestfs.pod:2812
5954 "This is because it reserves 4 bits for the minor device number (thus C</dev/"
5955 "vda>, and C</dev/vda1> through C</dev/vda15>)."
5959 #: ../src/guestfs.pod:2815
5961 "If you attach a disk with more than 15 partitions, the extra partitions are "
5962 "ignored by libguestfs."
5966 #: ../src/guestfs.pod:2818
5967 msgid "MAXIMUM SIZE OF A DISK"
5971 #: ../src/guestfs.pod:2820
5972 msgid "Probably the limit is between 2**63-1 and 2**64-1 bytes."
5976 #: ../src/guestfs.pod:2822
5978 "We have tested block devices up to 1 exabyte (2**60 or "
5979 "1,152,921,504,606,846,976 bytes) using sparse files backed by an XFS host "
5984 #: ../src/guestfs.pod:2826
5986 "Although libguestfs probably does not impose any limit, the underlying host "
5987 "storage will. If you store disk images on a host ext4 filesystem, then the "
5988 "maximum size will be limited by the maximum ext4 file size (currently 16 "
5989 "TB). If you store disk images as host logical volumes then you are limited "
5990 "by the maximum size of an LV."
5994 #: ../src/guestfs.pod:2832
5996 "For the hugest disk image files, we recommend using XFS on the host for "
6001 #: ../src/guestfs.pod:2835
6002 msgid "MAXIMUM SIZE OF A PARTITION"
6006 #: ../src/guestfs.pod:2837
6008 "The MBR (ie. classic MS-DOS) partitioning scheme uses 32 bit sector "
6009 "numbers. Assuming a 512 byte sector size, this means that MBR cannot "
6010 "address a partition located beyond 2 TB on the disk."
6014 #: ../src/guestfs.pod:2841
6016 "It is recommended that you use GPT partitions on disks which are larger than "
6017 "this size. GPT uses 64 bit sector numbers and so can address partitions "
6018 "which are theoretically larger than the largest disk we could support."
6022 #: ../src/guestfs.pod:2846
6023 msgid "MAXIMUM SIZE OF A FILESYSTEM, FILES, DIRECTORIES"
6027 #: ../src/guestfs.pod:2848
6029 "This depends on the filesystem type. libguestfs itself does not impose any "
6030 "known limit. Consult Wikipedia or the filesystem documentation to find out "
6031 "what these limits are."
6035 #: ../src/guestfs.pod:2852
6036 msgid "MAXIMUM UPLOAD AND DOWNLOAD"
6040 #: ../src/guestfs.pod:2854
6042 "The API functions L</guestfs_upload>, L</guestfs_download>, L</"
6043 "guestfs_tar_in>, L</guestfs_tar_out> and the like allow unlimited sized "
6044 "uploads and downloads."
6048 #: ../src/guestfs.pod:2858
6049 msgid "INSPECTION LIMITS"
6053 #: ../src/guestfs.pod:2860
6055 "The inspection code has several arbitrary limits on things like the size of "
6056 "Windows Registry hive it will read, and the length of product name. These "
6057 "are intended to stop a malicious guest from consuming arbitrary amounts of "
6058 "memory and disk space on the host, and should not be reached in practice. "
6059 "See the source code for more information."
6064 #: ../src/guestfs.pod:2866 ../fish/guestfish.pod:1015
6065 #: ../test-tool/libguestfs-test-tool.pod:82 ../tools/virt-edit.pl:476
6066 msgid "ENVIRONMENT VARIABLES"
6071 #: ../src/guestfs.pod:2870 ../fish/guestfish.pod:1041
6072 msgid "LIBGUESTFS_APPEND"
6077 #: ../src/guestfs.pod:2872 ../fish/guestfish.pod:1043
6078 msgid "Pass additional options to the guest kernel."
6083 #: ../src/guestfs.pod:2874 ../fish/guestfish.pod:1045
6084 msgid "LIBGUESTFS_DEBUG"
6089 #: ../src/guestfs.pod:2876
6091 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages. This has the same "
6092 "effect as calling C<guestfs_set_verbose (g, 1)>."
6097 #: ../src/guestfs.pod:2879 ../fish/guestfish.pod:1050
6098 msgid "LIBGUESTFS_MEMSIZE"
6103 #: ../src/guestfs.pod:2881 ../fish/guestfish.pod:1052
6105 "Set the memory allocated to the qemu process, in megabytes. For example:"
6110 #: ../src/guestfs.pod:2884 ../fish/guestfish.pod:1055
6113 " LIBGUESTFS_MEMSIZE=700\n"
6119 #: ../src/guestfs.pod:2886 ../fish/guestfish.pod:1057
6120 msgid "LIBGUESTFS_PATH"
6124 #: ../src/guestfs.pod:2888
6126 "Set the path that libguestfs uses to search for a supermin appliance. See "
6127 "the discussion of paths in section L</PATH> above."
6132 #: ../src/guestfs.pod:2891 ../fish/guestfish.pod:1062
6133 msgid "LIBGUESTFS_QEMU"
6138 #: ../src/guestfs.pod:2893 ../fish/guestfish.pod:1064
6140 "Set the default qemu binary that libguestfs uses. If not set, then the qemu "
6141 "which was found at compile time by the configure script is used."
6146 #: ../src/guestfs.pod:2897
6147 msgid "See also L</QEMU WRAPPERS> above."
6152 #: ../src/guestfs.pod:2899 ../fish/guestfish.pod:1068
6153 msgid "LIBGUESTFS_TRACE"
6158 #: ../src/guestfs.pod:2901
6160 "Set C<LIBGUESTFS_TRACE=1> to enable command traces. This has the same "
6161 "effect as calling C<guestfs_set_trace (g, 1)>."
6166 #: ../src/guestfs.pod:2904 ../fish/guestfish.pod:1077
6171 #: ../src/guestfs.pod:2906 ../fish/guestfish.pod:1079
6173 "Location of temporary directory, defaults to C</tmp> except for the cached "
6174 "supermin appliance which defaults to C</var/tmp>."
6178 #: ../src/guestfs.pod:2909 ../fish/guestfish.pod:1082
6180 "If libguestfs was compiled to use the supermin appliance then the real "
6181 "appliance is cached in this directory, shared between all handles belonging "
6182 "to the same EUID. You can use C<$TMPDIR> to configure another directory to "
6183 "use in case C</var/tmp> is not large enough."
6188 #: ../src/guestfs.pod:2917 ../fish/guestfish.pod:1149
6189 #: ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:277
6190 #: ../tools/virt-edit.pl:496 ../tools/virt-win-reg.pl:572
6191 #: ../tools/virt-list-filesystems.pl:189 ../tools/virt-tar.pl:286
6192 #: ../tools/virt-make-fs.pl:539 ../tools/virt-list-partitions.pl:257
6197 #: ../src/guestfs.pod:2919
6199 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, L<guestfs-"
6200 "ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, L<virt-copy-in"
6201 "(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems"
6202 "(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-"
6203 "partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-"
6204 "tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<qemu(1)"
6205 ">, L<febootstrap(1)>, L<hivex(3)>, L<http://libguestfs.org/>."
6210 #: ../src/guestfs.pod:2946
6212 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, L<lvm"
6213 "(8)>, L<disktype(1)>."
6218 #: ../src/guestfs.pod:2953 ../tools/virt-win-reg.pl:587
6219 #: ../tools/virt-make-fs.pl:553
6225 #: ../src/guestfs.pod:2955
6226 msgid "To get a list of bugs against libguestfs use this link:"
6231 #: ../src/guestfs.pod:2957
6233 "L<https://bugzilla.redhat.com/buglist.cgi?"
6234 "component=libguestfs&product=Virtualization+Tools>"
6239 #: ../src/guestfs.pod:2959
6240 msgid "To report a new bug against libguestfs use this link:"
6245 #: ../src/guestfs.pod:2961
6247 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
6248 "component=libguestfs&product=Virtualization+Tools>"
6253 #: ../src/guestfs.pod:2963
6254 msgid "When reporting a bug, please check:"
6259 #: ../src/guestfs.pod:2969
6260 msgid "That the bug hasn't been reported already."
6265 #: ../src/guestfs.pod:2973
6266 msgid "That you are testing a recent version."
6271 #: ../src/guestfs.pod:2977
6272 msgid "Describe the bug accurately, and give a way to reproduce it."
6277 #: ../src/guestfs.pod:2981
6279 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
6285 #: ../src/guestfs.pod:2986 ../fish/guestfish.pod:1172
6286 #: ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:288
6292 #: ../src/guestfs.pod:2988 ../fish/guestfish.pod:1174
6293 #: ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:290
6294 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
6299 #: ../src/guestfs.pod:2990 ../fish/guestfish.pod:1176
6300 #: ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:292
6301 #: ../tools/virt-edit.pl:514 ../tools/virt-win-reg.pl:602
6302 #: ../tools/virt-list-filesystems.pl:206 ../tools/virt-tar.pl:305
6303 #: ../tools/virt-make-fs.pl:568 ../tools/virt-list-partitions.pl:273
6308 #: ../src/guestfs.pod:2992 ../fish/guestfish.pod:1178
6309 #: ../test-tool/libguestfs-test-tool.pod:99
6310 msgid "Copyright (C) 2009-2011 Red Hat Inc. L<http://libguestfs.org/>"
6315 #: ../src/guestfs.pod:2995
6317 "This library is free software; you can redistribute it and/or modify it "
6318 "under the terms of the GNU Lesser General Public License as published by the "
6319 "Free Software Foundation; either version 2 of the License, or (at your "
6320 "option) any later version."
6325 #: ../src/guestfs.pod:3000
6327 "This library is distributed in the hope that it will be useful, but WITHOUT "
6328 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
6329 "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License "
6335 #: ../src/guestfs.pod:3005
6337 "You should have received a copy of the GNU Lesser General Public License "
6338 "along with this library; if not, write to the Free Software Foundation, "
6339 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
6344 #: ../src/guestfs-actions.pod:1
6345 msgid "guestfs_add_cdrom"
6350 #: ../src/guestfs-actions.pod:3
6354 " guestfs_add_cdrom (guestfs_h *g,\n"
6355 " const char *filename);\n"
6361 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
6362 msgid "This function adds a virtual CD-ROM disk image to the guest."
6366 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
6367 msgid "This is equivalent to the qemu parameter I<-cdrom filename>."
6372 #: ../src/guestfs-actions.pod:17
6374 "This call checks for the existence of C<filename>. This stops you from "
6375 "specifying other types of drive which are supported by qemu such as C<nbd:> "
6376 "and C<http:> URLs. To specify those, use the general C<guestfs_config> call "
6382 #: ../src/guestfs-actions.pod:24
6384 "If you just want to add an ISO file (often you use this as an efficient way "
6385 "to transfer large files into the guest), then you should probably use "
6386 "C<guestfs_add_drive_ro> instead."
6391 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:134
6392 #: ../src/guestfs-actions.pod:195 ../src/guestfs-actions.pod:232
6393 #: ../src/guestfs-actions.pod:246 ../src/guestfs-actions.pod:267
6394 #: ../src/guestfs-actions.pod:287 ../src/guestfs-actions.pod:301
6395 #: ../src/guestfs-actions.pod:416 ../src/guestfs-actions.pod:436
6396 #: ../src/guestfs-actions.pod:450 ../src/guestfs-actions.pod:495
6397 #: ../src/guestfs-actions.pod:523 ../src/guestfs-actions.pod:541
6398 #: ../src/guestfs-actions.pod:608 ../src/guestfs-actions.pod:641
6399 #: ../src/guestfs-actions.pod:655 ../src/guestfs-actions.pod:670
6400 #: ../src/guestfs-actions.pod:769 ../src/guestfs-actions.pod:787
6401 #: ../src/guestfs-actions.pod:801 ../src/guestfs-actions.pod:815
6402 #: ../src/guestfs-actions.pod:976 ../src/guestfs-actions.pod:996
6403 #: ../src/guestfs-actions.pod:1014 ../src/guestfs-actions.pod:1098
6404 #: ../src/guestfs-actions.pod:1116 ../src/guestfs-actions.pod:1135
6405 #: ../src/guestfs-actions.pod:1149 ../src/guestfs-actions.pod:1169
6406 #: ../src/guestfs-actions.pod:1239 ../src/guestfs-actions.pod:1270
6407 #: ../src/guestfs-actions.pod:1295 ../src/guestfs-actions.pod:1337
6408 #: ../src/guestfs-actions.pod:1443 ../src/guestfs-actions.pod:1477
6409 #: ../src/guestfs-actions.pod:1692 ../src/guestfs-actions.pod:1714
6410 #: ../src/guestfs-actions.pod:1801 ../src/guestfs-actions.pod:2263
6411 #: ../src/guestfs-actions.pod:2407 ../src/guestfs-actions.pod:2468
6412 #: ../src/guestfs-actions.pod:2503 ../src/guestfs-actions.pod:3456
6413 #: ../src/guestfs-actions.pod:3471 ../src/guestfs-actions.pod:3496
6414 #: ../src/guestfs-actions.pod:3651 ../src/guestfs-actions.pod:3665
6415 #: ../src/guestfs-actions.pod:3678 ../src/guestfs-actions.pod:3692
6416 #: ../src/guestfs-actions.pod:3707 ../src/guestfs-actions.pod:3743
6417 #: ../src/guestfs-actions.pod:3815 ../src/guestfs-actions.pod:3835
6418 #: ../src/guestfs-actions.pod:3852 ../src/guestfs-actions.pod:3875
6419 #: ../src/guestfs-actions.pod:3898 ../src/guestfs-actions.pod:3930
6420 #: ../src/guestfs-actions.pod:3949 ../src/guestfs-actions.pod:3968
6421 #: ../src/guestfs-actions.pod:4003 ../src/guestfs-actions.pod:4015
6422 #: ../src/guestfs-actions.pod:4051 ../src/guestfs-actions.pod:4067
6423 #: ../src/guestfs-actions.pod:4080 ../src/guestfs-actions.pod:4095
6424 #: ../src/guestfs-actions.pod:4112 ../src/guestfs-actions.pod:4205
6425 #: ../src/guestfs-actions.pod:4225 ../src/guestfs-actions.pod:4238
6426 #: ../src/guestfs-actions.pod:4289 ../src/guestfs-actions.pod:4307
6427 #: ../src/guestfs-actions.pod:4325 ../src/guestfs-actions.pod:4341
6428 #: ../src/guestfs-actions.pod:4355 ../src/guestfs-actions.pod:4369
6429 #: ../src/guestfs-actions.pod:4386 ../src/guestfs-actions.pod:4401
6430 #: ../src/guestfs-actions.pod:4421 ../src/guestfs-actions.pod:4479
6431 #: ../src/guestfs-actions.pod:4552 ../src/guestfs-actions.pod:4583
6432 #: ../src/guestfs-actions.pod:4602 ../src/guestfs-actions.pod:4621
6433 #: ../src/guestfs-actions.pod:4633 ../src/guestfs-actions.pod:4650
6434 #: ../src/guestfs-actions.pod:4663 ../src/guestfs-actions.pod:4678
6435 #: ../src/guestfs-actions.pod:4693 ../src/guestfs-actions.pod:4728
6436 #: ../src/guestfs-actions.pod:4750 ../src/guestfs-actions.pod:4770
6437 #: ../src/guestfs-actions.pod:4784 ../src/guestfs-actions.pod:4801
6438 #: ../src/guestfs-actions.pod:4850 ../src/guestfs-actions.pod:4896
6439 #: ../src/guestfs-actions.pod:4910 ../src/guestfs-actions.pod:4938
6440 #: ../src/guestfs-actions.pod:4955 ../src/guestfs-actions.pod:4973
6441 #: ../src/guestfs-actions.pod:5107 ../src/guestfs-actions.pod:5164
6442 #: ../src/guestfs-actions.pod:5186 ../src/guestfs-actions.pod:5204
6443 #: ../src/guestfs-actions.pod:5236 ../src/guestfs-actions.pod:5302
6444 #: ../src/guestfs-actions.pod:5319 ../src/guestfs-actions.pod:5332
6445 #: ../src/guestfs-actions.pod:5346 ../src/guestfs-actions.pod:5635
6446 #: ../src/guestfs-actions.pod:5654 ../src/guestfs-actions.pod:5673
6447 #: ../src/guestfs-actions.pod:5685 ../src/guestfs-actions.pod:5697
6448 #: ../src/guestfs-actions.pod:5711 ../src/guestfs-actions.pod:5723
6449 #: ../src/guestfs-actions.pod:5737 ../src/guestfs-actions.pod:5753
6450 #: ../src/guestfs-actions.pod:5774 ../src/guestfs-actions.pod:5793
6451 #: ../src/guestfs-actions.pod:5812 ../src/guestfs-actions.pod:5842
6452 #: ../src/guestfs-actions.pod:5858 ../src/guestfs-actions.pod:5881
6453 #: ../src/guestfs-actions.pod:5899 ../src/guestfs-actions.pod:5918
6454 #: ../src/guestfs-actions.pod:5939 ../src/guestfs-actions.pod:5958
6455 #: ../src/guestfs-actions.pod:5975 ../src/guestfs-actions.pod:6003
6456 #: ../src/guestfs-actions.pod:6027 ../src/guestfs-actions.pod:6046
6457 #: ../src/guestfs-actions.pod:6070 ../src/guestfs-actions.pod:6089
6458 #: ../src/guestfs-actions.pod:6104 ../src/guestfs-actions.pod:6123
6459 #: ../src/guestfs-actions.pod:6160 ../src/guestfs-actions.pod:6190
6460 #: ../src/guestfs-actions.pod:6223 ../src/guestfs-actions.pod:6345
6461 #: ../src/guestfs-actions.pod:6466 ../src/guestfs-actions.pod:6478
6462 #: ../src/guestfs-actions.pod:6491 ../src/guestfs-actions.pod:6504
6463 #: ../src/guestfs-actions.pod:6526 ../src/guestfs-actions.pod:6539
6464 #: ../src/guestfs-actions.pod:6552 ../src/guestfs-actions.pod:6565
6465 #: ../src/guestfs-actions.pod:6580 ../src/guestfs-actions.pod:6639
6466 #: ../src/guestfs-actions.pod:6656 ../src/guestfs-actions.pod:6672
6467 #: ../src/guestfs-actions.pod:6688 ../src/guestfs-actions.pod:6705
6468 #: ../src/guestfs-actions.pod:6718 ../src/guestfs-actions.pod:6738
6469 #: ../src/guestfs-actions.pod:6774 ../src/guestfs-actions.pod:6788
6470 #: ../src/guestfs-actions.pod:6829 ../src/guestfs-actions.pod:6842
6471 #: ../src/guestfs-actions.pod:6860 ../src/guestfs-actions.pod:6894
6472 #: ../src/guestfs-actions.pod:6930 ../src/guestfs-actions.pod:7049
6473 #: ../src/guestfs-actions.pod:7067 ../src/guestfs-actions.pod:7081
6474 #: ../src/guestfs-actions.pod:7136 ../src/guestfs-actions.pod:7149
6475 #: ../src/guestfs-actions.pod:7194 ../src/guestfs-actions.pod:7227
6476 #: ../src/guestfs-actions.pod:7288 ../src/guestfs-actions.pod:7314
6477 #: ../src/guestfs-actions.pod:7380 ../src/guestfs-actions.pod:7399
6478 #: ../src/guestfs-actions.pod:7428
6479 msgid "This function returns 0 on success or -1 on error."
6484 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:248
6485 #: ../src/guestfs-actions.pod:269 ../fish/guestfish-actions.pod:28
6486 #: ../fish/guestfish-actions.pod:158 ../fish/guestfish-actions.pod:172
6488 "This function is deprecated. In new code, use the C<add_drive_opts> call "
6494 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:251
6495 #: ../src/guestfs-actions.pod:272 ../src/guestfs-actions.pod:1448
6496 #: ../src/guestfs-actions.pod:1941 ../src/guestfs-actions.pod:1962
6497 #: ../src/guestfs-actions.pod:4426 ../src/guestfs-actions.pod:4733
6498 #: ../src/guestfs-actions.pod:6168 ../src/guestfs-actions.pod:6198
6499 #: ../src/guestfs-actions.pod:6231 ../src/guestfs-actions.pod:6290
6500 #: ../src/guestfs-actions.pod:7232 ../src/guestfs-actions.pod:7322
6501 #: ../src/guestfs-actions.pod:7491 ../fish/guestfish-actions.pod:31
6502 #: ../fish/guestfish-actions.pod:161 ../fish/guestfish-actions.pod:175
6503 #: ../fish/guestfish-actions.pod:956 ../fish/guestfish-actions.pod:1316
6504 #: ../fish/guestfish-actions.pod:1330 ../fish/guestfish-actions.pod:3005
6505 #: ../fish/guestfish-actions.pod:3202 ../fish/guestfish-actions.pod:4183
6506 #: ../fish/guestfish-actions.pod:4206 ../fish/guestfish-actions.pod:4228
6507 #: ../fish/guestfish-actions.pod:4266 ../fish/guestfish-actions.pod:4907
6508 #: ../fish/guestfish-actions.pod:5004
6510 "Deprecated functions will not be removed from the API, but the fact that "
6511 "they are deprecated indicates that there are problems with correct use of "
6517 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:136
6518 #: ../src/guestfs-actions.pod:1100 ../src/guestfs-actions.pod:1913
6519 #: ../src/guestfs-actions.pod:2011 ../src/guestfs-actions.pod:2114
6520 #: ../src/guestfs-actions.pod:3458 ../src/guestfs-actions.pod:3478
6521 #: ../src/guestfs-actions.pod:4737 ../src/guestfs-actions.pod:5860
6522 #: ../src/guestfs-actions.pod:5977 ../src/guestfs-actions.pod:6091
6523 #: ../src/guestfs-actions.pod:6582 ../src/guestfs-actions.pod:6707
6524 #: ../src/guestfs-actions.pod:7236
6525 msgid "(Added in 0.3)"
6530 #: ../src/guestfs-actions.pod:41
6531 msgid "guestfs_add_domain"
6536 #: ../src/guestfs-actions.pod:43
6540 " guestfs_add_domain (guestfs_h *g,\n"
6541 " const char *dom,\n"
6548 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:145
6549 #: ../src/guestfs-actions.pod:4440
6551 "You may supply a list of optional arguments to this call. Use zero or more "
6552 "of the following pairs of parameters, and terminate the list with C<-1> on "
6553 "its own. See L</CALLS WITH OPTIONAL ARGUMENTS>."
6557 #: ../src/guestfs-actions.pod:53
6560 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
6561 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
6562 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
6563 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
6569 #: ../src/guestfs-actions.pod:58
6571 "This function adds the disk(s) attached to the named libvirt domain C<dom>. "
6572 "It works by connecting to libvirt, requesting the domain and domain XML from "
6573 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
6579 #: ../src/guestfs-actions.pod:63 ../fish/guestfish-actions.pod:46
6581 "The number of disks added is returned. This operation is atomic: if an "
6582 "error is returned, then no disks are added."
6587 #: ../src/guestfs-actions.pod:66 ../fish/guestfish-actions.pod:49
6589 "This function does some minimal checks to make sure the libvirt domain is "
6590 "not running (unless C<readonly> is true). In a future version we will try "
6591 "to acquire the libvirt lock on each disk."
6596 #: ../src/guestfs-actions.pod:70 ../fish/guestfish-actions.pod:53
6598 "Disks must be accessible locally. This often means that adding disks from a "
6599 "remote libvirt connection (see L<http://libvirt.org/remote.html>) will fail "
6600 "unless those disks are accessible via the same device path locally too."
6604 #: ../src/guestfs-actions.pod:75 ../fish/guestfish-actions.pod:58
6606 "The optional C<libvirturi> parameter sets the libvirt URI (see L<http://"
6607 "libvirt.org/uri.html>). If this is not set then we connect to the default "
6608 "libvirt URI (or one set through an environment variable, see the libvirt "
6609 "documentation for full details)."
6613 #: ../src/guestfs-actions.pod:81 ../fish/guestfish-actions.pod:64
6615 "The optional C<live> flag controls whether this call will try to connect to "
6616 "a running virtual machine C<guestfsd> process if it sees a suitable "
6617 "E<lt>channelE<gt> element in the libvirt XML definition. The default (if "
6618 "the flag is omitted) is never to try. See L<guestfs(3)/ATTACHING TO RUNNING "
6619 "DAEMONS> for more information."
6624 #: ../src/guestfs-actions.pod:88
6626 "The other optional parameters are passed directly through to "
6627 "C<guestfs_add_drive_opts>."
6632 #: ../src/guestfs-actions.pod:91 ../src/guestfs-actions.pod:344
6633 #: ../src/guestfs-actions.pod:509 ../src/guestfs-actions.pod:687
6634 #: ../src/guestfs-actions.pod:718 ../src/guestfs-actions.pod:736
6635 #: ../src/guestfs-actions.pod:755 ../src/guestfs-actions.pod:1315
6636 #: ../src/guestfs-actions.pod:1671 ../src/guestfs-actions.pod:1874
6637 #: ../src/guestfs-actions.pod:1983 ../src/guestfs-actions.pod:2023
6638 #: ../src/guestfs-actions.pod:2078 ../src/guestfs-actions.pod:2101
6639 #: ../src/guestfs-actions.pod:2394 ../src/guestfs-actions.pod:2777
6640 #: ../src/guestfs-actions.pod:2798 ../src/guestfs-actions.pod:4873
6641 #: ../src/guestfs-actions.pod:5010 ../src/guestfs-actions.pod:5416
6642 #: ../src/guestfs-actions.pod:5442 ../src/guestfs-actions.pod:6815
6643 #: ../src/guestfs-actions.pod:7247 ../src/guestfs-actions.pod:7260
6644 #: ../src/guestfs-actions.pod:7273
6645 msgid "On error this function returns -1."
6650 #: ../src/guestfs-actions.pod:93
6651 msgid "(Added in 1.7.4)"
6656 #: ../src/guestfs-actions.pod:95
6657 msgid "guestfs_add_domain_va"
6662 #: ../src/guestfs-actions.pod:97
6666 " guestfs_add_domain_va (guestfs_h *g,\n"
6667 " const char *dom,\n"
6674 #: ../src/guestfs-actions.pod:102
6675 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
6680 #: ../src/guestfs-actions.pod:104 ../src/guestfs-actions.pod:115
6681 #: ../src/guestfs-actions.pod:208 ../src/guestfs-actions.pod:219
6682 #: ../src/guestfs-actions.pod:4493 ../src/guestfs-actions.pod:4505
6683 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
6688 #: ../src/guestfs-actions.pod:106
6689 msgid "guestfs_add_domain_argv"
6694 #: ../src/guestfs-actions.pod:108
6698 " guestfs_add_domain_argv (guestfs_h *g,\n"
6699 " const char *dom,\n"
6700 " const struct guestfs_add_domain_argv *optargs);\n"
6706 #: ../src/guestfs-actions.pod:113
6707 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
6712 #: ../src/guestfs-actions.pod:117
6713 msgid "guestfs_add_drive"
6718 #: ../src/guestfs-actions.pod:119
6722 " guestfs_add_drive (guestfs_h *g,\n"
6723 " const char *filename);\n"
6729 #: ../src/guestfs-actions.pod:123
6731 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
6732 "optional parameters, so the disk is added writable, with the format being "
6733 "detected automatically."
6738 #: ../src/guestfs-actions.pod:127
6740 "Automatic detection of the format opens you up to a potential security hole "
6741 "when dealing with untrusted raw-format images. See CVE-2010-3851 and "
6742 "RHBZ#642934. Specifying the format closes this security hole. Therefore "
6743 "you should think about replacing calls to this function with calls to "
6744 "C<guestfs_add_drive_opts>, and specifying the format."
6749 #: ../src/guestfs-actions.pod:138
6750 msgid "guestfs_add_drive_opts"
6755 #: ../src/guestfs-actions.pod:140
6759 " guestfs_add_drive_opts (guestfs_h *g,\n"
6760 " const char *filename,\n"
6767 #: ../src/guestfs-actions.pod:150
6770 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6771 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6772 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6778 #: ../src/guestfs-actions.pod:154 ../fish/guestfish-actions.pod:97
6780 "This function adds a virtual machine disk image C<filename> to libguestfs. "
6781 "The first time you call this function, the disk appears as C</dev/sda>, the "
6782 "second time as C</dev/sdb>, and so on."
6787 #: ../src/guestfs-actions.pod:159 ../fish/guestfish-actions.pod:102
6789 "You don't necessarily need to be root when using libguestfs. However you "
6790 "obviously do need sufficient permissions to access the filename for whatever "
6791 "operations you want to perform (ie. read access if you just want to read the "
6792 "image or write access if you want to modify the image)."
6797 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:108
6798 msgid "This call checks that C<filename> exists."
6803 #: ../src/guestfs-actions.pod:167 ../src/guestfs-actions.pod:4451
6804 #: ../fish/guestfish-actions.pod:110 ../fish/guestfish-actions.pod:3016
6805 msgid "The optional arguments are:"
6810 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:114
6816 #: ../src/guestfs-actions.pod:173 ../fish/guestfish-actions.pod:116
6818 "If true then the image is treated as read-only. Writes are still allowed, "
6819 "but they are stored in a temporary snapshot overlay which is discarded at "
6820 "the end. The disk that you add is not modified."
6825 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:120
6831 #: ../src/guestfs-actions.pod:179
6833 "This forces the image format. If you omit this (or use C<guestfs_add_drive> "
6834 "or C<guestfs_add_drive_ro>) then the format is automatically detected. "
6835 "Possible formats include C<raw> and C<qcow2>."
6840 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:126
6842 "Automatic detection of the format opens you up to a potential security hole "
6843 "when dealing with untrusted raw-format images. See CVE-2010-3851 and "
6844 "RHBZ#642934. Specifying the format closes this security hole."
6849 #: ../src/guestfs-actions.pod:188 ../fish/guestfish-actions.pod:131
6855 #: ../src/guestfs-actions.pod:190
6857 "This rarely-used option lets you emulate the behaviour of the deprecated "
6858 "C<guestfs_add_drive_with_if> call (q.v.)"
6863 #: ../src/guestfs-actions.pod:197
6864 msgid "(Added in 1.5.23)"
6869 #: ../src/guestfs-actions.pod:199
6870 msgid "guestfs_add_drive_opts_va"
6875 #: ../src/guestfs-actions.pod:201
6879 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6880 " const char *filename,\n"
6887 #: ../src/guestfs-actions.pod:206
6888 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6893 #: ../src/guestfs-actions.pod:210
6894 msgid "guestfs_add_drive_opts_argv"
6899 #: ../src/guestfs-actions.pod:212
6903 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6904 " const char *filename,\n"
6905 " const struct guestfs_add_drive_opts_argv *optargs);\n"
6911 #: ../src/guestfs-actions.pod:217
6912 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6917 #: ../src/guestfs-actions.pod:221
6918 msgid "guestfs_add_drive_ro"
6923 #: ../src/guestfs-actions.pod:223
6927 " guestfs_add_drive_ro (guestfs_h *g,\n"
6928 " const char *filename);\n"
6934 #: ../src/guestfs-actions.pod:227
6936 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6937 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6938 "disk is added read-only, with the format being detected automatically."
6943 #: ../src/guestfs-actions.pod:234
6944 msgid "(Added in 1.0.38)"
6949 #: ../src/guestfs-actions.pod:236
6950 msgid "guestfs_add_drive_ro_with_if"
6955 #: ../src/guestfs-actions.pod:238
6959 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6960 " const char *filename,\n"
6961 " const char *iface);\n"
6967 #: ../src/guestfs-actions.pod:243
6969 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6970 "QEMU interface emulation to use at run time."
6975 #: ../src/guestfs-actions.pod:255 ../src/guestfs-actions.pod:276
6976 #: ../src/guestfs-actions.pod:2353
6977 msgid "(Added in 1.0.84)"
6982 #: ../src/guestfs-actions.pod:257
6983 msgid "guestfs_add_drive_with_if"
6988 #: ../src/guestfs-actions.pod:259
6992 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6993 " const char *filename,\n"
6994 " const char *iface);\n"
7000 #: ../src/guestfs-actions.pod:264
7002 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
7003 "QEMU interface emulation to use at run time."
7008 #: ../src/guestfs-actions.pod:278
7009 msgid "guestfs_aug_clear"
7014 #: ../src/guestfs-actions.pod:280
7018 " guestfs_aug_clear (guestfs_h *g,\n"
7019 " const char *augpath);\n"
7025 #: ../src/guestfs-actions.pod:284 ../fish/guestfish-actions.pod:183
7027 "Set the value associated with C<path> to C<NULL>. This is the same as the "
7028 "L<augtool(1)> C<clear> command."
7033 #: ../src/guestfs-actions.pod:289 ../src/guestfs-actions.pod:2103
7034 msgid "(Added in 1.3.4)"
7039 #: ../src/guestfs-actions.pod:291
7040 msgid "guestfs_aug_close"
7045 #: ../src/guestfs-actions.pod:293
7049 " guestfs_aug_close (guestfs_h *g);\n"
7055 #: ../src/guestfs-actions.pod:296
7057 "Close the current Augeas handle and free up any resources used by it. After "
7058 "calling this, you have to call C<guestfs_aug_init> again before you can use "
7059 "any other Augeas functions."
7064 #: ../src/guestfs-actions.pod:303 ../src/guestfs-actions.pod:328
7065 #: ../src/guestfs-actions.pod:346 ../src/guestfs-actions.pod:360
7066 #: ../src/guestfs-actions.pod:418 ../src/guestfs-actions.pod:438
7067 #: ../src/guestfs-actions.pod:452 ../src/guestfs-actions.pod:483
7068 #: ../src/guestfs-actions.pod:497 ../src/guestfs-actions.pod:511
7069 #: ../src/guestfs-actions.pod:525 ../src/guestfs-actions.pod:543
7070 #: ../src/guestfs-actions.pod:5493
7071 msgid "(Added in 0.7)"
7076 #: ../src/guestfs-actions.pod:305
7077 msgid "guestfs_aug_defnode"
7082 #: ../src/guestfs-actions.pod:307
7085 " struct guestfs_int_bool *\n"
7086 " guestfs_aug_defnode (guestfs_h *g,\n"
7087 " const char *name,\n"
7088 " const char *expr,\n"
7089 " const char *val);\n"
7095 #: ../src/guestfs-actions.pod:313 ../fish/guestfish-actions.pod:199
7097 "Defines a variable C<name> whose value is the result of evaluating C<expr>."
7102 #: ../src/guestfs-actions.pod:316
7104 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
7105 "calling C<guestfs_aug_set> C<expr>, C<value>. C<name> will be the nodeset "
7106 "containing that single node."
7111 #: ../src/guestfs-actions.pod:320 ../fish/guestfish-actions.pod:206
7113 "On success this returns a pair containing the number of nodes in the "
7114 "nodeset, and a boolean flag if a node was created."
7119 #: ../src/guestfs-actions.pod:324
7121 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
7122 "an error. I<The caller must call C<guestfs_free_int_bool> after use>."
7127 #: ../src/guestfs-actions.pod:330
7128 msgid "guestfs_aug_defvar"
7133 #: ../src/guestfs-actions.pod:332
7137 " guestfs_aug_defvar (guestfs_h *g,\n"
7138 " const char *name,\n"
7139 " const char *expr);\n"
7145 #: ../src/guestfs-actions.pod:337 ../fish/guestfish-actions.pod:214
7147 "Defines an Augeas variable C<name> whose value is the result of evaluating "
7148 "C<expr>. If C<expr> is NULL, then C<name> is undefined."
7153 #: ../src/guestfs-actions.pod:341 ../fish/guestfish-actions.pod:218
7155 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
7156 "evaluates to something which is not a nodeset."
7161 #: ../src/guestfs-actions.pod:348
7162 msgid "guestfs_aug_get"
7167 #: ../src/guestfs-actions.pod:350
7171 " guestfs_aug_get (guestfs_h *g,\n"
7172 " const char *augpath);\n"
7178 #: ../src/guestfs-actions.pod:354 ../fish/guestfish-actions.pod:225
7180 "Look up the value associated with C<path>. If C<path> matches exactly one "
7181 "node, the C<value> is returned."
7186 #: ../src/guestfs-actions.pod:357 ../src/guestfs-actions.pod:857
7187 #: ../src/guestfs-actions.pod:875 ../src/guestfs-actions.pod:935
7188 #: ../src/guestfs-actions.pod:951 ../src/guestfs-actions.pod:1054
7189 #: ../src/guestfs-actions.pod:1184 ../src/guestfs-actions.pod:1201
7190 #: ../src/guestfs-actions.pod:1220 ../src/guestfs-actions.pod:1354
7191 #: ../src/guestfs-actions.pod:1542 ../src/guestfs-actions.pod:1654
7192 #: ../src/guestfs-actions.pod:1817 ../src/guestfs-actions.pod:1834
7193 #: ../src/guestfs-actions.pod:1901 ../src/guestfs-actions.pod:1935
7194 #: ../src/guestfs-actions.pod:1956 ../src/guestfs-actions.pod:2126
7195 #: ../src/guestfs-actions.pod:2318 ../src/guestfs-actions.pod:2525
7196 #: ../src/guestfs-actions.pod:2618 ../src/guestfs-actions.pod:2729
7197 #: ../src/guestfs-actions.pod:2749 ../src/guestfs-actions.pod:2869
7198 #: ../src/guestfs-actions.pod:2900 ../src/guestfs-actions.pod:2924
7199 #: ../src/guestfs-actions.pod:2961 ../src/guestfs-actions.pod:3021
7200 #: ../src/guestfs-actions.pod:3044 ../src/guestfs-actions.pod:3065
7201 #: ../src/guestfs-actions.pod:3637 ../src/guestfs-actions.pod:3987
7202 #: ../src/guestfs-actions.pod:4157 ../src/guestfs-actions.pod:4267
7203 #: ../src/guestfs-actions.pod:5028 ../src/guestfs-actions.pod:5221
7204 #: ../src/guestfs-actions.pod:5391 ../src/guestfs-actions.pod:5569
7205 #: ../src/guestfs-actions.pod:5618 ../src/guestfs-actions.pod:6251
7206 #: ../src/guestfs-actions.pod:6267 ../src/guestfs-actions.pod:6284
7207 #: ../src/guestfs-actions.pod:6315 ../src/guestfs-actions.pod:6989
7208 #: ../src/guestfs-actions.pod:7008 ../src/guestfs-actions.pod:7026
7209 #: ../src/guestfs-actions.pod:7206 ../src/guestfs-actions.pod:7485
7211 "This function returns a string, or NULL on error. I<The caller must free "
7212 "the returned string after use>."
7217 #: ../src/guestfs-actions.pod:362
7218 msgid "guestfs_aug_init"
7223 #: ../src/guestfs-actions.pod:364
7227 " guestfs_aug_init (guestfs_h *g,\n"
7228 " const char *root,\n"
7235 #: ../src/guestfs-actions.pod:369 ../fish/guestfish-actions.pod:232
7237 "Create a new Augeas handle for editing configuration files. If there was "
7238 "any previous Augeas handle associated with this guestfs session, then it is "
7244 #: ../src/guestfs-actions.pod:373
7245 msgid "You must call this before using any other C<guestfs_aug_*> commands."
7250 #: ../src/guestfs-actions.pod:376 ../fish/guestfish-actions.pod:239
7252 "C<root> is the filesystem root. C<root> must not be NULL, use C</> instead."
7257 #: ../src/guestfs-actions.pod:379 ../fish/guestfish-actions.pod:242
7259 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
7260 "logical I<or> of the following integers:"
7265 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:248
7266 msgid "C<AUG_SAVE_BACKUP> = 1"
7271 #: ../src/guestfs-actions.pod:387 ../fish/guestfish-actions.pod:250
7272 msgid "Keep the original file with a C<.augsave> extension."
7277 #: ../src/guestfs-actions.pod:389 ../fish/guestfish-actions.pod:252
7278 msgid "C<AUG_SAVE_NEWFILE> = 2"
7283 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:254
7285 "Save changes into a file with extension C<.augnew>, and do not overwrite "
7286 "original. Overrides C<AUG_SAVE_BACKUP>."
7291 #: ../src/guestfs-actions.pod:394 ../fish/guestfish-actions.pod:257
7292 msgid "C<AUG_TYPE_CHECK> = 4"
7297 #: ../src/guestfs-actions.pod:396 ../fish/guestfish-actions.pod:259
7298 msgid "Typecheck lenses (can be expensive)."
7303 #: ../src/guestfs-actions.pod:398 ../fish/guestfish-actions.pod:261
7304 msgid "C<AUG_NO_STDINC> = 8"
7309 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:263
7310 msgid "Do not use standard load path for modules."
7315 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:265
7316 msgid "C<AUG_SAVE_NOOP> = 16"
7321 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:267
7322 msgid "Make save a no-op, just record what would have been changed."
7327 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:269
7328 msgid "C<AUG_NO_LOAD> = 32"
7333 #: ../src/guestfs-actions.pod:408
7334 msgid "Do not load the tree in C<guestfs_aug_init>."
7339 #: ../src/guestfs-actions.pod:412
7340 msgid "To close the handle, you can call C<guestfs_aug_close>."
7345 #: ../src/guestfs-actions.pod:414 ../fish/guestfish-actions.pod:277
7346 msgid "To find out more about Augeas, see L<http://augeas.net/>."
7351 #: ../src/guestfs-actions.pod:420
7352 msgid "guestfs_aug_insert"
7357 #: ../src/guestfs-actions.pod:422
7361 " guestfs_aug_insert (guestfs_h *g,\n"
7362 " const char *augpath,\n"
7363 " const char *label,\n"
7370 #: ../src/guestfs-actions.pod:428 ../fish/guestfish-actions.pod:283
7372 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
7373 "or after C<path> (depending on the boolean flag C<before>)."
7378 #: ../src/guestfs-actions.pod:432 ../fish/guestfish-actions.pod:287
7380 "C<path> must match exactly one existing node in the tree, and C<label> must "
7381 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
7386 #: ../src/guestfs-actions.pod:440
7387 msgid "guestfs_aug_load"
7392 #: ../src/guestfs-actions.pod:442
7396 " guestfs_aug_load (guestfs_h *g);\n"
7402 #: ../src/guestfs-actions.pod:445 ../fish/guestfish-actions.pod:295
7403 msgid "Load files into the tree."
7408 #: ../src/guestfs-actions.pod:447 ../fish/guestfish-actions.pod:297
7409 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
7414 #: ../src/guestfs-actions.pod:454
7415 msgid "guestfs_aug_ls"
7420 #: ../src/guestfs-actions.pod:456
7424 " guestfs_aug_ls (guestfs_h *g,\n"
7425 " const char *augpath);\n"
7431 #: ../src/guestfs-actions.pod:460
7433 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
7434 "sorting the resulting nodes into alphabetical order."
7439 #: ../src/guestfs-actions.pod:463 ../src/guestfs-actions.pod:479
7440 #: ../src/guestfs-actions.pod:625 ../src/guestfs-actions.pod:1073
7441 #: ../src/guestfs-actions.pod:1369 ../src/guestfs-actions.pod:1388
7442 #: ../src/guestfs-actions.pod:1491 ../src/guestfs-actions.pod:1510
7443 #: ../src/guestfs-actions.pod:1756 ../src/guestfs-actions.pod:2198
7444 #: ../src/guestfs-actions.pod:2214 ../src/guestfs-actions.pod:2233
7445 #: ../src/guestfs-actions.pod:2276 ../src/guestfs-actions.pod:2300
7446 #: ../src/guestfs-actions.pod:2371 ../src/guestfs-actions.pod:2420
7447 #: ../src/guestfs-actions.pod:2687 ../src/guestfs-actions.pod:2978
7448 #: ../src/guestfs-actions.pod:3267 ../src/guestfs-actions.pod:3557
7449 #: ../src/guestfs-actions.pod:3619 ../src/guestfs-actions.pod:3724
7450 #: ../src/guestfs-actions.pod:4129 ../src/guestfs-actions.pod:4834
7451 #: ../src/guestfs-actions.pod:5363 ../src/guestfs-actions.pod:5489
7452 #: ../src/guestfs-actions.pod:5603 ../src/guestfs-actions.pod:6331
7453 #: ../src/guestfs-actions.pod:6392 ../src/guestfs-actions.pod:6447
7454 #: ../src/guestfs-actions.pod:6593 ../src/guestfs-actions.pod:6617
7455 #: ../src/guestfs-actions.pod:7099 ../src/guestfs-actions.pod:7119
7456 #: ../src/guestfs-actions.pod:7166 ../src/guestfs-actions.pod:7338
7457 #: ../src/guestfs-actions.pod:7357 ../src/guestfs-actions.pod:7442
7458 #: ../src/guestfs-actions.pod:7461 ../src/guestfs-actions.pod:7507
7459 #: ../src/guestfs-actions.pod:7526
7461 "This function returns a NULL-terminated array of strings (like L<environ(3)"
7462 ">), or NULL if there was an error. I<The caller must free the strings and "
7463 "the array after use>."
7468 #: ../src/guestfs-actions.pod:467 ../src/guestfs-actions.pod:998
7469 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:1426
7470 #: ../src/guestfs-actions.pod:3345 ../src/guestfs-actions.pod:3376
7471 #: ../src/guestfs-actions.pod:3970 ../src/guestfs-actions.pod:4020
7472 #: ../src/guestfs-actions.pod:4207 ../src/guestfs-actions.pod:4240
7473 #: ../src/guestfs-actions.pod:4403 ../src/guestfs-actions.pod:4838
7474 #: ../src/guestfs-actions.pod:5304 ../src/guestfs-actions.pod:5699
7475 #: ../src/guestfs-actions.pod:5713 ../src/guestfs-actions.pod:5725
7476 #: ../src/guestfs-actions.pod:6172 ../src/guestfs-actions.pod:6831
7477 #: ../src/guestfs-actions.pod:6844 ../src/guestfs-actions.pod:7083
7478 #: ../src/guestfs-actions.pod:7326
7479 msgid "(Added in 0.8)"
7484 #: ../src/guestfs-actions.pod:469
7485 msgid "guestfs_aug_match"
7490 #: ../src/guestfs-actions.pod:471
7494 " guestfs_aug_match (guestfs_h *g,\n"
7495 " const char *augpath);\n"
7501 #: ../src/guestfs-actions.pod:475 ../fish/guestfish-actions.pod:311
7503 "Returns a list of paths which match the path expression C<path>. The "
7504 "returned paths are sufficiently qualified so that they match exactly one "
7505 "node in the current tree."
7510 #: ../src/guestfs-actions.pod:485
7511 msgid "guestfs_aug_mv"
7516 #: ../src/guestfs-actions.pod:487
7520 " guestfs_aug_mv (guestfs_h *g,\n"
7521 " const char *src,\n"
7522 " const char *dest);\n"
7528 #: ../src/guestfs-actions.pod:492 ../fish/guestfish-actions.pod:319
7530 "Move the node C<src> to C<dest>. C<src> must match exactly one node. "
7531 "C<dest> is overwritten if it exists."
7536 #: ../src/guestfs-actions.pod:499
7537 msgid "guestfs_aug_rm"
7542 #: ../src/guestfs-actions.pod:501
7546 " guestfs_aug_rm (guestfs_h *g,\n"
7547 " const char *augpath);\n"
7553 #: ../src/guestfs-actions.pod:505 ../fish/guestfish-actions.pod:326
7554 msgid "Remove C<path> and all of its children."
7559 #: ../src/guestfs-actions.pod:507 ../fish/guestfish-actions.pod:328
7560 msgid "On success this returns the number of entries which were removed."
7565 #: ../src/guestfs-actions.pod:513
7566 msgid "guestfs_aug_save"
7571 #: ../src/guestfs-actions.pod:515
7575 " guestfs_aug_save (guestfs_h *g);\n"
7581 #: ../src/guestfs-actions.pod:518 ../fish/guestfish-actions.pod:334
7582 msgid "This writes all pending changes to disk."
7587 #: ../src/guestfs-actions.pod:520
7589 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
7595 #: ../src/guestfs-actions.pod:527
7596 msgid "guestfs_aug_set"
7601 #: ../src/guestfs-actions.pod:529
7605 " guestfs_aug_set (guestfs_h *g,\n"
7606 " const char *augpath,\n"
7607 " const char *val);\n"
7613 #: ../src/guestfs-actions.pod:534 ../fish/guestfish-actions.pod:343
7614 msgid "Set the value associated with C<path> to C<val>."
7619 #: ../src/guestfs-actions.pod:536
7621 "In the Augeas API, it is possible to clear a node by setting the value to "
7622 "NULL. Due to an oversight in the libguestfs API you cannot do that with "
7623 "this call. Instead you must use the C<guestfs_aug_clear> call."
7628 #: ../src/guestfs-actions.pod:545
7629 msgid "guestfs_available"
7634 #: ../src/guestfs-actions.pod:547
7638 " guestfs_available (guestfs_h *g,\n"
7639 " char *const *groups);\n"
7645 #: ../src/guestfs-actions.pod:551 ../fish/guestfish-actions.pod:354
7647 "This command is used to check the availability of some groups of "
7648 "functionality in the appliance, which not all builds of the libguestfs "
7649 "appliance will be able to provide."
7654 #: ../src/guestfs-actions.pod:555
7656 "The libguestfs groups, and the functions that those groups correspond to, "
7657 "are listed in L<guestfs(3)/AVAILABILITY>. You can also fetch this list at "
7658 "runtime by calling C<guestfs_available_all_groups>."
7663 #: ../src/guestfs-actions.pod:560 ../fish/guestfish-actions.pod:363
7665 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", \"augeas"
7666 "\"]> would check for the availability of the Linux inotify functions and "
7667 "Augeas (configuration file editing) functions."
7672 #: ../src/guestfs-actions.pod:565 ../fish/guestfish-actions.pod:368
7673 msgid "The command returns no error if I<all> requested groups are available."
7678 #: ../src/guestfs-actions.pod:567 ../fish/guestfish-actions.pod:370
7680 "It fails with an error if one or more of the requested groups is unavailable "
7686 #: ../src/guestfs-actions.pod:570 ../fish/guestfish-actions.pod:373
7688 "If an unknown group name is included in the list of groups then an error is "
7694 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:376
7700 #: ../src/guestfs-actions.pod:579
7701 msgid "You must call C<guestfs_launch> before calling this function."
7706 #: ../src/guestfs-actions.pod:581 ../fish/guestfish-actions.pod:384
7708 "The reason is because we don't know what groups are supported by the "
7709 "appliance/daemon until it is running and can be queried."
7714 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:390
7716 "If a group of functions is available, this does not necessarily mean that "
7717 "they will work. You still have to check for errors when calling individual "
7718 "API functions even if they are available."
7723 #: ../src/guestfs-actions.pod:594 ../fish/guestfish-actions.pod:397
7725 "It is usually the job of distro packagers to build complete functionality "
7726 "into the libguestfs appliance. Upstream libguestfs, if built from source "
7727 "with all requirements satisfied, will support everything."
7732 #: ../src/guestfs-actions.pod:601
7734 "This call was added in version C<1.0.80>. In previous versions of "
7735 "libguestfs all you could do would be to speculatively execute a command to "
7736 "find out if the daemon implemented it. See also C<guestfs_version>."
7741 #: ../src/guestfs-actions.pod:610 ../src/guestfs-actions.pod:1171
7742 msgid "(Added in 1.0.80)"
7747 #: ../src/guestfs-actions.pod:612
7748 msgid "guestfs_available_all_groups"
7753 #: ../src/guestfs-actions.pod:614
7757 " guestfs_available_all_groups (guestfs_h *g);\n"
7763 #: ../src/guestfs-actions.pod:617
7765 "This command returns a list of all optional groups that this daemon knows "
7766 "about. Note this returns both supported and unsupported groups. To find "
7767 "out which ones the daemon can actually support you have to call "
7768 "C<guestfs_available> on each member of the returned list."
7773 #: ../src/guestfs-actions.pod:623
7774 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
7779 #: ../src/guestfs-actions.pod:629
7780 msgid "(Added in 1.3.15)"
7785 #: ../src/guestfs-actions.pod:631
7786 msgid "guestfs_base64_in"
7791 #: ../src/guestfs-actions.pod:633
7795 " guestfs_base64_in (guestfs_h *g,\n"
7796 " const char *base64file,\n"
7797 " const char *filename);\n"
7803 #: ../src/guestfs-actions.pod:638 ../fish/guestfish-actions.pod:427
7805 "This command uploads base64-encoded data from C<base64file> to C<filename>."
7810 #: ../src/guestfs-actions.pod:643 ../src/guestfs-actions.pod:657
7811 msgid "(Added in 1.3.5)"
7816 #: ../src/guestfs-actions.pod:645
7817 msgid "guestfs_base64_out"
7822 #: ../src/guestfs-actions.pod:647
7826 " guestfs_base64_out (guestfs_h *g,\n"
7827 " const char *filename,\n"
7828 " const char *base64file);\n"
7834 #: ../src/guestfs-actions.pod:652 ../fish/guestfish-actions.pod:436
7836 "This command downloads the contents of C<filename>, writing it out to local "
7837 "file C<base64file> encoded as base64."
7842 #: ../src/guestfs-actions.pod:659
7843 msgid "guestfs_blockdev_flushbufs"
7848 #: ../src/guestfs-actions.pod:661
7852 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
7853 " const char *device);\n"
7859 #: ../src/guestfs-actions.pod:665 ../fish/guestfish-actions.pod:445
7861 "This tells the kernel to flush internal buffers associated with C<device>."
7866 #: ../src/guestfs-actions.pod:668 ../src/guestfs-actions.pod:685
7867 #: ../src/guestfs-actions.pod:700 ../src/guestfs-actions.pod:716
7868 #: ../src/guestfs-actions.pod:734 ../src/guestfs-actions.pod:753
7869 #: ../src/guestfs-actions.pod:767 ../src/guestfs-actions.pod:785
7870 #: ../src/guestfs-actions.pod:799 ../src/guestfs-actions.pod:813
7871 #: ../fish/guestfish-actions.pod:448 ../fish/guestfish-actions.pod:459
7872 #: ../fish/guestfish-actions.pod:468 ../fish/guestfish-actions.pod:478
7873 #: ../fish/guestfish-actions.pod:490 ../fish/guestfish-actions.pod:503
7874 #: ../fish/guestfish-actions.pod:511 ../fish/guestfish-actions.pod:522
7875 #: ../fish/guestfish-actions.pod:530 ../fish/guestfish-actions.pod:538
7876 msgid "This uses the L<blockdev(8)> command."
7881 #: ../src/guestfs-actions.pod:672 ../src/guestfs-actions.pod:689
7882 #: ../src/guestfs-actions.pod:704 ../src/guestfs-actions.pod:720
7883 #: ../src/guestfs-actions.pod:738 ../src/guestfs-actions.pod:757
7884 #: ../src/guestfs-actions.pod:771 ../src/guestfs-actions.pod:789
7885 #: ../src/guestfs-actions.pod:803 ../src/guestfs-actions.pod:817
7886 msgid "(Added in 0.9.3)"
7891 #: ../src/guestfs-actions.pod:674
7892 msgid "guestfs_blockdev_getbsz"
7897 #: ../src/guestfs-actions.pod:676
7901 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
7902 " const char *device);\n"
7908 #: ../src/guestfs-actions.pod:680 ../fish/guestfish-actions.pod:454
7909 msgid "This returns the block size of a device."
7914 #: ../src/guestfs-actions.pod:682 ../src/guestfs-actions.pod:782
7915 #: ../fish/guestfish-actions.pod:456 ../fish/guestfish-actions.pod:519
7917 "(Note this is different from both I<size in blocks> and I<filesystem block "
7923 #: ../src/guestfs-actions.pod:691
7924 msgid "guestfs_blockdev_getro"
7929 #: ../src/guestfs-actions.pod:693
7933 " guestfs_blockdev_getro (guestfs_h *g,\n"
7934 " const char *device);\n"
7940 #: ../src/guestfs-actions.pod:697 ../fish/guestfish-actions.pod:465
7942 "Returns a boolean indicating if the block device is read-only (true if read-"
7943 "only, false if not)."
7948 #: ../src/guestfs-actions.pod:702 ../src/guestfs-actions.pod:1409
7949 #: ../src/guestfs-actions.pod:1424 ../src/guestfs-actions.pod:1911
7950 #: ../src/guestfs-actions.pod:1922 ../src/guestfs-actions.pod:1994
7951 #: ../src/guestfs-actions.pod:2049 ../src/guestfs-actions.pod:2064
7952 #: ../src/guestfs-actions.pod:2089 ../src/guestfs-actions.pod:2112
7953 #: ../src/guestfs-actions.pod:3085 ../src/guestfs-actions.pod:3102
7954 #: ../src/guestfs-actions.pod:3121 ../src/guestfs-actions.pod:3284
7955 #: ../src/guestfs-actions.pod:3298 ../src/guestfs-actions.pod:3313
7956 #: ../src/guestfs-actions.pod:3327 ../src/guestfs-actions.pod:3343
7957 #: ../src/guestfs-actions.pod:3358 ../src/guestfs-actions.pod:3374
7958 #: ../src/guestfs-actions.pod:3388 ../src/guestfs-actions.pod:3401
7959 #: ../src/guestfs-actions.pod:3415 ../src/guestfs-actions.pod:3430
7960 #: ../src/guestfs-actions.pod:3445 ../src/guestfs-actions.pod:4992
7961 msgid "This function returns a C truth value on success or -1 on error."
7966 #: ../src/guestfs-actions.pod:706
7967 msgid "guestfs_blockdev_getsize64"
7972 #: ../src/guestfs-actions.pod:708
7976 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7977 " const char *device);\n"
7983 #: ../src/guestfs-actions.pod:712 ../fish/guestfish-actions.pod:474
7984 msgid "This returns the size of the device in bytes."
7989 #: ../src/guestfs-actions.pod:714
7990 msgid "See also C<guestfs_blockdev_getsz>."
7995 #: ../src/guestfs-actions.pod:722
7996 msgid "guestfs_blockdev_getss"
8001 #: ../src/guestfs-actions.pod:724
8005 " guestfs_blockdev_getss (guestfs_h *g,\n"
8006 " const char *device);\n"
8012 #: ../src/guestfs-actions.pod:728 ../fish/guestfish-actions.pod:484
8014 "This returns the size of sectors on a block device. Usually 512, but can be "
8015 "larger for modern devices."
8020 #: ../src/guestfs-actions.pod:731
8022 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
8028 #: ../src/guestfs-actions.pod:740
8029 msgid "guestfs_blockdev_getsz"
8034 #: ../src/guestfs-actions.pod:742
8038 " guestfs_blockdev_getsz (guestfs_h *g,\n"
8039 " const char *device);\n"
8045 #: ../src/guestfs-actions.pod:746 ../fish/guestfish-actions.pod:496
8047 "This returns the size of the device in units of 512-byte sectors (even if "
8048 "the sectorsize isn't 512 bytes ... weird)."
8053 #: ../src/guestfs-actions.pod:749
8055 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
8056 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
8061 #: ../src/guestfs-actions.pod:759
8062 msgid "guestfs_blockdev_rereadpt"
8067 #: ../src/guestfs-actions.pod:761
8071 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
8072 " const char *device);\n"
8078 #: ../src/guestfs-actions.pod:765 ../fish/guestfish-actions.pod:509
8079 msgid "Reread the partition table on C<device>."
8084 #: ../src/guestfs-actions.pod:773
8085 msgid "guestfs_blockdev_setbsz"
8090 #: ../src/guestfs-actions.pod:775
8094 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
8095 " const char *device,\n"
8096 " int blocksize);\n"
8102 #: ../src/guestfs-actions.pod:780 ../fish/guestfish-actions.pod:517
8103 msgid "This sets the block size of a device."
8108 #: ../src/guestfs-actions.pod:791
8109 msgid "guestfs_blockdev_setro"
8114 #: ../src/guestfs-actions.pod:793
8118 " guestfs_blockdev_setro (guestfs_h *g,\n"
8119 " const char *device);\n"
8125 #: ../src/guestfs-actions.pod:797 ../fish/guestfish-actions.pod:528
8126 msgid "Sets the block device named C<device> to read-only."
8131 #: ../src/guestfs-actions.pod:805
8132 msgid "guestfs_blockdev_setrw"
8137 #: ../src/guestfs-actions.pod:807
8141 " guestfs_blockdev_setrw (guestfs_h *g,\n"
8142 " const char *device);\n"
8148 #: ../src/guestfs-actions.pod:811 ../fish/guestfish-actions.pod:536
8149 msgid "Sets the block device named C<device> to read-write."
8154 #: ../src/guestfs-actions.pod:819
8155 msgid "guestfs_case_sensitive_path"
8160 #: ../src/guestfs-actions.pod:821
8164 " guestfs_case_sensitive_path (guestfs_h *g,\n"
8165 " const char *path);\n"
8171 #: ../src/guestfs-actions.pod:825 ../fish/guestfish-actions.pod:544
8173 "This can be used to resolve case insensitive paths on a filesystem which is "
8174 "case sensitive. The use case is to resolve paths which you have read from "
8175 "Windows configuration files or the Windows Registry, to the true path."
8180 #: ../src/guestfs-actions.pod:830 ../fish/guestfish-actions.pod:549
8182 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
8183 "(and probably others), which is that although the underlying filesystem is "
8184 "case-insensitive, the driver exports the filesystem to Linux as case-"
8190 #: ../src/guestfs-actions.pod:835 ../fish/guestfish-actions.pod:554
8192 "One consequence of this is that special directories such as C<c:\\windows> "
8193 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
8194 "precise details of how they were created. In Windows itself this would not "
8200 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:560
8202 "Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-faq/"
8208 #: ../src/guestfs-actions.pod:844 ../fish/guestfish-actions.pod:563
8210 "This function resolves the true case of each element in the path and returns "
8211 "the case-sensitive path."
8216 #: ../src/guestfs-actions.pod:847
8218 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\") might return C<"
8219 "\"/WINDOWS/system32\"> (the exact return value would depend on details of "
8220 "how the directories were originally created under Windows)."
8225 #: ../src/guestfs-actions.pod:852 ../fish/guestfish-actions.pod:571
8226 msgid "I<Note>: This function does not handle drive names, backslashes etc."
8231 #: ../src/guestfs-actions.pod:855
8232 msgid "See also C<guestfs_realpath>."
8237 #: ../src/guestfs-actions.pod:860 ../src/guestfs-actions.pod:7011
8238 msgid "(Added in 1.0.75)"
8243 #: ../src/guestfs-actions.pod:862
8249 #: ../src/guestfs-actions.pod:864
8253 " guestfs_cat (guestfs_h *g,\n"
8254 " const char *path);\n"
8260 #: ../src/guestfs-actions.pod:868 ../src/guestfs-actions.pod:5479
8261 #: ../fish/guestfish-actions.pod:580 ../fish/guestfish-actions.pod:3680
8262 msgid "Return the contents of the file named C<path>."
8267 #: ../src/guestfs-actions.pod:870
8269 "Note that this function cannot correctly handle binary files (specifically, "
8270 "files containing C<\\0> character which is treated as end of string). For "
8271 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
8272 "functions which have a more complex interface."
8277 #: ../src/guestfs-actions.pod:878 ../src/guestfs-actions.pod:1057
8278 #: ../src/guestfs-actions.pod:1077 ../src/guestfs-actions.pod:1373
8279 #: ../src/guestfs-actions.pod:1392 ../src/guestfs-actions.pod:1495
8280 #: ../src/guestfs-actions.pod:1514 ../src/guestfs-actions.pod:1760
8281 #: ../src/guestfs-actions.pod:2218 ../src/guestfs-actions.pod:2237
8282 #: ../src/guestfs-actions.pod:2280 ../src/guestfs-actions.pod:2304
8283 #: ../src/guestfs-actions.pod:2321 ../src/guestfs-actions.pod:2350
8284 #: ../src/guestfs-actions.pod:5261 ../src/guestfs-actions.pod:5287
8285 #: ../src/guestfs-actions.pod:5418 ../src/guestfs-actions.pod:5444
8286 #: ../src/guestfs-actions.pod:5468 ../src/guestfs-actions.pod:6396
8287 #: ../src/guestfs-actions.pod:6451 ../src/guestfs-actions.pod:6597
8288 #: ../src/guestfs-actions.pod:6621 ../src/guestfs-actions.pod:7290
8289 #: ../src/guestfs-actions.pod:7316 ../src/guestfs-actions.pod:7342
8290 #: ../src/guestfs-actions.pod:7361 ../src/guestfs-actions.pod:7446
8291 #: ../src/guestfs-actions.pod:7465 ../src/guestfs-actions.pod:7511
8292 #: ../src/guestfs-actions.pod:7530 ../fish/guestfish-actions.pod:587
8293 #: ../fish/guestfish-actions.pod:722 ../fish/guestfish-actions.pod:734
8294 #: ../fish/guestfish-actions.pod:910 ../fish/guestfish-actions.pod:920
8295 #: ../fish/guestfish-actions.pod:987 ../fish/guestfish-actions.pod:997
8296 #: ../fish/guestfish-actions.pod:1189 ../fish/guestfish-actions.pod:1490
8297 #: ../fish/guestfish-actions.pod:1500 ../fish/guestfish-actions.pod:1528
8298 #: ../fish/guestfish-actions.pod:1543 ../fish/guestfish-actions.pod:1553
8299 #: ../fish/guestfish-actions.pod:1572 ../fish/guestfish-actions.pod:3550
8300 #: ../fish/guestfish-actions.pod:3565 ../fish/guestfish-actions.pod:3641
8301 #: ../fish/guestfish-actions.pod:3658 ../fish/guestfish-actions.pod:3673
8302 #: ../fish/guestfish-actions.pod:4327 ../fish/guestfish-actions.pod:4373
8303 #: ../fish/guestfish-actions.pod:4458 ../fish/guestfish-actions.pod:4473
8304 #: ../fish/guestfish-actions.pod:4883 ../fish/guestfish-actions.pod:4901
8305 #: ../fish/guestfish-actions.pod:4918 ../fish/guestfish-actions.pod:4928
8306 #: ../fish/guestfish-actions.pod:4976 ../fish/guestfish-actions.pod:4986
8307 #: ../fish/guestfish-actions.pod:5015 ../fish/guestfish-actions.pod:5025
8309 "Because of the message protocol, there is a transfer limit of somewhere "
8310 "between 2MB and 4MB. See L<guestfs(3)/PROTOCOL LIMITS>."
8315 #: ../src/guestfs-actions.pod:881 ../src/guestfs-actions.pod:3561
8316 #: ../src/guestfs-actions.pod:3623 ../src/guestfs-actions.pod:3640
8317 #: ../src/guestfs-actions.pod:3728 ../src/guestfs-actions.pod:4133
8318 #: ../src/guestfs-actions.pod:4147 ../src/guestfs-actions.pod:5367
8319 #: ../src/guestfs-actions.pod:5381 ../src/guestfs-actions.pod:7170
8320 #: ../src/guestfs-actions.pod:7184
8321 msgid "(Added in 0.4)"
8326 #: ../src/guestfs-actions.pod:883
8327 msgid "guestfs_checksum"
8332 #: ../src/guestfs-actions.pod:885
8336 " guestfs_checksum (guestfs_h *g,\n"
8337 " const char *csumtype,\n"
8338 " const char *path);\n"
8344 #: ../src/guestfs-actions.pod:890 ../fish/guestfish-actions.pod:594
8346 "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
8351 #: ../src/guestfs-actions.pod:893 ../fish/guestfish-actions.pod:597
8353 "The type of checksum to compute is given by the C<csumtype> parameter which "
8354 "must have one of the following values:"
8359 #: ../src/guestfs-actions.pod:898 ../fish/guestfish-actions.pod:602
8365 #: ../src/guestfs-actions.pod:900 ../fish/guestfish-actions.pod:604
8367 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
8373 #: ../src/guestfs-actions.pod:903 ../fish/guestfish-actions.pod:607
8379 #: ../src/guestfs-actions.pod:905 ../fish/guestfish-actions.pod:609
8380 msgid "Compute the MD5 hash (using the C<md5sum> program)."
8385 #: ../src/guestfs-actions.pod:907 ../fish/guestfish-actions.pod:611
8391 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:613
8392 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
8397 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:615
8403 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:617
8404 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
8409 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:619
8415 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:621
8416 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
8421 #: ../src/guestfs-actions.pod:919 ../fish/guestfish-actions.pod:623
8427 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:625
8428 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
8433 #: ../src/guestfs-actions.pod:923 ../fish/guestfish-actions.pod:627
8439 #: ../src/guestfs-actions.pod:925 ../fish/guestfish-actions.pod:629
8440 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
8445 #: ../src/guestfs-actions.pod:929 ../fish/guestfish-actions.pod:633
8446 msgid "The checksum is returned as a printable string."
8451 #: ../src/guestfs-actions.pod:931
8452 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
8457 #: ../src/guestfs-actions.pod:933
8458 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
8463 #: ../src/guestfs-actions.pod:938 ../src/guestfs-actions.pod:1246
8464 #: ../src/guestfs-actions.pod:2080 ../src/guestfs-actions.pod:3300
8465 #: ../src/guestfs-actions.pod:3329 ../src/guestfs-actions.pod:3390
8466 #: ../src/guestfs-actions.pod:3417 ../src/guestfs-actions.pod:6867
8467 msgid "(Added in 1.0.2)"
8472 #: ../src/guestfs-actions.pod:940
8473 msgid "guestfs_checksum_device"
8478 #: ../src/guestfs-actions.pod:942
8482 " guestfs_checksum_device (guestfs_h *g,\n"
8483 " const char *csumtype,\n"
8484 " const char *device);\n"
8490 #: ../src/guestfs-actions.pod:947
8492 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
8493 "device named C<device>. For the types of checksums supported see the "
8494 "C<guestfs_checksum> command."
8499 #: ../src/guestfs-actions.pod:954 ../src/guestfs-actions.pod:4898
8500 #: ../src/guestfs-actions.pod:4957 ../src/guestfs-actions.pod:4994
8501 #: ../src/guestfs-actions.pod:5012 ../src/guestfs-actions.pod:5188
8502 #: ../src/guestfs-actions.pod:6776 ../src/guestfs-actions.pod:6790
8503 #: ../src/guestfs-actions.pod:7196
8504 msgid "(Added in 1.3.2)"
8509 #: ../src/guestfs-actions.pod:956
8510 msgid "guestfs_checksums_out"
8515 #: ../src/guestfs-actions.pod:958
8519 " guestfs_checksums_out (guestfs_h *g,\n"
8520 " const char *csumtype,\n"
8521 " const char *directory,\n"
8522 " const char *sumsfile);\n"
8528 #: ../src/guestfs-actions.pod:964 ../fish/guestfish-actions.pod:651
8530 "This command computes the checksums of all regular files in C<directory> and "
8531 "then emits a list of those checksums to the local output file C<sumsfile>."
8536 #: ../src/guestfs-actions.pod:968 ../fish/guestfish-actions.pod:655
8538 "This can be used for verifying the integrity of a virtual machine. However "
8539 "to be properly secure you should pay attention to the output of the checksum "
8540 "command (it uses the ones from GNU coreutils). In particular when the "
8541 "filename is not printable, coreutils uses a special backslash syntax. For "
8542 "more information, see the GNU coreutils info file."
8547 #: ../src/guestfs-actions.pod:978
8548 msgid "(Added in 1.3.7)"
8553 #: ../src/guestfs-actions.pod:980
8554 msgid "guestfs_chmod"
8559 #: ../src/guestfs-actions.pod:982
8563 " guestfs_chmod (guestfs_h *g,\n"
8565 " const char *path);\n"
8571 #: ../src/guestfs-actions.pod:987 ../fish/guestfish-actions.pod:669
8573 "Change the mode (permissions) of C<path> to C<mode>. Only numeric modes are "
8579 #: ../src/guestfs-actions.pod:990 ../fish/guestfish-actions.pod:672
8581 "I<Note>: When using this command from guestfish, C<mode> by default would be "
8582 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
8588 #: ../src/guestfs-actions.pod:994 ../src/guestfs-actions.pod:4384
8589 #: ../src/guestfs-actions.pod:4581 ../src/guestfs-actions.pod:4600
8590 #: ../src/guestfs-actions.pod:4619 ../fish/guestfish-actions.pod:676
8591 #: ../fish/guestfish-actions.pod:2980 ../fish/guestfish-actions.pod:3109
8592 #: ../fish/guestfish-actions.pod:3119 ../fish/guestfish-actions.pod:3129
8593 msgid "The mode actually set is affected by the umask."
8598 #: ../src/guestfs-actions.pod:1000
8599 msgid "guestfs_chown"
8604 #: ../src/guestfs-actions.pod:1002
8608 " guestfs_chown (guestfs_h *g,\n"
8611 " const char *path);\n"
8617 #: ../src/guestfs-actions.pod:1008 ../fish/guestfish-actions.pod:682
8618 msgid "Change the file owner to C<owner> and group to C<group>."
8623 #: ../src/guestfs-actions.pod:1010 ../src/guestfs-actions.pod:3492
8624 #: ../fish/guestfish-actions.pod:684 ../fish/guestfish-actions.pod:2438
8626 "Only numeric uid and gid are supported. If you want to use names, you will "
8627 "need to locate and parse the password file yourself (Augeas support makes "
8628 "this relatively easy)."
8633 #: ../src/guestfs-actions.pod:1018
8634 msgid "guestfs_command"
8639 #: ../src/guestfs-actions.pod:1020
8643 " guestfs_command (guestfs_h *g,\n"
8644 " char *const *arguments);\n"
8650 #: ../src/guestfs-actions.pod:1024 ../fish/guestfish-actions.pod:692
8652 "This call runs a command from the guest filesystem. The filesystem must be "
8653 "mounted, and must contain a compatible operating system (ie. something "
8654 "Linux, with the same or compatible processor architecture)."
8659 #: ../src/guestfs-actions.pod:1029
8661 "The single parameter is an argv-style list of arguments. The first element "
8662 "is the name of the program to run. Subsequent elements are parameters. The "
8663 "list must be non-empty (ie. must contain a program name). Note that the "
8664 "command runs directly, and is I<not> invoked via the shell (see "
8670 #: ../src/guestfs-actions.pod:1036 ../fish/guestfish-actions.pod:704
8671 msgid "The return value is anything printed to I<stdout> by the command."
8676 #: ../src/guestfs-actions.pod:1039 ../fish/guestfish-actions.pod:707
8678 "If the command returns a non-zero exit status, then this function returns an "
8679 "error message. The error message string is the content of I<stderr> from "
8685 #: ../src/guestfs-actions.pod:1043 ../fish/guestfish-actions.pod:711
8687 "The C<$PATH> environment variable will contain at least C</usr/bin> and C</"
8688 "bin>. If you require a program from another location, you should provide "
8689 "the full path in the first parameter."
8694 #: ../src/guestfs-actions.pod:1048 ../fish/guestfish-actions.pod:716
8696 "Shared libraries and data files required by the program must be available on "
8697 "filesystems which are mounted in the correct places. It is the caller's "
8698 "responsibility to ensure all filesystems that are needed are mounted at the "
8704 #: ../src/guestfs-actions.pod:1060 ../src/guestfs-actions.pod:1080
8705 #: ../src/guestfs-actions.pod:1545
8706 msgid "(Added in 0.9.1)"
8711 #: ../src/guestfs-actions.pod:1062
8712 msgid "guestfs_command_lines"
8717 #: ../src/guestfs-actions.pod:1064
8721 " guestfs_command_lines (guestfs_h *g,\n"
8722 " char *const *arguments);\n"
8728 #: ../src/guestfs-actions.pod:1068
8730 "This is the same as C<guestfs_command>, but splits the result into a list of "
8736 #: ../src/guestfs-actions.pod:1071
8737 msgid "See also: C<guestfs_sh_lines>"
8742 #: ../src/guestfs-actions.pod:1082
8743 msgid "guestfs_config"
8748 #: ../src/guestfs-actions.pod:1084
8752 " guestfs_config (guestfs_h *g,\n"
8753 " const char *qemuparam,\n"
8754 " const char *qemuvalue);\n"
8759 #: ../src/guestfs-actions.pod:1089 ../fish/guestfish-actions.pod:741
8761 "This can be used to add arbitrary qemu command line parameters of the form "
8762 "I<-param value>. Actually it's not quite arbitrary - we prevent you from "
8763 "setting some parameters which would interfere with parameters that we use."
8768 #: ../src/guestfs-actions.pod:1094 ../fish/guestfish-actions.pod:746
8769 msgid "The first character of C<param> string must be a C<-> (dash)."
8774 #: ../src/guestfs-actions.pod:1096 ../fish/guestfish-actions.pod:748
8775 msgid "C<value> can be NULL."
8780 #: ../src/guestfs-actions.pod:1102
8781 msgid "guestfs_copy_size"
8786 #: ../src/guestfs-actions.pod:1104
8790 " guestfs_copy_size (guestfs_h *g,\n"
8791 " const char *src,\n"
8792 " const char *dest,\n"
8799 #: ../src/guestfs-actions.pod:1110 ../fish/guestfish-actions.pod:754
8801 "This command copies exactly C<size> bytes from one source device or file "
8802 "C<src> to another destination device or file C<dest>."
8807 #: ../src/guestfs-actions.pod:1113 ../fish/guestfish-actions.pod:757
8809 "Note this will fail if the source is too short or if the destination is not "
8814 #: ../src/guestfs-actions.pod:1118 ../src/guestfs-actions.pod:1241
8815 #: ../src/guestfs-actions.pod:1272 ../src/guestfs-actions.pod:1317
8816 #: ../src/guestfs-actions.pod:1694 ../src/guestfs-actions.pod:1716
8817 #: ../src/guestfs-actions.pod:3473 ../src/guestfs-actions.pod:6862
8818 #: ../src/guestfs-actions.pod:6896 ../src/guestfs-actions.pod:7382
8819 #: ../src/guestfs-actions.pod:7401
8821 "This long-running command can generate progress notification messages so "
8822 "that the caller can display a progress bar or indicator. To receive these "
8823 "messages, the caller must register a progress event callback. See L<guestfs"
8824 "(3)/GUESTFS_EVENT_PROGRESS>."
8829 #: ../src/guestfs-actions.pod:1123 ../src/guestfs-actions.pod:4160
8830 #: ../src/guestfs-actions.pod:5394 ../src/guestfs-actions.pod:7103
8831 #: ../src/guestfs-actions.pod:7123 ../src/guestfs-actions.pod:7209
8832 msgid "(Added in 1.0.87)"
8837 #: ../src/guestfs-actions.pod:1125
8843 #: ../src/guestfs-actions.pod:1127
8847 " guestfs_cp (guestfs_h *g,\n"
8848 " const char *src,\n"
8849 " const char *dest);\n"
8855 #: ../src/guestfs-actions.pod:1132 ../fish/guestfish-actions.pod:764
8857 "This copies a file from C<src> to C<dest> where C<dest> is either a "
8858 "destination filename or destination directory."
8863 #: ../src/guestfs-actions.pod:1137 ../src/guestfs-actions.pod:1151
8864 #: ../src/guestfs-actions.pod:1223 ../src/guestfs-actions.pod:1297
8865 #: ../src/guestfs-actions.pod:1411 ../src/guestfs-actions.pod:4852
8866 #: ../src/guestfs-actions.pod:5238
8867 msgid "(Added in 1.0.18)"
8872 #: ../src/guestfs-actions.pod:1139
8873 msgid "guestfs_cp_a"
8878 #: ../src/guestfs-actions.pod:1141
8882 " guestfs_cp_a (guestfs_h *g,\n"
8883 " const char *src,\n"
8884 " const char *dest);\n"
8890 #: ../src/guestfs-actions.pod:1146 ../fish/guestfish-actions.pod:771
8892 "This copies a file or directory from C<src> to C<dest> recursively using the "
8898 #: ../src/guestfs-actions.pod:1153
8904 #: ../src/guestfs-actions.pod:1155
8908 " guestfs_dd (guestfs_h *g,\n"
8909 " const char *src,\n"
8910 " const char *dest);\n"
8916 #: ../src/guestfs-actions.pod:1160 ../fish/guestfish-actions.pod:778
8918 "This command copies from one source device or file C<src> to another "
8919 "destination device or file C<dest>. Normally you would use this to copy to "
8920 "or from a device or partition, for example to duplicate a filesystem."
8925 #: ../src/guestfs-actions.pod:1165
8927 "If the destination is a device, it must be as large or larger than the "
8928 "source file or device, otherwise the copy will fail. This command cannot do "
8929 "partial copies (see C<guestfs_copy_size>)."
8934 #: ../src/guestfs-actions.pod:1173
8940 #: ../src/guestfs-actions.pod:1175
8944 " guestfs_df (guestfs_h *g);\n"
8950 #: ../src/guestfs-actions.pod:1178 ../fish/guestfish-actions.pod:791
8951 msgid "This command runs the C<df> command to report disk space used."
8956 #: ../src/guestfs-actions.pod:1180 ../src/guestfs-actions.pod:1197
8958 "This command is mostly useful for interactive sessions. It is I<not> "
8959 "intended that you try to parse the output string. Use C<guestfs_statvfs> "
8965 #: ../src/guestfs-actions.pod:1187 ../src/guestfs-actions.pod:1204
8966 #: ../src/guestfs-actions.pod:1322 ../src/guestfs-actions.pod:2283
8967 #: ../src/guestfs-actions.pod:2307 ../src/guestfs-actions.pod:2375
8968 #: ../src/guestfs-actions.pod:4270 ../src/guestfs-actions.pod:4752
8969 #: ../src/guestfs-actions.pod:6600 ../src/guestfs-actions.pod:6624
8970 #: ../src/guestfs-actions.pod:7249 ../src/guestfs-actions.pod:7262
8971 #: ../src/guestfs-actions.pod:7275
8972 msgid "(Added in 1.0.54)"
8977 #: ../src/guestfs-actions.pod:1189
8978 msgid "guestfs_df_h"
8983 #: ../src/guestfs-actions.pod:1191
8987 " guestfs_df_h (guestfs_h *g);\n"
8993 #: ../src/guestfs-actions.pod:1194 ../fish/guestfish-actions.pod:801
8995 "This command runs the C<df -h> command to report disk space used in human-"
9001 #: ../src/guestfs-actions.pod:1206
9002 msgid "guestfs_dmesg"
9007 #: ../src/guestfs-actions.pod:1208
9011 " guestfs_dmesg (guestfs_h *g);\n"
9017 #: ../src/guestfs-actions.pod:1211 ../fish/guestfish-actions.pod:812
9019 "This returns the kernel messages (C<dmesg> output) from the guest kernel. "
9020 "This is sometimes useful for extended debugging of problems."
9025 #: ../src/guestfs-actions.pod:1215
9027 "Another way to get the same information is to enable verbose messages with "
9028 "C<guestfs_set_verbose> or by setting the environment variable "
9029 "C<LIBGUESTFS_DEBUG=1> before running the program."
9034 #: ../src/guestfs-actions.pod:1225
9035 msgid "guestfs_download"
9040 #: ../src/guestfs-actions.pod:1227
9044 " guestfs_download (guestfs_h *g,\n"
9045 " const char *remotefilename,\n"
9046 " const char *filename);\n"
9052 #: ../src/guestfs-actions.pod:1232 ../src/guestfs-actions.pod:1257
9053 #: ../fish/guestfish-actions.pod:825 ../fish/guestfish-actions.pod:838
9055 "Download file C<remotefilename> and save it as C<filename> on the local "
9061 #: ../src/guestfs-actions.pod:1235 ../src/guestfs-actions.pod:6856
9062 #: ../fish/guestfish-actions.pod:828 ../fish/guestfish-actions.pod:4631
9063 msgid "C<filename> can also be a named pipe."
9068 #: ../src/guestfs-actions.pod:1237
9069 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
9074 #: ../src/guestfs-actions.pod:1248
9075 msgid "guestfs_download_offset"
9080 #: ../src/guestfs-actions.pod:1250
9084 " guestfs_download_offset (guestfs_h *g,\n"
9085 " const char *remotefilename,\n"
9086 " const char *filename,\n"
9087 " int64_t offset,\n"
9094 #: ../src/guestfs-actions.pod:1260 ../fish/guestfish-actions.pod:841
9096 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
9097 "region must be within the file or device)."
9102 #: ../src/guestfs-actions.pod:1263
9104 "Note that there is no limit on the amount of data that can be downloaded "
9105 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
9106 "full amount unless an error occurs."
9111 #: ../src/guestfs-actions.pod:1268
9112 msgid "See also C<guestfs_download>, C<guestfs_pread>."
9117 #: ../src/guestfs-actions.pod:1277 ../src/guestfs-actions.pod:6901
9118 msgid "(Added in 1.5.17)"
9123 #: ../src/guestfs-actions.pod:1279
9124 msgid "guestfs_drop_caches"
9129 #: ../src/guestfs-actions.pod:1281
9133 " guestfs_drop_caches (guestfs_h *g,\n"
9134 " int whattodrop);\n"
9140 #: ../src/guestfs-actions.pod:1285 ../fish/guestfish-actions.pod:857
9142 "This instructs the guest kernel to drop its page cache, and/or dentries and "
9143 "inode caches. The parameter C<whattodrop> tells the kernel what precisely "
9144 "to drop, see L<http://linux-mm.org/Drop_Caches>"
9149 #: ../src/guestfs-actions.pod:1290 ../fish/guestfish-actions.pod:862
9150 msgid "Setting C<whattodrop> to 3 should drop everything."
9155 #: ../src/guestfs-actions.pod:1292 ../fish/guestfish-actions.pod:864
9157 "This automatically calls L<sync(2)> before the operation, so that the "
9158 "maximum guest memory is freed."
9163 #: ../src/guestfs-actions.pod:1299
9169 #: ../src/guestfs-actions.pod:1301
9173 " guestfs_du (guestfs_h *g,\n"
9174 " const char *path);\n"
9180 #: ../src/guestfs-actions.pod:1305 ../fish/guestfish-actions.pod:871
9182 "This command runs the C<du -s> command to estimate file space usage for "
9188 #: ../src/guestfs-actions.pod:1308 ../fish/guestfish-actions.pod:874
9190 "C<path> can be a file or a directory. If C<path> is a directory then the "
9191 "estimate includes the contents of the directory and all subdirectories "
9197 #: ../src/guestfs-actions.pod:1312 ../fish/guestfish-actions.pod:878
9199 "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
9204 #: ../src/guestfs-actions.pod:1324
9205 msgid "guestfs_e2fsck_f"
9210 #: ../src/guestfs-actions.pod:1326
9214 " guestfs_e2fsck_f (guestfs_h *g,\n"
9215 " const char *device);\n"
9220 #: ../src/guestfs-actions.pod:1330 ../fish/guestfish-actions.pod:885
9222 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
9223 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
9229 #: ../src/guestfs-actions.pod:1334
9231 "This command is only needed because of C<guestfs_resize2fs> (q.v.). "
9232 "Normally you should use C<guestfs_fsck>."
9237 #: ../src/guestfs-actions.pod:1339
9238 msgid "(Added in 1.0.29)"
9243 #: ../src/guestfs-actions.pod:1341
9244 msgid "guestfs_echo_daemon"
9249 #: ../src/guestfs-actions.pod:1343
9253 " guestfs_echo_daemon (guestfs_h *g,\n"
9254 " char *const *words);\n"
9260 #: ../src/guestfs-actions.pod:1347 ../fish/guestfish-actions.pod:896
9262 "This command concatenates the list of C<words> passed with single spaces "
9263 "between them and returns the resulting string."
9268 #: ../src/guestfs-actions.pod:1350 ../fish/guestfish-actions.pod:899
9269 msgid "You can use this command to test the connection through to the daemon."
9274 #: ../src/guestfs-actions.pod:1352
9275 msgid "See also C<guestfs_ping_daemon>."
9280 #: ../src/guestfs-actions.pod:1357 ../src/guestfs-actions.pod:2091
9281 #: ../src/guestfs-actions.pod:6072
9282 msgid "(Added in 1.0.69)"
9287 #: ../src/guestfs-actions.pod:1359
9288 msgid "guestfs_egrep"
9293 #: ../src/guestfs-actions.pod:1361
9297 " guestfs_egrep (guestfs_h *g,\n"
9298 " const char *regex,\n"
9299 " const char *path);\n"
9305 #: ../src/guestfs-actions.pod:1366 ../fish/guestfish-actions.pod:907
9307 "This calls the external C<egrep> program and returns the matching lines."
9312 #: ../src/guestfs-actions.pod:1376 ../src/guestfs-actions.pod:1395
9313 #: ../src/guestfs-actions.pod:1452 ../src/guestfs-actions.pod:1498
9314 #: ../src/guestfs-actions.pod:1517 ../src/guestfs-actions.pod:2221
9315 #: ../src/guestfs-actions.pod:2240 ../src/guestfs-actions.pod:2396
9316 #: ../src/guestfs-actions.pod:2409 ../src/guestfs-actions.pod:2424
9317 #: ../src/guestfs-actions.pod:2470 ../src/guestfs-actions.pod:2492
9318 #: ../src/guestfs-actions.pod:2505 ../src/guestfs-actions.pod:3653
9319 #: ../src/guestfs-actions.pod:3667 ../src/guestfs-actions.pod:3680
9320 #: ../src/guestfs-actions.pod:3694 ../src/guestfs-actions.pod:4680
9321 #: ../src/guestfs-actions.pod:5572 ../src/guestfs-actions.pod:5621
9322 #: ../src/guestfs-actions.pod:6468 ../src/guestfs-actions.pod:6480
9323 #: ../src/guestfs-actions.pod:6493 ../src/guestfs-actions.pod:6506
9324 #: ../src/guestfs-actions.pod:6528 ../src/guestfs-actions.pod:6541
9325 #: ../src/guestfs-actions.pod:6554 ../src/guestfs-actions.pod:6567
9326 #: ../src/guestfs-actions.pod:7345 ../src/guestfs-actions.pod:7364
9327 #: ../src/guestfs-actions.pod:7449 ../src/guestfs-actions.pod:7468
9328 #: ../src/guestfs-actions.pod:7514 ../src/guestfs-actions.pod:7533
9329 msgid "(Added in 1.0.66)"
9334 #: ../src/guestfs-actions.pod:1378
9335 msgid "guestfs_egrepi"
9340 #: ../src/guestfs-actions.pod:1380
9344 " guestfs_egrepi (guestfs_h *g,\n"
9345 " const char *regex,\n"
9346 " const char *path);\n"
9352 #: ../src/guestfs-actions.pod:1385 ../fish/guestfish-actions.pod:917
9354 "This calls the external C<egrep -i> program and returns the matching lines."
9359 #: ../src/guestfs-actions.pod:1397
9360 msgid "guestfs_equal"
9365 #: ../src/guestfs-actions.pod:1399
9369 " guestfs_equal (guestfs_h *g,\n"
9370 " const char *file1,\n"
9371 " const char *file2);\n"
9377 #: ../src/guestfs-actions.pod:1404 ../fish/guestfish-actions.pod:927
9379 "This compares the two files C<file1> and C<file2> and returns true if their "
9380 "content is exactly equal, or false otherwise."
9385 #: ../src/guestfs-actions.pod:1407 ../fish/guestfish-actions.pod:930
9386 msgid "The external L<cmp(1)> program is used for the comparison."
9391 #: ../src/guestfs-actions.pod:1413
9392 msgid "guestfs_exists"
9397 #: ../src/guestfs-actions.pod:1415
9401 " guestfs_exists (guestfs_h *g,\n"
9402 " const char *path);\n"
9408 #: ../src/guestfs-actions.pod:1419 ../fish/guestfish-actions.pod:936
9410 "This returns C<true> if and only if there is a file, directory (or anything) "
9411 "with the given C<path> name."
9416 #: ../src/guestfs-actions.pod:1422
9417 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
9422 #: ../src/guestfs-actions.pod:1428
9423 msgid "guestfs_fallocate"
9428 #: ../src/guestfs-actions.pod:1430
9432 " guestfs_fallocate (guestfs_h *g,\n"
9433 " const char *path,\n"
9440 #: ../src/guestfs-actions.pod:1435 ../src/guestfs-actions.pod:1461
9441 #: ../fish/guestfish-actions.pod:945 ../fish/guestfish-actions.pod:964
9443 "This command preallocates a file (containing zero bytes) named C<path> of "
9444 "size C<len> bytes. If the file exists already, it is overwritten."
9449 #: ../src/guestfs-actions.pod:1439 ../fish/guestfish-actions.pod:949
9451 "Do not confuse this with the guestfish-specific C<alloc> command which "
9452 "allocates a file in the host and attaches it as a device."
9457 #: ../src/guestfs-actions.pod:1445 ../fish/guestfish-actions.pod:953
9459 "This function is deprecated. In new code, use the C<fallocate64> call "
9465 #: ../src/guestfs-actions.pod:1454
9466 msgid "guestfs_fallocate64"
9471 #: ../src/guestfs-actions.pod:1456
9475 " guestfs_fallocate64 (guestfs_h *g,\n"
9476 " const char *path,\n"
9483 #: ../src/guestfs-actions.pod:1465
9485 "Note that this call allocates disk blocks for the file. To create a sparse "
9486 "file use C<guestfs_truncate_size> instead."
9491 #: ../src/guestfs-actions.pod:1468
9493 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
9494 "oversight it only allowed 30 bit lengths to be specified, effectively "
9495 "limiting the maximum size of files created through that call to 1GB."
9500 #: ../src/guestfs-actions.pod:1473 ../fish/guestfish-actions.pod:976
9502 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
9503 "commands which create a file in the host and attach it as a device."
9508 #: ../src/guestfs-actions.pod:1479
9509 msgid "(Added in 1.3.17)"
9514 #: ../src/guestfs-actions.pod:1481
9515 msgid "guestfs_fgrep"
9520 #: ../src/guestfs-actions.pod:1483
9524 " guestfs_fgrep (guestfs_h *g,\n"
9525 " const char *pattern,\n"
9526 " const char *path);\n"
9532 #: ../src/guestfs-actions.pod:1488 ../fish/guestfish-actions.pod:984
9534 "This calls the external C<fgrep> program and returns the matching lines."
9539 #: ../src/guestfs-actions.pod:1500
9540 msgid "guestfs_fgrepi"
9545 #: ../src/guestfs-actions.pod:1502
9549 " guestfs_fgrepi (guestfs_h *g,\n"
9550 " const char *pattern,\n"
9551 " const char *path);\n"
9557 #: ../src/guestfs-actions.pod:1507 ../fish/guestfish-actions.pod:994
9559 "This calls the external C<fgrep -i> program and returns the matching lines."
9564 #: ../src/guestfs-actions.pod:1519
9565 msgid "guestfs_file"
9570 #: ../src/guestfs-actions.pod:1521
9574 " guestfs_file (guestfs_h *g,\n"
9575 " const char *path);\n"
9581 #: ../src/guestfs-actions.pod:1525 ../fish/guestfish-actions.pod:1004
9583 "This call uses the standard L<file(1)> command to determine the type or "
9584 "contents of the file."
9589 #: ../src/guestfs-actions.pod:1528 ../fish/guestfish-actions.pod:1007
9591 "This call will also transparently look inside various types of compressed "
9596 #: ../src/guestfs-actions.pod:1531 ../fish/guestfish-actions.pod:1010
9598 "The exact command which runs is C<file -zb path>. Note in particular that "
9599 "the filename is not prepended to the output (the I<-b> option)."
9603 #: ../src/guestfs-actions.pod:1535 ../fish/guestfish-actions.pod:1014
9605 "The output depends on the output of the underlying L<file(1)> command and it "
9606 "can change in future in ways beyond our control. In other words, the output "
9607 "is not guaranteed by the ABI."
9611 #: ../src/guestfs-actions.pod:1539
9613 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
9614 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc)."
9619 #: ../src/guestfs-actions.pod:1547
9620 msgid "guestfs_file_architecture"
9625 #: ../src/guestfs-actions.pod:1549
9629 " guestfs_file_architecture (guestfs_h *g,\n"
9630 " const char *filename);\n"
9636 #: ../src/guestfs-actions.pod:1553 ../fish/guestfish-actions.pod:1025
9638 "This detects the architecture of the binary C<filename>, and returns it if "
9644 #: ../src/guestfs-actions.pod:1556 ../fish/guestfish-actions.pod:1028
9645 msgid "Currently defined architectures are:"
9650 #: ../src/guestfs-actions.pod:1560 ../fish/guestfish-actions.pod:1032
9656 #: ../src/guestfs-actions.pod:1562 ../fish/guestfish-actions.pod:1034
9658 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
9659 "irrespective of the precise processor requirements of the binary."
9664 #: ../src/guestfs-actions.pod:1565 ../fish/guestfish-actions.pod:1037
9670 #: ../src/guestfs-actions.pod:1567 ../fish/guestfish-actions.pod:1039
9671 msgid "64 bit x86-64."
9676 #: ../src/guestfs-actions.pod:1569 ../fish/guestfish-actions.pod:1041
9682 #: ../src/guestfs-actions.pod:1571 ../fish/guestfish-actions.pod:1043
9683 msgid "32 bit SPARC."
9688 #: ../src/guestfs-actions.pod:1573 ../fish/guestfish-actions.pod:1045
9694 #: ../src/guestfs-actions.pod:1575 ../fish/guestfish-actions.pod:1047
9695 msgid "64 bit SPARC V9 and above."
9700 #: ../src/guestfs-actions.pod:1577 ../fish/guestfish-actions.pod:1049
9706 #: ../src/guestfs-actions.pod:1579 ../fish/guestfish-actions.pod:1051
9707 msgid "Intel Itanium."
9712 #: ../src/guestfs-actions.pod:1581 ../fish/guestfish-actions.pod:1053
9718 #: ../src/guestfs-actions.pod:1583 ../fish/guestfish-actions.pod:1055
9719 msgid "32 bit Power PC."
9724 #: ../src/guestfs-actions.pod:1585 ../fish/guestfish-actions.pod:1057
9730 #: ../src/guestfs-actions.pod:1587 ../fish/guestfish-actions.pod:1059
9731 msgid "64 bit Power PC."
9736 #: ../src/guestfs-actions.pod:1591 ../fish/guestfish-actions.pod:1063
9737 msgid "Libguestfs may return other architecture strings in future."
9742 #: ../src/guestfs-actions.pod:1593 ../fish/guestfish-actions.pod:1065
9743 msgid "The function works on at least the following types of files:"
9748 #: ../src/guestfs-actions.pod:1599 ../fish/guestfish-actions.pod:1071
9749 msgid "many types of Un*x and Linux binary"
9754 #: ../src/guestfs-actions.pod:1603 ../fish/guestfish-actions.pod:1075
9755 msgid "many types of Un*x and Linux shared library"
9760 #: ../src/guestfs-actions.pod:1607 ../fish/guestfish-actions.pod:1079
9761 msgid "Windows Win32 and Win64 binaries"
9766 #: ../src/guestfs-actions.pod:1611 ../fish/guestfish-actions.pod:1083
9767 msgid "Windows Win32 and Win64 DLLs"
9772 #: ../src/guestfs-actions.pod:1613 ../fish/guestfish-actions.pod:1085
9773 msgid "Win32 binaries and DLLs return C<i386>."
9778 #: ../src/guestfs-actions.pod:1615 ../fish/guestfish-actions.pod:1087
9779 msgid "Win64 binaries and DLLs return C<x86_64>."
9784 #: ../src/guestfs-actions.pod:1619 ../fish/guestfish-actions.pod:1091
9785 msgid "Linux kernel modules"
9790 #: ../src/guestfs-actions.pod:1623 ../fish/guestfish-actions.pod:1095
9791 msgid "Linux new-style initrd images"
9796 #: ../src/guestfs-actions.pod:1627 ../fish/guestfish-actions.pod:1099
9797 msgid "some non-x86 Linux vmlinuz kernels"
9802 #: ../src/guestfs-actions.pod:1631 ../fish/guestfish-actions.pod:1103
9803 msgid "What it can't do currently:"
9808 #: ../src/guestfs-actions.pod:1637 ../fish/guestfish-actions.pod:1109
9809 msgid "static libraries (libfoo.a)"
9814 #: ../src/guestfs-actions.pod:1641 ../fish/guestfish-actions.pod:1113
9815 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
9820 #: ../src/guestfs-actions.pod:1645 ../fish/guestfish-actions.pod:1117
9821 msgid "x86 Linux vmlinuz kernels"
9826 #: ../src/guestfs-actions.pod:1647 ../fish/guestfish-actions.pod:1119
9828 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
9829 "compressed code, and are horribly hard to unpack. If you want to find the "
9830 "architecture of a kernel, use the architecture of the associated initrd or "
9831 "kernel module(s) instead."
9836 #: ../src/guestfs-actions.pod:1657 ../src/guestfs-actions.pod:1820
9837 #: ../src/guestfs-actions.pod:1837 ../src/guestfs-actions.pod:2528
9838 #: ../src/guestfs-actions.pod:2621 ../src/guestfs-actions.pod:2691
9839 #: ../src/guestfs-actions.pod:2779 ../src/guestfs-actions.pod:2800
9840 #: ../src/guestfs-actions.pod:2843 ../src/guestfs-actions.pod:2927
9841 #: ../src/guestfs-actions.pod:3024 ../src/guestfs-actions.pod:3271
9842 #: ../src/guestfs-actions.pod:3403
9843 msgid "(Added in 1.5.3)"
9848 #: ../src/guestfs-actions.pod:1659
9849 msgid "guestfs_filesize"
9854 #: ../src/guestfs-actions.pod:1661
9858 " guestfs_filesize (guestfs_h *g,\n"
9859 " const char *file);\n"
9865 #: ../src/guestfs-actions.pod:1665 ../fish/guestfish-actions.pod:1130
9866 msgid "This command returns the size of C<file> in bytes."
9871 #: ../src/guestfs-actions.pod:1667
9873 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
9874 "C<guestfs_is_dir>, C<guestfs_is_file> etc. To get the size of block "
9875 "devices, use C<guestfs_blockdev_getsize64>."
9880 #: ../src/guestfs-actions.pod:1673
9881 msgid "(Added in 1.0.82)"
9886 #: ../src/guestfs-actions.pod:1675
9887 msgid "guestfs_fill"
9892 #: ../src/guestfs-actions.pod:1677
9896 " guestfs_fill (guestfs_h *g,\n"
9899 " const char *path);\n"
9905 #: ../src/guestfs-actions.pod:1683 ../fish/guestfish-actions.pod:1140
9907 "This command creates a new file called C<path>. The initial content of the "
9908 "file is C<len> octets of C<c>, where C<c> must be a number in the range C<"
9914 #: ../src/guestfs-actions.pod:1687
9916 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
9917 "C<guestfs_truncate_size>. To create a file with a pattern of repeating "
9918 "bytes use C<guestfs_fill_pattern>."
9923 #: ../src/guestfs-actions.pod:1699
9924 msgid "(Added in 1.0.79)"
9929 #: ../src/guestfs-actions.pod:1701
9930 msgid "guestfs_fill_pattern"
9935 #: ../src/guestfs-actions.pod:1703
9939 " guestfs_fill_pattern (guestfs_h *g,\n"
9940 " const char *pattern,\n"
9942 " const char *path);\n"
9948 #: ../src/guestfs-actions.pod:1709
9950 "This function is like C<guestfs_fill> except that it creates a new file of "
9951 "length C<len> containing the repeating pattern of bytes in C<pattern>. The "
9952 "pattern is truncated if necessary to ensure the length of the file is "
9953 "exactly C<len> bytes."
9958 #: ../src/guestfs-actions.pod:1721
9959 msgid "(Added in 1.3.12)"
9964 #: ../src/guestfs-actions.pod:1723
9965 msgid "guestfs_find"
9970 #: ../src/guestfs-actions.pod:1725
9974 " guestfs_find (guestfs_h *g,\n"
9975 " const char *directory);\n"
9981 #: ../src/guestfs-actions.pod:1729 ../fish/guestfish-actions.pod:1162
9983 "This command lists out all files and directories, recursively, starting at "
9984 "C<directory>. It is essentially equivalent to running the shell command "
9985 "C<find directory -print> but some post-processing happens on the output, "
9991 #: ../src/guestfs-actions.pod:1734 ../fish/guestfish-actions.pod:1167
9993 "This returns a list of strings I<without any prefix>. Thus if the directory "
9999 #: ../src/guestfs-actions.pod:1737 ../fish/guestfish-actions.pod:1170
10010 #: ../src/guestfs-actions.pod:1741
10012 "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
10017 #: ../src/guestfs-actions.pod:1744 ../fish/guestfish-actions.pod:1177
10029 #: ../src/guestfs-actions.pod:1749 ../fish/guestfish-actions.pod:1182
10030 msgid "If C<directory> is not a directory, then this command returns an error."
10035 #: ../src/guestfs-actions.pod:1752 ../fish/guestfish-actions.pod:1185
10036 msgid "The returned list is sorted."
10041 #: ../src/guestfs-actions.pod:1754
10042 msgid "See also C<guestfs_find0>."
10047 #: ../src/guestfs-actions.pod:1763 ../src/guestfs-actions.pod:4097
10048 #: ../src/guestfs-actions.pod:5656
10049 msgid "(Added in 1.0.27)"
10054 #: ../src/guestfs-actions.pod:1765
10055 msgid "guestfs_find0"
10060 #: ../src/guestfs-actions.pod:1767
10064 " guestfs_find0 (guestfs_h *g,\n"
10065 " const char *directory,\n"
10066 " const char *files);\n"
10072 #: ../src/guestfs-actions.pod:1772 ../fish/guestfish-actions.pod:1196
10074 "This command lists out all files and directories, recursively, starting at "
10075 "C<directory>, placing the resulting list in the external file called "
10081 #: ../src/guestfs-actions.pod:1776
10083 "This command works the same way as C<guestfs_find> with the following "
10089 #: ../src/guestfs-actions.pod:1783 ../fish/guestfish-actions.pod:1207
10090 msgid "The resulting list is written to an external file."
10095 #: ../src/guestfs-actions.pod:1787 ../fish/guestfish-actions.pod:1211
10097 "Items (filenames) in the result are separated by C<\\0> characters. See "
10098 "L<find(1)> option I<-print0>."
10103 #: ../src/guestfs-actions.pod:1792 ../fish/guestfish-actions.pod:1216
10104 msgid "This command is not limited in the number of names that it can return."
10109 #: ../src/guestfs-actions.pod:1797 ../fish/guestfish-actions.pod:1221
10110 msgid "The result list is not sorted."
10115 #: ../src/guestfs-actions.pod:1803
10116 msgid "(Added in 1.0.74)"
10121 #: ../src/guestfs-actions.pod:1805
10122 msgid "guestfs_findfs_label"
10127 #: ../src/guestfs-actions.pod:1807
10131 " guestfs_findfs_label (guestfs_h *g,\n"
10132 " const char *label);\n"
10138 #: ../src/guestfs-actions.pod:1811 ../fish/guestfish-actions.pod:1231
10140 "This command searches the filesystems and returns the one which has the "
10141 "given label. An error is returned if no such filesystem can be found."
10146 #: ../src/guestfs-actions.pod:1815
10147 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
10152 #: ../src/guestfs-actions.pod:1822
10153 msgid "guestfs_findfs_uuid"
10158 #: ../src/guestfs-actions.pod:1824
10162 " guestfs_findfs_uuid (guestfs_h *g,\n"
10163 " const char *uuid);\n"
10169 #: ../src/guestfs-actions.pod:1828 ../fish/guestfish-actions.pod:1241
10171 "This command searches the filesystems and returns the one which has the "
10172 "given UUID. An error is returned if no such filesystem can be found."
10177 #: ../src/guestfs-actions.pod:1832
10178 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
10183 #: ../src/guestfs-actions.pod:1839
10184 msgid "guestfs_fsck"
10189 #: ../src/guestfs-actions.pod:1841
10193 " guestfs_fsck (guestfs_h *g,\n"
10194 " const char *fstype,\n"
10195 " const char *device);\n"
10201 #: ../src/guestfs-actions.pod:1846 ../fish/guestfish-actions.pod:1251
10203 "This runs the filesystem checker (fsck) on C<device> which should have "
10204 "filesystem type C<fstype>."
10209 #: ../src/guestfs-actions.pod:1849 ../fish/guestfish-actions.pod:1254
10211 "The returned integer is the status. See L<fsck(8)> for the list of status "
10212 "codes from C<fsck>."
10217 #: ../src/guestfs-actions.pod:1858 ../fish/guestfish-actions.pod:1263
10218 msgid "Multiple status codes can be summed together."
10223 #: ../src/guestfs-actions.pod:1862 ../fish/guestfish-actions.pod:1267
10225 "A non-zero return code can mean \"success\", for example if errors have been "
10226 "corrected on the filesystem."
10231 #: ../src/guestfs-actions.pod:1867 ../fish/guestfish-actions.pod:1272
10232 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
10237 #: ../src/guestfs-actions.pod:1872 ../fish/guestfish-actions.pod:1277
10239 "This command is entirely equivalent to running C<fsck -a -t fstype device>."
10244 #: ../src/guestfs-actions.pod:1876 ../src/guestfs-actions.pod:7387
10245 msgid "(Added in 1.0.16)"
10250 #: ../src/guestfs-actions.pod:1878
10251 msgid "guestfs_get_append"
10256 #: ../src/guestfs-actions.pod:1880
10260 " guestfs_get_append (guestfs_h *g);\n"
10266 #: ../src/guestfs-actions.pod:1883 ../fish/guestfish-actions.pod:1283
10268 "Return the additional kernel options which are added to the guest kernel "
10274 #: ../src/guestfs-actions.pod:1886 ../fish/guestfish-actions.pod:1286
10275 msgid "If C<NULL> then no options are added."
10280 #: ../src/guestfs-actions.pod:1888
10282 "This function returns a string which may be NULL. There is no way to return "
10283 "an error from this function. The string is owned by the guest handle and "
10284 "must I<not> be freed."
10289 #: ../src/guestfs-actions.pod:1892 ../src/guestfs-actions.pod:5334
10290 #: ../src/guestfs-actions.pod:5814 ../src/guestfs-actions.pod:6235
10291 #: ../src/guestfs-actions.pod:6254 ../src/guestfs-actions.pod:6270
10292 #: ../src/guestfs-actions.pod:6294 ../src/guestfs-actions.pod:7051
10293 #: ../src/guestfs-actions.pod:7069 ../src/guestfs-actions.pod:7430
10294 msgid "(Added in 1.0.26)"
10298 #: ../src/guestfs-actions.pod:1894
10299 msgid "guestfs_get_attach_method"
10303 #: ../src/guestfs-actions.pod:1896
10307 " guestfs_get_attach_method (guestfs_h *g);\n"
10312 #: ../src/guestfs-actions.pod:1899
10313 msgid "Return the current attach method. See C<guestfs_set_attach_method>."
10318 #: ../src/guestfs-actions.pod:1904
10319 msgid "guestfs_get_autosync"
10324 #: ../src/guestfs-actions.pod:1906
10328 " guestfs_get_autosync (guestfs_h *g);\n"
10334 #: ../src/guestfs-actions.pod:1909 ../fish/guestfish-actions.pod:1298
10335 msgid "Get the autosync flag."
10340 #: ../src/guestfs-actions.pod:1915
10341 msgid "guestfs_get_direct"
10346 #: ../src/guestfs-actions.pod:1917
10350 " guestfs_get_direct (guestfs_h *g);\n"
10356 #: ../src/guestfs-actions.pod:1920 ../fish/guestfish-actions.pod:1304
10357 msgid "Return the direct appliance mode flag."
10362 #: ../src/guestfs-actions.pod:1924 ../src/guestfs-actions.pod:5883
10363 msgid "(Added in 1.0.72)"
10368 #: ../src/guestfs-actions.pod:1926
10369 msgid "guestfs_get_e2label"
10374 #: ../src/guestfs-actions.pod:1928
10378 " guestfs_get_e2label (guestfs_h *g,\n"
10379 " const char *device);\n"
10385 #: ../src/guestfs-actions.pod:1932 ../fish/guestfish-actions.pod:1310
10387 "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
10392 #: ../src/guestfs-actions.pod:1938 ../fish/guestfish-actions.pod:1313
10394 "This function is deprecated. In new code, use the C<vfs_label> call instead."
10399 #: ../src/guestfs-actions.pod:1945 ../src/guestfs-actions.pod:1966
10400 #: ../src/guestfs-actions.pod:5901 ../src/guestfs-actions.pod:5920
10401 msgid "(Added in 1.0.15)"
10406 #: ../src/guestfs-actions.pod:1947
10407 msgid "guestfs_get_e2uuid"
10412 #: ../src/guestfs-actions.pod:1949
10416 " guestfs_get_e2uuid (guestfs_h *g,\n"
10417 " const char *device);\n"
10423 #: ../src/guestfs-actions.pod:1953 ../fish/guestfish-actions.pod:1324
10425 "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
10430 #: ../src/guestfs-actions.pod:1959 ../fish/guestfish-actions.pod:1327
10432 "This function is deprecated. In new code, use the C<vfs_uuid> call instead."
10437 #: ../src/guestfs-actions.pod:1968
10438 msgid "guestfs_get_memsize"
10443 #: ../src/guestfs-actions.pod:1970
10447 " guestfs_get_memsize (guestfs_h *g);\n"
10453 #: ../src/guestfs-actions.pod:1973 ../fish/guestfish-actions.pod:1338
10455 "This gets the memory size in megabytes allocated to the qemu subprocess."
10460 #: ../src/guestfs-actions.pod:1976
10462 "If C<guestfs_set_memsize> was not called on this handle, and if "
10463 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
10464 "value for memsize."
10469 #: ../src/guestfs-actions.pod:1980 ../src/guestfs-actions.pod:2061
10470 #: ../src/guestfs-actions.pod:5936 ../src/guestfs-actions.pod:6043
10471 #: ../fish/guestfish-actions.pod:1345 ../fish/guestfish-actions.pod:1396
10472 #: ../fish/guestfish-actions.pod:4006 ../fish/guestfish-actions.pod:4093
10474 "For more information on the architecture of libguestfs, see L<guestfs(3)>."
10479 #: ../src/guestfs-actions.pod:1985 ../src/guestfs-actions.pod:4388
10480 #: ../src/guestfs-actions.pod:4585 ../src/guestfs-actions.pod:4604
10481 #: ../src/guestfs-actions.pod:4623 ../src/guestfs-actions.pod:4635
10482 #: ../src/guestfs-actions.pod:4652 ../src/guestfs-actions.pod:4665
10483 #: ../src/guestfs-actions.pod:5559 ../src/guestfs-actions.pod:5941
10484 #: ../src/guestfs-actions.pod:6202 ../src/guestfs-actions.pod:6817
10485 msgid "(Added in 1.0.55)"
10490 #: ../src/guestfs-actions.pod:1987
10491 msgid "guestfs_get_network"
10496 #: ../src/guestfs-actions.pod:1989
10500 " guestfs_get_network (guestfs_h *g);\n"
10506 #: ../src/guestfs-actions.pod:1992 ../fish/guestfish-actions.pod:1352
10507 msgid "This returns the enable network flag."
10512 #: ../src/guestfs-actions.pod:1996 ../src/guestfs-actions.pod:5960
10513 msgid "(Added in 1.5.4)"
10518 #: ../src/guestfs-actions.pod:1998
10519 msgid "guestfs_get_path"
10524 #: ../src/guestfs-actions.pod:2000
10528 " guestfs_get_path (guestfs_h *g);\n"
10534 #: ../src/guestfs-actions.pod:2003 ../fish/guestfish-actions.pod:1358
10535 msgid "Return the current search path."
10540 #: ../src/guestfs-actions.pod:2005 ../fish/guestfish-actions.pod:1360
10542 "This is always non-NULL. If it wasn't set already, then this will return "
10543 "the default path."
10548 #: ../src/guestfs-actions.pod:2008 ../src/guestfs-actions.pod:2037
10550 "This function returns a string, or NULL on error. The string is owned by "
10551 "the guest handle and must I<not> be freed."
10556 #: ../src/guestfs-actions.pod:2013
10557 msgid "guestfs_get_pid"
10562 #: ../src/guestfs-actions.pod:2015
10566 " guestfs_get_pid (guestfs_h *g);\n"
10572 #: ../src/guestfs-actions.pod:2018 ../fish/guestfish-actions.pod:1369
10574 "Return the process ID of the qemu subprocess. If there is no qemu "
10575 "subprocess, then this will return an error."
10580 #: ../src/guestfs-actions.pod:2021 ../fish/guestfish-actions.pod:1372
10581 msgid "This is an internal call used for debugging and testing."
10586 #: ../src/guestfs-actions.pod:2025
10587 msgid "(Added in 1.0.56)"
10592 #: ../src/guestfs-actions.pod:2027
10593 msgid "guestfs_get_qemu"
10598 #: ../src/guestfs-actions.pod:2029
10602 " guestfs_get_qemu (guestfs_h *g);\n"
10608 #: ../src/guestfs-actions.pod:2032 ../fish/guestfish-actions.pod:1378
10609 msgid "Return the current qemu binary."
10614 #: ../src/guestfs-actions.pod:2034 ../fish/guestfish-actions.pod:1380
10616 "This is always non-NULL. If it wasn't set already, then this will return "
10617 "the default qemu binary name."
10622 #: ../src/guestfs-actions.pod:2040 ../src/guestfs-actions.pod:6005
10623 msgid "(Added in 1.0.6)"
10628 #: ../src/guestfs-actions.pod:2042
10629 msgid "guestfs_get_recovery_proc"
10634 #: ../src/guestfs-actions.pod:2044
10638 " guestfs_get_recovery_proc (guestfs_h *g);\n"
10644 #: ../src/guestfs-actions.pod:2047 ../fish/guestfish-actions.pod:1387
10645 msgid "Return the recovery process enabled flag."
10650 #: ../src/guestfs-actions.pod:2051 ../src/guestfs-actions.pod:3498
10651 #: ../src/guestfs-actions.pod:3795 ../src/guestfs-actions.pod:4195
10652 #: ../src/guestfs-actions.pod:4227 ../src/guestfs-actions.pod:5264
10653 #: ../src/guestfs-actions.pod:5607 ../src/guestfs-actions.pod:6029
10654 #: ../src/guestfs-actions.pod:6720 ../src/guestfs-actions.pod:6740
10655 #: ../src/guestfs-actions.pod:6932
10656 msgid "(Added in 1.0.77)"
10661 #: ../src/guestfs-actions.pod:2053
10662 msgid "guestfs_get_selinux"
10667 #: ../src/guestfs-actions.pod:2055
10671 " guestfs_get_selinux (guestfs_h *g);\n"
10677 #: ../src/guestfs-actions.pod:2058
10679 "This returns the current setting of the selinux flag which is passed to the "
10680 "appliance at boot time. See C<guestfs_set_selinux>."
10685 #: ../src/guestfs-actions.pod:2066 ../src/guestfs-actions.pod:2129
10686 #: ../src/guestfs-actions.pod:6048 ../src/guestfs-actions.pod:6106
10687 msgid "(Added in 1.0.67)"
10692 #: ../src/guestfs-actions.pod:2068
10693 msgid "guestfs_get_state"
10698 #: ../src/guestfs-actions.pod:2070
10702 " guestfs_get_state (guestfs_h *g);\n"
10708 #: ../src/guestfs-actions.pod:2073 ../fish/guestfish-actions.pod:1403
10710 "This returns the current state as an opaque integer. This is only useful "
10711 "for printing debug and internal error messages."
10716 #: ../src/guestfs-actions.pod:2076 ../src/guestfs-actions.pod:3296
10717 #: ../src/guestfs-actions.pod:3325 ../src/guestfs-actions.pod:3386
10718 #: ../src/guestfs-actions.pod:3413 ../fish/guestfish-actions.pod:1406
10719 #: ../fish/guestfish-actions.pod:2320 ../fish/guestfish-actions.pod:2338
10720 #: ../fish/guestfish-actions.pod:2376 ../fish/guestfish-actions.pod:2392
10721 msgid "For more information on states, see L<guestfs(3)>."
10726 #: ../src/guestfs-actions.pod:2082
10727 msgid "guestfs_get_trace"
10732 #: ../src/guestfs-actions.pod:2084
10736 " guestfs_get_trace (guestfs_h *g);\n"
10742 #: ../src/guestfs-actions.pod:2087 ../fish/guestfish-actions.pod:1412
10743 msgid "Return the command trace flag."
10748 #: ../src/guestfs-actions.pod:2093
10749 msgid "guestfs_get_umask"
10754 #: ../src/guestfs-actions.pod:2095
10758 " guestfs_get_umask (guestfs_h *g);\n"
10764 #: ../src/guestfs-actions.pod:2098
10766 "Return the current umask. By default the umask is C<022> unless it has been "
10767 "set by calling C<guestfs_umask>."
10772 #: ../src/guestfs-actions.pod:2105
10773 msgid "guestfs_get_verbose"
10778 #: ../src/guestfs-actions.pod:2107
10782 " guestfs_get_verbose (guestfs_h *g);\n"
10788 #: ../src/guestfs-actions.pod:2110 ../fish/guestfish-actions.pod:1425
10789 msgid "This returns the verbose messages flag."
10794 #: ../src/guestfs-actions.pod:2116
10795 msgid "guestfs_getcon"
10800 #: ../src/guestfs-actions.pod:2118
10804 " guestfs_getcon (guestfs_h *g);\n"
10810 #: ../src/guestfs-actions.pod:2121 ../fish/guestfish-actions.pod:1431
10811 msgid "This gets the SELinux security context of the daemon."
10816 #: ../src/guestfs-actions.pod:2123
10818 "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
10823 #: ../src/guestfs-actions.pod:2131
10824 msgid "guestfs_getxattr"
10829 #: ../src/guestfs-actions.pod:2133
10833 " guestfs_getxattr (guestfs_h *g,\n"
10834 " const char *path,\n"
10835 " const char *name,\n"
10836 " size_t *size_r);\n"
10842 #: ../src/guestfs-actions.pod:2139
10844 "Get a single extended attribute from file C<path> named C<name>. This call "
10845 "follows symlinks. If you want to lookup an extended attribute for the "
10846 "symlink itself, use C<guestfs_lgetxattr>."
10851 #: ../src/guestfs-actions.pod:2143 ../src/guestfs-actions.pod:3512
10853 "Normally it is better to get all extended attributes from a file in one go "
10854 "by calling C<guestfs_getxattrs>. However some Linux filesystem "
10855 "implementations are buggy and do not provide a way to list out attributes. "
10856 "For these filesystems (notably ntfs-3g) you have to know the names of the "
10857 "extended attributes you want in advance and call this function."
10862 #: ../src/guestfs-actions.pod:2150 ../src/guestfs-actions.pod:3519
10863 #: ../fish/guestfish-actions.pod:1451 ../fish/guestfish-actions.pod:2457
10865 "Extended attribute values are blobs of binary data. If there is no extended "
10866 "attribute named C<name>, this returns an error."
10871 #: ../src/guestfs-actions.pod:2153
10872 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
10877 #: ../src/guestfs-actions.pod:2155 ../src/guestfs-actions.pod:2346
10878 #: ../src/guestfs-actions.pod:3524 ../src/guestfs-actions.pod:5257
10879 #: ../src/guestfs-actions.pod:5283 ../src/guestfs-actions.pod:5464
10881 "This function returns a buffer, or NULL on error. The size of the returned "
10882 "buffer is written to C<*size_r>. I<The caller must free the returned buffer "
10887 #: ../src/guestfs-actions.pod:2159 ../src/guestfs-actions.pod:3528
10888 msgid "(Added in 1.7.24)"
10893 #: ../src/guestfs-actions.pod:2161
10894 msgid "guestfs_getxattrs"
10899 #: ../src/guestfs-actions.pod:2163
10902 " struct guestfs_xattr_list *\n"
10903 " guestfs_getxattrs (guestfs_h *g,\n"
10904 " const char *path);\n"
10910 #: ../src/guestfs-actions.pod:2167 ../fish/guestfish-actions.pod:1460
10912 "This call lists the extended attributes of the file or directory C<path>."
10917 #: ../src/guestfs-actions.pod:2170 ../fish/guestfish-actions.pod:1463
10919 "At the system call level, this is a combination of the L<listxattr(2)> and "
10920 "L<getxattr(2)> calls."
10925 #: ../src/guestfs-actions.pod:2173
10926 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
10931 #: ../src/guestfs-actions.pod:2175 ../src/guestfs-actions.pod:3540
10932 #: ../src/guestfs-actions.pod:4191
10934 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
10935 "an error. I<The caller must call C<guestfs_free_xattr_list> after use>."
10940 #: ../src/guestfs-actions.pod:2179 ../src/guestfs-actions.pod:3544
10941 #: ../src/guestfs-actions.pod:3709 ../src/guestfs-actions.pod:3745
10942 #: ../src/guestfs-actions.pod:5637 ../src/guestfs-actions.pod:6125
10943 #: ../src/guestfs-actions.pod:7495
10944 msgid "(Added in 1.0.59)"
10949 #: ../src/guestfs-actions.pod:2181
10950 msgid "guestfs_glob_expand"
10955 #: ../src/guestfs-actions.pod:2183
10959 " guestfs_glob_expand (guestfs_h *g,\n"
10960 " const char *pattern);\n"
10966 #: ../src/guestfs-actions.pod:2187 ../fish/guestfish-actions.pod:1472
10968 "This command searches for all the pathnames matching C<pattern> according to "
10969 "the wildcard expansion rules used by the shell."
10974 #: ../src/guestfs-actions.pod:2191 ../fish/guestfish-actions.pod:1476
10976 "If no paths match, then this returns an empty list (note: not an error)."
10981 #: ../src/guestfs-actions.pod:2194 ../fish/guestfish-actions.pod:1479
10983 "It is just a wrapper around the C L<glob(3)> function with flags C<GLOB_MARK|"
10984 "GLOB_BRACE>. See that manual page for more details."
10989 #: ../src/guestfs-actions.pod:2202 ../src/guestfs-actions.pod:6318
10990 #: ../src/guestfs-actions.pod:6335
10991 msgid "(Added in 1.0.50)"
10996 #: ../src/guestfs-actions.pod:2204
10997 msgid "guestfs_grep"
11002 #: ../src/guestfs-actions.pod:2206
11006 " guestfs_grep (guestfs_h *g,\n"
11007 " const char *regex,\n"
11008 " const char *path);\n"
11014 #: ../src/guestfs-actions.pod:2211 ../fish/guestfish-actions.pod:1487
11015 msgid "This calls the external C<grep> program and returns the matching lines."
11020 #: ../src/guestfs-actions.pod:2223
11021 msgid "guestfs_grepi"
11026 #: ../src/guestfs-actions.pod:2225
11030 " guestfs_grepi (guestfs_h *g,\n"
11031 " const char *regex,\n"
11032 " const char *path);\n"
11038 #: ../src/guestfs-actions.pod:2230 ../fish/guestfish-actions.pod:1497
11040 "This calls the external C<grep -i> program and returns the matching lines."
11045 #: ../src/guestfs-actions.pod:2242
11046 msgid "guestfs_grub_install"
11051 #: ../src/guestfs-actions.pod:2244
11055 " guestfs_grub_install (guestfs_h *g,\n"
11056 " const char *root,\n"
11057 " const char *device);\n"
11063 #: ../src/guestfs-actions.pod:2249 ../fish/guestfish-actions.pod:1507
11065 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
11066 "the root directory being C<root>."
11071 #: ../src/guestfs-actions.pod:2252 ../fish/guestfish-actions.pod:1510
11073 "Note: If grub-install reports the error \"No suitable drive was found in the "
11074 "generated device map.\" it may be that you need to create a C</boot/grub/"
11075 "device.map> file first that contains the mapping between grub device names "
11076 "and Linux device names. It is usually sufficient to create a file "
11082 #: ../src/guestfs-actions.pod:2259 ../fish/guestfish-actions.pod:1517
11085 " (hd0) /dev/vda\n"
11091 #: ../src/guestfs-actions.pod:2261 ../fish/guestfish-actions.pod:1519
11092 msgid "replacing C</dev/vda> with the name of the installation device."
11097 #: ../src/guestfs-actions.pod:2265
11098 msgid "(Added in 1.0.17)"
11103 #: ../src/guestfs-actions.pod:2267
11104 msgid "guestfs_head"
11109 #: ../src/guestfs-actions.pod:2269
11113 " guestfs_head (guestfs_h *g,\n"
11114 " const char *path);\n"
11120 #: ../src/guestfs-actions.pod:2273 ../fish/guestfish-actions.pod:1525
11122 "This command returns up to the first 10 lines of a file as a list of strings."
11127 #: ../src/guestfs-actions.pod:2285
11128 msgid "guestfs_head_n"
11133 #: ../src/guestfs-actions.pod:2287
11137 " guestfs_head_n (guestfs_h *g,\n"
11139 " const char *path);\n"
11145 #: ../src/guestfs-actions.pod:2292 ../fish/guestfish-actions.pod:1535
11147 "If the parameter C<nrlines> is a positive number, this returns the first "
11148 "C<nrlines> lines of the file C<path>."
11153 #: ../src/guestfs-actions.pod:2295 ../fish/guestfish-actions.pod:1538
11155 "If the parameter C<nrlines> is a negative number, this returns lines from "
11156 "the file C<path>, excluding the last C<nrlines> lines."
11161 #: ../src/guestfs-actions.pod:2298 ../src/guestfs-actions.pod:6615
11162 #: ../fish/guestfish-actions.pod:1541 ../fish/guestfish-actions.pod:4471
11163 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
11168 #: ../src/guestfs-actions.pod:2309
11169 msgid "guestfs_hexdump"
11174 #: ../src/guestfs-actions.pod:2311
11178 " guestfs_hexdump (guestfs_h *g,\n"
11179 " const char *path);\n"
11185 #: ../src/guestfs-actions.pod:2315 ../fish/guestfish-actions.pod:1550
11187 "This runs C<hexdump -C> on the given C<path>. The result is the human-"
11188 "readable, canonical hex dump of the file."
11193 #: ../src/guestfs-actions.pod:2324 ../src/guestfs-actions.pod:6399
11194 #: ../src/guestfs-actions.pod:6454
11195 msgid "(Added in 1.0.22)"
11200 #: ../src/guestfs-actions.pod:2326
11201 msgid "guestfs_initrd_cat"
11206 #: ../src/guestfs-actions.pod:2328
11210 " guestfs_initrd_cat (guestfs_h *g,\n"
11211 " const char *initrdpath,\n"
11212 " const char *filename,\n"
11213 " size_t *size_r);\n"
11219 #: ../src/guestfs-actions.pod:2334 ../fish/guestfish-actions.pod:1560
11221 "This command unpacks the file C<filename> from the initrd file called "
11222 "C<initrdpath>. The filename must be given I<without> the initial C</> "
11228 #: ../src/guestfs-actions.pod:2338 ../fish/guestfish-actions.pod:1564
11230 "For example, in guestfish you could use the following command to examine the "
11231 "boot script (usually called C</init>) contained in a Linux initrd or "
11237 #: ../src/guestfs-actions.pod:2342 ../fish/guestfish-actions.pod:1568
11240 " initrd-cat /boot/initrd-<version>.img init\n"
11246 #: ../src/guestfs-actions.pod:2344
11247 msgid "See also C<guestfs_initrd_list>."
11252 #: ../src/guestfs-actions.pod:2355
11253 msgid "guestfs_initrd_list"
11258 #: ../src/guestfs-actions.pod:2357
11262 " guestfs_initrd_list (guestfs_h *g,\n"
11263 " const char *path);\n"
11269 #: ../src/guestfs-actions.pod:2361 ../fish/guestfish-actions.pod:1579
11270 msgid "This command lists out files contained in an initrd."
11275 #: ../src/guestfs-actions.pod:2363 ../fish/guestfish-actions.pod:1581
11277 "The files are listed without any initial C</> character. The files are "
11278 "listed in the order they appear (not necessarily alphabetical). Directory "
11279 "names are listed as separate items."
11284 #: ../src/guestfs-actions.pod:2367 ../fish/guestfish-actions.pod:1585
11286 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
11287 "initrd. We I<only> support the newer initramfs format (compressed cpio "
11293 #: ../src/guestfs-actions.pod:2377
11294 msgid "guestfs_inotify_add_watch"
11299 #: ../src/guestfs-actions.pod:2379
11303 " guestfs_inotify_add_watch (guestfs_h *g,\n"
11304 " const char *path,\n"
11311 #: ../src/guestfs-actions.pod:2384 ../fish/guestfish-actions.pod:1593
11312 msgid "Watch C<path> for the events listed in C<mask>."
11317 #: ../src/guestfs-actions.pod:2386 ../fish/guestfish-actions.pod:1595
11319 "Note that if C<path> is a directory then events within that directory are "
11320 "watched, but this does I<not> happen recursively (in subdirectories)."
11325 #: ../src/guestfs-actions.pod:2390 ../fish/guestfish-actions.pod:1599
11327 "Note for non-C or non-Linux callers: the inotify events are defined by the "
11328 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
11333 #: ../src/guestfs-actions.pod:2398
11334 msgid "guestfs_inotify_close"
11339 #: ../src/guestfs-actions.pod:2400
11343 " guestfs_inotify_close (guestfs_h *g);\n"
11349 #: ../src/guestfs-actions.pod:2403 ../fish/guestfish-actions.pod:1607
11351 "This closes the inotify handle which was previously opened by inotify_init. "
11352 "It removes all watches, throws away any pending events, and deallocates all "
11358 #: ../src/guestfs-actions.pod:2411
11359 msgid "guestfs_inotify_files"
11364 #: ../src/guestfs-actions.pod:2413
11368 " guestfs_inotify_files (guestfs_h *g);\n"
11374 #: ../src/guestfs-actions.pod:2416
11376 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
11377 "returns a list of pathnames of objects that were touched. The returned "
11378 "pathnames are sorted and deduplicated."
11383 #: ../src/guestfs-actions.pod:2426
11384 msgid "guestfs_inotify_init"
11389 #: ../src/guestfs-actions.pod:2428
11393 " guestfs_inotify_init (guestfs_h *g,\n"
11394 " int maxevents);\n"
11400 #: ../src/guestfs-actions.pod:2432 ../fish/guestfish-actions.pod:1623
11402 "This command creates a new inotify handle. The inotify subsystem can be "
11403 "used to notify events which happen to objects in the guest filesystem."
11408 #: ../src/guestfs-actions.pod:2436
11410 "C<maxevents> is the maximum number of events which will be queued up between "
11411 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>. If this is "
11412 "passed as C<0>, then the kernel (or previously set) default is used. For "
11413 "Linux 2.6.29 the default was 16384 events. Beyond this limit, the kernel "
11414 "throws away events, but records the fact that it threw them away by setting "
11415 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
11416 "C<guestfs_inotify_read>)."
11421 #: ../src/guestfs-actions.pod:2446
11423 "Before any events are generated, you have to add some watches to the "
11424 "internal watch list. See: C<guestfs_inotify_add_watch>, "
11425 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
11430 #: ../src/guestfs-actions.pod:2452
11432 "Queued up events should be read periodically by calling "
11433 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
11434 "wrapper around C<guestfs_inotify_read>). If you don't read the events out "
11435 "often enough then you risk the internal queue overflowing."
11440 #: ../src/guestfs-actions.pod:2459
11442 "The handle should be closed after use by calling C<guestfs_inotify_close>. "
11443 "This also removes any watches automatically."
11448 #: ../src/guestfs-actions.pod:2463 ../fish/guestfish-actions.pod:1654
11450 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
11451 "by the Linux kernel, which is roughly what we expose via libguestfs. Note "
11452 "that there is one global inotify handle per libguestfs instance."
11457 #: ../src/guestfs-actions.pod:2472
11458 msgid "guestfs_inotify_read"
11463 #: ../src/guestfs-actions.pod:2474
11466 " struct guestfs_inotify_event_list *\n"
11467 " guestfs_inotify_read (guestfs_h *g);\n"
11473 #: ../src/guestfs-actions.pod:2477 ../fish/guestfish-actions.pod:1663
11475 "Return the complete queue of events that have happened since the previous "
11481 #: ../src/guestfs-actions.pod:2480 ../fish/guestfish-actions.pod:1666
11482 msgid "If no events have happened, this returns an empty list."
11487 #: ../src/guestfs-actions.pod:2482 ../fish/guestfish-actions.pod:1668
11489 "I<Note>: In order to make sure that all events have been read, you must call "
11490 "this function repeatedly until it returns an empty list. The reason is that "
11491 "the call will read events up to the maximum appliance-to-host message size "
11492 "and leave remaining events in the queue."
11497 #: ../src/guestfs-actions.pod:2488
11499 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
11500 "there was an error. I<The caller must call "
11501 "C<guestfs_free_inotify_event_list> after use>."
11506 #: ../src/guestfs-actions.pod:2494
11507 msgid "guestfs_inotify_rm_watch"
11512 #: ../src/guestfs-actions.pod:2496
11516 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
11523 #: ../src/guestfs-actions.pod:2500
11525 "Remove a previously defined inotify watch. See C<guestfs_inotify_add_watch>."
11530 #: ../src/guestfs-actions.pod:2507
11531 msgid "guestfs_inspect_get_arch"
11536 #: ../src/guestfs-actions.pod:2509
11540 " guestfs_inspect_get_arch (guestfs_h *g,\n"
11541 " const char *root);\n"
11547 #: ../src/guestfs-actions.pod:2513 ../src/guestfs-actions.pod:2536
11548 #: ../src/guestfs-actions.pod:2629 ../src/guestfs-actions.pod:2673
11549 #: ../src/guestfs-actions.pod:2699 ../src/guestfs-actions.pod:2738
11550 #: ../src/guestfs-actions.pod:2760 ../src/guestfs-actions.pod:2787
11551 #: ../src/guestfs-actions.pod:2808 ../src/guestfs-actions.pod:2851
11552 #: ../src/guestfs-actions.pod:2880 ../src/guestfs-actions.pod:2911
11553 #: ../src/guestfs-actions.pod:2935 ../src/guestfs-actions.pod:2990
11554 #: ../src/guestfs-actions.pod:3032 ../src/guestfs-actions.pod:3053
11555 #: ../src/guestfs-actions.pod:3076 ../src/guestfs-actions.pod:3093
11556 #: ../src/guestfs-actions.pod:3110 ../src/guestfs-actions.pod:3129
11558 "This function should only be called with a root device string as returned by "
11559 "C<guestfs_inspect_os>."
11564 #: ../src/guestfs-actions.pod:2516
11566 "This returns the architecture of the inspected operating system. The "
11567 "possible return values are listed under C<guestfs_file_architecture>."
11572 #: ../src/guestfs-actions.pod:2520 ../fish/guestfish-actions.pod:1692
11574 "If the architecture could not be determined, then the string C<unknown> is "
11580 #: ../src/guestfs-actions.pod:2523 ../src/guestfs-actions.pod:2616
11581 #: ../src/guestfs-actions.pod:2727 ../src/guestfs-actions.pod:2747
11582 #: ../src/guestfs-actions.pod:2775 ../src/guestfs-actions.pod:2867
11583 #: ../src/guestfs-actions.pod:2898 ../src/guestfs-actions.pod:2922
11584 #: ../src/guestfs-actions.pod:2976 ../src/guestfs-actions.pod:3019
11585 #: ../src/guestfs-actions.pod:3042 ../src/guestfs-actions.pod:3063
11586 #: ../src/guestfs-actions.pod:3083 ../src/guestfs-actions.pod:3100
11587 #: ../src/guestfs-actions.pod:3119 ../src/guestfs-actions.pod:3222
11588 #: ../src/guestfs-actions.pod:3263 ../fish/guestfish-actions.pod:1695
11589 #: ../fish/guestfish-actions.pod:1781 ../fish/guestfish-actions.pod:1869
11590 #: ../fish/guestfish-actions.pod:1884 ../fish/guestfish-actions.pod:1905
11591 #: ../fish/guestfish-actions.pod:1975 ../fish/guestfish-actions.pod:1999
11592 #: ../fish/guestfish-actions.pod:2016 ../fish/guestfish-actions.pod:2059
11593 #: ../fish/guestfish-actions.pod:2094 ../fish/guestfish-actions.pod:2110
11594 #: ../fish/guestfish-actions.pod:2126 ../fish/guestfish-actions.pod:2139
11595 #: ../fish/guestfish-actions.pod:2152 ../fish/guestfish-actions.pod:2167
11596 #: ../fish/guestfish-actions.pod:2266 ../fish/guestfish-actions.pod:2300
11597 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
11602 #: ../src/guestfs-actions.pod:2530
11603 msgid "guestfs_inspect_get_distro"
11608 #: ../src/guestfs-actions.pod:2532
11612 " guestfs_inspect_get_distro (guestfs_h *g,\n"
11613 " const char *root);\n"
11619 #: ../src/guestfs-actions.pod:2539 ../fish/guestfish-actions.pod:1704
11621 "This returns the distro (distribution) of the inspected operating system."
11626 #: ../src/guestfs-actions.pod:2542 ../fish/guestfish-actions.pod:1707
11627 msgid "Currently defined distros are:"
11632 #: ../src/guestfs-actions.pod:2546 ../fish/guestfish-actions.pod:1711
11633 msgid "\"archlinux\""
11638 #: ../src/guestfs-actions.pod:2548 ../fish/guestfish-actions.pod:1713
11639 msgid "Arch Linux."
11643 #: ../src/guestfs-actions.pod:2550 ../fish/guestfish-actions.pod:1715
11648 #: ../src/guestfs-actions.pod:2552 ../fish/guestfish-actions.pod:1717
11654 #: ../src/guestfs-actions.pod:2554 ../fish/guestfish-actions.pod:1719
11660 #: ../src/guestfs-actions.pod:2556 ../fish/guestfish-actions.pod:1721
11666 #: ../src/guestfs-actions.pod:2558 ../fish/guestfish-actions.pod:1723
11672 #: ../src/guestfs-actions.pod:2560 ../fish/guestfish-actions.pod:1725
11678 #: ../src/guestfs-actions.pod:2562 ../fish/guestfish-actions.pod:1727
11684 #: ../src/guestfs-actions.pod:2564 ../fish/guestfish-actions.pod:1729
11690 #: ../src/guestfs-actions.pod:2566 ../fish/guestfish-actions.pod:1731
11691 msgid "\"linuxmint\""
11696 #: ../src/guestfs-actions.pod:2568 ../fish/guestfish-actions.pod:1733
11697 msgid "Linux Mint."
11702 #: ../src/guestfs-actions.pod:2570 ../fish/guestfish-actions.pod:1735
11703 msgid "\"mandriva\""
11708 #: ../src/guestfs-actions.pod:2572 ../fish/guestfish-actions.pod:1737
11714 #: ../src/guestfs-actions.pod:2574 ../fish/guestfish-actions.pod:1739
11720 #: ../src/guestfs-actions.pod:2576 ../fish/guestfish-actions.pod:1741
11726 #: ../src/guestfs-actions.pod:2578 ../fish/guestfish-actions.pod:1743
11732 #: ../src/guestfs-actions.pod:2580 ../fish/guestfish-actions.pod:1745
11738 #: ../src/guestfs-actions.pod:2582 ../fish/guestfish-actions.pod:1747
11739 msgid "\"redhat-based\""
11744 #: ../src/guestfs-actions.pod:2584 ../fish/guestfish-actions.pod:1749
11745 msgid "Some Red Hat-derived distro."
11750 #: ../src/guestfs-actions.pod:2586 ../fish/guestfish-actions.pod:1751
11755 #: ../src/guestfs-actions.pod:2588 ../fish/guestfish-actions.pod:1753
11756 msgid "Red Hat Enterprise Linux."
11760 #: ../src/guestfs-actions.pod:2590 ../fish/guestfish-actions.pod:1755
11761 msgid "\"scientificlinux\""
11765 #: ../src/guestfs-actions.pod:2592 ../fish/guestfish-actions.pod:1757
11766 msgid "Scientific Linux."
11770 #: ../src/guestfs-actions.pod:2594 ../fish/guestfish-actions.pod:1759
11771 msgid "\"slackware\""
11775 #: ../src/guestfs-actions.pod:2596 ../fish/guestfish-actions.pod:1761
11781 #: ../src/guestfs-actions.pod:2598 ../fish/guestfish-actions.pod:1763
11787 #: ../src/guestfs-actions.pod:2600 ../fish/guestfish-actions.pod:1765
11793 #: ../src/guestfs-actions.pod:2602 ../src/guestfs-actions.pod:2718
11794 #: ../src/guestfs-actions.pod:3010 ../fish/guestfish-actions.pod:1767
11795 #: ../fish/guestfish-actions.pod:1860 ../fish/guestfish-actions.pod:2085
11796 msgid "\"unknown\""
11801 #: ../src/guestfs-actions.pod:2604 ../fish/guestfish-actions.pod:1769
11802 msgid "The distro could not be determined."
11807 #: ../src/guestfs-actions.pod:2606 ../src/guestfs-actions.pod:3002
11808 #: ../fish/guestfish-actions.pod:1771 ../fish/guestfish-actions.pod:2077
11809 msgid "\"windows\""
11814 #: ../src/guestfs-actions.pod:2608 ../fish/guestfish-actions.pod:1773
11816 "Windows does not have distributions. This string is returned if the OS type "
11822 #: ../src/guestfs-actions.pod:2613 ../src/guestfs-actions.pod:2724
11823 #: ../src/guestfs-actions.pod:3016 ../fish/guestfish-actions.pod:1778
11824 #: ../fish/guestfish-actions.pod:1866 ../fish/guestfish-actions.pod:2091
11826 "Future versions of libguestfs may return other strings here. The caller "
11827 "should be prepared to handle any string."
11831 #: ../src/guestfs-actions.pod:2623
11832 msgid "guestfs_inspect_get_drive_mappings"
11836 #: ../src/guestfs-actions.pod:2625
11840 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
11841 " const char *root);\n"
11846 #: ../src/guestfs-actions.pod:2632 ../fish/guestfish-actions.pod:1790
11848 "This call is useful for Windows which uses a primitive system of assigning "
11849 "drive letters (like \"C:\") to partitions. This inspection API examines the "
11850 "Windows Registry to find out how disks/partitions are mapped to drive "
11851 "letters, and returns a hash table as in the example below:"
11855 #: ../src/guestfs-actions.pod:2638 ../fish/guestfish-actions.pod:1796
11858 " C => /dev/vda2\n"
11859 " E => /dev/vdb1\n"
11860 " F => /dev/vdc1\n"
11865 #: ../src/guestfs-actions.pod:2642 ../fish/guestfish-actions.pod:1800
11867 "Note that keys are drive letters. For Windows, the key is case insensitive "
11868 "and just contains the drive letter, without the customary colon separator "
11873 #: ../src/guestfs-actions.pod:2646 ../fish/guestfish-actions.pod:1804
11875 "In future we may support other operating systems that also used drive "
11876 "letters, but the keys for those might not be case insensitive and might be "
11877 "longer than 1 character. For example in OS-9, hard drives were named C<h0>, "
11882 #: ../src/guestfs-actions.pod:2651 ../fish/guestfish-actions.pod:1809
11884 "For Windows guests, currently only hard drive mappings are returned. "
11885 "Removable disks (eg. DVD-ROMs) are ignored."
11889 #: ../src/guestfs-actions.pod:2654 ../fish/guestfish-actions.pod:1812
11891 "For guests that do not use drive mappings, or if the drive mappings could "
11892 "not be determined, this returns an empty hash table."
11896 #: ../src/guestfs-actions.pod:2657
11898 "Please read L<guestfs(3)/INSPECTION> for more details. See also "
11899 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
11904 #: ../src/guestfs-actions.pod:2661 ../src/guestfs-actions.pod:2837
11905 #: ../src/guestfs-actions.pod:3597 ../src/guestfs-actions.pod:4814
11906 #: ../src/guestfs-actions.pod:6756
11908 "This function returns a NULL-terminated array of strings, or NULL if there "
11909 "was an error. The array of strings will always have length C<2n+1>, where "
11910 "C<n> keys and values alternate, followed by the trailing NULL entry. I<The "
11911 "caller must free the strings and the array after use>."
11916 #: ../src/guestfs-actions.pod:2667
11917 msgid "guestfs_inspect_get_filesystems"
11922 #: ../src/guestfs-actions.pod:2669
11926 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
11927 " const char *root);\n"
11933 #: ../src/guestfs-actions.pod:2676 ../fish/guestfish-actions.pod:1826
11935 "This returns a list of all the filesystems that we think are associated with "
11936 "this operating system. This includes the root filesystem, other ordinary "
11937 "filesystems, and non-mounted devices like swap partitions."
11942 #: ../src/guestfs-actions.pod:2681 ../fish/guestfish-actions.pod:1831
11944 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
11945 "to be shared between operating systems."
11950 #: ../src/guestfs-actions.pod:2684
11952 "Please read L<guestfs(3)/INSPECTION> for more details. See also "
11953 "C<guestfs_inspect_get_mountpoints>."
11957 #: ../src/guestfs-actions.pod:2693
11958 msgid "guestfs_inspect_get_format"
11962 #: ../src/guestfs-actions.pod:2695
11966 " guestfs_inspect_get_format (guestfs_h *g,\n"
11967 " const char *root);\n"
11972 #: ../src/guestfs-actions.pod:2702 ../fish/guestfish-actions.pod:1844
11974 "This returns the format of the inspected operating system. You can use it "
11975 "to detect install images, live CDs and similar."
11979 #: ../src/guestfs-actions.pod:2705 ../fish/guestfish-actions.pod:1847
11980 msgid "Currently defined formats are:"
11984 #: ../src/guestfs-actions.pod:2709 ../fish/guestfish-actions.pod:1851
11985 msgid "\"installed\""
11989 #: ../src/guestfs-actions.pod:2711 ../fish/guestfish-actions.pod:1853
11990 msgid "This is an installed operating system."
11994 #: ../src/guestfs-actions.pod:2713 ../fish/guestfish-actions.pod:1855
11995 msgid "\"installer\""
11999 #: ../src/guestfs-actions.pod:2715 ../fish/guestfish-actions.pod:1857
12001 "The disk image being inspected is not an installed operating system, but a "
12002 "I<bootable> install disk, live CD, or similar."
12006 #: ../src/guestfs-actions.pod:2720 ../fish/guestfish-actions.pod:1862
12007 msgid "The format of this disk image is not known."
12012 #: ../src/guestfs-actions.pod:2732
12013 msgid "guestfs_inspect_get_hostname"
12018 #: ../src/guestfs-actions.pod:2734
12022 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
12023 " const char *root);\n"
12029 #: ../src/guestfs-actions.pod:2741 ../fish/guestfish-actions.pod:1878
12031 "This function returns the hostname of the operating system as found by "
12032 "inspection of the guest's configuration files."
12037 #: ../src/guestfs-actions.pod:2744 ../fish/guestfish-actions.pod:1881
12039 "If the hostname could not be determined, then the string C<unknown> is "
12045 #: ../src/guestfs-actions.pod:2752
12046 msgid "(Added in 1.7.9)"
12051 #: ../src/guestfs-actions.pod:2754
12052 msgid "guestfs_inspect_get_major_version"
12057 #: ../src/guestfs-actions.pod:2756
12061 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
12062 " const char *root);\n"
12068 #: ../src/guestfs-actions.pod:2763 ../fish/guestfish-actions.pod:1893
12070 "This returns the major version number of the inspected operating system."
12075 #: ../src/guestfs-actions.pod:2766 ../fish/guestfish-actions.pod:1896
12077 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
12078 "popular public names used by the operating system. Notably the operating "
12079 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
12080 "1). You can find out the real versions corresponding to releases of Windows "
12081 "by consulting Wikipedia or MSDN."
12086 #: ../src/guestfs-actions.pod:2773 ../src/guestfs-actions.pod:2793
12087 #: ../fish/guestfish-actions.pod:1903 ../fish/guestfish-actions.pod:1917
12088 msgid "If the version could not be determined, then C<0> is returned."
12093 #: ../src/guestfs-actions.pod:2781
12094 msgid "guestfs_inspect_get_minor_version"
12099 #: ../src/guestfs-actions.pod:2783
12103 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
12104 " const char *root);\n"
12110 #: ../src/guestfs-actions.pod:2790 ../fish/guestfish-actions.pod:1914
12112 "This returns the minor version number of the inspected operating system."
12117 #: ../src/guestfs-actions.pod:2795
12119 "Please read L<guestfs(3)/INSPECTION> for more details. See also "
12120 "C<guestfs_inspect_get_major_version>."
12125 #: ../src/guestfs-actions.pod:2802
12126 msgid "guestfs_inspect_get_mountpoints"
12131 #: ../src/guestfs-actions.pod:2804
12135 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
12136 " const char *root);\n"
12141 #: ../src/guestfs-actions.pod:2811 ../fish/guestfish-actions.pod:1929
12143 "This returns a hash of where we think the filesystems associated with this "
12144 "operating system should be mounted. Callers should note that this is at "
12145 "best an educated guess made by reading configuration files such as C</etc/"
12146 "fstab>. I<In particular note> that this may return filesystems which are "
12147 "non-existent or not mountable and callers should be prepared to handle or "
12148 "ignore failures if they try to mount them."
12153 #: ../src/guestfs-actions.pod:2820 ../fish/guestfish-actions.pod:1938
12155 "Each element in the returned hashtable has a key which is the path of the "
12156 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
12157 "mounted there (eg. C</dev/sda1>)."
12162 #: ../src/guestfs-actions.pod:2825 ../fish/guestfish-actions.pod:1943
12164 "Non-mounted devices such as swap devices are I<not> returned in this list."
12168 #: ../src/guestfs-actions.pod:2828
12170 "For operating systems like Windows which still use drive letters, this call "
12171 "will only return an entry for the first drive \"mounted on\" C</>. For "
12172 "information about the mapping of drive letters to partitions, see "
12173 "C<guestfs_inspect_get_drive_mappings>."
12178 #: ../src/guestfs-actions.pod:2834
12180 "Please read L<guestfs(3)/INSPECTION> for more details. See also "
12181 "C<guestfs_inspect_get_filesystems>."
12186 #: ../src/guestfs-actions.pod:2845
12187 msgid "guestfs_inspect_get_package_format"
12192 #: ../src/guestfs-actions.pod:2847
12196 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
12197 " const char *root);\n"
12203 #: ../src/guestfs-actions.pod:2854
12205 "This function and C<guestfs_inspect_get_package_management> return the "
12206 "package format and package management tool used by the inspected operating "
12207 "system. For example for Fedora these functions would return C<rpm> (package "
12208 "format) and C<yum> (package management)."
12213 #: ../src/guestfs-actions.pod:2860 ../fish/guestfish-actions.pod:1968
12215 "This returns the string C<unknown> if we could not determine the package "
12216 "format I<or> if the operating system does not have a real packaging system "
12222 #: ../src/guestfs-actions.pod:2864 ../fish/guestfish-actions.pod:1972
12224 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>. "
12225 "Future versions of libguestfs may return other strings."
12230 #: ../src/guestfs-actions.pod:2872 ../src/guestfs-actions.pod:2903
12231 msgid "(Added in 1.7.5)"
12236 #: ../src/guestfs-actions.pod:2874
12237 msgid "guestfs_inspect_get_package_management"
12242 #: ../src/guestfs-actions.pod:2876
12246 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
12247 " const char *root);\n"
12253 #: ../src/guestfs-actions.pod:2883
12255 "C<guestfs_inspect_get_package_format> and this function return the package "
12256 "format and package management tool used by the inspected operating system. "
12257 "For example for Fedora these functions would return C<rpm> (package format) "
12258 "and C<yum> (package management)."
12263 #: ../src/guestfs-actions.pod:2889 ../fish/guestfish-actions.pod:1990
12265 "This returns the string C<unknown> if we could not determine the package "
12266 "management tool I<or> if the operating system does not have a real packaging "
12267 "system (eg. Windows)."
12272 #: ../src/guestfs-actions.pod:2893 ../fish/guestfish-actions.pod:1994
12274 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
12275 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>. Future versions of "
12276 "libguestfs may return other strings."
12281 #: ../src/guestfs-actions.pod:2905
12282 msgid "guestfs_inspect_get_product_name"
12287 #: ../src/guestfs-actions.pod:2907
12291 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
12292 " const char *root);\n"
12298 #: ../src/guestfs-actions.pod:2914 ../fish/guestfish-actions.pod:2008
12300 "This returns the product name of the inspected operating system. The "
12301 "product name is generally some freeform string which can be displayed to the "
12302 "user, but should not be parsed by programs."
12307 #: ../src/guestfs-actions.pod:2919 ../fish/guestfish-actions.pod:2013
12309 "If the product name could not be determined, then the string C<unknown> is "
12314 #: ../src/guestfs-actions.pod:2929
12315 msgid "guestfs_inspect_get_product_variant"
12319 #: ../src/guestfs-actions.pod:2931
12323 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
12324 " const char *root);\n"
12329 #: ../src/guestfs-actions.pod:2938 ../fish/guestfish-actions.pod:2025
12330 msgid "This returns the product variant of the inspected operating system."
12334 #: ../src/guestfs-actions.pod:2941 ../fish/guestfish-actions.pod:2028
12336 "For Windows guests, this returns the contents of the Registry key C<HKLM"
12337 "\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
12338 "is usually a string such as C<Client> or C<Server> (other values are "
12339 "possible). This can be used to distinguish consumer and enterprise versions "
12340 "of Windows that have the same version number (for example, Windows 7 and "
12341 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
12342 "the latter is C<Server>)."
12346 #: ../src/guestfs-actions.pod:2950 ../fish/guestfish-actions.pod:2037
12348 "For enterprise Linux guests, in future we intend this to return the product "
12349 "variant such as C<Desktop>, C<Server> and so on. But this is not "
12350 "implemented at present."
12354 #: ../src/guestfs-actions.pod:2954 ../fish/guestfish-actions.pod:2041
12356 "If the product variant could not be determined, then the string C<unknown> "
12361 #: ../src/guestfs-actions.pod:2957
12363 "Please read L<guestfs(3)/INSPECTION> for more details. See also "
12364 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
12369 #: ../src/guestfs-actions.pod:2964
12370 msgid "guestfs_inspect_get_roots"
12375 #: ../src/guestfs-actions.pod:2966
12379 " guestfs_inspect_get_roots (guestfs_h *g);\n"
12385 #: ../src/guestfs-actions.pod:2969
12387 "This function is a convenient way to get the list of root devices, as "
12388 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
12389 "the whole inspection process."
12394 #: ../src/guestfs-actions.pod:2973
12396 "This returns an empty list if either no root devices were found or the "
12397 "caller has not called C<guestfs_inspect_os>."
12402 #: ../src/guestfs-actions.pod:2982
12403 msgid "(Added in 1.7.3)"
12408 #: ../src/guestfs-actions.pod:2984
12409 msgid "guestfs_inspect_get_type"
12414 #: ../src/guestfs-actions.pod:2986
12418 " guestfs_inspect_get_type (guestfs_h *g,\n"
12419 " const char *root);\n"
12425 #: ../src/guestfs-actions.pod:2993 ../fish/guestfish-actions.pod:2068
12427 "This returns the type of the inspected operating system. Currently defined "
12433 #: ../src/guestfs-actions.pod:2998 ../fish/guestfish-actions.pod:2073
12439 #: ../src/guestfs-actions.pod:3000 ../fish/guestfish-actions.pod:2075
12440 msgid "Any Linux-based operating system."
12445 #: ../src/guestfs-actions.pod:3004 ../fish/guestfish-actions.pod:2079
12446 msgid "Any Microsoft Windows operating system."
12451 #: ../src/guestfs-actions.pod:3006 ../fish/guestfish-actions.pod:2081
12452 msgid "\"freebsd\""
12457 #: ../src/guestfs-actions.pod:3008 ../fish/guestfish-actions.pod:2083
12463 #: ../src/guestfs-actions.pod:3012 ../fish/guestfish-actions.pod:2087
12464 msgid "The operating system type could not be determined."
12468 #: ../src/guestfs-actions.pod:3026
12469 msgid "guestfs_inspect_get_windows_current_control_set"
12473 #: ../src/guestfs-actions.pod:3028
12477 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
12478 " const char *root);\n"
12483 #: ../src/guestfs-actions.pod:3035 ../fish/guestfish-actions.pod:2103
12485 "This returns the Windows CurrentControlSet of the inspected guest. The "
12486 "CurrentControlSet is a registry key name such as C<ControlSet001>."
12490 #: ../src/guestfs-actions.pod:3038 ../fish/guestfish-actions.pod:2106
12492 "This call assumes that the guest is Windows and that the Registry could be "
12493 "examined by inspection. If this is not the case then an error is returned."
12498 #: ../src/guestfs-actions.pod:3047
12499 msgid "guestfs_inspect_get_windows_systemroot"
12504 #: ../src/guestfs-actions.pod:3049
12508 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
12509 " const char *root);\n"
12515 #: ../src/guestfs-actions.pod:3056 ../fish/guestfish-actions.pod:2119
12517 "This returns the Windows systemroot of the inspected guest. The systemroot "
12518 "is a directory path such as C</WINDOWS>."
12523 #: ../src/guestfs-actions.pod:3059 ../fish/guestfish-actions.pod:2122
12525 "This call assumes that the guest is Windows and that the systemroot could be "
12526 "determined by inspection. If this is not the case then an error is returned."
12531 #: ../src/guestfs-actions.pod:3068
12532 msgid "(Added in 1.5.25)"
12536 #: ../src/guestfs-actions.pod:3070
12537 msgid "guestfs_inspect_is_live"
12541 #: ../src/guestfs-actions.pod:3072
12545 " guestfs_inspect_is_live (guestfs_h *g,\n"
12546 " const char *root);\n"
12551 #: ../src/guestfs-actions.pod:3079
12553 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12554 "disk), then this returns true if a live image was detected on the disk."
12558 #: ../src/guestfs-actions.pod:3087
12559 msgid "guestfs_inspect_is_multipart"
12563 #: ../src/guestfs-actions.pod:3089
12567 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
12568 " const char *root);\n"
12573 #: ../src/guestfs-actions.pod:3096
12575 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12576 "disk), then this returns true if the disk is part of a set."
12580 #: ../src/guestfs-actions.pod:3104
12581 msgid "guestfs_inspect_is_netinst"
12585 #: ../src/guestfs-actions.pod:3106
12589 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
12590 " const char *root);\n"
12595 #: ../src/guestfs-actions.pod:3113
12597 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12598 "disk), then this returns true if the disk is a network installer, ie. not a "
12599 "self-contained install CD but one which is likely to require network access "
12600 "to complete the install."
12605 #: ../src/guestfs-actions.pod:3123
12606 msgid "guestfs_inspect_list_applications"
12611 #: ../src/guestfs-actions.pod:3125
12614 " struct guestfs_application_list *\n"
12615 " guestfs_inspect_list_applications (guestfs_h *g,\n"
12616 " const char *root);\n"
12622 #: ../src/guestfs-actions.pod:3132 ../fish/guestfish-actions.pod:2176
12623 msgid "Return the list of applications installed in the operating system."
12628 #: ../src/guestfs-actions.pod:3134
12630 "I<Note:> This call works differently from other parts of the inspection "
12631 "API. You have to call C<guestfs_inspect_os>, then "
12632 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
12633 "this. Listing applications is a significantly more difficult operation "
12634 "which requires access to the full filesystem. Also note that unlike the "
12635 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
12636 "the libguestfs handle, this call actually reads parts of the mounted "
12637 "filesystems during the call."
12642 #: ../src/guestfs-actions.pod:3144 ../fish/guestfish-actions.pod:2188
12644 "This returns an empty list if the inspection code was not able to determine "
12645 "the list of applications."
12650 #: ../src/guestfs-actions.pod:3147 ../fish/guestfish-actions.pod:2191
12651 msgid "The application structure contains the following fields:"
12656 #: ../src/guestfs-actions.pod:3151 ../fish/guestfish-actions.pod:2195
12657 msgid "C<app_name>"
12662 #: ../src/guestfs-actions.pod:3153 ../fish/guestfish-actions.pod:2197
12664 "The name of the application. For Red Hat-derived and Debian-derived Linux "
12665 "guests, this is the package name."
12670 #: ../src/guestfs-actions.pod:3156 ../fish/guestfish-actions.pod:2200
12671 msgid "C<app_display_name>"
12676 #: ../src/guestfs-actions.pod:3158 ../fish/guestfish-actions.pod:2202
12678 "The display name of the application, sometimes localized to the install "
12679 "language of the guest operating system."
12684 #: ../src/guestfs-actions.pod:3161 ../fish/guestfish-actions.pod:2205
12686 "If unavailable this is returned as an empty string C<\"\">. Callers needing "
12687 "to display something can use C<app_name> instead."
12692 #: ../src/guestfs-actions.pod:3164 ../fish/guestfish-actions.pod:2208
12693 msgid "C<app_epoch>"
12698 #: ../src/guestfs-actions.pod:3166 ../fish/guestfish-actions.pod:2210
12700 "For package managers which use epochs, this contains the epoch of the "
12701 "package (an integer). If unavailable, this is returned as C<0>."
12706 #: ../src/guestfs-actions.pod:3169 ../fish/guestfish-actions.pod:2213
12707 msgid "C<app_version>"
12712 #: ../src/guestfs-actions.pod:3171 ../fish/guestfish-actions.pod:2215
12714 "The version string of the application or package. If unavailable this is "
12715 "returned as an empty string C<\"\">."
12720 #: ../src/guestfs-actions.pod:3174 ../fish/guestfish-actions.pod:2218
12721 msgid "C<app_release>"
12726 #: ../src/guestfs-actions.pod:3176 ../fish/guestfish-actions.pod:2220
12728 "The release string of the application or package, for package managers that "
12729 "use this. If unavailable this is returned as an empty string C<\"\">."
12734 #: ../src/guestfs-actions.pod:3180 ../fish/guestfish-actions.pod:2224
12735 msgid "C<app_install_path>"
12740 #: ../src/guestfs-actions.pod:3182 ../fish/guestfish-actions.pod:2226
12742 "The installation path of the application (on operating systems such as "
12743 "Windows which use installation paths). This path is in the format used by "
12744 "the guest operating system, it is not a libguestfs path."
12749 #: ../src/guestfs-actions.pod:3187 ../fish/guestfish-actions.pod:2231
12750 msgid "If unavailable this is returned as an empty string C<\"\">."
12755 #: ../src/guestfs-actions.pod:3189 ../fish/guestfish-actions.pod:2233
12756 msgid "C<app_trans_path>"
12761 #: ../src/guestfs-actions.pod:3191 ../fish/guestfish-actions.pod:2235
12763 "The install path translated into a libguestfs path. If unavailable this is "
12764 "returned as an empty string C<\"\">."
12769 #: ../src/guestfs-actions.pod:3194 ../fish/guestfish-actions.pod:2238
12770 msgid "C<app_publisher>"
12775 #: ../src/guestfs-actions.pod:3196 ../fish/guestfish-actions.pod:2240
12777 "The name of the publisher of the application, for package managers that use "
12778 "this. If unavailable this is returned as an empty string C<\"\">."
12783 #: ../src/guestfs-actions.pod:3200 ../fish/guestfish-actions.pod:2244
12789 #: ../src/guestfs-actions.pod:3202 ../fish/guestfish-actions.pod:2246
12791 "The URL (eg. upstream URL) of the application. If unavailable this is "
12792 "returned as an empty string C<\"\">."
12797 #: ../src/guestfs-actions.pod:3205 ../fish/guestfish-actions.pod:2249
12798 msgid "C<app_source_package>"
12803 #: ../src/guestfs-actions.pod:3207 ../fish/guestfish-actions.pod:2251
12805 "For packaging systems which support this, the name of the source package. "
12806 "If unavailable this is returned as an empty string C<\"\">."
12811 #: ../src/guestfs-actions.pod:3210 ../fish/guestfish-actions.pod:2254
12812 msgid "C<app_summary>"
12817 #: ../src/guestfs-actions.pod:3212 ../fish/guestfish-actions.pod:2256
12819 "A short (usually one line) description of the application or package. If "
12820 "unavailable this is returned as an empty string C<\"\">."
12825 #: ../src/guestfs-actions.pod:3215 ../fish/guestfish-actions.pod:2259
12826 msgid "C<app_description>"
12831 #: ../src/guestfs-actions.pod:3217 ../fish/guestfish-actions.pod:2261
12833 "A longer description of the application or package. If unavailable this is "
12834 "returned as an empty string C<\"\">."
12839 #: ../src/guestfs-actions.pod:3224
12841 "This function returns a C<struct guestfs_application_list *>, or NULL if "
12842 "there was an error. I<The caller must call C<guestfs_free_application_list> "
12848 #: ../src/guestfs-actions.pod:3228
12849 msgid "(Added in 1.7.8)"
12854 #: ../src/guestfs-actions.pod:3230
12855 msgid "guestfs_inspect_os"
12860 #: ../src/guestfs-actions.pod:3232
12864 " guestfs_inspect_os (guestfs_h *g);\n"
12870 #: ../src/guestfs-actions.pod:3235 ../fish/guestfish-actions.pod:2272
12872 "This function uses other libguestfs functions and certain heuristics to "
12873 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
12874 "for operating systems."
12879 #: ../src/guestfs-actions.pod:3239 ../fish/guestfish-actions.pod:2276
12880 msgid "The list returned is empty if no operating systems were found."
12885 #: ../src/guestfs-actions.pod:3241 ../fish/guestfish-actions.pod:2278
12887 "If one operating system was found, then this returns a list with a single "
12888 "element, which is the name of the root filesystem of this operating system. "
12889 "It is also possible for this function to return a list containing more than "
12890 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
12891 "element being the root filesystem of one of the operating systems."
12896 #: ../src/guestfs-actions.pod:3248
12898 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
12899 "functions in order to query further information about each operating system, "
12900 "such as the name and version."
12905 #: ../src/guestfs-actions.pod:3253
12907 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
12908 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
12909 "the contents. This should be called with no disks currently mounted. The "
12910 "function may also use Augeas, so any existing Augeas handle will be closed."
12915 #: ../src/guestfs-actions.pod:3259 ../fish/guestfish-actions.pod:2296
12917 "This function cannot decrypt encrypted disks. The caller must do that first "
12918 "(supplying the necessary keys) if the disk is encrypted."
12923 #: ../src/guestfs-actions.pod:3265 ../src/guestfs-actions.pod:3555
12924 #: ../src/guestfs-actions.pod:3617
12925 msgid "See also C<guestfs_list_filesystems>."
12930 #: ../src/guestfs-actions.pod:3273
12931 msgid "guestfs_is_blockdev"
12936 #: ../src/guestfs-actions.pod:3275
12940 " guestfs_is_blockdev (guestfs_h *g,\n"
12941 " const char *path);\n"
12947 #: ../src/guestfs-actions.pod:3279 ../fish/guestfish-actions.pod:2308
12949 "This returns C<true> if and only if there is a block device with the given "
12955 #: ../src/guestfs-actions.pod:3282 ../src/guestfs-actions.pod:3311
12956 #: ../src/guestfs-actions.pod:3341 ../src/guestfs-actions.pod:3356
12957 #: ../src/guestfs-actions.pod:3372 ../src/guestfs-actions.pod:3428
12958 #: ../src/guestfs-actions.pod:3443
12959 msgid "See also C<guestfs_stat>."
12964 #: ../src/guestfs-actions.pod:3286 ../src/guestfs-actions.pod:3315
12965 #: ../src/guestfs-actions.pod:3360 ../src/guestfs-actions.pod:3432
12966 #: ../src/guestfs-actions.pod:3447
12967 msgid "(Added in 1.5.10)"
12972 #: ../src/guestfs-actions.pod:3288
12973 msgid "guestfs_is_busy"
12978 #: ../src/guestfs-actions.pod:3290
12982 " guestfs_is_busy (guestfs_h *g);\n"
12988 #: ../src/guestfs-actions.pod:3293 ../fish/guestfish-actions.pod:2317
12990 "This returns true iff this handle is busy processing a command (in the "
12996 #: ../src/guestfs-actions.pod:3302
12997 msgid "guestfs_is_chardev"
13002 #: ../src/guestfs-actions.pod:3304
13006 " guestfs_is_chardev (guestfs_h *g,\n"
13007 " const char *path);\n"
13013 #: ../src/guestfs-actions.pod:3308 ../fish/guestfish-actions.pod:2326
13015 "This returns C<true> if and only if there is a character device with the "
13016 "given C<path> name."
13021 #: ../src/guestfs-actions.pod:3317
13022 msgid "guestfs_is_config"
13027 #: ../src/guestfs-actions.pod:3319
13031 " guestfs_is_config (guestfs_h *g);\n"
13037 #: ../src/guestfs-actions.pod:3322 ../fish/guestfish-actions.pod:2335
13039 "This returns true iff this handle is being configured (in the C<CONFIG> "
13045 #: ../src/guestfs-actions.pod:3331
13046 msgid "guestfs_is_dir"
13051 #: ../src/guestfs-actions.pod:3333
13055 " guestfs_is_dir (guestfs_h *g,\n"
13056 " const char *path);\n"
13062 #: ../src/guestfs-actions.pod:3337 ../fish/guestfish-actions.pod:2344
13064 "This returns C<true> if and only if there is a directory with the given "
13065 "C<path> name. Note that it returns false for other objects like files."
13070 #: ../src/guestfs-actions.pod:3347
13071 msgid "guestfs_is_fifo"
13076 #: ../src/guestfs-actions.pod:3349
13080 " guestfs_is_fifo (guestfs_h *g,\n"
13081 " const char *path);\n"
13087 #: ../src/guestfs-actions.pod:3353 ../fish/guestfish-actions.pod:2354
13089 "This returns C<true> if and only if there is a FIFO (named pipe) with the "
13090 "given C<path> name."
13095 #: ../src/guestfs-actions.pod:3362
13096 msgid "guestfs_is_file"
13101 #: ../src/guestfs-actions.pod:3364
13105 " guestfs_is_file (guestfs_h *g,\n"
13106 " const char *path);\n"
13112 #: ../src/guestfs-actions.pod:3368 ../fish/guestfish-actions.pod:2363
13114 "This returns C<true> if and only if there is a regular file with the given "
13115 "C<path> name. Note that it returns false for other objects like directories."
13120 #: ../src/guestfs-actions.pod:3378
13121 msgid "guestfs_is_launching"
13126 #: ../src/guestfs-actions.pod:3380
13130 " guestfs_is_launching (guestfs_h *g);\n"
13136 #: ../src/guestfs-actions.pod:3383 ../fish/guestfish-actions.pod:2373
13138 "This returns true iff this handle is launching the subprocess (in the "
13139 "C<LAUNCHING> state)."
13144 #: ../src/guestfs-actions.pod:3392
13145 msgid "guestfs_is_lv"
13150 #: ../src/guestfs-actions.pod:3394
13154 " guestfs_is_lv (guestfs_h *g,\n"
13155 " const char *device);\n"
13161 #: ../src/guestfs-actions.pod:3398 ../fish/guestfish-actions.pod:2382
13163 "This command tests whether C<device> is a logical volume, and returns true "
13164 "iff this is the case."
13169 #: ../src/guestfs-actions.pod:3405
13170 msgid "guestfs_is_ready"
13175 #: ../src/guestfs-actions.pod:3407
13179 " guestfs_is_ready (guestfs_h *g);\n"
13185 #: ../src/guestfs-actions.pod:3410 ../fish/guestfish-actions.pod:2389
13187 "This returns true iff this handle is ready to accept commands (in the "
13193 #: ../src/guestfs-actions.pod:3419
13194 msgid "guestfs_is_socket"
13199 #: ../src/guestfs-actions.pod:3421
13203 " guestfs_is_socket (guestfs_h *g,\n"
13204 " const char *path);\n"
13210 #: ../src/guestfs-actions.pod:3425 ../fish/guestfish-actions.pod:2398
13212 "This returns C<true> if and only if there is a Unix domain socket with the "
13213 "given C<path> name."
13218 #: ../src/guestfs-actions.pod:3434
13219 msgid "guestfs_is_symlink"
13224 #: ../src/guestfs-actions.pod:3436
13228 " guestfs_is_symlink (guestfs_h *g,\n"
13229 " const char *path);\n"
13235 #: ../src/guestfs-actions.pod:3440 ../fish/guestfish-actions.pod:2407
13237 "This returns C<true> if and only if there is a symbolic link with the given "
13243 #: ../src/guestfs-actions.pod:3449
13244 msgid "guestfs_kill_subprocess"
13249 #: ../src/guestfs-actions.pod:3451
13253 " guestfs_kill_subprocess (guestfs_h *g);\n"
13259 #: ../src/guestfs-actions.pod:3454 ../fish/guestfish-actions.pod:2416
13260 msgid "This kills the qemu subprocess. You should never need to call this."
13265 #: ../src/guestfs-actions.pod:3460
13266 msgid "guestfs_launch"
13271 #: ../src/guestfs-actions.pod:3462
13275 " guestfs_launch (guestfs_h *g);\n"
13281 #: ../src/guestfs-actions.pod:3465 ../fish/guestfish-actions.pod:2424
13283 "Internally libguestfs is implemented by running a virtual machine using "
13289 #: ../src/guestfs-actions.pod:3468 ../fish/guestfish-actions.pod:2427
13291 "You should call this after configuring the handle (eg. adding drives) but "
13292 "before performing any actions."
13297 #: ../src/guestfs-actions.pod:3480
13298 msgid "guestfs_lchown"
13303 #: ../src/guestfs-actions.pod:3482
13307 " guestfs_lchown (guestfs_h *g,\n"
13310 " const char *path);\n"
13316 #: ../src/guestfs-actions.pod:3488
13318 "Change the file owner to C<owner> and group to C<group>. This is like "
13319 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
13320 "changed, not the target."
13325 #: ../src/guestfs-actions.pod:3500
13326 msgid "guestfs_lgetxattr"
13331 #: ../src/guestfs-actions.pod:3502
13335 " guestfs_lgetxattr (guestfs_h *g,\n"
13336 " const char *path,\n"
13337 " const char *name,\n"
13338 " size_t *size_r);\n"
13344 #: ../src/guestfs-actions.pod:3508 ../fish/guestfish-actions.pod:2446
13346 "Get a single extended attribute from file C<path> named C<name>. If C<path> "
13347 "is a symlink, then this call returns an extended attribute from the symlink."
13352 #: ../src/guestfs-actions.pod:3522
13353 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
13358 #: ../src/guestfs-actions.pod:3530
13359 msgid "guestfs_lgetxattrs"
13364 #: ../src/guestfs-actions.pod:3532
13367 " struct guestfs_xattr_list *\n"
13368 " guestfs_lgetxattrs (guestfs_h *g,\n"
13369 " const char *path);\n"
13375 #: ../src/guestfs-actions.pod:3536
13377 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
13378 "then it returns the extended attributes of the link itself."
13383 #: ../src/guestfs-actions.pod:3546
13384 msgid "guestfs_list_devices"
13389 #: ../src/guestfs-actions.pod:3548
13393 " guestfs_list_devices (guestfs_h *g);\n"
13399 #: ../src/guestfs-actions.pod:3551 ../fish/guestfish-actions.pod:2474
13400 msgid "List all the block devices."
13405 #: ../src/guestfs-actions.pod:3553 ../fish/guestfish-actions.pod:2476
13406 msgid "The full block device names are returned, eg. C</dev/sda>."
13411 #: ../src/guestfs-actions.pod:3563
13412 msgid "guestfs_list_filesystems"
13417 #: ../src/guestfs-actions.pod:3565
13421 " guestfs_list_filesystems (guestfs_h *g);\n"
13427 #: ../src/guestfs-actions.pod:3568 ../fish/guestfish-actions.pod:2484
13429 "This inspection command looks for filesystems on partitions, block devices "
13430 "and logical volumes, returning a list of devices containing filesystems and "
13436 #: ../src/guestfs-actions.pod:3572 ../fish/guestfish-actions.pod:2488
13438 "The return value is a hash, where the keys are the devices containing "
13439 "filesystems, and the values are the filesystem types. For example:"
13444 #: ../src/guestfs-actions.pod:3576 ../fish/guestfish-actions.pod:2492
13447 " \"/dev/sda1\" => \"ntfs\"\n"
13448 " \"/dev/sda2\" => \"ext2\"\n"
13449 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
13450 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
13456 #: ../src/guestfs-actions.pod:3581 ../fish/guestfish-actions.pod:2497
13458 "The value can have the special value \"unknown\", meaning the content of the "
13459 "device is undetermined or empty. \"swap\" means a Linux swap partition."
13464 #: ../src/guestfs-actions.pod:3585
13466 "This command runs other libguestfs commands, which might include "
13467 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
13468 "soon after launch and only when nothing is mounted."
13473 #: ../src/guestfs-actions.pod:3589
13475 "Not all of the filesystems returned will be mountable. In particular, swap "
13476 "partitions are returned in the list. Also this command does not check that "
13477 "each filesystem found is valid and mountable, and some filesystems might be "
13478 "mountable but require special options. Filesystems may not all belong to a "
13479 "single logical operating system (use C<guestfs_inspect_os> to look for OSes)."
13484 #: ../src/guestfs-actions.pod:3603 ../src/guestfs-actions.pod:5224
13485 msgid "(Added in 1.5.15)"
13490 #: ../src/guestfs-actions.pod:3605
13491 msgid "guestfs_list_partitions"
13496 #: ../src/guestfs-actions.pod:3607
13500 " guestfs_list_partitions (guestfs_h *g);\n"
13506 #: ../src/guestfs-actions.pod:3610 ../fish/guestfish-actions.pod:2517
13507 msgid "List all the partitions detected on all block devices."
13512 #: ../src/guestfs-actions.pod:3612 ../fish/guestfish-actions.pod:2519
13513 msgid "The full partition device names are returned, eg. C</dev/sda1>"
13518 #: ../src/guestfs-actions.pod:3614
13520 "This does not return logical volumes. For that you will need to call "
13526 #: ../src/guestfs-actions.pod:3625
13532 #: ../src/guestfs-actions.pod:3627
13536 " guestfs_ll (guestfs_h *g,\n"
13537 " const char *directory);\n"
13543 #: ../src/guestfs-actions.pod:3631 ../fish/guestfish-actions.pod:2530
13545 "List the files in C<directory> (relative to the root directory, there is no "
13546 "cwd) in the format of 'ls -la'."
13551 #: ../src/guestfs-actions.pod:3634 ../fish/guestfish-actions.pod:2533
13553 "This command is mostly useful for interactive sessions. It is I<not> "
13554 "intended that you try to parse the output string."
13559 #: ../src/guestfs-actions.pod:3642
13565 #: ../src/guestfs-actions.pod:3644
13569 " guestfs_ln (guestfs_h *g,\n"
13570 " const char *target,\n"
13571 " const char *linkname);\n"
13577 #: ../src/guestfs-actions.pod:3649 ../fish/guestfish-actions.pod:2540
13578 msgid "This command creates a hard link using the C<ln> command."
13583 #: ../src/guestfs-actions.pod:3655
13584 msgid "guestfs_ln_f"
13589 #: ../src/guestfs-actions.pod:3657
13593 " guestfs_ln_f (guestfs_h *g,\n"
13594 " const char *target,\n"
13595 " const char *linkname);\n"
13600 #: ../src/guestfs-actions.pod:3662 ../fish/guestfish-actions.pod:2546
13602 "This command creates a hard link using the C<ln -f> command. The I<-f> "
13603 "option removes the link (C<linkname>) if it exists already."
13608 #: ../src/guestfs-actions.pod:3669
13609 msgid "guestfs_ln_s"
13614 #: ../src/guestfs-actions.pod:3671
13618 " guestfs_ln_s (guestfs_h *g,\n"
13619 " const char *target,\n"
13620 " const char *linkname);\n"
13626 #: ../src/guestfs-actions.pod:3676 ../fish/guestfish-actions.pod:2553
13627 msgid "This command creates a symbolic link using the C<ln -s> command."
13632 #: ../src/guestfs-actions.pod:3682
13633 msgid "guestfs_ln_sf"
13638 #: ../src/guestfs-actions.pod:3684
13642 " guestfs_ln_sf (guestfs_h *g,\n"
13643 " const char *target,\n"
13644 " const char *linkname);\n"
13649 #: ../src/guestfs-actions.pod:3689 ../fish/guestfish-actions.pod:2559
13651 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
13652 "option removes the link (C<linkname>) if it exists already."
13657 #: ../src/guestfs-actions.pod:3696
13658 msgid "guestfs_lremovexattr"
13663 #: ../src/guestfs-actions.pod:3698
13667 " guestfs_lremovexattr (guestfs_h *g,\n"
13668 " const char *xattr,\n"
13669 " const char *path);\n"
13675 #: ../src/guestfs-actions.pod:3703
13677 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
13678 "link, then it removes an extended attribute of the link itself."
13683 #: ../src/guestfs-actions.pod:3711
13689 #: ../src/guestfs-actions.pod:3713
13693 " guestfs_ls (guestfs_h *g,\n"
13694 " const char *directory);\n"
13700 #: ../src/guestfs-actions.pod:3717 ../fish/guestfish-actions.pod:2574
13702 "List the files in C<directory> (relative to the root directory, there is no "
13703 "cwd). The '.' and '..' entries are not returned, but hidden files are shown."
13708 #: ../src/guestfs-actions.pod:3721
13710 "This command is mostly useful for interactive sessions. Programs should "
13711 "probably use C<guestfs_readdir> instead."
13716 #: ../src/guestfs-actions.pod:3730
13717 msgid "guestfs_lsetxattr"
13722 #: ../src/guestfs-actions.pod:3732
13726 " guestfs_lsetxattr (guestfs_h *g,\n"
13727 " const char *xattr,\n"
13728 " const char *val,\n"
13730 " const char *path);\n"
13736 #: ../src/guestfs-actions.pod:3739
13738 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
13739 "then it sets an extended attribute of the link itself."
13744 #: ../src/guestfs-actions.pod:3747
13745 msgid "guestfs_lstat"
13750 #: ../src/guestfs-actions.pod:3749
13753 " struct guestfs_stat *\n"
13754 " guestfs_lstat (guestfs_h *g,\n"
13755 " const char *path);\n"
13761 #: ../src/guestfs-actions.pod:3753 ../src/guestfs-actions.pod:6355
13762 #: ../fish/guestfish-actions.pod:2593 ../fish/guestfish-actions.pod:4306
13763 msgid "Returns file information for the given C<path>."
13768 #: ../src/guestfs-actions.pod:3755
13770 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
13771 "link, then the link is stat-ed, not the file it refers to."
13776 #: ../src/guestfs-actions.pod:3759 ../fish/guestfish-actions.pod:2599
13777 msgid "This is the same as the C<lstat(2)> system call."
13782 #: ../src/guestfs-actions.pod:3761 ../src/guestfs-actions.pod:6359
13784 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
13785 "error. I<The caller must call C<guestfs_free_stat> after use>."
13790 #: ../src/guestfs-actions.pod:3765 ../src/guestfs-actions.pod:6363
13791 #: ../src/guestfs-actions.pod:6381 ../src/guestfs-actions.pod:6762
13792 msgid "(Added in 0.9.2)"
13797 #: ../src/guestfs-actions.pod:3767
13798 msgid "guestfs_lstatlist"
13803 #: ../src/guestfs-actions.pod:3769
13806 " struct guestfs_stat_list *\n"
13807 " guestfs_lstatlist (guestfs_h *g,\n"
13808 " const char *path,\n"
13809 " char *const *names);\n"
13815 #: ../src/guestfs-actions.pod:3774
13817 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
13818 "files, where all files are in the directory C<path>. C<names> is the list "
13819 "of files from this directory."
13824 #: ../src/guestfs-actions.pod:3778 ../fish/guestfish-actions.pod:2609
13826 "On return you get a list of stat structs, with a one-to-one correspondence "
13827 "to the C<names> list. If any name did not exist or could not be lstat'd, "
13828 "then the C<ino> field of that structure is set to C<-1>."
13833 #: ../src/guestfs-actions.pod:3783
13835 "This call is intended for programs that want to efficiently list a directory "
13836 "contents without making many round-trips. See also C<guestfs_lxattrlist> "
13837 "for a similarly efficient call for getting extended attributes. Very long "
13838 "directory listings might cause the protocol message size to be exceeded, "
13839 "causing this call to fail. The caller must split up such requests into "
13840 "smaller groups of names."
13845 #: ../src/guestfs-actions.pod:3791
13847 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
13848 "an error. I<The caller must call C<guestfs_free_stat_list> after use>."
13853 #: ../src/guestfs-actions.pod:3797
13854 msgid "guestfs_luks_add_key"
13859 #: ../src/guestfs-actions.pod:3799
13863 " guestfs_luks_add_key (guestfs_h *g,\n"
13864 " const char *device,\n"
13865 " const char *key,\n"
13866 " const char *newkey,\n"
13873 #: ../src/guestfs-actions.pod:3806 ../fish/guestfish-actions.pod:2626
13875 "This command adds a new key on LUKS device C<device>. C<key> is any "
13876 "existing key, and is used to access the device. C<newkey> is the new key to "
13877 "add. C<keyslot> is the key slot that will be replaced."
13882 #: ../src/guestfs-actions.pod:3811
13884 "Note that if C<keyslot> already contains a key, then this command will "
13885 "fail. You have to use C<guestfs_luks_kill_slot> first to remove that key."
13890 #: ../src/guestfs-actions.pod:3817 ../src/guestfs-actions.pod:3857
13891 #: ../src/guestfs-actions.pod:3880 ../src/guestfs-actions.pod:3900
13892 #: ../src/guestfs-actions.pod:3932 ../src/guestfs-actions.pod:3951
13894 "This function takes a key or passphrase parameter which could contain "
13895 "sensitive material. Read the section L</KEYS AND PASSPHRASES> for more "
13901 #: ../src/guestfs-actions.pod:3821 ../src/guestfs-actions.pod:3861
13902 #: ../src/guestfs-actions.pod:3884 ../src/guestfs-actions.pod:3904
13903 msgid "(Added in 1.5.2)"
13908 #: ../src/guestfs-actions.pod:3823
13909 msgid "guestfs_luks_close"
13914 #: ../src/guestfs-actions.pod:3825
13918 " guestfs_luks_close (guestfs_h *g,\n"
13919 " const char *device);\n"
13925 #: ../src/guestfs-actions.pod:3829
13927 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
13928 "or C<guestfs_luks_open_ro>. The C<device> parameter must be the name of the "
13929 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
13930 "underlying block device."
13935 #: ../src/guestfs-actions.pod:3837 ../src/guestfs-actions.pod:3936
13936 #: ../src/guestfs-actions.pod:3955 ../src/guestfs-actions.pod:4005
13937 #: ../src/guestfs-actions.pod:4053
13938 msgid "(Added in 1.5.1)"
13943 #: ../src/guestfs-actions.pod:3839
13944 msgid "guestfs_luks_format"
13949 #: ../src/guestfs-actions.pod:3841
13953 " guestfs_luks_format (guestfs_h *g,\n"
13954 " const char *device,\n"
13955 " const char *key,\n"
13962 #: ../src/guestfs-actions.pod:3847 ../fish/guestfish-actions.pod:2652
13964 "This command erases existing data on C<device> and formats the device as a "
13965 "LUKS encrypted device. C<key> is the initial key, which is added to key "
13966 "slot C<slot>. (LUKS supports 8 key slots, numbered 0-7)."
13971 #: ../src/guestfs-actions.pod:3854 ../src/guestfs-actions.pod:3877
13972 #: ../src/guestfs-actions.pod:4017 ../src/guestfs-actions.pod:4975
13973 #: ../src/guestfs-actions.pod:5755 ../src/guestfs-actions.pod:6162
13974 #: ../src/guestfs-actions.pod:6192 ../src/guestfs-actions.pod:6225
13975 #: ../src/guestfs-actions.pod:7406 ../fish/guestfish-actions.pod:2660
13976 #: ../fish/guestfish-actions.pod:2673 ../fish/guestfish-actions.pod:2757
13977 #: ../fish/guestfish-actions.pod:3347 ../fish/guestfish-actions.pod:3867
13978 #: ../fish/guestfish-actions.pod:4177 ../fish/guestfish-actions.pod:4200
13979 #: ../fish/guestfish-actions.pod:4222 ../fish/guestfish-actions.pod:4951
13981 "B<This command is dangerous. Without careful use you can easily destroy all "
13987 #: ../src/guestfs-actions.pod:3863
13988 msgid "guestfs_luks_format_cipher"
13993 #: ../src/guestfs-actions.pod:3865
13997 " guestfs_luks_format_cipher (guestfs_h *g,\n"
13998 " const char *device,\n"
13999 " const char *key,\n"
14001 " const char *cipher);\n"
14007 #: ../src/guestfs-actions.pod:3872
14009 "This command is the same as C<guestfs_luks_format> but it also allows you to "
14010 "set the C<cipher> used."
14015 #: ../src/guestfs-actions.pod:3886
14016 msgid "guestfs_luks_kill_slot"
14021 #: ../src/guestfs-actions.pod:3888
14025 " guestfs_luks_kill_slot (guestfs_h *g,\n"
14026 " const char *device,\n"
14027 " const char *key,\n"
14034 #: ../src/guestfs-actions.pod:3894 ../fish/guestfish-actions.pod:2680
14036 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
14037 "device C<device>. C<key> must be one of the I<other> keys."
14042 #: ../src/guestfs-actions.pod:3906
14043 msgid "guestfs_luks_open"
14048 #: ../src/guestfs-actions.pod:3908
14052 " guestfs_luks_open (guestfs_h *g,\n"
14053 " const char *device,\n"
14054 " const char *key,\n"
14055 " const char *mapname);\n"
14061 #: ../src/guestfs-actions.pod:3914 ../fish/guestfish-actions.pod:2691
14063 "This command opens a block device which has been encrypted according to the "
14064 "Linux Unified Key Setup (LUKS) standard."
14069 #: ../src/guestfs-actions.pod:3917 ../fish/guestfish-actions.pod:2694
14070 msgid "C<device> is the encrypted block device or partition."
14075 #: ../src/guestfs-actions.pod:3919 ../fish/guestfish-actions.pod:2696
14077 "The caller must supply one of the keys associated with the LUKS block "
14078 "device, in the C<key> parameter."
14083 #: ../src/guestfs-actions.pod:3922 ../fish/guestfish-actions.pod:2699
14085 "This creates a new block device called C</dev/mapper/mapname>. Reads and "
14086 "writes to this block device are decrypted from and encrypted to the "
14087 "underlying C<device> respectively."
14092 #: ../src/guestfs-actions.pod:3926
14094 "If this block device contains LVM volume groups, then calling "
14095 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
14101 #: ../src/guestfs-actions.pod:3938
14102 msgid "guestfs_luks_open_ro"
14107 #: ../src/guestfs-actions.pod:3940
14111 " guestfs_luks_open_ro (guestfs_h *g,\n"
14112 " const char *device,\n"
14113 " const char *key,\n"
14114 " const char *mapname);\n"
14120 #: ../src/guestfs-actions.pod:3946
14122 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
14128 #: ../src/guestfs-actions.pod:3957
14129 msgid "guestfs_lvcreate"
14134 #: ../src/guestfs-actions.pod:3959
14138 " guestfs_lvcreate (guestfs_h *g,\n"
14139 " const char *logvol,\n"
14140 " const char *volgroup,\n"
14147 #: ../src/guestfs-actions.pod:3965 ../fish/guestfish-actions.pod:2724
14149 "This creates an LVM logical volume called C<logvol> on the volume group "
14150 "C<volgroup>, with C<size> megabytes."
14155 #: ../src/guestfs-actions.pod:3972
14156 msgid "guestfs_lvm_canonical_lv_name"
14161 #: ../src/guestfs-actions.pod:3974
14165 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
14166 " const char *lvname);\n"
14172 #: ../src/guestfs-actions.pod:3978 ../fish/guestfish-actions.pod:2731
14174 "This converts alternative naming schemes for LVs that you might find to the "
14175 "canonical name. For example, C</dev/mapper/VG-LV> is converted to C</dev/VG/"
14181 #: ../src/guestfs-actions.pod:3982 ../fish/guestfish-actions.pod:2735
14183 "This command returns an error if the C<lvname> parameter does not refer to a "
14189 #: ../src/guestfs-actions.pod:3985
14190 msgid "See also C<guestfs_is_lv>."
14195 #: ../src/guestfs-actions.pod:3990
14196 msgid "(Added in 1.5.24)"
14201 #: ../src/guestfs-actions.pod:3992
14202 msgid "guestfs_lvm_clear_filter"
14207 #: ../src/guestfs-actions.pod:3994
14211 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
14217 #: ../src/guestfs-actions.pod:3997
14219 "This undoes the effect of C<guestfs_lvm_set_filter>. LVM will be able to "
14220 "see every block device."
14225 #: ../src/guestfs-actions.pod:4000 ../src/guestfs-actions.pod:4042
14226 #: ../fish/guestfish-actions.pod:2747 ../fish/guestfish-actions.pod:2778
14228 "This command also clears the LVM cache and performs a volume group scan."
14233 #: ../src/guestfs-actions.pod:4007
14234 msgid "guestfs_lvm_remove_all"
14239 #: ../src/guestfs-actions.pod:4009
14243 " guestfs_lvm_remove_all (guestfs_h *g);\n"
14249 #: ../src/guestfs-actions.pod:4012 ../fish/guestfish-actions.pod:2754
14251 "This command removes all LVM logical volumes, volume groups and physical "
14257 #: ../src/guestfs-actions.pod:4022
14258 msgid "guestfs_lvm_set_filter"
14263 #: ../src/guestfs-actions.pod:4024
14267 " guestfs_lvm_set_filter (guestfs_h *g,\n"
14268 " char *const *devices);\n"
14274 #: ../src/guestfs-actions.pod:4028 ../fish/guestfish-actions.pod:2764
14276 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
14277 "block devices in the list C<devices>, and will ignore all other attached "
14283 #: ../src/guestfs-actions.pod:4032 ../fish/guestfish-actions.pod:2768
14285 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
14286 "get LVM to ignore the duplicates, otherwise LVM can get confused. Note also "
14287 "there are two types of duplication possible: either cloned PVs/VGs which "
14288 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
14289 "same name. In normal operation you cannot create this situation, but you "
14290 "can do it outside LVM, eg. by cloning disk images or by bit twiddling "
14291 "inside the LVM metadata."
14296 #: ../src/guestfs-actions.pod:4045 ../fish/guestfish-actions.pod:2781
14297 msgid "You can filter whole block devices or individual partitions."
14302 #: ../src/guestfs-actions.pod:4047 ../fish/guestfish-actions.pod:2783
14304 "You cannot use this if any VG is currently in use (eg. contains a mounted "
14305 "filesystem), even if you are not filtering out that VG."
14310 #: ../src/guestfs-actions.pod:4055
14311 msgid "guestfs_lvremove"
14316 #: ../src/guestfs-actions.pod:4057
14320 " guestfs_lvremove (guestfs_h *g,\n"
14321 " const char *device);\n"
14327 #: ../src/guestfs-actions.pod:4061 ../fish/guestfish-actions.pod:2791
14329 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
14330 "LV, such as C</dev/VG/LV>."
14335 #: ../src/guestfs-actions.pod:4064 ../fish/guestfish-actions.pod:2794
14337 "You can also remove all LVs in a volume group by specifying the VG name, C</"
14343 #: ../src/guestfs-actions.pod:4069 ../src/guestfs-actions.pod:5321
14344 #: ../src/guestfs-actions.pod:7138
14345 msgid "(Added in 1.0.13)"
14350 #: ../src/guestfs-actions.pod:4071
14351 msgid "guestfs_lvrename"
14356 #: ../src/guestfs-actions.pod:4073
14360 " guestfs_lvrename (guestfs_h *g,\n"
14361 " const char *logvol,\n"
14362 " const char *newlogvol);\n"
14368 #: ../src/guestfs-actions.pod:4078 ../fish/guestfish-actions.pod:2801
14369 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
14374 #: ../src/guestfs-actions.pod:4082 ../src/guestfs-actions.pod:7151
14375 msgid "(Added in 1.0.83)"
14380 #: ../src/guestfs-actions.pod:4084
14381 msgid "guestfs_lvresize"
14386 #: ../src/guestfs-actions.pod:4086
14390 " guestfs_lvresize (guestfs_h *g,\n"
14391 " const char *device,\n"
14398 #: ../src/guestfs-actions.pod:4091 ../fish/guestfish-actions.pod:2807
14400 "This resizes (expands or shrinks) an existing LVM logical volume to "
14401 "C<mbytes>. When reducing, data in the reduced part is lost."
14406 #: ../src/guestfs-actions.pod:4099
14407 msgid "guestfs_lvresize_free"
14412 #: ../src/guestfs-actions.pod:4101
14416 " guestfs_lvresize_free (guestfs_h *g,\n"
14417 " const char *lv,\n"
14424 #: ../src/guestfs-actions.pod:4106 ../fish/guestfish-actions.pod:2815
14426 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
14427 "remaining free space in the volume group. Commonly you would call this with "
14428 "pc = 100 which expands the logical volume as much as possible, using all "
14429 "remaining free space in the volume group."
14434 #: ../src/guestfs-actions.pod:4114
14435 msgid "(Added in 1.3.3)"
14440 #: ../src/guestfs-actions.pod:4116
14441 msgid "guestfs_lvs"
14446 #: ../src/guestfs-actions.pod:4118
14450 " guestfs_lvs (guestfs_h *g);\n"
14456 #: ../src/guestfs-actions.pod:4121 ../fish/guestfish-actions.pod:2825
14458 "List all the logical volumes detected. This is the equivalent of the L<lvs"
14464 #: ../src/guestfs-actions.pod:4124 ../fish/guestfish-actions.pod:2828
14466 "This returns a list of the logical volume device names (eg. C</dev/"
14467 "VolGroup00/LogVol00>)."
14472 #: ../src/guestfs-actions.pod:4127
14473 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
14478 #: ../src/guestfs-actions.pod:4135
14479 msgid "guestfs_lvs_full"
14484 #: ../src/guestfs-actions.pod:4137
14487 " struct guestfs_lvm_lv_list *\n"
14488 " guestfs_lvs_full (guestfs_h *g);\n"
14494 #: ../src/guestfs-actions.pod:4140 ../fish/guestfish-actions.pod:2837
14496 "List all the logical volumes detected. This is the equivalent of the L<lvs"
14497 "(8)> command. The \"full\" version includes all fields."
14502 #: ../src/guestfs-actions.pod:4143
14504 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
14505 "was an error. I<The caller must call C<guestfs_free_lvm_lv_list> after use>."
14510 #: ../src/guestfs-actions.pod:4149
14511 msgid "guestfs_lvuuid"
14516 #: ../src/guestfs-actions.pod:4151
14520 " guestfs_lvuuid (guestfs_h *g,\n"
14521 " const char *device);\n"
14527 #: ../src/guestfs-actions.pod:4155 ../fish/guestfish-actions.pod:2844
14528 msgid "This command returns the UUID of the LVM LV C<device>."
14533 #: ../src/guestfs-actions.pod:4162
14534 msgid "guestfs_lxattrlist"
14539 #: ../src/guestfs-actions.pod:4164
14542 " struct guestfs_xattr_list *\n"
14543 " guestfs_lxattrlist (guestfs_h *g,\n"
14544 " const char *path,\n"
14545 " char *const *names);\n"
14551 #: ../src/guestfs-actions.pod:4169 ../fish/guestfish-actions.pod:2850
14553 "This call allows you to get the extended attributes of multiple files, where "
14554 "all files are in the directory C<path>. C<names> is the list of files from "
14560 #: ../src/guestfs-actions.pod:4173 ../fish/guestfish-actions.pod:2854
14562 "On return you get a flat list of xattr structs which must be interpreted "
14563 "sequentially. The first xattr struct always has a zero-length C<attrname>. "
14564 "C<attrval> in this struct is zero-length to indicate there was an error "
14565 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
14566 "number (the number of following attributes for this file, which could be C<"
14567 "\"0\">). Then after the first xattr struct are the zero or more attributes "
14568 "for the first named file. This repeats for the second and subsequent files."
14573 #: ../src/guestfs-actions.pod:4183
14575 "This call is intended for programs that want to efficiently list a directory "
14576 "contents without making many round-trips. See also C<guestfs_lstatlist> for "
14577 "a similarly efficient call for getting standard stats. Very long directory "
14578 "listings might cause the protocol message size to be exceeded, causing this "
14579 "call to fail. The caller must split up such requests into smaller groups of "
14585 #: ../src/guestfs-actions.pod:4197
14586 msgid "guestfs_mkdir"
14591 #: ../src/guestfs-actions.pod:4199
14595 " guestfs_mkdir (guestfs_h *g,\n"
14596 " const char *path);\n"
14602 #: ../src/guestfs-actions.pod:4203 ../fish/guestfish-actions.pod:2876
14603 msgid "Create a directory named C<path>."
14608 #: ../src/guestfs-actions.pod:4209
14609 msgid "guestfs_mkdir_mode"
14614 #: ../src/guestfs-actions.pod:4211
14618 " guestfs_mkdir_mode (guestfs_h *g,\n"
14619 " const char *path,\n"
14626 #: ../src/guestfs-actions.pod:4216 ../fish/guestfish-actions.pod:2882
14628 "This command creates a directory, setting the initial permissions of the "
14629 "directory to C<mode>."
14634 #: ../src/guestfs-actions.pod:4219 ../fish/guestfish-actions.pod:2885
14636 "For common Linux filesystems, the actual mode which is set will be C<mode & "
14637 "~umask & 01777>. Non-native-Linux filesystems may interpret the mode in "
14643 #: ../src/guestfs-actions.pod:4223
14644 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
14649 #: ../src/guestfs-actions.pod:4229
14650 msgid "guestfs_mkdir_p"
14655 #: ../src/guestfs-actions.pod:4231
14659 " guestfs_mkdir_p (guestfs_h *g,\n"
14660 " const char *path);\n"
14666 #: ../src/guestfs-actions.pod:4235 ../fish/guestfish-actions.pod:2895
14668 "Create a directory named C<path>, creating any parent directories as "
14669 "necessary. This is like the C<mkdir -p> shell command."
14674 #: ../src/guestfs-actions.pod:4242
14675 msgid "guestfs_mkdtemp"
14680 #: ../src/guestfs-actions.pod:4244
14684 " guestfs_mkdtemp (guestfs_h *g,\n"
14685 " const char *template);\n"
14691 #: ../src/guestfs-actions.pod:4248 ../fish/guestfish-actions.pod:2902
14693 "This command creates a temporary directory. The C<template> parameter "
14694 "should be a full pathname for the temporary directory name with the final "
14695 "six characters being \"XXXXXX\"."
14700 #: ../src/guestfs-actions.pod:4253 ../fish/guestfish-actions.pod:2907
14702 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
14703 "being suitable for Windows filesystems."
14708 #: ../src/guestfs-actions.pod:4256 ../fish/guestfish-actions.pod:2910
14709 msgid "The name of the temporary directory that was created is returned."
14714 #: ../src/guestfs-actions.pod:4259 ../fish/guestfish-actions.pod:2913
14715 msgid "The temporary directory is created with mode 0700 and is owned by root."
14720 #: ../src/guestfs-actions.pod:4262 ../fish/guestfish-actions.pod:2916
14722 "The caller is responsible for deleting the temporary directory and its "
14723 "contents after use."
14728 #: ../src/guestfs-actions.pod:4265 ../fish/guestfish-actions.pod:2919
14729 msgid "See also: L<mkdtemp(3)>"
14734 #: ../src/guestfs-actions.pod:4272
14735 msgid "guestfs_mke2fs_J"
14740 #: ../src/guestfs-actions.pod:4274
14744 " guestfs_mke2fs_J (guestfs_h *g,\n"
14745 " const char *fstype,\n"
14746 " int blocksize,\n"
14747 " const char *device,\n"
14748 " const char *journal);\n"
14754 #: ../src/guestfs-actions.pod:4281 ../fish/guestfish-actions.pod:2925
14756 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14757 "C<journal>. It is equivalent to the command:"
14762 #: ../src/guestfs-actions.pod:4285 ../fish/guestfish-actions.pod:2929
14765 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
14771 #: ../src/guestfs-actions.pod:4287
14772 msgid "See also C<guestfs_mke2journal>."
14777 #: ../src/guestfs-actions.pod:4291 ../src/guestfs-actions.pod:4309
14778 #: ../src/guestfs-actions.pod:4327 ../src/guestfs-actions.pod:4343
14779 #: ../src/guestfs-actions.pod:4357 ../src/guestfs-actions.pod:4371
14780 #: ../src/guestfs-actions.pod:4430 ../src/guestfs-actions.pod:4695
14781 msgid "(Added in 1.0.68)"
14786 #: ../src/guestfs-actions.pod:4293
14787 msgid "guestfs_mke2fs_JL"
14792 #: ../src/guestfs-actions.pod:4295
14796 " guestfs_mke2fs_JL (guestfs_h *g,\n"
14797 " const char *fstype,\n"
14798 " int blocksize,\n"
14799 " const char *device,\n"
14800 " const char *label);\n"
14806 #: ../src/guestfs-actions.pod:4302 ../fish/guestfish-actions.pod:2937
14808 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14809 "the journal labeled C<label>."
14814 #: ../src/guestfs-actions.pod:4305
14815 msgid "See also C<guestfs_mke2journal_L>."
14820 #: ../src/guestfs-actions.pod:4311
14821 msgid "guestfs_mke2fs_JU"
14826 #: ../src/guestfs-actions.pod:4313
14830 " guestfs_mke2fs_JU (guestfs_h *g,\n"
14831 " const char *fstype,\n"
14832 " int blocksize,\n"
14833 " const char *device,\n"
14834 " const char *uuid);\n"
14840 #: ../src/guestfs-actions.pod:4320 ../fish/guestfish-actions.pod:2946
14842 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14843 "the journal with UUID C<uuid>."
14848 #: ../src/guestfs-actions.pod:4323
14849 msgid "See also C<guestfs_mke2journal_U>."
14854 #: ../src/guestfs-actions.pod:4329
14855 msgid "guestfs_mke2journal"
14860 #: ../src/guestfs-actions.pod:4331
14864 " guestfs_mke2journal (guestfs_h *g,\n"
14865 " int blocksize,\n"
14866 " const char *device);\n"
14872 #: ../src/guestfs-actions.pod:4336 ../fish/guestfish-actions.pod:2955
14874 "This creates an ext2 external journal on C<device>. It is equivalent to the "
14880 #: ../src/guestfs-actions.pod:4339 ../fish/guestfish-actions.pod:2958
14883 " mke2fs -O journal_dev -b blocksize device\n"
14889 #: ../src/guestfs-actions.pod:4345
14890 msgid "guestfs_mke2journal_L"
14895 #: ../src/guestfs-actions.pod:4347
14899 " guestfs_mke2journal_L (guestfs_h *g,\n"
14900 " int blocksize,\n"
14901 " const char *label,\n"
14902 " const char *device);\n"
14908 #: ../src/guestfs-actions.pod:4353 ../fish/guestfish-actions.pod:2964
14909 msgid "This creates an ext2 external journal on C<device> with label C<label>."
14914 #: ../src/guestfs-actions.pod:4359
14915 msgid "guestfs_mke2journal_U"
14920 #: ../src/guestfs-actions.pod:4361
14924 " guestfs_mke2journal_U (guestfs_h *g,\n"
14925 " int blocksize,\n"
14926 " const char *uuid,\n"
14927 " const char *device);\n"
14933 #: ../src/guestfs-actions.pod:4367 ../fish/guestfish-actions.pod:2970
14934 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
14939 #: ../src/guestfs-actions.pod:4373
14940 msgid "guestfs_mkfifo"
14945 #: ../src/guestfs-actions.pod:4375
14949 " guestfs_mkfifo (guestfs_h *g,\n"
14951 " const char *path);\n"
14957 #: ../src/guestfs-actions.pod:4380
14959 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>. It "
14960 "is just a convenient wrapper around C<guestfs_mknod>."
14965 #: ../src/guestfs-actions.pod:4390
14966 msgid "guestfs_mkfs"
14971 #: ../src/guestfs-actions.pod:4392
14975 " guestfs_mkfs (guestfs_h *g,\n"
14976 " const char *fstype,\n"
14977 " const char *device);\n"
14983 #: ../src/guestfs-actions.pod:4397 ../fish/guestfish-actions.pod:2986
14985 "This creates a filesystem on C<device> (usually a partition or LVM logical "
14986 "volume). The filesystem type is C<fstype>, for example C<ext3>."
14991 #: ../src/guestfs-actions.pod:4405
14992 msgid "guestfs_mkfs_b"
14997 #: ../src/guestfs-actions.pod:4407
15001 " guestfs_mkfs_b (guestfs_h *g,\n"
15002 " const char *fstype,\n"
15003 " int blocksize,\n"
15004 " const char *device);\n"
15010 #: ../src/guestfs-actions.pod:4413
15012 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
15013 "block size of the resulting filesystem. Supported block sizes depend on the "
15014 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
15019 #: ../src/guestfs-actions.pod:4418 ../src/guestfs-actions.pod:4461
15020 #: ../fish/guestfish-actions.pod:2999 ../fish/guestfish-actions.pod:3026
15022 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
15028 #: ../src/guestfs-actions.pod:4423 ../fish/guestfish-actions.pod:3002
15030 "This function is deprecated. In new code, use the C<mkfs_opts> call instead."
15035 #: ../src/guestfs-actions.pod:4432
15036 msgid "guestfs_mkfs_opts"
15041 #: ../src/guestfs-actions.pod:4434
15045 " guestfs_mkfs_opts (guestfs_h *g,\n"
15046 " const char *fstype,\n"
15047 " const char *device,\n"
15053 #: ../src/guestfs-actions.pod:4445
15056 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
15057 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
15063 #: ../src/guestfs-actions.pod:4448 ../fish/guestfish-actions.pod:3013
15065 "This function creates a filesystem on C<device>. The filesystem type is "
15066 "C<fstype>, for example C<ext3>."
15071 #: ../src/guestfs-actions.pod:4455 ../fish/guestfish-actions.pod:3020
15072 msgid "C<blocksize>"
15077 #: ../src/guestfs-actions.pod:4457 ../fish/guestfish-actions.pod:3022
15079 "The filesystem block size. Supported block sizes depend on the filesystem "
15080 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
15085 #: ../src/guestfs-actions.pod:4464 ../fish/guestfish-actions.pod:3029
15086 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
15090 #: ../src/guestfs-actions.pod:4466 ../fish/guestfish-actions.pod:3031
15091 msgid "C<features>"
15095 #: ../src/guestfs-actions.pod:4468 ../fish/guestfish-actions.pod:3033
15096 msgid "This passes the I<-O> parameter to the external mkfs program."
15100 #: ../src/guestfs-actions.pod:4470 ../fish/guestfish-actions.pod:3035
15102 "For certain filesystem types, this allows extra filesystem features to be "
15103 "selected. See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
15107 #: ../src/guestfs-actions.pod:4474 ../fish/guestfish-actions.pod:3039
15109 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
15114 #: ../src/guestfs-actions.pod:4481
15115 msgid "(Added in 1.7.19)"
15120 #: ../src/guestfs-actions.pod:4483
15121 msgid "guestfs_mkfs_opts_va"
15126 #: ../src/guestfs-actions.pod:4485
15130 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
15131 " const char *fstype,\n"
15132 " const char *device,\n"
15133 " va_list args);\n"
15139 #: ../src/guestfs-actions.pod:4491
15140 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
15145 #: ../src/guestfs-actions.pod:4495
15146 msgid "guestfs_mkfs_opts_argv"
15151 #: ../src/guestfs-actions.pod:4497
15155 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
15156 " const char *fstype,\n"
15157 " const char *device,\n"
15158 " const struct guestfs_mkfs_opts_argv *optargs);\n"
15164 #: ../src/guestfs-actions.pod:4503
15165 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
15170 #: ../src/guestfs-actions.pod:4507
15171 msgid "guestfs_mkmountpoint"
15176 #: ../src/guestfs-actions.pod:4509
15180 " guestfs_mkmountpoint (guestfs_h *g,\n"
15181 " const char *exemptpath);\n"
15187 #: ../src/guestfs-actions.pod:4513
15189 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
15190 "that can be used to create extra mountpoints before mounting the first "
15196 #: ../src/guestfs-actions.pod:4517 ../fish/guestfish-actions.pod:3054
15198 "These calls are I<only> necessary in some very limited circumstances, mainly "
15199 "the case where you want to mount a mix of unrelated and/or read-only "
15200 "filesystems together."
15205 #: ../src/guestfs-actions.pod:4521 ../fish/guestfish-actions.pod:3058
15207 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
15208 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
15209 "inside that. You can unpack this as follows in guestfish:"
15214 #: ../src/guestfs-actions.pod:4526 ../fish/guestfish-actions.pod:3063
15217 " add-ro Fedora-11-i686-Live.iso\n"
15219 " mkmountpoint /cd\n"
15220 " mkmountpoint /sqsh\n"
15221 " mkmountpoint /ext3fs\n"
15222 " mount /dev/sda /cd\n"
15223 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
15224 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
15230 #: ../src/guestfs-actions.pod:4535 ../fish/guestfish-actions.pod:3072
15231 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
15236 #: ../src/guestfs-actions.pod:4537
15238 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>. You "
15239 "may get unexpected errors if you try to mix these calls. It is safest to "
15240 "manually unmount filesystems and remove mountpoints after use."
15245 #: ../src/guestfs-actions.pod:4541
15247 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
15248 "first, so for this to work for manual mountpoints, you must ensure that the "
15249 "innermost mountpoints have the longest pathnames, as in the example code "
15255 #: ../src/guestfs-actions.pod:4546 ../fish/guestfish-actions.pod:3083
15257 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
15261 #: ../src/guestfs-actions.pod:4548
15263 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
15264 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
15265 "can also trigger these issues."
15270 #: ../src/guestfs-actions.pod:4554 ../src/guestfs-actions.pod:4820
15271 #: ../src/guestfs-actions.pod:5739
15272 msgid "(Added in 1.0.62)"
15277 #: ../src/guestfs-actions.pod:4556
15278 msgid "guestfs_mknod"
15283 #: ../src/guestfs-actions.pod:4558
15287 " guestfs_mknod (guestfs_h *g,\n"
15291 " const char *path);\n"
15297 #: ../src/guestfs-actions.pod:4565 ../fish/guestfish-actions.pod:3093
15299 "This call creates block or character special devices, or named pipes (FIFOs)."
15304 #: ../src/guestfs-actions.pod:4568 ../fish/guestfish-actions.pod:3096
15306 "The C<mode> parameter should be the mode, using the standard constants. "
15307 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
15308 "used when creating block and character special devices."
15313 #: ../src/guestfs-actions.pod:4573
15315 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
15316 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
15317 "regular file). These constants are available in the standard Linux header "
15318 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
15319 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
15320 "the appropriate constant for you."
15325 #: ../src/guestfs-actions.pod:4587
15326 msgid "guestfs_mknod_b"
15331 #: ../src/guestfs-actions.pod:4589
15335 " guestfs_mknod_b (guestfs_h *g,\n"
15339 " const char *path);\n"
15345 #: ../src/guestfs-actions.pod:4596
15347 "This call creates a block device node called C<path> with mode C<mode> and "
15348 "device major/minor C<devmajor> and C<devminor>. It is just a convenient "
15349 "wrapper around C<guestfs_mknod>."
15354 #: ../src/guestfs-actions.pod:4606
15355 msgid "guestfs_mknod_c"
15360 #: ../src/guestfs-actions.pod:4608
15364 " guestfs_mknod_c (guestfs_h *g,\n"
15368 " const char *path);\n"
15374 #: ../src/guestfs-actions.pod:4615
15376 "This call creates a char device node called C<path> with mode C<mode> and "
15377 "device major/minor C<devmajor> and C<devminor>. It is just a convenient "
15378 "wrapper around C<guestfs_mknod>."
15383 #: ../src/guestfs-actions.pod:4625
15384 msgid "guestfs_mkswap"
15389 #: ../src/guestfs-actions.pod:4627
15393 " guestfs_mkswap (guestfs_h *g,\n"
15394 " const char *device);\n"
15400 #: ../src/guestfs-actions.pod:4631 ../fish/guestfish-actions.pod:3135
15401 msgid "Create a swap partition on C<device>."
15406 #: ../src/guestfs-actions.pod:4637
15407 msgid "guestfs_mkswap_L"
15412 #: ../src/guestfs-actions.pod:4639
15416 " guestfs_mkswap_L (guestfs_h *g,\n"
15417 " const char *label,\n"
15418 " const char *device);\n"
15424 #: ../src/guestfs-actions.pod:4644 ../fish/guestfish-actions.pod:3141
15425 msgid "Create a swap partition on C<device> with label C<label>."
15430 #: ../src/guestfs-actions.pod:4646 ../fish/guestfish-actions.pod:3143
15432 "Note that you cannot attach a swap label to a block device (eg. C</dev/"
15433 "sda>), just to a partition. This appears to be a limitation of the kernel "
15439 #: ../src/guestfs-actions.pod:4654
15440 msgid "guestfs_mkswap_U"
15445 #: ../src/guestfs-actions.pod:4656
15449 " guestfs_mkswap_U (guestfs_h *g,\n"
15450 " const char *uuid,\n"
15451 " const char *device);\n"
15457 #: ../src/guestfs-actions.pod:4661 ../fish/guestfish-actions.pod:3151
15458 msgid "Create a swap partition on C<device> with UUID C<uuid>."
15463 #: ../src/guestfs-actions.pod:4667
15464 msgid "guestfs_mkswap_file"
15469 #: ../src/guestfs-actions.pod:4669
15473 " guestfs_mkswap_file (guestfs_h *g,\n"
15474 " const char *path);\n"
15480 #: ../src/guestfs-actions.pod:4673 ../fish/guestfish-actions.pod:3157
15481 msgid "Create a swap file."
15486 #: ../src/guestfs-actions.pod:4675
15488 "This command just writes a swap file signature to an existing file. To "
15489 "create the file itself, use something like C<guestfs_fallocate>."
15494 #: ../src/guestfs-actions.pod:4682
15495 msgid "guestfs_modprobe"
15500 #: ../src/guestfs-actions.pod:4684
15504 " guestfs_modprobe (guestfs_h *g,\n"
15505 " const char *modulename);\n"
15511 #: ../src/guestfs-actions.pod:4688 ../fish/guestfish-actions.pod:3166
15512 msgid "This loads a kernel module in the appliance."
15517 #: ../src/guestfs-actions.pod:4690 ../fish/guestfish-actions.pod:3168
15519 "The kernel module must have been whitelisted when libguestfs was built (see "
15520 "C<appliance/kmod.whitelist.in> in the source)."
15525 #: ../src/guestfs-actions.pod:4697
15526 msgid "guestfs_mount"
15531 #: ../src/guestfs-actions.pod:4699
15535 " guestfs_mount (guestfs_h *g,\n"
15536 " const char *device,\n"
15537 " const char *mountpoint);\n"
15543 #: ../src/guestfs-actions.pod:4704 ../fish/guestfish-actions.pod:3175
15545 "Mount a guest disk at a position in the filesystem. Block devices are named "
15546 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest. If "
15547 "those block devices contain partitions, they will have the usual names (eg. "
15548 "C</dev/sda1>). Also LVM C</dev/VG/LV>-style names can be used."
15553 #: ../src/guestfs-actions.pod:4710 ../fish/guestfish-actions.pod:3181
15555 "The rules are the same as for L<mount(2)>: A filesystem must first be "
15556 "mounted on C</> before others can be mounted. Other filesystems can only be "
15557 "mounted on directories which already exist."
15562 #: ../src/guestfs-actions.pod:4715 ../fish/guestfish-actions.pod:3186
15564 "The mounted filesystem is writable, if we have sufficient permissions on the "
15565 "underlying device."
15570 #: ../src/guestfs-actions.pod:4718
15572 "B<Important note:> When you use this call, the filesystem options C<sync> "
15573 "and C<noatime> are set implicitly. This was originally done because we "
15574 "thought it would improve reliability, but it turns out that I<-o sync> has a "
15575 "very large negative performance impact and negligible effect on "
15576 "reliability. Therefore we recommend that you avoid using C<guestfs_mount> "
15577 "in any code that needs performance, and instead use C<guestfs_mount_options> "
15578 "(use an empty string for the first parameter if you don't want any options)."
15582 #: ../src/guestfs-actions.pod:4730 ../fish/guestfish-actions.pod:3199
15584 "This function is deprecated. In new code, use the C<mount_options> call "
15590 #: ../src/guestfs-actions.pod:4739
15591 msgid "guestfs_mount_loop"
15596 #: ../src/guestfs-actions.pod:4741
15600 " guestfs_mount_loop (guestfs_h *g,\n"
15601 " const char *file,\n"
15602 " const char *mountpoint);\n"
15608 #: ../src/guestfs-actions.pod:4746 ../fish/guestfish-actions.pod:3210
15610 "This command lets you mount C<file> (a filesystem image in a file) on a "
15611 "mount point. It is entirely equivalent to the command C<mount -o loop file "
15617 #: ../src/guestfs-actions.pod:4754
15618 msgid "guestfs_mount_options"
15623 #: ../src/guestfs-actions.pod:4756
15627 " guestfs_mount_options (guestfs_h *g,\n"
15628 " const char *options,\n"
15629 " const char *device,\n"
15630 " const char *mountpoint);\n"
15636 #: ../src/guestfs-actions.pod:4762
15638 "This is the same as the C<guestfs_mount> command, but it allows you to set "
15639 "the mount options as for the L<mount(8)> I<-o> flag."
15644 #: ../src/guestfs-actions.pod:4766 ../fish/guestfish-actions.pod:3222
15646 "If the C<options> parameter is an empty string, then no options are passed "
15647 "(all options default to whatever the filesystem uses)."
15652 #: ../src/guestfs-actions.pod:4772 ../src/guestfs-actions.pod:4786
15653 #: ../src/guestfs-actions.pod:4803
15654 msgid "(Added in 1.0.10)"
15659 #: ../src/guestfs-actions.pod:4774
15660 msgid "guestfs_mount_ro"
15665 #: ../src/guestfs-actions.pod:4776
15669 " guestfs_mount_ro (guestfs_h *g,\n"
15670 " const char *device,\n"
15671 " const char *mountpoint);\n"
15677 #: ../src/guestfs-actions.pod:4781
15679 "This is the same as the C<guestfs_mount> command, but it mounts the "
15680 "filesystem with the read-only (I<-o ro>) flag."
15685 #: ../src/guestfs-actions.pod:4788
15686 msgid "guestfs_mount_vfs"
15691 #: ../src/guestfs-actions.pod:4790
15695 " guestfs_mount_vfs (guestfs_h *g,\n"
15696 " const char *options,\n"
15697 " const char *vfstype,\n"
15698 " const char *device,\n"
15699 " const char *mountpoint);\n"
15705 #: ../src/guestfs-actions.pod:4797
15707 "This is the same as the C<guestfs_mount> command, but it allows you to set "
15708 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
15714 #: ../src/guestfs-actions.pod:4805
15715 msgid "guestfs_mountpoints"
15720 #: ../src/guestfs-actions.pod:4807
15724 " guestfs_mountpoints (guestfs_h *g);\n"
15730 #: ../src/guestfs-actions.pod:4810
15732 "This call is similar to C<guestfs_mounts>. That call returns a list of "
15733 "devices. This one returns a hash table (map) of device name to directory "
15734 "where the device is mounted."
15739 #: ../src/guestfs-actions.pod:4822
15740 msgid "guestfs_mounts"
15745 #: ../src/guestfs-actions.pod:4824
15749 " guestfs_mounts (guestfs_h *g);\n"
15755 #: ../src/guestfs-actions.pod:4827 ../fish/guestfish-actions.pod:3253
15757 "This returns the list of currently mounted filesystems. It returns the list "
15758 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
15763 #: ../src/guestfs-actions.pod:4830 ../fish/guestfish-actions.pod:3256
15764 msgid "Some internal mounts are not shown."
15769 #: ../src/guestfs-actions.pod:4832
15770 msgid "See also: C<guestfs_mountpoints>"
15775 #: ../src/guestfs-actions.pod:4840
15781 #: ../src/guestfs-actions.pod:4842
15785 " guestfs_mv (guestfs_h *g,\n"
15786 " const char *src,\n"
15787 " const char *dest);\n"
15793 #: ../src/guestfs-actions.pod:4847 ../fish/guestfish-actions.pod:3264
15795 "This moves a file from C<src> to C<dest> where C<dest> is either a "
15796 "destination filename or destination directory."
15801 #: ../src/guestfs-actions.pod:4854
15802 msgid "guestfs_ntfs_3g_probe"
15807 #: ../src/guestfs-actions.pod:4856
15811 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
15813 " const char *device);\n"
15819 #: ../src/guestfs-actions.pod:4861 ../fish/guestfish-actions.pod:3271
15821 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
15822 "C<device> for mountability. (Not all NTFS volumes can be mounted read-"
15823 "write, and some cannot be mounted at all)."
15828 #: ../src/guestfs-actions.pod:4865 ../fish/guestfish-actions.pod:3275
15830 "C<rw> is a boolean flag. Set it to true if you want to test if the volume "
15831 "can be mounted read-write. Set it to false if you want to test if the "
15832 "volume can be mounted read-only."
15837 #: ../src/guestfs-actions.pod:4869 ../fish/guestfish-actions.pod:3279
15839 "The return value is an integer which C<0> if the operation would succeed, or "
15840 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
15845 #: ../src/guestfs-actions.pod:4875
15846 msgid "(Added in 1.0.43)"
15851 #: ../src/guestfs-actions.pod:4877
15852 msgid "guestfs_ntfsresize"
15857 #: ../src/guestfs-actions.pod:4879
15861 " guestfs_ntfsresize (guestfs_h *g,\n"
15862 " const char *device);\n"
15867 #: ../src/guestfs-actions.pod:4883 ../fish/guestfish-actions.pod:3287
15869 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
15870 "size of the underlying device."
15874 #: ../src/guestfs-actions.pod:4886 ../fish/guestfish-actions.pod:3290
15876 "I<Note:> After the resize operation, the filesystem is marked as requiring a "
15877 "consistency check (for safety). You have to boot into Windows to perform "
15878 "this check and clear this condition. Furthermore, ntfsresize refuses to "
15879 "resize filesystems which have been marked in this way. So in effect it is "
15880 "not possible to call ntfsresize multiple times on a single filesystem "
15881 "without booting into Windows between each resize."
15885 #: ../src/guestfs-actions.pod:4894 ../fish/guestfish-actions.pod:3298
15886 msgid "See also L<ntfsresize(8)>."
15891 #: ../src/guestfs-actions.pod:4900
15892 msgid "guestfs_ntfsresize_size"
15897 #: ../src/guestfs-actions.pod:4902
15901 " guestfs_ntfsresize_size (guestfs_h *g,\n"
15902 " const char *device,\n"
15903 " int64_t size);\n"
15909 #: ../src/guestfs-actions.pod:4907
15911 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
15912 "to specify the new size (in bytes) explicitly."
15917 #: ../src/guestfs-actions.pod:4912 ../src/guestfs-actions.pod:5348
15918 #: ../src/guestfs-actions.pod:5421 ../src/guestfs-actions.pod:5687
15919 #: ../src/guestfs-actions.pod:7293
15920 msgid "(Added in 1.3.14)"
15925 #: ../src/guestfs-actions.pod:4914
15926 msgid "guestfs_part_add"
15931 #: ../src/guestfs-actions.pod:4916
15935 " guestfs_part_add (guestfs_h *g,\n"
15936 " const char *device,\n"
15937 " const char *prlogex,\n"
15938 " int64_t startsect,\n"
15939 " int64_t endsect);\n"
15945 #: ../src/guestfs-actions.pod:4923
15947 "This command adds a partition to C<device>. If there is no partition table "
15948 "on the device, call C<guestfs_part_init> first."
15953 #: ../src/guestfs-actions.pod:4926 ../fish/guestfish-actions.pod:3314
15955 "The C<prlogex> parameter is the type of partition. Normally you should pass "
15956 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
15957 "C<logical>) and C<e> (or C<extended>) partition types."
15962 #: ../src/guestfs-actions.pod:4931 ../fish/guestfish-actions.pod:3319
15964 "C<startsect> and C<endsect> are the start and end of the partition in "
15965 "I<sectors>. C<endsect> may be negative, which means it counts backwards "
15966 "from the end of the disk (C<-1> is the last sector)."
15971 #: ../src/guestfs-actions.pod:4935
15973 "Creating a partition which covers the whole disk is not so easy. Use "
15974 "C<guestfs_part_disk> to do that."
15979 #: ../src/guestfs-actions.pod:4940 ../src/guestfs-actions.pod:4978
15980 #: ../src/guestfs-actions.pod:5031 ../src/guestfs-actions.pod:5109
15981 #: ../src/guestfs-actions.pod:5147 ../src/guestfs-actions.pod:5166
15982 #: ../src/guestfs-actions.pod:5206
15983 msgid "(Added in 1.0.78)"
15988 #: ../src/guestfs-actions.pod:4942
15989 msgid "guestfs_part_del"
15994 #: ../src/guestfs-actions.pod:4944
15998 " guestfs_part_del (guestfs_h *g,\n"
15999 " const char *device,\n"
16006 #: ../src/guestfs-actions.pod:4949 ../fish/guestfish-actions.pod:3330
16007 msgid "This command deletes the partition numbered C<partnum> on C<device>."
16012 #: ../src/guestfs-actions.pod:4951 ../fish/guestfish-actions.pod:3332
16014 "Note that in the case of MBR partitioning, deleting an extended partition "
16015 "also deletes any logical partitions it contains."
16020 #: ../src/guestfs-actions.pod:4959
16021 msgid "guestfs_part_disk"
16026 #: ../src/guestfs-actions.pod:4961
16030 " guestfs_part_disk (guestfs_h *g,\n"
16031 " const char *device,\n"
16032 " const char *parttype);\n"
16038 #: ../src/guestfs-actions.pod:4966
16040 "This command is simply a combination of C<guestfs_part_init> followed by "
16041 "C<guestfs_part_add> to create a single primary partition covering the whole "
16047 #: ../src/guestfs-actions.pod:4970
16049 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
16050 "possible values are described in C<guestfs_part_init>."
16055 #: ../src/guestfs-actions.pod:4980
16056 msgid "guestfs_part_get_bootable"
16061 #: ../src/guestfs-actions.pod:4982
16065 " guestfs_part_get_bootable (guestfs_h *g,\n"
16066 " const char *device,\n"
16073 #: ../src/guestfs-actions.pod:4987 ../fish/guestfish-actions.pod:3354
16075 "This command returns true if the partition C<partnum> on C<device> has the "
16076 "bootable flag set."
16081 #: ../src/guestfs-actions.pod:4990
16082 msgid "See also C<guestfs_part_set_bootable>."
16087 #: ../src/guestfs-actions.pod:4996
16088 msgid "guestfs_part_get_mbr_id"
16093 #: ../src/guestfs-actions.pod:4998
16097 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
16098 " const char *device,\n"
16105 #: ../src/guestfs-actions.pod:5003 ../fish/guestfish-actions.pod:3363
16107 "Returns the MBR type byte (also known as the ID byte) from the numbered "
16108 "partition C<partnum>."
16113 #: ../src/guestfs-actions.pod:5006 ../src/guestfs-actions.pod:5182
16115 "Note that only MBR (old DOS-style) partitions have type bytes. You will get "
16116 "undefined results for other partition table types (see "
16117 "C<guestfs_part_get_parttype>)."
16122 #: ../src/guestfs-actions.pod:5014
16123 msgid "guestfs_part_get_parttype"
16128 #: ../src/guestfs-actions.pod:5016
16132 " guestfs_part_get_parttype (guestfs_h *g,\n"
16133 " const char *device);\n"
16139 #: ../src/guestfs-actions.pod:5020 ../fish/guestfish-actions.pod:3374
16141 "This command examines the partition table on C<device> and returns the "
16142 "partition table type (format) being used."
16147 #: ../src/guestfs-actions.pod:5023
16149 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
16150 "table), C<gpt> (a GPT/EFI-style partition table). Other values are "
16151 "possible, although unusual. See C<guestfs_part_init> for a full list."
16156 #: ../src/guestfs-actions.pod:5033
16157 msgid "guestfs_part_init"
16162 #: ../src/guestfs-actions.pod:5035
16166 " guestfs_part_init (guestfs_h *g,\n"
16167 " const char *device,\n"
16168 " const char *parttype);\n"
16174 #: ../src/guestfs-actions.pod:5040 ../fish/guestfish-actions.pod:3386
16176 "This creates an empty partition table on C<device> of one of the partition "
16177 "types listed below. Usually C<parttype> should be either C<msdos> or C<gpt> "
16178 "(for large disks)."
16183 #: ../src/guestfs-actions.pod:5044
16185 "Initially there are no partitions. Following this, you should call "
16186 "C<guestfs_part_add> for each partition required."
16191 #: ../src/guestfs-actions.pod:5047 ../fish/guestfish-actions.pod:3393
16192 msgid "Possible values for C<parttype> are:"
16197 #: ../src/guestfs-actions.pod:5051 ../fish/guestfish-actions.pod:3397
16198 msgid "B<efi> | B<gpt>"
16203 #: ../src/guestfs-actions.pod:5053 ../fish/guestfish-actions.pod:3399
16204 msgid "Intel EFI / GPT partition table."
16209 #: ../src/guestfs-actions.pod:5055 ../fish/guestfish-actions.pod:3401
16211 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
16212 "and Intel-based Mac OS X. It also has limited backwards compatibility with "
16213 "the C<mbr> format."
16218 #: ../src/guestfs-actions.pod:5059 ../fish/guestfish-actions.pod:3405
16219 msgid "B<mbr> | B<msdos>"
16224 #: ../src/guestfs-actions.pod:5061 ../fish/guestfish-actions.pod:3407
16226 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
16227 "Windows. This partition type will B<only> work for device sizes up to 2 "
16228 "TB. For large disks we recommend using C<gpt>."
16233 #: ../src/guestfs-actions.pod:5068 ../fish/guestfish-actions.pod:3414
16235 "Other partition table types that may work but are not supported include:"
16240 #: ../src/guestfs-actions.pod:5073 ../fish/guestfish-actions.pod:3419
16246 #: ../src/guestfs-actions.pod:5075 ../fish/guestfish-actions.pod:3421
16247 msgid "AIX disk labels."
16252 #: ../src/guestfs-actions.pod:5077 ../fish/guestfish-actions.pod:3423
16253 msgid "B<amiga> | B<rdb>"
16258 #: ../src/guestfs-actions.pod:5079 ../fish/guestfish-actions.pod:3425
16259 msgid "Amiga \"Rigid Disk Block\" format."
16264 #: ../src/guestfs-actions.pod:5081 ../fish/guestfish-actions.pod:3427
16270 #: ../src/guestfs-actions.pod:5083 ../fish/guestfish-actions.pod:3429
16271 msgid "BSD disk labels."
16276 #: ../src/guestfs-actions.pod:5085 ../fish/guestfish-actions.pod:3431
16282 #: ../src/guestfs-actions.pod:5087 ../fish/guestfish-actions.pod:3433
16283 msgid "DASD, used on IBM mainframes."
16288 #: ../src/guestfs-actions.pod:5089 ../fish/guestfish-actions.pod:3435
16294 #: ../src/guestfs-actions.pod:5091 ../fish/guestfish-actions.pod:3437
16295 msgid "MIPS/SGI volumes."
16300 #: ../src/guestfs-actions.pod:5093 ../fish/guestfish-actions.pod:3439
16306 #: ../src/guestfs-actions.pod:5095 ../fish/guestfish-actions.pod:3441
16307 msgid "Old Mac partition format. Modern Macs use C<gpt>."
16312 #: ../src/guestfs-actions.pod:5097 ../fish/guestfish-actions.pod:3443
16318 #: ../src/guestfs-actions.pod:5099 ../fish/guestfish-actions.pod:3445
16319 msgid "NEC PC-98 format, common in Japan apparently."
16324 #: ../src/guestfs-actions.pod:5101 ../fish/guestfish-actions.pod:3447
16330 #: ../src/guestfs-actions.pod:5103 ../fish/guestfish-actions.pod:3449
16331 msgid "Sun disk labels."
16336 #: ../src/guestfs-actions.pod:5111
16337 msgid "guestfs_part_list"
16342 #: ../src/guestfs-actions.pod:5113
16345 " struct guestfs_partition_list *\n"
16346 " guestfs_part_list (guestfs_h *g,\n"
16347 " const char *device);\n"
16353 #: ../src/guestfs-actions.pod:5117 ../fish/guestfish-actions.pod:3457
16355 "This command parses the partition table on C<device> and returns the list of "
16356 "partitions found."
16361 #: ../src/guestfs-actions.pod:5120 ../fish/guestfish-actions.pod:3460
16362 msgid "The fields in the returned structure are:"
16367 #: ../src/guestfs-actions.pod:5124 ../fish/guestfish-actions.pod:3464
16368 msgid "B<part_num>"
16373 #: ../src/guestfs-actions.pod:5126 ../fish/guestfish-actions.pod:3466
16374 msgid "Partition number, counting from 1."
16379 #: ../src/guestfs-actions.pod:5128 ../fish/guestfish-actions.pod:3468
16380 msgid "B<part_start>"
16385 #: ../src/guestfs-actions.pod:5130
16387 "Start of the partition I<in bytes>. To get sectors you have to divide by "
16388 "the device's sector size, see C<guestfs_blockdev_getss>."
16393 #: ../src/guestfs-actions.pod:5133 ../fish/guestfish-actions.pod:3473
16394 msgid "B<part_end>"
16399 #: ../src/guestfs-actions.pod:5135 ../fish/guestfish-actions.pod:3475
16400 msgid "End of the partition in bytes."
16405 #: ../src/guestfs-actions.pod:5137 ../fish/guestfish-actions.pod:3477
16406 msgid "B<part_size>"
16411 #: ../src/guestfs-actions.pod:5139 ../fish/guestfish-actions.pod:3479
16412 msgid "Size of the partition in bytes."
16417 #: ../src/guestfs-actions.pod:5143
16419 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
16420 "was an error. I<The caller must call C<guestfs_free_partition_list> after "
16426 #: ../src/guestfs-actions.pod:5149
16427 msgid "guestfs_part_set_bootable"
16432 #: ../src/guestfs-actions.pod:5151
16436 " guestfs_part_set_bootable (guestfs_h *g,\n"
16437 " const char *device,\n"
16439 " int bootable);\n"
16445 #: ../src/guestfs-actions.pod:5157 ../fish/guestfish-actions.pod:3487
16447 "This sets the bootable flag on partition numbered C<partnum> on device "
16448 "C<device>. Note that partitions are numbered from 1."
16453 #: ../src/guestfs-actions.pod:5160 ../fish/guestfish-actions.pod:3490
16455 "The bootable flag is used by some operating systems (notably Windows) to "
16456 "determine which partition to boot from. It is by no means universally "
16462 #: ../src/guestfs-actions.pod:5168
16463 msgid "guestfs_part_set_mbr_id"
16468 #: ../src/guestfs-actions.pod:5170
16472 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
16473 " const char *device,\n"
16481 #: ../src/guestfs-actions.pod:5176 ../fish/guestfish-actions.pod:3498
16483 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
16484 "C<partnum> to C<idbyte>. Note that the type bytes quoted in most "
16485 "documentation are in fact hexadecimal numbers, but usually documented "
16486 "without any leading \"0x\" which might be confusing."
16491 #: ../src/guestfs-actions.pod:5190
16492 msgid "guestfs_part_set_name"
16497 #: ../src/guestfs-actions.pod:5192
16501 " guestfs_part_set_name (guestfs_h *g,\n"
16502 " const char *device,\n"
16504 " const char *name);\n"
16510 #: ../src/guestfs-actions.pod:5198 ../fish/guestfish-actions.pod:3512
16512 "This sets the partition name on partition numbered C<partnum> on device "
16513 "C<device>. Note that partitions are numbered from 1."
16518 #: ../src/guestfs-actions.pod:5201 ../fish/guestfish-actions.pod:3515
16520 "The partition name can only be set on certain types of partition table. "
16521 "This works on C<gpt> but not on C<mbr> partitions."
16526 #: ../src/guestfs-actions.pod:5208
16527 msgid "guestfs_part_to_dev"
16532 #: ../src/guestfs-actions.pod:5210
16536 " guestfs_part_to_dev (guestfs_h *g,\n"
16537 " const char *partition);\n"
16543 #: ../src/guestfs-actions.pod:5214 ../fish/guestfish-actions.pod:3522
16545 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
16546 "partition number, returning the device name (eg. \"/dev/sdb\")."
16551 #: ../src/guestfs-actions.pod:5218
16553 "The named partition must exist, for example as a string returned from "
16554 "C<guestfs_list_partitions>."
16559 #: ../src/guestfs-actions.pod:5226
16560 msgid "guestfs_ping_daemon"
16565 #: ../src/guestfs-actions.pod:5228
16569 " guestfs_ping_daemon (guestfs_h *g);\n"
16575 #: ../src/guestfs-actions.pod:5231 ../fish/guestfish-actions.pod:3533
16577 "This is a test probe into the guestfs daemon running inside the qemu "
16578 "subprocess. Calling this function checks that the daemon responds to the "
16579 "ping message, without affecting the daemon or attached block device(s) in "
16585 #: ../src/guestfs-actions.pod:5240
16586 msgid "guestfs_pread"
16591 #: ../src/guestfs-actions.pod:5242
16595 " guestfs_pread (guestfs_h *g,\n"
16596 " const char *path,\n"
16598 " int64_t offset,\n"
16599 " size_t *size_r);\n"
16605 #: ../src/guestfs-actions.pod:5249 ../fish/guestfish-actions.pod:3542
16607 "This command lets you read part of a file. It reads C<count> bytes of the "
16608 "file, starting at C<offset>, from file C<path>."
16613 #: ../src/guestfs-actions.pod:5252 ../src/guestfs-actions.pod:5278
16614 #: ../fish/guestfish-actions.pod:3545 ../fish/guestfish-actions.pod:3560
16616 "This may read fewer bytes than requested. For further details see the "
16617 "L<pread(2)> system call."
16622 #: ../src/guestfs-actions.pod:5255
16623 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
16628 #: ../src/guestfs-actions.pod:5266
16629 msgid "guestfs_pread_device"
16634 #: ../src/guestfs-actions.pod:5268
16638 " guestfs_pread_device (guestfs_h *g,\n"
16639 " const char *device,\n"
16641 " int64_t offset,\n"
16642 " size_t *size_r);\n"
16648 #: ../src/guestfs-actions.pod:5275 ../fish/guestfish-actions.pod:3557
16650 "This command lets you read part of a file. It reads C<count> bytes of "
16651 "C<device>, starting at C<offset>."
16656 #: ../src/guestfs-actions.pod:5281
16657 msgid "See also C<guestfs_pread>."
16662 #: ../src/guestfs-actions.pod:5290
16663 msgid "(Added in 1.5.21)"
16668 #: ../src/guestfs-actions.pod:5292
16669 msgid "guestfs_pvcreate"
16674 #: ../src/guestfs-actions.pod:5294
16678 " guestfs_pvcreate (guestfs_h *g,\n"
16679 " const char *device);\n"
16685 #: ../src/guestfs-actions.pod:5298 ../fish/guestfish-actions.pod:3572
16687 "This creates an LVM physical volume on the named C<device>, where C<device> "
16688 "should usually be a partition name such as C</dev/sda1>."
16693 #: ../src/guestfs-actions.pod:5306
16694 msgid "guestfs_pvremove"
16699 #: ../src/guestfs-actions.pod:5308
16703 " guestfs_pvremove (guestfs_h *g,\n"
16704 " const char *device);\n"
16710 #: ../src/guestfs-actions.pod:5312 ../fish/guestfish-actions.pod:3580
16712 "This wipes a physical volume C<device> so that LVM will no longer recognise "
16718 #: ../src/guestfs-actions.pod:5315 ../fish/guestfish-actions.pod:3583
16720 "The implementation uses the C<pvremove> command which refuses to wipe "
16721 "physical volumes that contain any volume groups, so you have to remove those "
16727 #: ../src/guestfs-actions.pod:5323
16728 msgid "guestfs_pvresize"
16733 #: ../src/guestfs-actions.pod:5325
16737 " guestfs_pvresize (guestfs_h *g,\n"
16738 " const char *device);\n"
16744 #: ../src/guestfs-actions.pod:5329 ../fish/guestfish-actions.pod:3591
16746 "This resizes (expands or shrinks) an existing LVM physical volume to match "
16747 "the new size of the underlying device."
16752 #: ../src/guestfs-actions.pod:5336
16753 msgid "guestfs_pvresize_size"
16758 #: ../src/guestfs-actions.pod:5338
16762 " guestfs_pvresize_size (guestfs_h *g,\n"
16763 " const char *device,\n"
16764 " int64_t size);\n"
16770 #: ../src/guestfs-actions.pod:5343
16772 "This command is the same as C<guestfs_pvresize> except that it allows you to "
16773 "specify the new size (in bytes) explicitly."
16778 #: ../src/guestfs-actions.pod:5350
16779 msgid "guestfs_pvs"
16784 #: ../src/guestfs-actions.pod:5352
16788 " guestfs_pvs (guestfs_h *g);\n"
16794 #: ../src/guestfs-actions.pod:5355 ../fish/guestfish-actions.pod:3605
16796 "List all the physical volumes detected. This is the equivalent of the L<pvs"
16802 #: ../src/guestfs-actions.pod:5358 ../fish/guestfish-actions.pod:3608
16804 "This returns a list of just the device names that contain PVs (eg. C</dev/"
16810 #: ../src/guestfs-actions.pod:5361
16811 msgid "See also C<guestfs_pvs_full>."
16816 #: ../src/guestfs-actions.pod:5369
16817 msgid "guestfs_pvs_full"
16822 #: ../src/guestfs-actions.pod:5371
16825 " struct guestfs_lvm_pv_list *\n"
16826 " guestfs_pvs_full (guestfs_h *g);\n"
16832 #: ../src/guestfs-actions.pod:5374 ../fish/guestfish-actions.pod:3617
16834 "List all the physical volumes detected. This is the equivalent of the L<pvs"
16835 "(8)> command. The \"full\" version includes all fields."
16840 #: ../src/guestfs-actions.pod:5377
16842 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
16843 "was an error. I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
16848 #: ../src/guestfs-actions.pod:5383
16849 msgid "guestfs_pvuuid"
16854 #: ../src/guestfs-actions.pod:5385
16858 " guestfs_pvuuid (guestfs_h *g,\n"
16859 " const char *device);\n"
16865 #: ../src/guestfs-actions.pod:5389 ../fish/guestfish-actions.pod:3624
16866 msgid "This command returns the UUID of the LVM PV C<device>."
16871 #: ../src/guestfs-actions.pod:5396
16872 msgid "guestfs_pwrite"
16877 #: ../src/guestfs-actions.pod:5398
16881 " guestfs_pwrite (guestfs_h *g,\n"
16882 " const char *path,\n"
16883 " const char *content,\n"
16884 " size_t content_size,\n"
16885 " int64_t offset);\n"
16891 #: ../src/guestfs-actions.pod:5405 ../fish/guestfish-actions.pod:3630
16893 "This command writes to part of a file. It writes the data buffer C<content> "
16894 "to the file C<path> starting at offset C<offset>."
16899 #: ../src/guestfs-actions.pod:5408 ../fish/guestfish-actions.pod:3633
16901 "This command implements the L<pwrite(2)> system call, and like that system "
16902 "call it may not write the full data requested. The return value is the "
16903 "number of bytes that were actually written to the file. This could even be "
16904 "0, although short writes are unlikely for regular files in ordinary "
16910 #: ../src/guestfs-actions.pod:5414
16911 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
16916 #: ../src/guestfs-actions.pod:5423
16917 msgid "guestfs_pwrite_device"
16922 #: ../src/guestfs-actions.pod:5425
16926 " guestfs_pwrite_device (guestfs_h *g,\n"
16927 " const char *device,\n"
16928 " const char *content,\n"
16929 " size_t content_size,\n"
16930 " int64_t offset);\n"
16936 #: ../src/guestfs-actions.pod:5432 ../fish/guestfish-actions.pod:3648
16938 "This command writes to part of a device. It writes the data buffer "
16939 "C<content> to C<device> starting at offset C<offset>."
16944 #: ../src/guestfs-actions.pod:5435 ../fish/guestfish-actions.pod:3651
16946 "This command implements the L<pwrite(2)> system call, and like that system "
16947 "call it may not write the full data requested (although short writes to disk "
16948 "devices and partitions are probably impossible with standard Linux kernels)."
16953 #: ../src/guestfs-actions.pod:5440
16954 msgid "See also C<guestfs_pwrite>."
16959 #: ../src/guestfs-actions.pod:5447
16960 msgid "(Added in 1.5.20)"
16965 #: ../src/guestfs-actions.pod:5449
16966 msgid "guestfs_read_file"
16971 #: ../src/guestfs-actions.pod:5451
16975 " guestfs_read_file (guestfs_h *g,\n"
16976 " const char *path,\n"
16977 " size_t *size_r);\n"
16983 #: ../src/guestfs-actions.pod:5456 ../fish/guestfish-actions.pod:3665
16984 msgid "This calls returns the contents of the file C<path> as a buffer."
16989 #: ../src/guestfs-actions.pod:5459
16991 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
16992 "embedded ASCII NUL characters. However unlike C<guestfs_download>, this "
16993 "function is limited in the total size of file that can be handled."
16998 #: ../src/guestfs-actions.pod:5471
16999 msgid "(Added in 1.0.63)"
17004 #: ../src/guestfs-actions.pod:5473
17005 msgid "guestfs_read_lines"
17010 #: ../src/guestfs-actions.pod:5475
17014 " guestfs_read_lines (guestfs_h *g,\n"
17015 " const char *path);\n"
17021 #: ../src/guestfs-actions.pod:5481 ../fish/guestfish-actions.pod:3682
17023 "The file contents are returned as a list of lines. Trailing C<LF> and "
17024 "C<CRLF> character sequences are I<not> returned."
17029 #: ../src/guestfs-actions.pod:5484
17031 "Note that this function cannot correctly handle binary files (specifically, "
17032 "files containing C<\\0> character which is treated as end of line). For "
17033 "those you need to use the C<guestfs_read_file> function which has a more "
17034 "complex interface."
17039 #: ../src/guestfs-actions.pod:5495
17040 msgid "guestfs_readdir"
17045 #: ../src/guestfs-actions.pod:5497
17048 " struct guestfs_dirent_list *\n"
17049 " guestfs_readdir (guestfs_h *g,\n"
17050 " const char *dir);\n"
17056 #: ../src/guestfs-actions.pod:5501 ../fish/guestfish-actions.pod:3694
17057 msgid "This returns the list of directory entries in directory C<dir>."
17062 #: ../src/guestfs-actions.pod:5503 ../fish/guestfish-actions.pod:3696
17064 "All entries in the directory are returned, including C<.> and C<..>. The "
17065 "entries are I<not> sorted, but returned in the same order as the underlying "
17071 #: ../src/guestfs-actions.pod:5507 ../fish/guestfish-actions.pod:3700
17073 "Also this call returns basic file type information about each file. The "
17074 "C<ftyp> field will contain one of the following characters:"
17079 #: ../src/guestfs-actions.pod:5512 ../fish/guestfish-actions.pod:3705
17085 #: ../src/guestfs-actions.pod:5514 ../fish/guestfish-actions.pod:3707
17086 msgid "Block special"
17091 #: ../src/guestfs-actions.pod:5516 ../fish/guestfish-actions.pod:3709
17097 #: ../src/guestfs-actions.pod:5518 ../fish/guestfish-actions.pod:3711
17098 msgid "Char special"
17103 #: ../src/guestfs-actions.pod:5520 ../fish/guestfish-actions.pod:3713
17109 #: ../src/guestfs-actions.pod:5522 ../fish/guestfish-actions.pod:3715
17115 #: ../src/guestfs-actions.pod:5524 ../fish/guestfish-actions.pod:3717
17121 #: ../src/guestfs-actions.pod:5526 ../fish/guestfish-actions.pod:3719
17122 msgid "FIFO (named pipe)"
17127 #: ../src/guestfs-actions.pod:5528 ../fish/guestfish-actions.pod:3721
17133 #: ../src/guestfs-actions.pod:5530 ../fish/guestfish-actions.pod:3723
17134 msgid "Symbolic link"
17139 #: ../src/guestfs-actions.pod:5532 ../fish/guestfish-actions.pod:3725
17145 #: ../src/guestfs-actions.pod:5534 ../fish/guestfish-actions.pod:3727
17146 msgid "Regular file"
17151 #: ../src/guestfs-actions.pod:5536 ../fish/guestfish-actions.pod:3729
17157 #: ../src/guestfs-actions.pod:5538 ../fish/guestfish-actions.pod:3731
17163 #: ../src/guestfs-actions.pod:5540 ../fish/guestfish-actions.pod:3733
17169 #: ../src/guestfs-actions.pod:5542 ../fish/guestfish-actions.pod:3735
17170 msgid "Unknown file type"
17175 #: ../src/guestfs-actions.pod:5544 ../fish/guestfish-actions.pod:3737
17181 #: ../src/guestfs-actions.pod:5546 ../fish/guestfish-actions.pod:3739
17183 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
17188 #: ../src/guestfs-actions.pod:5551
17190 "This function is primarily intended for use by programs. To get a simple "
17191 "list of names, use C<guestfs_ls>. To get a printable directory for human "
17192 "consumption, use C<guestfs_ll>."
17197 #: ../src/guestfs-actions.pod:5555
17199 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
17200 "was an error. I<The caller must call C<guestfs_free_dirent_list> after use>."
17205 #: ../src/guestfs-actions.pod:5561
17206 msgid "guestfs_readlink"
17211 #: ../src/guestfs-actions.pod:5563
17215 " guestfs_readlink (guestfs_h *g,\n"
17216 " const char *path);\n"
17222 #: ../src/guestfs-actions.pod:5567 ../fish/guestfish-actions.pod:3752
17223 msgid "This command reads the target of a symbolic link."
17228 #: ../src/guestfs-actions.pod:5574
17229 msgid "guestfs_readlinklist"
17234 #: ../src/guestfs-actions.pod:5576
17238 " guestfs_readlinklist (guestfs_h *g,\n"
17239 " const char *path,\n"
17240 " char *const *names);\n"
17246 #: ../src/guestfs-actions.pod:5581 ../fish/guestfish-actions.pod:3758
17248 "This call allows you to do a C<readlink> operation on multiple files, where "
17249 "all files are in the directory C<path>. C<names> is the list of files from "
17255 #: ../src/guestfs-actions.pod:5585 ../fish/guestfish-actions.pod:3762
17257 "On return you get a list of strings, with a one-to-one correspondence to the "
17258 "C<names> list. Each string is the value of the symbolic link."
17263 #: ../src/guestfs-actions.pod:5589 ../fish/guestfish-actions.pod:3766
17265 "If the C<readlink(2)> operation fails on any name, then the corresponding "
17266 "result string is the empty string C<\"\">. However the whole operation is "
17267 "completed even if there were C<readlink(2)> errors, and so you can call this "
17268 "function with names where you don't know if they are symbolic links already "
17269 "(albeit slightly less efficient)."
17274 #: ../src/guestfs-actions.pod:5596 ../fish/guestfish-actions.pod:3773
17276 "This call is intended for programs that want to efficiently list a directory "
17277 "contents without making many round-trips. Very long directory listings "
17278 "might cause the protocol message size to be exceeded, causing this call to "
17279 "fail. The caller must split up such requests into smaller groups of names."
17284 #: ../src/guestfs-actions.pod:5609
17285 msgid "guestfs_realpath"
17290 #: ../src/guestfs-actions.pod:5611
17294 " guestfs_realpath (guestfs_h *g,\n"
17295 " const char *path);\n"
17301 #: ../src/guestfs-actions.pod:5615 ../fish/guestfish-actions.pod:3784
17303 "Return the canonicalized absolute pathname of C<path>. The returned path "
17304 "has no C<.>, C<..> or symbolic link path elements."
17309 #: ../src/guestfs-actions.pod:5623
17310 msgid "guestfs_removexattr"
17315 #: ../src/guestfs-actions.pod:5625
17319 " guestfs_removexattr (guestfs_h *g,\n"
17320 " const char *xattr,\n"
17321 " const char *path);\n"
17327 #: ../src/guestfs-actions.pod:5630 ../fish/guestfish-actions.pod:3791
17329 "This call removes the extended attribute named C<xattr> of the file C<path>."
17334 #: ../src/guestfs-actions.pod:5633
17335 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
17340 #: ../src/guestfs-actions.pod:5639
17341 msgid "guestfs_resize2fs"
17346 #: ../src/guestfs-actions.pod:5641
17350 " guestfs_resize2fs (guestfs_h *g,\n"
17351 " const char *device);\n"
17357 #: ../src/guestfs-actions.pod:5645 ../fish/guestfish-actions.pod:3800
17359 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
17360 "underlying device."
17365 #: ../src/guestfs-actions.pod:5648
17367 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
17368 "C<device> before calling this command. For unknown reasons C<resize2fs> "
17369 "sometimes gives an error about this and sometimes not. In any case, it is "
17370 "always safe to call C<guestfs_e2fsck_f> before calling this function."
17374 #: ../src/guestfs-actions.pod:5658
17375 msgid "guestfs_resize2fs_M"
17379 #: ../src/guestfs-actions.pod:5660
17383 " guestfs_resize2fs_M (guestfs_h *g,\n"
17384 " const char *device);\n"
17389 #: ../src/guestfs-actions.pod:5664
17391 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
17392 "resized to its minimum size. This works like the I<-M> option to the "
17393 "C<resize2fs> command."
17397 #: ../src/guestfs-actions.pod:5668
17399 "To get the resulting size of the filesystem you should call "
17400 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values. "
17401 "These two numbers, multiplied together, give the resulting size of the "
17402 "minimal filesystem in bytes."
17407 #: ../src/guestfs-actions.pod:5675
17408 msgid "guestfs_resize2fs_size"
17413 #: ../src/guestfs-actions.pod:5677
17417 " guestfs_resize2fs_size (guestfs_h *g,\n"
17418 " const char *device,\n"
17419 " int64_t size);\n"
17425 #: ../src/guestfs-actions.pod:5682
17427 "This command is the same as C<guestfs_resize2fs> except that it allows you "
17428 "to specify the new size (in bytes) explicitly."
17433 #: ../src/guestfs-actions.pod:5689
17439 #: ../src/guestfs-actions.pod:5691
17443 " guestfs_rm (guestfs_h *g,\n"
17444 " const char *path);\n"
17450 #: ../src/guestfs-actions.pod:5695 ../fish/guestfish-actions.pod:3833
17451 msgid "Remove the single file C<path>."
17456 #: ../src/guestfs-actions.pod:5701
17457 msgid "guestfs_rm_rf"
17462 #: ../src/guestfs-actions.pod:5703
17466 " guestfs_rm_rf (guestfs_h *g,\n"
17467 " const char *path);\n"
17473 #: ../src/guestfs-actions.pod:5707 ../fish/guestfish-actions.pod:3839
17475 "Remove the file or directory C<path>, recursively removing the contents if "
17476 "its a directory. This is like the C<rm -rf> shell command."
17481 #: ../src/guestfs-actions.pod:5715
17482 msgid "guestfs_rmdir"
17487 #: ../src/guestfs-actions.pod:5717
17491 " guestfs_rmdir (guestfs_h *g,\n"
17492 " const char *path);\n"
17498 #: ../src/guestfs-actions.pod:5721 ../fish/guestfish-actions.pod:3847
17499 msgid "Remove the single directory C<path>."
17504 #: ../src/guestfs-actions.pod:5727
17505 msgid "guestfs_rmmountpoint"
17510 #: ../src/guestfs-actions.pod:5729
17514 " guestfs_rmmountpoint (guestfs_h *g,\n"
17515 " const char *exemptpath);\n"
17521 #: ../src/guestfs-actions.pod:5733
17523 "This calls removes a mountpoint that was previously created with "
17524 "C<guestfs_mkmountpoint>. See C<guestfs_mkmountpoint> for full details."
17529 #: ../src/guestfs-actions.pod:5741
17530 msgid "guestfs_scrub_device"
17535 #: ../src/guestfs-actions.pod:5743
17539 " guestfs_scrub_device (guestfs_h *g,\n"
17540 " const char *device);\n"
17546 #: ../src/guestfs-actions.pod:5747 ../fish/guestfish-actions.pod:3861
17548 "This command writes patterns over C<device> to make data retrieval more "
17554 #: ../src/guestfs-actions.pod:5750 ../src/guestfs-actions.pod:5771
17555 #: ../src/guestfs-actions.pod:5790 ../fish/guestfish-actions.pod:3864
17556 #: ../fish/guestfish-actions.pod:3879 ../fish/guestfish-actions.pod:3892
17558 "It is an interface to the L<scrub(1)> program. See that manual page for "
17564 #: ../src/guestfs-actions.pod:5758 ../src/guestfs-actions.pod:5776
17565 #: ../src/guestfs-actions.pod:5795
17566 msgid "(Added in 1.0.52)"
17571 #: ../src/guestfs-actions.pod:5760
17572 msgid "guestfs_scrub_file"
17577 #: ../src/guestfs-actions.pod:5762
17581 " guestfs_scrub_file (guestfs_h *g,\n"
17582 " const char *file);\n"
17588 #: ../src/guestfs-actions.pod:5766 ../fish/guestfish-actions.pod:3874
17590 "This command writes patterns over a file to make data retrieval more "
17596 #: ../src/guestfs-actions.pod:5769 ../fish/guestfish-actions.pod:3877
17597 msgid "The file is I<removed> after scrubbing."
17602 #: ../src/guestfs-actions.pod:5778
17603 msgid "guestfs_scrub_freespace"
17608 #: ../src/guestfs-actions.pod:5780
17612 " guestfs_scrub_freespace (guestfs_h *g,\n"
17613 " const char *dir);\n"
17619 #: ../src/guestfs-actions.pod:5784
17621 "This command creates the directory C<dir> and then fills it with files until "
17622 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
17623 "and deletes them. The intention is to scrub any free space on the partition "
17624 "containing C<dir>."
17629 #: ../src/guestfs-actions.pod:5797
17630 msgid "guestfs_set_append"
17635 #: ../src/guestfs-actions.pod:5799
17639 " guestfs_set_append (guestfs_h *g,\n"
17640 " const char *append);\n"
17646 #: ../src/guestfs-actions.pod:5803 ../fish/guestfish-actions.pod:3901
17648 "This function is used to add additional options to the guest kernel command "
17654 #: ../src/guestfs-actions.pod:5806 ../fish/guestfish-actions.pod:3904
17656 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
17657 "environment variable."
17662 #: ../src/guestfs-actions.pod:5809 ../fish/guestfish-actions.pod:3907
17664 "Setting C<append> to C<NULL> means I<no> additional options are passed "
17665 "(libguestfs always adds a few of its own)."
17669 #: ../src/guestfs-actions.pod:5816
17670 msgid "guestfs_set_attach_method"
17674 #: ../src/guestfs-actions.pod:5818
17678 " guestfs_set_attach_method (guestfs_h *g,\n"
17679 " const char *attachmethod);\n"
17684 #: ../src/guestfs-actions.pod:5822 ../fish/guestfish-actions.pod:3916
17686 "Set the method that libguestfs uses to connect to the back end guestfsd "
17687 "daemon. Possible methods are:"
17691 #: ../src/guestfs-actions.pod:5829 ../fish/guestfish-actions.pod:3923
17693 "Launch an appliance and connect to it. This is the ordinary method and the "
17698 #: ../src/guestfs-actions.pod:5832 ../fish/guestfish-actions.pod:3926
17699 msgid "C<unix:I<path>>"
17703 #: ../src/guestfs-actions.pod:5834 ../fish/guestfish-actions.pod:3928
17704 msgid "Connect to the Unix domain socket I<path>."
17708 #: ../src/guestfs-actions.pod:5836 ../fish/guestfish-actions.pod:3930
17710 "This method lets you connect to an existing daemon or (using virtio-serial) "
17711 "to a live guest. For more information, see L<guestfs(3)/ATTACHING TO "
17712 "RUNNING DAEMONS>."
17717 #: ../src/guestfs-actions.pod:5844
17718 msgid "guestfs_set_autosync"
17723 #: ../src/guestfs-actions.pod:5846
17727 " guestfs_set_autosync (guestfs_h *g,\n"
17728 " int autosync);\n"
17733 #: ../src/guestfs-actions.pod:5850 ../fish/guestfish-actions.pod:3942
17735 "If C<autosync> is true, this enables autosync. Libguestfs will make a best "
17736 "effort attempt to make filesystems consistent and synchronized when the "
17737 "handle is closed (also if the program exits without closing handles)."
17742 #: ../src/guestfs-actions.pod:5855 ../fish/guestfish-actions.pod:3947
17744 "This is enabled by default (since libguestfs 1.5.24, previously it was "
17745 "disabled by default)."
17750 #: ../src/guestfs-actions.pod:5862
17751 msgid "guestfs_set_direct"
17756 #: ../src/guestfs-actions.pod:5864
17760 " guestfs_set_direct (guestfs_h *g,\n"
17767 #: ../src/guestfs-actions.pod:5868 ../fish/guestfish-actions.pod:3956
17769 "If the direct appliance mode flag is enabled, then stdin and stdout are "
17770 "passed directly through to the appliance once it is launched."
17775 #: ../src/guestfs-actions.pod:5872
17777 "One consequence of this is that log messages aren't caught by the library "
17778 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
17784 #: ../src/guestfs-actions.pod:5876 ../fish/guestfish-actions.pod:3964
17785 msgid "You probably don't want to use this unless you know what you are doing."
17790 #: ../src/guestfs-actions.pod:5879 ../fish/guestfish-actions.pod:3967
17791 msgid "The default is disabled."
17796 #: ../src/guestfs-actions.pod:5885
17797 msgid "guestfs_set_e2label"
17802 #: ../src/guestfs-actions.pod:5887
17806 " guestfs_set_e2label (guestfs_h *g,\n"
17807 " const char *device,\n"
17808 " const char *label);\n"
17814 #: ../src/guestfs-actions.pod:5892 ../fish/guestfish-actions.pod:3973
17816 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
17817 "C<label>. Filesystem labels are limited to 16 characters."
17822 #: ../src/guestfs-actions.pod:5896
17824 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
17825 "the existing label on a filesystem."
17830 #: ../src/guestfs-actions.pod:5903
17831 msgid "guestfs_set_e2uuid"
17836 #: ../src/guestfs-actions.pod:5905
17840 " guestfs_set_e2uuid (guestfs_h *g,\n"
17841 " const char *device,\n"
17842 " const char *uuid);\n"
17848 #: ../src/guestfs-actions.pod:5910 ../fish/guestfish-actions.pod:3984
17850 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
17851 "C<uuid>. The format of the UUID and alternatives such as C<clear>, "
17852 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
17857 #: ../src/guestfs-actions.pod:5915
17859 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
17860 "the existing UUID of a filesystem."
17865 #: ../src/guestfs-actions.pod:5922
17866 msgid "guestfs_set_memsize"
17871 #: ../src/guestfs-actions.pod:5924
17875 " guestfs_set_memsize (guestfs_h *g,\n"
17882 #: ../src/guestfs-actions.pod:5928
17884 "This sets the memory size in megabytes allocated to the qemu subprocess. "
17885 "This only has any effect if called before C<guestfs_launch>."
17890 #: ../src/guestfs-actions.pod:5932 ../fish/guestfish-actions.pod:4002
17892 "You can also change this by setting the environment variable "
17893 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
17898 #: ../src/guestfs-actions.pod:5943
17899 msgid "guestfs_set_network"
17904 #: ../src/guestfs-actions.pod:5945
17908 " guestfs_set_network (guestfs_h *g,\n"
17915 #: ../src/guestfs-actions.pod:5949 ../fish/guestfish-actions.pod:4015
17917 "If C<network> is true, then the network is enabled in the libguestfs "
17918 "appliance. The default is false."
17923 #: ../src/guestfs-actions.pod:5952 ../fish/guestfish-actions.pod:4018
17925 "This affects whether commands are able to access the network (see L<guestfs"
17926 "(3)/RUNNING COMMANDS>)."
17931 #: ../src/guestfs-actions.pod:5955
17933 "You must call this before calling C<guestfs_launch>, otherwise it has no "
17939 #: ../src/guestfs-actions.pod:5962
17940 msgid "guestfs_set_path"
17945 #: ../src/guestfs-actions.pod:5964
17949 " guestfs_set_path (guestfs_h *g,\n"
17950 " const char *searchpath);\n"
17956 #: ../src/guestfs-actions.pod:5968 ../fish/guestfish-actions.pod:4030
17957 msgid "Set the path that libguestfs searches for kernel and initrd.img."
17962 #: ../src/guestfs-actions.pod:5970 ../fish/guestfish-actions.pod:4032
17964 "The default is C<$libdir/guestfs> unless overridden by setting "
17965 "C<LIBGUESTFS_PATH> environment variable."
17970 #: ../src/guestfs-actions.pod:5973 ../fish/guestfish-actions.pod:4035
17971 msgid "Setting C<path> to C<NULL> restores the default path."
17976 #: ../src/guestfs-actions.pod:5979
17977 msgid "guestfs_set_qemu"
17982 #: ../src/guestfs-actions.pod:5981
17986 " guestfs_set_qemu (guestfs_h *g,\n"
17987 " const char *qemu);\n"
17993 #: ../src/guestfs-actions.pod:5985 ../fish/guestfish-actions.pod:4043
17994 msgid "Set the qemu binary that we will use."
17999 #: ../src/guestfs-actions.pod:5987 ../fish/guestfish-actions.pod:4045
18001 "The default is chosen when the library was compiled by the configure script."
18006 #: ../src/guestfs-actions.pod:5990 ../fish/guestfish-actions.pod:4048
18008 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
18014 #: ../src/guestfs-actions.pod:5993 ../fish/guestfish-actions.pod:4051
18015 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
18020 #: ../src/guestfs-actions.pod:5995 ../fish/guestfish-actions.pod:4053
18022 "Note that you should call this function as early as possible after creating "
18023 "the handle. This is because some pre-launch operations depend on testing "
18024 "qemu features (by running C<qemu -help>). If the qemu binary changes, we "
18025 "don't retest features, and so you might see inconsistent results. Using the "
18026 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
18027 "the qemu binary at the same time as the handle is created."
18032 #: ../src/guestfs-actions.pod:6007
18033 msgid "guestfs_set_recovery_proc"
18038 #: ../src/guestfs-actions.pod:6009
18042 " guestfs_set_recovery_proc (guestfs_h *g,\n"
18043 " int recoveryproc);\n"
18049 #: ../src/guestfs-actions.pod:6013
18051 "If this is called with the parameter C<false> then C<guestfs_launch> does "
18052 "not create a recovery process. The purpose of the recovery process is to "
18053 "stop runaway qemu processes in the case where the main program aborts "
18059 #: ../src/guestfs-actions.pod:6018
18061 "This only has any effect if called before C<guestfs_launch>, and the default "
18067 #: ../src/guestfs-actions.pod:6021 ../fish/guestfish-actions.pod:4075
18069 "About the only time when you would want to disable this is if the main "
18070 "process will fork itself into the background (\"daemonize\" itself). In "
18071 "this case the recovery process thinks that the main program has disappeared "
18072 "and so kills qemu, which is not very helpful."
18077 #: ../src/guestfs-actions.pod:6031
18078 msgid "guestfs_set_selinux"
18083 #: ../src/guestfs-actions.pod:6033
18087 " guestfs_set_selinux (guestfs_h *g,\n"
18094 #: ../src/guestfs-actions.pod:6037 ../fish/guestfish-actions.pod:4087
18096 "This sets the selinux flag that is passed to the appliance at boot time. "
18097 "The default is C<selinux=0> (disabled)."
18102 #: ../src/guestfs-actions.pod:6040 ../fish/guestfish-actions.pod:4090
18104 "Note that if SELinux is enabled, it is always in Permissive mode "
18105 "(C<enforcing=0>)."
18110 #: ../src/guestfs-actions.pod:6050
18111 msgid "guestfs_set_trace"
18116 #: ../src/guestfs-actions.pod:6052
18120 " guestfs_set_trace (guestfs_h *g,\n"
18126 #: ../src/guestfs-actions.pod:6056 ../fish/guestfish-actions.pod:4102
18128 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
18129 "return values are traced."
18134 #: ../src/guestfs-actions.pod:6059 ../fish/guestfish-actions.pod:4105
18136 "If you want to trace C API calls into libguestfs (and other libraries) then "
18137 "possibly a better way is to use the external ltrace(1) command."
18142 #: ../src/guestfs-actions.pod:6063 ../fish/guestfish-actions.pod:4109
18144 "Command traces are disabled unless the environment variable "
18145 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
18149 #: ../src/guestfs-actions.pod:6066
18151 "Trace messages are normally sent to C<stderr>, unless you register a "
18152 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
18157 #: ../src/guestfs-actions.pod:6074
18158 msgid "guestfs_set_verbose"
18163 #: ../src/guestfs-actions.pod:6076
18167 " guestfs_set_verbose (guestfs_h *g,\n"
18173 #: ../src/guestfs-actions.pod:6080 ../fish/guestfish-actions.pod:4122
18174 msgid "If C<verbose> is true, this turns on verbose messages."
18179 #: ../src/guestfs-actions.pod:6082 ../fish/guestfish-actions.pod:4124
18181 "Verbose messages are disabled unless the environment variable "
18182 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
18186 #: ../src/guestfs-actions.pod:6085
18188 "Verbose messages are normally sent to C<stderr>, unless you register a "
18189 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
18194 #: ../src/guestfs-actions.pod:6093
18195 msgid "guestfs_setcon"
18200 #: ../src/guestfs-actions.pod:6095
18204 " guestfs_setcon (guestfs_h *g,\n"
18205 " const char *context);\n"
18211 #: ../src/guestfs-actions.pod:6099 ../fish/guestfish-actions.pod:4135
18213 "This sets the SELinux security context of the daemon to the string "
18219 #: ../src/guestfs-actions.pod:6102 ../fish/guestfish-actions.pod:4138
18220 msgid "See the documentation about SELINUX in L<guestfs(3)>."
18225 #: ../src/guestfs-actions.pod:6108
18226 msgid "guestfs_setxattr"
18231 #: ../src/guestfs-actions.pod:6110
18235 " guestfs_setxattr (guestfs_h *g,\n"
18236 " const char *xattr,\n"
18237 " const char *val,\n"
18239 " const char *path);\n"
18245 #: ../src/guestfs-actions.pod:6117 ../fish/guestfish-actions.pod:4144
18247 "This call sets the extended attribute named C<xattr> of the file C<path> to "
18248 "the value C<val> (of length C<vallen>). The value is arbitrary 8 bit data."
18253 #: ../src/guestfs-actions.pod:6121
18254 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
18259 #: ../src/guestfs-actions.pod:6127
18260 msgid "guestfs_sfdisk"
18265 #: ../src/guestfs-actions.pod:6129
18269 " guestfs_sfdisk (guestfs_h *g,\n"
18270 " const char *device,\n"
18274 " char *const *lines);\n"
18280 #: ../src/guestfs-actions.pod:6137 ../fish/guestfish-actions.pod:4154
18282 "This is a direct interface to the L<sfdisk(8)> program for creating "
18283 "partitions on block devices."
18288 #: ../src/guestfs-actions.pod:6140 ../fish/guestfish-actions.pod:4157
18289 msgid "C<device> should be a block device, for example C</dev/sda>."
18294 #: ../src/guestfs-actions.pod:6142 ../fish/guestfish-actions.pod:4159
18296 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
18297 "sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
18298 "H> and I<-S> parameters. If you pass C<0> for any of these, then the "
18299 "corresponding parameter is omitted. Usually for 'large' disks, you can just "
18300 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
18301 "the kernel) cannot work out the right geometry and you will need to tell it."
18306 #: ../src/guestfs-actions.pod:6150 ../fish/guestfish-actions.pod:4167
18308 "C<lines> is a list of lines that we feed to C<sfdisk>. For more information "
18309 "refer to the L<sfdisk(8)> manpage."
18314 #: ../src/guestfs-actions.pod:6153 ../fish/guestfish-actions.pod:4170
18316 "To create a single partition occupying the whole disk, you would pass "
18317 "C<lines> as a single element list, when the single element being the string "
18323 #: ../src/guestfs-actions.pod:6157
18325 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
18329 #: ../src/guestfs-actions.pod:6165 ../src/guestfs-actions.pod:6195
18330 #: ../src/guestfs-actions.pod:6228 ../fish/guestfish-actions.pod:4180
18331 #: ../fish/guestfish-actions.pod:4203 ../fish/guestfish-actions.pod:4225
18333 "This function is deprecated. In new code, use the C<part_add> call instead."
18338 #: ../src/guestfs-actions.pod:6174
18339 msgid "guestfs_sfdiskM"
18344 #: ../src/guestfs-actions.pod:6176
18348 " guestfs_sfdiskM (guestfs_h *g,\n"
18349 " const char *device,\n"
18350 " char *const *lines);\n"
18356 #: ../src/guestfs-actions.pod:6181
18358 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
18359 "partition sizes are specified in megabytes only (rounded to the nearest "
18360 "cylinder) and you don't need to specify the cyls, heads and sectors "
18361 "parameters which were rarely if ever used anyway."
18366 #: ../src/guestfs-actions.pod:6187
18368 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
18369 "C<guestfs_part_disk>"
18374 #: ../src/guestfs-actions.pod:6204
18375 msgid "guestfs_sfdisk_N"
18380 #: ../src/guestfs-actions.pod:6206
18384 " guestfs_sfdisk_N (guestfs_h *g,\n"
18385 " const char *device,\n"
18390 " const char *line);\n"
18396 #: ../src/guestfs-actions.pod:6215 ../fish/guestfish-actions.pod:4214
18398 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
18399 "(note: C<n> counts from 1)."
18404 #: ../src/guestfs-actions.pod:6218
18406 "For other parameters, see C<guestfs_sfdisk>. You should usually pass C<0> "
18407 "for the cyls/heads/sectors parameters."
18412 #: ../src/guestfs-actions.pod:6221
18413 msgid "See also: C<guestfs_part_add>"
18418 #: ../src/guestfs-actions.pod:6237
18419 msgid "guestfs_sfdisk_disk_geometry"
18424 #: ../src/guestfs-actions.pod:6239
18428 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
18429 " const char *device);\n"
18435 #: ../src/guestfs-actions.pod:6243
18437 "This displays the disk geometry of C<device> read from the partition table. "
18438 "Especially in the case where the underlying block device has been resized, "
18439 "this can be different from the kernel's idea of the geometry (see "
18440 "C<guestfs_sfdisk_kernel_geometry>)."
18445 #: ../src/guestfs-actions.pod:6248 ../src/guestfs-actions.pod:6264
18446 #: ../fish/guestfish-actions.pod:4241 ../fish/guestfish-actions.pod:4250
18447 msgid "The result is in human-readable format, and not designed to be parsed."
18452 #: ../src/guestfs-actions.pod:6256
18453 msgid "guestfs_sfdisk_kernel_geometry"
18458 #: ../src/guestfs-actions.pod:6258
18462 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
18463 " const char *device);\n"
18469 #: ../src/guestfs-actions.pod:6262 ../fish/guestfish-actions.pod:4248
18470 msgid "This displays the kernel's idea of the geometry of C<device>."
18475 #: ../src/guestfs-actions.pod:6272
18476 msgid "guestfs_sfdisk_l"
18481 #: ../src/guestfs-actions.pod:6274
18485 " guestfs_sfdisk_l (guestfs_h *g,\n"
18486 " const char *device);\n"
18492 #: ../src/guestfs-actions.pod:6278 ../fish/guestfish-actions.pod:4257
18494 "This displays the partition table on C<device>, in the human-readable output "
18495 "of the L<sfdisk(8)> command. It is not intended to be parsed."
18500 #: ../src/guestfs-actions.pod:6282
18501 msgid "See also: C<guestfs_part_list>"
18505 #: ../src/guestfs-actions.pod:6287 ../fish/guestfish-actions.pod:4263
18507 "This function is deprecated. In new code, use the C<part_list> call instead."
18512 #: ../src/guestfs-actions.pod:6296
18518 #: ../src/guestfs-actions.pod:6298
18522 " guestfs_sh (guestfs_h *g,\n"
18523 " const char *command);\n"
18529 #: ../src/guestfs-actions.pod:6302 ../fish/guestfish-actions.pod:4274
18531 "This call runs a command from the guest filesystem via the guest's C</bin/"
18537 #: ../src/guestfs-actions.pod:6305
18538 msgid "This is like C<guestfs_command>, but passes the command to:"
18543 #: ../src/guestfs-actions.pod:6307 ../fish/guestfish-actions.pod:4279
18546 " /bin/sh -c \"command\"\n"
18552 #: ../src/guestfs-actions.pod:6309 ../fish/guestfish-actions.pod:4281
18554 "Depending on the guest's shell, this usually results in wildcards being "
18555 "expanded, shell expressions being interpolated and so on."
18560 #: ../src/guestfs-actions.pod:6313
18561 msgid "All the provisos about C<guestfs_command> apply to this call."
18566 #: ../src/guestfs-actions.pod:6320
18567 msgid "guestfs_sh_lines"
18572 #: ../src/guestfs-actions.pod:6322
18576 " guestfs_sh_lines (guestfs_h *g,\n"
18577 " const char *command);\n"
18583 #: ../src/guestfs-actions.pod:6326
18585 "This is the same as C<guestfs_sh>, but splits the result into a list of "
18591 #: ../src/guestfs-actions.pod:6329
18592 msgid "See also: C<guestfs_command_lines>"
18597 #: ../src/guestfs-actions.pod:6337
18598 msgid "guestfs_sleep"
18603 #: ../src/guestfs-actions.pod:6339
18607 " guestfs_sleep (guestfs_h *g,\n"
18614 #: ../src/guestfs-actions.pod:6343 ../fish/guestfish-actions.pod:4300
18615 msgid "Sleep for C<secs> seconds."
18620 #: ../src/guestfs-actions.pod:6347
18621 msgid "(Added in 1.0.41)"
18626 #: ../src/guestfs-actions.pod:6349 ../src/guestfs-structs.pod:109
18627 msgid "guestfs_stat"
18632 #: ../src/guestfs-actions.pod:6351
18635 " struct guestfs_stat *\n"
18636 " guestfs_stat (guestfs_h *g,\n"
18637 " const char *path);\n"
18643 #: ../src/guestfs-actions.pod:6357 ../fish/guestfish-actions.pod:4308
18644 msgid "This is the same as the C<stat(2)> system call."
18649 #: ../src/guestfs-actions.pod:6365 ../src/guestfs-structs.pod:135
18650 msgid "guestfs_statvfs"
18655 #: ../src/guestfs-actions.pod:6367
18658 " struct guestfs_statvfs *\n"
18659 " guestfs_statvfs (guestfs_h *g,\n"
18660 " const char *path);\n"
18666 #: ../src/guestfs-actions.pod:6371 ../fish/guestfish-actions.pod:4314
18668 "Returns file system statistics for any mounted file system. C<path> should "
18669 "be a file or directory in the mounted file system (typically it is the mount "
18670 "point itself, but it doesn't need to be)."
18675 #: ../src/guestfs-actions.pod:6375 ../fish/guestfish-actions.pod:4318
18676 msgid "This is the same as the C<statvfs(2)> system call."
18681 #: ../src/guestfs-actions.pod:6377
18683 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
18684 "error. I<The caller must call C<guestfs_free_statvfs> after use>."
18689 #: ../src/guestfs-actions.pod:6383
18690 msgid "guestfs_strings"
18695 #: ../src/guestfs-actions.pod:6385
18699 " guestfs_strings (guestfs_h *g,\n"
18700 " const char *path);\n"
18706 #: ../src/guestfs-actions.pod:6389 ../fish/guestfish-actions.pod:4324
18708 "This runs the L<strings(1)> command on a file and returns the list of "
18709 "printable strings found."
18714 #: ../src/guestfs-actions.pod:6401
18715 msgid "guestfs_strings_e"
18720 #: ../src/guestfs-actions.pod:6403
18724 " guestfs_strings_e (guestfs_h *g,\n"
18725 " const char *encoding,\n"
18726 " const char *path);\n"
18732 #: ../src/guestfs-actions.pod:6408
18734 "This is like the C<guestfs_strings> command, but allows you to specify the "
18735 "encoding of strings that are looked for in the source file C<path>."
18740 #: ../src/guestfs-actions.pod:6412 ../fish/guestfish-actions.pod:4338
18741 msgid "Allowed encodings are:"
18746 #: ../src/guestfs-actions.pod:6416 ../fish/guestfish-actions.pod:4342
18752 #: ../src/guestfs-actions.pod:6418
18754 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
18755 "ISO-8859-X (this is what C<guestfs_strings> uses)."
18760 #: ../src/guestfs-actions.pod:6421 ../fish/guestfish-actions.pod:4347
18766 #: ../src/guestfs-actions.pod:6423 ../fish/guestfish-actions.pod:4349
18767 msgid "Single 8-bit-byte characters."
18772 #: ../src/guestfs-actions.pod:6425 ../fish/guestfish-actions.pod:4351
18778 #: ../src/guestfs-actions.pod:6427 ../fish/guestfish-actions.pod:4353
18779 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
18784 #: ../src/guestfs-actions.pod:6430 ../fish/guestfish-actions.pod:4356
18785 msgid "l (lower case letter L)"
18790 #: ../src/guestfs-actions.pod:6432 ../fish/guestfish-actions.pod:4358
18792 "16-bit little endian such as UTF-16LE and UCS-2LE. This is useful for "
18793 "examining binaries in Windows guests."
18798 #: ../src/guestfs-actions.pod:6435 ../fish/guestfish-actions.pod:4361
18804 #: ../src/guestfs-actions.pod:6437 ../fish/guestfish-actions.pod:4363
18805 msgid "32-bit big endian such as UCS-4BE."
18810 #: ../src/guestfs-actions.pod:6439 ../fish/guestfish-actions.pod:4365
18816 #: ../src/guestfs-actions.pod:6441 ../fish/guestfish-actions.pod:4367
18817 msgid "32-bit little endian such as UCS-4LE."
18822 #: ../src/guestfs-actions.pod:6445 ../fish/guestfish-actions.pod:4371
18823 msgid "The returned strings are transcoded to UTF-8."
18828 #: ../src/guestfs-actions.pod:6456
18829 msgid "guestfs_swapoff_device"
18834 #: ../src/guestfs-actions.pod:6458
18838 " guestfs_swapoff_device (guestfs_h *g,\n"
18839 " const char *device);\n"
18845 #: ../src/guestfs-actions.pod:6462
18847 "This command disables the libguestfs appliance swap device or partition "
18848 "named C<device>. See C<guestfs_swapon_device>."
18853 #: ../src/guestfs-actions.pod:6470
18854 msgid "guestfs_swapoff_file"
18859 #: ../src/guestfs-actions.pod:6472
18863 " guestfs_swapoff_file (guestfs_h *g,\n"
18864 " const char *file);\n"
18870 #: ../src/guestfs-actions.pod:6476 ../fish/guestfish-actions.pod:4388
18871 msgid "This command disables the libguestfs appliance swap on file."
18876 #: ../src/guestfs-actions.pod:6482
18877 msgid "guestfs_swapoff_label"
18882 #: ../src/guestfs-actions.pod:6484
18886 " guestfs_swapoff_label (guestfs_h *g,\n"
18887 " const char *label);\n"
18893 #: ../src/guestfs-actions.pod:6488 ../fish/guestfish-actions.pod:4394
18895 "This command disables the libguestfs appliance swap on labeled swap "
18901 #: ../src/guestfs-actions.pod:6495
18902 msgid "guestfs_swapoff_uuid"
18907 #: ../src/guestfs-actions.pod:6497
18911 " guestfs_swapoff_uuid (guestfs_h *g,\n"
18912 " const char *uuid);\n"
18918 #: ../src/guestfs-actions.pod:6501 ../fish/guestfish-actions.pod:4401
18920 "This command disables the libguestfs appliance swap partition with the given "
18926 #: ../src/guestfs-actions.pod:6508
18927 msgid "guestfs_swapon_device"
18932 #: ../src/guestfs-actions.pod:6510
18936 " guestfs_swapon_device (guestfs_h *g,\n"
18937 " const char *device);\n"
18943 #: ../src/guestfs-actions.pod:6514
18945 "This command enables the libguestfs appliance to use the swap device or "
18946 "partition named C<device>. The increased memory is made available for all "
18947 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
18952 #: ../src/guestfs-actions.pod:6519 ../fish/guestfish-actions.pod:4413
18954 "Note that you should not swap to existing guest swap partitions unless you "
18955 "know what you are doing. They may contain hibernation information, or other "
18956 "information that the guest doesn't want you to trash. You also risk leaking "
18957 "information about the host to the guest this way. Instead, attach a new "
18958 "host device to the guest and swap on that."
18963 #: ../src/guestfs-actions.pod:6530
18964 msgid "guestfs_swapon_file"
18969 #: ../src/guestfs-actions.pod:6532
18973 " guestfs_swapon_file (guestfs_h *g,\n"
18974 " const char *file);\n"
18980 #: ../src/guestfs-actions.pod:6536
18982 "This command enables swap to a file. See C<guestfs_swapon_device> for other "
18988 #: ../src/guestfs-actions.pod:6543
18989 msgid "guestfs_swapon_label"
18994 #: ../src/guestfs-actions.pod:6545
18998 " guestfs_swapon_label (guestfs_h *g,\n"
18999 " const char *label);\n"
19005 #: ../src/guestfs-actions.pod:6549
19007 "This command enables swap to a labeled swap partition. See "
19008 "C<guestfs_swapon_device> for other notes."
19013 #: ../src/guestfs-actions.pod:6556
19014 msgid "guestfs_swapon_uuid"
19019 #: ../src/guestfs-actions.pod:6558
19023 " guestfs_swapon_uuid (guestfs_h *g,\n"
19024 " const char *uuid);\n"
19030 #: ../src/guestfs-actions.pod:6562
19032 "This command enables swap to a swap partition with the given UUID. See "
19033 "C<guestfs_swapon_device> for other notes."
19038 #: ../src/guestfs-actions.pod:6569
19039 msgid "guestfs_sync"
19044 #: ../src/guestfs-actions.pod:6571
19048 " guestfs_sync (guestfs_h *g);\n"
19054 #: ../src/guestfs-actions.pod:6574 ../fish/guestfish-actions.pod:4445
19056 "This syncs the disk, so that any writes are flushed through to the "
19057 "underlying disk image."
19062 #: ../src/guestfs-actions.pod:6577 ../fish/guestfish-actions.pod:4448
19064 "You should always call this if you have modified a disk image, before "
19065 "closing the handle."
19070 #: ../src/guestfs-actions.pod:6584
19071 msgid "guestfs_tail"
19076 #: ../src/guestfs-actions.pod:6586
19080 " guestfs_tail (guestfs_h *g,\n"
19081 " const char *path);\n"
19087 #: ../src/guestfs-actions.pod:6590 ../fish/guestfish-actions.pod:4455
19089 "This command returns up to the last 10 lines of a file as a list of strings."
19094 #: ../src/guestfs-actions.pod:6602
19095 msgid "guestfs_tail_n"
19100 #: ../src/guestfs-actions.pod:6604
19104 " guestfs_tail_n (guestfs_h *g,\n"
19106 " const char *path);\n"
19112 #: ../src/guestfs-actions.pod:6609 ../fish/guestfish-actions.pod:4465
19114 "If the parameter C<nrlines> is a positive number, this returns the last "
19115 "C<nrlines> lines of the file C<path>."
19120 #: ../src/guestfs-actions.pod:6612 ../fish/guestfish-actions.pod:4468
19122 "If the parameter C<nrlines> is a negative number, this returns lines from "
19123 "the file C<path>, starting with the C<-nrlines>th line."
19128 #: ../src/guestfs-actions.pod:6626
19129 msgid "guestfs_tar_in"
19134 #: ../src/guestfs-actions.pod:6628
19138 " guestfs_tar_in (guestfs_h *g,\n"
19139 " const char *tarfile,\n"
19140 " const char *directory);\n"
19146 #: ../src/guestfs-actions.pod:6633 ../fish/guestfish-actions.pod:4480
19148 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
19149 "tar file) into C<directory>."
19154 #: ../src/guestfs-actions.pod:6636
19156 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
19161 #: ../src/guestfs-actions.pod:6641 ../src/guestfs-actions.pod:6658
19162 #: ../src/guestfs-actions.pod:6674 ../src/guestfs-actions.pod:6690
19163 msgid "(Added in 1.0.3)"
19168 #: ../src/guestfs-actions.pod:6643
19169 msgid "guestfs_tar_out"
19174 #: ../src/guestfs-actions.pod:6645
19178 " guestfs_tar_out (guestfs_h *g,\n"
19179 " const char *directory,\n"
19180 " const char *tarfile);\n"
19186 #: ../src/guestfs-actions.pod:6650 ../fish/guestfish-actions.pod:4492
19188 "This command packs the contents of C<directory> and downloads it to local "
19194 #: ../src/guestfs-actions.pod:6653
19196 "To download a compressed tarball, use C<guestfs_tgz_out> or "
19197 "C<guestfs_txz_out>."
19202 #: ../src/guestfs-actions.pod:6660
19203 msgid "guestfs_tgz_in"
19208 #: ../src/guestfs-actions.pod:6662
19212 " guestfs_tgz_in (guestfs_h *g,\n"
19213 " const char *tarball,\n"
19214 " const char *directory);\n"
19220 #: ../src/guestfs-actions.pod:6667 ../fish/guestfish-actions.pod:4504
19222 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
19223 "tar file) into C<directory>."
19228 #: ../src/guestfs-actions.pod:6670
19229 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
19234 #: ../src/guestfs-actions.pod:6676
19235 msgid "guestfs_tgz_out"
19240 #: ../src/guestfs-actions.pod:6678
19244 " guestfs_tgz_out (guestfs_h *g,\n"
19245 " const char *directory,\n"
19246 " const char *tarball);\n"
19252 #: ../src/guestfs-actions.pod:6683 ../fish/guestfish-actions.pod:4515
19254 "This command packs the contents of C<directory> and downloads it to local "
19260 #: ../src/guestfs-actions.pod:6686
19261 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
19266 #: ../src/guestfs-actions.pod:6692
19267 msgid "guestfs_touch"
19272 #: ../src/guestfs-actions.pod:6694
19276 " guestfs_touch (guestfs_h *g,\n"
19277 " const char *path);\n"
19283 #: ../src/guestfs-actions.pod:6698 ../fish/guestfish-actions.pod:4526
19285 "Touch acts like the L<touch(1)> command. It can be used to update the "
19286 "timestamps on a file, or, if the file does not exist, to create a new zero-"
19292 #: ../src/guestfs-actions.pod:6702 ../fish/guestfish-actions.pod:4530
19294 "This command only works on regular files, and will fail on other file types "
19295 "such as directories, symbolic links, block special etc."
19300 #: ../src/guestfs-actions.pod:6709
19301 msgid "guestfs_truncate"
19306 #: ../src/guestfs-actions.pod:6711
19310 " guestfs_truncate (guestfs_h *g,\n"
19311 " const char *path);\n"
19317 #: ../src/guestfs-actions.pod:6715 ../fish/guestfish-actions.pod:4537
19319 "This command truncates C<path> to a zero-length file. The file must exist "
19325 #: ../src/guestfs-actions.pod:6722
19326 msgid "guestfs_truncate_size"
19331 #: ../src/guestfs-actions.pod:6724
19335 " guestfs_truncate_size (guestfs_h *g,\n"
19336 " const char *path,\n"
19337 " int64_t size);\n"
19343 #: ../src/guestfs-actions.pod:6729 ../fish/guestfish-actions.pod:4544
19345 "This command truncates C<path> to size C<size> bytes. The file must exist "
19351 #: ../src/guestfs-actions.pod:6732
19353 "If the current file size is less than C<size> then the file is extended to "
19354 "the required size with zero bytes. This creates a sparse file (ie. disk "
19355 "blocks are not allocated for the file until you write to it). To create a "
19356 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
19361 #: ../src/guestfs-actions.pod:6742
19362 msgid "guestfs_tune2fs_l"
19367 #: ../src/guestfs-actions.pod:6744
19371 " guestfs_tune2fs_l (guestfs_h *g,\n"
19372 " const char *device);\n"
19378 #: ../src/guestfs-actions.pod:6748 ../fish/guestfish-actions.pod:4557
19380 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
19386 #: ../src/guestfs-actions.pod:6751 ../fish/guestfish-actions.pod:4560
19388 "It is the same as running C<tune2fs -l device>. See L<tune2fs(8)> manpage "
19389 "for more details. The list of fields returned isn't clearly defined, and "
19390 "depends on both the version of C<tune2fs> that libguestfs was built against, "
19391 "and the filesystem itself."
19396 #: ../src/guestfs-actions.pod:6764
19397 msgid "guestfs_txz_in"
19402 #: ../src/guestfs-actions.pod:6766
19406 " guestfs_txz_in (guestfs_h *g,\n"
19407 " const char *tarball,\n"
19408 " const char *directory);\n"
19414 #: ../src/guestfs-actions.pod:6771 ../fish/guestfish-actions.pod:4569
19416 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
19417 "tar file) into C<directory>."
19422 #: ../src/guestfs-actions.pod:6778
19423 msgid "guestfs_txz_out"
19428 #: ../src/guestfs-actions.pod:6780
19432 " guestfs_txz_out (guestfs_h *g,\n"
19433 " const char *directory,\n"
19434 " const char *tarball);\n"
19440 #: ../src/guestfs-actions.pod:6785 ../fish/guestfish-actions.pod:4578
19442 "This command packs the contents of C<directory> and downloads it to local "
19443 "file C<tarball> (as an xz compressed tar archive)."
19448 #: ../src/guestfs-actions.pod:6792
19449 msgid "guestfs_umask"
19454 #: ../src/guestfs-actions.pod:6794
19458 " guestfs_umask (guestfs_h *g,\n"
19465 #: ../src/guestfs-actions.pod:6798 ../fish/guestfish-actions.pod:4587
19467 "This function sets the mask used for creating new files and device nodes to "
19473 #: ../src/guestfs-actions.pod:6801 ../fish/guestfish-actions.pod:4590
19475 "Typical umask values would be C<022> which creates new files with "
19476 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
19477 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
19482 #: ../src/guestfs-actions.pod:6806 ../fish/guestfish-actions.pod:4595
19484 "The default umask is C<022>. This is important because it means that "
19485 "directories and device nodes will be created with C<0644> or C<0755> mode "
19486 "even if you specify C<0777>."
19491 #: ../src/guestfs-actions.pod:6810
19493 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
19494 "C<guestfs_mkdir>."
19499 #: ../src/guestfs-actions.pod:6813 ../fish/guestfish-actions.pod:4602
19500 msgid "This call returns the previous umask."
19505 #: ../src/guestfs-actions.pod:6819
19506 msgid "guestfs_umount"
19511 #: ../src/guestfs-actions.pod:6821
19515 " guestfs_umount (guestfs_h *g,\n"
19516 " const char *pathordevice);\n"
19522 #: ../src/guestfs-actions.pod:6825 ../fish/guestfish-actions.pod:4610
19524 "This unmounts the given filesystem. The filesystem may be specified either "
19525 "by its mountpoint (path) or the device which contains the filesystem."
19530 #: ../src/guestfs-actions.pod:6833
19531 msgid "guestfs_umount_all"
19536 #: ../src/guestfs-actions.pod:6835
19540 " guestfs_umount_all (guestfs_h *g);\n"
19546 #: ../src/guestfs-actions.pod:6838 ../fish/guestfish-actions.pod:4620
19547 msgid "This unmounts all mounted filesystems."
19552 #: ../src/guestfs-actions.pod:6840 ../fish/guestfish-actions.pod:4622
19553 msgid "Some internal mounts are not unmounted by this call."
19558 #: ../src/guestfs-actions.pod:6846
19559 msgid "guestfs_upload"
19564 #: ../src/guestfs-actions.pod:6848
19568 " guestfs_upload (guestfs_h *g,\n"
19569 " const char *filename,\n"
19570 " const char *remotefilename);\n"
19576 #: ../src/guestfs-actions.pod:6853 ../src/guestfs-actions.pod:6877
19577 #: ../fish/guestfish-actions.pod:4628 ../fish/guestfish-actions.pod:4641
19578 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
19583 #: ../src/guestfs-actions.pod:6858
19584 msgid "See also C<guestfs_download>."
19589 #: ../src/guestfs-actions.pod:6869
19590 msgid "guestfs_upload_offset"
19595 #: ../src/guestfs-actions.pod:6871
19599 " guestfs_upload_offset (guestfs_h *g,\n"
19600 " const char *filename,\n"
19601 " const char *remotefilename,\n"
19602 " int64_t offset);\n"
19608 #: ../src/guestfs-actions.pod:6880 ../fish/guestfish-actions.pod:4644
19610 "C<remotefilename> is overwritten starting at the byte C<offset> specified. "
19611 "The intention is to overwrite parts of existing files or devices, although "
19612 "if a non-existant file is specified then it is created with a \"hole\" "
19613 "before C<offset>. The size of the data written is implicit in the size of "
19614 "the source C<filename>."
19619 #: ../src/guestfs-actions.pod:6887
19621 "Note that there is no limit on the amount of data that can be uploaded with "
19622 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
19623 "full amount unless an error occurs."
19628 #: ../src/guestfs-actions.pod:6892
19629 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
19634 #: ../src/guestfs-actions.pod:6903
19635 msgid "guestfs_utimens"
19640 #: ../src/guestfs-actions.pod:6905
19644 " guestfs_utimens (guestfs_h *g,\n"
19645 " const char *path,\n"
19646 " int64_t atsecs,\n"
19647 " int64_t atnsecs,\n"
19648 " int64_t mtsecs,\n"
19649 " int64_t mtnsecs);\n"
19655 #: ../src/guestfs-actions.pod:6913 ../fish/guestfish-actions.pod:4664
19656 msgid "This command sets the timestamps of a file with nanosecond precision."
19661 #: ../src/guestfs-actions.pod:6916 ../fish/guestfish-actions.pod:4667
19663 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
19669 #: ../src/guestfs-actions.pod:6919 ../fish/guestfish-actions.pod:4670
19671 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
19672 "nanoseconds from the epoch."
19677 #: ../src/guestfs-actions.pod:6922 ../fish/guestfish-actions.pod:4673
19679 "If the C<*nsecs> field contains the special value C<-1> then the "
19680 "corresponding timestamp is set to the current time. (The C<*secs> field is "
19681 "ignored in this case)."
19686 #: ../src/guestfs-actions.pod:6926 ../fish/guestfish-actions.pod:4677
19688 "If the C<*nsecs> field contains the special value C<-2> then the "
19689 "corresponding timestamp is left unchanged. (The C<*secs> field is ignored "
19695 #: ../src/guestfs-actions.pod:6934 ../src/guestfs-structs.pod:175
19696 msgid "guestfs_version"
19701 #: ../src/guestfs-actions.pod:6936
19704 " struct guestfs_version *\n"
19705 " guestfs_version (guestfs_h *g);\n"
19711 #: ../src/guestfs-actions.pod:6939 ../fish/guestfish-actions.pod:4685
19713 "Return the libguestfs version number that the program is linked against."
19718 #: ../src/guestfs-actions.pod:6942 ../fish/guestfish-actions.pod:4688
19720 "Note that because of dynamic linking this is not necessarily the version of "
19721 "libguestfs that you compiled against. You can compile the program, and then "
19722 "at runtime dynamically link against a completely different C<libguestfs.so> "
19728 #: ../src/guestfs-actions.pod:6947 ../fish/guestfish-actions.pod:4693
19730 "This call was added in version C<1.0.58>. In previous versions of "
19731 "libguestfs there was no way to get the version number. From C code you can "
19732 "use dynamic linker functions to find out if this symbol exists (if it "
19733 "doesn't, then it's an earlier version)."
19738 #: ../src/guestfs-actions.pod:6953 ../fish/guestfish-actions.pod:4699
19740 "The call returns a structure with four elements. The first three (C<major>, "
19741 "C<minor> and C<release>) are numbers and correspond to the usual version "
19742 "triplet. The fourth element (C<extra>) is a string and is normally empty, "
19743 "but may be used for distro-specific information."
19748 #: ../src/guestfs-actions.pod:6959 ../fish/guestfish-actions.pod:4705
19750 "To construct the original version string: C<$major.$minor.$release$extra>"
19755 #: ../src/guestfs-actions.pod:6962 ../fish/guestfish-actions.pod:4708
19756 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
19761 #: ../src/guestfs-actions.pod:6964
19763 "I<Note:> Don't use this call to test for availability of features. In "
19764 "enterprise distributions we backport features from later versions into "
19765 "earlier versions, making this an unreliable way to test for features. Use "
19766 "C<guestfs_available> instead."
19771 #: ../src/guestfs-actions.pod:6970
19773 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
19774 "error. I<The caller must call C<guestfs_free_version> after use>."
19779 #: ../src/guestfs-actions.pod:6974
19780 msgid "(Added in 1.0.58)"
19785 #: ../src/guestfs-actions.pod:6976
19786 msgid "guestfs_vfs_label"
19791 #: ../src/guestfs-actions.pod:6978
19795 " guestfs_vfs_label (guestfs_h *g,\n"
19796 " const char *device);\n"
19802 #: ../src/guestfs-actions.pod:6982 ../fish/guestfish-actions.pod:4720
19803 msgid "This returns the filesystem label of the filesystem on C<device>."
19808 #: ../src/guestfs-actions.pod:6985 ../fish/guestfish-actions.pod:4723
19809 msgid "If the filesystem is unlabeled, this returns the empty string."
19814 #: ../src/guestfs-actions.pod:6987
19815 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
19820 #: ../src/guestfs-actions.pod:6992 ../src/guestfs-actions.pod:7029
19821 msgid "(Added in 1.3.18)"
19826 #: ../src/guestfs-actions.pod:6994
19827 msgid "guestfs_vfs_type"
19832 #: ../src/guestfs-actions.pod:6996
19836 " guestfs_vfs_type (guestfs_h *g,\n"
19837 " const char *device);\n"
19843 #: ../src/guestfs-actions.pod:7000 ../fish/guestfish-actions.pod:4731
19845 "This command gets the filesystem type corresponding to the filesystem on "
19851 #: ../src/guestfs-actions.pod:7003 ../fish/guestfish-actions.pod:4734
19853 "For most filesystems, the result is the name of the Linux VFS module which "
19854 "would be used to mount this filesystem if you mounted it without specifying "
19855 "the filesystem type. For example a string such as C<ext3> or C<ntfs>."
19860 #: ../src/guestfs-actions.pod:7013
19861 msgid "guestfs_vfs_uuid"
19866 #: ../src/guestfs-actions.pod:7015
19870 " guestfs_vfs_uuid (guestfs_h *g,\n"
19871 " const char *device);\n"
19877 #: ../src/guestfs-actions.pod:7019 ../fish/guestfish-actions.pod:4743
19878 msgid "This returns the filesystem UUID of the filesystem on C<device>."
19883 #: ../src/guestfs-actions.pod:7022 ../fish/guestfish-actions.pod:4746
19884 msgid "If the filesystem does not have a UUID, this returns the empty string."
19889 #: ../src/guestfs-actions.pod:7024
19890 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
19895 #: ../src/guestfs-actions.pod:7031
19896 msgid "guestfs_vg_activate"
19901 #: ../src/guestfs-actions.pod:7033
19905 " guestfs_vg_activate (guestfs_h *g,\n"
19907 " char *const *volgroups);\n"
19913 #: ../src/guestfs-actions.pod:7038 ../fish/guestfish-actions.pod:4754
19915 "This command activates or (if C<activate> is false) deactivates all logical "
19916 "volumes in the listed volume groups C<volgroups>. If activated, then they "
19917 "are made known to the kernel, ie. they appear as C</dev/mapper> devices. If "
19918 "deactivated, then those devices disappear."
19923 #: ../src/guestfs-actions.pod:7044 ../fish/guestfish-actions.pod:4760
19924 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
19929 #: ../src/guestfs-actions.pod:7046 ../fish/guestfish-actions.pod:4762
19931 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
19932 "activated or deactivated."
19937 #: ../src/guestfs-actions.pod:7053
19938 msgid "guestfs_vg_activate_all"
19943 #: ../src/guestfs-actions.pod:7055
19947 " guestfs_vg_activate_all (guestfs_h *g,\n"
19948 " int activate);\n"
19954 #: ../src/guestfs-actions.pod:7059 ../fish/guestfish-actions.pod:4769
19956 "This command activates or (if C<activate> is false) deactivates all logical "
19957 "volumes in all volume groups. If activated, then they are made known to the "
19958 "kernel, ie. they appear as C</dev/mapper> devices. If deactivated, then "
19959 "those devices disappear."
19964 #: ../src/guestfs-actions.pod:7065 ../fish/guestfish-actions.pod:4775
19965 msgid "This command is the same as running C<vgchange -a y|n>"
19970 #: ../src/guestfs-actions.pod:7071
19971 msgid "guestfs_vgcreate"
19976 #: ../src/guestfs-actions.pod:7073
19980 " guestfs_vgcreate (guestfs_h *g,\n"
19981 " const char *volgroup,\n"
19982 " char *const *physvols);\n"
19988 #: ../src/guestfs-actions.pod:7078 ../fish/guestfish-actions.pod:4781
19990 "This creates an LVM volume group called C<volgroup> from the non-empty list "
19991 "of physical volumes C<physvols>."
19996 #: ../src/guestfs-actions.pod:7085
19997 msgid "guestfs_vglvuuids"
20002 #: ../src/guestfs-actions.pod:7087
20006 " guestfs_vglvuuids (guestfs_h *g,\n"
20007 " const char *vgname);\n"
20013 #: ../src/guestfs-actions.pod:7091 ../fish/guestfish-actions.pod:4788
20015 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
20016 "volumes created in this volume group."
20021 #: ../src/guestfs-actions.pod:7094
20023 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
20024 "associate logical volumes and volume groups."
20029 #: ../src/guestfs-actions.pod:7097
20030 msgid "See also C<guestfs_vgpvuuids>."
20035 #: ../src/guestfs-actions.pod:7105
20036 msgid "guestfs_vgpvuuids"
20041 #: ../src/guestfs-actions.pod:7107
20045 " guestfs_vgpvuuids (guestfs_h *g,\n"
20046 " const char *vgname);\n"
20052 #: ../src/guestfs-actions.pod:7111 ../fish/guestfish-actions.pod:4800
20054 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
20055 "volumes that this volume group resides on."
20060 #: ../src/guestfs-actions.pod:7114
20062 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
20063 "associate physical volumes and volume groups."
20068 #: ../src/guestfs-actions.pod:7117
20069 msgid "See also C<guestfs_vglvuuids>."
20074 #: ../src/guestfs-actions.pod:7125
20075 msgid "guestfs_vgremove"
20080 #: ../src/guestfs-actions.pod:7127
20084 " guestfs_vgremove (guestfs_h *g,\n"
20085 " const char *vgname);\n"
20091 #: ../src/guestfs-actions.pod:7131 ../fish/guestfish-actions.pod:4812
20092 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
20097 #: ../src/guestfs-actions.pod:7133 ../fish/guestfish-actions.pod:4814
20099 "This also forcibly removes all logical volumes in the volume group (if any)."
20104 #: ../src/guestfs-actions.pod:7140
20105 msgid "guestfs_vgrename"
20110 #: ../src/guestfs-actions.pod:7142
20114 " guestfs_vgrename (guestfs_h *g,\n"
20115 " const char *volgroup,\n"
20116 " const char *newvolgroup);\n"
20122 #: ../src/guestfs-actions.pod:7147 ../fish/guestfish-actions.pod:4821
20123 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
20128 #: ../src/guestfs-actions.pod:7153
20129 msgid "guestfs_vgs"
20134 #: ../src/guestfs-actions.pod:7155
20138 " guestfs_vgs (guestfs_h *g);\n"
20144 #: ../src/guestfs-actions.pod:7158 ../fish/guestfish-actions.pod:4827
20146 "List all the volumes groups detected. This is the equivalent of the L<vgs(8)"
20152 #: ../src/guestfs-actions.pod:7161 ../fish/guestfish-actions.pod:4830
20154 "This returns a list of just the volume group names that were detected (eg. "
20160 #: ../src/guestfs-actions.pod:7164
20161 msgid "See also C<guestfs_vgs_full>."
20166 #: ../src/guestfs-actions.pod:7172
20167 msgid "guestfs_vgs_full"
20172 #: ../src/guestfs-actions.pod:7174
20175 " struct guestfs_lvm_vg_list *\n"
20176 " guestfs_vgs_full (guestfs_h *g);\n"
20182 #: ../src/guestfs-actions.pod:7177 ../fish/guestfish-actions.pod:4839
20184 "List all the volumes groups detected. This is the equivalent of the L<vgs(8)"
20185 "> command. The \"full\" version includes all fields."
20190 #: ../src/guestfs-actions.pod:7180
20192 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
20193 "was an error. I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
20198 #: ../src/guestfs-actions.pod:7186
20199 msgid "guestfs_vgscan"
20204 #: ../src/guestfs-actions.pod:7188
20208 " guestfs_vgscan (guestfs_h *g);\n"
20214 #: ../src/guestfs-actions.pod:7191 ../fish/guestfish-actions.pod:4846
20216 "This rescans all block devices and rebuilds the list of LVM physical "
20217 "volumes, volume groups and logical volumes."
20222 #: ../src/guestfs-actions.pod:7198
20223 msgid "guestfs_vguuid"
20228 #: ../src/guestfs-actions.pod:7200
20232 " guestfs_vguuid (guestfs_h *g,\n"
20233 " const char *vgname);\n"
20239 #: ../src/guestfs-actions.pod:7204 ../fish/guestfish-actions.pod:4853
20240 msgid "This command returns the UUID of the LVM VG named C<vgname>."
20245 #: ../src/guestfs-actions.pod:7211
20246 msgid "guestfs_wait_ready"
20251 #: ../src/guestfs-actions.pod:7213
20255 " guestfs_wait_ready (guestfs_h *g);\n"
20261 #: ../src/guestfs-actions.pod:7216
20262 msgid "This function is a no op."
20267 #: ../src/guestfs-actions.pod:7218
20269 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
20270 "calling C<guestfs_launch> to wait for the launch to complete. However this "
20271 "is no longer necessary because C<guestfs_launch> now does the waiting."
20276 #: ../src/guestfs-actions.pod:7223
20278 "If you see any calls to this function in code then you can just remove them, "
20279 "unless you want to retain compatibility with older versions of the API."
20283 #: ../src/guestfs-actions.pod:7229
20285 "This function is deprecated. In new code, use the C<launch> call instead."
20290 #: ../src/guestfs-actions.pod:7238
20291 msgid "guestfs_wc_c"
20296 #: ../src/guestfs-actions.pod:7240
20300 " guestfs_wc_c (guestfs_h *g,\n"
20301 " const char *path);\n"
20307 #: ../src/guestfs-actions.pod:7244 ../fish/guestfish-actions.pod:4859
20309 "This command counts the characters in a file, using the C<wc -c> external "
20315 #: ../src/guestfs-actions.pod:7251
20316 msgid "guestfs_wc_l"
20321 #: ../src/guestfs-actions.pod:7253
20325 " guestfs_wc_l (guestfs_h *g,\n"
20326 " const char *path);\n"
20332 #: ../src/guestfs-actions.pod:7257 ../fish/guestfish-actions.pod:4866
20334 "This command counts the lines in a file, using the C<wc -l> external command."
20339 #: ../src/guestfs-actions.pod:7264
20340 msgid "guestfs_wc_w"
20345 #: ../src/guestfs-actions.pod:7266
20349 " guestfs_wc_w (guestfs_h *g,\n"
20350 " const char *path);\n"
20356 #: ../src/guestfs-actions.pod:7270 ../fish/guestfish-actions.pod:4873
20358 "This command counts the words in a file, using the C<wc -w> external command."
20363 #: ../src/guestfs-actions.pod:7277
20364 msgid "guestfs_write"
20369 #: ../src/guestfs-actions.pod:7279
20373 " guestfs_write (guestfs_h *g,\n"
20374 " const char *path,\n"
20375 " const char *content,\n"
20376 " size_t content_size);\n"
20382 #: ../src/guestfs-actions.pod:7285 ../fish/guestfish-actions.pod:4880
20384 "This call creates a file called C<path>. The content of the file is the "
20385 "string C<content> (which can contain any 8 bit data)."
20390 #: ../src/guestfs-actions.pod:7295
20391 msgid "guestfs_write_file"
20396 #: ../src/guestfs-actions.pod:7297
20400 " guestfs_write_file (guestfs_h *g,\n"
20401 " const char *path,\n"
20402 " const char *content,\n"
20409 #: ../src/guestfs-actions.pod:7303 ../fish/guestfish-actions.pod:4890
20411 "This call creates a file called C<path>. The contents of the file is the "
20412 "string C<content> (which can contain any 8 bit data), with length C<size>."
20417 #: ../src/guestfs-actions.pod:7307 ../fish/guestfish-actions.pod:4894
20419 "As a special case, if C<size> is C<0> then the length is calculated using "
20420 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
20425 #: ../src/guestfs-actions.pod:7311 ../fish/guestfish-actions.pod:4898
20427 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
20428 "I<not> work, even if the length is specified."
20433 #: ../src/guestfs-actions.pod:7319 ../fish/guestfish-actions.pod:4904
20435 "This function is deprecated. In new code, use the C<write> call instead."
20440 #: ../src/guestfs-actions.pod:7328
20441 msgid "guestfs_zegrep"
20446 #: ../src/guestfs-actions.pod:7330
20450 " guestfs_zegrep (guestfs_h *g,\n"
20451 " const char *regex,\n"
20452 " const char *path);\n"
20458 #: ../src/guestfs-actions.pod:7335 ../fish/guestfish-actions.pod:4915
20460 "This calls the external C<zegrep> program and returns the matching lines."
20465 #: ../src/guestfs-actions.pod:7347
20466 msgid "guestfs_zegrepi"
20471 #: ../src/guestfs-actions.pod:7349
20475 " guestfs_zegrepi (guestfs_h *g,\n"
20476 " const char *regex,\n"
20477 " const char *path);\n"
20483 #: ../src/guestfs-actions.pod:7354 ../fish/guestfish-actions.pod:4925
20485 "This calls the external C<zegrep -i> program and returns the matching lines."
20490 #: ../src/guestfs-actions.pod:7366
20491 msgid "guestfs_zero"
20496 #: ../src/guestfs-actions.pod:7368
20500 " guestfs_zero (guestfs_h *g,\n"
20501 " const char *device);\n"
20507 #: ../src/guestfs-actions.pod:7372 ../fish/guestfish-actions.pod:4935
20508 msgid "This command writes zeroes over the first few blocks of C<device>."
20513 #: ../src/guestfs-actions.pod:7374 ../fish/guestfish-actions.pod:4937
20515 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
20516 "securely wipe the device). It should be sufficient to remove any partition "
20517 "tables, filesystem superblocks and so on."
20522 #: ../src/guestfs-actions.pod:7378
20523 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
20528 #: ../src/guestfs-actions.pod:7389
20529 msgid "guestfs_zero_device"
20534 #: ../src/guestfs-actions.pod:7391
20538 " guestfs_zero_device (guestfs_h *g,\n"
20539 " const char *device);\n"
20545 #: ../src/guestfs-actions.pod:7395
20547 "This command writes zeroes over the entire C<device>. Compare with "
20548 "C<guestfs_zero> which just zeroes the first few blocks of a device."
20553 #: ../src/guestfs-actions.pod:7409
20554 msgid "(Added in 1.3.1)"
20559 #: ../src/guestfs-actions.pod:7411
20560 msgid "guestfs_zerofree"
20565 #: ../src/guestfs-actions.pod:7413
20569 " guestfs_zerofree (guestfs_h *g,\n"
20570 " const char *device);\n"
20576 #: ../src/guestfs-actions.pod:7417 ../fish/guestfish-actions.pod:4958
20578 "This runs the I<zerofree> program on C<device>. This program claims to zero "
20579 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
20580 "possible to compress the filesystem more effectively."
20585 #: ../src/guestfs-actions.pod:7422 ../fish/guestfish-actions.pod:4963
20586 msgid "You should B<not> run this program if the filesystem is mounted."
20591 #: ../src/guestfs-actions.pod:7425 ../fish/guestfish-actions.pod:4966
20593 "It is possible that using this program can damage the filesystem or data on "
20599 #: ../src/guestfs-actions.pod:7432
20600 msgid "guestfs_zfgrep"
20605 #: ../src/guestfs-actions.pod:7434
20609 " guestfs_zfgrep (guestfs_h *g,\n"
20610 " const char *pattern,\n"
20611 " const char *path);\n"
20617 #: ../src/guestfs-actions.pod:7439 ../fish/guestfish-actions.pod:4973
20619 "This calls the external C<zfgrep> program and returns the matching lines."
20624 #: ../src/guestfs-actions.pod:7451
20625 msgid "guestfs_zfgrepi"
20630 #: ../src/guestfs-actions.pod:7453
20634 " guestfs_zfgrepi (guestfs_h *g,\n"
20635 " const char *pattern,\n"
20636 " const char *path);\n"
20642 #: ../src/guestfs-actions.pod:7458 ../fish/guestfish-actions.pod:4983
20644 "This calls the external C<zfgrep -i> program and returns the matching lines."
20649 #: ../src/guestfs-actions.pod:7470
20650 msgid "guestfs_zfile"
20655 #: ../src/guestfs-actions.pod:7472
20659 " guestfs_zfile (guestfs_h *g,\n"
20660 " const char *meth,\n"
20661 " const char *path);\n"
20667 #: ../src/guestfs-actions.pod:7477 ../fish/guestfish-actions.pod:4993
20669 "This command runs C<file> after first decompressing C<path> using C<method>."
20674 #: ../src/guestfs-actions.pod:7480 ../fish/guestfish-actions.pod:4996
20675 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
20680 #: ../src/guestfs-actions.pod:7482
20682 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
20688 #: ../src/guestfs-actions.pod:7488 ../fish/guestfish-actions.pod:5001
20690 "This function is deprecated. In new code, use the C<file> call instead."
20695 #: ../src/guestfs-actions.pod:7497
20696 msgid "guestfs_zgrep"
20701 #: ../src/guestfs-actions.pod:7499
20705 " guestfs_zgrep (guestfs_h *g,\n"
20706 " const char *regex,\n"
20707 " const char *path);\n"
20713 #: ../src/guestfs-actions.pod:7504 ../fish/guestfish-actions.pod:5012
20715 "This calls the external C<zgrep> program and returns the matching lines."
20720 #: ../src/guestfs-actions.pod:7516
20721 msgid "guestfs_zgrepi"
20726 #: ../src/guestfs-actions.pod:7518
20730 " guestfs_zgrepi (guestfs_h *g,\n"
20731 " const char *regex,\n"
20732 " const char *path);\n"
20738 #: ../src/guestfs-actions.pod:7523 ../fish/guestfish-actions.pod:5022
20740 "This calls the external C<zgrep -i> program and returns the matching lines."
20745 #: ../src/guestfs-availability.pod:3
20751 #: ../src/guestfs-availability.pod:5
20753 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> L</"
20754 "guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> L</"
20755 "guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> L</"
20756 "guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> L</guestfs_aug_rm> "
20757 "L</guestfs_aug_save> L</guestfs_aug_set>"
20762 #: ../src/guestfs-availability.pod:21
20768 #: ../src/guestfs-availability.pod:23
20770 "The following functions: L</guestfs_inotify_add_watch> L</"
20771 "guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> L</"
20772 "guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
20777 #: ../src/guestfs-availability.pod:31
20778 msgid "B<linuxfsuuid>"
20783 #: ../src/guestfs-availability.pod:33
20785 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> L</"
20786 "guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
20791 #: ../src/guestfs-availability.pod:40
20792 msgid "B<linuxmodules>"
20797 #: ../src/guestfs-availability.pod:42
20798 msgid "The following functions: L</guestfs_modprobe>"
20803 #: ../src/guestfs-availability.pod:45
20804 msgid "B<linuxxattrs>"
20809 #: ../src/guestfs-availability.pod:47
20811 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> L</"
20812 "guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> L</"
20813 "guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> L</"
20814 "guestfs_setxattr>"
20819 #: ../src/guestfs-availability.pod:58
20825 #: ../src/guestfs-availability.pod:60
20827 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> L</"
20828 "guestfs_luks_format> L</guestfs_luks_format_cipher> L</"
20829 "guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
20834 #: ../src/guestfs-availability.pod:69
20840 #: ../src/guestfs-availability.pod:71
20842 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> L</"
20843 "guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> L</"
20844 "guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> L</"
20845 "guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> L</"
20846 "guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> L</"
20847 "guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> L</"
20848 "guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> L</guestfs_vgs_full>"
20853 #: ../src/guestfs-availability.pod:94
20859 #: ../src/guestfs-availability.pod:96
20861 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> L</"
20862 "guestfs_mknod_b> L</guestfs_mknod_c>"
20867 #: ../src/guestfs-availability.pod:102
20873 #: ../src/guestfs-availability.pod:104
20874 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
20879 #: ../src/guestfs-availability.pod:107
20880 msgid "B<ntfsprogs>"
20885 #: ../src/guestfs-availability.pod:109
20887 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
20892 #: ../src/guestfs-availability.pod:113
20893 msgid "B<realpath>"
20898 #: ../src/guestfs-availability.pod:115
20899 msgid "The following functions: L</guestfs_realpath>"
20904 #: ../src/guestfs-availability.pod:118
20910 #: ../src/guestfs-availability.pod:120
20912 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> L</"
20913 "guestfs_scrub_freespace>"
20918 #: ../src/guestfs-availability.pod:125
20924 #: ../src/guestfs-availability.pod:127
20925 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
20930 #: ../src/guestfs-availability.pod:131
20936 #: ../src/guestfs-availability.pod:133
20937 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
20942 #: ../src/guestfs-availability.pod:137
20943 msgid "B<zerofree>"
20948 #: ../src/guestfs-availability.pod:139
20949 msgid "The following functions: L</guestfs_zerofree>"
20954 #: ../src/guestfs-structs.pod:1
20955 msgid "guestfs_int_bool"
20960 #: ../src/guestfs-structs.pod:3
20963 " struct guestfs_int_bool {\n"
20972 #: ../src/guestfs-structs.pod:8
20975 " struct guestfs_int_bool_list {\n"
20976 " uint32_t len; /* Number of elements in list. */\n"
20977 " struct guestfs_int_bool *val; /* Elements. */\n"
20984 #: ../src/guestfs-structs.pod:13
20987 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
20988 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
20994 #: ../src/guestfs-structs.pod:16
20995 msgid "guestfs_lvm_pv"
21000 #: ../src/guestfs-structs.pod:18
21003 " struct guestfs_lvm_pv {\n"
21004 " char *pv_name;\n"
21005 " /* The next field is NOT nul-terminated, be careful when printing it: */\n"
21006 " char pv_uuid[32];\n"
21008 " uint64_t pv_size;\n"
21009 " uint64_t dev_size;\n"
21010 " uint64_t pv_free;\n"
21011 " uint64_t pv_used;\n"
21012 " char *pv_attr;\n"
21013 " int64_t pv_pe_count;\n"
21014 " int64_t pv_pe_alloc_count;\n"
21015 " char *pv_tags;\n"
21016 " uint64_t pe_start;\n"
21017 " int64_t pv_mda_count;\n"
21018 " uint64_t pv_mda_free;\n"
21025 #: ../src/guestfs-structs.pod:36
21028 " struct guestfs_lvm_pv_list {\n"
21029 " uint32_t len; /* Number of elements in list. */\n"
21030 " struct guestfs_lvm_pv *val; /* Elements. */\n"
21037 #: ../src/guestfs-structs.pod:41
21040 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
21041 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
21047 #: ../src/guestfs-structs.pod:44
21048 msgid "guestfs_lvm_vg"
21053 #: ../src/guestfs-structs.pod:46
21056 " struct guestfs_lvm_vg {\n"
21057 " char *vg_name;\n"
21058 " /* The next field is NOT nul-terminated, be careful when printing it: */\n"
21059 " char vg_uuid[32];\n"
21061 " char *vg_attr;\n"
21062 " uint64_t vg_size;\n"
21063 " uint64_t vg_free;\n"
21064 " char *vg_sysid;\n"
21065 " uint64_t vg_extent_size;\n"
21066 " int64_t vg_extent_count;\n"
21067 " int64_t vg_free_count;\n"
21068 " int64_t max_lv;\n"
21069 " int64_t max_pv;\n"
21070 " int64_t pv_count;\n"
21071 " int64_t lv_count;\n"
21072 " int64_t snap_count;\n"
21073 " int64_t vg_seqno;\n"
21074 " char *vg_tags;\n"
21075 " int64_t vg_mda_count;\n"
21076 " uint64_t vg_mda_free;\n"
21083 #: ../src/guestfs-structs.pod:69
21086 " struct guestfs_lvm_vg_list {\n"
21087 " uint32_t len; /* Number of elements in list. */\n"
21088 " struct guestfs_lvm_vg *val; /* Elements. */\n"
21095 #: ../src/guestfs-structs.pod:74
21098 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
21099 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
21105 #: ../src/guestfs-structs.pod:77
21106 msgid "guestfs_lvm_lv"
21111 #: ../src/guestfs-structs.pod:79
21114 " struct guestfs_lvm_lv {\n"
21115 " char *lv_name;\n"
21116 " /* The next field is NOT nul-terminated, be careful when printing it: */\n"
21117 " char lv_uuid[32];\n"
21118 " char *lv_attr;\n"
21119 " int64_t lv_major;\n"
21120 " int64_t lv_minor;\n"
21121 " int64_t lv_kernel_major;\n"
21122 " int64_t lv_kernel_minor;\n"
21123 " uint64_t lv_size;\n"
21124 " int64_t seg_count;\n"
21126 " /* The next field is [0..100] or -1 meaning 'not present': */\n"
21127 " float snap_percent;\n"
21128 " /* The next field is [0..100] or -1 meaning 'not present': */\n"
21129 " float copy_percent;\n"
21130 " char *move_pv;\n"
21131 " char *lv_tags;\n"
21132 " char *mirror_log;\n"
21133 " char *modules;\n"
21140 #: ../src/guestfs-structs.pod:101
21143 " struct guestfs_lvm_lv_list {\n"
21144 " uint32_t len; /* Number of elements in list. */\n"
21145 " struct guestfs_lvm_lv *val; /* Elements. */\n"
21152 #: ../src/guestfs-structs.pod:106
21155 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
21156 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
21162 #: ../src/guestfs-structs.pod:111
21165 " struct guestfs_stat {\n"
21169 " int64_t nlink;\n"
21174 " int64_t blksize;\n"
21175 " int64_t blocks;\n"
21176 " int64_t atime;\n"
21177 " int64_t mtime;\n"
21178 " int64_t ctime;\n"
21185 #: ../src/guestfs-structs.pod:127
21188 " struct guestfs_stat_list {\n"
21189 " uint32_t len; /* Number of elements in list. */\n"
21190 " struct guestfs_stat *val; /* Elements. */\n"
21197 #: ../src/guestfs-structs.pod:132
21200 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
21201 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
21207 #: ../src/guestfs-structs.pod:137
21210 " struct guestfs_statvfs {\n"
21211 " int64_t bsize;\n"
21212 " int64_t frsize;\n"
21213 " int64_t blocks;\n"
21214 " int64_t bfree;\n"
21215 " int64_t bavail;\n"
21216 " int64_t files;\n"
21217 " int64_t ffree;\n"
21218 " int64_t favail;\n"
21221 " int64_t namemax;\n"
21228 #: ../src/guestfs-structs.pod:151
21231 " struct guestfs_statvfs_list {\n"
21232 " uint32_t len; /* Number of elements in list. */\n"
21233 " struct guestfs_statvfs *val; /* Elements. */\n"
21240 #: ../src/guestfs-structs.pod:156
21243 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
21244 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
21250 #: ../src/guestfs-structs.pod:159
21251 msgid "guestfs_dirent"
21256 #: ../src/guestfs-structs.pod:161
21259 " struct guestfs_dirent {\n"
21269 #: ../src/guestfs-structs.pod:167
21272 " struct guestfs_dirent_list {\n"
21273 " uint32_t len; /* Number of elements in list. */\n"
21274 " struct guestfs_dirent *val; /* Elements. */\n"
21281 #: ../src/guestfs-structs.pod:172
21284 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
21285 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
21291 #: ../src/guestfs-structs.pod:177
21294 " struct guestfs_version {\n"
21295 " int64_t major;\n"
21296 " int64_t minor;\n"
21297 " int64_t release;\n"
21305 #: ../src/guestfs-structs.pod:184
21308 " struct guestfs_version_list {\n"
21309 " uint32_t len; /* Number of elements in list. */\n"
21310 " struct guestfs_version *val; /* Elements. */\n"
21317 #: ../src/guestfs-structs.pod:189
21320 " void guestfs_free_version (struct guestfs_free_version *);\n"
21321 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
21327 #: ../src/guestfs-structs.pod:192
21328 msgid "guestfs_xattr"
21333 #: ../src/guestfs-structs.pod:194
21336 " struct guestfs_xattr {\n"
21337 " char *attrname;\n"
21338 " /* The next two fields describe a byte array. */\n"
21339 " uint32_t attrval_len;\n"
21340 " char *attrval;\n"
21347 #: ../src/guestfs-structs.pod:201
21350 " struct guestfs_xattr_list {\n"
21351 " uint32_t len; /* Number of elements in list. */\n"
21352 " struct guestfs_xattr *val; /* Elements. */\n"
21359 #: ../src/guestfs-structs.pod:206
21362 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
21363 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
21369 #: ../src/guestfs-structs.pod:209
21370 msgid "guestfs_inotify_event"
21375 #: ../src/guestfs-structs.pod:211
21378 " struct guestfs_inotify_event {\n"
21379 " int64_t in_wd;\n"
21380 " uint32_t in_mask;\n"
21381 " uint32_t in_cookie;\n"
21382 " char *in_name;\n"
21389 #: ../src/guestfs-structs.pod:218
21392 " struct guestfs_inotify_event_list {\n"
21393 " uint32_t len; /* Number of elements in list. */\n"
21394 " struct guestfs_inotify_event *val; /* Elements. */\n"
21401 #: ../src/guestfs-structs.pod:223
21404 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
21405 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
21411 #: ../src/guestfs-structs.pod:226
21412 msgid "guestfs_partition"
21417 #: ../src/guestfs-structs.pod:228
21420 " struct guestfs_partition {\n"
21421 " int32_t part_num;\n"
21422 " uint64_t part_start;\n"
21423 " uint64_t part_end;\n"
21424 " uint64_t part_size;\n"
21431 #: ../src/guestfs-structs.pod:235
21434 " struct guestfs_partition_list {\n"
21435 " uint32_t len; /* Number of elements in list. */\n"
21436 " struct guestfs_partition *val; /* Elements. */\n"
21443 #: ../src/guestfs-structs.pod:240
21446 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
21447 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
21453 #: ../src/guestfs-structs.pod:243
21454 msgid "guestfs_application"
21459 #: ../src/guestfs-structs.pod:245
21462 " struct guestfs_application {\n"
21463 " char *app_name;\n"
21464 " char *app_display_name;\n"
21465 " int32_t app_epoch;\n"
21466 " char *app_version;\n"
21467 " char *app_release;\n"
21468 " char *app_install_path;\n"
21469 " char *app_trans_path;\n"
21470 " char *app_publisher;\n"
21471 " char *app_url;\n"
21472 " char *app_source_package;\n"
21473 " char *app_summary;\n"
21474 " char *app_description;\n"
21481 #: ../src/guestfs-structs.pod:260
21484 " struct guestfs_application_list {\n"
21485 " uint32_t len; /* Number of elements in list. */\n"
21486 " struct guestfs_application *val; /* Elements. */\n"
21493 #: ../src/guestfs-structs.pod:265
21496 " void guestfs_free_application (struct guestfs_free_application *);\n"
21497 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
21503 #: ../fish/guestfish.pod:5
21504 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
21509 #: ../fish/guestfish.pod:9
21512 " guestfish [--options] [commands]\n"
21518 #: ../fish/guestfish.pod:11
21527 #: ../fish/guestfish.pod:13
21530 " guestfish [--ro|--rw] -a disk.img\n"
21536 #: ../fish/guestfish.pod:15
21539 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
21545 #: ../fish/guestfish.pod:17
21548 " guestfish -d libvirt-domain\n"
21554 #: ../fish/guestfish.pod:19
21557 " guestfish [--ro|--rw] -a disk.img -i\n"
21563 #: ../fish/guestfish.pod:21
21566 " guestfish -d libvirt-domain -i\n"
21572 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-edit.pl:44
21573 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
21579 #: ../fish/guestfish.pod:25
21581 "Using guestfish in read/write mode on live virtual machines can be "
21582 "dangerous, potentially causing disk corruption. Use the I<--ro> (read-only) "
21583 "option to use guestfish safely if the disk image or virtual machine might be "
21589 #: ../fish/guestfish.pod:32
21591 "Guestfish is a shell and command-line tool for examining and modifying "
21592 "virtual machine filesystems. It uses libguestfs and exposes all of the "
21593 "functionality of the guestfs API, see L<guestfs(3)>."
21598 #: ../fish/guestfish.pod:36
21600 "Guestfish gives you structured access to the libguestfs API, from shell "
21601 "scripts or the command line or interactively. If you want to rescue a "
21602 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
21608 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:947
21609 #: ../fuse/guestmount.pod:39 ../tools/virt-edit.pl:63 ../tools/virt-tar.pl:50
21615 #: ../fish/guestfish.pod:43
21616 msgid "As an interactive shell"
21621 #: ../fish/guestfish.pod:45
21630 #: ../fish/guestfish.pod:47
21633 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
21634 " editing virtual machine filesystems.\n"
21640 #: ../fish/guestfish.pod:50
21643 " Type: 'help' for a list of commands\n"
21644 " 'man' to read the manual\n"
21645 " 'quit' to quit the shell\n"
21651 #: ../fish/guestfish.pod:54
21654 " ><fs> add-ro disk.img\n"
21656 " ><fs> list-filesystems\n"
21657 " /dev/sda1: ext4\n"
21658 " /dev/vg_guest/lv_root: ext4\n"
21659 " /dev/vg_guest/lv_swap: swap\n"
21660 " ><fs> mount /dev/vg_guest/lv_root /\n"
21661 " ><fs> cat /etc/fstab\n"
21663 " # Created by anaconda\n"
21671 #: ../fish/guestfish.pod:67
21672 msgid "From shell scripts"
21677 #: ../fish/guestfish.pod:69
21678 msgid "Create a new C</etc/motd> file in a guest or disk image:"
21683 #: ../fish/guestfish.pod:71
21686 " guestfish <<_EOF_\n"
21689 " mount /dev/vg_guest/lv_root /\n"
21690 " write /etc/motd \"Welcome, new users\"\n"
21697 #: ../fish/guestfish.pod:78
21698 msgid "List the LVM logical volumes in a disk image:"
21703 #: ../fish/guestfish.pod:80
21706 " guestfish -a disk.img --ro <<_EOF_\n"
21715 #: ../fish/guestfish.pod:85
21716 msgid "List all the filesystems in a disk image:"
21721 #: ../fish/guestfish.pod:87
21724 " guestfish -a disk.img --ro <<_EOF_\n"
21726 " list-filesystems\n"
21733 #: ../fish/guestfish.pod:92
21734 msgid "On one command line"
21739 #: ../fish/guestfish.pod:94
21740 msgid "Update C</etc/resolv.conf> in a guest:"
21745 #: ../fish/guestfish.pod:96
21749 " add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
21750 " write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
21756 #: ../fish/guestfish.pod:100
21757 msgid "Edit C</boot/grub/grub.conf> interactively:"
21762 #: ../fish/guestfish.pod:102
21765 " guestfish --rw --add disk.img \\\n"
21766 " --mount /dev/vg_guest/lv_root \\\n"
21767 " --mount /dev/sda1:/boot \\\n"
21768 " edit /boot/grub/grub.conf\n"
21774 #: ../fish/guestfish.pod:107
21775 msgid "Mount disks automatically"
21780 #: ../fish/guestfish.pod:109
21782 "Use the I<-i> option to automatically mount the disks from a virtual machine:"
21787 #: ../fish/guestfish.pod:112
21790 " guestfish --ro -a disk.img -i cat /etc/group\n"
21796 #: ../fish/guestfish.pod:114
21799 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
21805 #: ../fish/guestfish.pod:116
21806 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
21811 #: ../fish/guestfish.pod:118
21814 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
21820 #: ../fish/guestfish.pod:120
21821 msgid "As a script interpreter"
21826 #: ../fish/guestfish.pod:122
21827 msgid "Create a 100MB disk containing an ext2-formatted partition:"
21832 #: ../fish/guestfish.pod:124
21835 " #!/usr/bin/guestfish -f\n"
21836 " sparse test1.img 100M\n"
21838 " part-disk /dev/sda mbr\n"
21839 " mkfs ext2 /dev/sda1\n"
21845 #: ../fish/guestfish.pod:130
21846 msgid "Start with a prepared disk"
21851 #: ../fish/guestfish.pod:132
21853 "An alternate way to create a 100MB disk called C<test1.img> containing a "
21854 "single ext2-formatted partition:"
21859 #: ../fish/guestfish.pod:135
21862 " guestfish -N fs\n"
21868 #: ../fish/guestfish.pod:137
21869 msgid "To list what is available do:"
21874 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:938
21877 " guestfish -N help | less\n"
21883 #: ../fish/guestfish.pod:141
21884 msgid "Remote control"
21889 #: ../fish/guestfish.pod:143
21892 " eval \"`guestfish --listen`\"\n"
21893 " guestfish --remote add-ro disk.img\n"
21894 " guestfish --remote run\n"
21895 " guestfish --remote lvs\n"
21901 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
21902 #: ../fuse/guestmount.pod:83 ../tools/virt-edit.pl:81
21903 #: ../tools/virt-win-reg.pl:96 ../tools/virt-list-filesystems.pl:53
21904 #: ../tools/virt-tar.pl:103 ../tools/virt-make-fs.pl:153
21905 #: ../tools/virt-list-partitions.pl:54
21911 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:141
21912 #: ../tools/virt-edit.pl:89 ../tools/virt-win-reg.pl:104
21913 #: ../tools/virt-list-filesystems.pl:61 ../tools/virt-tar.pl:111
21914 #: ../tools/virt-make-fs.pl:161 ../tools/virt-list-partitions.pl:62
21920 #: ../fish/guestfish.pod:154
21921 msgid "Displays general help on options."
21926 #: ../fish/guestfish.pod:156
21932 #: ../fish/guestfish.pod:158
21933 msgid "B<--cmd-help>"
21938 #: ../fish/guestfish.pod:160
21939 msgid "Lists all available guestfish commands."
21944 #: ../fish/guestfish.pod:162
21950 #: ../fish/guestfish.pod:164
21951 msgid "B<--cmd-help cmd>"
21956 #: ../fish/guestfish.pod:166
21957 msgid "Displays detailed help on a single command C<cmd>."
21962 #: ../fish/guestfish.pod:168
21963 msgid "B<-a image>"
21968 #: ../fish/guestfish.pod:170
21969 msgid "B<--add image>"
21974 #: ../fish/guestfish.pod:172
21975 msgid "Add a block device or virtual machine image to the shell."
21980 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
21982 "The format of the disk image is auto-detected. To override this and force a "
21983 "particular format use the I<--format=..> option."
21987 #: ../fish/guestfish.pod:177
21989 "Using this flag is mostly equivalent to using the C<add> command, with "
21990 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
21991 "the I<--format=...> flag was given."
21996 #: ../fish/guestfish.pod:181
22002 #: ../fish/guestfish.pod:183
22003 msgid "B<--connect URI>"
22008 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
22010 "When used in conjunction with the I<-d> option, this specifies the libvirt "
22011 "URI to use. The default is to use the default libvirt connection."
22016 #: ../fish/guestfish.pod:189
22022 #: ../fish/guestfish.pod:191
22024 "If using the I<--listen> option and a csh-like shell, use this option. See "
22025 "section L</REMOTE CONTROL AND CSH> below."
22030 #: ../fish/guestfish.pod:194
22031 msgid "B<-d libvirt-domain>"
22036 #: ../fish/guestfish.pod:196
22037 msgid "B<--domain libvirt-domain>"
22042 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
22044 "Add disks from the named libvirt domain. If the I<--ro> option is also "
22045 "used, then any libvirt domain can be used. However in write mode, only "
22046 "libvirt domains which are shut down can be named here."
22051 #: ../fish/guestfish.pod:202
22053 "Using this flag is mostly equivalent to using the C<add-domain> command, "
22054 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
22055 "if the I<--format:...> flag was given."
22060 #: ../fish/guestfish.pod:206
22066 #: ../fish/guestfish.pod:208
22067 msgid "B<--no-dest-paths>"
22072 #: ../fish/guestfish.pod:210
22074 "Don't tab-complete paths on the guest filesystem. It is useful to be able "
22075 "to hit the tab key to complete paths on the guest filesystem, but this "
22076 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
22077 "allow this feature to be disabled."
22082 #: ../fish/guestfish.pod:215 ../fuse/guestmount.pod:118
22083 msgid "B<--echo-keys>"
22088 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
22090 "When prompting for keys and passphrases, guestfish normally turns echoing "
22091 "off so you cannot see what you are typing. If you are not worried about "
22092 "Tempest attacks and there is no one else in the room you can specify this "
22093 "flag to see what you are typing."
22098 #: ../fish/guestfish.pod:222
22104 #: ../fish/guestfish.pod:224
22105 msgid "B<--file file>"
22110 #: ../fish/guestfish.pod:226
22111 msgid "Read commands from C<file>. To write pure guestfish scripts, use:"
22116 #: ../fish/guestfish.pod:229
22119 " #!/usr/bin/guestfish -f\n"
22125 #: ../fish/guestfish.pod:231
22126 msgid "B<--format=raw|qcow2|..>"
22131 #: ../fish/guestfish.pod:233
22132 msgid "B<--format>"
22137 #: ../fish/guestfish.pod:235 ../fuse/guestmount.pod:127
22139 "The default for the I<-a> option is to auto-detect the format of the disk "
22140 "image. Using this forces the disk format for I<-a> options which follow on "
22141 "the command line. Using I<--format> with no argument switches back to auto-"
22142 "detection for subsequent I<-a> options."
22147 #: ../fish/guestfish.pod:242
22150 " guestfish --format=raw -a disk.img\n"
22156 #: ../fish/guestfish.pod:244
22157 msgid "forces raw format (no auto-detection) for C<disk.img>."
22162 #: ../fish/guestfish.pod:246
22165 " guestfish --format=raw -a disk.img --format -a another.img\n"
22171 #: ../fish/guestfish.pod:248
22173 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
22174 "detection for C<another.img>."
22179 #: ../fish/guestfish.pod:251
22181 "If you have untrusted raw-format guest disk images, you should use this "
22182 "option to specify the disk format. This avoids a possible security problem "
22183 "with malicious guests (CVE-2010-3851). See also L</add-drive-opts>."
22188 #: ../fish/guestfish.pod:256
22194 #: ../fish/guestfish.pod:258
22195 msgid "B<--inspector>"
22200 #: ../fish/guestfish.pod:260 ../fuse/guestmount.pod:147
22202 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
22203 "system and mount filesystems as they would be mounted on the real virtual "
22209 #: ../fish/guestfish.pod:264
22210 msgid "Typical usage is either:"
22215 #: ../fish/guestfish.pod:266
22218 " guestfish -d myguest -i\n"
22224 #: ../fish/guestfish.pod:268
22225 msgid "(for an inactive libvirt domain called I<myguest>), or:"
22230 #: ../fish/guestfish.pod:270
22233 " guestfish --ro -d myguest -i\n"
22239 #: ../fish/guestfish.pod:272
22240 msgid "(for active domains, readonly), or specify the block device directly:"
22245 #: ../fish/guestfish.pod:274
22248 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
22254 #: ../fish/guestfish.pod:276
22256 "Note that the command line syntax changed slightly over older versions of "
22257 "guestfish. You can still use the old syntax:"
22262 #: ../fish/guestfish.pod:279
22265 " guestfish [--ro] -i disk.img\n"
22271 #: ../fish/guestfish.pod:281
22274 " guestfish [--ro] -i libvirt-domain\n"
22280 #: ../fish/guestfish.pod:283
22282 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
22283 "then using other commands to mount the filesystems that were found."
22288 #: ../fish/guestfish.pod:287 ../fuse/guestmount.pod:151
22289 msgid "B<--keys-from-stdin>"
22294 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
22296 "Read key or passphrase parameters from stdin. The default is to try to read "
22297 "passphrases from the user by opening C</dev/tty>."
22302 #: ../fish/guestfish.pod:292
22303 msgid "B<--listen>"
22308 #: ../fish/guestfish.pod:294
22310 "Fork into the background and listen for remote commands. See section L</"
22311 "REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
22315 #: ../fish/guestfish.pod:297 ../fuse/guestmount.pod:156
22320 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
22322 "Connect to a live virtual machine. (Experimental, see L<guestfs(3)/"
22323 "ATTACHING TO RUNNING DAEMONS>)."
22327 #: ../fish/guestfish.pod:302 ../fuse/guestmount.pod:161
22328 msgid "B<-m dev[:mountpoint[:options]]>"
22332 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
22333 msgid "B<--mount dev[:mountpoint[:options]]>"
22338 #: ../fish/guestfish.pod:306
22339 msgid "Mount the named partition or logical volume on the given mountpoint."
22344 #: ../fish/guestfish.pod:308
22345 msgid "If the mountpoint is omitted, it defaults to C</>."
22350 #: ../fish/guestfish.pod:310
22351 msgid "You have to mount something on C</> before most commands will work."
22356 #: ../fish/guestfish.pod:312
22358 "If any I<-m> or I<--mount> options are given, the guest is automatically "
22364 #: ../fish/guestfish.pod:315
22366 "If you don't know what filesystems a disk image contains, you can either run "
22367 "guestfish without this option, then list the partitions, filesystems and LVs "
22368 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
22369 "commands), or you can use the L<virt-filesystems(1)> program."
22373 #: ../fish/guestfish.pod:321 ../fuse/guestmount.pod:171
22375 "The third (and rarely used) part of the mount parameter is the list of mount "
22376 "options used to mount the underlying filesystem. If this is not given, then "
22377 "the mount options are either the empty string or C<ro> (the latter if the "
22378 "I<--ro> flag is used). By specifying the mount options, you override this "
22379 "default choice. Probably the only time you would use this is to enable ACLs "
22380 "and/or extended attributes if the filesystem can support them:"
22384 #: ../fish/guestfish.pod:329 ../fuse/guestmount.pod:179
22387 " -m /dev/sda1:/:acl,user_xattr\n"
22392 #: ../fish/guestfish.pod:331
22393 msgid "Using this flag is equivalent to using the C<mount-options> command."
22398 #: ../fish/guestfish.pod:333
22404 #: ../fish/guestfish.pod:335
22405 msgid "B<--no-sync>"
22410 #: ../fish/guestfish.pod:337
22412 "Disable autosync. This is enabled by default. See the discussion of "
22413 "autosync in the L<guestfs(3)> manpage."
22418 #: ../fish/guestfish.pod:340
22424 #: ../fish/guestfish.pod:342
22425 msgid "B<--new type>"
22430 #: ../fish/guestfish.pod:344
22436 #: ../fish/guestfish.pod:346
22438 "Prepare a fresh disk image formatted as \"type\". This is an alternative to "
22439 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
22440 "preformatted disk with a filesystem and adds it. See L</PREPARED DISK "
22446 #: ../fish/guestfish.pod:351
22447 msgid "B<--progress-bars>"
22452 #: ../fish/guestfish.pod:353
22453 msgid "Enable progress bars, even when guestfish is used non-interactively."
22458 #: ../fish/guestfish.pod:355
22460 "Progress bars are enabled by default when guestfish is used as an "
22461 "interactive shell."
22466 #: ../fish/guestfish.pod:358
22467 msgid "B<--no-progress-bars>"
22472 #: ../fish/guestfish.pod:360
22473 msgid "Disable progress bars."
22478 #: ../fish/guestfish.pod:362
22479 msgid "B<--remote[=pid]>"
22484 #: ../fish/guestfish.pod:364
22486 "Send remote commands to C<$GUESTFISH_PID> or C<pid>. See section L</REMOTE "
22487 "CONTROL GUESTFISH OVER A SOCKET> below."
22492 #: ../fish/guestfish.pod:367
22498 #: ../fish/guestfish.pod:369
22504 #: ../fish/guestfish.pod:371
22506 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
22507 "mounts are done read-only."
22512 #: ../fish/guestfish.pod:374
22514 "The option must always be used if the disk image or virtual machine might be "
22515 "running, and is generally recommended in cases where you don't need write "
22516 "access to the disk."
22521 #: ../fish/guestfish.pod:378
22523 "Note that prepared disk images created with I<-N> are not affected by this "
22524 "option. Also commands like C<add> are not affected - you have to specify "
22525 "the C<readonly:true> option explicitly if you need it."
22530 #: ../fish/guestfish.pod:382
22531 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
22536 #: ../fish/guestfish.pod:384 ../fuse/guestmount.pod:235
22537 msgid "B<--selinux>"
22542 #: ../fish/guestfish.pod:386
22543 msgid "Enable SELinux support for the guest. See L<guestfs(3)/SELINUX>."
22548 #: ../fish/guestfish.pod:388
22554 #: ../fish/guestfish.pod:390
22555 msgid "B<--verbose>"
22560 #: ../fish/guestfish.pod:392
22562 "Enable very verbose messages. This is particularly useful if you find a bug."
22567 #: ../fish/guestfish.pod:395
22573 #: ../fish/guestfish.pod:397 ../tools/virt-edit.pl:97
22574 #: ../tools/virt-win-reg.pl:112 ../tools/virt-list-filesystems.pl:69
22575 #: ../tools/virt-tar.pl:119 ../tools/virt-make-fs.pl:169
22576 #: ../tools/virt-list-partitions.pl:70
22577 msgid "B<--version>"
22582 #: ../fish/guestfish.pod:399
22583 msgid "Display the guestfish / libguestfs version number and exit."
22588 #: ../fish/guestfish.pod:401
22594 #: ../fish/guestfish.pod:403
22599 #: ../fish/guestfish.pod:405 ../fuse/guestmount.pod:249
22601 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
22602 "mounts are done read-write."
22606 #: ../fish/guestfish.pod:408
22607 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
22612 #: ../fish/guestfish.pod:410
22618 #: ../fish/guestfish.pod:412
22619 msgid "Echo each command before executing it."
22624 #: ../fish/guestfish.pod:416
22625 msgid "COMMANDS ON COMMAND LINE"
22630 #: ../fish/guestfish.pod:418
22632 "Any additional (non-option) arguments are treated as commands to execute."
22637 #: ../fish/guestfish.pod:421
22639 "Commands to execute should be separated by a colon (C<:>), where the colon "
22640 "is a separate parameter. Thus:"
22645 #: ../fish/guestfish.pod:424
22648 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
22654 #: ../fish/guestfish.pod:426
22656 "If there are no additional arguments, then we enter a shell, either an "
22657 "interactive shell with a prompt (if the input is a terminal) or a non-"
22658 "interactive shell."
22663 #: ../fish/guestfish.pod:430
22665 "In either command line mode or non-interactive shell, the first command that "
22666 "gives an error causes the whole shell to exit. In interactive mode (with a "
22667 "prompt) if a command fails, you can continue to enter commands."
22672 #: ../fish/guestfish.pod:435
22673 msgid "USING launch (OR run)"
22678 #: ../fish/guestfish.pod:437
22680 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
22681 "then launch it, then mount any disks you need, and finally issue actions/"
22682 "commands. So the general order of the day is:"
22687 #: ../fish/guestfish.pod:445
22688 msgid "add or -a/--add"
22693 #: ../fish/guestfish.pod:449
22694 msgid "launch (aka run)"
22699 #: ../fish/guestfish.pod:453
22700 msgid "mount or -m/--mount"
22705 #: ../fish/guestfish.pod:457
22706 msgid "any other commands"
22711 #: ../fish/guestfish.pod:461
22713 "C<run> is a synonym for C<launch>. You must C<launch> (or C<run>) your "
22714 "guest before mounting or performing any other commands."
22719 #: ../fish/guestfish.pod:464
22721 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
22722 "I<--new> options were given then C<run> is done automatically, simply "
22723 "because guestfish can't perform the action you asked for without doing this."
22728 #: ../fish/guestfish.pod:469
22729 msgid "OPENING DISKS FOR READ AND WRITE"
22733 #: ../fish/guestfish.pod:471
22735 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
22736 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
22737 "I<-i> and I<-m> open disk images read-only or for writing."
22741 #: ../fish/guestfish.pod:476
22743 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
22744 "opening disk images supplied on the command line for write. To open a disk "
22745 "image read-only you have to do I<-a image --ro>."
22750 #: ../fish/guestfish.pod:480
22752 "This matters: If you accidentally open a live VM disk image writable then "
22753 "you will cause irreversible disk corruption."
22757 #: ../fish/guestfish.pod:483
22759 "By libguestfs 1.12 we intend to change the default the other way. Disk "
22760 "images will be opened read-only. You will have to either specify "
22761 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
22762 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
22763 "access for disk images specified by those other command line options."
22767 #: ../fish/guestfish.pod:490
22769 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
22770 "which does nothing (it is already the default). However it is highly "
22771 "recommended that you use this option to indicate that you need write access, "
22772 "and prepare your scripts for the day when this option will be required for "
22778 #: ../fish/guestfish.pod:496
22780 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
22781 "other libguestfs program apart from guestfish and guestmount."
22786 #: ../fish/guestfish.pod:499
22792 #: ../fish/guestfish.pod:501
22794 "You can quote ordinary parameters using either single or double quotes. For "
22800 #: ../fish/guestfish.pod:504
22803 " add \"file with a space.img\"\n"
22809 #: ../fish/guestfish.pod:506
22812 " rm '/file name'\n"
22818 #: ../fish/guestfish.pod:508
22827 #: ../fish/guestfish.pod:510
22829 "A few commands require a list of strings to be passed. For these, use a "
22830 "whitespace-separated list, enclosed in quotes. Strings containing "
22831 "whitespace to be passed through must be enclosed in single quotes. A "
22832 "literal single quote must be escaped with a backslash."
22837 #: ../fish/guestfish.pod:515
22840 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
22841 " command \"/bin/echo 'foo bar'\"\n"
22842 " command \"/bin/echo \\'foo\\'\"\n"
22848 #: ../fish/guestfish.pod:519
22849 msgid "OPTIONAL ARGUMENTS"
22854 #: ../fish/guestfish.pod:521
22856 "Some commands take optional arguments. These arguments appear in this "
22857 "documentation as C<[argname:..]>. You can use them as in these examples:"
22862 #: ../fish/guestfish.pod:525
22865 " add-drive-opts filename\n"
22871 #: ../fish/guestfish.pod:527
22874 " add-drive-opts filename readonly:true\n"
22880 #: ../fish/guestfish.pod:529
22883 " add-drive-opts filename format:qcow2 readonly:false\n"
22889 #: ../fish/guestfish.pod:531
22891 "Each optional argument can appear at most once. All optional arguments must "
22892 "appear after the required ones."
22897 #: ../fish/guestfish.pod:534
22903 #: ../fish/guestfish.pod:536
22905 "This section applies to all commands which can take integers as parameters."
22910 #: ../fish/guestfish.pod:539
22911 msgid "SIZE SUFFIX"
22916 #: ../fish/guestfish.pod:541
22918 "When the command takes a parameter measured in bytes, you can use one of the "
22919 "following suffixes to specify kilobytes, megabytes and larger sizes:"
22924 #: ../fish/guestfish.pod:547
22925 msgid "B<k> or B<K> or B<KiB>"
22930 #: ../fish/guestfish.pod:549
22931 msgid "The size in kilobytes (multiplied by 1024)."
22936 #: ../fish/guestfish.pod:551
22942 #: ../fish/guestfish.pod:553
22943 msgid "The size in SI 1000 byte units."
22948 #: ../fish/guestfish.pod:555
22949 msgid "B<M> or B<MiB>"
22954 #: ../fish/guestfish.pod:557
22955 msgid "The size in megabytes (multiplied by 1048576)."
22960 #: ../fish/guestfish.pod:559
22966 #: ../fish/guestfish.pod:561
22967 msgid "The size in SI 1000000 byte units."
22972 #: ../fish/guestfish.pod:563
22973 msgid "B<G> or B<GiB>"
22978 #: ../fish/guestfish.pod:565
22979 msgid "The size in gigabytes (multiplied by 2**30)."
22984 #: ../fish/guestfish.pod:567
22990 #: ../fish/guestfish.pod:569
22991 msgid "The size in SI 10**9 byte units."
22996 #: ../fish/guestfish.pod:571
22997 msgid "B<T> or B<TiB>"
23002 #: ../fish/guestfish.pod:573
23003 msgid "The size in terabytes (multiplied by 2**40)."
23008 #: ../fish/guestfish.pod:575
23014 #: ../fish/guestfish.pod:577
23015 msgid "The size in SI 10**12 byte units."
23020 #: ../fish/guestfish.pod:579
23021 msgid "B<P> or B<PiB>"
23026 #: ../fish/guestfish.pod:581
23027 msgid "The size in petabytes (multiplied by 2**50)."
23032 #: ../fish/guestfish.pod:583
23038 #: ../fish/guestfish.pod:585
23039 msgid "The size in SI 10**15 byte units."
23044 #: ../fish/guestfish.pod:587
23045 msgid "B<E> or B<EiB>"
23050 #: ../fish/guestfish.pod:589
23051 msgid "The size in exabytes (multiplied by 2**60)."
23056 #: ../fish/guestfish.pod:591
23062 #: ../fish/guestfish.pod:593
23063 msgid "The size in SI 10**18 byte units."
23068 #: ../fish/guestfish.pod:595
23069 msgid "B<Z> or B<ZiB>"
23074 #: ../fish/guestfish.pod:597
23075 msgid "The size in zettabytes (multiplied by 2**70)."
23080 #: ../fish/guestfish.pod:599
23086 #: ../fish/guestfish.pod:601
23087 msgid "The size in SI 10**21 byte units."
23092 #: ../fish/guestfish.pod:603
23093 msgid "B<Y> or B<YiB>"
23098 #: ../fish/guestfish.pod:605
23099 msgid "The size in yottabytes (multiplied by 2**80)."
23104 #: ../fish/guestfish.pod:607
23110 #: ../fish/guestfish.pod:609
23111 msgid "The size in SI 10**24 byte units."
23116 #: ../fish/guestfish.pod:615
23119 " truncate-size /file 1G\n"
23125 #: ../fish/guestfish.pod:617
23126 msgid "would truncate the file to 1 gigabyte."
23131 #: ../fish/guestfish.pod:619
23133 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
23134 "the parameter to L</memsize> is specified in megabytes already). Adding a "
23135 "suffix will probably not do what you expect."
23140 #: ../fish/guestfish.pod:623
23141 msgid "OCTAL AND HEXADECIMAL NUMBERS"
23146 #: ../fish/guestfish.pod:625
23148 "For specifying the radix (base) use the C convention: C<0> to prefix an "
23149 "octal number or C<0x> to prefix a hexadecimal number. For example:"
23154 #: ../fish/guestfish.pod:628
23157 " 1234 decimal number 1234\n"
23158 " 02322 octal number, equivalent to decimal 1234\n"
23159 " 0x4d2 hexadecimal number, equivalent to decimal 1234\n"
23165 #: ../fish/guestfish.pod:632
23167 "When using the C<chmod> command, you almost always want to specify an octal "
23168 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
23169 "L<chmod(1)> program):"
23174 #: ../fish/guestfish.pod:636
23177 " chmod 0777 /public # OK\n"
23178 " chmod 777 /public # WRONG! This is mode 777 decimal = 01411 octal.\n"
23184 #: ../fish/guestfish.pod:639
23186 "Commands that return numbers usually print them in decimal, but some "
23187 "commands print numbers in other radices (eg. C<umask> prints the mode in "
23188 "octal, preceeded by C<0>)."
23193 #: ../fish/guestfish.pod:643
23194 msgid "WILDCARDS AND GLOBBING"
23199 #: ../fish/guestfish.pod:645
23201 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
23202 "(globbing) by default. So for example the following will not do what you "
23208 #: ../fish/guestfish.pod:649
23217 #: ../fish/guestfish.pod:651
23219 "Assuming you don't have a directory called literally C</home/*> then the "
23220 "above command will return an error."
23225 #: ../fish/guestfish.pod:654
23226 msgid "To perform wildcard expansion, use the C<glob> command."
23231 #: ../fish/guestfish.pod:656
23234 " glob rm-rf /home/*\n"
23240 #: ../fish/guestfish.pod:658
23242 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
23243 "many times), equivalent to:"
23248 #: ../fish/guestfish.pod:661
23251 " rm-rf /home/jim\n"
23252 " rm-rf /home/joe\n"
23253 " rm-rf /home/mary\n"
23259 #: ../fish/guestfish.pod:665
23260 msgid "C<glob> only works on simple guest paths and not on device names."
23265 #: ../fish/guestfish.pod:667
23267 "If you have several parameters, each containing a wildcard, then glob will "
23268 "perform a Cartesian product."
23273 #: ../fish/guestfish.pod:670
23279 #: ../fish/guestfish.pod:672
23281 "Any line which starts with a I<#> character is treated as a comment and "
23282 "ignored. The I<#> can optionally be preceeded by whitespace, but B<not> by "
23283 "a command. For example:"
23288 #: ../fish/guestfish.pod:676
23291 " # this is a comment\n"
23292 " # this is a comment\n"
23293 " foo # NOT a comment\n"
23299 #: ../fish/guestfish.pod:680
23300 msgid "Blank lines are also ignored."
23305 #: ../fish/guestfish.pod:682
23306 msgid "RUNNING COMMANDS LOCALLY"
23311 #: ../fish/guestfish.pod:684
23313 "Any line which starts with a I<!> character is treated as a command sent to "
23314 "the local shell (C</bin/sh> or whatever L<system(3)> uses). For example:"
23319 #: ../fish/guestfish.pod:688
23323 " tgz-out /remote local/remote-data.tar.gz\n"
23329 #: ../fish/guestfish.pod:691
23331 "will create a directory C<local> on the host, and then export the contents "
23332 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>. "
23333 "(See C<tgz-out>)."
23338 #: ../fish/guestfish.pod:695
23340 "To change the local directory, use the C<lcd> command. C<!cd> will have no "
23341 "effect, due to the way that subprocesses work in Unix."
23345 #: ../fish/guestfish.pod:698
23346 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
23350 #: ../fish/guestfish.pod:700
23352 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
23353 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
23354 "and executed as guestfish commands."
23358 #: ../fish/guestfish.pod:704
23360 "Thus you can use shell script to construct arbitrary guestfish commands "
23361 "which are then parsed by guestfish."
23365 #: ../fish/guestfish.pod:707
23367 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
23368 "through C</foo.100>) using guestfish commands alone. However this is simple "
23369 "if we use a shell script to create the guestfish commands for us:"
23373 #: ../fish/guestfish.pod:712
23376 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
23381 #: ../fish/guestfish.pod:714
23382 msgid "or with names like C</foo.001>:"
23386 #: ../fish/guestfish.pod:716
23389 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
23394 #: ../fish/guestfish.pod:718
23396 "When using guestfish interactively it can be helpful to just run the shell "
23397 "script first (ie. remove the initial C<E<lt>> character so it is just an "
23398 "ordinary I<!> local command), see what guestfish commands it would run, and "
23399 "when you are happy with those prepend the C<E<lt>> character to run the "
23400 "guestfish commands for real."
23405 #: ../fish/guestfish.pod:724
23411 #: ../fish/guestfish.pod:726
23413 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
23414 "command (a guestfish command) to the second command (any host command). For "
23420 #: ../fish/guestfish.pod:730
23423 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
23429 #: ../fish/guestfish.pod:732
23431 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
23432 "program). The above command would list all accounts in the guest filesystem "
23433 "which have UID 0, ie. root accounts including backdoors. Other examples:"
23438 #: ../fish/guestfish.pod:737
23441 " hexdump /bin/ls | head\n"
23442 " list-devices | tail -1\n"
23443 " tgz-out / - | tar ztf -\n"
23449 #: ../fish/guestfish.pod:741
23451 "The space before the pipe symbol is required, any space after the pipe "
23452 "symbol is optional. Everything after the pipe symbol is just passed "
23453 "straight to the host shell, so it can contain redirections, globs and "
23454 "anything else that makes sense on the host side."
23459 #: ../fish/guestfish.pod:746
23461 "To use a literal argument which begins with a pipe symbol, you have to quote "
23467 #: ../fish/guestfish.pod:749
23476 #: ../fish/guestfish.pod:751
23477 msgid "HOME DIRECTORIES"
23482 #: ../fish/guestfish.pod:753
23484 "If a parameter starts with the character C<~> then the tilde may be expanded "
23485 "as a home directory path (either C<~> for the current user's home directory, "
23486 "or C<~user> for another user)."
23491 #: ../fish/guestfish.pod:757
23493 "Note that home directory expansion happens for users known I<on the host>, "
23494 "not in the guest filesystem."
23499 #: ../fish/guestfish.pod:760
23501 "To use a literal argument which begins with a tilde, you have to quote it, "
23507 #: ../fish/guestfish.pod:763
23516 #: ../fish/guestfish.pod:767
23518 "Libguestfs has some support for Linux guests encrypted according to the "
23519 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
23520 "disk encryption systems used by modern Linux guests. Currently only LVM-on-"
23521 "LUKS is supported."
23526 #: ../fish/guestfish.pod:772
23527 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
23532 #: ../fish/guestfish.pod:774
23535 " ><fs> vfs-type /dev/sda2\n"
23542 #: ../fish/guestfish.pod:777
23544 "Then open those devices using L</luks-open>. This creates a device-mapper "
23545 "device called C</dev/mapper/luksdev>."
23550 #: ../fish/guestfish.pod:780
23553 " ><fs> luks-open /dev/sda2 luksdev\n"
23554 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
23560 #: ../fish/guestfish.pod:783
23562 "Finally you have to tell LVM to scan for volume groups on the newly created "
23568 #: ../fish/guestfish.pod:786
23572 " vg-activate-all true\n"
23578 #: ../fish/guestfish.pod:789
23579 msgid "The logical volume(s) can now be mounted in the usual way."
23584 #: ../fish/guestfish.pod:791
23586 "Before closing a LUKS device you must unmount any logical volumes on it and "
23587 "deactivate the volume groups by calling C<vg-activate false VG> on each "
23588 "one. Then you can close the mapper device:"
23593 #: ../fish/guestfish.pod:795
23596 " vg-activate false /dev/VG\n"
23597 " luks-close /dev/mapper/luksdev\n"
23603 #: ../fish/guestfish.pod:798 ../tools/virt-edit.pl:342
23604 msgid "WINDOWS PATHS"
23608 #: ../fish/guestfish.pod:800
23610 "If a path is prefixed with C<win:> then you can use Windows-style drive "
23611 "letters and paths (with some limitations). The following commands are "
23617 #: ../fish/guestfish.pod:804
23620 " file /WINDOWS/system32/config/system.LOG\n"
23626 #: ../fish/guestfish.pod:806
23629 " file win:\\windows\\system32\\config\\system.log\n"
23634 #: ../fish/guestfish.pod:808
23637 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
23642 #: ../fish/guestfish.pod:810
23644 "The parameter is rewritten \"behind the scenes\" by looking up the position "
23645 "where the drive is mounted, prepending that to the path, changing all "
23646 "backslash characters to forward slash, then resolving the result using L</"
23647 "case-sensitive-path>. For example if the E: drive was mounted on C</e> then "
23648 "the parameter might be rewritten like this:"
23652 #: ../fish/guestfish.pod:816
23655 " win:e:\\foo\\bar => /e/FOO/bar\n"
23660 #: ../fish/guestfish.pod:818
23661 msgid "This only works in argument positions that expect a path."
23666 #: ../fish/guestfish.pod:820
23667 msgid "UPLOADING AND DOWNLOADING FILES"
23672 #: ../fish/guestfish.pod:822
23674 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
23675 "others which upload from or download to a local file, you can use the "
23676 "special filename C<-> to mean \"from stdin\" or \"to stdout\". For example:"
23681 #: ../fish/guestfish.pod:826
23690 #: ../fish/guestfish.pod:828
23692 "reads stdin and creates from that a file C</foo> in the disk image, and:"
23697 #: ../fish/guestfish.pod:831
23700 " tar-out /etc - | tar tf -\n"
23706 #: ../fish/guestfish.pod:833
23708 "writes the tarball to stdout and then pipes that into the external \"tar\" "
23709 "command (see L</PIPES>)."
23714 #: ../fish/guestfish.pod:836
23716 "When using C<-> to read from stdin, the input is read up to the end of "
23717 "stdin. You can also use a special \"heredoc\"-like syntax to read up to "
23718 "some arbitrary end marker:"
23723 #: ../fish/guestfish.pod:840
23726 " upload -<<END /foo\n"
23736 #: ../fish/guestfish.pod:846
23738 "Any string of characters can be used instead of C<END>. The end marker must "
23739 "appear on a line of its own, without any preceeding or following characters "
23740 "(not even spaces)."
23745 #: ../fish/guestfish.pod:850
23747 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
23748 "upload local files (so-called \"FileIn\" parameters in the generator)."
23753 #: ../fish/guestfish.pod:853
23754 msgid "EXIT ON ERROR BEHAVIOUR"
23759 #: ../fish/guestfish.pod:855
23761 "By default, guestfish will ignore any errors when in interactive mode (ie. "
23762 "taking commands from a human over a tty), and will exit on the first error "
23763 "in non-interactive mode (scripts, commands given on the command line)."
23768 #: ../fish/guestfish.pod:860
23770 "If you prefix a command with a I<-> character, then that command will not "
23771 "cause guestfish to exit, even if that (one) command returns an error."
23776 #: ../fish/guestfish.pod:864
23777 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
23782 #: ../fish/guestfish.pod:866
23784 "Guestfish can be remote-controlled over a socket. This is useful "
23785 "particularly in shell scripts where you want to make several different "
23786 "changes to a filesystem, but you don't want the overhead of starting up a "
23787 "guestfish process each time."
23792 #: ../fish/guestfish.pod:871
23793 msgid "Start a guestfish server process using:"
23798 #: ../fish/guestfish.pod:873
23801 " eval \"`guestfish --listen`\"\n"
23807 #: ../fish/guestfish.pod:875
23808 msgid "and then send it commands by doing:"
23813 #: ../fish/guestfish.pod:877
23816 " guestfish --remote cmd [...]\n"
23822 #: ../fish/guestfish.pod:879
23823 msgid "To cause the server to exit, send it the exit command:"
23828 #: ../fish/guestfish.pod:881
23831 " guestfish --remote exit\n"
23837 #: ../fish/guestfish.pod:883
23839 "Note that the server will normally exit if there is an error in a command. "
23840 "You can change this in the usual way. See section L</EXIT ON ERROR "
23846 #: ../fish/guestfish.pod:887
23847 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
23852 #: ../fish/guestfish.pod:889
23854 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
23855 "is how the I<--remote> option knows where to send the commands. You can "
23856 "have several guestfish listener processes running using:"
23861 #: ../fish/guestfish.pod:893
23864 " eval \"`guestfish --listen`\"\n"
23865 " pid1=$GUESTFISH_PID\n"
23866 " eval \"`guestfish --listen`\"\n"
23867 " pid2=$GUESTFISH_PID\n"
23869 " guestfish --remote=$pid1 cmd\n"
23870 " guestfish --remote=$pid2 cmd\n"
23876 #: ../fish/guestfish.pod:901
23877 msgid "REMOTE CONTROL AND CSH"
23882 #: ../fish/guestfish.pod:903
23884 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
23890 #: ../fish/guestfish.pod:906
23893 " eval \"`guestfish --listen --csh`\"\n"
23899 #: ../fish/guestfish.pod:908
23900 msgid "REMOTE CONTROL DETAILS"
23905 #: ../fish/guestfish.pod:910
23907 "Remote control happens over a Unix domain socket called C</tmp/.guestfish-"
23908 "$UID/socket-$PID>, where C<$UID> is the effective user ID of the process, "
23909 "and C<$PID> is the process ID of the server."
23914 #: ../fish/guestfish.pod:914
23915 msgid "Guestfish client and server versions must match exactly."
23920 #: ../fish/guestfish.pod:916
23921 msgid "PREPARED DISK IMAGES"
23926 #: ../fish/guestfish.pod:918
23928 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
23929 "preformatted disk images that guestfish can make for you to save typing. "
23930 "This is particularly useful for testing purposes. This option is used "
23931 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
23932 "can be mixed with I<-a>)."
23937 #: ../fish/guestfish.pod:924
23939 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
23940 "the second and so on. Existing files in the current directory are "
23946 #: ../fish/guestfish.pod:928
23948 "The type briefly describes how the disk should be sized, partitioned, how "
23949 "filesystem(s) should be created, and how content should be added. "
23950 "Optionally the type can be followed by extra parameters, separated by C<:> "
23951 "(colon) characters. For example, I<-N fs> creates a default 100MB, sparsely-"
23952 "allocated disk, containing a single partition, with the partition formatted "
23953 "as ext2. I<-N fs:ext4:1G> is the same, but for an ext4 filesystem on a 1GB "
23959 #: ../fish/guestfish.pod:936
23960 msgid "To list the available types and any extra parameters they take, run:"
23965 #: ../fish/guestfish.pod:940
23967 "Note that the prepared filesystem is not mounted. You would usually have to "
23968 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
23973 #: ../fish/guestfish.pod:944
23975 "If any I<-N> or I<--new> options are given, the guest is automatically "
23981 #: ../fish/guestfish.pod:949
23982 msgid "Create a 100MB disk with an ext4-formatted partition:"
23987 #: ../fish/guestfish.pod:951
23990 " guestfish -N fs:ext4\n"
23996 #: ../fish/guestfish.pod:953
23997 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
24002 #: ../fish/guestfish.pod:955
24005 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
24011 #: ../fish/guestfish.pod:957
24012 msgid "Create a blank 200MB disk:"
24017 #: ../fish/guestfish.pod:959
24020 " guestfish -N disk:200M\n"
24026 #: ../fish/guestfish.pod:961
24027 msgid "PROGRESS BARS"
24032 #: ../fish/guestfish.pod:963
24034 "Some (not all) long-running commands send progress notification messages as "
24035 "they are running. Guestfish turns these messages into progress bars."
24040 #: ../fish/guestfish.pod:967
24042 "When a command that supports progress bars takes longer than two seconds to "
24043 "run, and if progress bars are enabled, then you will see one appearing below "
24049 #: ../fish/guestfish.pod:971
24052 " ><fs> copy-size /large-file /another-file 2048M\n"
24053 " / 10% [#####-----------------------------------------] 00:30\n"
24059 #: ../fish/guestfish.pod:974
24061 "The spinner on the left hand side moves round once for every progress "
24062 "notification received from the backend. This is a (reasonably) golden "
24063 "assurance that the command is \"doing something\" even if the progress bar "
24064 "is not moving, because the command is able to send the progress "
24065 "notifications. When the bar reaches 100% and the command finishes, the "
24066 "spinner disappears."
24071 #: ../fish/guestfish.pod:981
24073 "Progress bars are enabled by default when guestfish is used interactively. "
24074 "You can enable them even for non-interactive modes using I<--progress-bars>, "
24075 "and you can disable them completely using I<--no-progress-bars>."
24080 #: ../fish/guestfish.pod:986
24081 msgid "GUESTFISH COMMANDS"
24086 #: ../fish/guestfish.pod:988
24088 "The commands in this section are guestfish convenience commands, in other "
24089 "words, they are not part of the L<guestfs(3)> API."
24094 #: ../fish/guestfish.pod:991
24100 #: ../fish/guestfish.pod:993
24110 #: ../fish/guestfish.pod:996
24111 msgid "Without any parameter, this provides general help."
24116 #: ../fish/guestfish.pod:998
24117 msgid "With a C<cmd> parameter, this displays detailed help for that command."
24122 #: ../fish/guestfish.pod:1000
24123 msgid "quit | exit"
24128 #: ../fish/guestfish.pod:1002
24129 msgid "This exits guestfish. You can also use C<^D> key."
24134 #: ../fish/guestfish.pod:1004
24135 msgid "@FISH_COMMANDS@"
24140 #: ../fish/guestfish.pod:1006
24146 #: ../fish/guestfish.pod:1010 ../test-tool/libguestfs-test-tool.pod:77
24152 #: ../fish/guestfish.pod:1012
24154 "guestfish returns 0 if the commands completed without error, or 1 if there "
24160 #: ../fish/guestfish.pod:1019
24166 #: ../fish/guestfish.pod:1021
24168 "The C<edit> command uses C<$EDITOR> as the editor. If not set, it uses "
24174 #: ../fish/guestfish.pod:1024
24175 msgid "GUESTFISH_PID"
24180 #: ../fish/guestfish.pod:1026
24182 "Used with the I<--remote> option to specify the remote guestfish process to "
24183 "control. See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
24188 #: ../fish/guestfish.pod:1030
24194 #: ../fish/guestfish.pod:1032
24196 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor. If "
24197 "not specified, the external L<hexedit(1)> program is used."
24202 #: ../fish/guestfish.pod:1036
24208 #: ../fish/guestfish.pod:1038
24210 "If compiled with GNU readline support, various files in the home directory "
24211 "can be used. See L</FILES>."
24216 #: ../fish/guestfish.pod:1047
24218 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages. This has the same "
24219 "effect as using the B<-v> option."
24224 #: ../fish/guestfish.pod:1059
24226 "Set the path that guestfish uses to search for kernel and initrd.img. See "
24227 "the discussion of paths in L<guestfs(3)>."
24232 #: ../fish/guestfish.pod:1070
24233 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
24238 #: ../fish/guestfish.pod:1072
24244 #: ../fish/guestfish.pod:1074
24246 "The C<more> command uses C<$PAGER> as the pager. If not set, it uses "
24252 #: ../fish/guestfish.pod:1090 ../fuse/guestmount.pod:262
24257 #: ../fish/guestfish.pod:1094 ../fuse/guestmount.pod:266
24258 msgid "$HOME/.libguestfs-tools.rc"
24262 #: ../fish/guestfish.pod:1096 ../fuse/guestmount.pod:268
24263 msgid "/etc/libguestfs-tools.conf"
24267 #: ../fish/guestfish.pod:1098 ../fuse/guestmount.pod:270
24269 "This configuration file controls the default read-only or read-write mode "
24270 "(I<--ro> or I<--rw>)."
24274 #: ../fish/guestfish.pod:1101
24275 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
24280 #: ../fish/guestfish.pod:1103
24281 msgid "$HOME/.guestfish"
24286 #: ../fish/guestfish.pod:1105
24288 "If compiled with GNU readline support, then the command history is saved in "
24294 #: ../fish/guestfish.pod:1108
24295 msgid "$HOME/.inputrc"
24300 #: ../fish/guestfish.pod:1110
24301 msgid "/etc/inputrc"
24306 #: ../fish/guestfish.pod:1112
24308 "If compiled with GNU readline support, then these files can be used to "
24309 "configure readline. For further information, please see L<readline(3)/"
24310 "INITIALIZATION FILE>."
24315 #: ../fish/guestfish.pod:1116
24316 msgid "To write rules which only apply to guestfish, use:"
24321 #: ../fish/guestfish.pod:1118
24332 #: ../fish/guestfish.pod:1122
24334 "Variables that you can set in inputrc that change the behaviour of guestfish "
24335 "in useful ways include:"
24340 #: ../fish/guestfish.pod:1127
24341 msgid "completion-ignore-case (default: on)"
24346 #: ../fish/guestfish.pod:1129
24348 "By default, guestfish will ignore case when tab-completing paths on the "
24354 #: ../fish/guestfish.pod:1132
24357 " set completion-ignore-case off\n"
24363 #: ../fish/guestfish.pod:1134
24364 msgid "to make guestfish case sensitive."
24369 #: ../fish/guestfish.pod:1138
24375 #: ../fish/guestfish.pod:1140
24376 msgid "test2.img (etc)"
24380 #: ../fish/guestfish.pod:1142
24382 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
24383 "will be created in the file C<test1.img> in the current directory. The "
24384 "second use of I<-N> will use C<test2.img> and so on. Any existing file with "
24385 "the same name will be overwritten."
24389 #: ../fish/guestfish.pod:1151
24391 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-in(1)"
24392 ">, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)"
24393 ">, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-partitions"
24394 "(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)"
24395 ">, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)"
24396 ">, L<hexedit(1)>."
24401 #: ../fish/guestfish.pod:1181 ../test-tool/libguestfs-test-tool.pod:102
24402 #: ../fuse/guestmount.pod:297 ../tools/virt-edit.pl:518
24403 #: ../tools/virt-win-reg.pl:606 ../tools/virt-list-filesystems.pl:210
24404 #: ../tools/virt-tar.pl:309 ../tools/virt-make-fs.pl:572
24405 #: ../tools/virt-list-partitions.pl:277
24407 "This program is free software; you can redistribute it and/or modify it "
24408 "under the terms of the GNU General Public License as published by the Free "
24409 "Software Foundation; either version 2 of the License, or (at your option) "
24410 "any later version."
24415 #: ../fish/guestfish.pod:1186 ../test-tool/libguestfs-test-tool.pod:107
24416 #: ../fuse/guestmount.pod:302 ../tools/virt-edit.pl:523
24417 #: ../tools/virt-win-reg.pl:611 ../tools/virt-list-filesystems.pl:215
24418 #: ../tools/virt-tar.pl:314 ../tools/virt-make-fs.pl:577
24419 #: ../tools/virt-list-partitions.pl:282
24421 "This program is distributed in the hope that it will be useful, but WITHOUT "
24422 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
24423 "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for "
24429 #: ../fish/guestfish.pod:1191 ../test-tool/libguestfs-test-tool.pod:112
24430 #: ../fuse/guestmount.pod:307 ../tools/virt-edit.pl:528
24431 #: ../tools/virt-win-reg.pl:616 ../tools/virt-list-filesystems.pl:220
24432 #: ../tools/virt-tar.pl:319 ../tools/virt-make-fs.pl:582
24433 #: ../tools/virt-list-partitions.pl:287
24435 "You should have received a copy of the GNU General Public License along with "
24436 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
24437 "Ave, Cambridge, MA 02139, USA."
24442 #: ../fish/guestfish-actions.pod:1
24448 #: ../fish/guestfish-actions.pod:3
24451 " add-cdrom filename\n"
24457 #: ../fish/guestfish-actions.pod:15
24459 "This call checks for the existence of C<filename>. This stops you from "
24460 "specifying other types of drive which are supported by qemu such as C<nbd:> "
24461 "and C<http:> URLs. To specify those, use the general L</config> call "
24467 #: ../fish/guestfish-actions.pod:22
24469 "If you just want to add an ISO file (often you use this as an efficient way "
24470 "to transfer large files into the guest), then you should probably use L</add-"
24471 "drive-ro> instead."
24476 #: ../fish/guestfish-actions.pod:35
24482 #: ../fish/guestfish-actions.pod:37
24487 #: ../fish/guestfish-actions.pod:39
24490 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..]\n"
24496 #: ../fish/guestfish-actions.pod:41
24498 "This function adds the disk(s) attached to the named libvirt domain C<dom>. "
24499 "It works by connecting to libvirt, requesting the domain and domain XML from "
24500 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
24505 #: ../fish/guestfish-actions.pod:71
24507 "The other optional parameters are passed directly through to L</add-drive-"
24513 #: ../fish/guestfish-actions.pod:74 ../fish/guestfish-actions.pod:138
24514 #: ../fish/guestfish-actions.pod:3044
24516 "This command has one or more optional arguments. See L</OPTIONAL ARGUMENTS>."
24521 #: ../fish/guestfish-actions.pod:76
24527 #: ../fish/guestfish-actions.pod:78
24530 " add-drive filename\n"
24536 #: ../fish/guestfish-actions.pod:80
24538 "This function is the equivalent of calling L</add-drive-opts> with no "
24539 "optional parameters, so the disk is added writable, with the format being "
24540 "detected automatically."
24545 #: ../fish/guestfish-actions.pod:84
24547 "Automatic detection of the format opens you up to a potential security hole "
24548 "when dealing with untrusted raw-format images. See CVE-2010-3851 and "
24549 "RHBZ#642934. Specifying the format closes this security hole. Therefore "
24550 "you should think about replacing calls to this function with calls to L</add-"
24551 "drive-opts>, and specifying the format."
24556 #: ../fish/guestfish-actions.pod:91
24557 msgid "add-drive-opts"
24562 #: ../fish/guestfish-actions.pod:93
24568 #: ../fish/guestfish-actions.pod:95
24571 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
24577 #: ../fish/guestfish-actions.pod:122
24579 "This forces the image format. If you omit this (or use L</add-drive> or L</"
24580 "add-drive-ro>) then the format is automatically detected. Possible formats "
24581 "include C<raw> and C<qcow2>."
24586 #: ../fish/guestfish-actions.pod:133
24588 "This rarely-used option lets you emulate the behaviour of the deprecated L</"
24589 "add-drive-with-if> call (q.v.)"
24594 #: ../fish/guestfish-actions.pod:140
24595 msgid "add-drive-ro"
24600 #: ../fish/guestfish-actions.pod:142
24606 #: ../fish/guestfish-actions.pod:144
24609 " add-drive-ro filename\n"
24615 #: ../fish/guestfish-actions.pod:146
24617 "This function is the equivalent of calling L</add-drive-opts> with the "
24618 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
24619 "is added read-only, with the format being detected automatically."
24624 #: ../fish/guestfish-actions.pod:151
24625 msgid "add-drive-ro-with-if"
24630 #: ../fish/guestfish-actions.pod:153
24633 " add-drive-ro-with-if filename iface\n"
24639 #: ../fish/guestfish-actions.pod:155
24641 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
24642 "interface emulation to use at run time."
24647 #: ../fish/guestfish-actions.pod:165
24648 msgid "add-drive-with-if"
24653 #: ../fish/guestfish-actions.pod:167
24656 " add-drive-with-if filename iface\n"
24662 #: ../fish/guestfish-actions.pod:169
24664 "This is the same as L</add-drive> but it allows you to specify the QEMU "
24665 "interface emulation to use at run time."
24670 #: ../fish/guestfish-actions.pod:179
24676 #: ../fish/guestfish-actions.pod:181
24679 " aug-clear augpath\n"
24685 #: ../fish/guestfish-actions.pod:186
24691 #: ../fish/guestfish-actions.pod:188
24700 #: ../fish/guestfish-actions.pod:190
24702 "Close the current Augeas handle and free up any resources used by it. After "
24703 "calling this, you have to call L</aug-init> again before you can use any "
24704 "other Augeas functions."
24709 #: ../fish/guestfish-actions.pod:195
24710 msgid "aug-defnode"
24715 #: ../fish/guestfish-actions.pod:197
24718 " aug-defnode name expr val\n"
24724 #: ../fish/guestfish-actions.pod:202
24726 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
24727 "calling L</aug-set> C<expr>, C<value>. C<name> will be the nodeset "
24728 "containing that single node."
24733 #: ../fish/guestfish-actions.pod:210
24739 #: ../fish/guestfish-actions.pod:212
24742 " aug-defvar name expr\n"
24748 #: ../fish/guestfish-actions.pod:221
24754 #: ../fish/guestfish-actions.pod:223
24757 " aug-get augpath\n"
24763 #: ../fish/guestfish-actions.pod:228
24769 #: ../fish/guestfish-actions.pod:230
24772 " aug-init root flags\n"
24778 #: ../fish/guestfish-actions.pod:236
24779 msgid "You must call this before using any other L</aug-*> commands."
24784 #: ../fish/guestfish-actions.pod:271
24785 msgid "Do not load the tree in L</aug-init>."
24790 #: ../fish/guestfish-actions.pod:275
24791 msgid "To close the handle, you can call L</aug-close>."
24796 #: ../fish/guestfish-actions.pod:279
24802 #: ../fish/guestfish-actions.pod:281
24805 " aug-insert augpath label true|false\n"
24811 #: ../fish/guestfish-actions.pod:291
24817 #: ../fish/guestfish-actions.pod:293
24826 #: ../fish/guestfish-actions.pod:300
24832 #: ../fish/guestfish-actions.pod:302
24835 " aug-ls augpath\n"
24841 #: ../fish/guestfish-actions.pod:304
24843 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
24844 "resulting nodes into alphabetical order."
24849 #: ../fish/guestfish-actions.pod:307
24855 #: ../fish/guestfish-actions.pod:309
24858 " aug-match augpath\n"
24864 #: ../fish/guestfish-actions.pod:315
24870 #: ../fish/guestfish-actions.pod:317
24873 " aug-mv src dest\n"
24879 #: ../fish/guestfish-actions.pod:322
24885 #: ../fish/guestfish-actions.pod:324
24888 " aug-rm augpath\n"
24894 #: ../fish/guestfish-actions.pod:330
24900 #: ../fish/guestfish-actions.pod:332
24909 #: ../fish/guestfish-actions.pod:336
24911 "The flags which were passed to L</aug-init> affect exactly how files are "
24917 #: ../fish/guestfish-actions.pod:339
24923 #: ../fish/guestfish-actions.pod:341
24926 " aug-set augpath val\n"
24932 #: ../fish/guestfish-actions.pod:345
24934 "In the Augeas API, it is possible to clear a node by setting the value to "
24935 "NULL. Due to an oversight in the libguestfs API you cannot do that with "
24936 "this call. Instead you must use the L</aug-clear> call."
24941 #: ../fish/guestfish-actions.pod:350
24947 #: ../fish/guestfish-actions.pod:352
24950 " available 'groups ...'\n"
24956 #: ../fish/guestfish-actions.pod:358
24958 "The libguestfs groups, and the functions that those groups correspond to, "
24959 "are listed in L<guestfs(3)/AVAILABILITY>. You can also fetch this list at "
24960 "runtime by calling L</available-all-groups>."
24965 #: ../fish/guestfish-actions.pod:382
24966 msgid "You must call L</launch> before calling this function."
24971 #: ../fish/guestfish-actions.pod:404
24973 "This call was added in version C<1.0.80>. In previous versions of "
24974 "libguestfs all you could do would be to speculatively execute a command to "
24975 "find out if the daemon implemented it. See also L</version>."
24980 #: ../fish/guestfish-actions.pod:411
24981 msgid "available-all-groups"
24986 #: ../fish/guestfish-actions.pod:413
24989 " available-all-groups\n"
24995 #: ../fish/guestfish-actions.pod:415
24997 "This command returns a list of all optional groups that this daemon knows "
24998 "about. Note this returns both supported and unsupported groups. To find "
24999 "out which ones the daemon can actually support you have to call L</"
25000 "available> on each member of the returned list."
25005 #: ../fish/guestfish-actions.pod:421
25006 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
25011 #: ../fish/guestfish-actions.pod:423
25017 #: ../fish/guestfish-actions.pod:425
25020 " base64-in (base64file|-) filename\n"
25026 #: ../fish/guestfish-actions.pod:430 ../fish/guestfish-actions.pod:439
25027 #: ../fish/guestfish-actions.pod:663 ../fish/guestfish-actions.pod:832
25028 #: ../fish/guestfish-actions.pod:851 ../fish/guestfish-actions.pod:1225
25029 #: ../fish/guestfish-actions.pod:4486 ../fish/guestfish-actions.pod:4498
25030 #: ../fish/guestfish-actions.pod:4509 ../fish/guestfish-actions.pod:4520
25031 #: ../fish/guestfish-actions.pod:4572 ../fish/guestfish-actions.pod:4581
25032 #: ../fish/guestfish-actions.pod:4635 ../fish/guestfish-actions.pod:4658
25033 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
25038 #: ../fish/guestfish-actions.pod:432
25044 #: ../fish/guestfish-actions.pod:434
25047 " base64-out filename (base64file|-)\n"
25053 #: ../fish/guestfish-actions.pod:441
25054 msgid "blockdev-flushbufs"
25059 #: ../fish/guestfish-actions.pod:443
25062 " blockdev-flushbufs device\n"
25068 #: ../fish/guestfish-actions.pod:450
25069 msgid "blockdev-getbsz"
25074 #: ../fish/guestfish-actions.pod:452
25077 " blockdev-getbsz device\n"
25083 #: ../fish/guestfish-actions.pod:461
25084 msgid "blockdev-getro"
25089 #: ../fish/guestfish-actions.pod:463
25092 " blockdev-getro device\n"
25098 #: ../fish/guestfish-actions.pod:470
25099 msgid "blockdev-getsize64"
25104 #: ../fish/guestfish-actions.pod:472
25107 " blockdev-getsize64 device\n"
25113 #: ../fish/guestfish-actions.pod:476
25114 msgid "See also L</blockdev-getsz>."
25119 #: ../fish/guestfish-actions.pod:480
25120 msgid "blockdev-getss"
25125 #: ../fish/guestfish-actions.pod:482
25128 " blockdev-getss device\n"
25134 #: ../fish/guestfish-actions.pod:487
25136 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
25141 #: ../fish/guestfish-actions.pod:492
25142 msgid "blockdev-getsz"
25147 #: ../fish/guestfish-actions.pod:494
25150 " blockdev-getsz device\n"
25156 #: ../fish/guestfish-actions.pod:499
25158 "See also L</blockdev-getss> for the real sector size of the device, and L</"
25159 "blockdev-getsize64> for the more useful I<size in bytes>."
25164 #: ../fish/guestfish-actions.pod:505
25165 msgid "blockdev-rereadpt"
25170 #: ../fish/guestfish-actions.pod:507
25173 " blockdev-rereadpt device\n"
25179 #: ../fish/guestfish-actions.pod:513
25180 msgid "blockdev-setbsz"
25185 #: ../fish/guestfish-actions.pod:515
25188 " blockdev-setbsz device blocksize\n"
25194 #: ../fish/guestfish-actions.pod:524
25195 msgid "blockdev-setro"
25200 #: ../fish/guestfish-actions.pod:526
25203 " blockdev-setro device\n"
25209 #: ../fish/guestfish-actions.pod:532
25210 msgid "blockdev-setrw"
25215 #: ../fish/guestfish-actions.pod:534
25218 " blockdev-setrw device\n"
25224 #: ../fish/guestfish-actions.pod:540
25225 msgid "case-sensitive-path"
25230 #: ../fish/guestfish-actions.pod:542
25233 " case-sensitive-path path\n"
25239 #: ../fish/guestfish-actions.pod:566
25241 "Thus L</case-sensitive-path> (\"/Windows/System32\") might return C<\"/"
25242 "WINDOWS/system32\"> (the exact return value would depend on details of how "
25243 "the directories were originally created under Windows)."
25248 #: ../fish/guestfish-actions.pod:574
25249 msgid "See also L</realpath>."
25254 #: ../fish/guestfish-actions.pod:576
25260 #: ../fish/guestfish-actions.pod:578
25269 #: ../fish/guestfish-actions.pod:582
25271 "Note that this function cannot correctly handle binary files (specifically, "
25272 "files containing C<\\0> character which is treated as end of string). For "
25273 "those you need to use the L</read-file> or L</download> functions which have "
25274 "a more complex interface."
25279 #: ../fish/guestfish-actions.pod:590
25285 #: ../fish/guestfish-actions.pod:592
25288 " checksum csumtype path\n"
25294 #: ../fish/guestfish-actions.pod:635
25295 msgid "To get the checksum for a device, use L</checksum-device>."
25300 #: ../fish/guestfish-actions.pod:637
25301 msgid "To get the checksums for many files, use L</checksums-out>."
25306 #: ../fish/guestfish-actions.pod:639
25307 msgid "checksum-device"
25312 #: ../fish/guestfish-actions.pod:641
25315 " checksum-device csumtype device\n"
25321 #: ../fish/guestfish-actions.pod:643
25323 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
25324 "device named C<device>. For the types of checksums supported see the L</"
25325 "checksum> command."
25330 #: ../fish/guestfish-actions.pod:647
25331 msgid "checksums-out"
25336 #: ../fish/guestfish-actions.pod:649
25339 " checksums-out csumtype directory (sumsfile|-)\n"
25345 #: ../fish/guestfish-actions.pod:665
25351 #: ../fish/guestfish-actions.pod:667
25354 " chmod mode path\n"
25360 #: ../fish/guestfish-actions.pod:678
25366 #: ../fish/guestfish-actions.pod:680
25369 " chown owner group path\n"
25375 #: ../fish/guestfish-actions.pod:688
25381 #: ../fish/guestfish-actions.pod:690
25384 " command 'arguments ...'\n"
25390 #: ../fish/guestfish-actions.pod:697
25392 "The single parameter is an argv-style list of arguments. The first element "
25393 "is the name of the program to run. Subsequent elements are parameters. The "
25394 "list must be non-empty (ie. must contain a program name). Note that the "
25395 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
25400 #: ../fish/guestfish-actions.pod:725
25401 msgid "command-lines"
25406 #: ../fish/guestfish-actions.pod:727
25409 " command-lines 'arguments ...'\n"
25415 #: ../fish/guestfish-actions.pod:729
25417 "This is the same as L</command>, but splits the result into a list of lines."
25422 #: ../fish/guestfish-actions.pod:732
25423 msgid "See also: L</sh-lines>"
25428 #: ../fish/guestfish-actions.pod:737
25434 #: ../fish/guestfish-actions.pod:739
25437 " config qemuparam qemuvalue\n"
25443 #: ../fish/guestfish-actions.pod:750
25449 #: ../fish/guestfish-actions.pod:752
25452 " copy-size src dest size\n"
25458 #: ../fish/guestfish-actions.pod:760
25464 #: ../fish/guestfish-actions.pod:762
25473 #: ../fish/guestfish-actions.pod:767
25479 #: ../fish/guestfish-actions.pod:769
25488 #: ../fish/guestfish-actions.pod:774
25494 #: ../fish/guestfish-actions.pod:776
25503 #: ../fish/guestfish-actions.pod:783
25505 "If the destination is a device, it must be as large or larger than the "
25506 "source file or device, otherwise the copy will fail. This command cannot do "
25507 "partial copies (see L</copy-size>)."
25512 #: ../fish/guestfish-actions.pod:787
25518 #: ../fish/guestfish-actions.pod:789
25527 #: ../fish/guestfish-actions.pod:793 ../fish/guestfish-actions.pod:804
25529 "This command is mostly useful for interactive sessions. It is I<not> "
25530 "intended that you try to parse the output string. Use L</statvfs> from "
25536 #: ../fish/guestfish-actions.pod:797
25542 #: ../fish/guestfish-actions.pod:799
25551 #: ../fish/guestfish-actions.pod:808
25557 #: ../fish/guestfish-actions.pod:810
25566 #: ../fish/guestfish-actions.pod:816
25568 "Another way to get the same information is to enable verbose messages with "
25569 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
25570 "before running the program."
25575 #: ../fish/guestfish-actions.pod:821
25581 #: ../fish/guestfish-actions.pod:823
25584 " download remotefilename (filename|-)\n"
25590 #: ../fish/guestfish-actions.pod:830
25591 msgid "See also L</upload>, L</cat>."
25596 #: ../fish/guestfish-actions.pod:834
25597 msgid "download-offset"
25602 #: ../fish/guestfish-actions.pod:836
25605 " download-offset remotefilename (filename|-) offset size\n"
25611 #: ../fish/guestfish-actions.pod:844
25613 "Note that there is no limit on the amount of data that can be downloaded "
25614 "with this call, unlike with L</pread>, and this call always reads the full "
25615 "amount unless an error occurs."
25620 #: ../fish/guestfish-actions.pod:849
25621 msgid "See also L</download>, L</pread>."
25626 #: ../fish/guestfish-actions.pod:853
25627 msgid "drop-caches"
25632 #: ../fish/guestfish-actions.pod:855
25635 " drop-caches whattodrop\n"
25641 #: ../fish/guestfish-actions.pod:867
25647 #: ../fish/guestfish-actions.pod:869
25656 #: ../fish/guestfish-actions.pod:881
25662 #: ../fish/guestfish-actions.pod:883
25665 " e2fsck-f device\n"
25671 #: ../fish/guestfish-actions.pod:889
25673 "This command is only needed because of L</resize2fs> (q.v.). Normally you "
25674 "should use L</fsck>."
25679 #: ../fish/guestfish-actions.pod:892
25680 msgid "echo-daemon"
25685 #: ../fish/guestfish-actions.pod:894
25688 " echo-daemon 'words ...'\n"
25694 #: ../fish/guestfish-actions.pod:901
25695 msgid "See also L</ping-daemon>."
25700 #: ../fish/guestfish-actions.pod:903
25706 #: ../fish/guestfish-actions.pod:905
25709 " egrep regex path\n"
25715 #: ../fish/guestfish-actions.pod:913
25721 #: ../fish/guestfish-actions.pod:915
25724 " egrepi regex path\n"
25730 #: ../fish/guestfish-actions.pod:923
25736 #: ../fish/guestfish-actions.pod:925
25739 " equal file1 file2\n"
25745 #: ../fish/guestfish-actions.pod:932
25751 #: ../fish/guestfish-actions.pod:934
25760 #: ../fish/guestfish-actions.pod:939
25761 msgid "See also L</is-file>, L</is-dir>, L</stat>."
25766 #: ../fish/guestfish-actions.pod:941
25772 #: ../fish/guestfish-actions.pod:943
25775 " fallocate path len\n"
25781 #: ../fish/guestfish-actions.pod:960
25782 msgid "fallocate64"
25787 #: ../fish/guestfish-actions.pod:962
25790 " fallocate64 path len\n"
25796 #: ../fish/guestfish-actions.pod:968
25798 "Note that this call allocates disk blocks for the file. To create a sparse "
25799 "file use L</truncate-size> instead."
25804 #: ../fish/guestfish-actions.pod:971
25806 "The deprecated call L</fallocate> does the same, but owing to an oversight "
25807 "it only allowed 30 bit lengths to be specified, effectively limiting the "
25808 "maximum size of files created through that call to 1GB."
25813 #: ../fish/guestfish-actions.pod:980
25819 #: ../fish/guestfish-actions.pod:982
25822 " fgrep pattern path\n"
25828 #: ../fish/guestfish-actions.pod:990
25834 #: ../fish/guestfish-actions.pod:992
25837 " fgrepi pattern path\n"
25843 #: ../fish/guestfish-actions.pod:1000
25849 #: ../fish/guestfish-actions.pod:1002
25857 #: ../fish/guestfish-actions.pod:1018
25859 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
25865 #: ../fish/guestfish-actions.pod:1021
25866 msgid "file-architecture"
25871 #: ../fish/guestfish-actions.pod:1023
25874 " file-architecture filename\n"
25880 #: ../fish/guestfish-actions.pod:1126
25886 #: ../fish/guestfish-actions.pod:1128
25895 #: ../fish/guestfish-actions.pod:1132
25897 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
25898 "file> etc. To get the size of block devices, use L</blockdev-getsize64>."
25903 #: ../fish/guestfish-actions.pod:1136
25909 #: ../fish/guestfish-actions.pod:1138
25912 " fill c len path\n"
25918 #: ../fish/guestfish-actions.pod:1144
25920 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
25921 "L</truncate-size>. To create a file with a pattern of repeating bytes use "
25922 "L</fill-pattern>."
25927 #: ../fish/guestfish-actions.pod:1149
25928 msgid "fill-pattern"
25933 #: ../fish/guestfish-actions.pod:1151
25936 " fill-pattern pattern len path\n"
25942 #: ../fish/guestfish-actions.pod:1153
25944 "This function is like L</fill> except that it creates a new file of length "
25945 "C<len> containing the repeating pattern of bytes in C<pattern>. The pattern "
25946 "is truncated if necessary to ensure the length of the file is exactly C<len> "
25952 #: ../fish/guestfish-actions.pod:1158
25958 #: ../fish/guestfish-actions.pod:1160
25961 " find directory\n"
25967 #: ../fish/guestfish-actions.pod:1174
25968 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
25973 #: ../fish/guestfish-actions.pod:1187
25974 msgid "See also L</find0>."
25979 #: ../fish/guestfish-actions.pod:1192
25985 #: ../fish/guestfish-actions.pod:1194
25988 " find0 directory (files|-)\n"
25994 #: ../fish/guestfish-actions.pod:1200
25996 "This command works the same way as L</find> with the following exceptions:"
26001 #: ../fish/guestfish-actions.pod:1227
26002 msgid "findfs-label"
26007 #: ../fish/guestfish-actions.pod:1229
26010 " findfs-label label\n"
26016 #: ../fish/guestfish-actions.pod:1235
26017 msgid "To find the label of a filesystem, use L</vfs-label>."
26022 #: ../fish/guestfish-actions.pod:1237
26023 msgid "findfs-uuid"
26028 #: ../fish/guestfish-actions.pod:1239
26031 " findfs-uuid uuid\n"
26037 #: ../fish/guestfish-actions.pod:1245
26038 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
26043 #: ../fish/guestfish-actions.pod:1247
26049 #: ../fish/guestfish-actions.pod:1249
26052 " fsck fstype device\n"
26058 #: ../fish/guestfish-actions.pod:1279
26064 #: ../fish/guestfish-actions.pod:1281
26072 #: ../fish/guestfish-actions.pod:1288
26073 msgid "get-attach-method"
26077 #: ../fish/guestfish-actions.pod:1290
26080 " get-attach-method\n"
26085 #: ../fish/guestfish-actions.pod:1292
26086 msgid "Return the current attach method. See L</set-attach-method>."
26091 #: ../fish/guestfish-actions.pod:1294
26092 msgid "get-autosync"
26097 #: ../fish/guestfish-actions.pod:1296
26106 #: ../fish/guestfish-actions.pod:1300
26112 #: ../fish/guestfish-actions.pod:1302
26121 #: ../fish/guestfish-actions.pod:1306
26122 msgid "get-e2label"
26127 #: ../fish/guestfish-actions.pod:1308
26130 " get-e2label device\n"
26136 #: ../fish/guestfish-actions.pod:1320
26142 #: ../fish/guestfish-actions.pod:1322
26145 " get-e2uuid device\n"
26151 #: ../fish/guestfish-actions.pod:1334
26152 msgid "get-memsize"
26157 #: ../fish/guestfish-actions.pod:1336
26166 #: ../fish/guestfish-actions.pod:1341
26168 "If L</set-memsize> was not called on this handle, and if "
26169 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
26170 "value for memsize."
26175 #: ../fish/guestfish-actions.pod:1348
26176 msgid "get-network"
26181 #: ../fish/guestfish-actions.pod:1350
26190 #: ../fish/guestfish-actions.pod:1354
26196 #: ../fish/guestfish-actions.pod:1356
26205 #: ../fish/guestfish-actions.pod:1363
26211 #: ../fish/guestfish-actions.pod:1365
26217 #: ../fish/guestfish-actions.pod:1367
26226 #: ../fish/guestfish-actions.pod:1374
26232 #: ../fish/guestfish-actions.pod:1376
26241 #: ../fish/guestfish-actions.pod:1383
26242 msgid "get-recovery-proc"
26247 #: ../fish/guestfish-actions.pod:1385
26250 " get-recovery-proc\n"
26256 #: ../fish/guestfish-actions.pod:1389
26257 msgid "get-selinux"
26262 #: ../fish/guestfish-actions.pod:1391
26271 #: ../fish/guestfish-actions.pod:1393
26273 "This returns the current setting of the selinux flag which is passed to the "
26274 "appliance at boot time. See L</set-selinux>."
26279 #: ../fish/guestfish-actions.pod:1399
26285 #: ../fish/guestfish-actions.pod:1401
26294 #: ../fish/guestfish-actions.pod:1408
26300 #: ../fish/guestfish-actions.pod:1410
26309 #: ../fish/guestfish-actions.pod:1414
26315 #: ../fish/guestfish-actions.pod:1416
26324 #: ../fish/guestfish-actions.pod:1418
26326 "Return the current umask. By default the umask is C<022> unless it has been "
26327 "set by calling L</umask>."
26332 #: ../fish/guestfish-actions.pod:1421
26333 msgid "get-verbose"
26338 #: ../fish/guestfish-actions.pod:1423
26347 #: ../fish/guestfish-actions.pod:1427
26353 #: ../fish/guestfish-actions.pod:1429
26362 #: ../fish/guestfish-actions.pod:1433
26363 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
26368 #: ../fish/guestfish-actions.pod:1436
26374 #: ../fish/guestfish-actions.pod:1438
26377 " getxattr path name\n"
26383 #: ../fish/guestfish-actions.pod:1440
26385 "Get a single extended attribute from file C<path> named C<name>. This call "
26386 "follows symlinks. If you want to lookup an extended attribute for the "
26387 "symlink itself, use L</lgetxattr>."
26392 #: ../fish/guestfish-actions.pod:1444 ../fish/guestfish-actions.pod:2450
26394 "Normally it is better to get all extended attributes from a file in one go "
26395 "by calling L</getxattrs>. However some Linux filesystem implementations are "
26396 "buggy and do not provide a way to list out attributes. For these "
26397 "filesystems (notably ntfs-3g) you have to know the names of the extended "
26398 "attributes you want in advance and call this function."
26403 #: ../fish/guestfish-actions.pod:1454
26404 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
26409 #: ../fish/guestfish-actions.pod:1456
26415 #: ../fish/guestfish-actions.pod:1458
26418 " getxattrs path\n"
26424 #: ../fish/guestfish-actions.pod:1466
26425 msgid "See also: L</lgetxattrs>, L<attr(5)>."
26430 #: ../fish/guestfish-actions.pod:1468
26431 msgid "glob-expand"
26436 #: ../fish/guestfish-actions.pod:1470
26439 " glob-expand pattern\n"
26445 #: ../fish/guestfish-actions.pod:1483
26451 #: ../fish/guestfish-actions.pod:1485
26454 " grep regex path\n"
26460 #: ../fish/guestfish-actions.pod:1493
26466 #: ../fish/guestfish-actions.pod:1495
26469 " grepi regex path\n"
26475 #: ../fish/guestfish-actions.pod:1503
26476 msgid "grub-install"
26481 #: ../fish/guestfish-actions.pod:1505
26484 " grub-install root device\n"
26490 #: ../fish/guestfish-actions.pod:1521
26496 #: ../fish/guestfish-actions.pod:1523
26505 #: ../fish/guestfish-actions.pod:1531
26511 #: ../fish/guestfish-actions.pod:1533
26514 " head-n nrlines path\n"
26520 #: ../fish/guestfish-actions.pod:1546
26526 #: ../fish/guestfish-actions.pod:1548
26535 #: ../fish/guestfish-actions.pod:1556
26541 #: ../fish/guestfish-actions.pod:1558
26544 " initrd-cat initrdpath filename\n"
26550 #: ../fish/guestfish-actions.pod:1570
26551 msgid "See also L</initrd-list>."
26556 #: ../fish/guestfish-actions.pod:1575
26557 msgid "initrd-list"
26562 #: ../fish/guestfish-actions.pod:1577
26565 " initrd-list path\n"
26571 #: ../fish/guestfish-actions.pod:1589
26572 msgid "inotify-add-watch"
26577 #: ../fish/guestfish-actions.pod:1591
26580 " inotify-add-watch path mask\n"
26586 #: ../fish/guestfish-actions.pod:1603
26587 msgid "inotify-close"
26592 #: ../fish/guestfish-actions.pod:1605
26601 #: ../fish/guestfish-actions.pod:1611
26602 msgid "inotify-files"
26607 #: ../fish/guestfish-actions.pod:1613
26616 #: ../fish/guestfish-actions.pod:1615
26618 "This function is a helpful wrapper around L</inotify-read> which just "
26619 "returns a list of pathnames of objects that were touched. The returned "
26620 "pathnames are sorted and deduplicated."
26625 #: ../fish/guestfish-actions.pod:1619
26626 msgid "inotify-init"
26631 #: ../fish/guestfish-actions.pod:1621
26634 " inotify-init maxevents\n"
26640 #: ../fish/guestfish-actions.pod:1627
26642 "C<maxevents> is the maximum number of events which will be queued up between "
26643 "calls to L</inotify-read> or L</inotify-files>. If this is passed as C<0>, "
26644 "then the kernel (or previously set) default is used. For Linux 2.6.29 the "
26645 "default was 16384 events. Beyond this limit, the kernel throws away events, "
26646 "but records the fact that it threw them away by setting a flag "
26647 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
26652 #: ../fish/guestfish-actions.pod:1637
26654 "Before any events are generated, you have to add some watches to the "
26655 "internal watch list. See: L</inotify-add-watch>, L</inotify-rm-watch> and "
26656 "L</inotify-watch-all>."
26661 #: ../fish/guestfish-actions.pod:1643
26663 "Queued up events should be read periodically by calling L</inotify-read> (or "
26664 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>). "
26665 "If you don't read the events out often enough then you risk the internal "
26666 "queue overflowing."
26671 #: ../fish/guestfish-actions.pod:1650
26673 "The handle should be closed after use by calling L</inotify-close>. This "
26674 "also removes any watches automatically."
26679 #: ../fish/guestfish-actions.pod:1659
26680 msgid "inotify-read"
26685 #: ../fish/guestfish-actions.pod:1661
26694 #: ../fish/guestfish-actions.pod:1674
26695 msgid "inotify-rm-watch"
26700 #: ../fish/guestfish-actions.pod:1676
26703 " inotify-rm-watch wd\n"
26709 #: ../fish/guestfish-actions.pod:1678
26710 msgid "Remove a previously defined inotify watch. See L</inotify-add-watch>."
26715 #: ../fish/guestfish-actions.pod:1681
26716 msgid "inspect-get-arch"
26721 #: ../fish/guestfish-actions.pod:1683
26724 " inspect-get-arch root\n"
26730 #: ../fish/guestfish-actions.pod:1685 ../fish/guestfish-actions.pod:1701
26731 #: ../fish/guestfish-actions.pod:1787 ../fish/guestfish-actions.pod:1823
26732 #: ../fish/guestfish-actions.pod:1841 ../fish/guestfish-actions.pod:1875
26733 #: ../fish/guestfish-actions.pod:1890 ../fish/guestfish-actions.pod:1911
26734 #: ../fish/guestfish-actions.pod:1926 ../fish/guestfish-actions.pod:1959
26735 #: ../fish/guestfish-actions.pod:1981 ../fish/guestfish-actions.pod:2005
26736 #: ../fish/guestfish-actions.pod:2022 ../fish/guestfish-actions.pod:2065
26737 #: ../fish/guestfish-actions.pod:2100 ../fish/guestfish-actions.pod:2116
26738 #: ../fish/guestfish-actions.pod:2132 ../fish/guestfish-actions.pod:2145
26739 #: ../fish/guestfish-actions.pod:2158 ../fish/guestfish-actions.pod:2173
26741 "This function should only be called with a root device string as returned by "
26747 #: ../fish/guestfish-actions.pod:1688
26749 "This returns the architecture of the inspected operating system. The "
26750 "possible return values are listed under L</file-architecture>."
26755 #: ../fish/guestfish-actions.pod:1697
26756 msgid "inspect-get-distro"
26761 #: ../fish/guestfish-actions.pod:1699
26764 " inspect-get-distro root\n"
26769 #: ../fish/guestfish-actions.pod:1783
26770 msgid "inspect-get-drive-mappings"
26774 #: ../fish/guestfish-actions.pod:1785
26777 " inspect-get-drive-mappings root\n"
26782 #: ../fish/guestfish-actions.pod:1815
26784 "Please read L<guestfs(3)/INSPECTION> for more details. See also L</inspect-"
26785 "get-mountpoints>, L</inspect-get-filesystems>."
26790 #: ../fish/guestfish-actions.pod:1819
26791 msgid "inspect-get-filesystems"
26796 #: ../fish/guestfish-actions.pod:1821
26799 " inspect-get-filesystems root\n"
26805 #: ../fish/guestfish-actions.pod:1834
26807 "Please read L<guestfs(3)/INSPECTION> for more details. See also L</inspect-"
26808 "get-mountpoints>."
26812 #: ../fish/guestfish-actions.pod:1837
26813 msgid "inspect-get-format"
26817 #: ../fish/guestfish-actions.pod:1839
26820 " inspect-get-format root\n"
26826 #: ../fish/guestfish-actions.pod:1871
26827 msgid "inspect-get-hostname"
26832 #: ../fish/guestfish-actions.pod:1873
26835 " inspect-get-hostname root\n"
26841 #: ../fish/guestfish-actions.pod:1886
26842 msgid "inspect-get-major-version"
26847 #: ../fish/guestfish-actions.pod:1888
26850 " inspect-get-major-version root\n"
26856 #: ../fish/guestfish-actions.pod:1907
26857 msgid "inspect-get-minor-version"
26862 #: ../fish/guestfish-actions.pod:1909
26865 " inspect-get-minor-version root\n"
26871 #: ../fish/guestfish-actions.pod:1919
26873 "Please read L<guestfs(3)/INSPECTION> for more details. See also L</inspect-"
26874 "get-major-version>."
26879 #: ../fish/guestfish-actions.pod:1922
26880 msgid "inspect-get-mountpoints"
26885 #: ../fish/guestfish-actions.pod:1924
26888 " inspect-get-mountpoints root\n"
26893 #: ../fish/guestfish-actions.pod:1946
26895 "For operating systems like Windows which still use drive letters, this call "
26896 "will only return an entry for the first drive \"mounted on\" C</>. For "
26897 "information about the mapping of drive letters to partitions, see L</inspect-"
26898 "get-drive-mappings>."
26903 #: ../fish/guestfish-actions.pod:1952
26905 "Please read L<guestfs(3)/INSPECTION> for more details. See also L</inspect-"
26906 "get-filesystems>."
26911 #: ../fish/guestfish-actions.pod:1955
26912 msgid "inspect-get-package-format"
26917 #: ../fish/guestfish-actions.pod:1957
26920 " inspect-get-package-format root\n"
26926 #: ../fish/guestfish-actions.pod:1962
26928 "This function and L</inspect-get-package-management> return the package "
26929 "format and package management tool used by the inspected operating system. "
26930 "For example for Fedora these functions would return C<rpm> (package format) "
26931 "and C<yum> (package management)."
26936 #: ../fish/guestfish-actions.pod:1977
26937 msgid "inspect-get-package-management"
26942 #: ../fish/guestfish-actions.pod:1979
26945 " inspect-get-package-management root\n"
26951 #: ../fish/guestfish-actions.pod:1984
26953 "L</inspect-get-package-format> and this function return the package format "
26954 "and package management tool used by the inspected operating system. For "
26955 "example for Fedora these functions would return C<rpm> (package format) and "
26956 "C<yum> (package management)."
26961 #: ../fish/guestfish-actions.pod:2001
26962 msgid "inspect-get-product-name"
26967 #: ../fish/guestfish-actions.pod:2003
26970 " inspect-get-product-name root\n"
26975 #: ../fish/guestfish-actions.pod:2018
26976 msgid "inspect-get-product-variant"
26980 #: ../fish/guestfish-actions.pod:2020
26983 " inspect-get-product-variant root\n"
26988 #: ../fish/guestfish-actions.pod:2044
26990 "Please read L<guestfs(3)/INSPECTION> for more details. See also L</inspect-"
26991 "get-product-name>, L</inspect-get-major-version>."
26996 #: ../fish/guestfish-actions.pod:2048
26997 msgid "inspect-get-roots"
27002 #: ../fish/guestfish-actions.pod:2050
27005 " inspect-get-roots\n"
27011 #: ../fish/guestfish-actions.pod:2052
27013 "This function is a convenient way to get the list of root devices, as "
27014 "returned from a previous call to L</inspect-os>, but without redoing the "
27015 "whole inspection process."
27020 #: ../fish/guestfish-actions.pod:2056
27022 "This returns an empty list if either no root devices were found or the "
27023 "caller has not called L</inspect-os>."
27028 #: ../fish/guestfish-actions.pod:2061
27029 msgid "inspect-get-type"
27034 #: ../fish/guestfish-actions.pod:2063
27037 " inspect-get-type root\n"
27042 #: ../fish/guestfish-actions.pod:2096
27043 msgid "inspect-get-windows-current-control-set"
27047 #: ../fish/guestfish-actions.pod:2098
27050 " inspect-get-windows-current-control-set root\n"
27056 #: ../fish/guestfish-actions.pod:2112
27057 msgid "inspect-get-windows-systemroot"
27062 #: ../fish/guestfish-actions.pod:2114
27065 " inspect-get-windows-systemroot root\n"
27070 #: ../fish/guestfish-actions.pod:2128
27071 msgid "inspect-is-live"
27075 #: ../fish/guestfish-actions.pod:2130
27078 " inspect-is-live root\n"
27083 #: ../fish/guestfish-actions.pod:2135
27085 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
27086 "then this returns true if a live image was detected on the disk."
27090 #: ../fish/guestfish-actions.pod:2141
27091 msgid "inspect-is-multipart"
27095 #: ../fish/guestfish-actions.pod:2143
27098 " inspect-is-multipart root\n"
27103 #: ../fish/guestfish-actions.pod:2148
27105 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
27106 "then this returns true if the disk is part of a set."
27110 #: ../fish/guestfish-actions.pod:2154
27111 msgid "inspect-is-netinst"
27115 #: ../fish/guestfish-actions.pod:2156
27118 " inspect-is-netinst root\n"
27123 #: ../fish/guestfish-actions.pod:2161
27125 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
27126 "then this returns true if the disk is a network installer, ie. not a self-"
27127 "contained install CD but one which is likely to require network access to "
27128 "complete the install."
27133 #: ../fish/guestfish-actions.pod:2169
27134 msgid "inspect-list-applications"
27139 #: ../fish/guestfish-actions.pod:2171
27142 " inspect-list-applications root\n"
27148 #: ../fish/guestfish-actions.pod:2178
27150 "I<Note:> This call works differently from other parts of the inspection "
27151 "API. You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
27152 "then mount up the disks, before calling this. Listing applications is a "
27153 "significantly more difficult operation which requires access to the full "
27154 "filesystem. Also note that unlike the other L</inspect-get-*> calls which "
27155 "are just returning data cached in the libguestfs handle, this call actually "
27156 "reads parts of the mounted filesystems during the call."
27161 #: ../fish/guestfish-actions.pod:2268
27167 #: ../fish/guestfish-actions.pod:2270
27176 #: ../fish/guestfish-actions.pod:2285
27178 "You can pass the root string(s) returned to other L</inspect-get-*> "
27179 "functions in order to query further information about each operating system, "
27180 "such as the name and version."
27185 #: ../fish/guestfish-actions.pod:2290
27187 "This function uses other libguestfs features such as L</mount-ro> and L</"
27188 "umount-all> in order to mount and unmount filesystems and look at the "
27189 "contents. This should be called with no disks currently mounted. The "
27190 "function may also use Augeas, so any existing Augeas handle will be closed."
27195 #: ../fish/guestfish-actions.pod:2302 ../fish/guestfish-actions.pod:2478
27196 #: ../fish/guestfish-actions.pod:2524
27197 msgid "See also L</list-filesystems>."
27202 #: ../fish/guestfish-actions.pod:2304
27203 msgid "is-blockdev"
27208 #: ../fish/guestfish-actions.pod:2306
27211 " is-blockdev path\n"
27217 #: ../fish/guestfish-actions.pod:2311 ../fish/guestfish-actions.pod:2329
27218 #: ../fish/guestfish-actions.pod:2348 ../fish/guestfish-actions.pod:2357
27219 #: ../fish/guestfish-actions.pod:2367 ../fish/guestfish-actions.pod:2401
27220 #: ../fish/guestfish-actions.pod:2410
27221 msgid "See also L</stat>."
27226 #: ../fish/guestfish-actions.pod:2313
27232 #: ../fish/guestfish-actions.pod:2315
27241 #: ../fish/guestfish-actions.pod:2322
27247 #: ../fish/guestfish-actions.pod:2324
27250 " is-chardev path\n"
27256 #: ../fish/guestfish-actions.pod:2331
27262 #: ../fish/guestfish-actions.pod:2333
27271 #: ../fish/guestfish-actions.pod:2340
27277 #: ../fish/guestfish-actions.pod:2342
27286 #: ../fish/guestfish-actions.pod:2350
27292 #: ../fish/guestfish-actions.pod:2352
27301 #: ../fish/guestfish-actions.pod:2359
27307 #: ../fish/guestfish-actions.pod:2361
27316 #: ../fish/guestfish-actions.pod:2369
27317 msgid "is-launching"
27322 #: ../fish/guestfish-actions.pod:2371
27331 #: ../fish/guestfish-actions.pod:2378
27337 #: ../fish/guestfish-actions.pod:2380
27346 #: ../fish/guestfish-actions.pod:2385
27352 #: ../fish/guestfish-actions.pod:2387
27361 #: ../fish/guestfish-actions.pod:2394
27367 #: ../fish/guestfish-actions.pod:2396
27370 " is-socket path\n"
27376 #: ../fish/guestfish-actions.pod:2403
27382 #: ../fish/guestfish-actions.pod:2405
27385 " is-symlink path\n"
27391 #: ../fish/guestfish-actions.pod:2412
27392 msgid "kill-subprocess"
27397 #: ../fish/guestfish-actions.pod:2414
27400 " kill-subprocess\n"
27406 #: ../fish/guestfish-actions.pod:2418
27412 #: ../fish/guestfish-actions.pod:2420
27418 #: ../fish/guestfish-actions.pod:2422
27427 #: ../fish/guestfish-actions.pod:2430
27433 #: ../fish/guestfish-actions.pod:2432
27436 " lchown owner group path\n"
27442 #: ../fish/guestfish-actions.pod:2434
27444 "Change the file owner to C<owner> and group to C<group>. This is like L</"
27445 "chown> but if C<path> is a symlink then the link itself is changed, not the "
27451 #: ../fish/guestfish-actions.pod:2442
27457 #: ../fish/guestfish-actions.pod:2444
27460 " lgetxattr path name\n"
27466 #: ../fish/guestfish-actions.pod:2460
27467 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
27472 #: ../fish/guestfish-actions.pod:2462
27478 #: ../fish/guestfish-actions.pod:2464
27481 " lgetxattrs path\n"
27487 #: ../fish/guestfish-actions.pod:2466
27489 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
27490 "it returns the extended attributes of the link itself."
27495 #: ../fish/guestfish-actions.pod:2470
27496 msgid "list-devices"
27501 #: ../fish/guestfish-actions.pod:2472
27510 #: ../fish/guestfish-actions.pod:2480
27511 msgid "list-filesystems"
27516 #: ../fish/guestfish-actions.pod:2482
27519 " list-filesystems\n"
27525 #: ../fish/guestfish-actions.pod:2501
27527 "This command runs other libguestfs commands, which might include L</mount> "
27528 "and L</umount>, and therefore you should use this soon after launch and only "
27529 "when nothing is mounted."
27534 #: ../fish/guestfish-actions.pod:2505
27536 "Not all of the filesystems returned will be mountable. In particular, swap "
27537 "partitions are returned in the list. Also this command does not check that "
27538 "each filesystem found is valid and mountable, and some filesystems might be "
27539 "mountable but require special options. Filesystems may not all belong to a "
27540 "single logical operating system (use L</inspect-os> to look for OSes)."
27545 #: ../fish/guestfish-actions.pod:2513
27546 msgid "list-partitions"
27551 #: ../fish/guestfish-actions.pod:2515
27554 " list-partitions\n"
27560 #: ../fish/guestfish-actions.pod:2521
27562 "This does not return logical volumes. For that you will need to call L</"
27568 #: ../fish/guestfish-actions.pod:2526
27574 #: ../fish/guestfish-actions.pod:2528
27583 #: ../fish/guestfish-actions.pod:2536
27589 #: ../fish/guestfish-actions.pod:2538
27592 " ln target linkname\n"
27598 #: ../fish/guestfish-actions.pod:2542
27604 #: ../fish/guestfish-actions.pod:2544
27607 " ln-f target linkname\n"
27613 #: ../fish/guestfish-actions.pod:2549
27619 #: ../fish/guestfish-actions.pod:2551
27622 " ln-s target linkname\n"
27628 #: ../fish/guestfish-actions.pod:2555
27634 #: ../fish/guestfish-actions.pod:2557
27637 " ln-sf target linkname\n"
27643 #: ../fish/guestfish-actions.pod:2562
27644 msgid "lremovexattr"
27649 #: ../fish/guestfish-actions.pod:2564
27652 " lremovexattr xattr path\n"
27658 #: ../fish/guestfish-actions.pod:2566
27660 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
27661 "it removes an extended attribute of the link itself."
27666 #: ../fish/guestfish-actions.pod:2570
27672 #: ../fish/guestfish-actions.pod:2572
27681 #: ../fish/guestfish-actions.pod:2578
27683 "This command is mostly useful for interactive sessions. Programs should "
27684 "probably use L</readdir> instead."
27689 #: ../fish/guestfish-actions.pod:2581
27695 #: ../fish/guestfish-actions.pod:2583
27698 " lsetxattr xattr val vallen path\n"
27704 #: ../fish/guestfish-actions.pod:2585
27706 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
27707 "sets an extended attribute of the link itself."
27712 #: ../fish/guestfish-actions.pod:2589
27718 #: ../fish/guestfish-actions.pod:2591
27727 #: ../fish/guestfish-actions.pod:2595
27729 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
27730 "the link is stat-ed, not the file it refers to."
27735 #: ../fish/guestfish-actions.pod:2601
27741 #: ../fish/guestfish-actions.pod:2603
27744 " lstatlist path 'names ...'\n"
27750 #: ../fish/guestfish-actions.pod:2605
27752 "This call allows you to perform the L</lstat> operation on multiple files, "
27753 "where all files are in the directory C<path>. C<names> is the list of files "
27754 "from this directory."
27759 #: ../fish/guestfish-actions.pod:2614
27761 "This call is intended for programs that want to efficiently list a directory "
27762 "contents without making many round-trips. See also L</lxattrlist> for a "
27763 "similarly efficient call for getting extended attributes. Very long "
27764 "directory listings might cause the protocol message size to be exceeded, "
27765 "causing this call to fail. The caller must split up such requests into "
27766 "smaller groups of names."
27771 #: ../fish/guestfish-actions.pod:2622
27772 msgid "luks-add-key"
27777 #: ../fish/guestfish-actions.pod:2624
27780 " luks-add-key device keyslot\n"
27786 #: ../fish/guestfish-actions.pod:2631
27788 "Note that if C<keyslot> already contains a key, then this command will "
27789 "fail. You have to use L</luks-kill-slot> first to remove that key."
27794 #: ../fish/guestfish-actions.pod:2635 ../fish/guestfish-actions.pod:2657
27795 #: ../fish/guestfish-actions.pod:2670 ../fish/guestfish-actions.pod:2684
27796 #: ../fish/guestfish-actions.pod:2707 ../fish/guestfish-actions.pod:2717
27798 "This command has one or more key or passphrase parameters. Guestfish will "
27799 "prompt for these separately."
27804 #: ../fish/guestfish-actions.pod:2638
27810 #: ../fish/guestfish-actions.pod:2640
27813 " luks-close device\n"
27819 #: ../fish/guestfish-actions.pod:2642
27821 "This closes a LUKS device that was created earlier by L</luks-open> or L</"
27822 "luks-open-ro>. The C<device> parameter must be the name of the LUKS mapping "
27823 "device (ie. C</dev/mapper/mapname>) and I<not> the name of the underlying "
27829 #: ../fish/guestfish-actions.pod:2648
27830 msgid "luks-format"
27835 #: ../fish/guestfish-actions.pod:2650
27838 " luks-format device keyslot\n"
27844 #: ../fish/guestfish-actions.pod:2663
27845 msgid "luks-format-cipher"
27850 #: ../fish/guestfish-actions.pod:2665
27853 " luks-format-cipher device keyslot cipher\n"
27859 #: ../fish/guestfish-actions.pod:2667
27861 "This command is the same as L</luks-format> but it also allows you to set "
27862 "the C<cipher> used."
27867 #: ../fish/guestfish-actions.pod:2676
27868 msgid "luks-kill-slot"
27873 #: ../fish/guestfish-actions.pod:2678
27876 " luks-kill-slot device keyslot\n"
27882 #: ../fish/guestfish-actions.pod:2687
27888 #: ../fish/guestfish-actions.pod:2689
27891 " luks-open device mapname\n"
27897 #: ../fish/guestfish-actions.pod:2703
27899 "If this block device contains LVM volume groups, then calling L</vgscan> "
27900 "followed by L</vg-activate-all> will make them visible."
27905 #: ../fish/guestfish-actions.pod:2710
27906 msgid "luks-open-ro"
27911 #: ../fish/guestfish-actions.pod:2712
27914 " luks-open-ro device mapname\n"
27920 #: ../fish/guestfish-actions.pod:2714
27922 "This is the same as L</luks-open> except that a read-only mapping is created."
27927 #: ../fish/guestfish-actions.pod:2720
27933 #: ../fish/guestfish-actions.pod:2722
27936 " lvcreate logvol volgroup mbytes\n"
27942 #: ../fish/guestfish-actions.pod:2727
27943 msgid "lvm-canonical-lv-name"
27948 #: ../fish/guestfish-actions.pod:2729
27951 " lvm-canonical-lv-name lvname\n"
27957 #: ../fish/guestfish-actions.pod:2738
27958 msgid "See also L</is-lv>."
27963 #: ../fish/guestfish-actions.pod:2740
27964 msgid "lvm-clear-filter"
27969 #: ../fish/guestfish-actions.pod:2742
27972 " lvm-clear-filter\n"
27978 #: ../fish/guestfish-actions.pod:2744
27980 "This undoes the effect of L</lvm-set-filter>. LVM will be able to see every "
27986 #: ../fish/guestfish-actions.pod:2750
27987 msgid "lvm-remove-all"
27992 #: ../fish/guestfish-actions.pod:2752
27995 " lvm-remove-all\n"
28001 #: ../fish/guestfish-actions.pod:2760
28002 msgid "lvm-set-filter"
28007 #: ../fish/guestfish-actions.pod:2762
28010 " lvm-set-filter 'devices ...'\n"
28016 #: ../fish/guestfish-actions.pod:2787
28022 #: ../fish/guestfish-actions.pod:2789
28025 " lvremove device\n"
28031 #: ../fish/guestfish-actions.pod:2797
28037 #: ../fish/guestfish-actions.pod:2799
28040 " lvrename logvol newlogvol\n"
28046 #: ../fish/guestfish-actions.pod:2803
28052 #: ../fish/guestfish-actions.pod:2805
28055 " lvresize device mbytes\n"
28061 #: ../fish/guestfish-actions.pod:2811
28062 msgid "lvresize-free"
28067 #: ../fish/guestfish-actions.pod:2813
28070 " lvresize-free lv percent\n"
28076 #: ../fish/guestfish-actions.pod:2821
28082 #: ../fish/guestfish-actions.pod:2823
28091 #: ../fish/guestfish-actions.pod:2831
28092 msgid "See also L</lvs-full>, L</list-filesystems>."
28097 #: ../fish/guestfish-actions.pod:2833
28103 #: ../fish/guestfish-actions.pod:2835
28112 #: ../fish/guestfish-actions.pod:2840
28118 #: ../fish/guestfish-actions.pod:2842
28127 #: ../fish/guestfish-actions.pod:2846
28133 #: ../fish/guestfish-actions.pod:2848
28136 " lxattrlist path 'names ...'\n"
28142 #: ../fish/guestfish-actions.pod:2864
28144 "This call is intended for programs that want to efficiently list a directory "
28145 "contents without making many round-trips. See also L</lstatlist> for a "
28146 "similarly efficient call for getting standard stats. Very long directory "
28147 "listings might cause the protocol message size to be exceeded, causing this "
28148 "call to fail. The caller must split up such requests into smaller groups of "
28154 #: ../fish/guestfish-actions.pod:2872
28160 #: ../fish/guestfish-actions.pod:2874
28169 #: ../fish/guestfish-actions.pod:2878
28175 #: ../fish/guestfish-actions.pod:2880
28178 " mkdir-mode path mode\n"
28184 #: ../fish/guestfish-actions.pod:2889
28185 msgid "See also L</mkdir>, L</umask>"
28190 #: ../fish/guestfish-actions.pod:2891
28196 #: ../fish/guestfish-actions.pod:2893
28205 #: ../fish/guestfish-actions.pod:2898
28211 #: ../fish/guestfish-actions.pod:2900
28214 " mkdtemp template\n"
28220 #: ../fish/guestfish-actions.pod:2921
28226 #: ../fish/guestfish-actions.pod:2923
28229 " mke2fs-J fstype blocksize device journal\n"
28235 #: ../fish/guestfish-actions.pod:2931
28236 msgid "See also L</mke2journal>."
28241 #: ../fish/guestfish-actions.pod:2933
28247 #: ../fish/guestfish-actions.pod:2935
28250 " mke2fs-JL fstype blocksize device label\n"
28256 #: ../fish/guestfish-actions.pod:2940
28257 msgid "See also L</mke2journal-L>."
28262 #: ../fish/guestfish-actions.pod:2942
28268 #: ../fish/guestfish-actions.pod:2944
28271 " mke2fs-JU fstype blocksize device uuid\n"
28277 #: ../fish/guestfish-actions.pod:2949
28278 msgid "See also L</mke2journal-U>."
28283 #: ../fish/guestfish-actions.pod:2951
28284 msgid "mke2journal"
28289 #: ../fish/guestfish-actions.pod:2953
28292 " mke2journal blocksize device\n"
28298 #: ../fish/guestfish-actions.pod:2960
28299 msgid "mke2journal-L"
28304 #: ../fish/guestfish-actions.pod:2962
28307 " mke2journal-L blocksize label device\n"
28313 #: ../fish/guestfish-actions.pod:2966
28314 msgid "mke2journal-U"
28319 #: ../fish/guestfish-actions.pod:2968
28322 " mke2journal-U blocksize uuid device\n"
28328 #: ../fish/guestfish-actions.pod:2972
28334 #: ../fish/guestfish-actions.pod:2974
28337 " mkfifo mode path\n"
28343 #: ../fish/guestfish-actions.pod:2976
28345 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>. It "
28346 "is just a convenient wrapper around L</mknod>."
28351 #: ../fish/guestfish-actions.pod:2982
28357 #: ../fish/guestfish-actions.pod:2984
28360 " mkfs fstype device\n"
28366 #: ../fish/guestfish-actions.pod:2990
28372 #: ../fish/guestfish-actions.pod:2992
28375 " mkfs-b fstype blocksize device\n"
28381 #: ../fish/guestfish-actions.pod:2994
28383 "This call is similar to L</mkfs>, but it allows you to control the block "
28384 "size of the resulting filesystem. Supported block sizes depend on the "
28385 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
28390 #: ../fish/guestfish-actions.pod:3009
28395 #: ../fish/guestfish-actions.pod:3011
28398 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
28404 #: ../fish/guestfish-actions.pod:3046
28405 msgid "mkmountpoint"
28410 #: ../fish/guestfish-actions.pod:3048
28413 " mkmountpoint exemptpath\n"
28419 #: ../fish/guestfish-actions.pod:3050
28421 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
28422 "to create extra mountpoints before mounting the first filesystem."
28427 #: ../fish/guestfish-actions.pod:3074
28429 "L</mkmountpoint> is not compatible with L</umount-all>. You may get "
28430 "unexpected errors if you try to mix these calls. It is safest to manually "
28431 "unmount filesystems and remove mountpoints after use."
28436 #: ../fish/guestfish-actions.pod:3078
28438 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
28439 "for this to work for manual mountpoints, you must ensure that the innermost "
28440 "mountpoints have the longest pathnames, as in the example code above."
28444 #: ../fish/guestfish-actions.pod:3085
28446 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
28447 "L</umount-all> to be called when the handle is closed which can also trigger "
28453 #: ../fish/guestfish-actions.pod:3089
28459 #: ../fish/guestfish-actions.pod:3091
28462 " mknod mode devmajor devminor path\n"
28468 #: ../fish/guestfish-actions.pod:3101
28470 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
28471 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
28472 "regular file). These constants are available in the standard Linux header "
28473 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
28474 "wrappers around this command which bitwise OR in the appropriate constant "
28480 #: ../fish/guestfish-actions.pod:3111
28486 #: ../fish/guestfish-actions.pod:3113
28489 " mknod-b mode devmajor devminor path\n"
28495 #: ../fish/guestfish-actions.pod:3115
28497 "This call creates a block device node called C<path> with mode C<mode> and "
28498 "device major/minor C<devmajor> and C<devminor>. It is just a convenient "
28499 "wrapper around L</mknod>."
28504 #: ../fish/guestfish-actions.pod:3121
28510 #: ../fish/guestfish-actions.pod:3123
28513 " mknod-c mode devmajor devminor path\n"
28519 #: ../fish/guestfish-actions.pod:3125
28521 "This call creates a char device node called C<path> with mode C<mode> and "
28522 "device major/minor C<devmajor> and C<devminor>. It is just a convenient "
28523 "wrapper around L</mknod>."
28528 #: ../fish/guestfish-actions.pod:3131
28534 #: ../fish/guestfish-actions.pod:3133
28543 #: ../fish/guestfish-actions.pod:3137
28549 #: ../fish/guestfish-actions.pod:3139
28552 " mkswap-L label device\n"
28558 #: ../fish/guestfish-actions.pod:3147
28564 #: ../fish/guestfish-actions.pod:3149
28567 " mkswap-U uuid device\n"
28573 #: ../fish/guestfish-actions.pod:3153
28574 msgid "mkswap-file"
28579 #: ../fish/guestfish-actions.pod:3155
28582 " mkswap-file path\n"
28588 #: ../fish/guestfish-actions.pod:3159
28590 "This command just writes a swap file signature to an existing file. To "
28591 "create the file itself, use something like L</fallocate>."
28596 #: ../fish/guestfish-actions.pod:3162
28602 #: ../fish/guestfish-actions.pod:3164
28605 " modprobe modulename\n"
28611 #: ../fish/guestfish-actions.pod:3171
28617 #: ../fish/guestfish-actions.pod:3173
28620 " mount device mountpoint\n"
28626 #: ../fish/guestfish-actions.pod:3189
28628 "B<Important note:> When you use this call, the filesystem options C<sync> "
28629 "and C<noatime> are set implicitly. This was originally done because we "
28630 "thought it would improve reliability, but it turns out that I<-o sync> has a "
28631 "very large negative performance impact and negligible effect on "
28632 "reliability. Therefore we recommend that you avoid using L</mount> in any "
28633 "code that needs performance, and instead use L</mount-options> (use an empty "
28634 "string for the first parameter if you don't want any options)."
28639 #: ../fish/guestfish-actions.pod:3206
28645 #: ../fish/guestfish-actions.pod:3208
28648 " mount-loop file mountpoint\n"
28654 #: ../fish/guestfish-actions.pod:3214
28655 msgid "mount-options"
28660 #: ../fish/guestfish-actions.pod:3216
28663 " mount-options options device mountpoint\n"
28669 #: ../fish/guestfish-actions.pod:3218
28671 "This is the same as the L</mount> command, but it allows you to set the "
28672 "mount options as for the L<mount(8)> I<-o> flag."
28677 #: ../fish/guestfish-actions.pod:3226
28683 #: ../fish/guestfish-actions.pod:3228
28686 " mount-ro device mountpoint\n"
28692 #: ../fish/guestfish-actions.pod:3230
28694 "This is the same as the L</mount> command, but it mounts the filesystem with "
28695 "the read-only (I<-o ro>) flag."
28700 #: ../fish/guestfish-actions.pod:3233
28706 #: ../fish/guestfish-actions.pod:3235
28709 " mount-vfs options vfstype device mountpoint\n"
28715 #: ../fish/guestfish-actions.pod:3237
28717 "This is the same as the L</mount> command, but it allows you to set both the "
28718 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
28723 #: ../fish/guestfish-actions.pod:3241
28724 msgid "mountpoints"
28729 #: ../fish/guestfish-actions.pod:3243
28738 #: ../fish/guestfish-actions.pod:3245
28740 "This call is similar to L</mounts>. That call returns a list of devices. "
28741 "This one returns a hash table (map) of device name to directory where the "
28742 "device is mounted."
28747 #: ../fish/guestfish-actions.pod:3249
28753 #: ../fish/guestfish-actions.pod:3251
28762 #: ../fish/guestfish-actions.pod:3258
28763 msgid "See also: L</mountpoints>"
28768 #: ../fish/guestfish-actions.pod:3260
28774 #: ../fish/guestfish-actions.pod:3262
28783 #: ../fish/guestfish-actions.pod:3267
28784 msgid "ntfs-3g-probe"
28789 #: ../fish/guestfish-actions.pod:3269
28792 " ntfs-3g-probe true|false device\n"
28798 #: ../fish/guestfish-actions.pod:3283
28804 #: ../fish/guestfish-actions.pod:3285
28807 " ntfsresize device\n"
28813 #: ../fish/guestfish-actions.pod:3300
28814 msgid "ntfsresize-size"
28819 #: ../fish/guestfish-actions.pod:3302
28822 " ntfsresize-size device size\n"
28828 #: ../fish/guestfish-actions.pod:3304
28830 "This command is the same as L</ntfsresize> except that it allows you to "
28831 "specify the new size (in bytes) explicitly."
28836 #: ../fish/guestfish-actions.pod:3307
28842 #: ../fish/guestfish-actions.pod:3309
28845 " part-add device prlogex startsect endsect\n"
28851 #: ../fish/guestfish-actions.pod:3311
28853 "This command adds a partition to C<device>. If there is no partition table "
28854 "on the device, call L</part-init> first."
28859 #: ../fish/guestfish-actions.pod:3323
28861 "Creating a partition which covers the whole disk is not so easy. Use L</"
28862 "part-disk> to do that."
28867 #: ../fish/guestfish-actions.pod:3326
28873 #: ../fish/guestfish-actions.pod:3328
28876 " part-del device partnum\n"
28882 #: ../fish/guestfish-actions.pod:3336
28888 #: ../fish/guestfish-actions.pod:3338
28891 " part-disk device parttype\n"
28897 #: ../fish/guestfish-actions.pod:3340
28899 "This command is simply a combination of L</part-init> followed by L</part-"
28900 "add> to create a single primary partition covering the whole disk."
28905 #: ../fish/guestfish-actions.pod:3344
28907 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
28908 "possible values are described in L</part-init>."
28913 #: ../fish/guestfish-actions.pod:3350
28914 msgid "part-get-bootable"
28919 #: ../fish/guestfish-actions.pod:3352
28922 " part-get-bootable device partnum\n"
28928 #: ../fish/guestfish-actions.pod:3357
28929 msgid "See also L</part-set-bootable>."
28934 #: ../fish/guestfish-actions.pod:3359
28935 msgid "part-get-mbr-id"
28940 #: ../fish/guestfish-actions.pod:3361
28943 " part-get-mbr-id device partnum\n"
28949 #: ../fish/guestfish-actions.pod:3366 ../fish/guestfish-actions.pod:3504
28951 "Note that only MBR (old DOS-style) partitions have type bytes. You will get "
28952 "undefined results for other partition table types (see L</part-get-"
28958 #: ../fish/guestfish-actions.pod:3370
28959 msgid "part-get-parttype"
28964 #: ../fish/guestfish-actions.pod:3372
28967 " part-get-parttype device\n"
28973 #: ../fish/guestfish-actions.pod:3377
28975 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
28976 "table), C<gpt> (a GPT/EFI-style partition table). Other values are "
28977 "possible, although unusual. See L</part-init> for a full list."
28982 #: ../fish/guestfish-actions.pod:3382
28988 #: ../fish/guestfish-actions.pod:3384
28991 " part-init device parttype\n"
28997 #: ../fish/guestfish-actions.pod:3390
28999 "Initially there are no partitions. Following this, you should call L</part-"
29000 "add> for each partition required."
29005 #: ../fish/guestfish-actions.pod:3453
29011 #: ../fish/guestfish-actions.pod:3455
29014 " part-list device\n"
29020 #: ../fish/guestfish-actions.pod:3470
29022 "Start of the partition I<in bytes>. To get sectors you have to divide by "
29023 "the device's sector size, see L</blockdev-getss>."
29028 #: ../fish/guestfish-actions.pod:3483
29029 msgid "part-set-bootable"
29034 #: ../fish/guestfish-actions.pod:3485
29037 " part-set-bootable device partnum true|false\n"
29043 #: ../fish/guestfish-actions.pod:3494
29044 msgid "part-set-mbr-id"
29049 #: ../fish/guestfish-actions.pod:3496
29052 " part-set-mbr-id device partnum idbyte\n"
29058 #: ../fish/guestfish-actions.pod:3508
29059 msgid "part-set-name"
29064 #: ../fish/guestfish-actions.pod:3510
29067 " part-set-name device partnum name\n"
29073 #: ../fish/guestfish-actions.pod:3518
29074 msgid "part-to-dev"
29079 #: ../fish/guestfish-actions.pod:3520
29082 " part-to-dev partition\n"
29088 #: ../fish/guestfish-actions.pod:3526
29090 "The named partition must exist, for example as a string returned from L</"
29091 "list-partitions>."
29096 #: ../fish/guestfish-actions.pod:3529
29097 msgid "ping-daemon"
29102 #: ../fish/guestfish-actions.pod:3531
29111 #: ../fish/guestfish-actions.pod:3538
29117 #: ../fish/guestfish-actions.pod:3540
29120 " pread path count offset\n"
29126 #: ../fish/guestfish-actions.pod:3548
29127 msgid "See also L</pwrite>, L</pread-device>."
29132 #: ../fish/guestfish-actions.pod:3553
29133 msgid "pread-device"
29138 #: ../fish/guestfish-actions.pod:3555
29141 " pread-device device count offset\n"
29147 #: ../fish/guestfish-actions.pod:3563
29148 msgid "See also L</pread>."
29153 #: ../fish/guestfish-actions.pod:3568
29159 #: ../fish/guestfish-actions.pod:3570
29162 " pvcreate device\n"
29168 #: ../fish/guestfish-actions.pod:3576
29174 #: ../fish/guestfish-actions.pod:3578
29177 " pvremove device\n"
29183 #: ../fish/guestfish-actions.pod:3587
29189 #: ../fish/guestfish-actions.pod:3589
29192 " pvresize device\n"
29198 #: ../fish/guestfish-actions.pod:3594
29199 msgid "pvresize-size"
29204 #: ../fish/guestfish-actions.pod:3596
29207 " pvresize-size device size\n"
29213 #: ../fish/guestfish-actions.pod:3598
29215 "This command is the same as L</pvresize> except that it allows you to "
29216 "specify the new size (in bytes) explicitly."
29221 #: ../fish/guestfish-actions.pod:3601
29227 #: ../fish/guestfish-actions.pod:3603
29236 #: ../fish/guestfish-actions.pod:3611
29237 msgid "See also L</pvs-full>."
29242 #: ../fish/guestfish-actions.pod:3613
29248 #: ../fish/guestfish-actions.pod:3615
29257 #: ../fish/guestfish-actions.pod:3620
29263 #: ../fish/guestfish-actions.pod:3622
29272 #: ../fish/guestfish-actions.pod:3626
29278 #: ../fish/guestfish-actions.pod:3628
29281 " pwrite path content offset\n"
29287 #: ../fish/guestfish-actions.pod:3639
29288 msgid "See also L</pread>, L</pwrite-device>."
29293 #: ../fish/guestfish-actions.pod:3644
29294 msgid "pwrite-device"
29299 #: ../fish/guestfish-actions.pod:3646
29302 " pwrite-device device content offset\n"
29308 #: ../fish/guestfish-actions.pod:3656
29309 msgid "See also L</pwrite>."
29314 #: ../fish/guestfish-actions.pod:3661
29320 #: ../fish/guestfish-actions.pod:3663
29323 " read-file path\n"
29329 #: ../fish/guestfish-actions.pod:3668
29331 "Unlike L</cat>, this function can correctly handle files that contain "
29332 "embedded ASCII NUL characters. However unlike L</download>, this function "
29333 "is limited in the total size of file that can be handled."
29338 #: ../fish/guestfish-actions.pod:3676
29344 #: ../fish/guestfish-actions.pod:3678
29347 " read-lines path\n"
29353 #: ../fish/guestfish-actions.pod:3685
29355 "Note that this function cannot correctly handle binary files (specifically, "
29356 "files containing C<\\0> character which is treated as end of line). For "
29357 "those you need to use the L</read-file> function which has a more complex "
29363 #: ../fish/guestfish-actions.pod:3690
29369 #: ../fish/guestfish-actions.pod:3692
29378 #: ../fish/guestfish-actions.pod:3744
29380 "This function is primarily intended for use by programs. To get a simple "
29381 "list of names, use L</ls>. To get a printable directory for human "
29382 "consumption, use L</ll>."
29387 #: ../fish/guestfish-actions.pod:3748
29393 #: ../fish/guestfish-actions.pod:3750
29402 #: ../fish/guestfish-actions.pod:3754
29403 msgid "readlinklist"
29408 #: ../fish/guestfish-actions.pod:3756
29411 " readlinklist path 'names ...'\n"
29417 #: ../fish/guestfish-actions.pod:3780
29423 #: ../fish/guestfish-actions.pod:3782
29432 #: ../fish/guestfish-actions.pod:3787
29433 msgid "removexattr"
29438 #: ../fish/guestfish-actions.pod:3789
29441 " removexattr xattr path\n"
29447 #: ../fish/guestfish-actions.pod:3794
29448 msgid "See also: L</lremovexattr>, L<attr(5)>."
29453 #: ../fish/guestfish-actions.pod:3796
29459 #: ../fish/guestfish-actions.pod:3798
29462 " resize2fs device\n"
29468 #: ../fish/guestfish-actions.pod:3803
29470 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
29471 "before calling this command. For unknown reasons C<resize2fs> sometimes "
29472 "gives an error about this and sometimes not. In any case, it is always safe "
29473 "to call L</e2fsck-f> before calling this function."
29477 #: ../fish/guestfish-actions.pod:3809
29478 msgid "resize2fs-M"
29482 #: ../fish/guestfish-actions.pod:3811
29485 " resize2fs-M device\n"
29490 #: ../fish/guestfish-actions.pod:3813
29492 "This command is the same as L</resize2fs>, but the filesystem is resized to "
29493 "its minimum size. This works like the I<-M> option to the C<resize2fs> "
29498 #: ../fish/guestfish-actions.pod:3817
29500 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
29501 "and read the C<Block size> and C<Block count> values. These two numbers, "
29502 "multiplied together, give the resulting size of the minimal filesystem in "
29508 #: ../fish/guestfish-actions.pod:3822
29509 msgid "resize2fs-size"
29514 #: ../fish/guestfish-actions.pod:3824
29517 " resize2fs-size device size\n"
29523 #: ../fish/guestfish-actions.pod:3826
29525 "This command is the same as L</resize2fs> except that it allows you to "
29526 "specify the new size (in bytes) explicitly."
29531 #: ../fish/guestfish-actions.pod:3829
29537 #: ../fish/guestfish-actions.pod:3831
29546 #: ../fish/guestfish-actions.pod:3835
29552 #: ../fish/guestfish-actions.pod:3837
29561 #: ../fish/guestfish-actions.pod:3843
29567 #: ../fish/guestfish-actions.pod:3845
29576 #: ../fish/guestfish-actions.pod:3849
29577 msgid "rmmountpoint"
29582 #: ../fish/guestfish-actions.pod:3851
29585 " rmmountpoint exemptpath\n"
29591 #: ../fish/guestfish-actions.pod:3853
29593 "This calls removes a mountpoint that was previously created with L</"
29594 "mkmountpoint>. See L</mkmountpoint> for full details."
29599 #: ../fish/guestfish-actions.pod:3857
29600 msgid "scrub-device"
29605 #: ../fish/guestfish-actions.pod:3859
29608 " scrub-device device\n"
29614 #: ../fish/guestfish-actions.pod:3870
29620 #: ../fish/guestfish-actions.pod:3872
29623 " scrub-file file\n"
29629 #: ../fish/guestfish-actions.pod:3882
29630 msgid "scrub-freespace"
29635 #: ../fish/guestfish-actions.pod:3884
29638 " scrub-freespace dir\n"
29644 #: ../fish/guestfish-actions.pod:3886
29646 "This command creates the directory C<dir> and then fills it with files until "
29647 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
29648 "deletes them. The intention is to scrub any free space on the partition "
29649 "containing C<dir>."
29654 #: ../fish/guestfish-actions.pod:3895
29660 #: ../fish/guestfish-actions.pod:3897
29666 #: ../fish/guestfish-actions.pod:3899
29669 " set-append append\n"
29674 #: ../fish/guestfish-actions.pod:3910
29675 msgid "set-attach-method"
29679 #: ../fish/guestfish-actions.pod:3912
29680 msgid "attach-method"
29684 #: ../fish/guestfish-actions.pod:3914
29687 " set-attach-method attachmethod\n"
29693 #: ../fish/guestfish-actions.pod:3936
29694 msgid "set-autosync"
29699 #: ../fish/guestfish-actions.pod:3938
29705 #: ../fish/guestfish-actions.pod:3940
29708 " set-autosync true|false\n"
29714 #: ../fish/guestfish-actions.pod:3950
29720 #: ../fish/guestfish-actions.pod:3952
29726 #: ../fish/guestfish-actions.pod:3954
29729 " set-direct true|false\n"
29735 #: ../fish/guestfish-actions.pod:3960
29737 "One consequence of this is that log messages aren't caught by the library "
29738 "and handled by L</set-log-message-callback>, but go straight to stdout."
29743 #: ../fish/guestfish-actions.pod:3969
29744 msgid "set-e2label"
29749 #: ../fish/guestfish-actions.pod:3971
29752 " set-e2label device label\n"
29758 #: ../fish/guestfish-actions.pod:3977
29760 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
29761 "label on a filesystem."
29766 #: ../fish/guestfish-actions.pod:3980
29772 #: ../fish/guestfish-actions.pod:3982
29775 " set-e2uuid device uuid\n"
29781 #: ../fish/guestfish-actions.pod:3989
29783 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
29784 "UUID of a filesystem."
29789 #: ../fish/guestfish-actions.pod:3992
29790 msgid "set-memsize"
29795 #: ../fish/guestfish-actions.pod:3994
29801 #: ../fish/guestfish-actions.pod:3996
29804 " set-memsize memsize\n"
29810 #: ../fish/guestfish-actions.pod:3998
29812 "This sets the memory size in megabytes allocated to the qemu subprocess. "
29813 "This only has any effect if called before L</launch>."
29818 #: ../fish/guestfish-actions.pod:4009
29819 msgid "set-network"
29824 #: ../fish/guestfish-actions.pod:4011
29830 #: ../fish/guestfish-actions.pod:4013
29833 " set-network true|false\n"
29839 #: ../fish/guestfish-actions.pod:4021
29841 "You must call this before calling L</launch>, otherwise it has no effect."
29846 #: ../fish/guestfish-actions.pod:4024
29852 #: ../fish/guestfish-actions.pod:4026
29858 #: ../fish/guestfish-actions.pod:4028
29861 " set-path searchpath\n"
29867 #: ../fish/guestfish-actions.pod:4037
29873 #: ../fish/guestfish-actions.pod:4039
29879 #: ../fish/guestfish-actions.pod:4041
29888 #: ../fish/guestfish-actions.pod:4061
29889 msgid "set-recovery-proc"
29894 #: ../fish/guestfish-actions.pod:4063
29895 msgid "recovery-proc"
29900 #: ../fish/guestfish-actions.pod:4065
29903 " set-recovery-proc true|false\n"
29909 #: ../fish/guestfish-actions.pod:4067
29911 "If this is called with the parameter C<false> then L</launch> does not "
29912 "create a recovery process. The purpose of the recovery process is to stop "
29913 "runaway qemu processes in the case where the main program aborts abruptly."
29918 #: ../fish/guestfish-actions.pod:4072
29920 "This only has any effect if called before L</launch>, and the default is "
29926 #: ../fish/guestfish-actions.pod:4081
29927 msgid "set-selinux"
29932 #: ../fish/guestfish-actions.pod:4083
29938 #: ../fish/guestfish-actions.pod:4085
29941 " set-selinux true|false\n"
29947 #: ../fish/guestfish-actions.pod:4096
29953 #: ../fish/guestfish-actions.pod:4098
29959 #: ../fish/guestfish-actions.pod:4100
29962 " set-trace true|false\n"
29967 #: ../fish/guestfish-actions.pod:4112
29969 "Trace messages are normally sent to C<stderr>, unless you register a "
29970 "callback to send them somewhere else (see L</set-event-callback>)."
29975 #: ../fish/guestfish-actions.pod:4116
29976 msgid "set-verbose"
29981 #: ../fish/guestfish-actions.pod:4118
29987 #: ../fish/guestfish-actions.pod:4120
29990 " set-verbose true|false\n"
29995 #: ../fish/guestfish-actions.pod:4127
29997 "Verbose messages are normally sent to C<stderr>, unless you register a "
29998 "callback to send them somewhere else (see L</set-event-callback>)."
30003 #: ../fish/guestfish-actions.pod:4131
30009 #: ../fish/guestfish-actions.pod:4133
30012 " setcon context\n"
30018 #: ../fish/guestfish-actions.pod:4140
30024 #: ../fish/guestfish-actions.pod:4142
30027 " setxattr xattr val vallen path\n"
30033 #: ../fish/guestfish-actions.pod:4148
30034 msgid "See also: L</lsetxattr>, L<attr(5)>."
30039 #: ../fish/guestfish-actions.pod:4150
30045 #: ../fish/guestfish-actions.pod:4152
30048 " sfdisk device cyls heads sectors 'lines ...'\n"
30054 #: ../fish/guestfish-actions.pod:4174
30055 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
30060 #: ../fish/guestfish-actions.pod:4187
30066 #: ../fish/guestfish-actions.pod:4189
30069 " sfdiskM device 'lines ...'\n"
30075 #: ../fish/guestfish-actions.pod:4191
30077 "This is a simplified interface to the L</sfdisk> command, where partition "
30078 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
30079 "you don't need to specify the cyls, heads and sectors parameters which were "
30080 "rarely if ever used anyway."
30085 #: ../fish/guestfish-actions.pod:4197
30086 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
30091 #: ../fish/guestfish-actions.pod:4210
30097 #: ../fish/guestfish-actions.pod:4212
30100 " sfdisk-N device partnum cyls heads sectors line\n"
30106 #: ../fish/guestfish-actions.pod:4217
30108 "For other parameters, see L</sfdisk>. You should usually pass C<0> for the "
30109 "cyls/heads/sectors parameters."
30114 #: ../fish/guestfish-actions.pod:4220
30115 msgid "See also: L</part-add>"
30120 #: ../fish/guestfish-actions.pod:4232
30121 msgid "sfdisk-disk-geometry"
30126 #: ../fish/guestfish-actions.pod:4234
30129 " sfdisk-disk-geometry device\n"
30135 #: ../fish/guestfish-actions.pod:4236
30137 "This displays the disk geometry of C<device> read from the partition table. "
30138 "Especially in the case where the underlying block device has been resized, "
30139 "this can be different from the kernel's idea of the geometry (see L</sfdisk-"
30140 "kernel-geometry>)."
30145 #: ../fish/guestfish-actions.pod:4244
30146 msgid "sfdisk-kernel-geometry"
30151 #: ../fish/guestfish-actions.pod:4246
30154 " sfdisk-kernel-geometry device\n"
30160 #: ../fish/guestfish-actions.pod:4253
30166 #: ../fish/guestfish-actions.pod:4255
30169 " sfdisk-l device\n"
30175 #: ../fish/guestfish-actions.pod:4261
30176 msgid "See also: L</part-list>"
30181 #: ../fish/guestfish-actions.pod:4270
30187 #: ../fish/guestfish-actions.pod:4272
30196 #: ../fish/guestfish-actions.pod:4277
30197 msgid "This is like L</command>, but passes the command to:"
30202 #: ../fish/guestfish-actions.pod:4285
30203 msgid "All the provisos about L</command> apply to this call."
30208 #: ../fish/guestfish-actions.pod:4287
30214 #: ../fish/guestfish-actions.pod:4289
30217 " sh-lines command\n"
30223 #: ../fish/guestfish-actions.pod:4291
30224 msgid "This is the same as L</sh>, but splits the result into a list of lines."
30229 #: ../fish/guestfish-actions.pod:4294
30230 msgid "See also: L</command-lines>"
30235 #: ../fish/guestfish-actions.pod:4296
30241 #: ../fish/guestfish-actions.pod:4298
30250 #: ../fish/guestfish-actions.pod:4302
30256 #: ../fish/guestfish-actions.pod:4304
30265 #: ../fish/guestfish-actions.pod:4310
30271 #: ../fish/guestfish-actions.pod:4312
30280 #: ../fish/guestfish-actions.pod:4320
30286 #: ../fish/guestfish-actions.pod:4322
30295 #: ../fish/guestfish-actions.pod:4330
30301 #: ../fish/guestfish-actions.pod:4332
30304 " strings-e encoding path\n"
30310 #: ../fish/guestfish-actions.pod:4334
30312 "This is like the L</strings> command, but allows you to specify the encoding "
30313 "of strings that are looked for in the source file C<path>."
30318 #: ../fish/guestfish-actions.pod:4344
30320 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
30321 "ISO-8859-X (this is what L</strings> uses)."
30326 #: ../fish/guestfish-actions.pod:4376
30327 msgid "swapoff-device"
30332 #: ../fish/guestfish-actions.pod:4378
30335 " swapoff-device device\n"
30341 #: ../fish/guestfish-actions.pod:4380
30343 "This command disables the libguestfs appliance swap device or partition "
30344 "named C<device>. See L</swapon-device>."
30349 #: ../fish/guestfish-actions.pod:4384
30350 msgid "swapoff-file"
30355 #: ../fish/guestfish-actions.pod:4386
30358 " swapoff-file file\n"
30364 #: ../fish/guestfish-actions.pod:4390
30365 msgid "swapoff-label"
30370 #: ../fish/guestfish-actions.pod:4392
30373 " swapoff-label label\n"
30379 #: ../fish/guestfish-actions.pod:4397
30380 msgid "swapoff-uuid"
30385 #: ../fish/guestfish-actions.pod:4399
30388 " swapoff-uuid uuid\n"
30394 #: ../fish/guestfish-actions.pod:4404
30395 msgid "swapon-device"
30400 #: ../fish/guestfish-actions.pod:4406
30403 " swapon-device device\n"
30409 #: ../fish/guestfish-actions.pod:4408
30411 "This command enables the libguestfs appliance to use the swap device or "
30412 "partition named C<device>. The increased memory is made available for all "
30413 "commands, for example those run using L</command> or L</sh>."
30418 #: ../fish/guestfish-actions.pod:4420
30419 msgid "swapon-file"
30424 #: ../fish/guestfish-actions.pod:4422
30427 " swapon-file file\n"
30433 #: ../fish/guestfish-actions.pod:4424
30435 "This command enables swap to a file. See L</swapon-device> for other notes."
30440 #: ../fish/guestfish-actions.pod:4427
30441 msgid "swapon-label"
30446 #: ../fish/guestfish-actions.pod:4429
30449 " swapon-label label\n"
30455 #: ../fish/guestfish-actions.pod:4431
30457 "This command enables swap to a labeled swap partition. See L</swapon-"
30458 "device> for other notes."
30463 #: ../fish/guestfish-actions.pod:4434
30464 msgid "swapon-uuid"
30469 #: ../fish/guestfish-actions.pod:4436
30472 " swapon-uuid uuid\n"
30478 #: ../fish/guestfish-actions.pod:4438
30480 "This command enables swap to a swap partition with the given UUID. See L</"
30481 "swapon-device> for other notes."
30486 #: ../fish/guestfish-actions.pod:4441
30492 #: ../fish/guestfish-actions.pod:4443
30501 #: ../fish/guestfish-actions.pod:4451
30507 #: ../fish/guestfish-actions.pod:4453
30516 #: ../fish/guestfish-actions.pod:4461
30522 #: ../fish/guestfish-actions.pod:4463
30525 " tail-n nrlines path\n"
30531 #: ../fish/guestfish-actions.pod:4476
30537 #: ../fish/guestfish-actions.pod:4478
30540 " tar-in (tarfile|-) directory\n"
30546 #: ../fish/guestfish-actions.pod:4483
30547 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
30552 #: ../fish/guestfish-actions.pod:4488
30558 #: ../fish/guestfish-actions.pod:4490
30561 " tar-out directory (tarfile|-)\n"
30567 #: ../fish/guestfish-actions.pod:4495
30568 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
30573 #: ../fish/guestfish-actions.pod:4500
30579 #: ../fish/guestfish-actions.pod:4502
30582 " tgz-in (tarball|-) directory\n"
30588 #: ../fish/guestfish-actions.pod:4507
30589 msgid "To upload an uncompressed tarball, use L</tar-in>."
30594 #: ../fish/guestfish-actions.pod:4511
30600 #: ../fish/guestfish-actions.pod:4513
30603 " tgz-out directory (tarball|-)\n"
30609 #: ../fish/guestfish-actions.pod:4518
30610 msgid "To download an uncompressed tarball, use L</tar-out>."
30615 #: ../fish/guestfish-actions.pod:4522
30621 #: ../fish/guestfish-actions.pod:4524
30630 #: ../fish/guestfish-actions.pod:4533
30636 #: ../fish/guestfish-actions.pod:4535
30645 #: ../fish/guestfish-actions.pod:4540
30646 msgid "truncate-size"
30651 #: ../fish/guestfish-actions.pod:4542
30654 " truncate-size path size\n"
30660 #: ../fish/guestfish-actions.pod:4547
30662 "If the current file size is less than C<size> then the file is extended to "
30663 "the required size with zero bytes. This creates a sparse file (ie. disk "
30664 "blocks are not allocated for the file until you write to it). To create a "
30665 "non-sparse file of zeroes, use L</fallocate64> instead."
30670 #: ../fish/guestfish-actions.pod:4553
30676 #: ../fish/guestfish-actions.pod:4555
30679 " tune2fs-l device\n"
30685 #: ../fish/guestfish-actions.pod:4565
30691 #: ../fish/guestfish-actions.pod:4567
30694 " txz-in (tarball|-) directory\n"
30700 #: ../fish/guestfish-actions.pod:4574
30706 #: ../fish/guestfish-actions.pod:4576
30709 " txz-out directory (tarball|-)\n"
30715 #: ../fish/guestfish-actions.pod:4583
30721 #: ../fish/guestfish-actions.pod:4585
30730 #: ../fish/guestfish-actions.pod:4599
30731 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
30736 #: ../fish/guestfish-actions.pod:4604
30742 #: ../fish/guestfish-actions.pod:4606
30748 #: ../fish/guestfish-actions.pod:4608
30751 " umount pathordevice\n"
30757 #: ../fish/guestfish-actions.pod:4614
30763 #: ../fish/guestfish-actions.pod:4616
30764 msgid "unmount-all"
30769 #: ../fish/guestfish-actions.pod:4618
30778 #: ../fish/guestfish-actions.pod:4624
30784 #: ../fish/guestfish-actions.pod:4626
30787 " upload (filename|-) remotefilename\n"
30793 #: ../fish/guestfish-actions.pod:4633
30794 msgid "See also L</download>."
30799 #: ../fish/guestfish-actions.pod:4637
30800 msgid "upload-offset"
30805 #: ../fish/guestfish-actions.pod:4639
30808 " upload-offset (filename|-) remotefilename offset\n"
30814 #: ../fish/guestfish-actions.pod:4651
30816 "Note that there is no limit on the amount of data that can be uploaded with "
30817 "this call, unlike with L</pwrite>, and this call always writes the full "
30818 "amount unless an error occurs."
30823 #: ../fish/guestfish-actions.pod:4656
30824 msgid "See also L</upload>, L</pwrite>."
30829 #: ../fish/guestfish-actions.pod:4660
30835 #: ../fish/guestfish-actions.pod:4662
30838 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
30844 #: ../fish/guestfish-actions.pod:4681
30850 #: ../fish/guestfish-actions.pod:4683
30859 #: ../fish/guestfish-actions.pod:4710
30861 "I<Note:> Don't use this call to test for availability of features. In "
30862 "enterprise distributions we backport features from later versions into "
30863 "earlier versions, making this an unreliable way to test for features. Use "
30864 "L</available> instead."
30869 #: ../fish/guestfish-actions.pod:4716
30875 #: ../fish/guestfish-actions.pod:4718
30878 " vfs-label device\n"
30884 #: ../fish/guestfish-actions.pod:4725
30885 msgid "To find a filesystem from the label, use L</findfs-label>."
30890 #: ../fish/guestfish-actions.pod:4727
30896 #: ../fish/guestfish-actions.pod:4729
30899 " vfs-type device\n"
30905 #: ../fish/guestfish-actions.pod:4739
30911 #: ../fish/guestfish-actions.pod:4741
30914 " vfs-uuid device\n"
30920 #: ../fish/guestfish-actions.pod:4748
30921 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
30926 #: ../fish/guestfish-actions.pod:4750
30927 msgid "vg-activate"
30932 #: ../fish/guestfish-actions.pod:4752
30935 " vg-activate true|false 'volgroups ...'\n"
30941 #: ../fish/guestfish-actions.pod:4765
30942 msgid "vg-activate-all"
30947 #: ../fish/guestfish-actions.pod:4767
30950 " vg-activate-all true|false\n"
30956 #: ../fish/guestfish-actions.pod:4777
30962 #: ../fish/guestfish-actions.pod:4779
30965 " vgcreate volgroup 'physvols ...'\n"
30971 #: ../fish/guestfish-actions.pod:4784
30977 #: ../fish/guestfish-actions.pod:4786
30980 " vglvuuids vgname\n"
30986 #: ../fish/guestfish-actions.pod:4791
30988 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
30989 "logical volumes and volume groups."
30994 #: ../fish/guestfish-actions.pod:4794
30995 msgid "See also L</vgpvuuids>."
31000 #: ../fish/guestfish-actions.pod:4796
31006 #: ../fish/guestfish-actions.pod:4798
31009 " vgpvuuids vgname\n"
31015 #: ../fish/guestfish-actions.pod:4803
31017 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
31018 "physical volumes and volume groups."
31023 #: ../fish/guestfish-actions.pod:4806
31024 msgid "See also L</vglvuuids>."
31029 #: ../fish/guestfish-actions.pod:4808
31035 #: ../fish/guestfish-actions.pod:4810
31038 " vgremove vgname\n"
31044 #: ../fish/guestfish-actions.pod:4817
31050 #: ../fish/guestfish-actions.pod:4819
31053 " vgrename volgroup newvolgroup\n"
31059 #: ../fish/guestfish-actions.pod:4823
31065 #: ../fish/guestfish-actions.pod:4825
31074 #: ../fish/guestfish-actions.pod:4833
31075 msgid "See also L</vgs-full>."
31080 #: ../fish/guestfish-actions.pod:4835
31086 #: ../fish/guestfish-actions.pod:4837
31095 #: ../fish/guestfish-actions.pod:4842
31101 #: ../fish/guestfish-actions.pod:4844
31110 #: ../fish/guestfish-actions.pod:4849
31116 #: ../fish/guestfish-actions.pod:4851
31125 #: ../fish/guestfish-actions.pod:4855
31131 #: ../fish/guestfish-actions.pod:4857
31140 #: ../fish/guestfish-actions.pod:4862
31146 #: ../fish/guestfish-actions.pod:4864
31155 #: ../fish/guestfish-actions.pod:4869
31161 #: ../fish/guestfish-actions.pod:4871
31170 #: ../fish/guestfish-actions.pod:4876
31176 #: ../fish/guestfish-actions.pod:4878
31179 " write path content\n"
31185 #: ../fish/guestfish-actions.pod:4886
31191 #: ../fish/guestfish-actions.pod:4888
31194 " write-file path content size\n"
31200 #: ../fish/guestfish-actions.pod:4911
31206 #: ../fish/guestfish-actions.pod:4913
31209 " zegrep regex path\n"
31215 #: ../fish/guestfish-actions.pod:4921
31221 #: ../fish/guestfish-actions.pod:4923
31224 " zegrepi regex path\n"
31230 #: ../fish/guestfish-actions.pod:4931
31236 #: ../fish/guestfish-actions.pod:4933
31245 #: ../fish/guestfish-actions.pod:4941
31246 msgid "See also: L</zero-device>, L</scrub-device>."
31251 #: ../fish/guestfish-actions.pod:4943
31252 msgid "zero-device"
31257 #: ../fish/guestfish-actions.pod:4945
31260 " zero-device device\n"
31266 #: ../fish/guestfish-actions.pod:4947
31268 "This command writes zeroes over the entire C<device>. Compare with L</zero> "
31269 "which just zeroes the first few blocks of a device."
31274 #: ../fish/guestfish-actions.pod:4954
31280 #: ../fish/guestfish-actions.pod:4956
31283 " zerofree device\n"
31289 #: ../fish/guestfish-actions.pod:4969
31295 #: ../fish/guestfish-actions.pod:4971
31298 " zfgrep pattern path\n"
31304 #: ../fish/guestfish-actions.pod:4979
31310 #: ../fish/guestfish-actions.pod:4981
31313 " zfgrepi pattern path\n"
31319 #: ../fish/guestfish-actions.pod:4989
31325 #: ../fish/guestfish-actions.pod:4991
31328 " zfile meth path\n"
31334 #: ../fish/guestfish-actions.pod:4998
31336 "Since 1.0.63, use L</file> instead which can now process compressed files."
31341 #: ../fish/guestfish-actions.pod:5008
31347 #: ../fish/guestfish-actions.pod:5010
31350 " zgrep regex path\n"
31356 #: ../fish/guestfish-actions.pod:5018
31362 #: ../fish/guestfish-actions.pod:5020
31365 " zgrepi regex path\n"
31371 #: ../fish/guestfish-commands.pod:1
31377 #: ../fish/guestfish-commands.pod:3
31383 #: ../fish/guestfish-commands.pod:5
31386 " alloc filename size\n"
31392 #: ../fish/guestfish-commands.pod:7
31394 "This creates an empty (zeroed) file of the given size, and then adds so it "
31395 "can be further examined."
31400 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
31401 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
31406 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
31407 msgid "Size can be specified using standard suffixes, eg. C<1M>."
31412 #: ../fish/guestfish-commands.pod:14
31414 "To create a sparse file, use L</sparse> instead. To create a prepared disk "
31415 "image, see L</PREPARED DISK IMAGES>."
31420 #: ../fish/guestfish-commands.pod:17
31426 #: ../fish/guestfish-commands.pod:19
31429 " copy-in local [local ...] /remotedir\n"
31435 #: ../fish/guestfish-commands.pod:21
31437 "C<copy-in> copies local files or directories recursively into the disk "
31438 "image, placing them in the directory called C</remotedir> (which must "
31439 "exist). This guestfish meta-command turns into a sequence of L</tar-in> and "
31440 "other commands as necessary."
31445 #: ../fish/guestfish-commands.pod:26
31447 "Multiple local files and directories can be specified, but the last "
31448 "parameter must always be a remote directory. Wildcards cannot be used."
31453 #: ../fish/guestfish-commands.pod:30
31459 #: ../fish/guestfish-commands.pod:32
31462 " copy-out remote [remote ...] localdir\n"
31468 #: ../fish/guestfish-commands.pod:34
31470 "C<copy-out> copies remote files or directories recursively out of the disk "
31471 "image, placing them on the host disk in a local directory called C<localdir> "
31472 "(which must exist). This guestfish meta-command turns into a sequence of L</"
31473 "download>, L</tar-out> and other commands as necessary."
31478 #: ../fish/guestfish-commands.pod:40
31480 "Multiple remote files and directories can be specified, but the last "
31481 "parameter must always be a local directory. To download to the current "
31482 "directory, use C<.> as in:"
31487 #: ../fish/guestfish-commands.pod:44
31490 " copy-out /home .\n"
31496 #: ../fish/guestfish-commands.pod:46
31498 "Wildcards cannot be used in the ordinary command, but you can use them with "
31499 "the help of L</glob> like this:"
31504 #: ../fish/guestfish-commands.pod:49
31507 " glob copy-out /home/* .\n"
31513 #: ../fish/guestfish-commands.pod:51
31519 #: ../fish/guestfish-commands.pod:53
31522 " echo [params ...]\n"
31528 #: ../fish/guestfish-commands.pod:55
31529 msgid "This echos the parameters to the terminal."
31534 #: ../fish/guestfish-commands.pod:57
31540 #: ../fish/guestfish-commands.pod:59
31546 #: ../fish/guestfish-commands.pod:61
31552 #: ../fish/guestfish-commands.pod:63
31561 #: ../fish/guestfish-commands.pod:65
31563 "This is used to edit a file. It downloads the file, edits it locally using "
31564 "your editor, then uploads the result."
31569 #: ../fish/guestfish-commands.pod:68
31571 "The editor is C<$EDITOR>. However if you use the alternate commands C<vi> "
31572 "or C<emacs> you will get those corresponding editors."
31577 #: ../fish/guestfish-commands.pod:72
31583 #: ../fish/guestfish-commands.pod:74
31586 " glob command args...\n"
31592 #: ../fish/guestfish-commands.pod:76
31594 "Expand wildcards in any paths in the args list, and run C<command> "
31595 "repeatedly on each matching path."
31600 #: ../fish/guestfish-commands.pod:79
31601 msgid "See L</WILDCARDS AND GLOBBING>."
31606 #: ../fish/guestfish-commands.pod:81
31612 #: ../fish/guestfish-commands.pod:83
31615 " hexedit <filename|device>\n"
31616 " hexedit <filename|device> <max>\n"
31617 " hexedit <filename|device> <start> <max>\n"
31623 #: ../fish/guestfish-commands.pod:87
31625 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
31631 #: ../fish/guestfish-commands.pod:90
31633 "This command works by downloading potentially the whole file or device, "
31634 "editing it locally, then uploading it. If the file or device is large, you "
31635 "have to specify which part you wish to edit by using C<max> and/or C<start> "
31636 "C<max> parameters. C<start> and C<max> are specified in bytes, with the "
31637 "usual modifiers allowed such as C<1M> (1 megabyte)."
31642 #: ../fish/guestfish-commands.pod:97
31643 msgid "For example to edit the first few sectors of a disk you might do:"
31648 #: ../fish/guestfish-commands.pod:100
31651 " hexedit /dev/sda 1M\n"
31657 #: ../fish/guestfish-commands.pod:102
31659 "which would allow you to edit anywhere within the first megabyte of the disk."
31664 #: ../fish/guestfish-commands.pod:105
31665 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
31670 #: ../fish/guestfish-commands.pod:107
31673 " hexedit /dev/sda1 0x400 0x400\n"
31679 #: ../fish/guestfish-commands.pod:109
31680 msgid "(assuming the superblock is in the standard location)."
31685 #: ../fish/guestfish-commands.pod:111
31687 "This command requires the external L<hexedit(1)> program. You can specify "
31688 "another program to use by setting the C<HEXEDITOR> environment variable."
31693 #: ../fish/guestfish-commands.pod:115
31694 msgid "See also L</hexdump>."
31699 #: ../fish/guestfish-commands.pod:117
31705 #: ../fish/guestfish-commands.pod:119
31714 #: ../fish/guestfish-commands.pod:121
31716 "Change the local directory, ie. the current directory of guestfish itself."
31721 #: ../fish/guestfish-commands.pod:124
31722 msgid "Note that C<!cd> won't do what you might expect."
31727 #: ../fish/guestfish-commands.pod:126
31733 #: ../fish/guestfish-commands.pod:128
31739 #: ../fish/guestfish-commands.pod:130
31748 #: ../fish/guestfish-commands.pod:132
31749 msgid "Opens the manual page for guestfish."
31754 #: ../fish/guestfish-commands.pod:134
31760 #: ../fish/guestfish-commands.pod:136
31766 #: ../fish/guestfish-commands.pod:138
31775 #: ../fish/guestfish-commands.pod:140
31784 #: ../fish/guestfish-commands.pod:142
31785 msgid "This is used to view a file."
31790 #: ../fish/guestfish-commands.pod:144
31792 "The default viewer is C<$PAGER>. However if you use the alternate command "
31793 "C<less> you will get the C<less> command specifically."
31798 #: ../fish/guestfish-commands.pod:147
31804 #: ../fish/guestfish-commands.pod:149
31813 #: ../fish/guestfish-commands.pod:151
31815 "Close and reopen the libguestfs handle. It is not necessary to use this "
31816 "normally, because the handle is closed properly when guestfish exits. "
31817 "However this is occasionally useful for testing."
31822 #: ../fish/guestfish-commands.pod:155
31828 #: ../fish/guestfish-commands.pod:157
31831 " sparse filename size\n"
31837 #: ../fish/guestfish-commands.pod:159
31839 "This creates an empty sparse file of the given size, and then adds so it can "
31840 "be further examined."
31845 #: ../fish/guestfish-commands.pod:162
31847 "In all respects it works the same as the L</alloc> command, except that the "
31848 "image file is allocated sparsely, which means that disk blocks are not "
31849 "assigned to the file until they are needed. Sparse disk files only use "
31850 "space when written to, but they are slower and there is a danger you could "
31851 "run out of real disk space during a write operation."
31856 #: ../fish/guestfish-commands.pod:172
31862 #: ../fish/guestfish-commands.pod:174
31871 #: ../fish/guestfish-commands.pod:176
31873 "This command returns a list of the optional groups known to the daemon, and "
31874 "indicates which ones are supported by this build of the libguestfs appliance."
31879 #: ../fish/guestfish-commands.pod:180
31880 msgid "See also L<guestfs(3)/AVAILABILITY>."
31885 #: ../fish/guestfish-commands.pod:182
31891 #: ../fish/guestfish-commands.pod:184
31894 " time command args...\n"
31900 #: ../fish/guestfish-commands.pod:186
31902 "Run the command as usual, but print the elapsed time afterwards. This can "
31903 "be useful for benchmarking operations."
31908 #: ../test-tool/libguestfs-test-tool.pod:5
31909 msgid "libguestfs-test-tool - End user tests for libguestfs"
31914 #: ../test-tool/libguestfs-test-tool.pod:9
31917 " libguestfs-test-tool [--options]\n"
31923 #: ../test-tool/libguestfs-test-tool.pod:13
31925 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
31926 "and developers, to allow them to check basic libguestfs functionality is "
31927 "working. This is needed because libguestfs occasionally breaks for reasons "
31928 "beyond our control: usually because of changes in the underlying qemu or "
31929 "kernel packages, or the host environment."
31934 #: ../test-tool/libguestfs-test-tool.pod:20
31935 msgid "If you suspect a problem in libguestfs, then just run:"
31940 #: ../test-tool/libguestfs-test-tool.pod:22
31943 " libguestfs-test-tool\n"
31949 #: ../test-tool/libguestfs-test-tool.pod:24
31950 msgid "It will print lots of diagnostic messages."
31955 #: ../test-tool/libguestfs-test-tool.pod:26
31956 msgid "If it runs to completion successfully, you will see this near the end:"
31961 #: ../test-tool/libguestfs-test-tool.pod:28
31964 " ===== TEST FINISHED OK =====\n"
31970 #: ../test-tool/libguestfs-test-tool.pod:30
31971 msgid "and the test tool will exit with code 0."
31976 #: ../test-tool/libguestfs-test-tool.pod:32
31978 "If it fails (and/or exits with non-zero error code), please paste the "
31979 "B<complete, unedited> output of the test tool into a bug report. More "
31980 "information about reporting bugs can be found on the L<http://libguestfs.org/"
31986 #: ../test-tool/libguestfs-test-tool.pod:41
31992 #: ../test-tool/libguestfs-test-tool.pod:43
31993 msgid "Display short usage information and exit."
31998 #: ../test-tool/libguestfs-test-tool.pod:45
31999 msgid "I<--qemu qemu_binary>"
32004 #: ../test-tool/libguestfs-test-tool.pod:47
32006 "If you have downloaded another qemu binary, point this option at the full "
32007 "path of the binary to try it."
32012 #: ../test-tool/libguestfs-test-tool.pod:50
32013 msgid "I<--qemudir qemu_source_dir>"
32018 #: ../test-tool/libguestfs-test-tool.pod:52
32020 "If you have compiled qemu from source, point this option at the source "
32021 "directory to try it."
32026 #: ../test-tool/libguestfs-test-tool.pod:55
32027 msgid "I<--timeout N>"
32032 #: ../test-tool/libguestfs-test-tool.pod:57
32034 "Set the launch timeout to C<N> seconds. The default is 120 seconds which "
32035 "does not usually need to be adjusted unless your machine is very slow."
32040 #: ../test-tool/libguestfs-test-tool.pod:63
32041 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
32046 #: ../test-tool/libguestfs-test-tool.pod:65
32048 "If you have compiled another version of qemu from source and would like to "
32049 "try that, then you can use the I<--qemudir> option to point to the qemu "
32050 "source directory."
32055 #: ../test-tool/libguestfs-test-tool.pod:69
32057 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
32058 "option to point to the binary."
32063 #: ../test-tool/libguestfs-test-tool.pod:72
32065 "When using an alternate qemu with libguestfs, usually you would need to "
32066 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)"
32067 ">). libguestfs-test-tool writes a temporary qemu wrapper script when you "
32068 "use either of the I<--qemudir> or I<--qemu> options."
32073 #: ../test-tool/libguestfs-test-tool.pod:79
32075 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
32076 "I<1> if there was an error."
32081 #: ../test-tool/libguestfs-test-tool.pod:84
32083 "For the full list of environment variables which may affect libguestfs, "
32084 "please see the L<guestfs(3)> manual page."
32089 #: ../test-tool/libguestfs-test-tool.pod:89
32090 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
32095 #: ../fuse/guestmount.pod:5
32097 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
32102 #: ../fuse/guestmount.pod:9
32105 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
32111 #: ../fuse/guestmount.pod:11
32114 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
32120 #: ../fuse/guestmount.pod:13
32123 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
32129 #: ../fuse/guestmount.pod:17
32131 "You must I<not> use C<guestmount> in read-write mode on live virtual "
32132 "machines. If you do this, you risk disk corruption in the VM."
32137 #: ../fuse/guestmount.pod:22
32139 "The guestmount program can be used to mount virtual machine filesystems and "
32140 "other disk images on the host. It uses libguestfs for access to the guest "
32141 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
32142 "a mountable device."
32147 #: ../fuse/guestmount.pod:27
32149 "Along with other options, you have to give at least one device (I<-a> "
32150 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
32151 "option) or use the I<-i> inspection option. How this works is better "
32152 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
32158 #: ../fuse/guestmount.pod:33
32160 "FUSE lets you mount filesystems as non-root. The mountpoint must be owned "
32161 "by you, and the filesystem will not be visible to any other users unless you "
32162 "make certain global configuration changes to C</etc/fuse.conf>. To unmount "
32163 "the filesystem, use the C<fusermount -u> command."
32168 #: ../fuse/guestmount.pod:41
32170 "For a typical Windows guest which has its main filesystem on the first "
32176 #: ../fuse/guestmount.pod:44
32179 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
32185 #: ../fuse/guestmount.pod:46
32187 "For a typical Linux guest which has a /boot filesystem on the first "
32188 "partition, and the root filesystem on a logical volume:"
32193 #: ../fuse/guestmount.pod:49
32196 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
32202 #: ../fuse/guestmount.pod:51
32203 msgid "To get libguestfs to detect guest mountpoints for you:"
32208 #: ../fuse/guestmount.pod:53
32211 " guestmount -a guest.img -i --ro /mnt\n"
32217 #: ../fuse/guestmount.pod:55
32218 msgid "For a libvirt guest called \"Guest\" you could do:"
32223 #: ../fuse/guestmount.pod:57
32226 " guestmount -d Guest -i --ro /mnt\n"
32232 #: ../fuse/guestmount.pod:59
32234 "If you don't know what filesystems are contained in a guest or disk image, "
32235 "use L<virt-filesystems(1)> first:"
32240 #: ../fuse/guestmount.pod:62
32243 " virt-filesystems MyGuest\n"
32249 #: ../fuse/guestmount.pod:64
32251 "If you want to trace the libguestfs calls but without excessive debugging "
32252 "information, we recommend:"
32257 #: ../fuse/guestmount.pod:67
32260 " guestmount [...] --trace /mnt\n"
32266 #: ../fuse/guestmount.pod:69
32267 msgid "If you want to debug the program, we recommend:"
32272 #: ../fuse/guestmount.pod:71
32275 " guestmount [...] --trace --verbose /mnt\n"
32280 #: ../fuse/guestmount.pod:73
32285 #: ../fuse/guestmount.pod:75
32286 msgid "Other users cannot see the filesystem by default"
32290 #: ../fuse/guestmount.pod:77
32292 "If you mount a filesystem as one user (eg. root), then other users will not "
32293 "be able to see it by default. The fix is to add the FUSE C<allow_other> "
32294 "option when mounting:"
32298 #: ../fuse/guestmount.pod:81
32301 " sudo guestmount [...] -o allow_other /mnt\n"
32307 #: ../fuse/guestmount.pod:87
32308 msgid "B<-a image> | B<--add image>"
32313 #: ../fuse/guestmount.pod:89
32314 msgid "Add a block device or virtual machine image."
32319 #: ../fuse/guestmount.pod:94
32320 msgid "B<-c URI> | B<--connect URI>"
32325 #: ../fuse/guestmount.pod:100
32326 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
32331 #: ../fuse/guestmount.pod:106
32332 msgid "B<--dir-cache-timeout N>"
32337 #: ../fuse/guestmount.pod:108
32339 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
32340 "seconds. The readdir cache [actually, there are several semi-independent "
32341 "caches] is populated after a readdir(2) call with the stat and extended "
32342 "attributes of the files in the directory, in anticipation that they will be "
32343 "requested soon after."
32348 #: ../fuse/guestmount.pod:114
32350 "There is also a different attribute cache implemented by FUSE (see the FUSE "
32351 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
32352 "requests, only cache existing ones."
32357 #: ../fuse/guestmount.pod:125
32358 msgid "B<--format=raw|qcow2|..> | B<--format>"
32363 #: ../fuse/guestmount.pod:132
32365 "If you have untrusted raw-format guest disk images, you should use this "
32366 "option to specify the disk format. This avoids a possible security problem "
32367 "with malicious guests (CVE-2010-3851). See also L<guestfs(3)/"
32368 "guestfs_add_drive_opts>."
32373 #: ../fuse/guestmount.pod:137
32374 msgid "B<--fuse-help>"
32379 #: ../fuse/guestmount.pod:139
32380 msgid "Display help on special FUSE options (see I<-o> below)."
32385 #: ../fuse/guestmount.pod:143
32386 msgid "Display brief help and exit."
32391 #: ../fuse/guestmount.pod:145
32392 msgid "B<-i> | B<--inspector>"
32397 #: ../fuse/guestmount.pod:165
32399 "Mount the named partition or logical volume on the given mountpoint B<in the "
32400 "guest> (this has nothing to do with mountpoints in the host)."
32405 #: ../fuse/guestmount.pod:168
32407 "If the mountpoint is omitted, it defaults to C</>. You have to mount "
32408 "something on C</>."
32413 #: ../fuse/guestmount.pod:181
32414 msgid "B<-n> | B<--no-sync>"
32419 #: ../fuse/guestmount.pod:183
32421 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
32422 "unmounted. If you specify this option, then we don't attempt to sync the "
32423 "disk. See the discussion of autosync in the L<guestfs(3)> manpage."
32428 #: ../fuse/guestmount.pod:188
32429 msgid "B<-o option> | B<--option option>"
32434 #: ../fuse/guestmount.pod:190
32435 msgid "Pass extra options to FUSE."
32440 #: ../fuse/guestmount.pod:192
32442 "To get a list of all the extra options supported by FUSE, use the command "
32443 "below. Note that only the FUSE I<-o> options can be passed, and only some "
32444 "of them are a good idea."
32449 #: ../fuse/guestmount.pod:196
32452 " guestmount --fuse-help\n"
32458 #: ../fuse/guestmount.pod:198
32459 msgid "Some potentially useful FUSE options:"
32464 #: ../fuse/guestmount.pod:202
32465 msgid "B<-o allow_other>"
32470 #: ../fuse/guestmount.pod:204
32471 msgid "Allow other users to see the filesystem."
32476 #: ../fuse/guestmount.pod:206
32477 msgid "B<-o attr_timeout=N>"
32482 #: ../fuse/guestmount.pod:208
32483 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
32488 #: ../fuse/guestmount.pod:210
32489 msgid "B<-o kernel_cache>"
32494 #: ../fuse/guestmount.pod:212
32496 "Allow the kernel to cache files (reduces the number of reads that have to go "
32497 "through the L<guestfs(3)> API). This is generally a good idea if you can "
32498 "afford the extra memory usage."
32503 #: ../fuse/guestmount.pod:216
32504 msgid "B<-o uid=N> B<-o gid=N>"
32509 #: ../fuse/guestmount.pod:218
32511 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
32512 "the chosen values."
32517 #: ../fuse/guestmount.pod:223
32518 msgid "B<-r> | B<--ro>"
32523 #: ../fuse/guestmount.pod:225
32525 "Add devices and mount everything read-only. Also disallow writes and make "
32526 "the disk appear read-only to FUSE."
32531 #: ../fuse/guestmount.pod:228
32533 "This is highly recommended if you are not going to edit the guest disk. If "
32534 "the guest is running and this option is I<not> supplied, then there is a "
32535 "strong risk of disk corruption in the guest. We try to prevent this from "
32536 "happening, but it is not always possible."
32541 #: ../fuse/guestmount.pod:233
32542 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
32547 #: ../fuse/guestmount.pod:237
32548 msgid "Enable SELinux support for the guest."
32553 #: ../fuse/guestmount.pod:239
32554 msgid "B<-v> | B<--verbose>"
32559 #: ../fuse/guestmount.pod:241
32560 msgid "Enable verbose messages from underlying libguestfs."
32565 #: ../fuse/guestmount.pod:243
32566 msgid "B<-V> | B<--version>"
32571 #: ../fuse/guestmount.pod:245
32572 msgid "Display the program version and exit."
32577 #: ../fuse/guestmount.pod:247
32578 msgid "B<-w> | B<--rw>"
32582 #: ../fuse/guestmount.pod:252 ../fuse/guestmount.pod:273
32583 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
32588 #: ../fuse/guestmount.pod:254
32589 msgid "B<-x> | B<--trace>"
32594 #: ../fuse/guestmount.pod:256
32595 msgid "Trace libguestfs calls and entry into each FUSE function."
32600 #: ../fuse/guestmount.pod:258
32601 msgid "This also stops the daemon from forking into the background."
32606 #: ../fuse/guestmount.pod:279
32608 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
32609 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, L<http://fuse.sf."
32615 #: ../fuse/guestmount.pod:294
32616 msgid "Copyright (C) 2009-2010 Red Hat Inc. L<http://libguestfs.org/>"
32621 #: ../tools/virt-edit.pl:34
32622 msgid "virt-edit - Edit a file in a virtual machine"
32627 #: ../tools/virt-edit.pl:38
32630 " virt-edit [--options] domname file\n"
32636 #: ../tools/virt-edit.pl:40
32639 " virt-edit [--options] disk.img [disk.img ...] file\n"
32645 #: ../tools/virt-edit.pl:42
32648 " virt-edit [domname|disk.img] file -e 'expr'\n"
32654 #: ../tools/virt-edit.pl:46
32656 "You must I<not> use C<virt-edit> on live virtual machines. If you do this, "
32657 "you risk disk corruption in the VM. C<virt-edit> tries to stop you from "
32658 "doing this, but doesn't catch all cases."
32663 #: ../tools/virt-edit.pl:52
32665 "C<virt-edit> is a command line tool to edit C<file> where C<file> exists in "
32666 "the named virtual machine (or disk image)."
32670 #: ../tools/virt-edit.pl:55
32671 msgid "If you want to just view a file, use L<virt-cat(1)>."
32675 #: ../tools/virt-edit.pl:57
32677 "For more complex cases you should look at the L<guestfish(1)> tool (see L</"
32678 "USING GUESTFISH> below)."
32682 #: ../tools/virt-edit.pl:60
32684 "C<virt-edit> cannot be used to create a new file, nor to edit multiple "
32685 "files. L<guestfish(1)> can do that and much more."
32690 #: ../tools/virt-edit.pl:65
32691 msgid "Edit the named files interactively:"
32696 #: ../tools/virt-edit.pl:67
32699 " virt-edit mydomain /boot/grub/grub.conf\n"
32705 #: ../tools/virt-edit.pl:69
32708 " virt-edit mydomain /etc/passwd\n"
32713 #: ../tools/virt-edit.pl:71
32714 msgid "For Windows guests, some Windows paths are understood:"
32718 #: ../tools/virt-edit.pl:73
32721 " virt-edit mywindomain 'c:\\autoexec.bat'\n"
32727 #: ../tools/virt-edit.pl:75
32729 "You can also edit files non-interactively (see L</NON-INTERACTIVE EDITING> "
32730 "below). To change the init default level to 5:"
32735 #: ../tools/virt-edit.pl:79
32738 " virt-edit mydomain /etc/inittab -e 's/^id:.*/id:5:initdefault:/'\n"
32744 #: ../tools/virt-edit.pl:91 ../tools/virt-win-reg.pl:106
32745 #: ../tools/virt-list-filesystems.pl:63 ../tools/virt-tar.pl:113
32746 #: ../tools/virt-make-fs.pl:163 ../tools/virt-list-partitions.pl:64
32747 msgid "Display brief help."
32752 #: ../tools/virt-edit.pl:99 ../tools/virt-win-reg.pl:114
32753 #: ../tools/virt-list-filesystems.pl:71 ../tools/virt-tar.pl:121
32754 #: ../tools/virt-make-fs.pl:171 ../tools/virt-list-partitions.pl:72
32755 msgid "Display version number and exit."
32760 #: ../tools/virt-edit.pl:105
32761 msgid "B<--backup extension> | B<-b extension>"
32766 #: ../tools/virt-edit.pl:107
32768 "Create a backup of the original file I<in the guest disk image>. The backup "
32769 "has the original filename with C<extension> added."
32774 #: ../tools/virt-edit.pl:110
32776 "Usually the first character of C<extension> would be a dot C<.> so you would "
32782 #: ../tools/virt-edit.pl:113
32785 " virt-edit -b .orig [etc]\n"
32791 #: ../tools/virt-edit.pl:115
32792 msgid "By default, no backup file is made."
32797 #: ../tools/virt-edit.pl:121 ../tools/virt-win-reg.pl:128
32798 #: ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127
32799 #: ../tools/virt-list-partitions.pl:78
32800 msgid "B<--connect URI> | B<-c URI>"
32805 #: ../tools/virt-edit.pl:123 ../tools/virt-win-reg.pl:130
32806 #: ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129
32807 #: ../tools/virt-list-partitions.pl:80
32809 "If using libvirt, connect to the given I<URI>. If omitted, then we connect "
32810 "to the default libvirt hypervisor."
32815 #: ../tools/virt-edit.pl:126 ../tools/virt-win-reg.pl:133
32816 #: ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132
32817 #: ../tools/virt-list-partitions.pl:83
32819 "If you specify guest block devices directly, then libvirt is not used at all."
32824 #: ../tools/virt-edit.pl:133 ../tools/virt-win-reg.pl:140
32825 #: ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139
32826 #: ../tools/virt-list-partitions.pl:90
32827 msgid "B<--format> raw"
32832 #: ../tools/virt-edit.pl:135 ../tools/virt-win-reg.pl:142
32833 #: ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141
32834 #: ../tools/virt-list-partitions.pl:92
32836 "Specify the format of disk images given on the command line. If this is "
32837 "omitted then the format is autodetected from the content of the disk image."
32842 #: ../tools/virt-edit.pl:139 ../tools/virt-win-reg.pl:146
32843 #: ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145
32844 #: ../tools/virt-list-partitions.pl:96
32846 "If disk images are requested from libvirt, then this program asks libvirt "
32847 "for this information. In this case, the value of the format parameter is "
32853 #: ../tools/virt-edit.pl:143 ../tools/virt-win-reg.pl:150
32854 #: ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149
32855 #: ../tools/virt-list-partitions.pl:100
32857 "If working with untrusted raw-format guest disk images, you should ensure "
32858 "the format is always specified."
32863 #: ../tools/virt-edit.pl:150
32864 msgid "B<--expr EXPR> | B<-e EXPR>"
32869 #: ../tools/virt-edit.pl:152
32871 "Instead of launching the external editor, non-interactively apply the Perl "
32872 "expression C<EXPR> to each line in the file. See L</NON-INTERACTIVE "
32878 #: ../tools/virt-edit.pl:156
32880 "Be careful to properly quote the expression to prevent it from being altered "
32886 #: ../tools/virt-edit.pl:280
32887 msgid "NON-INTERACTIVE EDITING"
32892 #: ../tools/virt-edit.pl:282
32894 "C<virt-edit> normally calls out to C<$EDITOR> (or vi) so the system "
32895 "administrator can interactively edit the file."
32900 #: ../tools/virt-edit.pl:285
32902 "There are two ways also to use C<virt-edit> from scripts in order to make "
32903 "automated edits to files. (Note that although you I<can> use C<virt-edit> "
32904 "like this, it's less error-prone to write scripts directly using the "
32905 "libguestfs API and Augeas for configuration file editing.)"
32910 #: ../tools/virt-edit.pl:291
32912 "The first method is to temporarily set C<$EDITOR> to any script or program "
32913 "you want to run. The script is invoked as C<$EDITOR tmpfile> and it should "
32914 "update C<tmpfile> in place however it likes."
32918 #: ../tools/virt-edit.pl:295
32920 "The second method is to use the I<-e> parameter of C<virt-edit> to run a "
32921 "short Perl snippet in the style of L<sed(1)>. For example to replace all "
32922 "instances of C<foo> with C<bar> in a file:"
32927 #: ../tools/virt-edit.pl:299
32930 " virt-edit domname filename -e 's/foo/bar/'\n"
32936 #: ../tools/virt-edit.pl:301
32938 "The full power of Perl regular expressions can be used (see L<perlre(1)>). "
32939 "For example to delete root's password you could do:"
32944 #: ../tools/virt-edit.pl:304
32947 " virt-edit domname /etc/passwd -e 's/^root:.*?:/root::/'\n"
32953 #: ../tools/virt-edit.pl:306
32955 "What really happens is that the snippet is evaluated as a Perl expression "
32956 "for each line of the file. The line, including the final C<\\n>, is passed "
32957 "in C<$_> and the expression should update C<$_> or leave it unchanged."
32962 #: ../tools/virt-edit.pl:311
32964 "To delete a line, set C<$_> to the empty string. For example, to delete the "
32965 "C<apache> user account from the password file you can do:"
32970 #: ../tools/virt-edit.pl:314
32973 " virt-edit mydomain /etc/passwd -e '$_ = \"\" if /^apache:/'\n"
32979 #: ../tools/virt-edit.pl:316
32981 "To insert a line, prepend or append it to C<$_>. However appending lines to "
32982 "the end of the file is rather difficult this way since there is no concept "
32983 "of \"last line of the file\" - your expression just doesn't get called "
32984 "again. You might want to use the first method (setting C<$EDITOR>) if you "
32990 #: ../tools/virt-edit.pl:322
32992 "The variable C<$lineno> contains the current line number. As is "
32993 "traditional, the first line in the file is number C<1>."
32998 #: ../tools/virt-edit.pl:325
33000 "The return value from the expression is ignored, but the expression may call "
33001 "C<die> in order to abort the whole program, leaving the original file "
33007 #: ../tools/virt-edit.pl:329
33009 "Remember when matching the end of a line that C<$_> may contain the final C<"
33010 "\\n>, or (for DOS files) C<\\r\\n>, or if the file does not end with a "
33011 "newline then neither of these. Thus to match or substitute some text at the "
33012 "end of a line, use this regular expression:"
33017 #: ../tools/virt-edit.pl:334
33020 " /some text(\\r?\\n)?$/\n"
33026 #: ../tools/virt-edit.pl:336
33028 "Alternately, use the perl C<chomp> function, being careful not to chomp C<"
33029 "$_> itself (since that would remove all newlines from the file):"
33034 #: ../tools/virt-edit.pl:340
33037 " my $m = $_; chomp $m; $m =~ /some text$/\n"
33042 #: ../tools/virt-edit.pl:344
33044 "C<virt-edit> has a limited ability to understand Windows drive letters and "
33045 "paths (eg. C<E:\\foo\\bar.txt>)."
33049 #: ../tools/virt-edit.pl:347
33050 msgid "If and only if the guest is running Windows then:"
33054 #: ../tools/virt-edit.pl:353
33056 "Drive letter prefixes like C<C:> are resolved against the Windows Registry "
33057 "to the correct filesystem."
33061 #: ../tools/virt-edit.pl:358
33063 "Any backslash (C<\\>) characters in the path are replaced with forward "
33064 "slashes so that libguestfs can process it."
33068 #: ../tools/virt-edit.pl:363
33070 "The path is resolved case insensitively to locate the file that should be "
33075 #: ../tools/virt-edit.pl:368
33076 msgid "There are some known shortcomings:"
33080 #: ../tools/virt-edit.pl:374
33081 msgid "Some NTFS symbolic links may not be followed correctly."
33085 #: ../tools/virt-edit.pl:378
33086 msgid "NTFS junction points that cross filesystems are not followed."
33090 #: ../tools/virt-edit.pl:435
33091 msgid "USING GUESTFISH"
33095 #: ../tools/virt-edit.pl:437
33097 "L<guestfish(1)> is a more powerful, lower level tool which you can use when "
33098 "C<virt-edit> doesn't work."
33102 #: ../tools/virt-edit.pl:440
33103 msgid "Using C<virt-edit> is approximately equivalent to doing:"
33107 #: ../tools/virt-edit.pl:442
33110 " guestfish --rw -i -d domname edit /file\n"
33115 #: ../tools/virt-edit.pl:444
33117 "where C<domname> is the name of the libvirt guest, and C</file> is the full "
33118 "path to the file."
33122 #: ../tools/virt-edit.pl:447
33124 "The command above uses libguestfs's guest inspection feature and so does not "
33125 "work on guests that libguestfs cannot inspect, or on things like arbitrary "
33126 "disk images that don't contain guests. To edit a file on a disk image "
33131 #: ../tools/virt-edit.pl:452
33134 " guestfish --rw -a disk.img -m /dev/sda1 edit /file\n"
33139 #: ../tools/virt-edit.pl:454
33141 "where C<disk.img> is the disk image, C</dev/sda1> is the filesystem within "
33142 "the disk image to edit, and C</file> is the full path to the file."
33146 #: ../tools/virt-edit.pl:458
33148 "C<virt-edit> cannot create new files. Use the guestfish commands C<touch>, "
33149 "C<write> or C<upload> instead:"
33153 #: ../tools/virt-edit.pl:461
33156 " guestfish --rw -i -d domname touch /newfile\n"
33161 #: ../tools/virt-edit.pl:463
33164 " guestfish --rw -i -d domname write /newfile \"new content\"\n"
33169 #: ../tools/virt-edit.pl:465
33172 " guestfish --rw -i -d domname upload localfile /newfile\n"
33177 #: ../tools/virt-edit.pl:467
33179 "C<virt-edit> cannot edit multiple files, but guestfish can do it like this:"
33183 #: ../tools/virt-edit.pl:470
33186 " guestfish --rw -i -d domname edit /file1 : edit /file2\n"
33192 #: ../tools/virt-edit.pl:480
33198 #: ../tools/virt-edit.pl:482
33200 "If set, this string is used as the editor. It may contain arguments, eg. C<"
33206 #: ../tools/virt-edit.pl:485
33207 msgid "If not set, C<vi> is used."
33212 #: ../tools/virt-edit.pl:489 ../tools/virt-win-reg.pl:559
33213 #: ../tools/virt-list-filesystems.pl:182 ../tools/virt-tar.pl:279
33214 #: ../tools/virt-make-fs.pl:532 ../tools/virt-list-partitions.pl:250
33215 msgid "SHELL QUOTING"
33220 #: ../tools/virt-edit.pl:491 ../tools/virt-win-reg.pl:567
33221 #: ../tools/virt-list-filesystems.pl:184 ../tools/virt-tar.pl:281
33222 #: ../tools/virt-make-fs.pl:534 ../tools/virt-list-partitions.pl:252
33224 "Libvirt guest names can contain arbitrary characters, some of which have "
33225 "meaning to the shell such as C<#> and space. You may need to quote or "
33226 "escape these characters on the command line. See the shell manual page L<sh"
33227 "(1)> for details."
33231 #: ../tools/virt-edit.pl:498
33233 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-copy-in(1)>, L<virt-"
33234 "tar-in(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
33235 "L<http://libguestfs.org/>, L<perl(1)>, L<perlre(1)>."
33240 #: ../tools/virt-edit.pl:510 ../tools/virt-win-reg.pl:598
33241 #: ../tools/virt-list-filesystems.pl:202 ../tools/virt-tar.pl:301
33242 #: ../tools/virt-make-fs.pl:564 ../tools/virt-list-partitions.pl:269
33248 #: ../tools/virt-edit.pl:512 ../tools/virt-win-reg.pl:600
33249 #: ../tools/virt-list-filesystems.pl:204 ../tools/virt-tar.pl:303
33250 #: ../tools/virt-make-fs.pl:566 ../tools/virt-list-partitions.pl:271
33251 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
33255 #: ../tools/virt-edit.pl:516
33256 msgid "Copyright (C) 2009-2011 Red Hat Inc."
33261 #: ../tools/virt-win-reg.pl:37
33263 "virt-win-reg - Export and merge Windows Registry entries from a Windows guest"
33268 #: ../tools/virt-win-reg.pl:41
33271 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
33277 #: ../tools/virt-win-reg.pl:43
33280 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
33286 #: ../tools/virt-win-reg.pl:45
33289 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
33295 #: ../tools/virt-win-reg.pl:47
33298 " virt-win-reg --merge domname [input.reg ...]\n"
33304 #: ../tools/virt-win-reg.pl:49
33307 " virt-win-reg [--options] disk.img ... # instead of domname\n"
33312 #: ../tools/virt-win-reg.pl:53
33314 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
33315 "virtual machines. If you do this, you I<will> get irreversible disk "
33316 "corruption in the VM. C<virt-win-reg> tries to stop you from doing this, "
33317 "but doesn't catch all cases."
33321 #: ../tools/virt-win-reg.pl:58
33323 "Modifying the Windows Registry is an inherently risky operation. The format "
33324 "is deliberately obscure and undocumented, and Registry changes can leave the "
33325 "system unbootable. Therefore when using the I<--merge> option, make sure "
33326 "you have a reliable backup first."
33331 #: ../tools/virt-win-reg.pl:65
33333 "This program can export and merge Windows Registry entries from a Windows "
33339 #: ../tools/virt-win-reg.pl:68
33341 "The first parameter is the libvirt guest name or the raw disk image of a "
33346 #: ../tools/virt-win-reg.pl:71
33348 "If I<--merge> is I<not> specified, then the chosen registry key is displayed/"
33349 "exported (recursively). For example:"
33354 #: ../tools/virt-win-reg.pl:74
33357 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
33363 #: ../tools/virt-win-reg.pl:76
33365 "You can also display single values from within registry keys, for example:"
33370 #: ../tools/virt-win-reg.pl:79
33373 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
33374 " $ virt-win-reg Windows7 $cvkey ProductName\n"
33375 " Windows 7 Enterprise\n"
33380 #: ../tools/virt-win-reg.pl:83
33382 "With I<--merge>, you can merge a textual regedit file into the Windows "
33388 #: ../tools/virt-win-reg.pl:86
33391 " $ virt-win-reg --merge Windows7 changes.reg\n"
33397 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
33403 #: ../tools/virt-win-reg.pl:90
33405 "This program is only meant for simple access to the registry. If you want "
33406 "to do complicated things with the registry, we suggest you download the "
33407 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
33408 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
33409 "L<hivexregedit(1)>."
33414 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
33420 #: ../tools/virt-win-reg.pl:122
33421 msgid "Enable debugging messages."
33426 #: ../tools/virt-win-reg.pl:157
33432 #: ../tools/virt-win-reg.pl:159
33434 "In merge mode, this merges a textual regedit file into the Windows Registry "
33435 "of the virtual machine. If this flag is I<not> given then virt-win-reg "
33436 "displays or exports Registry entries instead."
33440 #: ../tools/virt-win-reg.pl:163
33442 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
33443 "result in disk corruption. However exporting (without this flag) is always "
33449 #: ../tools/virt-win-reg.pl:171
33450 msgid "B<--encoding> UTF-16LE|ASCII"
33455 #: ../tools/virt-win-reg.pl:173
33457 "When merging (only), you may need to specify the encoding for strings to be "
33458 "used in the hive file. This is explained in detail in L<Win::Hivex::Regedit"
33459 "(3)/ENCODING STRINGS>."
33464 #: ../tools/virt-win-reg.pl:177
33466 "The default is to use UTF-16LE, which should work with recent versions of "
33472 #: ../tools/virt-win-reg.pl:402
33473 msgid "SUPPORTED SYSTEMS"
33478 #: ../tools/virt-win-reg.pl:404
33480 "The program currently supports Windows NT-derived guests starting with "
33481 "Windows XP through to at least Windows 7."
33486 #: ../tools/virt-win-reg.pl:407
33488 "Registry support is done for C<HKEY_LOCAL_MACHINE\\SAM>, C<HKEY_LOCAL_MACHINE"
33489 "\\SECURITY>, C<HKEY_LOCAL_MACHINE\\SOFTWARE>, C<HKEY_LOCAL_MACHINE\\SYSTEM> "
33490 "and C<HKEY_USERS\\.DEFAULT>."
33495 #: ../tools/virt-win-reg.pl:411
33497 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
33503 #: ../tools/virt-win-reg.pl:414
33505 "C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are B<not> supported at this "
33511 #: ../tools/virt-win-reg.pl:417
33517 #: ../tools/virt-win-reg.pl:419
33519 "C<virt-win-reg> expects that regedit files have already been reencoded in "
33520 "the local encoding. Usually on Linux hosts, this means UTF-8 with Unix-"
33521 "style line endings. Since Windows regedit files are often in UTF-16LE with "
33522 "Windows-style line endings, you may need to reencode the whole file before "
33523 "or after processing."
33527 #: ../tools/virt-win-reg.pl:425
33529 "To reencode a file from Windows format to Linux (before processing it with "
33530 "the I<--merge> option), you would do something like this:"
33535 #: ../tools/virt-win-reg.pl:428
33538 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
33544 #: ../tools/virt-win-reg.pl:430
33546 "To go in the opposite direction, after exporting and before sending the file "
33547 "to a Windows user, do something like this:"
33552 #: ../tools/virt-win-reg.pl:433
33555 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
33561 #: ../tools/virt-win-reg.pl:435
33562 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
33567 #: ../tools/virt-win-reg.pl:437
33569 "If you are unsure about the current encoding, use the L<file(1)> command. "
33570 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
33571 "style (CRLF) line endings, like this:"
33576 #: ../tools/virt-win-reg.pl:441
33579 " $ file software.reg\n"
33580 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
33581 " with CRLF line terminators\n"
33586 #: ../tools/virt-win-reg.pl:445
33587 msgid "This file would need conversion before you could I<--merge> it."
33592 #: ../tools/virt-win-reg.pl:447
33593 msgid "CurrentControlSet etc."
33598 #: ../tools/virt-win-reg.pl:449
33600 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
33601 "Registry at the level of the hive file, and therefore you cannot modify "
33607 #: ../tools/virt-win-reg.pl:453
33609 "C<CurrentControlSet> is usually an alias for C<ControlSet001>. In some "
33610 "circumstances it might refer to another control set. The way to find out is "
33611 "to look at the C<HKLM\\SYSTEM\\Select> key:"
33616 #: ../tools/virt-win-reg.pl:457
33619 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
33620 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
33621 " \"Current\"=dword:00000001\n"
33622 " \"Default\"=dword:00000001\n"
33623 " \"Failed\"=dword:00000000\n"
33624 " \"LastKnownGood\"=dword:00000002\n"
33630 #: ../tools/virt-win-reg.pl:464
33631 msgid "\"Current\" is the one which Windows will choose when it boots."
33636 #: ../tools/virt-win-reg.pl:466
33638 "Similarly, other C<Current...> keys in the path may need to be replaced."
33643 #: ../tools/virt-win-reg.pl:469
33644 msgid "WINDOWS TIPS"
33649 #: ../tools/virt-win-reg.pl:471
33651 "Note that some of these tips modify the guest disk image. The guest I<must> "
33652 "be shut off, else you will get disk corruption."
33657 #: ../tools/virt-win-reg.pl:474
33658 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
33663 #: ../tools/virt-win-reg.pl:476
33665 "Prepare a DOS batch script, VBScript or executable. Upload this using "
33666 "L<guestfish(1)>. For this example the script is called C<test.bat> and it "
33667 "is uploaded into C<C:\\>:"
33672 #: ../tools/virt-win-reg.pl:480
33675 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
33681 #: ../tools/virt-win-reg.pl:482
33682 msgid "Prepare a regedit file containing the registry change:"
33687 #: ../tools/virt-win-reg.pl:484
33690 " cat > test.reg <<'EOF'\n"
33691 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
33692 " \"Test\"=\"c:\\\\test.bat\"\n"
33699 #: ../tools/virt-win-reg.pl:489
33701 "In this example we use the key C<RunOnce> which means that the script will "
33702 "run precisely once when the first user logs in. If you want it to run every "
33703 "time a user logs in, replace C<RunOnce> with C<Run>."
33708 #: ../tools/virt-win-reg.pl:493
33709 msgid "Now update the registry:"
33714 #: ../tools/virt-win-reg.pl:495
33717 " virt-win-reg --merge WindowsGuest test.reg\n"
33723 #: ../tools/virt-win-reg.pl:497
33724 msgid "INSTALLING A SERVICE"
33729 #: ../tools/virt-win-reg.pl:499
33731 "This section assumes you are familiar with Windows services, and you either "
33732 "have a program which handles the Windows Service Control Protocol directly "
33733 "or you want to run any program using a service wrapper like SrvAny or the "
33739 #: ../tools/virt-win-reg.pl:504
33741 "First upload the program and optionally the service wrapper. In this case "
33742 "the test program is called C<test.exe> and we are using the RHSrvAny wrapper:"
33747 #: ../tools/virt-win-reg.pl:508
33750 " guestfish -i -d WindowsGuest <<EOF\n"
33751 " upload rhsrvany.exe /rhsrvany.exe\n"
33752 " upload test.exe /test.exe\n"
33759 #: ../tools/virt-win-reg.pl:513
33761 "Prepare a regedit file containing the registry changes. In this example, "
33762 "the first registry change is needed for the service itself or the service "
33763 "wrapper (if used). The second registry change is only needed because I am "
33764 "using the RHSrvAny service wrapper."
33769 #: ../tools/virt-win-reg.pl:518
33772 " cat > service.reg <<'EOF'\n"
33773 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
33774 " \"Type\"=dword:00000010\n"
33775 " \"Start\"=dword:00000002\n"
33776 " \"ErrorControl\"=dword:00000001\n"
33777 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
33778 " \"DisplayName\"=\"RHSrvAny\"\n"
33779 " \"ObjectName\"=\"NetworkService\"\n"
33785 #: ../tools/virt-win-reg.pl:527
33788 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
33789 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
33790 " \"PWD\"=\"c:\\\\Temp\"\n"
33797 #: ../tools/virt-win-reg.pl:538
33799 "For use of C<ControlSet001> see the section above in this manual page. You "
33800 "may need to adjust this according to the control set that is in use by the "
33806 #: ../tools/virt-win-reg.pl:544
33808 "C<\"ObjectName\"> controls the privileges that the service will have. An "
33809 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
33810 "privileged account."
33815 #: ../tools/virt-win-reg.pl:550
33817 "For the meaning of the magic numbers, see this Microsoft KB article: "
33818 "L<http://support.microsoft.com/kb/103000>."
33823 #: ../tools/virt-win-reg.pl:555
33824 msgid "Update the registry:"
33829 #: ../tools/virt-win-reg.pl:557
33832 " virt-win-reg --merge WindowsGuest service.reg\n"
33838 #: ../tools/virt-win-reg.pl:561
33840 "Be careful when passing parameters containing C<\\> (backslash) in the "
33841 "shell. Usually you will have to use 'single quotes' or double backslashes "
33842 "(but not both) to protect them from the shell."
33847 #: ../tools/virt-win-reg.pl:565
33848 msgid "Paths and value names are case-insensitive."
33853 #: ../tools/virt-win-reg.pl:574
33855 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, L<guestfish(1)"
33856 ">, L<virt-cat(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Win::Hivex"
33857 "(3)>, L<Win::Hivex::Regedit(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
33862 #: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:555
33864 "When reporting bugs, please enable debugging and capture the I<complete> "
33870 #: ../tools/virt-win-reg.pl:592
33873 " export LIBGUESTFS_DEBUG=1\n"
33874 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
33880 #: ../tools/virt-win-reg.pl:595
33882 "Attach /tmp/virt-win-reg.log to a new bug report at L<https://bugzilla."
33888 #: ../tools/virt-win-reg.pl:604 ../tools/virt-make-fs.pl:570
33889 msgid "Copyright (C) 2010 Red Hat Inc."
33894 #: ../tools/virt-list-filesystems.pl:32
33896 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
33901 #: ../tools/virt-list-filesystems.pl:36
33904 " virt-list-filesystems [--options] domname\n"
33910 #: ../tools/virt-list-filesystems.pl:38
33913 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
33919 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
33921 "This tool is obsolete. Use L<virt-filesystems(1)> as a more flexible "
33927 #: ../tools/virt-list-filesystems.pl:45
33929 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
33930 "are contained in a virtual machine or disk image."
33935 #: ../tools/virt-list-filesystems.pl:49
33937 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
33938 "functionality. For more complex cases you should look at the L<guestfish(1)"
33944 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
33945 msgid "B<-l> | B<--long>"
33950 #: ../tools/virt-list-filesystems.pl:108
33952 "With this option, C<virt-list-filesystems> displays the type of each "
33953 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
33958 #: ../tools/virt-list-filesystems.pl:115
33959 msgid "B<-a> | B<--all>"
33964 #: ../tools/virt-list-filesystems.pl:117
33966 "Normally we only show mountable filesystems. If this option is given then "
33967 "swap devices are shown too."
33972 #: ../tools/virt-list-filesystems.pl:191
33974 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
33975 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, L<Sys::"
33976 "Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
33981 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
33982 msgid "Copyright (C) 2009 Red Hat Inc."
33987 #: ../tools/virt-tar.pl:33
33988 msgid "virt-tar - Extract or upload files to a virtual machine"
33993 #: ../tools/virt-tar.pl:37
33996 " virt-tar [--options] -x domname directory tarball\n"
34002 #: ../tools/virt-tar.pl:39
34005 " virt-tar [--options] -u domname tarball directory\n"
34011 #: ../tools/virt-tar.pl:41
34014 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
34020 #: ../tools/virt-tar.pl:43
34023 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
34028 #: ../tools/virt-tar.pl:47
34030 "This tool is obsolete. Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
34031 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
34036 #: ../tools/virt-tar.pl:52
34037 msgid "Download C</home> from the VM into a local tarball:"
34042 #: ../tools/virt-tar.pl:54
34045 " virt-tar -x domname /home home.tar\n"
34051 #: ../tools/virt-tar.pl:56
34054 " virt-tar -zx domname /home home.tar.gz\n"
34060 #: ../tools/virt-tar.pl:58
34061 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
34066 #: ../tools/virt-tar.pl:60
34069 " virt-tar -u domname uploadstuff.tar /tmp\n"
34075 #: ../tools/virt-tar.pl:62
34078 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
34083 #: ../tools/virt-tar.pl:66
34085 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
34086 "virtual machines. If you do this, you risk disk corruption in the VM. "
34087 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
34091 #: ../tools/virt-tar.pl:71
34093 "You can use I<-x> (extract) on live virtual machines, but you might get "
34094 "inconsistent results or errors if there is filesystem activity inside the "
34095 "VM. If the live VM is synched and quiescent, then C<virt-tar> will usually "
34096 "work, but the only way to guarantee consistent results is if the virtual "
34097 "machine is shut down."
34102 #: ../tools/virt-tar.pl:79
34104 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
34105 "parts of a guest filesystem. There are many possibilities: making backups, "
34106 "uploading data files, snooping on guest activity, fixing or customizing "
34112 #: ../tools/virt-tar.pl:84
34114 "If you want to just view a single file, use L<virt-cat(1)>. If you just "
34115 "want to edit a single file, use L<virt-edit(1)>. For more complex cases you "
34116 "should look at the L<guestfish(1)> tool."
34120 #: ../tools/virt-tar.pl:88
34122 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
34123 "its contents (recursively) from the virtual machine into a local tarball. "
34124 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
34125 "virtual machine. You cannot use these two options together."
34129 #: ../tools/virt-tar.pl:94
34131 "In addition, you may need to use the I<-z> (gZip) option to enable "
34132 "compression. When uploading, you have to specify I<-z> if the upload file "
34133 "is compressed because virt-tar won't detect this on its own."
34138 #: ../tools/virt-tar.pl:98
34140 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs. For "
34141 "example it cannot do PKZip files or bzip2 compression. If you want that "
34142 "then you'll have to rebuild the tarballs yourself. (This is a limitation of "
34143 "the L<libguestfs(3)> API)."
34148 #: ../tools/virt-tar.pl:156
34149 msgid "B<-x> | B<--extract> | B<--download>"
34154 #: ../tools/virt-tar.pl:158
34155 msgid "B<-u> | B<--upload>"
34159 #: ../tools/virt-tar.pl:160
34161 "Use I<-x> to extract (download) a directory from a virtual machine to a "
34166 #: ../tools/virt-tar.pl:163
34168 "Use I<-u> to upload and unpack from a local tarball into a virtual machine. "
34169 "Please read the L</WARNING> section above before using this option."
34174 #: ../tools/virt-tar.pl:167
34175 msgid "You must specify exactly one of these options."
34180 #: ../tools/virt-tar.pl:173
34181 msgid "B<-z> | B<--gzip>"
34186 #: ../tools/virt-tar.pl:175
34187 msgid "Specify that the input or output tarball is gzip-compressed."
34191 #: ../tools/virt-tar.pl:288
34193 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-copy-"
34194 "in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<Sys::"
34195 "Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs."
34201 #: ../tools/virt-make-fs.pl:37
34202 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
34207 #: ../tools/virt-make-fs.pl:41
34210 " virt-make-fs [--options] input.tar output.img\n"
34216 #: ../tools/virt-make-fs.pl:43
34219 " virt-make-fs [--options] input.tar.gz output.img\n"
34225 #: ../tools/virt-make-fs.pl:45
34228 " virt-make-fs [--options] directory output.img\n"
34234 #: ../tools/virt-make-fs.pl:49
34236 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
34237 "archive or some files in a directory. It is similar to tools like L<mkisofs"
34238 "(1)>, L<genisoimage(1)> and L<mksquashfs(1)>. Unlike those tools, it can "
34239 "create common filesystem types like ext2/3 or NTFS, which can be useful if "
34240 "you want to attach these filesystems to existing virtual machines (eg. to "
34241 "import large amounts of read-only data to a VM)."
34246 #: ../tools/virt-make-fs.pl:57
34247 msgid "Basic usage is:"
34252 #: ../tools/virt-make-fs.pl:59
34255 " virt-make-fs input output\n"
34261 #: ../tools/virt-make-fs.pl:61
34263 "where C<input> is either a directory containing files that you want to add, "
34264 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
34265 "C<output> is a disk image. The input type is detected automatically. The "
34266 "output disk image defaults to a raw ext2 image unless you specify extra "
34267 "flags (see L</OPTIONS> below)."
34272 #: ../tools/virt-make-fs.pl:67
34273 msgid "EXTRA SPACE"
34277 #: ../tools/virt-make-fs.pl:69
34279 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
34280 "the files that it contains, but might have extra space. Depending on how "
34281 "you are going to use the output, you might think this extra space is wasted "
34282 "and want to minimize it, or you might want to leave space so that more files "
34283 "can be added later. Virt-make-fs defaults to minimizing the extra space, "
34284 "but you can use the I<--size> flag to leave space in the filesystem if you "
34289 #: ../tools/virt-make-fs.pl:77
34291 "An alternative way to leave extra space but not make the output image any "
34292 "bigger is to use an alternative disk image format (instead of the default "
34293 "\"raw\" format). Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
34294 "image format (check your hypervisor supports this before using it). This "
34295 "allows you to choose a large I<--size> but the extra space won't actually be "
34296 "allocated in the image until you try to store something in it."
34300 #: ../tools/virt-make-fs.pl:85
34302 "Don't forget that you can also use local commands including L<resize2fs(8)> "
34303 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
34304 "to build another image from scratch."
34309 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
34310 #: ../tools/virt-make-fs.pl:142
34316 #: ../tools/virt-make-fs.pl:91
34319 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
34325 #: ../tools/virt-make-fs.pl:93
34326 msgid "FILESYSTEM TYPE"
34331 #: ../tools/virt-make-fs.pl:95
34333 "The default filesystem type is C<ext2>. Just about any filesystem type that "
34334 "libguestfs supports can be used (but I<not> read-only formats like "
34335 "ISO9660). Here are some of the more common choices:"
34340 #: ../tools/virt-make-fs.pl:101
34346 #: ../tools/virt-make-fs.pl:103
34348 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size. If "
34349 "you are not going to use the filesystem in a way that requires the journal, "
34350 "then this is just wasted overhead."
34355 #: ../tools/virt-make-fs.pl:107
34356 msgid "I<ntfs> or I<vfat>"
34361 #: ../tools/virt-make-fs.pl:109
34362 msgid "Useful if exporting data to a Windows guest."
34367 #: ../tools/virt-make-fs.pl:111
34369 "I<Note for vfat>: The tar archive or local directory must only contain files "
34370 "which are owned by root (ie. UID:GID = 0:0). The reason is that the tar "
34371 "program running within libguestfs is unable to change the ownership of non-"
34372 "root files, since vfat itself does not support this."
34377 #: ../tools/virt-make-fs.pl:116
34383 #: ../tools/virt-make-fs.pl:118
34385 "Lower overhead than C<ext2>, but certain limitations on filename length and "
34386 "total filesystem size."
34391 #: ../tools/virt-make-fs.pl:125
34394 " virt-make-fs --type=minix input minixfs.img\n"
34400 #: ../tools/virt-make-fs.pl:127
34401 msgid "TO PARTITION OR NOT TO PARTITION"
34406 #: ../tools/virt-make-fs.pl:129
34407 msgid "Optionally virt-make-fs can add a partition table to the output disk."
34412 #: ../tools/virt-make-fs.pl:131
34414 "Adding a partition can make the disk image more compatible with certain "
34415 "virtualized operating systems which don't expect to see a filesystem "
34416 "directly located on a block device (Linux doesn't care and will happily "
34417 "handle both types)."
34422 #: ../tools/virt-make-fs.pl:136
34424 "On the other hand, if you have a partition table then the output image is no "
34425 "longer a straight filesystem. For example you cannot run L<fsck(8)> "
34426 "directly on a partitioned disk image. (However libguestfs tools such as "
34427 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
34432 #: ../tools/virt-make-fs.pl:144
34433 msgid "Add an MBR partition:"
34438 #: ../tools/virt-make-fs.pl:146
34441 " virt-make-fs --partition -- input disk.img\n"
34447 #: ../tools/virt-make-fs.pl:148
34449 "If the output disk image could be terabyte-sized or larger, it's better to "
34450 "use an EFI/GPT-compatible partition table:"
34455 #: ../tools/virt-make-fs.pl:151
34458 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
34464 #: ../tools/virt-make-fs.pl:179
34465 msgid "Enable debugging information."
34470 #: ../tools/virt-make-fs.pl:185
34471 msgid "B<--size=E<lt>NE<gt>>"
34476 #: ../tools/virt-make-fs.pl:187
34477 msgid "B<--size=+E<lt>NE<gt>>"
34482 #: ../tools/virt-make-fs.pl:189
34483 msgid "B<-s E<lt>NE<gt>>"
34488 #: ../tools/virt-make-fs.pl:191
34489 msgid "B<-s +E<lt>NE<gt>>"
34493 #: ../tools/virt-make-fs.pl:193
34495 "Use the I<--size> (or I<-s>) option to choose the size of the output image."
34500 #: ../tools/virt-make-fs.pl:196
34502 "If this option is I<not> given, then the output image will be just large "
34503 "enough to contain all the files, with not much wasted space."
34508 #: ../tools/virt-make-fs.pl:199
34510 "To choose a fixed size output disk, specify an absolute number followed by b/"
34511 "K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
34512 "Petabytes or Exabytes. This must be large enough to contain all the input "
34513 "files, else you will get an error."
34517 #: ../tools/virt-make-fs.pl:204
34519 "To leave extra space, specify C<+> (plus sign) and a number followed by b/K/"
34520 "M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
34521 "Petabytes or Exabytes. For example: I<--size=+200M> means enough space for "
34522 "the input files, and (approximately) an extra 200 MB free space."
34527 #: ../tools/virt-make-fs.pl:210
34529 "Note that virt-make-fs estimates free space, and therefore will not produce "
34530 "filesystems containing precisely the free space requested. (It is much more "
34531 "expensive and time-consuming to produce a filesystem which has precisely the "
34532 "desired free space)."
34537 #: ../tools/virt-make-fs.pl:219
34538 msgid "B<--format=E<lt>fmtE<gt>>"
34543 #: ../tools/virt-make-fs.pl:221
34544 msgid "B<-F E<lt>fmtE<gt>>"
34549 #: ../tools/virt-make-fs.pl:223
34550 msgid "Choose the output disk image format."
34555 #: ../tools/virt-make-fs.pl:225
34556 msgid "The default is C<raw> (raw disk image)."
34561 #: ../tools/virt-make-fs.pl:227
34563 "For other choices, see the L<qemu-img(1)> manpage. The only other choice "
34564 "that would really make sense here is C<qcow2>."
34569 #: ../tools/virt-make-fs.pl:234
34570 msgid "B<--type=E<lt>fsE<gt>>"
34575 #: ../tools/virt-make-fs.pl:236
34576 msgid "B<-t E<lt>fsE<gt>>"
34581 #: ../tools/virt-make-fs.pl:238
34582 msgid "Choose the output filesystem type."
34587 #: ../tools/virt-make-fs.pl:240
34588 msgid "The default is C<ext2>."
34593 #: ../tools/virt-make-fs.pl:242
34595 "Any filesystem which is supported read-write by libguestfs can be used here."
34600 #: ../tools/virt-make-fs.pl:249
34601 msgid "B<--partition>"
34606 #: ../tools/virt-make-fs.pl:251
34607 msgid "B<--partition=E<lt>parttypeE<gt>>"
34612 #: ../tools/virt-make-fs.pl:253
34614 "If specified, this flag adds an MBR partition table to the output disk image."
34618 #: ../tools/virt-make-fs.pl:256
34620 "You can change the partition table type, eg. I<--partition=gpt> for large "
34625 #: ../tools/virt-make-fs.pl:259
34627 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
34628 "might consider the next parameter to be the partition type. For example:"
34633 #: ../tools/virt-make-fs.pl:263
34636 " virt-make-fs --partition input.tar ...\n"
34641 #: ../tools/virt-make-fs.pl:265
34643 "would cause virt-make-fs to think you wanted to use a partition type of "
34644 "C<input.tar> which is completely wrong. To avoid this, use I<--> (a double "
34645 "dash) between options and the input file argument:"
34650 #: ../tools/virt-make-fs.pl:269
34653 " virt-make-fs --partition -- input.tar ...\n"
34658 #: ../tools/virt-make-fs.pl:541
34660 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
34661 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
34662 "(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
34667 #: ../tools/virt-make-fs.pl:558
34670 " export LIBGUESTFS_DEBUG=1\n"
34671 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
34677 #: ../tools/virt-make-fs.pl:561
34679 "Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
34685 #: ../tools/virt-list-partitions.pl:32
34687 "virt-list-partitions - List partitions in a virtual machine or disk image"
34692 #: ../tools/virt-list-partitions.pl:36
34695 " virt-list-partitions [--options] domname\n"
34701 #: ../tools/virt-list-partitions.pl:38
34704 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
34710 #: ../tools/virt-list-partitions.pl:45
34712 "C<virt-list-partitions> is a command line tool to list the partitions that "
34713 "are contained in a virtual machine or disk image. It is mainly useful as a "
34714 "first step to using L<virt-resize(1)>."
34719 #: ../tools/virt-list-partitions.pl:50
34721 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
34722 "functionality. For more complex cases you should look at the L<guestfish(1)"
34728 #: ../tools/virt-list-partitions.pl:107
34729 msgid "B<-h> | B<--human-readable>"
34734 #: ../tools/virt-list-partitions.pl:109
34735 msgid "Show sizes in human-readable form (eg. \"1G\")."
34740 #: ../tools/virt-list-partitions.pl:117
34742 "With this option, C<virt-list-partitions> displays the type and size of each "
34743 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
34748 #: ../tools/virt-list-partitions.pl:124
34749 msgid "B<-t> | B<--total>"
34754 #: ../tools/virt-list-partitions.pl:126
34756 "Display the total size of each block device (as a separate row or rows)."
34761 #: ../tools/virt-list-partitions.pl:259
34763 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
34764 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib"
34765 "(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
34770 #: ../tools/virt-list-partitions.pl:275
34771 msgid "Copyright (C) 2009-2010 Red Hat Inc."