023e8006e0cbac0198d5e69f3b5df2aea2fdc05c
[libguestfs.git] / po-docs / libguestfs-docs.pot
1 # SOME DESCRIPTIVE TITLE
2 # Copyright (C) YEAR Red Hat Inc.
3 # This file is distributed under the same license as the libguestfs package.
4 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5 #
6 #, fuzzy
7 msgid ""
8 msgstr ""
9 "Project-Id-Version: libguestfs 1.11.7\n"
10 "Report-Msgid-Bugs-To: libguestfs@redhat.com\n"
11 "POT-Creation-Date: 2011-05-17 17:29+0200\n"
12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 "Language-Team: LANGUAGE <LL@li.org>\n"
15 "Language: \n"
16 "MIME-Version: 1.0\n"
17 "Content-Type: text/plain; charset=UTF-8\n"
18 "Content-Transfer-Encoding: 8bit\n"
19
20 #. type: =head1
21 #: ../src/guestfs.pod:3 ../fish/guestfish.pod:3 ../test-tool/libguestfs-test-tool.pod:3 ../fuse/guestmount.pod:3 ../tools/virt-win-reg.pl:35 ../tools/virt-list-filesystems.pl:30 ../tools/virt-tar.pl:31 ../tools/virt-make-fs.pl:35 ../tools/virt-list-partitions.pl:30
22 msgid "NAME"
23 msgstr ""
24
25 #. type: textblock
26 #: ../src/guestfs.pod:5
27 msgid "guestfs - Library for accessing and modifying virtual machine images"
28 msgstr ""
29
30 #. type: =head1
31 #: ../src/guestfs.pod:7 ../fish/guestfish.pod:7 ../test-tool/libguestfs-test-tool.pod:7 ../fuse/guestmount.pod:7 ../tools/virt-win-reg.pl:39 ../tools/virt-list-filesystems.pl:34 ../tools/virt-tar.pl:35 ../tools/virt-make-fs.pl:39 ../tools/virt-list-partitions.pl:34
32 msgid "SYNOPSIS"
33 msgstr ""
34
35 #. type: verbatim
36 #: ../src/guestfs.pod:9
37 #, no-wrap
38 msgid ""
39 " #include <guestfs.h>\n"
40 " \n"
41 msgstr ""
42
43 #. type: verbatim
44 #: ../src/guestfs.pod:11
45 #, no-wrap
46 msgid ""
47 " guestfs_h *g = guestfs_create ();\n"
48 " guestfs_add_drive (g, \"guest.img\");\n"
49 " guestfs_launch (g);\n"
50 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
51 " guestfs_touch (g, \"/hello\");\n"
52 " guestfs_umount (g, \"/\");\n"
53 " guestfs_close (g);\n"
54 "\n"
55 msgstr ""
56
57 #. type: verbatim
58 #: ../src/guestfs.pod:19
59 #, no-wrap
60 msgid ""
61 " cc prog.c -o prog -lguestfs\n"
62 "or:\n"
63 " cc prog.c -o prog `pkg-config libguestfs --cflags --libs`\n"
64 "\n"
65 msgstr ""
66
67 #. type: =head1
68 #: ../src/guestfs.pod:23 ../fish/guestfish.pod:30 ../test-tool/libguestfs-test-tool.pod:11 ../fuse/guestmount.pod:20 ../tools/virt-win-reg.pl:63 ../tools/virt-list-filesystems.pl:40 ../tools/virt-tar.pl:77 ../tools/virt-make-fs.pl:47 ../tools/virt-list-partitions.pl:40
69 msgid "DESCRIPTION"
70 msgstr ""
71
72 #. type: textblock
73 #: ../src/guestfs.pod:25
74 msgid ""
75 "Libguestfs is a library for accessing and modifying guest disk images.  "
76 "Amongst the things this is good for: making batch configuration changes to "
77 "guests, getting disk used/free statistics (see also: virt-df), migrating "
78 "between virtualization systems (see also: virt-p2v), performing partial "
79 "backups, performing partial guest clones, cloning guests and changing "
80 "registry/UUID/hostname info, and much else besides."
81 msgstr ""
82
83 #. type: textblock
84 #: ../src/guestfs.pod:33
85 msgid ""
86 "Libguestfs uses Linux kernel and qemu code, and can access any type of guest "
87 "filesystem that Linux and qemu can, including but not limited to: ext2/3/4, "
88 "btrfs, FAT and NTFS, LVM, many different disk partition schemes, qcow, "
89 "qcow2, vmdk."
90 msgstr ""
91
92 #. type: textblock
93 #: ../src/guestfs.pod:38
94 msgid ""
95 "Libguestfs provides ways to enumerate guest storage (eg. partitions, LVs, "
96 "what filesystem is in each LV, etc.).  It can also run commands in the "
97 "context of the guest.  Also you can access filesystems over FUSE."
98 msgstr ""
99
100 #. type: textblock
101 #: ../src/guestfs.pod:43
102 msgid ""
103 "Libguestfs is a library that can be linked with C and C++ management "
104 "programs (or management programs written in OCaml, Perl, Python, Ruby, Java, "
105 "PHP, Haskell or C#).  You can also use it from shell scripts or the command "
106 "line."
107 msgstr ""
108
109 #. type: textblock
110 #: ../src/guestfs.pod:48
111 msgid ""
112 "You don't need to be root to use libguestfs, although obviously you do need "
113 "enough permissions to access the disk images."
114 msgstr ""
115
116 #. type: textblock
117 #: ../src/guestfs.pod:51
118 msgid ""
119 "Libguestfs is a large API because it can do many things.  For a gentle "
120 "introduction, please read the L</API OVERVIEW> section next."
121 msgstr ""
122
123 #. type: textblock
124 #: ../src/guestfs.pod:54
125 msgid ""
126 "There are also some example programs in the L<guestfs-examples(3)> manual "
127 "page."
128 msgstr ""
129
130 #. type: =head1
131 #: ../src/guestfs.pod:57
132 msgid "API OVERVIEW"
133 msgstr ""
134
135 #. type: textblock
136 #: ../src/guestfs.pod:59
137 msgid ""
138 "This section provides a gentler overview of the libguestfs API.  We also try "
139 "to group API calls together, where that may not be obvious from reading "
140 "about the individual calls in the main section of this manual."
141 msgstr ""
142
143 #. type: =head2
144 #: ../src/guestfs.pod:64
145 msgid "HANDLES"
146 msgstr ""
147
148 #. type: textblock
149 #: ../src/guestfs.pod:66
150 msgid ""
151 "Before you can use libguestfs calls, you have to create a handle.  Then you "
152 "must add at least one disk image to the handle, followed by launching the "
153 "handle, then performing whatever operations you want, and finally closing "
154 "the handle.  By convention we use the single letter C<g> for the name of the "
155 "handle variable, although of course you can use any name you want."
156 msgstr ""
157
158 #. type: textblock
159 #: ../src/guestfs.pod:73
160 msgid "The general structure of all libguestfs-using programs looks like this:"
161 msgstr ""
162
163 #. type: verbatim
164 #: ../src/guestfs.pod:76
165 #, no-wrap
166 msgid ""
167 " guestfs_h *g = guestfs_create ();\n"
168 " \n"
169 msgstr ""
170
171 #. type: verbatim
172 #: ../src/guestfs.pod:78
173 #, no-wrap
174 msgid ""
175 " /* Call guestfs_add_drive additional times if there are\n"
176 "  * multiple disk images.\n"
177 "  */\n"
178 " guestfs_add_drive (g, \"guest.img\");\n"
179 " \n"
180 msgstr ""
181
182 #. type: verbatim
183 #: ../src/guestfs.pod:83
184 #, no-wrap
185 msgid ""
186 " /* Most manipulation calls won't work until you've launched\n"
187 "  * the handle 'g'.  You have to do this _after_ adding drives\n"
188 "  * and _before_ other commands.\n"
189 "  */\n"
190 " guestfs_launch (g);\n"
191 " \n"
192 msgstr ""
193
194 #. type: verbatim
195 #: ../src/guestfs.pod:89
196 #, no-wrap
197 msgid ""
198 " /* Now you can examine what partitions, LVs etc are available.\n"
199 "  */\n"
200 " char **partitions = guestfs_list_partitions (g);\n"
201 " char **logvols = guestfs_lvs (g);\n"
202 " \n"
203 msgstr ""
204
205 #. type: verbatim
206 #: ../src/guestfs.pod:94
207 #, no-wrap
208 msgid ""
209 " /* To access a filesystem in the image, you must mount it.\n"
210 "  */\n"
211 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
212 " \n"
213 msgstr ""
214
215 #. type: verbatim
216 #: ../src/guestfs.pod:98
217 #, no-wrap
218 msgid ""
219 " /* Now you can perform filesystem actions on the guest\n"
220 "  * disk image.\n"
221 "  */\n"
222 " guestfs_touch (g, \"/hello\");\n"
223 " \n"
224 msgstr ""
225
226 #. type: verbatim
227 #: ../src/guestfs.pod:103
228 #, no-wrap
229 msgid ""
230 " /* This is only needed for libguestfs < 1.5.24.  Since then\n"
231 "  * it is done automatically when you close the handle.  See\n"
232 "  * discussion of autosync in this page.\n"
233 "  */\n"
234 " guestfs_sync (g);\n"
235 " \n"
236 msgstr ""
237
238 #. type: verbatim
239 #: ../src/guestfs.pod:109
240 #, no-wrap
241 msgid ""
242 " /* Close the handle 'g'. */\n"
243 " guestfs_close (g);\n"
244 "\n"
245 msgstr ""
246
247 #. type: textblock
248 #: ../src/guestfs.pod:112
249 msgid ""
250 "The code above doesn't include any error checking.  In real code you should "
251 "check return values carefully for errors.  In general all functions that "
252 "return integers return C<-1> on error, and all functions that return "
253 "pointers return C<NULL> on error.  See section L</ERROR HANDLING> below for "
254 "how to handle errors, and consult the documentation for each function call "
255 "below to see precisely how they return error indications.  See "
256 "L<guestfs-examples(3)> for fully worked examples."
257 msgstr ""
258
259 #. type: =head2
260 #: ../src/guestfs.pod:121
261 msgid "DISK IMAGES"
262 msgstr ""
263
264 #. type: textblock
265 #: ../src/guestfs.pod:123
266 msgid ""
267 "The image filename (C<\"guest.img\"> in the example above) could be a disk "
268 "image from a virtual machine, a L<dd(1)> copy of a physical hard disk, an "
269 "actual block device, or simply an empty file of zeroes that you have created "
270 "through L<posix_fallocate(3)>.  Libguestfs lets you do useful things to all "
271 "of these."
272 msgstr ""
273
274 #. type: textblock
275 #: ../src/guestfs.pod:129
276 msgid ""
277 "The call you should use in modern code for adding drives is "
278 "L</guestfs_add_drive_opts>.  To add a disk image, allowing writes, and "
279 "specifying that the format is raw, do:"
280 msgstr ""
281
282 #. type: verbatim
283 #: ../src/guestfs.pod:133
284 #, no-wrap
285 msgid ""
286 " guestfs_add_drive_opts (g, filename,\n"
287 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
288 "                         -1);\n"
289 "\n"
290 msgstr ""
291
292 #. type: textblock
293 #: ../src/guestfs.pod:137
294 msgid "You can add a disk read-only using:"
295 msgstr ""
296
297 #. type: verbatim
298 #: ../src/guestfs.pod:139
299 #, no-wrap
300 msgid ""
301 " guestfs_add_drive_opts (g, filename,\n"
302 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
303 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
304 "                         -1);\n"
305 "\n"
306 msgstr ""
307
308 #. type: textblock
309 #: ../src/guestfs.pod:144
310 msgid ""
311 "or by calling the older function L</guestfs_add_drive_ro>.  In either case "
312 "libguestfs won't modify the file."
313 msgstr ""
314
315 #. type: textblock
316 #: ../src/guestfs.pod:147
317 msgid ""
318 "Be extremely cautious if the disk image is in use, eg. if it is being used "
319 "by a virtual machine.  Adding it read-write will almost certainly cause disk "
320 "corruption, but adding it read-only is safe."
321 msgstr ""
322
323 #. type: textblock
324 #: ../src/guestfs.pod:151
325 msgid ""
326 "You must add at least one disk image, and you may add multiple disk images.  "
327 "In the API, the disk images are usually referred to as C</dev/sda> (for the "
328 "first one you added), C</dev/sdb> (for the second one you added), etc."
329 msgstr ""
330
331 #. type: textblock
332 #: ../src/guestfs.pod:156
333 msgid ""
334 "Once L</guestfs_launch> has been called you cannot add any more images.  You "
335 "can call L</guestfs_list_devices> to get a list of the device names, in the "
336 "order that you added them.  See also L</BLOCK DEVICE NAMING> below."
337 msgstr ""
338
339 #. type: =head2
340 #: ../src/guestfs.pod:161
341 msgid "MOUNTING"
342 msgstr ""
343
344 #. type: textblock
345 #: ../src/guestfs.pod:163
346 msgid ""
347 "Before you can read or write files, create directories and so on in a disk "
348 "image that contains filesystems, you have to mount those filesystems using "
349 "L</guestfs_mount_options> or L</guestfs_mount_ro>.  If you already know that "
350 "a disk image contains (for example) one partition with a filesystem on that "
351 "partition, then you can mount it directly:"
352 msgstr ""
353
354 #. type: verbatim
355 #: ../src/guestfs.pod:170
356 #, no-wrap
357 msgid ""
358 " guestfs_mount_options (g, \"\", \"/dev/sda1\", \"/\");\n"
359 "\n"
360 msgstr ""
361
362 #. type: textblock
363 #: ../src/guestfs.pod:172
364 msgid ""
365 "where C</dev/sda1> means literally the first partition (C<1>) of the first "
366 "disk image that we added (C</dev/sda>).  If the disk contains Linux LVM2 "
367 "logical volumes you could refer to those instead (eg. C</dev/VG/LV>).  Note "
368 "that these are libguestfs virtual devices, and are nothing to do with host "
369 "devices."
370 msgstr ""
371
372 #. type: textblock
373 #: ../src/guestfs.pod:178
374 msgid ""
375 "If you are given a disk image and you don't know what it contains then you "
376 "have to find out.  Libguestfs can do that too: use "
377 "L</guestfs_list_partitions> and L</guestfs_lvs> to list possible partitions "
378 "and LVs, and either try mounting each to see what is mountable, or else "
379 "examine them with L</guestfs_vfs_type> or L</guestfs_file>.  To list just "
380 "filesystems, use L</guestfs_list_filesystems>."
381 msgstr ""
382
383 #. type: textblock
384 #: ../src/guestfs.pod:186
385 msgid ""
386 "Libguestfs also has a set of APIs for inspection of unknown disk images (see "
387 "L</INSPECTION> below).  But you might find it easier to look at higher level "
388 "programs built on top of libguestfs, in particular L<virt-inspector(1)>."
389 msgstr ""
390
391 #. type: textblock
392 #: ../src/guestfs.pod:191
393 msgid ""
394 "To mount a filesystem read-only, use L</guestfs_mount_ro>.  There are "
395 "several other variations of the C<guestfs_mount_*> call."
396 msgstr ""
397
398 #. type: =head2
399 #: ../src/guestfs.pod:194
400 msgid "FILESYSTEM ACCESS AND MODIFICATION"
401 msgstr ""
402
403 #. type: textblock
404 #: ../src/guestfs.pod:196
405 msgid ""
406 "The majority of the libguestfs API consists of fairly low-level calls for "
407 "accessing and modifying the files, directories, symlinks etc on mounted "
408 "filesystems.  There are over a hundred such calls which you can find listed "
409 "in detail below in this man page, and we don't even pretend to cover them "
410 "all in this overview."
411 msgstr ""
412
413 #. type: textblock
414 #: ../src/guestfs.pod:202
415 msgid ""
416 "Specify filenames as full paths, starting with C<\"/\"> and including the "
417 "mount point."
418 msgstr ""
419
420 #. type: textblock
421 #: ../src/guestfs.pod:205
422 msgid ""
423 "For example, if you mounted a filesystem at C<\"/\"> and you want to read "
424 "the file called C<\"etc/passwd\"> then you could do:"
425 msgstr ""
426
427 #. type: verbatim
428 #: ../src/guestfs.pod:208
429 #, no-wrap
430 msgid ""
431 " char *data = guestfs_cat (g, \"/etc/passwd\");\n"
432 "\n"
433 msgstr ""
434
435 #. type: textblock
436 #: ../src/guestfs.pod:210
437 msgid ""
438 "This would return C<data> as a newly allocated buffer containing the full "
439 "content of that file (with some conditions: see also L</DOWNLOADING> below), "
440 "or C<NULL> if there was an error."
441 msgstr ""
442
443 #. type: textblock
444 #: ../src/guestfs.pod:214
445 msgid ""
446 "As another example, to create a top-level directory on that filesystem "
447 "called C<\"var\"> you would do:"
448 msgstr ""
449
450 #. type: verbatim
451 #: ../src/guestfs.pod:217
452 #, no-wrap
453 msgid ""
454 " guestfs_mkdir (g, \"/var\");\n"
455 "\n"
456 msgstr ""
457
458 #. type: textblock
459 #: ../src/guestfs.pod:219
460 msgid "To create a symlink you could do:"
461 msgstr ""
462
463 #. type: verbatim
464 #: ../src/guestfs.pod:221
465 #, no-wrap
466 msgid ""
467 " guestfs_ln_s (g, \"/etc/init.d/portmap\",\n"
468 "               \"/etc/rc3.d/S30portmap\");\n"
469 "\n"
470 msgstr ""
471
472 #. type: textblock
473 #: ../src/guestfs.pod:224
474 msgid ""
475 "Libguestfs will reject attempts to use relative paths and there is no "
476 "concept of a current working directory."
477 msgstr ""
478
479 #. type: textblock
480 #: ../src/guestfs.pod:227
481 msgid ""
482 "Libguestfs can return errors in many situations: for example if the "
483 "filesystem isn't writable, or if a file or directory that you requested "
484 "doesn't exist.  If you are using the C API (documented here)  you have to "
485 "check for those error conditions after each call.  (Other language bindings "
486 "turn these errors into exceptions)."
487 msgstr ""
488
489 #. type: textblock
490 #: ../src/guestfs.pod:233
491 msgid ""
492 "File writes are affected by the per-handle umask, set by calling "
493 "L</guestfs_umask> and defaulting to 022.  See L</UMASK>."
494 msgstr ""
495
496 #. type: =head2
497 #: ../src/guestfs.pod:236
498 msgid "PARTITIONING"
499 msgstr ""
500
501 #. type: textblock
502 #: ../src/guestfs.pod:238
503 msgid ""
504 "Libguestfs contains API calls to read, create and modify partition tables on "
505 "disk images."
506 msgstr ""
507
508 #. type: textblock
509 #: ../src/guestfs.pod:241
510 msgid ""
511 "In the common case where you want to create a single partition covering the "
512 "whole disk, you should use the L</guestfs_part_disk> call:"
513 msgstr ""
514
515 #. type: verbatim
516 #: ../src/guestfs.pod:245
517 #, no-wrap
518 msgid ""
519 " const char *parttype = \"mbr\";\n"
520 " if (disk_is_larger_than_2TB)\n"
521 "   parttype = \"gpt\";\n"
522 " guestfs_part_disk (g, \"/dev/sda\", parttype);\n"
523 "\n"
524 msgstr ""
525
526 #. type: textblock
527 #: ../src/guestfs.pod:250
528 msgid ""
529 "Obviously this effectively wipes anything that was on that disk image "
530 "before."
531 msgstr ""
532
533 #. type: =head2
534 #: ../src/guestfs.pod:253
535 msgid "LVM2"
536 msgstr ""
537
538 #. type: textblock
539 #: ../src/guestfs.pod:255
540 msgid ""
541 "Libguestfs provides access to a large part of the LVM2 API, such as "
542 "L</guestfs_lvcreate> and L</guestfs_vgremove>.  It won't make much sense "
543 "unless you familiarize yourself with the concepts of physical volumes, "
544 "volume groups and logical volumes."
545 msgstr ""
546
547 #. type: textblock
548 #: ../src/guestfs.pod:260
549 msgid ""
550 "This author strongly recommends reading the LVM HOWTO, online at "
551 "L<http://tldp.org/HOWTO/LVM-HOWTO/>."
552 msgstr ""
553
554 #. type: =head2
555 #: ../src/guestfs.pod:263
556 msgid "DOWNLOADING"
557 msgstr ""
558
559 #. type: textblock
560 #: ../src/guestfs.pod:265
561 msgid ""
562 "Use L</guestfs_cat> to download small, text only files.  This call is "
563 "limited to files which are less than 2 MB and which cannot contain any ASCII "
564 "NUL (C<\\0>) characters.  However the API is very simple to use."
565 msgstr ""
566
567 #. type: textblock
568 #: ../src/guestfs.pod:269
569 msgid ""
570 "L</guestfs_read_file> can be used to read files which contain arbitrary 8 "
571 "bit data, since it returns a (pointer, size) pair.  However it is still "
572 "limited to \"small\" files, less than 2 MB."
573 msgstr ""
574
575 #. type: textblock
576 #: ../src/guestfs.pod:273
577 msgid ""
578 "L</guestfs_download> can be used to download any file, with no limits on "
579 "content or size (even files larger than 4 GB)."
580 msgstr ""
581
582 #. type: textblock
583 #: ../src/guestfs.pod:276
584 msgid "To download multiple files, see L</guestfs_tar_out> and L</guestfs_tgz_out>."
585 msgstr ""
586
587 #. type: =head2
588 #: ../src/guestfs.pod:279
589 msgid "UPLOADING"
590 msgstr ""
591
592 #. type: textblock
593 #: ../src/guestfs.pod:281
594 msgid ""
595 "It's often the case that you want to write a file or files to the disk "
596 "image."
597 msgstr ""
598
599 #. type: textblock
600 #: ../src/guestfs.pod:284
601 msgid ""
602 "To write a small file with fixed content, use L</guestfs_write>.  To create "
603 "a file of all zeroes, use L</guestfs_truncate_size> (sparse) or "
604 "L</guestfs_fallocate64> (with all disk blocks allocated).  There are a "
605 "variety of other functions for creating test files, for example "
606 "L</guestfs_fill> and L</guestfs_fill_pattern>."
607 msgstr ""
608
609 #. type: textblock
610 #: ../src/guestfs.pod:290
611 msgid ""
612 "To upload a single file, use L</guestfs_upload>.  This call has no limits on "
613 "file content or size (even files larger than 4 GB)."
614 msgstr ""
615
616 #. type: textblock
617 #: ../src/guestfs.pod:293
618 msgid "To upload multiple files, see L</guestfs_tar_in> and L</guestfs_tgz_in>."
619 msgstr ""
620
621 #. type: textblock
622 #: ../src/guestfs.pod:295
623 msgid ""
624 "However the fastest way to upload I<large numbers of arbitrary files> is to "
625 "turn them into a squashfs or CD ISO (see L<mksquashfs(8)> and "
626 "L<mkisofs(8)>), then attach this using L</guestfs_add_drive_ro>.  If you add "
627 "the drive in a predictable way (eg. adding it last after all other drives) "
628 "then you can get the device name from L</guestfs_list_devices> and mount it "
629 "directly using L</guestfs_mount_ro>.  Note that squashfs images are "
630 "sometimes non-portable between kernel versions, and they don't support "
631 "labels or UUIDs.  If you want to pre-build an image or you need to mount it "
632 "using a label or UUID, use an ISO image instead."
633 msgstr ""
634
635 #. type: =head2
636 #: ../src/guestfs.pod:306
637 msgid "COPYING"
638 msgstr ""
639
640 #. type: textblock
641 #: ../src/guestfs.pod:308
642 msgid ""
643 "There are various different commands for copying between files and devices "
644 "and in and out of the guest filesystem.  These are summarised in the table "
645 "below."
646 msgstr ""
647
648 #. type: =item
649 #: ../src/guestfs.pod:314
650 msgid "B<file> to B<file>"
651 msgstr ""
652
653 #. type: textblock
654 #: ../src/guestfs.pod:316
655 msgid ""
656 "Use L</guestfs_cp> to copy a single file, or L</guestfs_cp_a> to copy "
657 "directories recursively."
658 msgstr ""
659
660 #. type: =item
661 #: ../src/guestfs.pod:319
662 msgid "B<file or device> to B<file or device>"
663 msgstr ""
664
665 #. type: textblock
666 #: ../src/guestfs.pod:321
667 msgid ""
668 "Use L</guestfs_dd> which efficiently uses L<dd(1)> to copy between files and "
669 "devices in the guest."
670 msgstr ""
671
672 #. type: textblock
673 #: ../src/guestfs.pod:324
674 msgid "Example: duplicate the contents of an LV:"
675 msgstr ""
676
677 #. type: verbatim
678 #: ../src/guestfs.pod:326
679 #, no-wrap
680 msgid ""
681 " guestfs_dd (g, \"/dev/VG/Original\", \"/dev/VG/Copy\");\n"
682 "\n"
683 msgstr ""
684
685 #. type: textblock
686 #: ../src/guestfs.pod:328
687 msgid ""
688 "The destination (C</dev/VG/Copy>) must be at least as large as the source "
689 "(C</dev/VG/Original>).  To copy less than the whole source device, use "
690 "L</guestfs_copy_size>."
691 msgstr ""
692
693 #. type: =item
694 #: ../src/guestfs.pod:332
695 msgid "B<file on the host> to B<file or device>"
696 msgstr ""
697
698 #. type: textblock
699 #: ../src/guestfs.pod:334
700 msgid "Use L</guestfs_upload>.  See L</UPLOADING> above."
701 msgstr ""
702
703 #. type: =item
704 #: ../src/guestfs.pod:336
705 msgid "B<file or device> to B<file on the host>"
706 msgstr ""
707
708 #. type: textblock
709 #: ../src/guestfs.pod:338
710 msgid "Use L</guestfs_download>.  See L</DOWNLOADING> above."
711 msgstr ""
712
713 #. type: =head2
714 #: ../src/guestfs.pod:342
715 msgid "UPLOADING AND DOWNLOADING TO PIPES AND FILE DESCRIPTORS"
716 msgstr ""
717
718 #. type: textblock
719 #: ../src/guestfs.pod:344
720 msgid ""
721 "Calls like L</guestfs_upload>, L</guestfs_download>, L</guestfs_tar_in>, "
722 "L</guestfs_tar_out> etc appear to only take filenames as arguments, so it "
723 "appears you can only upload and download to files.  However many Un*x-like "
724 "hosts let you use the special device files C</dev/stdin>, C</dev/stdout>, "
725 "C</dev/stderr> and C</dev/fd/N> to read and write from stdin, stdout, "
726 "stderr, and arbitrary file descriptor N."
727 msgstr ""
728
729 #. type: textblock
730 #: ../src/guestfs.pod:352
731 msgid "For example, L<virt-cat(1)> writes its output to stdout by doing:"
732 msgstr ""
733
734 #. type: verbatim
735 #: ../src/guestfs.pod:355
736 #, no-wrap
737 msgid ""
738 " guestfs_download (g, filename, \"/dev/stdout\");\n"
739 "\n"
740 msgstr ""
741
742 #. type: textblock
743 #: ../src/guestfs.pod:357
744 msgid "and you can write tar output to a file descriptor C<fd> by doing:"
745 msgstr ""
746
747 #. type: verbatim
748 #: ../src/guestfs.pod:359
749 #, no-wrap
750 msgid ""
751 " char devfd[64];\n"
752 " snprintf (devfd, sizeof devfd, \"/dev/fd/%d\", fd);\n"
753 " guestfs_tar_out (g, \"/\", devfd);\n"
754 "\n"
755 msgstr ""
756
757 #. type: =head2
758 #: ../src/guestfs.pod:363
759 msgid "LISTING FILES"
760 msgstr ""
761
762 #. type: textblock
763 #: ../src/guestfs.pod:365
764 msgid ""
765 "L</guestfs_ll> is just designed for humans to read (mainly when using the "
766 "L<guestfish(1)>-equivalent command C<ll>)."
767 msgstr ""
768
769 #. type: textblock
770 #: ../src/guestfs.pod:368
771 msgid ""
772 "L</guestfs_ls> is a quick way to get a list of files in a directory from "
773 "programs, as a flat list of strings."
774 msgstr ""
775
776 #. type: textblock
777 #: ../src/guestfs.pod:371
778 msgid ""
779 "L</guestfs_readdir> is a programmatic way to get a list of files in a "
780 "directory, plus additional information about each one.  It is more "
781 "equivalent to using the L<readdir(3)> call on a local filesystem."
782 msgstr ""
783
784 #. type: textblock
785 #: ../src/guestfs.pod:375
786 msgid ""
787 "L</guestfs_find> and L</guestfs_find0> can be used to recursively list "
788 "files."
789 msgstr ""
790
791 #. type: =head2
792 #: ../src/guestfs.pod:378
793 msgid "RUNNING COMMANDS"
794 msgstr ""
795
796 #. type: textblock
797 #: ../src/guestfs.pod:380
798 msgid ""
799 "Although libguestfs is primarily an API for manipulating files inside guest "
800 "images, we also provide some limited facilities for running commands inside "
801 "guests."
802 msgstr ""
803
804 #. type: textblock
805 #: ../src/guestfs.pod:384
806 msgid "There are many limitations to this:"
807 msgstr ""
808
809 #. type: =item
810 #: ../src/guestfs.pod:388 ../src/guestfs.pod:393 ../src/guestfs.pod:398 ../src/guestfs.pod:402 ../src/guestfs.pod:407 ../src/guestfs.pod:411 ../src/guestfs.pod:416 ../src/guestfs.pod:421 ../src/guestfs.pod:1064 ../src/guestfs.pod:1068 ../src/guestfs.pod:1072 ../src/guestfs.pod:1077 ../src/guestfs.pod:1085 ../src/guestfs.pod:1104 ../src/guestfs.pod:1112 ../src/guestfs.pod:1134 ../src/guestfs.pod:1138 ../src/guestfs.pod:1142 ../src/guestfs.pod:1146 ../src/guestfs.pod:1150 ../src/guestfs.pod:1154 ../src/guestfs.pod:1643 ../src/guestfs.pod:1648 ../src/guestfs.pod:1652 ../src/guestfs.pod:1754 ../src/guestfs.pod:1759 ../src/guestfs.pod:1763 ../src/guestfs.pod:1773 ../src/guestfs.pod:2008 ../src/guestfs.pod:2013 ../src/guestfs.pod:2019 ../src/guestfs.pod:2027 ../src/guestfs.pod:2381 ../src/guestfs.pod:2387 ../src/guestfs.pod:2392 ../src/guestfs.pod:2398 ../src/guestfs.pod:2967 ../src/guestfs.pod:2971 ../src/guestfs.pod:2975 ../src/guestfs.pod:2979 ../src/guestfs-actions.pod:15 ../src/guestfs-actions.pod:22 ../src/guestfs-actions.pod:583 ../src/guestfs-actions.pod:591 ../src/guestfs-actions.pod:598 ../src/guestfs-actions.pod:605 ../src/guestfs-actions.pod:1606 ../src/guestfs-actions.pod:1610 ../src/guestfs-actions.pod:1614 ../src/guestfs-actions.pod:1618 ../src/guestfs-actions.pod:1626 ../src/guestfs-actions.pod:1630 ../src/guestfs-actions.pod:1634 ../src/guestfs-actions.pod:1644 ../src/guestfs-actions.pod:1648 ../src/guestfs-actions.pod:1652 ../src/guestfs-actions.pod:1790 ../src/guestfs-actions.pod:1794 ../src/guestfs-actions.pod:1799 ../src/guestfs-actions.pod:1804 ../src/guestfs-actions.pod:1865 ../src/guestfs-actions.pod:1869 ../src/guestfs-actions.pod:1874 ../fish/guestfish.pod:445 ../fish/guestfish.pod:449 ../fish/guestfish.pod:453 ../fish/guestfish.pod:457 ../fish/guestfish-actions.pod:13 ../fish/guestfish-actions.pod:20 ../fish/guestfish-actions.pod:385 ../fish/guestfish-actions.pod:393 ../fish/guestfish-actions.pod:400 ../fish/guestfish-actions.pod:407 ../fish/guestfish-actions.pod:1077 ../fish/guestfish-actions.pod:1081 ../fish/guestfish-actions.pod:1085 ../fish/guestfish-actions.pod:1089 ../fish/guestfish-actions.pod:1097 ../fish/guestfish-actions.pod:1101 ../fish/guestfish-actions.pod:1105 ../fish/guestfish-actions.pod:1115 ../fish/guestfish-actions.pod:1119 ../fish/guestfish-actions.pod:1123 ../fish/guestfish-actions.pod:1213 ../fish/guestfish-actions.pod:1217 ../fish/guestfish-actions.pod:1222 ../fish/guestfish-actions.pod:1227 ../fish/guestfish-actions.pod:1269 ../fish/guestfish-actions.pod:1273 ../fish/guestfish-actions.pod:1278 ../tools/virt-win-reg.pl:195 ../tools/virt-win-reg.pl:200 ../tools/virt-win-reg.pl:206 ../tools/virt-win-reg.pl:707 ../tools/virt-win-reg.pl:713 ../tools/virt-win-reg.pl:719
811 msgid "*"
812 msgstr ""
813
814 #. type: textblock
815 #: ../src/guestfs.pod:390
816 msgid ""
817 "The kernel version that the command runs under will be different from what "
818 "it expects."
819 msgstr ""
820
821 #. type: textblock
822 #: ../src/guestfs.pod:395
823 msgid ""
824 "If the command needs to communicate with daemons, then most likely they "
825 "won't be running."
826 msgstr ""
827
828 #. type: textblock
829 #: ../src/guestfs.pod:400
830 msgid "The command will be running in limited memory."
831 msgstr ""
832
833 #. type: textblock
834 #: ../src/guestfs.pod:404
835 msgid ""
836 "The network may not be available unless you enable it (see "
837 "L</guestfs_set_network>)."
838 msgstr ""
839
840 #. type: textblock
841 #: ../src/guestfs.pod:409
842 msgid "Only supports Linux guests (not Windows, BSD, etc)."
843 msgstr ""
844
845 #. type: textblock
846 #: ../src/guestfs.pod:413
847 msgid "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
848 msgstr ""
849
850 #. type: textblock
851 #: ../src/guestfs.pod:418
852 msgid ""
853 "For SELinux guests, you may need to enable SELinux and load policy first.  "
854 "See L</SELINUX> in this manpage."
855 msgstr ""
856
857 #. type: textblock
858 #: ../src/guestfs.pod:423
859 msgid ""
860 "I<Security:> It is not safe to run commands from untrusted, possibly "
861 "malicious guests.  These commands may attempt to exploit your program by "
862 "sending unexpected output.  They could also try to exploit the Linux kernel "
863 "or qemu provided by the libguestfs appliance.  They could use the network "
864 "provided by the libguestfs appliance to bypass ordinary network partitions "
865 "and firewalls.  They could use the elevated privileges or different SELinux "
866 "context of your program to their advantage."
867 msgstr ""
868
869 #. type: textblock
870 #: ../src/guestfs.pod:432
871 msgid ""
872 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
873 "(a script which runs when the guest next boots normally), and to have this "
874 "script run the commands you want in the normal context of the running guest, "
875 "network security and so on.  For information about other security issues, "
876 "see L</SECURITY>."
877 msgstr ""
878
879 #. type: textblock
880 #: ../src/guestfs.pod:440
881 msgid ""
882 "The two main API calls to run commands are L</guestfs_command> and "
883 "L</guestfs_sh> (there are also variations)."
884 msgstr ""
885
886 #. type: textblock
887 #: ../src/guestfs.pod:443
888 msgid ""
889 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
890 "shell globs, redirections, etc will work."
891 msgstr ""
892
893 #. type: =head2
894 #: ../src/guestfs.pod:446
895 msgid "CONFIGURATION FILES"
896 msgstr ""
897
898 #. type: textblock
899 #: ../src/guestfs.pod:448
900 msgid ""
901 "To read and write configuration files in Linux guest filesystems, we "
902 "strongly recommend using Augeas.  For example, Augeas understands how to "
903 "read and write, say, a Linux shadow password file or X.org configuration "
904 "file, and so avoids you having to write that code."
905 msgstr ""
906
907 #. type: textblock
908 #: ../src/guestfs.pod:453
909 msgid ""
910 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't "
911 "document Augeas itself here because there is excellent documentation on the "
912 "L<http://augeas.net/> website."
913 msgstr ""
914
915 #. type: textblock
916 #: ../src/guestfs.pod:457
917 msgid ""
918 "If you don't want to use Augeas (you fool!) then try calling "
919 "L</guestfs_read_lines> to get the file as a list of lines which you can "
920 "iterate over."
921 msgstr ""
922
923 #. type: =head2
924 #: ../src/guestfs.pod:461
925 msgid "SELINUX"
926 msgstr ""
927
928 #. type: textblock
929 #: ../src/guestfs.pod:463
930 msgid ""
931 "We support SELinux guests.  To ensure that labeling happens correctly in "
932 "SELinux guests, you need to enable SELinux and load the guest's policy:"
933 msgstr ""
934
935 #. type: =item
936 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1257 ../src/guestfs.pod:1395 ../src/guestfs.pod:2426
937 msgid "1."
938 msgstr ""
939
940 #. type: textblock
941 #: ../src/guestfs.pod:471
942 msgid "Before launching, do:"
943 msgstr ""
944
945 #. type: verbatim
946 #: ../src/guestfs.pod:473
947 #, no-wrap
948 msgid ""
949 " guestfs_set_selinux (g, 1);\n"
950 "\n"
951 msgstr ""
952
953 #. type: =item
954 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1261 ../src/guestfs.pod:1399 ../src/guestfs.pod:2451
955 msgid "2."
956 msgstr ""
957
958 #. type: textblock
959 #: ../src/guestfs.pod:477
960 msgid ""
961 "After mounting the guest's filesystem(s), load the policy.  This is best "
962 "done by running the L<load_policy(8)> command in the guest itself:"
963 msgstr ""
964
965 #. type: verbatim
966 #: ../src/guestfs.pod:481
967 #, no-wrap
968 msgid ""
969 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
970 "\n"
971 msgstr ""
972
973 #. type: textblock
974 #: ../src/guestfs.pod:483
975 msgid ""
976 "(Older versions of C<load_policy> require you to specify the name of the "
977 "policy file)."
978 msgstr ""
979
980 #. type: =item
981 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1405
982 msgid "3."
983 msgstr ""
984
985 #. type: textblock
986 #: ../src/guestfs.pod:488
987 msgid ""
988 "Optionally, set the security context for the API.  The correct security "
989 "context to use can only be known by inspecting the guest.  As an example:"
990 msgstr ""
991
992 #. type: verbatim
993 #: ../src/guestfs.pod:492
994 #, no-wrap
995 msgid ""
996 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
997 "\n"
998 msgstr ""
999
1000 #. type: textblock
1001 #: ../src/guestfs.pod:496
1002 msgid "This will work for running commands and editing existing files."
1003 msgstr ""
1004
1005 #. type: textblock
1006 #: ../src/guestfs.pod:498
1007 msgid ""
1008 "When new files are created, you may need to label them explicitly, for "
1009 "example by running the external command C<restorecon pathname>."
1010 msgstr ""
1011
1012 #. type: =head2
1013 #: ../src/guestfs.pod:502
1014 msgid "UMASK"
1015 msgstr ""
1016
1017 #. type: textblock
1018 #: ../src/guestfs.pod:504
1019 msgid ""
1020 "Certain calls are affected by the current file mode creation mask (the "
1021 "\"umask\").  In particular ones which create files or directories, such as "
1022 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This affects "
1023 "either the default mode that the file is created with or modifies the mode "
1024 "that you supply."
1025 msgstr ""
1026
1027 #. type: textblock
1028 #: ../src/guestfs.pod:510
1029 msgid ""
1030 "The default umask is C<022>, so files are created with modes such as C<0644> "
1031 "and directories with C<0755>."
1032 msgstr ""
1033
1034 #. type: textblock
1035 #: ../src/guestfs.pod:513
1036 msgid ""
1037 "There are two ways to avoid being affected by umask.  Either set umask to 0 "
1038 "(call C<guestfs_umask (g, 0)> early after launching).  Or call "
1039 "L</guestfs_chmod> after creating each file or directory."
1040 msgstr ""
1041
1042 #. type: textblock
1043 #: ../src/guestfs.pod:517
1044 msgid "For more information about umask, see L<umask(2)>."
1045 msgstr ""
1046
1047 #. type: =head1
1048 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:767
1049 msgid "ENCRYPTED DISKS"
1050 msgstr ""
1051
1052 #. type: textblock
1053 #: ../src/guestfs.pod:521
1054 msgid ""
1055 "Libguestfs allows you to access Linux guests which have been encrypted using "
1056 "whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1057 "standard.  This includes nearly all whole disk encryption systems used by "
1058 "modern Linux guests."
1059 msgstr ""
1060
1061 #. type: textblock
1062 #: ../src/guestfs.pod:527
1063 msgid ""
1064 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1065 "returns the string C<crypto_LUKS>)."
1066 msgstr ""
1067
1068 #. type: textblock
1069 #: ../src/guestfs.pod:530
1070 msgid ""
1071 "Then open these devices by calling L</guestfs_luks_open>.  Obviously you "
1072 "will require the passphrase!"
1073 msgstr ""
1074
1075 #. type: textblock
1076 #: ../src/guestfs.pod:533
1077 msgid ""
1078 "Opening a LUKS device creates a new device mapper device called "
1079 "C</dev/mapper/mapname> (where C<mapname> is the string you supply to "
1080 "L</guestfs_luks_open>).  Reads and writes to this mapper device are "
1081 "decrypted from and encrypted to the underlying block device respectively."
1082 msgstr ""
1083
1084 #. type: textblock
1085 #: ../src/guestfs.pod:539
1086 msgid ""
1087 "LVM volume groups on the device can be made visible by calling "
1088 "L</guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical "
1089 "volume(s) can now be mounted in the usual way."
1090 msgstr ""
1091
1092 #. type: textblock
1093 #: ../src/guestfs.pod:543
1094 msgid ""
1095 "Use the reverse process to close a LUKS device.  Unmount any logical volumes "
1096 "on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1097 "[\"/dev/VG\"])>.  Then close the mapper device by calling "
1098 "L</guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1099 "underlying encrypted block device)."
1100 msgstr ""
1101
1102 #. type: =head2
1103 #: ../src/guestfs.pod:550
1104 msgid "INSPECTION"
1105 msgstr ""
1106
1107 #. type: textblock
1108 #: ../src/guestfs.pod:552
1109 msgid ""
1110 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1111 "contains operating systems, an install CD or a live CD.  (These APIs used to "
1112 "be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since "
1113 "version 1.5.3 the most frequently used part of this library has been "
1114 "rewritten in C and moved into the core code)."
1115 msgstr ""
1116
1117 #. type: textblock
1118 #: ../src/guestfs.pod:559
1119 msgid ""
1120 "Add all disks belonging to the unknown virtual machine and call "
1121 "L</guestfs_launch> in the usual way."
1122 msgstr ""
1123
1124 #. type: textblock
1125 #: ../src/guestfs.pod:562
1126 msgid ""
1127 "Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls "
1128 "and certain heuristics, and returns a list of operating systems that were "
1129 "found.  An empty list means none were found.  A single element is the root "
1130 "filesystem of the operating system.  For dual- or multi-boot guests, "
1131 "multiple roots can be returned, each one corresponding to a separate "
1132 "operating system.  (Multi-boot virtual machines are extremely rare in the "
1133 "world of virtualization, but since this scenario can happen, we have built "
1134 "libguestfs to deal with it.)"
1135 msgstr ""
1136
1137 #. type: textblock
1138 #: ../src/guestfs.pod:571
1139 msgid ""
1140 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1141 "to get additional details about that operating system.  For example, call "
1142 "L</guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
1143 "Windows and Linux-based operating systems respectively."
1144 msgstr ""
1145
1146 #. type: textblock
1147 #: ../src/guestfs.pod:577
1148 msgid ""
1149 "Un*x-like and Linux-based operating systems usually consist of several "
1150 "filesystems which are mounted at boot time (for example, a separate boot "
1151 "partition mounted on C</boot>).  The inspection rules are able to detect how "
1152 "filesystems correspond to mount points.  Call "
1153 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
1154 "hash table like this example:"
1155 msgstr ""
1156
1157 #. type: verbatim
1158 #: ../src/guestfs.pod:584
1159 #, no-wrap
1160 msgid ""
1161 " /boot => /dev/sda1\n"
1162 " /     => /dev/vg_guest/lv_root\n"
1163 " /usr  => /dev/vg_guest/lv_usr\n"
1164 "\n"
1165 msgstr ""
1166
1167 #. type: textblock
1168 #: ../src/guestfs.pod:588
1169 msgid ""
1170 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1171 "filesystems as suggested."
1172 msgstr ""
1173
1174 #. type: textblock
1175 #: ../src/guestfs.pod:591
1176 msgid ""
1177 "Be careful to mount filesystems in the right order (eg. C</> before "
1178 "C</usr>).  Sorting the keys of the hash by length, shortest first, should "
1179 "work."
1180 msgstr ""
1181
1182 #. type: textblock
1183 #: ../src/guestfs.pod:595
1184 msgid ""
1185 "Inspection currently only works for some common operating systems.  "
1186 "Contributors are welcome to send patches for other operating systems that we "
1187 "currently cannot detect."
1188 msgstr ""
1189
1190 #. type: textblock
1191 #: ../src/guestfs.pod:599
1192 msgid ""
1193 "Encrypted disks must be opened before inspection.  See L</ENCRYPTED DISKS> "
1194 "for more details.  The L</guestfs_inspect_os> function just ignores any "
1195 "encrypted devices."
1196 msgstr ""
1197
1198 #. type: textblock
1199 #: ../src/guestfs.pod:603
1200 msgid ""
1201 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1202 "inspection and caches the results in the guest handle.  Subsequent calls to "
1203 "C<guestfs_inspect_get_*> return this cached information, but I<do not> "
1204 "re-read the disks.  If you change the content of the guest disks, you can "
1205 "redo inspection by calling L</guestfs_inspect_os> again.  "
1206 "(L</guestfs_inspect_list_applications> works a little differently from the "
1207 "other calls and does read the disks.  See documentation for that function "
1208 "for details)."
1209 msgstr ""
1210
1211 #. type: =head3
1212 #: ../src/guestfs.pod:612
1213 msgid "INSPECTING INSTALL DISKS"
1214 msgstr ""
1215
1216 #. type: textblock
1217 #: ../src/guestfs.pod:614
1218 msgid ""
1219 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1220 "CDs and more."
1221 msgstr ""
1222
1223 #. type: textblock
1224 #: ../src/guestfs.pod:617
1225 msgid ""
1226 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1227 "system, which currently can be C<installed> (a regular operating system) or "
1228 "C<installer> (some sort of install disk)."
1229 msgstr ""
1230
1231 #. type: textblock
1232 #: ../src/guestfs.pod:621
1233 msgid ""
1234 "Further information is available about the operating system that can be "
1235 "installed using the regular inspection APIs like "
1236 "L</guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> "
1237 "etc."
1238 msgstr ""
1239
1240 #. type: textblock
1241 #: ../src/guestfs.pod:626
1242 msgid ""
1243 "Some additional information specific to installer disks is also available "
1244 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and "
1245 "L</guestfs_inspect_is_multipart> calls."
1246 msgstr ""
1247
1248 #. type: =head2
1249 #: ../src/guestfs.pod:631
1250 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1251 msgstr ""
1252
1253 #. type: textblock
1254 #: ../src/guestfs.pod:633
1255 msgid ""
1256 "Libguestfs can mount NTFS partitions.  It does this using the "
1257 "L<http://www.ntfs-3g.org/> driver."
1258 msgstr ""
1259
1260 #. type: =head3
1261 #: ../src/guestfs.pod:636
1262 msgid "DRIVE LETTERS AND PATHS"
1263 msgstr ""
1264
1265 #. type: textblock
1266 #: ../src/guestfs.pod:638
1267 msgid ""
1268 "DOS and Windows still use drive letters, and the filesystems are always "
1269 "treated as case insensitive by Windows itself, and therefore you might find "
1270 "a Windows configuration file referring to a path like "
1271 "C<c:\\windows\\system32>.  When the filesystem is mounted in libguestfs, "
1272 "that directory might be referred to as C</WINDOWS/System32>."
1273 msgstr ""
1274
1275 #. type: textblock
1276 #: ../src/guestfs.pod:644
1277 msgid ""
1278 "Drive letter mappings can be found using inspection (see L</INSPECTION> and "
1279 "L</guestfs_inspect_get_drive_mappings>)"
1280 msgstr ""
1281
1282 #. type: textblock
1283 #: ../src/guestfs.pod:647
1284 msgid ""
1285 "Dealing with separator characters (backslash vs forward slash) is outside "
1286 "the scope of libguestfs, but usually a simple character replacement will "
1287 "work."
1288 msgstr ""
1289
1290 #. type: textblock
1291 #: ../src/guestfs.pod:651
1292 msgid ""
1293 "To resolve the case insensitivity of paths, call "
1294 "L</guestfs_case_sensitive_path>."
1295 msgstr ""
1296
1297 #. type: =head3
1298 #: ../src/guestfs.pod:654
1299 msgid "ACCESSING THE WINDOWS REGISTRY"
1300 msgstr ""
1301
1302 #. type: textblock
1303 #: ../src/guestfs.pod:656
1304 msgid ""
1305 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1306 "files, through the library C<hivex> which is part of the libguestfs project "
1307 "although ships as a separate tarball.  You have to locate and download the "
1308 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
1309 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and "
1310 "L<virt-win-reg(1)> for more help on this issue."
1311 msgstr ""
1312
1313 #. type: =head3
1314 #: ../src/guestfs.pod:664
1315 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1316 msgstr ""
1317
1318 #. type: textblock
1319 #: ../src/guestfs.pod:666
1320 msgid ""
1321 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1322 "provide something which looks like a Linux symlink.  The way it tries to do "
1323 "the rewriting is described here:"
1324 msgstr ""
1325
1326 #. type: textblock
1327 #: ../src/guestfs.pod:670
1328 msgid "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-symbolic-links/>"
1329 msgstr ""
1330
1331 #. type: textblock
1332 #: ../src/guestfs.pod:672
1333 msgid ""
1334 "The essential problem is that ntfs-3g simply does not have enough "
1335 "information to do a correct job.  NTFS links can contain drive letters and "
1336 "references to external device GUIDs that ntfs-3g has no way of resolving.  "
1337 "It is almost certainly the case that libguestfs callers should ignore what "
1338 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1339 msgstr ""
1340
1341 #. type: textblock
1342 #: ../src/guestfs.pod:679
1343 msgid ""
1344 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use "
1345 "L</guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1346 "attribute, and read the raw reparse data from that (you can find the format "
1347 "documented in various places around the web)."
1348 msgstr ""
1349
1350 #. type: =head3
1351 #: ../src/guestfs.pod:684
1352 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1353 msgstr ""
1354
1355 #. type: textblock
1356 #: ../src/guestfs.pod:686
1357 msgid ""
1358 "There are other useful extended attributes that can be read from ntfs-3g "
1359 "filesystems (using L</guestfs_getxattr>).  See:"
1360 msgstr ""
1361
1362 #. type: textblock
1363 #: ../src/guestfs.pod:689
1364 msgid "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1365 msgstr ""
1366
1367 #. type: =head2
1368 #: ../src/guestfs.pod:691
1369 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1370 msgstr ""
1371
1372 #. type: textblock
1373 #: ../src/guestfs.pod:693
1374 msgid ""
1375 "Although we don't want to discourage you from using the C API, we will "
1376 "mention here that the same API is also available in other languages."
1377 msgstr ""
1378
1379 #. type: textblock
1380 #: ../src/guestfs.pod:696
1381 msgid ""
1382 "The API is broadly identical in all supported languages.  This means that "
1383 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
1384 "in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1385 "OCaml.  In other words, a straightforward, predictable isomorphism between "
1386 "each language."
1387 msgstr ""
1388
1389 #. type: textblock
1390 #: ../src/guestfs.pod:702
1391 msgid ""
1392 "Error messages are automatically transformed into exceptions if the language "
1393 "supports it."
1394 msgstr ""
1395
1396 #. type: textblock
1397 #: ../src/guestfs.pod:705
1398 msgid ""
1399 "We don't try to \"object orientify\" parts of the API in OO languages, "
1400 "although contributors are welcome to write higher level APIs above what we "
1401 "provide in their favourite languages if they wish."
1402 msgstr ""
1403
1404 #. type: =item
1405 #: ../src/guestfs.pod:711
1406 msgid "B<C++>"
1407 msgstr ""
1408
1409 #. type: textblock
1410 #: ../src/guestfs.pod:713
1411 msgid ""
1412 "You can use the I<guestfs.h> header file from C++ programs.  The C++ API is "
1413 "identical to the C API.  C++ classes and exceptions are not used."
1414 msgstr ""
1415
1416 #. type: =item
1417 #: ../src/guestfs.pod:717
1418 msgid "B<C#>"
1419 msgstr ""
1420
1421 #. type: textblock
1422 #: ../src/guestfs.pod:719
1423 msgid ""
1424 "The C# bindings are highly experimental.  Please read the warnings at the "
1425 "top of C<csharp/Libguestfs.cs>."
1426 msgstr ""
1427
1428 #. type: =item
1429 #: ../src/guestfs.pod:722
1430 msgid "B<Haskell>"
1431 msgstr ""
1432
1433 #. type: textblock
1434 #: ../src/guestfs.pod:724
1435 msgid ""
1436 "This is the only language binding that is working but incomplete.  Only "
1437 "calls which return simple integers have been bound in Haskell, and we are "
1438 "looking for help to complete this binding."
1439 msgstr ""
1440
1441 #. type: =item
1442 #: ../src/guestfs.pod:728
1443 msgid "B<Java>"
1444 msgstr ""
1445
1446 #. type: textblock
1447 #: ../src/guestfs.pod:730
1448 msgid ""
1449 "Full documentation is contained in the Javadoc which is distributed with "
1450 "libguestfs."
1451 msgstr ""
1452
1453 #. type: =item
1454 #: ../src/guestfs.pod:733
1455 msgid "B<OCaml>"
1456 msgstr ""
1457
1458 #. type: textblock
1459 #: ../src/guestfs.pod:735
1460 msgid "See L<guestfs-ocaml(3)>."
1461 msgstr ""
1462
1463 #. type: =item
1464 #: ../src/guestfs.pod:737
1465 msgid "B<Perl>"
1466 msgstr ""
1467
1468 #. type: textblock
1469 #: ../src/guestfs.pod:739
1470 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1471 msgstr ""
1472
1473 #. type: =item
1474 #: ../src/guestfs.pod:741
1475 msgid "B<PHP>"
1476 msgstr ""
1477
1478 #. type: textblock
1479 #: ../src/guestfs.pod:743
1480 msgid ""
1481 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1482 "the php-libguestfs package for your distribution."
1483 msgstr ""
1484
1485 #. type: textblock
1486 #: ../src/guestfs.pod:746
1487 msgid "The PHP binding only works correctly on 64 bit machines."
1488 msgstr ""
1489
1490 #. type: =item
1491 #: ../src/guestfs.pod:748
1492 msgid "B<Python>"
1493 msgstr ""
1494
1495 #. type: textblock
1496 #: ../src/guestfs.pod:750
1497 msgid "See L<guestfs-python(3)>."
1498 msgstr ""
1499
1500 #. type: =item
1501 #: ../src/guestfs.pod:752
1502 msgid "B<Ruby>"
1503 msgstr ""
1504
1505 #. type: textblock
1506 #: ../src/guestfs.pod:754
1507 msgid "See L<guestfs-ruby(3)>."
1508 msgstr ""
1509
1510 #. type: =item
1511 #: ../src/guestfs.pod:756
1512 msgid "B<shell scripts>"
1513 msgstr ""
1514
1515 #. type: textblock
1516 #: ../src/guestfs.pod:758
1517 msgid "See L<guestfish(1)>."
1518 msgstr ""
1519
1520 #. type: =head2
1521 #: ../src/guestfs.pod:762
1522 msgid "LIBGUESTFS GOTCHAS"
1523 msgstr ""
1524
1525 #. type: textblock
1526 #: ../src/guestfs.pod:764
1527 msgid ""
1528 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1529 "system [...] that works in the way it is documented but is counterintuitive "
1530 "and almost invites mistakes.\""
1531 msgstr ""
1532
1533 #. type: textblock
1534 #: ../src/guestfs.pod:768
1535 msgid ""
1536 "Since we developed libguestfs and the associated tools, there are several "
1537 "things we would have designed differently, but are now stuck with for "
1538 "backwards compatibility or other reasons.  If there is ever a libguestfs 2.0 "
1539 "release, you can expect these to change.  Beware of them."
1540 msgstr ""
1541
1542 #. type: =item
1543 #: ../src/guestfs.pod:776
1544 msgid "Autosync / forgetting to sync."
1545 msgstr ""
1546
1547 #. type: textblock
1548 #: ../src/guestfs.pod:778
1549 msgid ""
1550 "I<Update:> Autosync is enabled by default for all API users starting from "
1551 "libguestfs 1.5.24.  This section only applies to older versions."
1552 msgstr ""
1553
1554 #. type: textblock
1555 #: ../src/guestfs.pod:781
1556 msgid ""
1557 "When modifying a filesystem from C or another language, you B<must> unmount "
1558 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1559 "libguestfs handle.  You can also call:"
1560 msgstr ""
1561
1562 #. type: verbatim
1563 #: ../src/guestfs.pod:785
1564 #, no-wrap
1565 msgid ""
1566 " guestfs_set_autosync (g, 1);\n"
1567 "\n"
1568 msgstr ""
1569
1570 #. type: textblock
1571 #: ../src/guestfs.pod:787
1572 msgid ""
1573 "to have the unmount/sync done automatically for you when the handle 'g' is "
1574 "closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> "
1575 "q.v.)"
1576 msgstr ""
1577
1578 #. type: textblock
1579 #: ../src/guestfs.pod:791
1580 msgid ""
1581 "If you forget to do this, then it is entirely possible that your changes "
1582 "won't be written out, or will be partially written, or (very rarely) that "
1583 "you'll get disk corruption."
1584 msgstr ""
1585
1586 #. type: textblock
1587 #: ../src/guestfs.pod:795
1588 msgid ""
1589 "Note that in L<guestfish(3)> autosync is the default.  So quick and dirty "
1590 "guestfish scripts that forget to sync will work just fine, which can make "
1591 "this very puzzling if you are trying to debug a problem."
1592 msgstr ""
1593
1594 #. type: =item
1595 #: ../src/guestfs.pod:799
1596 msgid "Mount option C<-o sync> should not be the default."
1597 msgstr ""
1598
1599 #. type: textblock
1600 #: ../src/guestfs.pod:801
1601 msgid ""
1602 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly.  "
1603 "However C<-o sync> does not add any reliability benefit, but does have a "
1604 "very large performance impact."
1605 msgstr ""
1606
1607 #. type: textblock
1608 #: ../src/guestfs.pod:805
1609 msgid ""
1610 "The work around is to use L</guestfs_mount_options> and set the mount "
1611 "options that you actually want to use."
1612 msgstr ""
1613
1614 #. type: =item
1615 #: ../src/guestfs.pod:808
1616 msgid "Read-only should be the default."
1617 msgstr ""
1618
1619 #. type: textblock
1620 #: ../src/guestfs.pod:810
1621 msgid ""
1622 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1623 "specify I<--rw> if you want to make changes to the image."
1624 msgstr ""
1625
1626 #. type: textblock
1627 #: ../src/guestfs.pod:813
1628 msgid "This would reduce the potential to corrupt live VM images."
1629 msgstr ""
1630
1631 #. type: textblock
1632 #: ../src/guestfs.pod:815
1633 msgid ""
1634 "Note that many filesystems change the disk when you just mount and unmount, "
1635 "even if you didn't perform any writes.  You need to use "
1636 "L</guestfs_add_drive_ro> to guarantee that the disk is not changed."
1637 msgstr ""
1638
1639 #. type: =item
1640 #: ../src/guestfs.pod:819
1641 msgid "guestfish command line is hard to use."
1642 msgstr ""
1643
1644 #. type: textblock
1645 #: ../src/guestfs.pod:821
1646 msgid ""
1647 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1648 "examination).  It tries to run a guestfish command C<disk.img> which doesn't "
1649 "exist, so it fails.  In earlier versions of guestfish the error message was "
1650 "also unintuitive, but we have corrected this since.  Like the Bourne shell, "
1651 "we should have used C<guestfish -c command> to run commands."
1652 msgstr ""
1653
1654 #. type: =item
1655 #: ../src/guestfs.pod:828
1656 msgid "guestfish megabyte modifiers don't work right on all commands"
1657 msgstr ""
1658
1659 #. type: textblock
1660 #: ../src/guestfs.pod:830
1661 msgid ""
1662 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1663 "other modifiers).  What guestfish actually does is to multiply the number "
1664 "part by the modifier part and pass the result to the C API.  However this "
1665 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1666 "expecting some other unit (eg. megabytes)."
1667 msgstr ""
1668
1669 #. type: textblock
1670 #: ../src/guestfs.pod:837
1671 msgid "The most common is L</guestfs_lvcreate>.  The guestfish command:"
1672 msgstr ""
1673
1674 #. type: verbatim
1675 #: ../src/guestfs.pod:839
1676 #, no-wrap
1677 msgid ""
1678 " lvcreate LV VG 100M\n"
1679 "\n"
1680 msgstr ""
1681
1682 #. type: textblock
1683 #: ../src/guestfs.pod:841
1684 msgid ""
1685 "does not do what you might expect.  Instead because L</guestfs_lvcreate> is "
1686 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1687 "megabytes * megabytes) logical volume.  The error message you get from this "
1688 "is also a little obscure."
1689 msgstr ""
1690
1691 #. type: textblock
1692 #: ../src/guestfs.pod:846
1693 msgid ""
1694 "This could be fixed in the generator by specially marking parameters and "
1695 "return values which take bytes or other units."
1696 msgstr ""
1697
1698 #. type: =item
1699 #: ../src/guestfs.pod:849
1700 msgid "Ambiguity between devices and paths"
1701 msgstr ""
1702
1703 #. type: textblock
1704 #: ../src/guestfs.pod:851
1705 msgid ""
1706 "There is a subtle ambiguity in the API between a device name "
1707 "(eg. C</dev/sdb2>) and a similar pathname.  A file might just happen to be "
1708 "called C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1709 msgstr ""
1710
1711 #. type: textblock
1712 #: ../src/guestfs.pod:856
1713 msgid ""
1714 "In the current API we usually resolve this ambiguity by having two separate "
1715 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>.  "
1716 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1717 "detecting if the path supplied begins with C</dev/>."
1718 msgstr ""
1719
1720 #. type: textblock
1721 #: ../src/guestfs.pod:862
1722 msgid ""
1723 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1724 "make paths/devices into structured names.  One way to do this would be to "
1725 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1726 "aspect of grub.  Another way would be to use a structured type, equivalent "
1727 "to this OCaml type:"
1728 msgstr ""
1729
1730 #. type: verbatim
1731 #: ../src/guestfs.pod:868
1732 #, no-wrap
1733 msgid ""
1734 " type path = Path of string | Device of int | Partition of int * int\n"
1735 "\n"
1736 msgstr ""
1737
1738 #. type: textblock
1739 #: ../src/guestfs.pod:870
1740 msgid "which would allow you to pass arguments like:"
1741 msgstr ""
1742
1743 #. type: verbatim
1744 #: ../src/guestfs.pod:872
1745 #, no-wrap
1746 msgid ""
1747 " Path \"/foo/bar\"\n"
1748 " Device 1            (* /dev/sdb, or perhaps /dev/sda *)\n"
1749 " Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
1750 " Path \"/dev/sdb2\"    (* not a device *)\n"
1751 "\n"
1752 msgstr ""
1753
1754 #. type: textblock
1755 #: ../src/guestfs.pod:877
1756 msgid ""
1757 "As you can see there are still problems to resolve even with this "
1758 "representation.  Also consider how it might work in guestfish."
1759 msgstr ""
1760
1761 #. type: =head2
1762 #: ../src/guestfs.pod:882
1763 msgid "KEYS AND PASSPHRASES"
1764 msgstr ""
1765
1766 #. type: textblock
1767 #: ../src/guestfs.pod:884
1768 msgid ""
1769 "Certain libguestfs calls take a parameter that contains sensitive key "
1770 "material, passed in as a C string."
1771 msgstr ""
1772
1773 #. type: textblock
1774 #: ../src/guestfs.pod:887
1775 msgid ""
1776 "In the future we would hope to change the libguestfs implementation so that "
1777 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
1778 "swap.  However this is I<not> done at the moment, because of the complexity "
1779 "of such an implementation."
1780 msgstr ""
1781
1782 #. type: textblock
1783 #: ../src/guestfs.pod:892
1784 msgid ""
1785 "Therefore you should be aware that any key parameter you pass to libguestfs "
1786 "might end up being written out to the swap partition.  If this is a concern, "
1787 "scrub the swap partition or don't use libguestfs on encrypted devices."
1788 msgstr ""
1789
1790 #. type: =head2
1791 #: ../src/guestfs.pod:897
1792 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
1793 msgstr ""
1794
1795 #. type: textblock
1796 #: ../src/guestfs.pod:899
1797 msgid ""
1798 "All high-level libguestfs actions are synchronous.  If you want to use "
1799 "libguestfs asynchronously then you must create a thread."
1800 msgstr ""
1801
1802 #. type: textblock
1803 #: ../src/guestfs.pod:902
1804 msgid ""
1805 "Only use the handle from a single thread.  Either use the handle exclusively "
1806 "from one thread, or provide your own mutex so that two threads cannot issue "
1807 "calls on the same handle at the same time."
1808 msgstr ""
1809
1810 #. type: textblock
1811 #: ../src/guestfs.pod:906
1812 msgid ""
1813 "See the graphical program guestfs-browser for one possible architecture for "
1814 "multithreaded programs using libvirt and libguestfs."
1815 msgstr ""
1816
1817 #. type: =head2
1818 #: ../src/guestfs.pod:909
1819 msgid "PATH"
1820 msgstr ""
1821
1822 #. type: textblock
1823 #: ../src/guestfs.pod:911
1824 msgid ""
1825 "Libguestfs needs a supermin appliance, which it finds by looking along an "
1826 "internal path."
1827 msgstr ""
1828
1829 #. type: textblock
1830 #: ../src/guestfs.pod:914
1831 msgid ""
1832 "By default it looks for these in the directory C<$libdir/guestfs> "
1833 "(eg. C</usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
1834 msgstr ""
1835
1836 #. type: textblock
1837 #: ../src/guestfs.pod:917
1838 msgid ""
1839 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
1840 "to change the directories that libguestfs will search in.  The value is a "
1841 "colon-separated list of paths.  The current directory is I<not> searched "
1842 "unless the path contains an empty element or C<.>.  For example "
1843 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
1844 "then C</usr/lib/guestfs>."
1845 msgstr ""
1846
1847 #. type: =head2
1848 #: ../src/guestfs.pod:924
1849 msgid "QEMU WRAPPERS"
1850 msgstr ""
1851
1852 #. type: textblock
1853 #: ../src/guestfs.pod:926
1854 msgid ""
1855 "If you want to compile your own qemu, run qemu from a non-standard location, "
1856 "or pass extra arguments to qemu, then you can write a shell-script wrapper "
1857 "around qemu."
1858 msgstr ""
1859
1860 #. type: textblock
1861 #: ../src/guestfs.pod:930
1862 msgid ""
1863 "There is one important rule to remember: you I<must C<exec qemu>> as the "
1864 "last command in the shell script (so that qemu replaces the shell and "
1865 "becomes the direct child of the libguestfs-using program).  If you don't do "
1866 "this, then the qemu process won't be cleaned up correctly."
1867 msgstr ""
1868
1869 #. type: textblock
1870 #: ../src/guestfs.pod:935
1871 msgid ""
1872 "Here is an example of a wrapper, where I have built my own copy of qemu from "
1873 "source:"
1874 msgstr ""
1875
1876 #. type: verbatim
1877 #: ../src/guestfs.pod:938
1878 #, no-wrap
1879 msgid ""
1880 " #!/bin/sh -\n"
1881 " qemudir=/home/rjones/d/qemu\n"
1882 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios "
1883 "\"$@\"\n"
1884 "\n"
1885 msgstr ""
1886
1887 #. type: textblock
1888 #: ../src/guestfs.pod:942
1889 msgid ""
1890 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
1891 "then use it by setting the LIBGUESTFS_QEMU environment variable.  For "
1892 "example:"
1893 msgstr ""
1894
1895 #. type: verbatim
1896 #: ../src/guestfs.pod:946
1897 #, no-wrap
1898 msgid ""
1899 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
1900 "\n"
1901 msgstr ""
1902
1903 #. type: textblock
1904 #: ../src/guestfs.pod:948
1905 msgid ""
1906 "Note that libguestfs also calls qemu with the -help and -version options in "
1907 "order to determine features."
1908 msgstr ""
1909
1910 #. type: =head2
1911 #: ../src/guestfs.pod:951
1912 msgid "ATTACHING TO RUNNING DAEMONS"
1913 msgstr ""
1914
1915 #. type: textblock
1916 #: ../src/guestfs.pod:953
1917 msgid ""
1918 "I<Note (1):> This is B<highly experimental> and has a tendency to eat "
1919 "babies.  Use with caution."
1920 msgstr ""
1921
1922 #. type: textblock
1923 #: ../src/guestfs.pod:956
1924 msgid ""
1925 "I<Note (2):> This section explains how to attach to a running daemon from a "
1926 "low level perspective.  For most users, simply using virt tools such as "
1927 "L<guestfish(1)> with the I<--live> option will \"just work\"."
1928 msgstr ""
1929
1930 #. type: =head3
1931 #: ../src/guestfs.pod:960
1932 msgid "Using guestfs_set_attach_method"
1933 msgstr ""
1934
1935 #. type: textblock
1936 #: ../src/guestfs.pod:962
1937 msgid ""
1938 "By calling L</guestfs_set_attach_method> you can change how the library "
1939 "connects to the C<guestfsd> daemon in L</guestfs_launch> (read "
1940 "L</ARCHITECTURE> for some background)."
1941 msgstr ""
1942
1943 #. type: textblock
1944 #: ../src/guestfs.pod:966
1945 msgid ""
1946 "The normal attach method is C<appliance>, where a small appliance is created "
1947 "containing the daemon, and then the library connects to this."
1948 msgstr ""
1949
1950 #. type: textblock
1951 #: ../src/guestfs.pod:969
1952 msgid ""
1953 "Setting attach method to C<unix:I<path>> (where I<path> is the path of a "
1954 "Unix domain socket) causes L</guestfs_launch> to connect to an existing "
1955 "daemon over the Unix domain socket."
1956 msgstr ""
1957
1958 #. type: textblock
1959 #: ../src/guestfs.pod:973
1960 msgid ""
1961 "The normal use for this is to connect to a running virtual machine that "
1962 "contains a C<guestfsd> daemon, and send commands so you can read and write "
1963 "files inside the live virtual machine."
1964 msgstr ""
1965
1966 #. type: =head3
1967 #: ../src/guestfs.pod:977
1968 msgid "Using guestfs_add_domain with live flag"
1969 msgstr ""
1970
1971 #. type: textblock
1972 #: ../src/guestfs.pod:979
1973 msgid ""
1974 "L</guestfs_add_domain> provides some help for getting the correct attach "
1975 "method.  If you pass the C<live> option to this function, then (if the "
1976 "virtual machine is running) it will examine the libvirt XML looking for a "
1977 "virtio-serial channel to connect to:"
1978 msgstr ""
1979
1980 #. type: verbatim
1981 #: ../src/guestfs.pod:985
1982 #, no-wrap
1983 msgid ""
1984 " <domain>\n"
1985 "   ...\n"
1986 "   <devices>\n"
1987 "     ...\n"
1988 "     <channel type='unix'>\n"
1989 "       <source mode='bind' path='/path/to/socket'/>\n"
1990 "       <target type='virtio' name='org.libguestfs.channel.0'/>\n"
1991 "     </channel>\n"
1992 "     ...\n"
1993 "   </devices>\n"
1994 " </domain>\n"
1995 "\n"
1996 msgstr ""
1997
1998 #. type: textblock
1999 #: ../src/guestfs.pod:997
2000 msgid ""
2001 "L</guestfs_add_domain> extracts C</path/to/socket> and sets the attach "
2002 "method to C<unix:/path/to/socket>."
2003 msgstr ""
2004
2005 #. type: textblock
2006 #: ../src/guestfs.pod:1000
2007 msgid ""
2008 "Some of the libguestfs tools (including guestfish) support a I<--live> "
2009 "option which is passed through to L</guestfs_add_domain> thus allowing you "
2010 "to attach to and modify live virtual machines."
2011 msgstr ""
2012
2013 #. type: textblock
2014 #: ../src/guestfs.pod:1004
2015 msgid ""
2016 "The virtual machine needs to have been set up beforehand so that it has the "
2017 "virtio-serial channel and so that guestfsd is running inside it."
2018 msgstr ""
2019
2020 #. type: =head2
2021 #: ../src/guestfs.pod:1008
2022 msgid "ABI GUARANTEE"
2023 msgstr ""
2024
2025 #. type: textblock
2026 #: ../src/guestfs.pod:1010
2027 msgid ""
2028 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
2029 "actions as outlined in this section.  Although we will deprecate some "
2030 "actions, for example if they get replaced by newer calls, we will keep the "
2031 "old actions forever.  This allows you the developer to program in confidence "
2032 "against the libguestfs API."
2033 msgstr ""
2034
2035 #. type: =head2
2036 #: ../src/guestfs.pod:1016
2037 msgid "BLOCK DEVICE NAMING"
2038 msgstr ""
2039
2040 #. type: textblock
2041 #: ../src/guestfs.pod:1018
2042 msgid ""
2043 "In the kernel there is now quite a profusion of schemata for naming block "
2044 "devices (in this context, by I<block device> I mean a physical or virtual "
2045 "hard drive).  The original Linux IDE driver used names starting with "
2046 "C</dev/hd*>.  SCSI devices have historically used a different naming scheme, "
2047 "C</dev/sd*>.  When the Linux kernel I<libata> driver became a popular "
2048 "replacement for the old IDE driver (particularly for SATA devices) those "
2049 "devices also used the C</dev/sd*> scheme.  Additionally we now have virtual "
2050 "machines with paravirtualized drivers.  This has created several different "
2051 "naming systems, such as C</dev/vd*> for virtio disks and C</dev/xvd*> for "
2052 "Xen PV disks."
2053 msgstr ""
2054
2055 #. type: textblock
2056 #: ../src/guestfs.pod:1030
2057 msgid ""
2058 "As discussed above, libguestfs uses a qemu appliance running an embedded "
2059 "Linux kernel to access block devices.  We can run a variety of appliances "
2060 "based on a variety of Linux kernels."
2061 msgstr ""
2062
2063 #. type: textblock
2064 #: ../src/guestfs.pod:1034
2065 msgid ""
2066 "This causes a problem for libguestfs because many API calls use device or "
2067 "partition names.  Working scripts and the recipe (example) scripts that we "
2068 "make available over the internet could fail if the naming scheme changes."
2069 msgstr ""
2070
2071 #. type: textblock
2072 #: ../src/guestfs.pod:1039
2073 msgid ""
2074 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
2075 "Internally C</dev/sd*> names are translated, if necessary, to other names as "
2076 "required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
2077 "device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2078 msgstr ""
2079
2080 #. type: textblock
2081 #: ../src/guestfs.pod:1045
2082 msgid ""
2083 "Note that this I<only> applies to parameters.  The L</guestfs_list_devices>, "
2084 "L</guestfs_list_partitions> and similar calls return the true names of the "
2085 "devices and partitions as known to the appliance."
2086 msgstr ""
2087
2088 #. type: =head3
2089 #: ../src/guestfs.pod:1050
2090 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2091 msgstr ""
2092
2093 #. type: textblock
2094 #: ../src/guestfs.pod:1052
2095 msgid ""
2096 "Usually this translation is transparent.  However in some (very rare)  cases "
2097 "you may need to know the exact algorithm.  Such cases include where you use "
2098 "L</guestfs_config> to add a mixture of virtio and IDE devices to the "
2099 "qemu-based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> "
2100 "devices."
2101 msgstr ""
2102
2103 #. type: textblock
2104 #: ../src/guestfs.pod:1058
2105 msgid ""
2106 "The algorithm is applied only to I<parameters> which are known to be either "
2107 "device or partition names.  Return values from functions such as "
2108 "L</guestfs_list_devices> are never changed."
2109 msgstr ""
2110
2111 #. type: textblock
2112 #: ../src/guestfs.pod:1066
2113 msgid "Is the string a parameter which is a device or partition name?"
2114 msgstr ""
2115
2116 #. type: textblock
2117 #: ../src/guestfs.pod:1070
2118 msgid "Does the string begin with C</dev/sd>?"
2119 msgstr ""
2120
2121 #. type: textblock
2122 #: ../src/guestfs.pod:1074
2123 msgid ""
2124 "Does the named device exist? If so, we use that device.  However if I<not> "
2125 "then we continue with this algorithm."
2126 msgstr ""
2127
2128 #. type: textblock
2129 #: ../src/guestfs.pod:1079
2130 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2131 msgstr ""
2132
2133 #. type: textblock
2134 #: ../src/guestfs.pod:1081
2135 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2136 msgstr ""
2137
2138 #. type: textblock
2139 #: ../src/guestfs.pod:1083
2140 msgid "If that named device exists, use it.  If not, continue."
2141 msgstr ""
2142
2143 #. type: textblock
2144 #: ../src/guestfs.pod:1087
2145 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2146 msgstr ""
2147
2148 #. type: textblock
2149 #: ../src/guestfs.pod:1089
2150 msgid "If that named device exists, use it.  If not, return an error."
2151 msgstr ""
2152
2153 #. type: =head3
2154 #: ../src/guestfs.pod:1093
2155 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2156 msgstr ""
2157
2158 #. type: textblock
2159 #: ../src/guestfs.pod:1095
2160 msgid ""
2161 "Although the standard naming scheme and automatic translation is useful for "
2162 "simple programs and guestfish scripts, for larger programs it is best not to "
2163 "rely on this mechanism."
2164 msgstr ""
2165
2166 #. type: textblock
2167 #: ../src/guestfs.pod:1099
2168 msgid ""
2169 "Where possible for maximum future portability programs using libguestfs "
2170 "should use these future-proof techniques:"
2171 msgstr ""
2172
2173 #. type: textblock
2174 #: ../src/guestfs.pod:1106
2175 msgid ""
2176 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2177 "device names, and then use those names directly."
2178 msgstr ""
2179
2180 #. type: textblock
2181 #: ../src/guestfs.pod:1109
2182 msgid "Since those device names exist by definition, they will never be translated."
2183 msgstr ""
2184
2185 #. type: textblock
2186 #: ../src/guestfs.pod:1114
2187 msgid ""
2188 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2189 "filesystem labels."
2190 msgstr ""
2191
2192 #. type: =head1
2193 #: ../src/guestfs.pod:1119
2194 msgid "SECURITY"
2195 msgstr ""
2196
2197 #. type: textblock
2198 #: ../src/guestfs.pod:1121
2199 msgid ""
2200 "This section discusses security implications of using libguestfs, "
2201 "particularly with untrusted or malicious guests or disk images."
2202 msgstr ""
2203
2204 #. type: =head2
2205 #: ../src/guestfs.pod:1124
2206 msgid "GENERAL SECURITY CONSIDERATIONS"
2207 msgstr ""
2208
2209 #. type: textblock
2210 #: ../src/guestfs.pod:1126
2211 msgid ""
2212 "Be careful with any files or data that you download from a guest (by "
2213 "\"download\" we mean not just the L</guestfs_download> command but any "
2214 "command that reads files, filenames, directories or anything else from a "
2215 "disk image).  An attacker could manipulate the data to fool your program "
2216 "into doing the wrong thing.  Consider cases such as:"
2217 msgstr ""
2218
2219 #. type: textblock
2220 #: ../src/guestfs.pod:1136
2221 msgid "the data (file etc) not being present"
2222 msgstr ""
2223
2224 #. type: textblock
2225 #: ../src/guestfs.pod:1140
2226 msgid "being present but empty"
2227 msgstr ""
2228
2229 #. type: textblock
2230 #: ../src/guestfs.pod:1144
2231 msgid "being much larger than normal"
2232 msgstr ""
2233
2234 #. type: textblock
2235 #: ../src/guestfs.pod:1148
2236 msgid "containing arbitrary 8 bit data"
2237 msgstr ""
2238
2239 #. type: textblock
2240 #: ../src/guestfs.pod:1152
2241 msgid "being in an unexpected character encoding"
2242 msgstr ""
2243
2244 #. type: textblock
2245 #: ../src/guestfs.pod:1156
2246 msgid "containing homoglyphs."
2247 msgstr ""
2248
2249 #. type: =head2
2250 #: ../src/guestfs.pod:1160
2251 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2252 msgstr ""
2253
2254 #. type: textblock
2255 #: ../src/guestfs.pod:1162
2256 msgid ""
2257 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2258 "(VFS) module can sometimes be escalated into exploits by deliberately "
2259 "creating a malicious, malformed filesystem.  These exploits are very severe "
2260 "for two reasons.  Firstly there are very many filesystem drivers in the "
2261 "kernel, and many of them are infrequently used and not much developer "
2262 "attention has been paid to the code.  Linux userspace helps potential "
2263 "crackers by detecting the filesystem type and automatically choosing the "
2264 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2265 "the administrator.  Secondly, a kernel-level exploit is like a local root "
2266 "exploit (worse in some ways), giving immediate and total access to the "
2267 "system right down to the hardware level."
2268 msgstr ""
2269
2270 #. type: textblock
2271 #: ../src/guestfs.pod:1175
2272 msgid ""
2273 "That explains why you should never mount a filesystem from an untrusted "
2274 "guest on your host kernel.  How about libguestfs? We run a Linux kernel "
2275 "inside a qemu virtual machine, usually running as a non-root user.  The "
2276 "attacker would need to write a filesystem which first exploited the kernel, "
2277 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2278 "the libguestfs protocol, and finally to be as serious as the host kernel "
2279 "exploit it would need to escalate its privileges to root.  This multi-step "
2280 "escalation, performed by a static piece of data, is thought to be extremely "
2281 "hard to do, although we never say 'never' about security issues."
2282 msgstr ""
2283
2284 #. type: textblock
2285 #: ../src/guestfs.pod:1186
2286 msgid ""
2287 "In any case callers can reduce the attack surface by forcing the filesystem "
2288 "type when mounting (use L</guestfs_mount_vfs>)."
2289 msgstr ""
2290
2291 #. type: =head2
2292 #: ../src/guestfs.pod:1189
2293 msgid "PROTOCOL SECURITY"
2294 msgstr ""
2295
2296 #. type: textblock
2297 #: ../src/guestfs.pod:1191
2298 msgid ""
2299 "The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a "
2300 "defined upper message size.  However a program that uses libguestfs must "
2301 "also take care - for example you can write a program that downloads a binary "
2302 "from a disk image and executes it locally, and no amount of protocol "
2303 "security will save you from the consequences."
2304 msgstr ""
2305
2306 #. type: =head2
2307 #: ../src/guestfs.pod:1197
2308 msgid "INSPECTION SECURITY"
2309 msgstr ""
2310
2311 #. type: textblock
2312 #: ../src/guestfs.pod:1199
2313 msgid ""
2314 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2315 "directly from the guest, and these could contain any 8 bit data.  Callers "
2316 "should be careful to escape these before printing them to a structured file "
2317 "(for example, use HTML escaping if creating a web page)."
2318 msgstr ""
2319
2320 #. type: textblock
2321 #: ../src/guestfs.pod:1205
2322 msgid ""
2323 "Guest configuration may be altered in unusual ways by the administrator of "
2324 "the virtual machine, and may not reflect reality (particularly for untrusted "
2325 "or actively malicious guests).  For example we parse the hostname from "
2326 "configuration files like C</etc/sysconfig/network> that we find in the "
2327 "guest, but the guest administrator can easily manipulate these files to "
2328 "provide the wrong hostname."
2329 msgstr ""
2330
2331 #. type: textblock
2332 #: ../src/guestfs.pod:1213
2333 msgid ""
2334 "The inspection API parses guest configuration using two external libraries: "
2335 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
2336 "designed to be robust in the face of malicious data, although denial of "
2337 "service attacks are still possible, for example with oversized configuration "
2338 "files."
2339 msgstr ""
2340
2341 #. type: =head2
2342 #: ../src/guestfs.pod:1219
2343 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2344 msgstr ""
2345
2346 #. type: textblock
2347 #: ../src/guestfs.pod:1221
2348 msgid ""
2349 "Be very cautious about running commands from the guest.  By running a "
2350 "command in the guest, you are giving CPU time to a binary that you do not "
2351 "control, under the same user account as the library, albeit wrapped in qemu "
2352 "virtualization.  More information and alternatives can be found in the "
2353 "section L</RUNNING COMMANDS>."
2354 msgstr ""
2355
2356 #. type: =head2
2357 #: ../src/guestfs.pod:1227
2358 msgid "CVE-2010-3851"
2359 msgstr ""
2360
2361 #. type: textblock
2362 #: ../src/guestfs.pod:1229
2363 msgid "https://bugzilla.redhat.com/642934"
2364 msgstr ""
2365
2366 #. type: textblock
2367 #: ../src/guestfs.pod:1231
2368 msgid ""
2369 "This security bug concerns the automatic disk format detection that qemu "
2370 "does on disk images."
2371 msgstr ""
2372
2373 #. type: textblock
2374 #: ../src/guestfs.pod:1234
2375 msgid ""
2376 "A raw disk image is just the raw bytes, there is no header.  Other disk "
2377 "images like qcow2 contain a special header.  Qemu deals with this by looking "
2378 "for one of the known headers, and if none is found then assuming the disk "
2379 "image must be raw."
2380 msgstr ""
2381
2382 #. type: textblock
2383 #: ../src/guestfs.pod:1239
2384 msgid ""
2385 "This allows a guest which has been given a raw disk image to write some "
2386 "other header.  At next boot (or when the disk image is accessed by "
2387 "libguestfs) qemu would do autodetection and think the disk image format was, "
2388 "say, qcow2 based on the header written by the guest."
2389 msgstr ""
2390
2391 #. type: textblock
2392 #: ../src/guestfs.pod:1244
2393 msgid ""
2394 "This in itself would not be a problem, but qcow2 offers many features, one "
2395 "of which is to allow a disk image to refer to another image (called the "
2396 "\"backing disk\").  It does this by placing the path to the backing disk "
2397 "into the qcow2 header.  This path is not validated and could point to any "
2398 "host file (eg. \"/etc/passwd\").  The backing disk is then exposed through "
2399 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2400 "control of the attacker."
2401 msgstr ""
2402
2403 #. type: textblock
2404 #: ../src/guestfs.pod:1252
2405 msgid "In libguestfs this is rather hard to exploit except under two circumstances:"
2406 msgstr ""
2407
2408 #. type: textblock
2409 #: ../src/guestfs.pod:1259
2410 msgid "You have enabled the network or have opened the disk in write mode."
2411 msgstr ""
2412
2413 #. type: textblock
2414 #: ../src/guestfs.pod:1263
2415 msgid ""
2416 "You are also running untrusted code from the guest (see L</RUNNING "
2417 "COMMANDS>)."
2418 msgstr ""
2419
2420 #. type: textblock
2421 #: ../src/guestfs.pod:1268
2422 msgid ""
2423 "The way to avoid this is to specify the expected disk format when adding "
2424 "disks (the optional C<format> option to L</guestfs_add_drive_opts>).  You "
2425 "should always do this if the disk is raw format, and it's a good idea for "
2426 "other cases too."
2427 msgstr ""
2428
2429 #. type: textblock
2430 #: ../src/guestfs.pod:1273
2431 msgid ""
2432 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2433 "format is fetched from libvirt and passed through."
2434 msgstr ""
2435
2436 #. type: textblock
2437 #: ../src/guestfs.pod:1276
2438 msgid ""
2439 "For libguestfs tools, use the I<--format> command line parameter as "
2440 "appropriate."
2441 msgstr ""
2442
2443 #. type: =head1
2444 #: ../src/guestfs.pod:1279
2445 msgid "CONNECTION MANAGEMENT"
2446 msgstr ""
2447
2448 #. type: =head2
2449 #: ../src/guestfs.pod:1281
2450 msgid "guestfs_h *"
2451 msgstr ""
2452
2453 #. type: textblock
2454 #: ../src/guestfs.pod:1283
2455 msgid ""
2456 "C<guestfs_h> is the opaque type representing a connection handle.  Create a "
2457 "handle by calling L</guestfs_create>.  Call L</guestfs_close> to free the "
2458 "handle and release all resources used."
2459 msgstr ""
2460
2461 #. type: textblock
2462 #: ../src/guestfs.pod:1287
2463 msgid ""
2464 "For information on using multiple handles and threads, see the section "
2465 "L</MULTIPLE HANDLES AND MULTIPLE THREADS> above."
2466 msgstr ""
2467
2468 #. type: =head2
2469 #: ../src/guestfs.pod:1290
2470 msgid "guestfs_create"
2471 msgstr ""
2472
2473 #. type: verbatim
2474 #: ../src/guestfs.pod:1292
2475 #, no-wrap
2476 msgid ""
2477 " guestfs_h *guestfs_create (void);\n"
2478 "\n"
2479 msgstr ""
2480
2481 #. type: textblock
2482 #: ../src/guestfs.pod:1294
2483 msgid "Create a connection handle."
2484 msgstr ""
2485
2486 #. type: textblock
2487 #: ../src/guestfs.pod:1296
2488 msgid ""
2489 "On success this returns a non-NULL pointer to a handle.  On error it returns "
2490 "NULL."
2491 msgstr ""
2492
2493 #. type: textblock
2494 #: ../src/guestfs.pod:1299
2495 msgid ""
2496 "You have to \"configure\" the handle after creating it.  This includes "
2497 "calling L</guestfs_add_drive_opts> (or one of the equivalent calls) on the "
2498 "handle at least once."
2499 msgstr ""
2500
2501 #. type: textblock
2502 #: ../src/guestfs.pod:1303
2503 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2504 msgstr ""
2505
2506 #. type: textblock
2507 #: ../src/guestfs.pod:1305
2508 msgid ""
2509 "You may also want to configure error handling for the handle.  See the "
2510 "L</ERROR HANDLING> section below."
2511 msgstr ""
2512
2513 #. type: =head2
2514 #: ../src/guestfs.pod:1308
2515 msgid "guestfs_close"
2516 msgstr ""
2517
2518 #. type: verbatim
2519 #: ../src/guestfs.pod:1310
2520 #, no-wrap
2521 msgid ""
2522 " void guestfs_close (guestfs_h *g);\n"
2523 "\n"
2524 msgstr ""
2525
2526 #. type: textblock
2527 #: ../src/guestfs.pod:1312
2528 msgid "This closes the connection handle and frees up all resources used."
2529 msgstr ""
2530
2531 #. type: textblock
2532 #: ../src/guestfs.pod:1314
2533 msgid ""
2534 "If autosync was set on the handle and the handle was launched, then this "
2535 "implicitly calls various functions to unmount filesystems and sync the "
2536 "disk.  See L</guestfs_set_autosync> for more details."
2537 msgstr ""
2538
2539 #. type: textblock
2540 #: ../src/guestfs.pod:1318
2541 msgid "If a close callback was set on the handle, then it is called."
2542 msgstr ""
2543
2544 #. type: =head1
2545 #: ../src/guestfs.pod:1320
2546 msgid "ERROR HANDLING"
2547 msgstr ""
2548
2549 #. type: textblock
2550 #: ../src/guestfs.pod:1322
2551 msgid ""
2552 "API functions can return errors.  For example, almost all functions that "
2553 "return C<int> will return C<-1> to indicate an error."
2554 msgstr ""
2555
2556 #. type: textblock
2557 #: ../src/guestfs.pod:1325
2558 msgid ""
2559 "Additional information is available for errors: an error message string and "
2560 "optionally an error number (errno) if the thing that failed was a system "
2561 "call."
2562 msgstr ""
2563
2564 #. type: textblock
2565 #: ../src/guestfs.pod:1329
2566 msgid ""
2567 "You can get at the additional information about the last error on the handle "
2568 "by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
2569 "up an error handler with L</guestfs_set_error_handler>."
2570 msgstr ""
2571
2572 #. type: textblock
2573 #: ../src/guestfs.pod:1334
2574 msgid ""
2575 "When the handle is created, a default error handler is installed which "
2576 "prints the error message string to C<stderr>.  For small short-running "
2577 "command line programs it is sufficient to do:"
2578 msgstr ""
2579
2580 #. type: verbatim
2581 #: ../src/guestfs.pod:1338
2582 #, no-wrap
2583 msgid ""
2584 " if (guestfs_launch (g) == -1)\n"
2585 "   exit (EXIT_FAILURE);\n"
2586 "\n"
2587 msgstr ""
2588
2589 #. type: textblock
2590 #: ../src/guestfs.pod:1341
2591 msgid ""
2592 "since the default error handler will ensure that an error message has been "
2593 "printed to C<stderr> before the program exits."
2594 msgstr ""
2595
2596 #. type: textblock
2597 #: ../src/guestfs.pod:1344
2598 msgid ""
2599 "For other programs the caller will almost certainly want to install an "
2600 "alternate error handler or do error handling in-line like this:"
2601 msgstr ""
2602
2603 #. type: verbatim
2604 #: ../src/guestfs.pod:1347
2605 #, no-wrap
2606 msgid ""
2607 " g = guestfs_create ();\n"
2608 " \n"
2609 msgstr ""
2610
2611 #. type: verbatim
2612 #: ../src/guestfs.pod:1349
2613 #, no-wrap
2614 msgid ""
2615 " /* This disables the default behaviour of printing errors\n"
2616 "    on stderr. */\n"
2617 " guestfs_set_error_handler (g, NULL, NULL);\n"
2618 " \n"
2619 msgstr ""
2620
2621 #. type: verbatim
2622 #: ../src/guestfs.pod:1353
2623 #, no-wrap
2624 msgid ""
2625 " if (guestfs_launch (g) == -1) {\n"
2626 "   /* Examine the error message and print it etc. */\n"
2627 "   char *msg = guestfs_last_error (g);\n"
2628 "   int errnum = guestfs_last_errno (g);\n"
2629 "   fprintf (stderr, \"%s\\n\", msg);\n"
2630 "   /* ... */\n"
2631 "  }\n"
2632 "\n"
2633 msgstr ""
2634
2635 #. type: textblock
2636 #: ../src/guestfs.pod:1361
2637 msgid ""
2638 "Out of memory errors are handled differently.  The default action is to call "
2639 "L<abort(3)>.  If this is undesirable, then you can set a handler using "
2640 "L</guestfs_set_out_of_memory_handler>."
2641 msgstr ""
2642
2643 #. type: textblock
2644 #: ../src/guestfs.pod:1365
2645 msgid ""
2646 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
2647 "because there is no handle if this happens there is no way to get additional "
2648 "error information.  However L</guestfs_create> is supposed to be a "
2649 "lightweight operation which can only fail because of insufficient memory (it "
2650 "returns NULL in this case)."
2651 msgstr ""
2652
2653 #. type: =head2
2654 #: ../src/guestfs.pod:1371
2655 msgid "guestfs_last_error"
2656 msgstr ""
2657
2658 #. type: verbatim
2659 #: ../src/guestfs.pod:1373
2660 #, no-wrap
2661 msgid ""
2662 " const char *guestfs_last_error (guestfs_h *g);\n"
2663 "\n"
2664 msgstr ""
2665
2666 #. type: textblock
2667 #: ../src/guestfs.pod:1375
2668 msgid ""
2669 "This returns the last error message that happened on C<g>.  If there has not "
2670 "been an error since the handle was created, then this returns C<NULL>."
2671 msgstr ""
2672
2673 #. type: textblock
2674 #: ../src/guestfs.pod:1379
2675 msgid ""
2676 "The lifetime of the returned string is until the next error occurs, or "
2677 "L</guestfs_close> is called."
2678 msgstr ""
2679
2680 #. type: =head2
2681 #: ../src/guestfs.pod:1382
2682 msgid "guestfs_last_errno"
2683 msgstr ""
2684
2685 #. type: verbatim
2686 #: ../src/guestfs.pod:1384
2687 #, no-wrap
2688 msgid ""
2689 " int guestfs_last_errno (guestfs_h *g);\n"
2690 "\n"
2691 msgstr ""
2692
2693 #. type: textblock
2694 #: ../src/guestfs.pod:1386
2695 msgid "This returns the last error number (errno) that happened on C<g>."
2696 msgstr ""
2697
2698 #. type: textblock
2699 #: ../src/guestfs.pod:1388
2700 msgid "If successful, an errno integer not equal to zero is returned."
2701 msgstr ""
2702
2703 #. type: textblock
2704 #: ../src/guestfs.pod:1390
2705 msgid "If no error, this returns 0.  This call can return 0 in three situations:"
2706 msgstr ""
2707
2708 #. type: textblock
2709 #: ../src/guestfs.pod:1397
2710 msgid "There has not been any error on the handle."
2711 msgstr ""
2712
2713 #. type: textblock
2714 #: ../src/guestfs.pod:1401
2715 msgid ""
2716 "There has been an error but the errno was meaningless.  This corresponds to "
2717 "the case where the error did not come from a failed system call, but for "
2718 "some other reason."
2719 msgstr ""
2720
2721 #. type: textblock
2722 #: ../src/guestfs.pod:1407
2723 msgid ""
2724 "There was an error from a failed system call, but for some reason the errno "
2725 "was not captured and returned.  This usually indicates a bug in libguestfs."
2726 msgstr ""
2727
2728 #. type: textblock
2729 #: ../src/guestfs.pod:1413
2730 msgid ""
2731 "Libguestfs tries to convert the errno from inside the applicance into a "
2732 "corresponding errno for the caller (not entirely trivial: the appliance "
2733 "might be running a completely different operating system from the library "
2734 "and error numbers are not standardized across Un*xen).  If this could not be "
2735 "done, then the error is translated to C<EINVAL>.  In practice this should "
2736 "only happen in very rare circumstances."
2737 msgstr ""
2738
2739 #. type: =head2
2740 #: ../src/guestfs.pod:1421
2741 msgid "guestfs_set_error_handler"
2742 msgstr ""
2743
2744 #. type: verbatim
2745 #: ../src/guestfs.pod:1423
2746 #, no-wrap
2747 msgid ""
2748 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
2749 "                                           void *opaque,\n"
2750 "                                           const char *msg);\n"
2751 " void guestfs_set_error_handler (guestfs_h *g,\n"
2752 "                                 guestfs_error_handler_cb cb,\n"
2753 "                                 void *opaque);\n"
2754 "\n"
2755 msgstr ""
2756
2757 #. type: textblock
2758 #: ../src/guestfs.pod:1430
2759 msgid ""
2760 "The callback C<cb> will be called if there is an error.  The parameters "
2761 "passed to the callback are an opaque data pointer and the error message "
2762 "string."
2763 msgstr ""
2764
2765 #. type: textblock
2766 #: ../src/guestfs.pod:1434
2767 msgid ""
2768 "C<errno> is not passed to the callback.  To get that the callback must call "
2769 "L</guestfs_last_errno>."
2770 msgstr ""
2771
2772 #. type: textblock
2773 #: ../src/guestfs.pod:1437
2774 msgid ""
2775 "Note that the message string C<msg> is freed as soon as the callback "
2776 "function returns, so if you want to stash it somewhere you must make your "
2777 "own copy."
2778 msgstr ""
2779
2780 #. type: textblock
2781 #: ../src/guestfs.pod:1441
2782 msgid "The default handler prints messages on C<stderr>."
2783 msgstr ""
2784
2785 #. type: textblock
2786 #: ../src/guestfs.pod:1443
2787 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
2788 msgstr ""
2789
2790 #. type: =head2
2791 #: ../src/guestfs.pod:1445
2792 msgid "guestfs_get_error_handler"
2793 msgstr ""
2794
2795 #. type: verbatim
2796 #: ../src/guestfs.pod:1447
2797 #, no-wrap
2798 msgid ""
2799 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
2800 "                                                     void **opaque_rtn);\n"
2801 "\n"
2802 msgstr ""
2803
2804 #. type: textblock
2805 #: ../src/guestfs.pod:1450
2806 msgid "Returns the current error handler callback."
2807 msgstr ""
2808
2809 #. type: =head2
2810 #: ../src/guestfs.pod:1452
2811 msgid "guestfs_set_out_of_memory_handler"
2812 msgstr ""
2813
2814 #. type: verbatim
2815 #: ../src/guestfs.pod:1454
2816 #, no-wrap
2817 msgid ""
2818 " typedef void (*guestfs_abort_cb) (void);\n"
2819 " int guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
2820 "                                        guestfs_abort_cb);\n"
2821 "\n"
2822 msgstr ""
2823
2824 #. type: textblock
2825 #: ../src/guestfs.pod:1458
2826 msgid ""
2827 "The callback C<cb> will be called if there is an out of memory situation.  "
2828 "I<Note this callback must not return>."
2829 msgstr ""
2830
2831 #. type: textblock
2832 #: ../src/guestfs.pod:1461
2833 msgid "The default is to call L<abort(3)>."
2834 msgstr ""
2835
2836 #. type: textblock
2837 #: ../src/guestfs.pod:1463
2838 msgid "You cannot set C<cb> to C<NULL>.  You can't ignore out of memory situations."
2839 msgstr ""
2840
2841 #. type: =head2
2842 #: ../src/guestfs.pod:1466
2843 msgid "guestfs_get_out_of_memory_handler"
2844 msgstr ""
2845
2846 #. type: verbatim
2847 #: ../src/guestfs.pod:1468
2848 #, no-wrap
2849 msgid ""
2850 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
2851 "\n"
2852 msgstr ""
2853
2854 #. type: textblock
2855 #: ../src/guestfs.pod:1470
2856 msgid "This returns the current out of memory handler."
2857 msgstr ""
2858
2859 #. type: =head1
2860 #: ../src/guestfs.pod:1472
2861 msgid "API CALLS"
2862 msgstr ""
2863
2864 #. type: textblock
2865 #: ../src/guestfs.pod:1474 ../fish/guestfish.pod:1010
2866 msgid "@ACTIONS@"
2867 msgstr ""
2868
2869 #. type: =head1
2870 #: ../src/guestfs.pod:1476
2871 msgid "STRUCTURES"
2872 msgstr ""
2873
2874 #. type: textblock
2875 #: ../src/guestfs.pod:1478
2876 msgid "@STRUCTS@"
2877 msgstr ""
2878
2879 #. type: =head1
2880 #: ../src/guestfs.pod:1480
2881 msgid "AVAILABILITY"
2882 msgstr ""
2883
2884 #. type: =head2
2885 #: ../src/guestfs.pod:1482
2886 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
2887 msgstr ""
2888
2889 #. type: textblock
2890 #: ../src/guestfs.pod:1484
2891 msgid ""
2892 "Using L</guestfs_available> you can test availability of the following "
2893 "groups of functions.  This test queries the appliance to see if the "
2894 "appliance you are currently using supports the functionality."
2895 msgstr ""
2896
2897 #. type: textblock
2898 #: ../src/guestfs.pod:1489
2899 msgid "@AVAILABILITY@"
2900 msgstr ""
2901
2902 #. type: =head2
2903 #: ../src/guestfs.pod:1491
2904 msgid "GUESTFISH supported COMMAND"
2905 msgstr ""
2906
2907 #. type: textblock
2908 #: ../src/guestfs.pod:1493
2909 msgid ""
2910 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
2911 "prints out the available groups and whether they are supported by this build "
2912 "of libguestfs.  Note however that you have to do C<run> first."
2913 msgstr ""
2914
2915 #. type: =head2
2916 #: ../src/guestfs.pod:1498
2917 msgid "SINGLE CALLS AT COMPILE TIME"
2918 msgstr ""
2919
2920 #. type: textblock
2921 #: ../src/guestfs.pod:1500
2922 msgid ""
2923 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
2924 "function, such as:"
2925 msgstr ""
2926
2927 #. type: verbatim
2928 #: ../src/guestfs.pod:1503
2929 #, no-wrap
2930 msgid ""
2931 " #define LIBGUESTFS_HAVE_DD 1\n"
2932 "\n"
2933 msgstr ""
2934
2935 #. type: textblock
2936 #: ../src/guestfs.pod:1505
2937 msgid "if L</guestfs_dd> is available."
2938 msgstr ""
2939
2940 #. type: textblock
2941 #: ../src/guestfs.pod:1507
2942 msgid ""
2943 "Before version 1.5.8, if you needed to test whether a single libguestfs "
2944 "function is available at compile time, we recommended using build tools such "
2945 "as autoconf or cmake.  For example in autotools you could use:"
2946 msgstr ""
2947
2948 #. type: verbatim
2949 #: ../src/guestfs.pod:1512
2950 #, no-wrap
2951 msgid ""
2952 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
2953 " AC_CHECK_FUNCS([guestfs_dd])\n"
2954 "\n"
2955 msgstr ""
2956
2957 #. type: textblock
2958 #: ../src/guestfs.pod:1515
2959 msgid ""
2960 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
2961 "in your program."
2962 msgstr ""
2963
2964 #. type: =head2
2965 #: ../src/guestfs.pod:1518
2966 msgid "SINGLE CALLS AT RUN TIME"
2967 msgstr ""
2968
2969 #. type: textblock
2970 #: ../src/guestfs.pod:1520
2971 msgid ""
2972 "Testing at compile time doesn't guarantee that a function really exists in "
2973 "the library.  The reason is that you might be dynamically linked against a "
2974 "previous I<libguestfs.so> (dynamic library)  which doesn't have the call.  "
2975 "This situation unfortunately results in a segmentation fault, which is a "
2976 "shortcoming of the C dynamic linking system itself."
2977 msgstr ""
2978
2979 #. type: textblock
2980 #: ../src/guestfs.pod:1527
2981 msgid ""
2982 "You can use L<dlopen(3)> to test if a function is available at run time, as "
2983 "in this example program (note that you still need the compile time check as "
2984 "well):"
2985 msgstr ""
2986
2987 #. type: verbatim
2988 #: ../src/guestfs.pod:1531
2989 #, no-wrap
2990 msgid ""
2991 " #include <stdio.h>\n"
2992 " #include <stdlib.h>\n"
2993 " #include <unistd.h>\n"
2994 " #include <dlfcn.h>\n"
2995 " #include <guestfs.h>\n"
2996 " \n"
2997 msgstr ""
2998
2999 #. type: verbatim
3000 #: ../src/guestfs.pod:1537
3001 #, no-wrap
3002 msgid ""
3003 " main ()\n"
3004 " {\n"
3005 " #ifdef LIBGUESTFS_HAVE_DD\n"
3006 "   void *dl;\n"
3007 "   int has_function;\n"
3008 " \n"
3009 msgstr ""
3010
3011 #. type: verbatim
3012 #: ../src/guestfs.pod:1543
3013 #, no-wrap
3014 msgid ""
3015 "   /* Test if the function guestfs_dd is really available. */\n"
3016 "   dl = dlopen (NULL, RTLD_LAZY);\n"
3017 "   if (!dl) {\n"
3018 "     fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
3019 "     exit (EXIT_FAILURE);\n"
3020 "   }\n"
3021 "   has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
3022 "   dlclose (dl);\n"
3023 " \n"
3024 msgstr ""
3025
3026 #. type: verbatim
3027 #: ../src/guestfs.pod:1552
3028 #, no-wrap
3029 msgid ""
3030 "   if (!has_function)\n"
3031 "     printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
3032 "   else {\n"
3033 "     printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
3034 "     /* Now it's safe to call\n"
3035 "     guestfs_dd (g, \"foo\", \"bar\");\n"
3036 "     */\n"
3037 "   }\n"
3038 " #else\n"
3039 "   printf (\"guestfs_dd function was not found at compile time\\n\");\n"
3040 " #endif\n"
3041 "  }\n"
3042 "\n"
3043 msgstr ""
3044
3045 #. type: textblock
3046 #: ../src/guestfs.pod:1565
3047 msgid ""
3048 "You may think the above is an awful lot of hassle, and it is.  There are "
3049 "other ways outside of the C linking system to ensure that this kind of "
3050 "incompatibility never arises, such as using package versioning:"
3051 msgstr ""
3052
3053 #. type: verbatim
3054 #: ../src/guestfs.pod:1570
3055 #, no-wrap
3056 msgid ""
3057 " Requires: libguestfs >= 1.0.80\n"
3058 "\n"
3059 msgstr ""
3060
3061 #. type: =head1
3062 #: ../src/guestfs.pod:1572
3063 msgid "CALLS WITH OPTIONAL ARGUMENTS"
3064 msgstr ""
3065
3066 #. type: textblock
3067 #: ../src/guestfs.pod:1574
3068 msgid ""
3069 "A recent feature of the API is the introduction of calls which take optional "
3070 "arguments.  In C these are declared 3 ways.  The main way is as a call which "
3071 "takes variable arguments (ie. C<...>), as in this example:"
3072 msgstr ""
3073
3074 #. type: verbatim
3075 #: ../src/guestfs.pod:1579
3076 #, no-wrap
3077 msgid ""
3078 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
3079 "\n"
3080 msgstr ""
3081
3082 #. type: textblock
3083 #: ../src/guestfs.pod:1581
3084 msgid ""
3085 "Call this with a list of optional arguments, terminated by C<-1>.  So to "
3086 "call with no optional arguments specified:"
3087 msgstr ""
3088
3089 #. type: verbatim
3090 #: ../src/guestfs.pod:1584
3091 #, no-wrap
3092 msgid ""
3093 " guestfs_add_drive_opts (g, filename, -1);\n"
3094 "\n"
3095 msgstr ""
3096
3097 #. type: textblock
3098 #: ../src/guestfs.pod:1586
3099 msgid "With a single optional argument:"
3100 msgstr ""
3101
3102 #. type: verbatim
3103 #: ../src/guestfs.pod:1588
3104 #, no-wrap
3105 msgid ""
3106 " guestfs_add_drive_opts (g, filename,\n"
3107 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3108 "                         -1);\n"
3109 "\n"
3110 msgstr ""
3111
3112 #. type: textblock
3113 #: ../src/guestfs.pod:1592
3114 msgid "With two:"
3115 msgstr ""
3116
3117 #. type: verbatim
3118 #: ../src/guestfs.pod:1594
3119 #, no-wrap
3120 msgid ""
3121 " guestfs_add_drive_opts (g, filename,\n"
3122 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3123 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3124 "                         -1);\n"
3125 "\n"
3126 msgstr ""
3127
3128 #. type: textblock
3129 #: ../src/guestfs.pod:1599
3130 msgid ""
3131 "and so forth.  Don't forget the terminating C<-1> otherwise Bad Things will "
3132 "happen!"
3133 msgstr ""
3134
3135 #. type: =head2
3136 #: ../src/guestfs.pod:1602
3137 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3138 msgstr ""
3139
3140 #. type: textblock
3141 #: ../src/guestfs.pod:1604
3142 msgid ""
3143 "The second variant has the same name with the suffix C<_va>, which works the "
3144 "same way but takes a C<va_list>.  See the C manual for details.  For the "
3145 "example function, this is declared:"
3146 msgstr ""
3147
3148 #. type: verbatim
3149 #: ../src/guestfs.pod:1608
3150 #, no-wrap
3151 msgid ""
3152 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3153 "                                va_list args);\n"
3154 "\n"
3155 msgstr ""
3156
3157 #. type: =head2
3158 #: ../src/guestfs.pod:1611
3159 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3160 msgstr ""
3161
3162 #. type: textblock
3163 #: ../src/guestfs.pod:1613
3164 msgid ""
3165 "The third variant is useful where you need to construct these calls.  You "
3166 "pass in a structure where you fill in the optional fields.  The structure "
3167 "has a bitmask as the first element which you must set to indicate which "
3168 "fields you have filled in.  For our example function the structure and call "
3169 "are declared:"
3170 msgstr ""
3171
3172 #. type: verbatim
3173 #: ../src/guestfs.pod:1619
3174 #, no-wrap
3175 msgid ""
3176 " struct guestfs_add_drive_opts_argv {\n"
3177 "   uint64_t bitmask;\n"
3178 "   int readonly;\n"
3179 "   const char *format;\n"
3180 "   /* ... */\n"
3181 " };\n"
3182 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3183 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
3184 "\n"
3185 msgstr ""
3186
3187 #. type: textblock
3188 #: ../src/guestfs.pod:1628
3189 msgid "You could call it like this:"
3190 msgstr ""
3191
3192 #. type: verbatim
3193 #: ../src/guestfs.pod:1630
3194 #, no-wrap
3195 msgid ""
3196 " struct guestfs_add_drive_opts_argv optargs = {\n"
3197 "   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3198 "              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3199 "   .readonly = 1,\n"
3200 "   .format = \"qcow2\"\n"
3201 " };\n"
3202 " \n"
3203 msgstr ""
3204
3205 #. type: verbatim
3206 #: ../src/guestfs.pod:1637
3207 #, no-wrap
3208 msgid ""
3209 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3210 "\n"
3211 msgstr ""
3212
3213 #. type: textblock
3214 #: ../src/guestfs.pod:1639 ../src/guestfs-actions.pod:11 ../src/guestfs-actions.pod:1861 ../fish/guestfish-actions.pod:9 ../fish/guestfish-actions.pod:1265 ../tools/virt-win-reg.pl:703
3215 msgid "Notes:"
3216 msgstr ""
3217
3218 #. type: textblock
3219 #: ../src/guestfs.pod:1645
3220 msgid "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3221 msgstr ""
3222
3223 #. type: textblock
3224 #: ../src/guestfs.pod:1650
3225 msgid "You do not need to fill in all fields of the structure."
3226 msgstr ""
3227
3228 #. type: textblock
3229 #: ../src/guestfs.pod:1654
3230 msgid ""
3231 "There must be a one-to-one correspondence between fields of the structure "
3232 "that are filled in, and bits set in the bitmask."
3233 msgstr ""
3234
3235 #. type: =head2
3236 #: ../src/guestfs.pod:1659
3237 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3238 msgstr ""
3239
3240 #. type: textblock
3241 #: ../src/guestfs.pod:1661
3242 msgid ""
3243 "In other languages, optional arguments are expressed in the way that is "
3244 "natural for that language.  We refer you to the language-specific "
3245 "documentation for more details on that."
3246 msgstr ""
3247
3248 #. type: textblock
3249 #: ../src/guestfs.pod:1665
3250 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3251 msgstr ""
3252
3253 #. type: =head2
3254 #: ../src/guestfs.pod:1667
3255 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3256 msgstr ""
3257
3258 #. type: textblock
3259 #: ../src/guestfs.pod:1669
3260 msgid ""
3261 "B<Note:> This section documents the generic event mechanism introduced in "
3262 "libguestfs 1.10, which you should use in new code if possible.  The old "
3263 "functions C<guestfs_set_log_message_callback>, "
3264 "C<guestfs_set_subprocess_quit_callback>, "
3265 "C<guestfs_set_launch_done_callback>, C<guestfs_set_close_callback> and "
3266 "C<guestfs_set_progress_callback> are no longer documented in this manual "
3267 "page.  Because of the ABI guarantee, the old functions continue to work."
3268 msgstr ""
3269
3270 #. type: textblock
3271 #: ../src/guestfs.pod:1678
3272 msgid ""
3273 "Handles generate events when certain things happen, such as log messages "
3274 "being generated, progress messages during long-running operations, or the "
3275 "handle being closed.  The API calls described below let you register a "
3276 "callback to be called when events happen.  You can register multiple "
3277 "callbacks (for the same, different or overlapping sets of events), and "
3278 "individually remove callbacks.  If callbacks are not removed, then they "
3279 "remain in force until the handle is closed."
3280 msgstr ""
3281
3282 #. type: textblock
3283 #: ../src/guestfs.pod:1686
3284 msgid ""
3285 "In the current implementation, events are only generated synchronously: that "
3286 "means that events (and hence callbacks) can only happen while you are in the "
3287 "middle of making another libguestfs call.  The callback is called in the "
3288 "same thread."
3289 msgstr ""
3290
3291 #. type: textblock
3292 #: ../src/guestfs.pod:1691
3293 msgid ""
3294 "Events may contain a payload, usually nothing (void), an array of 64 bit "
3295 "unsigned integers, or a message buffer.  Payloads are discussed later on."
3296 msgstr ""
3297
3298 #. type: =head3
3299 #: ../src/guestfs.pod:1695
3300 msgid "CLASSES OF EVENTS"
3301 msgstr ""
3302
3303 #. type: =item
3304 #: ../src/guestfs.pod:1699
3305 msgid "GUESTFS_EVENT_CLOSE (payload type: void)"
3306 msgstr ""
3307
3308 #. type: textblock
3309 #: ../src/guestfs.pod:1702
3310 msgid ""
3311 "The callback function will be called while the handle is being closed "
3312 "(synchronously from L</guestfs_close>)."
3313 msgstr ""
3314
3315 #. type: textblock
3316 #: ../src/guestfs.pod:1705
3317 msgid ""
3318 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3319 "handles that are open when the program exits.  This means that this callback "
3320 "might be called indirectly from L<exit(3)>, which can cause unexpected "
3321 "problems in higher-level languages (eg. if your HLL interpreter has already "
3322 "been cleaned up by the time this is called, and if your callback then jumps "
3323 "into some HLL function)."
3324 msgstr ""
3325
3326 #. type: textblock
3327 #: ../src/guestfs.pod:1712
3328 msgid ""
3329 "If no callback is registered: the handle is closed without any callback "
3330 "being invoked."
3331 msgstr ""
3332
3333 #. type: =item
3334 #: ../src/guestfs.pod:1715
3335 msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)"
3336 msgstr ""
3337
3338 #. type: textblock
3339 #: ../src/guestfs.pod:1718
3340 msgid ""
3341 "The callback function will be called when the child process quits, either "
3342 "asynchronously or if killed by L</guestfs_kill_subprocess>.  (This "
3343 "corresponds to a transition from any state to the CONFIG state)."
3344 msgstr ""
3345
3346 #. type: textblock
3347 #: ../src/guestfs.pod:1722 ../src/guestfs.pod:1731
3348 msgid "If no callback is registered: the event is ignored."
3349 msgstr ""
3350
3351 #. type: =item
3352 #: ../src/guestfs.pod:1724
3353 msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)"
3354 msgstr ""
3355
3356 #. type: textblock
3357 #: ../src/guestfs.pod:1727
3358 msgid ""
3359 "The callback function will be called when the child process becomes ready "
3360 "first time after it has been launched.  (This corresponds to a transition "
3361 "from LAUNCHING to the READY state)."
3362 msgstr ""
3363
3364 #. type: =item
3365 #: ../src/guestfs.pod:1733
3366 msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)"
3367 msgstr ""
3368
3369 #. type: textblock
3370 #: ../src/guestfs.pod:1736
3371 msgid ""
3372 "Some long-running operations can generate progress messages.  If this "
3373 "callback is registered, then it will be called each time a progress message "
3374 "is generated (usually two seconds after the operation started, and three "
3375 "times per second thereafter until it completes, although the frequency may "
3376 "change in future versions)."
3377 msgstr ""
3378
3379 #. type: textblock
3380 #: ../src/guestfs.pod:1742
3381 msgid ""
3382 "The callback receives in the payload four unsigned 64 bit numbers which are "
3383 "(in order): C<proc_nr>, C<serial>, C<position>, C<total>."
3384 msgstr ""
3385
3386 #. type: textblock
3387 #: ../src/guestfs.pod:1745
3388 msgid ""
3389 "The units of C<total> are not defined, although for some operations C<total> "
3390 "may relate in some way to the amount of data to be transferred (eg. in bytes "
3391 "or megabytes), and C<position> may be the portion which has been "
3392 "transferred."
3393 msgstr ""
3394
3395 #. type: textblock
3396 #: ../src/guestfs.pod:1750
3397 msgid "The only defined and stable parts of the API are:"
3398 msgstr ""
3399
3400 #. type: textblock
3401 #: ../src/guestfs.pod:1756
3402 msgid ""
3403 "The callback can display to the user some type of progress bar or indicator "
3404 "which shows the ratio of C<position>:C<total>."
3405 msgstr ""
3406
3407 #. type: textblock
3408 #: ../src/guestfs.pod:1761
3409 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3410 msgstr ""
3411
3412 #. type: textblock
3413 #: ../src/guestfs.pod:1765
3414 msgid ""
3415 "If any progress notification is sent during a call, then a final progress "
3416 "notification is always sent when C<position> = C<total> (I<unless> the call "
3417 "fails with an error)."
3418 msgstr ""
3419
3420 #. type: textblock
3421 #: ../src/guestfs.pod:1769
3422 msgid ""
3423 "This is to simplify caller code, so callers can easily set the progress "
3424 "indicator to \"100%\" at the end of the operation, without requiring special "
3425 "code to detect this case."
3426 msgstr ""
3427
3428 #. type: textblock
3429 #: ../src/guestfs.pod:1775
3430 msgid ""
3431 "For some calls we are unable to estimate the progress of the call, but we "
3432 "can still generate progress messages to indicate activity.  This is known as "
3433 "\"pulse mode\", and is directly supported by certain progress bar "
3434 "implementations (eg. GtkProgressBar)."
3435 msgstr ""
3436
3437 #. type: textblock
3438 #: ../src/guestfs.pod:1780
3439 msgid ""
3440 "For these calls, zero or more progress messages are generated with "
3441 "C<position = 0> and C<total = 1>, followed by a final message with "
3442 "C<position = total = 1>."
3443 msgstr ""
3444
3445 #. type: textblock
3446 #: ../src/guestfs.pod:1784
3447 msgid ""
3448 "As noted above, if the call fails with an error then the final message may "
3449 "not be generated."
3450 msgstr ""
3451
3452 #. type: textblock
3453 #: ../src/guestfs.pod:1789
3454 msgid ""
3455 "The callback also receives the procedure number (C<proc_nr>) and serial "
3456 "number (C<serial>) of the call.  These are only useful for debugging "
3457 "protocol issues, and the callback can normally ignore them.  The callback "
3458 "may want to print these numbers in error messages or debugging messages."
3459 msgstr ""
3460
3461 #. type: textblock
3462 #: ../src/guestfs.pod:1795
3463 msgid "If no callback is registered: progress messages are discarded."
3464 msgstr ""
3465
3466 #. type: =item
3467 #: ../src/guestfs.pod:1797
3468 msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)"
3469 msgstr ""
3470
3471 #. type: textblock
3472 #: ../src/guestfs.pod:1800
3473 msgid ""
3474 "The callback function is called whenever a log message is generated by qemu, "
3475 "the appliance kernel, guestfsd (daemon), or utility programs."
3476 msgstr ""
3477
3478 #. type: textblock
3479 #: ../src/guestfs.pod:1803
3480 msgid ""
3481 "If the verbose flag (L</guestfs_set_verbose>) is set before launch "
3482 "(L</guestfs_launch>) then additional debug messages are generated."
3483 msgstr ""
3484
3485 #. type: textblock
3486 #: ../src/guestfs.pod:1806 ../src/guestfs.pod:1820
3487 msgid ""
3488 "If no callback is registered: the messages are discarded unless the verbose "
3489 "flag is set in which case they are sent to stderr.  You can override the "
3490 "printing of verbose messages to stderr by setting up a callback."
3491 msgstr ""
3492
3493 #. type: =item
3494 #: ../src/guestfs.pod:1811
3495 msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)"
3496 msgstr ""
3497
3498 #. type: textblock
3499 #: ../src/guestfs.pod:1814
3500 msgid ""
3501 "The callback function is called whenever a log message is generated by the "
3502 "library part of libguestfs."
3503 msgstr ""
3504
3505 #. type: textblock
3506 #: ../src/guestfs.pod:1817
3507 msgid ""
3508 "If the verbose flag (L</guestfs_set_verbose>) is set then additional debug "
3509 "messages are generated."
3510 msgstr ""
3511
3512 #. type: =item
3513 #: ../src/guestfs.pod:1825
3514 msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)"
3515 msgstr ""
3516
3517 #. type: textblock
3518 #: ../src/guestfs.pod:1828
3519 msgid ""
3520 "The callback function is called whenever a trace message is generated.  This "
3521 "only applies if the trace flag (L</guestfs_set_trace>) is set."
3522 msgstr ""
3523
3524 #. type: textblock
3525 #: ../src/guestfs.pod:1831
3526 msgid ""
3527 "If no callback is registered: the messages are sent to stderr.  You can "
3528 "override the printing of trace messages to stderr by setting up a callback."
3529 msgstr ""
3530
3531 #. type: =head3
3532 #: ../src/guestfs.pod:1837
3533 msgid "guestfs_set_event_callback"
3534 msgstr ""
3535
3536 #. type: verbatim
3537 #: ../src/guestfs.pod:1839
3538 #, no-wrap
3539 msgid ""
3540 " int guestfs_set_event_callback (guestfs_h *g,\n"
3541 "                                 guestfs_event_callback cb,\n"
3542 "                                 uint64_t event_bitmask,\n"
3543 "                                 int flags,\n"
3544 "                                 void *opaque);\n"
3545 "\n"
3546 msgstr ""
3547
3548 #. type: textblock
3549 #: ../src/guestfs.pod:1845
3550 msgid ""
3551 "This function registers a callback (C<cb>) for all event classes in the "
3552 "C<event_bitmask>."
3553 msgstr ""
3554
3555 #. type: textblock
3556 #: ../src/guestfs.pod:1848
3557 msgid ""
3558 "For example, to register for all log message events, you could call this "
3559 "function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>.  "
3560 "To register a single callback for all possible classes of events, use "
3561 "C<GUESTFS_EVENT_ALL>."
3562 msgstr ""
3563
3564 #. type: textblock
3565 #: ../src/guestfs.pod:1854
3566 msgid "C<flags> should always be passed as 0."
3567 msgstr ""
3568
3569 #. type: textblock
3570 #: ../src/guestfs.pod:1856
3571 msgid ""
3572 "C<opaque> is an opaque pointer which is passed to the callback.  You can use "
3573 "it for any purpose."
3574 msgstr ""
3575
3576 #. type: textblock
3577 #: ../src/guestfs.pod:1859
3578 msgid ""
3579 "The return value is the event handle (an integer) which you can use to "
3580 "delete the callback (see below)."
3581 msgstr ""
3582
3583 #. type: textblock
3584 #: ../src/guestfs.pod:1862
3585 msgid ""
3586 "If there is an error, this function returns C<-1>, and sets the error in the "
3587 "handle in the usual way (see L</guestfs_last_error> etc.)"
3588 msgstr ""
3589
3590 #. type: textblock
3591 #: ../src/guestfs.pod:1865
3592 msgid ""
3593 "Callbacks remain in effect until they are deleted, or until the handle is "
3594 "closed."
3595 msgstr ""
3596
3597 #. type: textblock
3598 #: ../src/guestfs.pod:1868
3599 msgid ""
3600 "In the case where multiple callbacks are registered for a particular event "
3601 "class, all of the callbacks are called.  The order in which multiple "
3602 "callbacks are called is not defined."
3603 msgstr ""
3604
3605 #. type: =head3
3606 #: ../src/guestfs.pod:1872
3607 msgid "guestfs_delete_event_callback"
3608 msgstr ""
3609
3610 #. type: verbatim
3611 #: ../src/guestfs.pod:1874
3612 #, no-wrap
3613 msgid ""
3614 " void guestfs_delete_event_callback (guestfs_h *g, int event_handle);\n"
3615 "\n"
3616 msgstr ""
3617
3618 #. type: textblock
3619 #: ../src/guestfs.pod:1876
3620 msgid ""
3621 "Delete a callback that was previously registered.  C<event_handle> should be "
3622 "the integer that was returned by a previous call to "
3623 "C<guestfs_set_event_callback> on the same handle."
3624 msgstr ""
3625
3626 #. type: =head3
3627 #: ../src/guestfs.pod:1880
3628 msgid "guestfs_event_callback"
3629 msgstr ""
3630
3631 #. type: verbatim
3632 #: ../src/guestfs.pod:1882
3633 #, no-wrap
3634 msgid ""
3635 " typedef void (*guestfs_event_callback) (\n"
3636 "                  guestfs_h *g,\n"
3637 "                  void *opaque,\n"
3638 "                  uint64_t event,\n"
3639 "                  int event_handle,\n"
3640 "                  int flags,\n"
3641 "                  const char *buf, size_t buf_len,\n"
3642 "                  const uint64_t *array, size_t array_len);\n"
3643 "\n"
3644 msgstr ""
3645
3646 #. type: textblock
3647 #: ../src/guestfs.pod:1891
3648 msgid "This is the type of the event callback function that you have to provide."
3649 msgstr ""
3650
3651 #. type: textblock
3652 #: ../src/guestfs.pod:1894
3653 msgid ""
3654 "The basic parameters are: the handle (C<g>), the opaque user pointer "
3655 "(C<opaque>), the event class (eg. C<GUESTFS_EVENT_PROGRESS>), the event "
3656 "handle, and C<flags> which in the current API you should ignore."
3657 msgstr ""
3658
3659 #. type: textblock
3660 #: ../src/guestfs.pod:1898
3661 msgid ""
3662 "The remaining parameters contain the event payload (if any).  Each event may "
3663 "contain a payload, which usually relates to the event class, but for future "
3664 "proofing your code should be written to handle any payload for any event "
3665 "class."
3666 msgstr ""
3667
3668 #. type: textblock
3669 #: ../src/guestfs.pod:1903
3670 msgid ""
3671 "C<buf> and C<buf_len> contain a message buffer (if C<buf_len == 0>, then "
3672 "there is no message buffer).  Note that this message buffer can contain "
3673 "arbitrary 8 bit data, including NUL bytes."
3674 msgstr ""
3675
3676 #. type: textblock
3677 #: ../src/guestfs.pod:1907
3678 msgid ""
3679 "C<array> and C<array_len> is an array of 64 bit unsigned integers.  At the "
3680 "moment this is only used for progress messages."
3681 msgstr ""
3682
3683 #. type: =head3
3684 #: ../src/guestfs.pod:1910
3685 msgid "EXAMPLE: CAPTURING LOG MESSAGES"
3686 msgstr ""
3687
3688 #. type: textblock
3689 #: ../src/guestfs.pod:1912
3690 msgid ""
3691 "One motivation for the generic event API was to allow GUI programs to "
3692 "capture debug and other messages.  In libguestfs E<le> 1.8 these were sent "
3693 "unconditionally to C<stderr>."
3694 msgstr ""
3695
3696 #. type: textblock
3697 #: ../src/guestfs.pod:1916
3698 msgid ""
3699 "Events associated with log messages are: C<GUESTFS_EVENT_LIBRARY>, "
3700 "C<GUESTFS_EVENT_APPLIANCE> and C<GUESTFS_EVENT_TRACE>.  (Note that error "
3701 "messages are not events; you must capture error messages separately)."
3702 msgstr ""
3703
3704 #. type: textblock
3705 #: ../src/guestfs.pod:1921
3706 msgid ""
3707 "Programs have to set up a callback to capture the classes of events of "
3708 "interest:"
3709 msgstr ""
3710
3711 #. type: verbatim
3712 #: ../src/guestfs.pod:1924
3713 #, no-wrap
3714 msgid ""
3715 " int eh =\n"
3716 "   guestfs_set_event_callback\n"
3717 "     (g, message_callback,\n"
3718 "      GUESTFS_EVENT_LIBRARY|GUESTFS_EVENT_APPLIANCE|\n"
3719 "      GUESTFS_EVENT_TRACE,\n"
3720 "      0, NULL) == -1)\n"
3721 " if (eh == -1) {\n"
3722 "   // handle error in the usual way\n"
3723 " }\n"
3724 "\n"
3725 msgstr ""
3726
3727 #. type: textblock
3728 #: ../src/guestfs.pod:1934
3729 msgid ""
3730 "The callback can then direct messages to the appropriate place.  In this "
3731 "example, messages are directed to syslog:"
3732 msgstr ""
3733
3734 #. type: verbatim
3735 #: ../src/guestfs.pod:1937
3736 #, no-wrap
3737 msgid ""
3738 " static void\n"
3739 " message_callback (\n"
3740 "         guestfs_h *g,\n"
3741 "         void *opaque,\n"
3742 "         uint64_t event,\n"
3743 "         int event_handle,\n"
3744 "         int flags,\n"
3745 "         const char *buf, size_t buf_len,\n"
3746 "         const uint64_t *array, size_t array_len)\n"
3747 " {\n"
3748 "   const int priority = LOG_USER|LOG_INFO;\n"
3749 "   if (buf_len > 0)\n"
3750 "     syslog (priority, \"event 0x%lx: %s\", event, buf);\n"
3751 " }\n"
3752 "\n"
3753 msgstr ""
3754
3755 #. type: =head1
3756 #: ../src/guestfs.pod:1952
3757 msgid "PRIVATE DATA AREA"
3758 msgstr ""
3759
3760 #. type: textblock
3761 #: ../src/guestfs.pod:1954
3762 msgid ""
3763 "You can attach named pieces of private data to the libguestfs handle, fetch "
3764 "them by name, and walk over them, for the lifetime of the handle.  This is "
3765 "called the private data area and is only available from the C API."
3766 msgstr ""
3767
3768 #. type: textblock
3769 #: ../src/guestfs.pod:1959
3770 msgid "To attach a named piece of data, use the following call:"
3771 msgstr ""
3772
3773 #. type: verbatim
3774 #: ../src/guestfs.pod:1961
3775 #, no-wrap
3776 msgid ""
3777 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
3778 "\n"
3779 msgstr ""
3780
3781 #. type: textblock
3782 #: ../src/guestfs.pod:1963
3783 msgid ""
3784 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
3785 "pointer (which can be C<NULL>).  Any previous item with the same key is "
3786 "overwritten."
3787 msgstr ""
3788
3789 #. type: textblock
3790 #: ../src/guestfs.pod:1967
3791 msgid ""
3792 "You can use any C<key> you want, but your key should I<not> start with an "
3793 "underscore character.  Keys beginning with an underscore character are "
3794 "reserved for internal libguestfs purposes (eg. for implementing language "
3795 "bindings).  It is recommended that you prefix the key with some unique "
3796 "string to avoid collisions with other users."
3797 msgstr ""
3798
3799 #. type: textblock
3800 #: ../src/guestfs.pod:1973
3801 msgid "To retrieve the pointer, use:"
3802 msgstr ""
3803
3804 #. type: verbatim
3805 #: ../src/guestfs.pod:1975
3806 #, no-wrap
3807 msgid ""
3808 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
3809 "\n"
3810 msgstr ""
3811
3812 #. type: textblock
3813 #: ../src/guestfs.pod:1977
3814 msgid ""
3815 "This function returns C<NULL> if either no data is found associated with "
3816 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
3817 "C<NULL>."
3818 msgstr ""
3819
3820 #. type: textblock
3821 #: ../src/guestfs.pod:1981
3822 msgid ""
3823 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
3824 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
3825 "all.  In particular, libguestfs does I<not> try to free the data when the "
3826 "handle is closed.  If the data must be freed, then the caller must either "
3827 "free it before calling L</guestfs_close> or must set up a close callback to "
3828 "do it (see L</GUESTFS_EVENT_CLOSE>)."
3829 msgstr ""
3830
3831 #. type: textblock
3832 #: ../src/guestfs.pod:1988
3833 msgid "To walk over all entries, use these two functions:"
3834 msgstr ""
3835
3836 #. type: verbatim
3837 #: ../src/guestfs.pod:1990
3838 #, no-wrap
3839 msgid ""
3840 " void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n"
3841 "\n"
3842 msgstr ""
3843
3844 #. type: verbatim
3845 #: ../src/guestfs.pod:1992
3846 #, no-wrap
3847 msgid ""
3848 " void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n"
3849 "\n"
3850 msgstr ""
3851
3852 #. type: textblock
3853 #: ../src/guestfs.pod:1994
3854 msgid ""
3855 "C<guestfs_first_private> returns the first key, pointer pair (\"first\" does "
3856 "not have any particular meaning -- keys are not returned in any defined "
3857 "order).  A pointer to the key is returned in C<*key_rtn> and the "
3858 "corresponding data pointer is returned from the function.  C<NULL> is "
3859 "returned if there are no keys stored in the handle."
3860 msgstr ""
3861
3862 #. type: textblock
3863 #: ../src/guestfs.pod:2000
3864 msgid ""
3865 "C<guestfs_next_private> returns the next key, pointer pair.  The return "
3866 "value of this function is also C<NULL> is there are no further entries to "
3867 "return."
3868 msgstr ""
3869
3870 #. type: textblock
3871 #: ../src/guestfs.pod:2004
3872 msgid "Notes about walking over entries:"
3873 msgstr ""
3874
3875 #. type: textblock
3876 #: ../src/guestfs.pod:2010
3877 msgid "You must not call C<guestfs_set_private> while walking over the entries."
3878 msgstr ""
3879
3880 #. type: textblock
3881 #: ../src/guestfs.pod:2015
3882 msgid ""
3883 "The handle maintains an internal iterator which is reset when you call "
3884 "C<guestfs_first_private>.  This internal iterator is invalidated when you "
3885 "call C<guestfs_set_private>."
3886 msgstr ""
3887
3888 #. type: textblock
3889 #: ../src/guestfs.pod:2021
3890 msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
3891 msgstr ""
3892
3893 #. type: verbatim
3894 #: ../src/guestfs.pod:2023
3895 #, no-wrap
3896 msgid ""
3897 " guestfs_set_private (g, key, NULL);\n"
3898 "\n"
3899 msgstr ""
3900
3901 #. type: textblock
3902 #: ../src/guestfs.pod:2025
3903 msgid "then that C<key> is not returned when walking."
3904 msgstr ""
3905
3906 #. type: textblock
3907 #: ../src/guestfs.pod:2029
3908 msgid ""
3909 "C<*key_rtn> is only valid until the next call to C<guestfs_first_private>, "
3910 "C<guestfs_next_private> or C<guestfs_set_private>."
3911 msgstr ""
3912
3913 #. type: textblock
3914 #: ../src/guestfs.pod:2035
3915 msgid ""
3916 "The following example code shows how to print all keys and data pointers "
3917 "that are associated with the handle C<g>:"
3918 msgstr ""
3919
3920 #. type: verbatim
3921 #: ../src/guestfs.pod:2038
3922 #, no-wrap
3923 msgid ""
3924 " const char *key;\n"
3925 " void *data = guestfs_first_private (g, &key);\n"
3926 " while (data != NULL)\n"
3927 "   {\n"
3928 "     printf (\"key = %s, data = %p\\n\", key, data);\n"
3929 "     data = guestfs_next_private (g, &key);\n"
3930 "   }\n"
3931 "\n"
3932 msgstr ""
3933
3934 #. type: textblock
3935 #: ../src/guestfs.pod:2046
3936 msgid ""
3937 "More commonly you are only interested in keys that begin with an "
3938 "application-specific prefix C<foo_>.  Modify the loop like so:"
3939 msgstr ""
3940
3941 #. type: verbatim
3942 #: ../src/guestfs.pod:2049
3943 #, no-wrap
3944 msgid ""
3945 " const char *key;\n"
3946 " void *data = guestfs_first_private (g, &key);\n"
3947 " while (data != NULL)\n"
3948 "   {\n"
3949 "     if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
3950 "       printf (\"key = %s, data = %p\\n\", key, data);\n"
3951 "     data = guestfs_next_private (g, &key);\n"
3952 "   }\n"
3953 "\n"
3954 msgstr ""
3955
3956 #. type: textblock
3957 #: ../src/guestfs.pod:2058
3958 msgid ""
3959 "If you need to modify keys while walking, then you have to jump back to the "
3960 "beginning of the loop.  For example, to delete all keys prefixed with "
3961 "C<foo_>:"
3962 msgstr ""
3963
3964 #. type: verbatim
3965 #: ../src/guestfs.pod:2062
3966 #, no-wrap
3967 msgid ""
3968 "  const char *key;\n"
3969 "  void *data;\n"
3970 " again:\n"
3971 "  data = guestfs_first_private (g, &key);\n"
3972 "  while (data != NULL)\n"
3973 "    {\n"
3974 "      if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
3975 "        {\n"
3976 "          guestfs_set_private (g, key, NULL);\n"
3977 "          /* note that 'key' pointer is now invalid, and so is\n"
3978 "             the internal iterator */\n"
3979 "          goto again;\n"
3980 "        }\n"
3981 "      data = guestfs_next_private (g, &key);\n"
3982 "    }\n"
3983 "\n"
3984 msgstr ""
3985
3986 #. type: textblock
3987 #: ../src/guestfs.pod:2078
3988 msgid ""
3989 "Note that the above loop is guaranteed to terminate because the keys are "
3990 "being deleted, but other manipulations of keys within the loop might not "
3991 "terminate unless you also maintain an indication of which keys have been "
3992 "visited."
3993 msgstr ""
3994
3995 #. type: =end
3996 #: ../src/guestfs.pod:2083 ../src/guestfs.pod:2088
3997 msgid "html"
3998 msgstr ""
3999
4000 #. type: textblock
4001 #: ../src/guestfs.pod:2085
4002 msgid ""
4003 "<!-- old anchor for the next section --> <a "
4004 "name=\"state_machine_and_low_level_event_api\"/>"
4005 msgstr ""
4006
4007 #. type: =head1
4008 #: ../src/guestfs.pod:2090
4009 msgid "ARCHITECTURE"
4010 msgstr ""
4011
4012 #. type: textblock
4013 #: ../src/guestfs.pod:2092
4014 msgid ""
4015 "Internally, libguestfs is implemented by running an appliance (a special "
4016 "type of small virtual machine) using L<qemu(1)>.  Qemu runs as a child "
4017 "process of the main program."
4018 msgstr ""
4019
4020 #. type: verbatim
4021 #: ../src/guestfs.pod:2096
4022 #, no-wrap
4023 msgid ""
4024 "  ___________________\n"
4025 " /                   \\\n"
4026 " | main program      |\n"
4027 " |                   |\n"
4028 " |                   |           child process / appliance\n"
4029 " |                   |           __________________________\n"
4030 " |                   |          / qemu                     \\\n"
4031 " +-------------------+   RPC    |      +-----------------+ |\n"
4032 " | libguestfs     <--------------------> guestfsd        | |\n"
4033 " |                   |          |      +-----------------+ |\n"
4034 " \\___________________/          |      | Linux kernel    | |\n"
4035 "                                |      +--^--------------+ |\n"
4036 "                                \\_________|________________/\n"
4037 "                                          |\n"
4038 "                                   _______v______\n"
4039 "                                  /              \\\n"
4040 "                                  | Device or    |\n"
4041 "                                  | disk image   |\n"
4042 "                                  \\______________/\n"
4043 "\n"
4044 msgstr ""
4045
4046 #. type: textblock
4047 #: ../src/guestfs.pod:2116
4048 msgid ""
4049 "The library, linked to the main program, creates the child process and hence "
4050 "the appliance in the L</guestfs_launch> function."
4051 msgstr ""
4052
4053 #. type: textblock
4054 #: ../src/guestfs.pod:2119
4055 msgid ""
4056 "Inside the appliance is a Linux kernel and a complete stack of userspace "
4057 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
4058 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
4059 "calls (RPC).  There is a mostly one-to-one correspondence between libguestfs "
4060 "API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
4061 "attached to the qemu process which translates device access by the "
4062 "appliance's Linux kernel into accesses to the image."
4063 msgstr ""
4064
4065 #. type: textblock
4066 #: ../src/guestfs.pod:2128
4067 msgid ""
4068 "A common misunderstanding is that the appliance \"is\" the virtual machine.  "
4069 "Although the disk image you are attached to might also be used by some "
4070 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
4071 "care if both libguestfs's qemu process and your virtual machine are trying "
4072 "to update the disk image at the same time, since these usually results in "
4073 "massive disk corruption)."
4074 msgstr ""
4075
4076 #. type: =head1
4077 #: ../src/guestfs.pod:2135
4078 msgid "STATE MACHINE"
4079 msgstr ""
4080
4081 #. type: textblock
4082 #: ../src/guestfs.pod:2137
4083 msgid "libguestfs uses a state machine to model the child process:"
4084 msgstr ""
4085
4086 #. type: verbatim
4087 #: ../src/guestfs.pod:2139
4088 #, no-wrap
4089 msgid ""
4090 "                         |\n"
4091 "                    guestfs_create\n"
4092 "                         |\n"
4093 "                         |\n"
4094 "                     ____V_____\n"
4095 "                    /          \\\n"
4096 "                    |  CONFIG  |\n"
4097 "                    \\__________/\n"
4098 "                     ^ ^   ^  \\\n"
4099 "                    /  |    \\  \\ guestfs_launch\n"
4100 "                   /   |    _\\__V______\n"
4101 "                  /    |   /           \\\n"
4102 "                 /     |   | LAUNCHING |\n"
4103 "                /      |   \\___________/\n"
4104 "               /       |       /\n"
4105 "              /        |  guestfs_launch\n"
4106 "             /         |     /\n"
4107 "    ______  /        __|____V\n"
4108 "   /      \\ ------> /        \\\n"
4109 "   | BUSY |         | READY  |\n"
4110 "   \\______/ <------ \\________/\n"
4111 "\n"
4112 msgstr ""
4113
4114 #. type: textblock
4115 #: ../src/guestfs.pod:2161
4116 msgid ""
4117 "The normal transitions are (1) CONFIG (when the handle is created, but there "
4118 "is no child process), (2) LAUNCHING (when the child process is booting up), "
4119 "(3) alternating between READY and BUSY as commands are issued to, and "
4120 "carried out by, the child process."
4121 msgstr ""
4122
4123 #. type: textblock
4124 #: ../src/guestfs.pod:2166
4125 msgid ""
4126 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
4127 "asynchronously at any time (eg. due to some internal error), and that causes "
4128 "the state to transition back to CONFIG."
4129 msgstr ""
4130
4131 #. type: textblock
4132 #: ../src/guestfs.pod:2170
4133 msgid ""
4134 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
4135 "issued when in the CONFIG state."
4136 msgstr ""
4137
4138 #. type: textblock
4139 #: ../src/guestfs.pod:2173
4140 msgid ""
4141 "The API offers one call that goes from CONFIG through LAUNCHING to READY.  "
4142 "L</guestfs_launch> blocks until the child process is READY to accept "
4143 "commands (or until some failure or timeout).  L</guestfs_launch> internally "
4144 "moves the state from CONFIG to LAUNCHING while it is running."
4145 msgstr ""
4146
4147 #. type: textblock
4148 #: ../src/guestfs.pod:2179
4149 msgid ""
4150 "API actions such as L</guestfs_mount> can only be issued when in the READY "
4151 "state.  These API calls block waiting for the command to be carried out "
4152 "(ie. the state to transition to BUSY and then back to READY).  There are no "
4153 "non-blocking versions, and no way to issue more than one command per handle "
4154 "at the same time."
4155 msgstr ""
4156
4157 #. type: textblock
4158 #: ../src/guestfs.pod:2185
4159 msgid ""
4160 "Finally, the child process sends asynchronous messages back to the main "
4161 "program, such as kernel log messages.  You can register a callback to "
4162 "receive these messages."
4163 msgstr ""
4164
4165 #. type: =head1
4166 #: ../src/guestfs.pod:2189
4167 msgid "INTERNALS"
4168 msgstr ""
4169
4170 #. type: =head2
4171 #: ../src/guestfs.pod:2191
4172 msgid "COMMUNICATION PROTOCOL"
4173 msgstr ""
4174
4175 #. type: textblock
4176 #: ../src/guestfs.pod:2193
4177 msgid ""
4178 "Don't rely on using this protocol directly.  This section documents how it "
4179 "currently works, but it may change at any time."
4180 msgstr ""
4181
4182 #. type: textblock
4183 #: ../src/guestfs.pod:2196
4184 msgid ""
4185 "The protocol used to talk between the library and the daemon running inside "
4186 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
4187 "1014, RFC 1832, RFC 4506)."
4188 msgstr ""
4189
4190 #. type: textblock
4191 #: ../src/guestfs.pod:2200
4192 msgid ""
4193 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
4194 "this file is automatically generated)."
4195 msgstr ""
4196
4197 #. type: textblock
4198 #: ../src/guestfs.pod:2203
4199 msgid ""
4200 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
4201 "and C<FileOut> parameters, which are handled with very simple request/reply "
4202 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
4203 "parameters, which use the same request and reply messages, but they may also "
4204 "be followed by files sent using a chunked encoding."
4205 msgstr ""
4206
4207 #. type: =head3
4208 #: ../src/guestfs.pod:2210
4209 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4210 msgstr ""
4211
4212 #. type: textblock
4213 #: ../src/guestfs.pod:2212
4214 msgid "For ordinary functions, the request message is:"
4215 msgstr ""
4216
4217 #. type: verbatim
4218 #: ../src/guestfs.pod:2214
4219 #, no-wrap
4220 msgid ""
4221 " total length (header + arguments,\n"
4222 "      but not including the length word itself)\n"
4223 " struct guestfs_message_header (encoded as XDR)\n"
4224 " struct guestfs_<foo>_args (encoded as XDR)\n"
4225 "\n"
4226 msgstr ""
4227
4228 #. type: textblock
4229 #: ../src/guestfs.pod:2219
4230 msgid ""
4231 "The total length field allows the daemon to allocate a fixed size buffer "
4232 "into which it slurps the rest of the message.  As a result, the total length "
4233 "is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
4234 "effective size of any request is limited to somewhere under this size."
4235 msgstr ""
4236
4237 #. type: textblock
4238 #: ../src/guestfs.pod:2225
4239 msgid ""
4240 "Note also that many functions don't take any arguments, in which case the "
4241 "C<guestfs_I<foo>_args> is completely omitted."
4242 msgstr ""
4243
4244 #. type: textblock
4245 #: ../src/guestfs.pod:2228
4246 msgid ""
4247 "The header contains the procedure number (C<guestfs_proc>) which is how the "
4248 "receiver knows what type of args structure to expect, or none at all."
4249 msgstr ""
4250
4251 #. type: textblock
4252 #: ../src/guestfs.pod:2232
4253 msgid ""
4254 "For functions that take optional arguments, the optional arguments are "
4255 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
4256 "arguments.  A bitmask in the header indicates which optional arguments are "
4257 "meaningful.  The bitmask is also checked to see if it contains bits set "
4258 "which the daemon does not know about (eg. if more optional arguments were "
4259 "added in a later version of the library), and this causes the call to be "
4260 "rejected."
4261 msgstr ""
4262
4263 #. type: textblock
4264 #: ../src/guestfs.pod:2240
4265 msgid "The reply message for ordinary functions is:"
4266 msgstr ""
4267
4268 #. type: verbatim
4269 #: ../src/guestfs.pod:2242
4270 #, no-wrap
4271 msgid ""
4272 " total length (header + ret,\n"
4273 "      but not including the length word itself)\n"
4274 " struct guestfs_message_header (encoded as XDR)\n"
4275 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4276 "\n"
4277 msgstr ""
4278
4279 #. type: textblock
4280 #: ../src/guestfs.pod:2247
4281 msgid ""
4282 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
4283 "functions that return no formal return values."
4284 msgstr ""
4285
4286 #. type: textblock
4287 #: ../src/guestfs.pod:2250
4288 msgid "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
4289 msgstr ""
4290
4291 #. type: textblock
4292 #: ../src/guestfs.pod:2253
4293 msgid ""
4294 "In the case of an error, a flag is set in the header, and the reply message "
4295 "is slightly changed:"
4296 msgstr ""
4297
4298 #. type: verbatim
4299 #: ../src/guestfs.pod:2256
4300 #, no-wrap
4301 msgid ""
4302 " total length (header + error,\n"
4303 "      but not including the length word itself)\n"
4304 " struct guestfs_message_header (encoded as XDR)\n"
4305 " struct guestfs_message_error (encoded as XDR)\n"
4306 "\n"
4307 msgstr ""
4308
4309 #. type: textblock
4310 #: ../src/guestfs.pod:2261
4311 msgid ""
4312 "The C<guestfs_message_error> structure contains the error message as a "
4313 "string."
4314 msgstr ""
4315
4316 #. type: =head3
4317 #: ../src/guestfs.pod:2264
4318 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4319 msgstr ""
4320
4321 #. type: textblock
4322 #: ../src/guestfs.pod:2266
4323 msgid ""
4324 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
4325 "The normal request message is sent (see above).  However this is followed by "
4326 "a sequence of file chunks."
4327 msgstr ""
4328
4329 #. type: verbatim
4330 #: ../src/guestfs.pod:2270
4331 #, no-wrap
4332 msgid ""
4333 " total length (header + arguments,\n"
4334 "      but not including the length word itself,\n"
4335 "      and not including the chunks)\n"
4336 " struct guestfs_message_header (encoded as XDR)\n"
4337 " struct guestfs_<foo>_args (encoded as XDR)\n"
4338 " sequence of chunks for FileIn param #0\n"
4339 " sequence of chunks for FileIn param #1 etc.\n"
4340 "\n"
4341 msgstr ""
4342
4343 #. type: textblock
4344 #: ../src/guestfs.pod:2278
4345 msgid "The \"sequence of chunks\" is:"
4346 msgstr ""
4347
4348 #. type: verbatim
4349 #: ../src/guestfs.pod:2280
4350 #, no-wrap
4351 msgid ""
4352 " length of chunk (not including length word itself)\n"
4353 " struct guestfs_chunk (encoded as XDR)\n"
4354 " length of chunk\n"
4355 " struct guestfs_chunk (encoded as XDR)\n"
4356 "   ...\n"
4357 " length of chunk\n"
4358 " struct guestfs_chunk (with data.data_len == 0)\n"
4359 "\n"
4360 msgstr ""
4361
4362 #. type: textblock
4363 #: ../src/guestfs.pod:2288
4364 msgid ""
4365 "The final chunk has the C<data_len> field set to zero.  Additionally a flag "
4366 "is set in the final chunk to indicate either successful completion or early "
4367 "cancellation."
4368 msgstr ""
4369
4370 #. type: textblock
4371 #: ../src/guestfs.pod:2292
4372 msgid ""
4373 "At time of writing there are no functions that have more than one FileIn "
4374 "parameter.  However this is (theoretically) supported, by sending the "
4375 "sequence of chunks for each FileIn parameter one after another (from left to "
4376 "right)."
4377 msgstr ""
4378
4379 #. type: textblock
4380 #: ../src/guestfs.pod:2297
4381 msgid ""
4382 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
4383 "transfer.  The library does this by sending a chunk with a special flag set "
4384 "to indicate cancellation.  When the daemon sees this, it cancels the whole "
4385 "RPC, does I<not> send any reply, and goes back to reading the next request."
4386 msgstr ""
4387
4388 #. type: textblock
4389 #: ../src/guestfs.pod:2303
4390 msgid ""
4391 "The daemon may also cancel.  It does this by writing a special word "
4392 "C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this during "
4393 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
4394 "cancel chunk).  The special word is chosen so that even if cancellation "
4395 "happens right at the end of the transfer (after the library has finished "
4396 "writing and has started listening for the reply), the \"spurious\" cancel "
4397 "flag will not be confused with the reply message."
4398 msgstr ""
4399
4400 #. type: textblock
4401 #: ../src/guestfs.pod:2312
4402 msgid ""
4403 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
4404 "limit), and also files where the size is not known in advance (eg. from "
4405 "pipes or sockets).  However the chunks are rather small "
4406 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
4407 "to keep much in memory."
4408 msgstr ""
4409
4410 #. type: =head3
4411 #: ../src/guestfs.pod:2318
4412 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4413 msgstr ""
4414
4415 #. type: textblock
4416 #: ../src/guestfs.pod:2320
4417 msgid ""
4418 "The protocol for FileOut parameters is exactly the same as for FileIn "
4419 "parameters, but with the roles of daemon and library reversed."
4420 msgstr ""
4421
4422 #. type: verbatim
4423 #: ../src/guestfs.pod:2323
4424 #, no-wrap
4425 msgid ""
4426 " total length (header + ret,\n"
4427 "      but not including the length word itself,\n"
4428 "      and not including the chunks)\n"
4429 " struct guestfs_message_header (encoded as XDR)\n"
4430 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4431 " sequence of chunks for FileOut param #0\n"
4432 " sequence of chunks for FileOut param #1 etc.\n"
4433 "\n"
4434 msgstr ""
4435
4436 #. type: =head3
4437 #: ../src/guestfs.pod:2331
4438 msgid "INITIAL MESSAGE"
4439 msgstr ""
4440
4441 #. type: textblock
4442 #: ../src/guestfs.pod:2333
4443 msgid ""
4444 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
4445 "which indicates that the guest and daemon is alive.  This is what "
4446 "L</guestfs_launch> waits for."
4447 msgstr ""
4448
4449 #. type: =head3
4450 #: ../src/guestfs.pod:2337
4451 msgid "PROGRESS NOTIFICATION MESSAGES"
4452 msgstr ""
4453
4454 #. type: textblock
4455 #: ../src/guestfs.pod:2339
4456 msgid ""
4457 "The daemon may send progress notification messages at any time.  These are "
4458 "distinguished by the normal length word being replaced by "
4459 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
4460 msgstr ""
4461
4462 #. type: textblock
4463 #: ../src/guestfs.pod:2343
4464 msgid ""
4465 "The library turns them into progress callbacks (see "
4466 "L</GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards "
4467 "them if not."
4468 msgstr ""
4469
4470 #. type: textblock
4471 #: ../src/guestfs.pod:2347
4472 msgid ""
4473 "The daemon self-limits the frequency of progress messages it sends (see "
4474 "C<daemon/proto.c:notify_progress>).  Not all calls generate progress "
4475 "messages."
4476 msgstr ""
4477
4478 #. type: =head1
4479 #: ../src/guestfs.pod:2351
4480 msgid "LIBGUESTFS VERSION NUMBERS"
4481 msgstr ""
4482
4483 #. type: textblock
4484 #: ../src/guestfs.pod:2353
4485 msgid ""
4486 "Since April 2010, libguestfs has started to make separate development and "
4487 "stable releases, along with corresponding branches in our git repository.  "
4488 "These separate releases can be identified by version number:"
4489 msgstr ""
4490
4491 #. type: verbatim
4492 #: ../src/guestfs.pod:2358
4493 #, no-wrap
4494 msgid ""
4495 "                 even numbers for stable: 1.2.x, 1.4.x, ...\n"
4496 "       .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
4497 "       |\n"
4498 "       v\n"
4499 " 1  .  3  .  5\n"
4500 " ^           ^\n"
4501 " |           |\n"
4502 " |           `-------- sub-version\n"
4503 " |\n"
4504 " `------ always '1' because we don't change the ABI\n"
4505 "\n"
4506 msgstr ""
4507
4508 #. type: textblock
4509 #: ../src/guestfs.pod:2369
4510 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
4511 msgstr ""
4512
4513 #. type: textblock
4514 #: ../src/guestfs.pod:2371
4515 msgid ""
4516 "As time passes we cherry pick fixes from the development branch and backport "
4517 "those into the stable branch, the effect being that the stable branch should "
4518 "get more stable and less buggy over time.  So the stable releases are ideal "
4519 "for people who don't need new features but would just like the software to "
4520 "work."
4521 msgstr ""
4522
4523 #. type: textblock
4524 #: ../src/guestfs.pod:2377
4525 msgid "Our criteria for backporting changes are:"
4526 msgstr ""
4527
4528 #. type: textblock
4529 #: ../src/guestfs.pod:2383
4530 msgid ""
4531 "Documentation changes which don't affect any code are backported unless the "
4532 "documentation refers to a future feature which is not in stable."
4533 msgstr ""
4534
4535 #. type: textblock
4536 #: ../src/guestfs.pod:2389
4537 msgid ""
4538 "Bug fixes which are not controversial, fix obvious problems, and have been "
4539 "well tested are backported."
4540 msgstr ""
4541
4542 #. type: textblock
4543 #: ../src/guestfs.pod:2394
4544 msgid ""
4545 "Simple rearrangements of code which shouldn't affect how it works get "
4546 "backported.  This is so that the code in the two branches doesn't get too "
4547 "far out of step, allowing us to backport future fixes more easily."
4548 msgstr ""
4549
4550 #. type: textblock
4551 #: ../src/guestfs.pod:2400
4552 msgid ""
4553 "We I<don't> backport new features, new APIs, new tools etc, except in one "
4554 "exceptional case: the new feature is required in order to implement an "
4555 "important bug fix."
4556 msgstr ""
4557
4558 #. type: textblock
4559 #: ../src/guestfs.pod:2406
4560 msgid ""
4561 "A new stable branch starts when we think the new features in development are "
4562 "substantial and compelling enough over the current stable branch to warrant "
4563 "it.  When that happens we create new stable and development versions 1.N.0 "
4564 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
4565 "stable at this point, but by backporting fixes from development, that branch "
4566 "will stabilize over time."
4567 msgstr ""
4568
4569 #. type: =head1
4570 #: ../src/guestfs.pod:2414
4571 msgid "EXTENDING LIBGUESTFS"
4572 msgstr ""
4573
4574 #. type: =head2
4575 #: ../src/guestfs.pod:2416
4576 msgid "ADDING A NEW API ACTION"
4577 msgstr ""
4578
4579 #. type: textblock
4580 #: ../src/guestfs.pod:2418
4581 msgid ""
4582 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
4583 "documentation) are generated, and this makes it easy to extend the "
4584 "libguestfs API."
4585 msgstr ""
4586
4587 #. type: textblock
4588 #: ../src/guestfs.pod:2422
4589 msgid "To add a new API action there are two changes:"
4590 msgstr ""
4591
4592 #. type: textblock
4593 #: ../src/guestfs.pod:2428
4594 msgid ""
4595 "You need to add a description of the call (name, parameters, return type, "
4596 "tests, documentation) to C<generator/generator_actions.ml>."
4597 msgstr ""
4598
4599 #. type: textblock
4600 #: ../src/guestfs.pod:2431
4601 msgid ""
4602 "There are two sorts of API action, depending on whether the call goes "
4603 "through to the daemon in the appliance, or is serviced entirely by the "
4604 "library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the "
4605 "former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
4606 "an example of the latter, since a trace flag is maintained in the handle and "
4607 "all tracing is done on the library side."
4608 msgstr ""
4609
4610 #. type: textblock
4611 #: ../src/guestfs.pod:2439
4612 msgid ""
4613 "Most new actions are of the first type, and get added to the "
4614 "C<daemon_functions> list.  Each function has a unique procedure number used "
4615 "in the RPC protocol which is assigned to that action when we publish "
4616 "libguestfs and cannot be reused.  Take the latest procedure number and "
4617 "increment it."
4618 msgstr ""
4619
4620 #. type: textblock
4621 #: ../src/guestfs.pod:2445
4622 msgid ""
4623 "For library-only actions of the second type, add to the "
4624 "C<non_daemon_functions> list.  Since these functions are serviced by the "
4625 "library and do not travel over the RPC mechanism to the daemon, these "
4626 "functions do not need a procedure number, and so the procedure number is set "
4627 "to C<-1>."
4628 msgstr ""
4629
4630 #. type: textblock
4631 #: ../src/guestfs.pod:2453
4632 msgid "Implement the action (in C):"
4633 msgstr ""
4634
4635 #. type: textblock
4636 #: ../src/guestfs.pod:2455
4637 msgid ""
4638 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
4639 "C<daemon/> directory."
4640 msgstr ""
4641
4642 #. type: textblock
4643 #: ../src/guestfs.pod:2458
4644 msgid ""
4645 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
4646 "(note: double underscore) in the C<src/> directory."
4647 msgstr ""
4648
4649 #. type: textblock
4650 #: ../src/guestfs.pod:2461
4651 msgid "In either case, use another function as an example of what to do."
4652 msgstr ""
4653
4654 #. type: textblock
4655 #: ../src/guestfs.pod:2465
4656 msgid "After making these changes, use C<make> to compile."
4657 msgstr ""
4658
4659 #. type: textblock
4660 #: ../src/guestfs.pod:2467
4661 msgid ""
4662 "Note that you don't need to implement the RPC, language bindings, manual "
4663 "pages or anything else.  It's all automatically generated from the OCaml "
4664 "description."
4665 msgstr ""
4666
4667 #. type: =head2
4668 #: ../src/guestfs.pod:2471
4669 msgid "ADDING TESTS FOR AN API ACTION"
4670 msgstr ""
4671
4672 #. type: textblock
4673 #: ../src/guestfs.pod:2473
4674 msgid ""
4675 "You can supply zero or as many tests as you want per API call.  The tests "
4676 "can either be added as part of the API description "
4677 "(C<generator/generator_actions.ml>), or in some rarer cases you may want to "
4678 "drop a script into C<regressions/>.  Note that adding a script to "
4679 "C<regressions/> is slower, so if possible use the first method."
4680 msgstr ""
4681
4682 #. type: textblock
4683 #: ../src/guestfs.pod:2479
4684 msgid ""
4685 "The following describes the test environment used when you add an API test "
4686 "in C<generator_actions.ml>."
4687 msgstr ""
4688
4689 #. type: textblock
4690 #: ../src/guestfs.pod:2482
4691 msgid "The test environment has 4 block devices:"
4692 msgstr ""
4693
4694 #. type: =item
4695 #: ../src/guestfs.pod:2486
4696 msgid "C</dev/sda> 500MB"
4697 msgstr ""
4698
4699 #. type: textblock
4700 #: ../src/guestfs.pod:2488
4701 msgid "General block device for testing."
4702 msgstr ""
4703
4704 #. type: =item
4705 #: ../src/guestfs.pod:2490
4706 msgid "C</dev/sdb> 50MB"
4707 msgstr ""
4708
4709 #. type: textblock
4710 #: ../src/guestfs.pod:2492
4711 msgid ""
4712 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
4713 "operations."
4714 msgstr ""
4715
4716 #. type: =item
4717 #: ../src/guestfs.pod:2495
4718 msgid "C</dev/sdc> 10MB"
4719 msgstr ""
4720
4721 #. type: textblock
4722 #: ../src/guestfs.pod:2497
4723 msgid "Used in a few tests where two block devices are needed."
4724 msgstr ""
4725
4726 #. type: =item
4727 #: ../src/guestfs.pod:2499
4728 msgid "C</dev/sdd>"
4729 msgstr ""
4730
4731 #. type: textblock
4732 #: ../src/guestfs.pod:2501
4733 msgid "ISO with fixed content (see C<images/test.iso>)."
4734 msgstr ""
4735
4736 #. type: textblock
4737 #: ../src/guestfs.pod:2505
4738 msgid ""
4739 "To be able to run the tests in a reasonable amount of time, the libguestfs "
4740 "appliance and block devices are reused between tests.  So don't try testing "
4741 "L</guestfs_kill_subprocess> :-x"
4742 msgstr ""
4743
4744 #. type: textblock
4745 #: ../src/guestfs.pod:2509
4746 msgid ""
4747 "Each test starts with an initial scenario, selected using one of the "
4748 "C<Init*> expressions, described in C<generator/generator_types.ml>.  These "
4749 "initialize the disks mentioned above in a particular way as documented in "
4750 "C<generator_types.ml>.  You should not assume anything about the previous "
4751 "contents of other disks that are not initialized."
4752 msgstr ""
4753
4754 #. type: textblock
4755 #: ../src/guestfs.pod:2515
4756 msgid ""
4757 "You can add a prerequisite clause to any individual test.  This is a "
4758 "run-time check, which, if it fails, causes the test to be skipped.  Useful "
4759 "if testing a command which might not work on all variations of libguestfs "
4760 "builds.  A test that has prerequisite of C<Always> means to run "
4761 "unconditionally."
4762 msgstr ""
4763
4764 #. type: textblock
4765 #: ../src/guestfs.pod:2521
4766 msgid ""
4767 "In addition, packagers can skip individual tests by setting environment "
4768 "variables before running C<make check>."
4769 msgstr ""
4770
4771 #. type: verbatim
4772 #: ../src/guestfs.pod:2524
4773 #, no-wrap
4774 msgid ""
4775 " SKIP_TEST_<CMD>_<NUM>=1\n"
4776 "\n"
4777 msgstr ""
4778
4779 #. type: textblock
4780 #: ../src/guestfs.pod:2526
4781 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
4782 msgstr ""
4783
4784 #. type: textblock
4785 #: ../src/guestfs.pod:2528
4786 msgid "or:"
4787 msgstr ""
4788
4789 #. type: verbatim
4790 #: ../src/guestfs.pod:2530
4791 #, no-wrap
4792 msgid ""
4793 " SKIP_TEST_<CMD>=1\n"
4794 "\n"
4795 msgstr ""
4796
4797 #. type: textblock
4798 #: ../src/guestfs.pod:2532
4799 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
4800 msgstr ""
4801
4802 #. type: textblock
4803 #: ../src/guestfs.pod:2534
4804 msgid "Packagers can run only certain tests by setting for example:"
4805 msgstr ""
4806
4807 #. type: verbatim
4808 #: ../src/guestfs.pod:2536
4809 #, no-wrap
4810 msgid ""
4811 " TEST_ONLY=\"vfs_type zerofree\"\n"
4812 "\n"
4813 msgstr ""
4814
4815 #. type: textblock
4816 #: ../src/guestfs.pod:2538
4817 msgid ""
4818 "See C<capitests/tests.c> for more details of how these environment variables "
4819 "work."
4820 msgstr ""
4821
4822 #. type: =head2
4823 #: ../src/guestfs.pod:2541
4824 msgid "DEBUGGING NEW API ACTIONS"
4825 msgstr ""
4826
4827 #. type: textblock
4828 #: ../src/guestfs.pod:2543
4829 msgid "Test new actions work before submitting them."
4830 msgstr ""
4831
4832 #. type: textblock
4833 #: ../src/guestfs.pod:2545
4834 msgid "You can use guestfish to try out new commands."
4835 msgstr ""
4836
4837 #. type: textblock
4838 #: ../src/guestfs.pod:2547
4839 msgid ""
4840 "Debugging the daemon is a problem because it runs inside a minimal "
4841 "environment.  However you can fprintf messages in the daemon to stderr, and "
4842 "they will show up if you use C<guestfish -v>."
4843 msgstr ""
4844
4845 #. type: =head2
4846 #: ../src/guestfs.pod:2551
4847 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
4848 msgstr ""
4849
4850 #. type: textblock
4851 #: ../src/guestfs.pod:2553
4852 msgid ""
4853 "Our C source code generally adheres to some basic code-formatting "
4854 "conventions.  The existing code base is not totally consistent on this "
4855 "front, but we do prefer that contributed code be formatted similarly.  In "
4856 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
4857 "indentation level, and other than that, follow the K&R style."
4858 msgstr ""
4859
4860 #. type: textblock
4861 #: ../src/guestfs.pod:2559
4862 msgid ""
4863 "If you use Emacs, add the following to one of one of your start-up files "
4864 "(e.g., ~/.emacs), to help ensure that you get indentation right:"
4865 msgstr ""
4866
4867 #. type: verbatim
4868 #: ../src/guestfs.pod:2562
4869 #, no-wrap
4870 msgid ""
4871 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
4872 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
4873 " (add-hook 'find-file-hook\n"
4874 "     '(lambda () (if (and buffer-file-name\n"
4875 "                          (string-match \"/libguestfs\\\\>\"\n"
4876 "                              (buffer-file-name))\n"
4877 "                          (not (string-equal mode-name \"Change Log\"))\n"
4878 "                          (not (string-equal mode-name \"Makefile\")))\n"
4879 "                     (setq indent-tabs-mode nil))))\n"
4880 " \n"
4881 msgstr ""
4882
4883 #. type: verbatim
4884 #: ../src/guestfs.pod:2572
4885 #, no-wrap
4886 msgid ""
4887 " ;;; When editing C sources in libguestfs, use this style.\n"
4888 " (defun libguestfs-c-mode ()\n"
4889 "   \"C mode with adjusted defaults for use with libguestfs.\"\n"
4890 "   (interactive)\n"
4891 "   (c-set-style \"K&R\")\n"
4892 "   (setq c-indent-level 2)\n"
4893 "   (setq c-basic-offset 2))\n"
4894 " (add-hook 'c-mode-hook\n"
4895 "           '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
4896 "                               (buffer-file-name))\n"
4897 "                           (libguestfs-c-mode))))\n"
4898 "\n"
4899 msgstr ""
4900
4901 #. type: textblock
4902 #: ../src/guestfs.pod:2584
4903 msgid "Enable warnings when compiling (and fix any problems this finds):"
4904 msgstr ""
4905
4906 #. type: verbatim
4907 #: ../src/guestfs.pod:2587
4908 #, no-wrap
4909 msgid ""
4910 " ./configure --enable-gcc-warnings\n"
4911 "\n"
4912 msgstr ""
4913
4914 #. type: textblock
4915 #: ../src/guestfs.pod:2589
4916 msgid "Useful targets are:"
4917 msgstr ""
4918
4919 #. type: verbatim
4920 #: ../src/guestfs.pod:2591
4921 #, no-wrap
4922 msgid ""
4923 " make syntax-check  # checks the syntax of the C code\n"
4924 " make check         # runs the test suite\n"
4925 "\n"
4926 msgstr ""
4927
4928 #. type: =head2
4929 #: ../src/guestfs.pod:2594
4930 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
4931 msgstr ""
4932
4933 #. type: textblock
4934 #: ../src/guestfs.pod:2596
4935 msgid ""
4936 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
4937 "which are used to do shell quoting."
4938 msgstr ""
4939
4940 #. type: =item
4941 #: ../src/guestfs.pod:2601
4942 msgid "%Q"
4943 msgstr ""
4944
4945 #. type: textblock
4946 #: ../src/guestfs.pod:2603
4947 msgid ""
4948 "Simple shell quoted string.  Any spaces or other shell characters are "
4949 "escaped for you."
4950 msgstr ""
4951
4952 #. type: =item
4953 #: ../src/guestfs.pod:2606
4954 msgid "%R"
4955 msgstr ""
4956
4957 #. type: textblock
4958 #: ../src/guestfs.pod:2608
4959 msgid ""
4960 "Same as C<%Q> except the string is treated as a path which is prefixed by "
4961 "the sysroot."
4962 msgstr ""
4963
4964 #. type: textblock
4965 #: ../src/guestfs.pod:2613 ../fish/guestfish.pod:242 ../fish/guestfish.pod:615
4966 msgid "For example:"
4967 msgstr ""
4968
4969 #. type: verbatim
4970 #: ../src/guestfs.pod:2615
4971 #, no-wrap
4972 msgid ""
4973 " asprintf (&cmd, \"cat %R\", path);\n"
4974 "\n"
4975 msgstr ""
4976
4977 #. type: textblock
4978 #: ../src/guestfs.pod:2617
4979 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
4980 msgstr ""
4981
4982 #. type: textblock
4983 #: ../src/guestfs.pod:2619
4984 msgid ""
4985 "I<Note:> Do I<not> use these when you are passing parameters to the "
4986 "C<command{,r,v,rv}()> functions.  These parameters do NOT need to be quoted "
4987 "because they are not passed via the shell (instead, straight to exec).  You "
4988 "probably want to use the C<sysroot_path()> function however."
4989 msgstr ""
4990
4991 #. type: =head2
4992 #: ../src/guestfs.pod:2625
4993 msgid "SUBMITTING YOUR NEW API ACTIONS"
4994 msgstr ""
4995
4996 #. type: textblock
4997 #: ../src/guestfs.pod:2627
4998 msgid ""
4999 "Submit patches to the mailing list: "
5000 "L<http://www.redhat.com/mailman/listinfo/libguestfs> and CC to "
5001 "L<rjones@redhat.com>."
5002 msgstr ""
5003
5004 #. type: =head2
5005 #: ../src/guestfs.pod:2631
5006 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5007 msgstr ""
5008
5009 #. type: textblock
5010 #: ../src/guestfs.pod:2633
5011 msgid "We support i18n (gettext anyhow) in the library."
5012 msgstr ""
5013
5014 #. type: textblock
5015 #: ../src/guestfs.pod:2635
5016 msgid ""
5017 "However many messages come from the daemon, and we don't translate those at "
5018 "the moment.  One reason is that the appliance generally has all locale files "
5019 "removed from it, because they take up a lot of space.  So we'd have to readd "
5020 "some of those, as well as copying our PO files into the appliance."
5021 msgstr ""
5022
5023 #. type: textblock
5024 #: ../src/guestfs.pod:2641
5025 msgid ""
5026 "Debugging messages are never translated, since they are intended for the "
5027 "programmers."
5028 msgstr ""
5029
5030 #. type: =head2
5031 #: ../src/guestfs.pod:2644
5032 msgid "SOURCE CODE SUBDIRECTORIES"
5033 msgstr ""
5034
5035 #. type: =item
5036 #: ../src/guestfs.pod:2648 ../src/guestfs-actions.pod:5827 ../fish/guestfish-actions.pod:3920
5037 msgid "C<appliance>"
5038 msgstr ""
5039
5040 #. type: textblock
5041 #: ../src/guestfs.pod:2650
5042 msgid "The libguestfs appliance, build scripts and so on."
5043 msgstr ""
5044
5045 #. type: =item
5046 #: ../src/guestfs.pod:2652
5047 msgid "C<capitests>"
5048 msgstr ""
5049
5050 #. type: textblock
5051 #: ../src/guestfs.pod:2654
5052 msgid "Automated tests of the C API."
5053 msgstr ""
5054
5055 #. type: =item
5056 #: ../src/guestfs.pod:2656
5057 msgid "C<cat>"
5058 msgstr ""
5059
5060 #. type: textblock
5061 #: ../src/guestfs.pod:2658
5062 msgid ""
5063 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
5064 "documentation."
5065 msgstr ""
5066
5067 #. type: =item
5068 #: ../src/guestfs.pod:2661
5069 msgid "C<contrib>"
5070 msgstr ""
5071
5072 #. type: textblock
5073 #: ../src/guestfs.pod:2663
5074 msgid "Outside contributions, experimental parts."
5075 msgstr ""
5076
5077 #. type: =item
5078 #: ../src/guestfs.pod:2665
5079 msgid "C<daemon>"
5080 msgstr ""
5081
5082 #. type: textblock
5083 #: ../src/guestfs.pod:2667
5084 msgid ""
5085 "The daemon that runs inside the libguestfs appliance and carries out "
5086 "actions."
5087 msgstr ""
5088
5089 #. type: =item
5090 #: ../src/guestfs.pod:2670
5091 msgid "C<df>"
5092 msgstr ""
5093
5094 #. type: textblock
5095 #: ../src/guestfs.pod:2672
5096 msgid "L<virt-df(1)> command and documentation."
5097 msgstr ""
5098
5099 #. type: =item
5100 #: ../src/guestfs.pod:2674
5101 msgid "C<edit>"
5102 msgstr ""
5103
5104 #. type: textblock
5105 #: ../src/guestfs.pod:2676
5106 msgid "L<virt-edit(1)> command and documentation."
5107 msgstr ""
5108
5109 #. type: =item
5110 #: ../src/guestfs.pod:2678
5111 msgid "C<examples>"
5112 msgstr ""
5113
5114 #. type: textblock
5115 #: ../src/guestfs.pod:2680
5116 msgid "C API example code."
5117 msgstr ""
5118
5119 #. type: =item
5120 #: ../src/guestfs.pod:2682
5121 msgid "C<fish>"
5122 msgstr ""
5123
5124 #. type: textblock
5125 #: ../src/guestfs.pod:2684
5126 msgid ""
5127 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5128 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
5129 "L<virt-tar-out(1)>."
5130 msgstr ""
5131
5132 #. type: =item
5133 #: ../src/guestfs.pod:2688
5134 msgid "C<fuse>"
5135 msgstr ""
5136
5137 #. type: textblock
5138 #: ../src/guestfs.pod:2690
5139 msgid "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5140 msgstr ""
5141
5142 #. type: =item
5143 #: ../src/guestfs.pod:2692
5144 msgid "C<generator>"
5145 msgstr ""
5146
5147 #. type: textblock
5148 #: ../src/guestfs.pod:2694
5149 msgid ""
5150 "The crucially important generator, used to automatically generate large "
5151 "amounts of boilerplate C code for things like RPC and bindings."
5152 msgstr ""
5153
5154 #. type: =item
5155 #: ../src/guestfs.pod:2697
5156 msgid "C<images>"
5157 msgstr ""
5158
5159 #. type: textblock
5160 #: ../src/guestfs.pod:2699
5161 msgid "Files used by the test suite."
5162 msgstr ""
5163
5164 #. type: textblock
5165 #: ../src/guestfs.pod:2701
5166 msgid "Some \"phony\" guest images which we test against."
5167 msgstr ""
5168
5169 #. type: =item
5170 #: ../src/guestfs.pod:2703
5171 msgid "C<inspector>"
5172 msgstr ""
5173
5174 #. type: textblock
5175 #: ../src/guestfs.pod:2705
5176 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5177 msgstr ""
5178
5179 #. type: =item
5180 #: ../src/guestfs.pod:2707
5181 msgid "C<logo>"
5182 msgstr ""
5183
5184 #. type: textblock
5185 #: ../src/guestfs.pod:2709
5186 msgid "Logo used on the website.  The fish is called Arthur by the way."
5187 msgstr ""
5188
5189 #. type: =item
5190 #: ../src/guestfs.pod:2711
5191 msgid "C<m4>"
5192 msgstr ""
5193
5194 #. type: textblock
5195 #: ../src/guestfs.pod:2713
5196 msgid "M4 macros used by autoconf."
5197 msgstr ""
5198
5199 #. type: =item
5200 #: ../src/guestfs.pod:2715
5201 msgid "C<po>"
5202 msgstr ""
5203
5204 #. type: textblock
5205 #: ../src/guestfs.pod:2717
5206 msgid "Translations of simple gettext strings."
5207 msgstr ""
5208
5209 #. type: =item
5210 #: ../src/guestfs.pod:2719
5211 msgid "C<po-docs>"
5212 msgstr ""
5213
5214 #. type: textblock
5215 #: ../src/guestfs.pod:2721
5216 msgid ""
5217 "The build infrastructure and PO files for translations of manpages and POD "
5218 "files.  Eventually this will be combined with the C<po> directory, but that "
5219 "is rather complicated."
5220 msgstr ""
5221
5222 #. type: =item
5223 #: ../src/guestfs.pod:2725
5224 msgid "C<regressions>"
5225 msgstr ""
5226
5227 #. type: textblock
5228 #: ../src/guestfs.pod:2727
5229 msgid "Regression tests."
5230 msgstr ""
5231
5232 #. type: =item
5233 #: ../src/guestfs.pod:2729
5234 msgid "C<rescue>"
5235 msgstr ""
5236
5237 #. type: textblock
5238 #: ../src/guestfs.pod:2731
5239 msgid "L<virt-rescue(1)> command and documentation."
5240 msgstr ""
5241
5242 #. type: =item
5243 #: ../src/guestfs.pod:2733
5244 msgid "C<src>"
5245 msgstr ""
5246
5247 #. type: textblock
5248 #: ../src/guestfs.pod:2735
5249 msgid "Source code to the C library."
5250 msgstr ""
5251
5252 #. type: =item
5253 #: ../src/guestfs.pod:2737
5254 msgid "C<tools>"
5255 msgstr ""
5256
5257 #. type: textblock
5258 #: ../src/guestfs.pod:2739
5259 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5260 msgstr ""
5261
5262 #. type: =item
5263 #: ../src/guestfs.pod:2741
5264 msgid "C<test-tool>"
5265 msgstr ""
5266
5267 #. type: textblock
5268 #: ../src/guestfs.pod:2743
5269 msgid ""
5270 "Test tool for end users to test if their qemu/kernel combination will work "
5271 "with libguestfs."
5272 msgstr ""
5273
5274 #. type: =item
5275 #: ../src/guestfs.pod:2746
5276 msgid "C<csharp>"
5277 msgstr ""
5278
5279 #. type: =item
5280 #: ../src/guestfs.pod:2748
5281 msgid "C<haskell>"
5282 msgstr ""
5283
5284 #. type: =item
5285 #: ../src/guestfs.pod:2750
5286 msgid "C<java>"
5287 msgstr ""
5288
5289 #. type: =item
5290 #: ../src/guestfs.pod:2752
5291 msgid "C<ocaml>"
5292 msgstr ""
5293
5294 #. type: =item
5295 #: ../src/guestfs.pod:2754
5296 msgid "C<php>"
5297 msgstr ""
5298
5299 #. type: =item
5300 #: ../src/guestfs.pod:2756
5301 msgid "C<perl>"
5302 msgstr ""
5303
5304 #. type: =item
5305 #: ../src/guestfs.pod:2758
5306 msgid "C<python>"
5307 msgstr ""
5308
5309 #. type: =item
5310 #: ../src/guestfs.pod:2760
5311 msgid "C<ruby>"
5312 msgstr ""
5313
5314 #. type: textblock
5315 #: ../src/guestfs.pod:2762
5316 msgid "Language bindings."
5317 msgstr ""
5318
5319 #. type: =head1
5320 #: ../src/guestfs.pod:2766
5321 msgid "LIMITS"
5322 msgstr ""
5323
5324 #. type: =head2
5325 #: ../src/guestfs.pod:2768
5326 msgid "PROTOCOL LIMITS"
5327 msgstr ""
5328
5329 #. type: textblock
5330 #: ../src/guestfs.pod:2770
5331 msgid ""
5332 "Internally libguestfs uses a message-based protocol to pass API calls and "
5333 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
5334 "plenty more detail about this).  The maximum message size used by the "
5335 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
5336 "aware of this limit.  The API calls which may be affected are individually "
5337 "documented, with a link back to this section of the documentation."
5338 msgstr ""
5339
5340 #. type: textblock
5341 #: ../src/guestfs.pod:2778
5342 msgid ""
5343 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
5344 "a simple string.  Because this string is at some point internally encoded as "
5345 "a message, the maximum size that it can return is slightly under 4 MB.  If "
5346 "the requested file is larger than this then you will get an error."
5347 msgstr ""
5348
5349 #. type: textblock
5350 #: ../src/guestfs.pod:2784
5351 msgid ""
5352 "In order to transfer large files into and out of the guest filesystem, you "
5353 "need to use particular calls that support this.  The sections L</UPLOADING> "
5354 "and L</DOWNLOADING> document how to do this."
5355 msgstr ""
5356
5357 #. type: textblock
5358 #: ../src/guestfs.pod:2788
5359 msgid ""
5360 "You might also consider mounting the disk image using our FUSE filesystem "
5361 "support (L<guestmount(1)>)."
5362 msgstr ""
5363
5364 #. type: =head2
5365 #: ../src/guestfs.pod:2791
5366 msgid "MAXIMUM NUMBER OF DISKS"
5367 msgstr ""
5368
5369 #. type: textblock
5370 #: ../src/guestfs.pod:2793
5371 msgid "When using virtio disks (the default) the current limit is B<25> disks."
5372 msgstr ""
5373
5374 #. type: textblock
5375 #: ../src/guestfs.pod:2796
5376 msgid ""
5377 "Virtio itself consumes 1 virtual PCI slot per disk, and PCI is limited to 31 "
5378 "slots.  However febootstrap only understands disks with names C</dev/vda> "
5379 "through C</dev/vdz> (26 letters) and it reserves one disk for its own "
5380 "purposes."
5381 msgstr ""
5382
5383 #. type: textblock
5384 #: ../src/guestfs.pod:2801
5385 msgid ""
5386 "We are working to substantially raise this limit in future versions but it "
5387 "requires complex changes to qemu."
5388 msgstr ""
5389
5390 #. type: textblock
5391 #: ../src/guestfs.pod:2804
5392 msgid ""
5393 "In future versions of libguestfs it should also be possible to \"hot plug\" "
5394 "disks (add and remove disks after calling L</guestfs_launch>).  This also "
5395 "requires changes to qemu."
5396 msgstr ""
5397
5398 #. type: =head2
5399 #: ../src/guestfs.pod:2808
5400 msgid "MAXIMUM NUMBER OF PARTITIONS PER DISK"
5401 msgstr ""
5402
5403 #. type: textblock
5404 #: ../src/guestfs.pod:2810
5405 msgid "Virtio limits the maximum number of partitions per disk to B<15>."
5406 msgstr ""
5407
5408 #. type: textblock
5409 #: ../src/guestfs.pod:2812
5410 msgid ""
5411 "This is because it reserves 4 bits for the minor device number (thus "
5412 "C</dev/vda>, and C</dev/vda1> through C</dev/vda15>)."
5413 msgstr ""
5414
5415 #. type: textblock
5416 #: ../src/guestfs.pod:2815
5417 msgid ""
5418 "If you attach a disk with more than 15 partitions, the extra partitions are "
5419 "ignored by libguestfs."
5420 msgstr ""
5421
5422 #. type: =head2
5423 #: ../src/guestfs.pod:2818
5424 msgid "MAXIMUM SIZE OF A DISK"
5425 msgstr ""
5426
5427 #. type: textblock
5428 #: ../src/guestfs.pod:2820
5429 msgid "Probably the limit is between 2**63-1 and 2**64-1 bytes."
5430 msgstr ""
5431
5432 #. type: textblock
5433 #: ../src/guestfs.pod:2822
5434 msgid ""
5435 "We have tested block devices up to 1 exabyte (2**60 or "
5436 "1,152,921,504,606,846,976 bytes) using sparse files backed by an XFS host "
5437 "filesystem."
5438 msgstr ""
5439
5440 #. type: textblock
5441 #: ../src/guestfs.pod:2826
5442 msgid ""
5443 "Although libguestfs probably does not impose any limit, the underlying host "
5444 "storage will.  If you store disk images on a host ext4 filesystem, then the "
5445 "maximum size will be limited by the maximum ext4 file size (currently 16 "
5446 "TB).  If you store disk images as host logical volumes then you are limited "
5447 "by the maximum size of an LV."
5448 msgstr ""
5449
5450 #. type: textblock
5451 #: ../src/guestfs.pod:2832
5452 msgid ""
5453 "For the hugest disk image files, we recommend using XFS on the host for "
5454 "storage."
5455 msgstr ""
5456
5457 #. type: =head2
5458 #: ../src/guestfs.pod:2835
5459 msgid "MAXIMUM SIZE OF A PARTITION"
5460 msgstr ""
5461
5462 #. type: textblock
5463 #: ../src/guestfs.pod:2837
5464 msgid ""
5465 "The MBR (ie. classic MS-DOS) partitioning scheme uses 32 bit sector "
5466 "numbers.  Assuming a 512 byte sector size, this means that MBR cannot "
5467 "address a partition located beyond 2 TB on the disk."
5468 msgstr ""
5469
5470 #. type: textblock
5471 #: ../src/guestfs.pod:2841
5472 msgid ""
5473 "It is recommended that you use GPT partitions on disks which are larger than "
5474 "this size.  GPT uses 64 bit sector numbers and so can address partitions "
5475 "which are theoretically larger than the largest disk we could support."
5476 msgstr ""
5477
5478 #. type: =head2
5479 #: ../src/guestfs.pod:2846
5480 msgid "MAXIMUM SIZE OF A FILESYSTEM, FILES, DIRECTORIES"
5481 msgstr ""
5482
5483 #. type: textblock
5484 #: ../src/guestfs.pod:2848
5485 msgid ""
5486 "This depends on the filesystem type.  libguestfs itself does not impose any "
5487 "known limit.  Consult Wikipedia or the filesystem documentation to find out "
5488 "what these limits are."
5489 msgstr ""
5490
5491 #. type: =head2
5492 #: ../src/guestfs.pod:2852
5493 msgid "MAXIMUM UPLOAD AND DOWNLOAD"
5494 msgstr ""
5495
5496 #. type: textblock
5497 #: ../src/guestfs.pod:2854
5498 msgid ""
5499 "The API functions L</guestfs_upload>, L</guestfs_download>, "
5500 "L</guestfs_tar_in>, L</guestfs_tar_out> and the like allow unlimited sized "
5501 "uploads and downloads."
5502 msgstr ""
5503
5504 #. type: =head2
5505 #: ../src/guestfs.pod:2858
5506 msgid "INSPECTION LIMITS"
5507 msgstr ""
5508
5509 #. type: textblock
5510 #: ../src/guestfs.pod:2860
5511 msgid ""
5512 "The inspection code has several arbitrary limits on things like the size of "
5513 "Windows Registry hive it will read, and the length of product name.  These "
5514 "are intended to stop a malicious guest from consuming arbitrary amounts of "
5515 "memory and disk space on the host, and should not be reached in practice.  "
5516 "See the source code for more information."
5517 msgstr ""
5518
5519 #. type: =head1
5520 #: ../src/guestfs.pod:2866 ../fish/guestfish.pod:1017 ../test-tool/libguestfs-test-tool.pod:82
5521 msgid "ENVIRONMENT VARIABLES"
5522 msgstr ""
5523
5524 #. type: =item
5525 #: ../src/guestfs.pod:2870 ../fish/guestfish.pod:1043
5526 msgid "LIBGUESTFS_APPEND"
5527 msgstr ""
5528
5529 #. type: textblock
5530 #: ../src/guestfs.pod:2872 ../fish/guestfish.pod:1045
5531 msgid "Pass additional options to the guest kernel."
5532 msgstr ""
5533
5534 #. type: =item
5535 #: ../src/guestfs.pod:2874 ../fish/guestfish.pod:1047
5536 msgid "LIBGUESTFS_DEBUG"
5537 msgstr ""
5538
5539 #. type: textblock
5540 #: ../src/guestfs.pod:2876
5541 msgid ""
5542 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
5543 "effect as calling C<guestfs_set_verbose (g, 1)>."
5544 msgstr ""
5545
5546 #. type: =item
5547 #: ../src/guestfs.pod:2879 ../fish/guestfish.pod:1052
5548 msgid "LIBGUESTFS_MEMSIZE"
5549 msgstr ""
5550
5551 #. type: textblock
5552 #: ../src/guestfs.pod:2881 ../fish/guestfish.pod:1054
5553 msgid "Set the memory allocated to the qemu process, in megabytes.  For example:"
5554 msgstr ""
5555
5556 #. type: verbatim
5557 #: ../src/guestfs.pod:2884 ../fish/guestfish.pod:1057
5558 #, no-wrap
5559 msgid ""
5560 " LIBGUESTFS_MEMSIZE=700\n"
5561 "\n"
5562 msgstr ""
5563
5564 #. type: =item
5565 #: ../src/guestfs.pod:2886 ../fish/guestfish.pod:1059
5566 msgid "LIBGUESTFS_PATH"
5567 msgstr ""
5568
5569 #. type: textblock
5570 #: ../src/guestfs.pod:2888
5571 msgid ""
5572 "Set the path that libguestfs uses to search for a supermin appliance.  See "
5573 "the discussion of paths in section L</PATH> above."
5574 msgstr ""
5575
5576 #. type: =item
5577 #: ../src/guestfs.pod:2891 ../fish/guestfish.pod:1064
5578 msgid "LIBGUESTFS_QEMU"
5579 msgstr ""
5580
5581 #. type: textblock
5582 #: ../src/guestfs.pod:2893 ../fish/guestfish.pod:1066
5583 msgid ""
5584 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
5585 "which was found at compile time by the configure script is used."
5586 msgstr ""
5587
5588 #. type: textblock
5589 #: ../src/guestfs.pod:2897
5590 msgid "See also L</QEMU WRAPPERS> above."
5591 msgstr ""
5592
5593 #. type: =item
5594 #: ../src/guestfs.pod:2899 ../fish/guestfish.pod:1070
5595 msgid "LIBGUESTFS_TRACE"
5596 msgstr ""
5597
5598 #. type: textblock
5599 #: ../src/guestfs.pod:2901
5600 msgid ""
5601 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
5602 "effect as calling C<guestfs_set_trace (g, 1)>."
5603 msgstr ""
5604
5605 #. type: =item
5606 #: ../src/guestfs.pod:2904 ../fish/guestfish.pod:1079
5607 msgid "TMPDIR"
5608 msgstr ""
5609
5610 #. type: textblock
5611 #: ../src/guestfs.pod:2906 ../fish/guestfish.pod:1081
5612 msgid ""
5613 "Location of temporary directory, defaults to C</tmp> except for the cached "
5614 "supermin appliance which defaults to C</var/tmp>."
5615 msgstr ""
5616
5617 #. type: textblock
5618 #: ../src/guestfs.pod:2909 ../fish/guestfish.pod:1084
5619 msgid ""
5620 "If libguestfs was compiled to use the supermin appliance then the real "
5621 "appliance is cached in this directory, shared between all handles belonging "
5622 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
5623 "use in case C</var/tmp> is not large enough."
5624 msgstr ""
5625
5626 #. type: =head1
5627 #: ../src/guestfs.pod:2917 ../fish/guestfish.pod:1151 ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:269 ../tools/virt-win-reg.pl:743 ../tools/virt-list-filesystems.pl:189 ../tools/virt-tar.pl:286 ../tools/virt-make-fs.pl:539 ../tools/virt-list-partitions.pl:257
5628 msgid "SEE ALSO"
5629 msgstr ""
5630
5631 #. type: textblock
5632 #: ../src/guestfs.pod:2919
5633 msgid ""
5634 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, "
5635 "L<guestfs-ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, "
5636 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, "
5637 "L<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, "
5638 "L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, "
5639 "L<virt-rescue(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, "
5640 "L<virt-win-reg(1)>, L<qemu(1)>, L<febootstrap(1)>, L<hivex(3)>, "
5641 "L<http://libguestfs.org/>."
5642 msgstr ""
5643
5644 #. type: textblock
5645 #: ../src/guestfs.pod:2946
5646 msgid ""
5647 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, "
5648 "L<lvm(8)>, L<disktype(1)>."
5649 msgstr ""
5650
5651 #. type: =head1
5652 #: ../src/guestfs.pod:2953 ../tools/virt-win-reg.pl:758 ../tools/virt-make-fs.pl:553
5653 msgid "BUGS"
5654 msgstr ""
5655
5656 #. type: textblock
5657 #: ../src/guestfs.pod:2955
5658 msgid "To get a list of bugs against libguestfs use this link:"
5659 msgstr ""
5660
5661 #. type: textblock
5662 #: ../src/guestfs.pod:2957
5663 msgid "L<https://bugzilla.redhat.com/buglist.cgi?component=libguestfs&product=Virtualization+Tools>"
5664 msgstr ""
5665
5666 #. type: textblock
5667 #: ../src/guestfs.pod:2959
5668 msgid "To report a new bug against libguestfs use this link:"
5669 msgstr ""
5670
5671 #. type: textblock
5672 #: ../src/guestfs.pod:2961
5673 msgid "L<https://bugzilla.redhat.com/enter_bug.cgi?component=libguestfs&product=Virtualization+Tools>"
5674 msgstr ""
5675
5676 #. type: textblock
5677 #: ../src/guestfs.pod:2963
5678 msgid "When reporting a bug, please check:"
5679 msgstr ""
5680
5681 #. type: textblock
5682 #: ../src/guestfs.pod:2969
5683 msgid "That the bug hasn't been reported already."
5684 msgstr ""
5685
5686 #. type: textblock
5687 #: ../src/guestfs.pod:2973
5688 msgid "That you are testing a recent version."
5689 msgstr ""
5690
5691 #. type: textblock
5692 #: ../src/guestfs.pod:2977
5693 msgid "Describe the bug accurately, and give a way to reproduce it."
5694 msgstr ""
5695
5696 #. type: textblock
5697 #: ../src/guestfs.pod:2981
5698 msgid ""
5699 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
5700 "bug report."
5701 msgstr ""
5702
5703 #. type: =head1
5704 #: ../src/guestfs.pod:2986 ../fish/guestfish.pod:1174 ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:280
5705 msgid "AUTHORS"
5706 msgstr ""
5707
5708 #. type: textblock
5709 #: ../src/guestfs.pod:2988 ../fish/guestfish.pod:1176 ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:282
5710 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
5711 msgstr ""
5712
5713 #. type: =head1
5714 #: ../src/guestfs.pod:2990 ../fish/guestfish.pod:1178 ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:284 ../tools/virt-win-reg.pl:773 ../tools/virt-list-filesystems.pl:206 ../tools/virt-tar.pl:305 ../tools/virt-make-fs.pl:568 ../tools/virt-list-partitions.pl:273
5715 msgid "COPYRIGHT"
5716 msgstr ""
5717
5718 #. type: textblock
5719 #: ../src/guestfs.pod:2992 ../fish/guestfish.pod:1180 ../test-tool/libguestfs-test-tool.pod:99
5720 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
5721 msgstr ""
5722
5723 #. type: textblock
5724 #: ../src/guestfs.pod:2995
5725 msgid ""
5726 "This library is free software; you can redistribute it and/or modify it "
5727 "under the terms of the GNU Lesser General Public License as published by the "
5728 "Free Software Foundation; either version 2 of the License, or (at your "
5729 "option) any later version."
5730 msgstr ""
5731
5732 #. type: textblock
5733 #: ../src/guestfs.pod:3000
5734 msgid ""
5735 "This library is distributed in the hope that it will be useful, but WITHOUT "
5736 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
5737 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
5738 "for more details."
5739 msgstr ""
5740
5741 #. type: textblock
5742 #: ../src/guestfs.pod:3005
5743 msgid ""
5744 "You should have received a copy of the GNU Lesser General Public License "
5745 "along with this library; if not, write to the Free Software Foundation, "
5746 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
5747 msgstr ""
5748
5749 #. type: =head2
5750 #: ../src/guestfs-actions.pod:1
5751 msgid "guestfs_add_cdrom"
5752 msgstr ""
5753
5754 #. type: verbatim
5755 #: ../src/guestfs-actions.pod:3
5756 #, no-wrap
5757 msgid ""
5758 " int\n"
5759 " guestfs_add_cdrom (guestfs_h *g,\n"
5760 "                    const char *filename);\n"
5761 "\n"
5762 msgstr ""
5763
5764 #. type: textblock
5765 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
5766 msgid "This function adds a virtual CD-ROM disk image to the guest."
5767 msgstr ""
5768
5769 #. type: textblock
5770 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
5771 msgid "This is equivalent to the qemu parameter I<-cdrom filename>."
5772 msgstr ""
5773
5774 #. type: textblock
5775 #: ../src/guestfs-actions.pod:17
5776 msgid ""
5777 "This call checks for the existence of C<filename>.  This stops you from "
5778 "specifying other types of drive which are supported by qemu such as C<nbd:> "
5779 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
5780 "instead."
5781 msgstr ""
5782
5783 #. type: textblock
5784 #: ../src/guestfs-actions.pod:24
5785 msgid ""
5786 "If you just want to add an ISO file (often you use this as an efficient way "
5787 "to transfer large files into the guest), then you should probably use "
5788 "C<guestfs_add_drive_ro> instead."
5789 msgstr ""
5790
5791 #. type: textblock
5792 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:140 ../src/guestfs-actions.pod:201 ../src/guestfs-actions.pod:238 ../src/guestfs-actions.pod:252 ../src/guestfs-actions.pod:273 ../src/guestfs-actions.pod:293 ../src/guestfs-actions.pod:307 ../src/guestfs-actions.pod:422 ../src/guestfs-actions.pod:442 ../src/guestfs-actions.pod:456 ../src/guestfs-actions.pod:501 ../src/guestfs-actions.pod:529 ../src/guestfs-actions.pod:547 ../src/guestfs-actions.pod:614 ../src/guestfs-actions.pod:647 ../src/guestfs-actions.pod:661 ../src/guestfs-actions.pod:676 ../src/guestfs-actions.pod:775 ../src/guestfs-actions.pod:793 ../src/guestfs-actions.pod:807 ../src/guestfs-actions.pod:821 ../src/guestfs-actions.pod:982 ../src/guestfs-actions.pod:1002 ../src/guestfs-actions.pod:1020 ../src/guestfs-actions.pod:1104 ../src/guestfs-actions.pod:1122 ../src/guestfs-actions.pod:1141 ../src/guestfs-actions.pod:1155 ../src/guestfs-actions.pod:1175 ../src/guestfs-actions.pod:1245 ../src/guestfs-actions.pod:1276 ../src/guestfs-actions.pod:1301 ../src/guestfs-actions.pod:1343 ../src/guestfs-actions.pod:1449 ../src/guestfs-actions.pod:1483 ../src/guestfs-actions.pod:1701 ../src/guestfs-actions.pod:1723 ../src/guestfs-actions.pod:1810 ../src/guestfs-actions.pod:2272 ../src/guestfs-actions.pod:2416 ../src/guestfs-actions.pod:2477 ../src/guestfs-actions.pod:2512 ../src/guestfs-actions.pod:3465 ../src/guestfs-actions.pod:3480 ../src/guestfs-actions.pod:3505 ../src/guestfs-actions.pod:3660 ../src/guestfs-actions.pod:3674 ../src/guestfs-actions.pod:3687 ../src/guestfs-actions.pod:3701 ../src/guestfs-actions.pod:3716 ../src/guestfs-actions.pod:3752 ../src/guestfs-actions.pod:3824 ../src/guestfs-actions.pod:3844 ../src/guestfs-actions.pod:3861 ../src/guestfs-actions.pod:3884 ../src/guestfs-actions.pod:3907 ../src/guestfs-actions.pod:3939 ../src/guestfs-actions.pod:3958 ../src/guestfs-actions.pod:3977 ../src/guestfs-actions.pod:4012 ../src/guestfs-actions.pod:4024 ../src/guestfs-actions.pod:4060 ../src/guestfs-actions.pod:4076 ../src/guestfs-actions.pod:4089 ../src/guestfs-actions.pod:4104 ../src/guestfs-actions.pod:4121 ../src/guestfs-actions.pod:4214 ../src/guestfs-actions.pod:4234 ../src/guestfs-actions.pod:4247 ../src/guestfs-actions.pod:4298 ../src/guestfs-actions.pod:4316 ../src/guestfs-actions.pod:4334 ../src/guestfs-actions.pod:4350 ../src/guestfs-actions.pod:4364 ../src/guestfs-actions.pod:4378 ../src/guestfs-actions.pod:4395 ../src/guestfs-actions.pod:4410 ../src/guestfs-actions.pod:4430 ../src/guestfs-actions.pod:4488 ../src/guestfs-actions.pod:4561 ../src/guestfs-actions.pod:4592 ../src/guestfs-actions.pod:4611 ../src/guestfs-actions.pod:4630 ../src/guestfs-actions.pod:4642 ../src/guestfs-actions.pod:4659 ../src/guestfs-actions.pod:4672 ../src/guestfs-actions.pod:4687 ../src/guestfs-actions.pod:4702 ../src/guestfs-actions.pod:4737 ../src/guestfs-actions.pod:4759 ../src/guestfs-actions.pod:4779 ../src/guestfs-actions.pod:4793 ../src/guestfs-actions.pod:4810 ../src/guestfs-actions.pod:4859 ../src/guestfs-actions.pod:4896 ../src/guestfs-actions.pod:4910 ../src/guestfs-actions.pod:4938 ../src/guestfs-actions.pod:4955 ../src/guestfs-actions.pod:4973 ../src/guestfs-actions.pod:5107 ../src/guestfs-actions.pod:5164 ../src/guestfs-actions.pod:5186 ../src/guestfs-actions.pod:5204 ../src/guestfs-actions.pod:5236 ../src/guestfs-actions.pod:5302 ../src/guestfs-actions.pod:5319 ../src/guestfs-actions.pod:5332 ../src/guestfs-actions.pod:5346 ../src/guestfs-actions.pod:5635 ../src/guestfs-actions.pod:5654 ../src/guestfs-actions.pod:5673 ../src/guestfs-actions.pod:5685 ../src/guestfs-actions.pod:5697 ../src/guestfs-actions.pod:5711 ../src/guestfs-actions.pod:5723 ../src/guestfs-actions.pod:5737 ../src/guestfs-actions.pod:5753 ../src/guestfs-actions.pod:5774 ../src/guestfs-actions.pod:5793 ../src/guestfs-actions.pod:5812 ../src/guestfs-actions.pod:5842 ../src/guestfs-actions.pod:5858 ../src/guestfs-actions.pod:5881 ../src/guestfs-actions.pod:5899 ../src/guestfs-actions.pod:5918 ../src/guestfs-actions.pod:5939 ../src/guestfs-actions.pod:5958 ../src/guestfs-actions.pod:5975 ../src/guestfs-actions.pod:6003 ../src/guestfs-actions.pod:6027 ../src/guestfs-actions.pod:6046 ../src/guestfs-actions.pod:6070 ../src/guestfs-actions.pod:6089 ../src/guestfs-actions.pod:6104 ../src/guestfs-actions.pod:6123 ../src/guestfs-actions.pod:6160 ../src/guestfs-actions.pod:6190 ../src/guestfs-actions.pod:6223 ../src/guestfs-actions.pod:6345 ../src/guestfs-actions.pod:6466 ../src/guestfs-actions.pod:6478 ../src/guestfs-actions.pod:6491 ../src/guestfs-actions.pod:6504 ../src/guestfs-actions.pod:6526 ../src/guestfs-actions.pod:6539 ../src/guestfs-actions.pod:6552 ../src/guestfs-actions.pod:6565 ../src/guestfs-actions.pod:6580 ../src/guestfs-actions.pod:6639 ../src/guestfs-actions.pod:6656 ../src/guestfs-actions.pod:6672 ../src/guestfs-actions.pod:6688 ../src/guestfs-actions.pod:6705 ../src/guestfs-actions.pod:6718 ../src/guestfs-actions.pod:6738 ../src/guestfs-actions.pod:6774 ../src/guestfs-actions.pod:6788 ../src/guestfs-actions.pod:6829 ../src/guestfs-actions.pod:6842 ../src/guestfs-actions.pod:6860 ../src/guestfs-actions.pod:6894 ../src/guestfs-actions.pod:6930 ../src/guestfs-actions.pod:7049 ../src/guestfs-actions.pod:7067 ../src/guestfs-actions.pod:7081 ../src/guestfs-actions.pod:7136 ../src/guestfs-actions.pod:7149 ../src/guestfs-actions.pod:7194 ../src/guestfs-actions.pod:7227 ../src/guestfs-actions.pod:7288 ../src/guestfs-actions.pod:7314 ../src/guestfs-actions.pod:7380 ../src/guestfs-actions.pod:7399 ../src/guestfs-actions.pod:7428
5793 msgid "This function returns 0 on success or -1 on error."
5794 msgstr ""
5795
5796 #. type: textblock
5797 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:254 ../src/guestfs-actions.pod:275 ../fish/guestfish-actions.pod:28 ../fish/guestfish-actions.pod:163 ../fish/guestfish-actions.pod:177
5798 msgid ""
5799 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
5800 "instead."
5801 msgstr ""
5802
5803 #. type: textblock
5804 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:257 ../src/guestfs-actions.pod:278 ../src/guestfs-actions.pod:1454 ../src/guestfs-actions.pod:1950 ../src/guestfs-actions.pod:1971 ../src/guestfs-actions.pod:4435 ../src/guestfs-actions.pod:4742 ../src/guestfs-actions.pod:6168 ../src/guestfs-actions.pod:6198 ../src/guestfs-actions.pod:6231 ../src/guestfs-actions.pod:6290 ../src/guestfs-actions.pod:7232 ../src/guestfs-actions.pod:7322 ../src/guestfs-actions.pod:7491 ../fish/guestfish-actions.pod:31 ../fish/guestfish-actions.pod:166 ../fish/guestfish-actions.pod:180 ../fish/guestfish-actions.pod:961 ../fish/guestfish-actions.pod:1324 ../fish/guestfish-actions.pod:1338 ../fish/guestfish-actions.pod:3013 ../fish/guestfish-actions.pod:3210 ../fish/guestfish-actions.pod:4182 ../fish/guestfish-actions.pod:4205 ../fish/guestfish-actions.pod:4227 ../fish/guestfish-actions.pod:4265 ../fish/guestfish-actions.pod:4906 ../fish/guestfish-actions.pod:5003
5805 msgid ""
5806 "Deprecated functions will not be removed from the API, but the fact that "
5807 "they are deprecated indicates that there are problems with correct use of "
5808 "these functions."
5809 msgstr ""
5810
5811 #. type: textblock
5812 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:142 ../src/guestfs-actions.pod:1106 ../src/guestfs-actions.pod:1922 ../src/guestfs-actions.pod:2020 ../src/guestfs-actions.pod:2123 ../src/guestfs-actions.pod:3467 ../src/guestfs-actions.pod:3487 ../src/guestfs-actions.pod:4746 ../src/guestfs-actions.pod:5860 ../src/guestfs-actions.pod:5977 ../src/guestfs-actions.pod:6091 ../src/guestfs-actions.pod:6582 ../src/guestfs-actions.pod:6707 ../src/guestfs-actions.pod:7236
5813 msgid "(Added in 0.3)"
5814 msgstr ""
5815
5816 #. type: =head2
5817 #: ../src/guestfs-actions.pod:41
5818 msgid "guestfs_add_domain"
5819 msgstr ""
5820
5821 #. type: verbatim
5822 #: ../src/guestfs-actions.pod:43
5823 #, no-wrap
5824 msgid ""
5825 " int\n"
5826 " guestfs_add_domain (guestfs_h *g,\n"
5827 "                     const char *dom,\n"
5828 "                     ...);\n"
5829 "\n"
5830 msgstr ""
5831
5832 #. type: textblock
5833 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:151 ../src/guestfs-actions.pod:4449
5834 msgid ""
5835 "You may supply a list of optional arguments to this call.  Use zero or more "
5836 "of the following pairs of parameters, and terminate the list with C<-1> on "
5837 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
5838 msgstr ""
5839
5840 #. type: verbatim
5841 #: ../src/guestfs-actions.pod:53
5842 #, no-wrap
5843 msgid ""
5844 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
5845 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
5846 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
5847 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
5848 " GUESTFS_ADD_DOMAIN_ALLOWUUID, int allowuuid,\n"
5849 "\n"
5850 msgstr ""
5851
5852 #. type: textblock
5853 #: ../src/guestfs-actions.pod:59
5854 msgid ""
5855 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
5856 "It works by connecting to libvirt, requesting the domain and domain XML from "
5857 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
5858 "one."
5859 msgstr ""
5860
5861 #. type: textblock
5862 #: ../src/guestfs-actions.pod:64 ../fish/guestfish-actions.pod:46
5863 msgid ""
5864 "The number of disks added is returned.  This operation is atomic: if an "
5865 "error is returned, then no disks are added."
5866 msgstr ""
5867
5868 #. type: textblock
5869 #: ../src/guestfs-actions.pod:67 ../fish/guestfish-actions.pod:49
5870 msgid ""
5871 "This function does some minimal checks to make sure the libvirt domain is "
5872 "not running (unless C<readonly> is true).  In a future version we will try "
5873 "to acquire the libvirt lock on each disk."
5874 msgstr ""
5875
5876 #. type: textblock
5877 #: ../src/guestfs-actions.pod:71 ../fish/guestfish-actions.pod:53
5878 msgid ""
5879 "Disks must be accessible locally.  This often means that adding disks from a "
5880 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
5881 "unless those disks are accessible via the same device path locally too."
5882 msgstr ""
5883
5884 #. type: textblock
5885 #: ../src/guestfs-actions.pod:76 ../fish/guestfish-actions.pod:58
5886 msgid ""
5887 "The optional C<libvirturi> parameter sets the libvirt URI (see "
5888 "L<http://libvirt.org/uri.html>).  If this is not set then we connect to the "
5889 "default libvirt URI (or one set through an environment variable, see the "
5890 "libvirt documentation for full details)."
5891 msgstr ""
5892
5893 #. type: textblock
5894 #: ../src/guestfs-actions.pod:82 ../fish/guestfish-actions.pod:64
5895 msgid ""
5896 "The optional C<live> flag controls whether this call will try to connect to "
5897 "a running virtual machine C<guestfsd> process if it sees a suitable "
5898 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
5899 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING "
5900 "DAEMONS> for more information."
5901 msgstr ""
5902
5903 #. type: textblock
5904 #: ../src/guestfs-actions.pod:89 ../fish/guestfish-actions.pod:71
5905 msgid ""
5906 "If the C<allowuuid> flag is true (default is false) then a UUID I<may> be "
5907 "passed instead of the domain name.  The C<dom> string is treated as a UUID "
5908 "first and looked up, and if that lookup fails then we treat C<dom> as a name "
5909 "as usual."
5910 msgstr ""
5911
5912 #. type: textblock
5913 #: ../src/guestfs-actions.pod:94
5914 msgid ""
5915 "The other optional parameters are passed directly through to "
5916 "C<guestfs_add_drive_opts>."
5917 msgstr ""
5918
5919 #. type: textblock
5920 #: ../src/guestfs-actions.pod:97 ../src/guestfs-actions.pod:350 ../src/guestfs-actions.pod:515 ../src/guestfs-actions.pod:693 ../src/guestfs-actions.pod:724 ../src/guestfs-actions.pod:742 ../src/guestfs-actions.pod:761 ../src/guestfs-actions.pod:1321 ../src/guestfs-actions.pod:1680 ../src/guestfs-actions.pod:1883 ../src/guestfs-actions.pod:1992 ../src/guestfs-actions.pod:2032 ../src/guestfs-actions.pod:2087 ../src/guestfs-actions.pod:2110 ../src/guestfs-actions.pod:2403 ../src/guestfs-actions.pod:2786 ../src/guestfs-actions.pod:2807 ../src/guestfs-actions.pod:4882 ../src/guestfs-actions.pod:5010 ../src/guestfs-actions.pod:5416 ../src/guestfs-actions.pod:5442 ../src/guestfs-actions.pod:6815 ../src/guestfs-actions.pod:7247 ../src/guestfs-actions.pod:7260 ../src/guestfs-actions.pod:7273
5921 msgid "On error this function returns -1."
5922 msgstr ""
5923
5924 #. type: textblock
5925 #: ../src/guestfs-actions.pod:99
5926 msgid "(Added in 1.7.4)"
5927 msgstr ""
5928
5929 #. type: =head2
5930 #: ../src/guestfs-actions.pod:101
5931 msgid "guestfs_add_domain_va"
5932 msgstr ""
5933
5934 #. type: verbatim
5935 #: ../src/guestfs-actions.pod:103
5936 #, no-wrap
5937 msgid ""
5938 " int\n"
5939 " guestfs_add_domain_va (guestfs_h *g,\n"
5940 "                        const char *dom,\n"
5941 "                        va_list args);\n"
5942 "\n"
5943 msgstr ""
5944
5945 #. type: textblock
5946 #: ../src/guestfs-actions.pod:108
5947 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
5948 msgstr ""
5949
5950 #. type: textblock
5951 #: ../src/guestfs-actions.pod:110 ../src/guestfs-actions.pod:121 ../src/guestfs-actions.pod:214 ../src/guestfs-actions.pod:225 ../src/guestfs-actions.pod:4502 ../src/guestfs-actions.pod:4514
5952 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
5953 msgstr ""
5954
5955 #. type: =head2
5956 #: ../src/guestfs-actions.pod:112
5957 msgid "guestfs_add_domain_argv"
5958 msgstr ""
5959
5960 #. type: verbatim
5961 #: ../src/guestfs-actions.pod:114
5962 #, no-wrap
5963 msgid ""
5964 " int\n"
5965 " guestfs_add_domain_argv (guestfs_h *g,\n"
5966 "                          const char *dom,\n"
5967 "                          const struct guestfs_add_domain_argv *optargs);\n"
5968 "\n"
5969 msgstr ""
5970
5971 #. type: textblock
5972 #: ../src/guestfs-actions.pod:119
5973 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
5974 msgstr ""
5975
5976 #. type: =head2
5977 #: ../src/guestfs-actions.pod:123
5978 msgid "guestfs_add_drive"
5979 msgstr ""
5980
5981 #. type: verbatim
5982 #: ../src/guestfs-actions.pod:125
5983 #, no-wrap
5984 msgid ""
5985 " int\n"
5986 " guestfs_add_drive (guestfs_h *g,\n"
5987 "                    const char *filename);\n"
5988 "\n"
5989 msgstr ""
5990
5991 #. type: textblock
5992 #: ../src/guestfs-actions.pod:129
5993 msgid ""
5994 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
5995 "optional parameters, so the disk is added writable, with the format being "
5996 "detected automatically."
5997 msgstr ""
5998
5999 #. type: textblock
6000 #: ../src/guestfs-actions.pod:133
6001 msgid ""
6002 "Automatic detection of the format opens you up to a potential security hole "
6003 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6004 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6005 "you should think about replacing calls to this function with calls to "
6006 "C<guestfs_add_drive_opts>, and specifying the format."
6007 msgstr ""
6008
6009 #. type: =head2
6010 #: ../src/guestfs-actions.pod:144
6011 msgid "guestfs_add_drive_opts"
6012 msgstr ""
6013
6014 #. type: verbatim
6015 #: ../src/guestfs-actions.pod:146
6016 #, no-wrap
6017 msgid ""
6018 " int\n"
6019 " guestfs_add_drive_opts (guestfs_h *g,\n"
6020 "                         const char *filename,\n"
6021 "                         ...);\n"
6022 "\n"
6023 msgstr ""
6024
6025 #. type: verbatim
6026 #: ../src/guestfs-actions.pod:156
6027 #, no-wrap
6028 msgid ""
6029 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6030 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6031 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6032 "\n"
6033 msgstr ""
6034
6035 #. type: textblock
6036 #: ../src/guestfs-actions.pod:160 ../fish/guestfish-actions.pod:102
6037 msgid ""
6038 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6039 "The first time you call this function, the disk appears as C</dev/sda>, the "
6040 "second time as C</dev/sdb>, and so on."
6041 msgstr ""
6042
6043 #. type: textblock
6044 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:107
6045 msgid ""
6046 "You don't necessarily need to be root when using libguestfs.  However you "
6047 "obviously do need sufficient permissions to access the filename for whatever "
6048 "operations you want to perform (ie. read access if you just want to read the "
6049 "image or write access if you want to modify the image)."
6050 msgstr ""
6051
6052 #. type: textblock
6053 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:113
6054 msgid "This call checks that C<filename> exists."
6055 msgstr ""
6056
6057 #. type: textblock
6058 #: ../src/guestfs-actions.pod:173 ../src/guestfs-actions.pod:4460 ../fish/guestfish-actions.pod:115 ../fish/guestfish-actions.pod:3024
6059 msgid "The optional arguments are:"
6060 msgstr ""
6061
6062 #. type: =item
6063 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:119
6064 msgid "C<readonly>"
6065 msgstr ""
6066
6067 #. type: textblock
6068 #: ../src/guestfs-actions.pod:179 ../fish/guestfish-actions.pod:121
6069 msgid ""
6070 "If true then the image is treated as read-only.  Writes are still allowed, "
6071 "but they are stored in a temporary snapshot overlay which is discarded at "
6072 "the end.  The disk that you add is not modified."
6073 msgstr ""
6074
6075 #. type: =item
6076 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:125
6077 msgid "C<format>"
6078 msgstr ""
6079
6080 #. type: textblock
6081 #: ../src/guestfs-actions.pod:185
6082 msgid ""
6083 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
6084 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6085 "Possible formats include C<raw> and C<qcow2>."
6086 msgstr ""
6087
6088 #. type: textblock
6089 #: ../src/guestfs-actions.pod:189 ../fish/guestfish-actions.pod:131
6090 msgid ""
6091 "Automatic detection of the format opens you up to a potential security hole "
6092 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6093 "RHBZ#642934.  Specifying the format closes this security hole."
6094 msgstr ""
6095
6096 #. type: =item
6097 #: ../src/guestfs-actions.pod:194 ../fish/guestfish-actions.pod:136
6098 msgid "C<iface>"
6099 msgstr ""
6100
6101 #. type: textblock
6102 #: ../src/guestfs-actions.pod:196
6103 msgid ""
6104 "This rarely-used option lets you emulate the behaviour of the deprecated "
6105 "C<guestfs_add_drive_with_if> call (q.v.)"
6106 msgstr ""
6107
6108 #. type: textblock
6109 #: ../src/guestfs-actions.pod:203
6110 msgid "(Added in 1.5.23)"
6111 msgstr ""
6112
6113 #. type: =head2
6114 #: ../src/guestfs-actions.pod:205
6115 msgid "guestfs_add_drive_opts_va"
6116 msgstr ""
6117
6118 #. type: verbatim
6119 #: ../src/guestfs-actions.pod:207
6120 #, no-wrap
6121 msgid ""
6122 " int\n"
6123 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6124 "                            const char *filename,\n"
6125 "                            va_list args);\n"
6126 "\n"
6127 msgstr ""
6128
6129 #. type: textblock
6130 #: ../src/guestfs-actions.pod:212
6131 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6132 msgstr ""
6133
6134 #. type: =head2
6135 #: ../src/guestfs-actions.pod:216
6136 msgid "guestfs_add_drive_opts_argv"
6137 msgstr ""
6138
6139 #. type: verbatim
6140 #: ../src/guestfs-actions.pod:218
6141 #, no-wrap
6142 msgid ""
6143 " int\n"
6144 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6145 "                              const char *filename,\n"
6146 "                              const struct guestfs_add_drive_opts_argv "
6147 "*optargs);\n"
6148 "\n"
6149 msgstr ""
6150
6151 #. type: textblock
6152 #: ../src/guestfs-actions.pod:223
6153 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6154 msgstr ""
6155
6156 #. type: =head2
6157 #: ../src/guestfs-actions.pod:227
6158 msgid "guestfs_add_drive_ro"
6159 msgstr ""
6160
6161 #. type: verbatim
6162 #: ../src/guestfs-actions.pod:229
6163 #, no-wrap
6164 msgid ""
6165 " int\n"
6166 " guestfs_add_drive_ro (guestfs_h *g,\n"
6167 "                       const char *filename);\n"
6168 "\n"
6169 msgstr ""
6170
6171 #. type: textblock
6172 #: ../src/guestfs-actions.pod:233
6173 msgid ""
6174 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6175 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6176 "disk is added read-only, with the format being detected automatically."
6177 msgstr ""
6178
6179 #. type: textblock
6180 #: ../src/guestfs-actions.pod:240
6181 msgid "(Added in 1.0.38)"
6182 msgstr ""
6183
6184 #. type: =head2
6185 #: ../src/guestfs-actions.pod:242
6186 msgid "guestfs_add_drive_ro_with_if"
6187 msgstr ""
6188
6189 #. type: verbatim
6190 #: ../src/guestfs-actions.pod:244
6191 #, no-wrap
6192 msgid ""
6193 " int\n"
6194 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6195 "                               const char *filename,\n"
6196 "                               const char *iface);\n"
6197 "\n"
6198 msgstr ""
6199
6200 #. type: textblock
6201 #: ../src/guestfs-actions.pod:249
6202 msgid ""
6203 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6204 "QEMU interface emulation to use at run time."
6205 msgstr ""
6206
6207 #. type: textblock
6208 #: ../src/guestfs-actions.pod:261 ../src/guestfs-actions.pod:282 ../src/guestfs-actions.pod:2362
6209 msgid "(Added in 1.0.84)"
6210 msgstr ""
6211
6212 #. type: =head2
6213 #: ../src/guestfs-actions.pod:263
6214 msgid "guestfs_add_drive_with_if"
6215 msgstr ""
6216
6217 #. type: verbatim
6218 #: ../src/guestfs-actions.pod:265
6219 #, no-wrap
6220 msgid ""
6221 " int\n"
6222 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6223 "                            const char *filename,\n"
6224 "                            const char *iface);\n"
6225 "\n"
6226 msgstr ""
6227
6228 #. type: textblock
6229 #: ../src/guestfs-actions.pod:270
6230 msgid ""
6231 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
6232 "QEMU interface emulation to use at run time."
6233 msgstr ""
6234
6235 #. type: =head2
6236 #: ../src/guestfs-actions.pod:284
6237 msgid "guestfs_aug_clear"
6238 msgstr ""
6239
6240 #. type: verbatim
6241 #: ../src/guestfs-actions.pod:286
6242 #, no-wrap
6243 msgid ""
6244 " int\n"
6245 " guestfs_aug_clear (guestfs_h *g,\n"
6246 "                    const char *augpath);\n"
6247 "\n"
6248 msgstr ""
6249
6250 #. type: textblock
6251 #: ../src/guestfs-actions.pod:290 ../fish/guestfish-actions.pod:188
6252 msgid ""
6253 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
6254 "L<augtool(1)> C<clear> command."
6255 msgstr ""
6256
6257 #. type: textblock
6258 #: ../src/guestfs-actions.pod:295 ../src/guestfs-actions.pod:2112
6259 msgid "(Added in 1.3.4)"
6260 msgstr ""
6261
6262 #. type: =head2
6263 #: ../src/guestfs-actions.pod:297
6264 msgid "guestfs_aug_close"
6265 msgstr ""
6266
6267 #. type: verbatim
6268 #: ../src/guestfs-actions.pod:299
6269 #, no-wrap
6270 msgid ""
6271 " int\n"
6272 " guestfs_aug_close (guestfs_h *g);\n"
6273 "\n"
6274 msgstr ""
6275
6276 #. type: textblock
6277 #: ../src/guestfs-actions.pod:302
6278 msgid ""
6279 "Close the current Augeas handle and free up any resources used by it.  After "
6280 "calling this, you have to call C<guestfs_aug_init> again before you can use "
6281 "any other Augeas functions."
6282 msgstr ""
6283
6284 #. type: textblock
6285 #: ../src/guestfs-actions.pod:309 ../src/guestfs-actions.pod:334 ../src/guestfs-actions.pod:352 ../src/guestfs-actions.pod:366 ../src/guestfs-actions.pod:424 ../src/guestfs-actions.pod:444 ../src/guestfs-actions.pod:458 ../src/guestfs-actions.pod:489 ../src/guestfs-actions.pod:503 ../src/guestfs-actions.pod:517 ../src/guestfs-actions.pod:531 ../src/guestfs-actions.pod:549 ../src/guestfs-actions.pod:5493
6286 msgid "(Added in 0.7)"
6287 msgstr ""
6288
6289 #. type: =head2
6290 #: ../src/guestfs-actions.pod:311
6291 msgid "guestfs_aug_defnode"
6292 msgstr ""
6293
6294 #. type: verbatim
6295 #: ../src/guestfs-actions.pod:313
6296 #, no-wrap
6297 msgid ""
6298 " struct guestfs_int_bool *\n"
6299 " guestfs_aug_defnode (guestfs_h *g,\n"
6300 "                      const char *name,\n"
6301 "                      const char *expr,\n"
6302 "                      const char *val);\n"
6303 "\n"
6304 msgstr ""
6305
6306 #. type: textblock
6307 #: ../src/guestfs-actions.pod:319 ../fish/guestfish-actions.pod:204
6308 msgid "Defines a variable C<name> whose value is the result of evaluating C<expr>."
6309 msgstr ""
6310
6311 #. type: textblock
6312 #: ../src/guestfs-actions.pod:322
6313 msgid ""
6314 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
6315 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
6316 "containing that single node."
6317 msgstr ""
6318
6319 #. type: textblock
6320 #: ../src/guestfs-actions.pod:326 ../fish/guestfish-actions.pod:211
6321 msgid ""
6322 "On success this returns a pair containing the number of nodes in the "
6323 "nodeset, and a boolean flag if a node was created."
6324 msgstr ""
6325
6326 #. type: textblock
6327 #: ../src/guestfs-actions.pod:330
6328 msgid ""
6329 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
6330 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
6331 msgstr ""
6332
6333 #. type: =head2
6334 #: ../src/guestfs-actions.pod:336
6335 msgid "guestfs_aug_defvar"
6336 msgstr ""
6337
6338 #. type: verbatim
6339 #: ../src/guestfs-actions.pod:338
6340 #, no-wrap
6341 msgid ""
6342 " int\n"
6343 " guestfs_aug_defvar (guestfs_h *g,\n"
6344 "                     const char *name,\n"
6345 "                     const char *expr);\n"
6346 "\n"
6347 msgstr ""
6348
6349 #. type: textblock
6350 #: ../src/guestfs-actions.pod:343 ../fish/guestfish-actions.pod:219
6351 msgid ""
6352 "Defines an Augeas variable C<name> whose value is the result of evaluating "
6353 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
6354 msgstr ""
6355
6356 #. type: textblock
6357 #: ../src/guestfs-actions.pod:347 ../fish/guestfish-actions.pod:223
6358 msgid ""
6359 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
6360 "evaluates to something which is not a nodeset."
6361 msgstr ""
6362
6363 #. type: =head2
6364 #: ../src/guestfs-actions.pod:354
6365 msgid "guestfs_aug_get"
6366 msgstr ""
6367
6368 #. type: verbatim
6369 #: ../src/guestfs-actions.pod:356
6370 #, no-wrap
6371 msgid ""
6372 " char *\n"
6373 " guestfs_aug_get (guestfs_h *g,\n"
6374 "                  const char *augpath);\n"
6375 "\n"
6376 msgstr ""
6377
6378 #. type: textblock
6379 #: ../src/guestfs-actions.pod:360 ../fish/guestfish-actions.pod:230
6380 msgid ""
6381 "Look up the value associated with C<path>.  If C<path> matches exactly one "
6382 "node, the C<value> is returned."
6383 msgstr ""
6384
6385 #. type: textblock
6386 #: ../src/guestfs-actions.pod:363 ../src/guestfs-actions.pod:863 ../src/guestfs-actions.pod:881 ../src/guestfs-actions.pod:941 ../src/guestfs-actions.pod:957 ../src/guestfs-actions.pod:1060 ../src/guestfs-actions.pod:1190 ../src/guestfs-actions.pod:1207 ../src/guestfs-actions.pod:1226 ../src/guestfs-actions.pod:1360 ../src/guestfs-actions.pod:1551 ../src/guestfs-actions.pod:1663 ../src/guestfs-actions.pod:1826 ../src/guestfs-actions.pod:1843 ../src/guestfs-actions.pod:1910 ../src/guestfs-actions.pod:1944 ../src/guestfs-actions.pod:1965 ../src/guestfs-actions.pod:2135 ../src/guestfs-actions.pod:2327 ../src/guestfs-actions.pod:2534 ../src/guestfs-actions.pod:2627 ../src/guestfs-actions.pod:2738 ../src/guestfs-actions.pod:2758 ../src/guestfs-actions.pod:2878 ../src/guestfs-actions.pod:2909 ../src/guestfs-actions.pod:2933 ../src/guestfs-actions.pod:2970 ../src/guestfs-actions.pod:3030 ../src/guestfs-actions.pod:3053 ../src/guestfs-actions.pod:3074 ../src/guestfs-actions.pod:3646 ../src/guestfs-actions.pod:3996 ../src/guestfs-actions.pod:4166 ../src/guestfs-actions.pod:4276 ../src/guestfs-actions.pod:5028 ../src/guestfs-actions.pod:5221 ../src/guestfs-actions.pod:5391 ../src/guestfs-actions.pod:5569 ../src/guestfs-actions.pod:5618 ../src/guestfs-actions.pod:6251 ../src/guestfs-actions.pod:6267 ../src/guestfs-actions.pod:6284 ../src/guestfs-actions.pod:6315 ../src/guestfs-actions.pod:6989 ../src/guestfs-actions.pod:7008 ../src/guestfs-actions.pod:7026 ../src/guestfs-actions.pod:7206 ../src/guestfs-actions.pod:7485
6387 msgid ""
6388 "This function returns a string, or NULL on error.  I<The caller must free "
6389 "the returned string after use>."
6390 msgstr ""
6391
6392 #. type: =head2
6393 #: ../src/guestfs-actions.pod:368
6394 msgid "guestfs_aug_init"
6395 msgstr ""
6396
6397 #. type: verbatim
6398 #: ../src/guestfs-actions.pod:370
6399 #, no-wrap
6400 msgid ""
6401 " int\n"
6402 " guestfs_aug_init (guestfs_h *g,\n"
6403 "                   const char *root,\n"
6404 "                   int flags);\n"
6405 "\n"
6406 msgstr ""
6407
6408 #. type: textblock
6409 #: ../src/guestfs-actions.pod:375 ../fish/guestfish-actions.pod:237
6410 msgid ""
6411 "Create a new Augeas handle for editing configuration files.  If there was "
6412 "any previous Augeas handle associated with this guestfs session, then it is "
6413 "closed."
6414 msgstr ""
6415
6416 #. type: textblock
6417 #: ../src/guestfs-actions.pod:379
6418 msgid "You must call this before using any other C<guestfs_aug_*> commands."
6419 msgstr ""
6420
6421 #. type: textblock
6422 #: ../src/guestfs-actions.pod:382 ../fish/guestfish-actions.pod:244
6423 msgid "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
6424 msgstr ""
6425
6426 #. type: textblock
6427 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:247
6428 msgid ""
6429 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
6430 "logical I<or> of the following integers:"
6431 msgstr ""
6432
6433 #. type: =item
6434 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:253
6435 msgid "C<AUG_SAVE_BACKUP> = 1"
6436 msgstr ""
6437
6438 #. type: textblock
6439 #: ../src/guestfs-actions.pod:393 ../fish/guestfish-actions.pod:255
6440 msgid "Keep the original file with a C<.augsave> extension."
6441 msgstr ""
6442
6443 #. type: =item
6444 #: ../src/guestfs-actions.pod:395 ../fish/guestfish-actions.pod:257
6445 msgid "C<AUG_SAVE_NEWFILE> = 2"
6446 msgstr ""
6447
6448 #. type: textblock
6449 #: ../src/guestfs-actions.pod:397 ../fish/guestfish-actions.pod:259
6450 msgid ""
6451 "Save changes into a file with extension C<.augnew>, and do not overwrite "
6452 "original.  Overrides C<AUG_SAVE_BACKUP>."
6453 msgstr ""
6454
6455 #. type: =item
6456 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:262
6457 msgid "C<AUG_TYPE_CHECK> = 4"
6458 msgstr ""
6459
6460 #. type: textblock
6461 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:264
6462 msgid "Typecheck lenses (can be expensive)."
6463 msgstr ""
6464
6465 #. type: =item
6466 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:266
6467 msgid "C<AUG_NO_STDINC> = 8"
6468 msgstr ""
6469
6470 #. type: textblock
6471 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:268
6472 msgid "Do not use standard load path for modules."
6473 msgstr ""
6474
6475 #. type: =item
6476 #: ../src/guestfs-actions.pod:408 ../fish/guestfish-actions.pod:270
6477 msgid "C<AUG_SAVE_NOOP> = 16"
6478 msgstr ""
6479
6480 #. type: textblock
6481 #: ../src/guestfs-actions.pod:410 ../fish/guestfish-actions.pod:272
6482 msgid "Make save a no-op, just record what would have been changed."
6483 msgstr ""
6484
6485 #. type: =item
6486 #: ../src/guestfs-actions.pod:412 ../fish/guestfish-actions.pod:274
6487 msgid "C<AUG_NO_LOAD> = 32"
6488 msgstr ""
6489
6490 #. type: textblock
6491 #: ../src/guestfs-actions.pod:414
6492 msgid "Do not load the tree in C<guestfs_aug_init>."
6493 msgstr ""
6494
6495 #. type: textblock
6496 #: ../src/guestfs-actions.pod:418
6497 msgid "To close the handle, you can call C<guestfs_aug_close>."
6498 msgstr ""
6499
6500 #. type: textblock
6501 #: ../src/guestfs-actions.pod:420 ../fish/guestfish-actions.pod:282
6502 msgid "To find out more about Augeas, see L<http://augeas.net/>."
6503 msgstr ""
6504
6505 #. type: =head2
6506 #: ../src/guestfs-actions.pod:426
6507 msgid "guestfs_aug_insert"
6508 msgstr ""
6509
6510 #. type: verbatim
6511 #: ../src/guestfs-actions.pod:428
6512 #, no-wrap
6513 msgid ""
6514 " int\n"
6515 " guestfs_aug_insert (guestfs_h *g,\n"
6516 "                     const char *augpath,\n"
6517 "                     const char *label,\n"
6518 "                     int before);\n"
6519 "\n"
6520 msgstr ""
6521
6522 #. type: textblock
6523 #: ../src/guestfs-actions.pod:434 ../fish/guestfish-actions.pod:288
6524 msgid ""
6525 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
6526 "or after C<path> (depending on the boolean flag C<before>)."
6527 msgstr ""
6528
6529 #. type: textblock
6530 #: ../src/guestfs-actions.pod:438 ../fish/guestfish-actions.pod:292
6531 msgid ""
6532 "C<path> must match exactly one existing node in the tree, and C<label> must "
6533 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
6534 msgstr ""
6535
6536 #. type: =head2
6537 #: ../src/guestfs-actions.pod:446
6538 msgid "guestfs_aug_load"
6539 msgstr ""
6540
6541 #. type: verbatim
6542 #: ../src/guestfs-actions.pod:448
6543 #, no-wrap
6544 msgid ""
6545 " int\n"
6546 " guestfs_aug_load (guestfs_h *g);\n"
6547 "\n"
6548 msgstr ""
6549
6550 #. type: textblock
6551 #: ../src/guestfs-actions.pod:451 ../fish/guestfish-actions.pod:300
6552 msgid "Load files into the tree."
6553 msgstr ""
6554
6555 #. type: textblock
6556 #: ../src/guestfs-actions.pod:453 ../fish/guestfish-actions.pod:302
6557 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
6558 msgstr ""
6559
6560 #. type: =head2
6561 #: ../src/guestfs-actions.pod:460
6562 msgid "guestfs_aug_ls"
6563 msgstr ""
6564
6565 #. type: verbatim
6566 #: ../src/guestfs-actions.pod:462
6567 #, no-wrap
6568 msgid ""
6569 " char **\n"
6570 " guestfs_aug_ls (guestfs_h *g,\n"
6571 "                 const char *augpath);\n"
6572 "\n"
6573 msgstr ""
6574
6575 #. type: textblock
6576 #: ../src/guestfs-actions.pod:466
6577 msgid ""
6578 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
6579 "sorting the resulting nodes into alphabetical order."
6580 msgstr ""
6581
6582 #. type: textblock
6583 #: ../src/guestfs-actions.pod:469 ../src/guestfs-actions.pod:485 ../src/guestfs-actions.pod:631 ../src/guestfs-actions.pod:1079 ../src/guestfs-actions.pod:1375 ../src/guestfs-actions.pod:1394 ../src/guestfs-actions.pod:1497 ../src/guestfs-actions.pod:1516 ../src/guestfs-actions.pod:1765 ../src/guestfs-actions.pod:2207 ../src/guestfs-actions.pod:2223 ../src/guestfs-actions.pod:2242 ../src/guestfs-actions.pod:2285 ../src/guestfs-actions.pod:2309 ../src/guestfs-actions.pod:2380 ../src/guestfs-actions.pod:2429 ../src/guestfs-actions.pod:2696 ../src/guestfs-actions.pod:2987 ../src/guestfs-actions.pod:3276 ../src/guestfs-actions.pod:3566 ../src/guestfs-actions.pod:3628 ../src/guestfs-actions.pod:3733 ../src/guestfs-actions.pod:4138 ../src/guestfs-actions.pod:4843 ../src/guestfs-actions.pod:5363 ../src/guestfs-actions.pod:5489 ../src/guestfs-actions.pod:5603 ../src/guestfs-actions.pod:6331 ../src/guestfs-actions.pod:6392 ../src/guestfs-actions.pod:6447 ../src/guestfs-actions.pod:6593 ../src/guestfs-actions.pod:6617 ../src/guestfs-actions.pod:7099 ../src/guestfs-actions.pod:7119 ../src/guestfs-actions.pod:7166 ../src/guestfs-actions.pod:7338 ../src/guestfs-actions.pod:7357 ../src/guestfs-actions.pod:7442 ../src/guestfs-actions.pod:7461 ../src/guestfs-actions.pod:7507 ../src/guestfs-actions.pod:7526
6584 msgid ""
6585 "This function returns a NULL-terminated array of strings (like "
6586 "L<environ(3)>), or NULL if there was an error.  I<The caller must free the "
6587 "strings and the array after use>."
6588 msgstr ""
6589
6590 #. type: textblock
6591 #: ../src/guestfs-actions.pod:473 ../src/guestfs-actions.pod:1004 ../src/guestfs-actions.pod:1022 ../src/guestfs-actions.pod:1432 ../src/guestfs-actions.pod:3354 ../src/guestfs-actions.pod:3385 ../src/guestfs-actions.pod:3979 ../src/guestfs-actions.pod:4029 ../src/guestfs-actions.pod:4216 ../src/guestfs-actions.pod:4249 ../src/guestfs-actions.pod:4412 ../src/guestfs-actions.pod:4847 ../src/guestfs-actions.pod:5304 ../src/guestfs-actions.pod:5699 ../src/guestfs-actions.pod:5713 ../src/guestfs-actions.pod:5725 ../src/guestfs-actions.pod:6172 ../src/guestfs-actions.pod:6831 ../src/guestfs-actions.pod:6844 ../src/guestfs-actions.pod:7083 ../src/guestfs-actions.pod:7326
6592 msgid "(Added in 0.8)"
6593 msgstr ""
6594
6595 #. type: =head2
6596 #: ../src/guestfs-actions.pod:475
6597 msgid "guestfs_aug_match"
6598 msgstr ""
6599
6600 #. type: verbatim
6601 #: ../src/guestfs-actions.pod:477
6602 #, no-wrap
6603 msgid ""
6604 " char **\n"
6605 " guestfs_aug_match (guestfs_h *g,\n"
6606 "                    const char *augpath);\n"
6607 "\n"
6608 msgstr ""
6609
6610 #. type: textblock
6611 #: ../src/guestfs-actions.pod:481 ../fish/guestfish-actions.pod:316
6612 msgid ""
6613 "Returns a list of paths which match the path expression C<path>.  The "
6614 "returned paths are sufficiently qualified so that they match exactly one "
6615 "node in the current tree."
6616 msgstr ""
6617
6618 #. type: =head2
6619 #: ../src/guestfs-actions.pod:491
6620 msgid "guestfs_aug_mv"
6621 msgstr ""
6622
6623 #. type: verbatim
6624 #: ../src/guestfs-actions.pod:493
6625 #, no-wrap
6626 msgid ""
6627 " int\n"
6628 " guestfs_aug_mv (guestfs_h *g,\n"
6629 "                 const char *src,\n"
6630 "                 const char *dest);\n"
6631 "\n"
6632 msgstr ""
6633
6634 #. type: textblock
6635 #: ../src/guestfs-actions.pod:498 ../fish/guestfish-actions.pod:324
6636 msgid ""
6637 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
6638 "C<dest> is overwritten if it exists."
6639 msgstr ""
6640
6641 #. type: =head2
6642 #: ../src/guestfs-actions.pod:505
6643 msgid "guestfs_aug_rm"
6644 msgstr ""
6645
6646 #. type: verbatim
6647 #: ../src/guestfs-actions.pod:507
6648 #, no-wrap
6649 msgid ""
6650 " int\n"
6651 " guestfs_aug_rm (guestfs_h *g,\n"
6652 "                 const char *augpath);\n"
6653 "\n"
6654 msgstr ""
6655
6656 #. type: textblock
6657 #: ../src/guestfs-actions.pod:511 ../fish/guestfish-actions.pod:331
6658 msgid "Remove C<path> and all of its children."
6659 msgstr ""
6660
6661 #. type: textblock
6662 #: ../src/guestfs-actions.pod:513 ../fish/guestfish-actions.pod:333
6663 msgid "On success this returns the number of entries which were removed."
6664 msgstr ""
6665
6666 #. type: =head2
6667 #: ../src/guestfs-actions.pod:519
6668 msgid "guestfs_aug_save"
6669 msgstr ""
6670
6671 #. type: verbatim
6672 #: ../src/guestfs-actions.pod:521
6673 #, no-wrap
6674 msgid ""
6675 " int\n"
6676 " guestfs_aug_save (guestfs_h *g);\n"
6677 "\n"
6678 msgstr ""
6679
6680 #. type: textblock
6681 #: ../src/guestfs-actions.pod:524 ../fish/guestfish-actions.pod:339
6682 msgid "This writes all pending changes to disk."
6683 msgstr ""
6684
6685 #. type: textblock
6686 #: ../src/guestfs-actions.pod:526
6687 msgid ""
6688 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
6689 "are saved."
6690 msgstr ""
6691
6692 #. type: =head2
6693 #: ../src/guestfs-actions.pod:533
6694 msgid "guestfs_aug_set"
6695 msgstr ""
6696
6697 #. type: verbatim
6698 #: ../src/guestfs-actions.pod:535
6699 #, no-wrap
6700 msgid ""
6701 " int\n"
6702 " guestfs_aug_set (guestfs_h *g,\n"
6703 "                  const char *augpath,\n"
6704 "                  const char *val);\n"
6705 "\n"
6706 msgstr ""
6707
6708 #. type: textblock
6709 #: ../src/guestfs-actions.pod:540 ../fish/guestfish-actions.pod:348
6710 msgid "Set the value associated with C<path> to C<val>."
6711 msgstr ""
6712
6713 #. type: textblock
6714 #: ../src/guestfs-actions.pod:542
6715 msgid ""
6716 "In the Augeas API, it is possible to clear a node by setting the value to "
6717 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
6718 "this call.  Instead you must use the C<guestfs_aug_clear> call."
6719 msgstr ""
6720
6721 #. type: =head2
6722 #: ../src/guestfs-actions.pod:551
6723 msgid "guestfs_available"
6724 msgstr ""
6725
6726 #. type: verbatim
6727 #: ../src/guestfs-actions.pod:553
6728 #, no-wrap
6729 msgid ""
6730 " int\n"
6731 " guestfs_available (guestfs_h *g,\n"
6732 "                    char *const *groups);\n"
6733 "\n"
6734 msgstr ""
6735
6736 #. type: textblock
6737 #: ../src/guestfs-actions.pod:557 ../fish/guestfish-actions.pod:359
6738 msgid ""
6739 "This command is used to check the availability of some groups of "
6740 "functionality in the appliance, which not all builds of the libguestfs "
6741 "appliance will be able to provide."
6742 msgstr ""
6743
6744 #. type: textblock
6745 #: ../src/guestfs-actions.pod:561
6746 msgid ""
6747 "The libguestfs groups, and the functions that those groups correspond to, "
6748 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
6749 "runtime by calling C<guestfs_available_all_groups>."
6750 msgstr ""
6751
6752 #. type: textblock
6753 #: ../src/guestfs-actions.pod:566 ../fish/guestfish-actions.pod:368
6754 msgid ""
6755 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", "
6756 "\"augeas\"]> would check for the availability of the Linux inotify functions "
6757 "and Augeas (configuration file editing) functions."
6758 msgstr ""
6759
6760 #. type: textblock
6761 #: ../src/guestfs-actions.pod:571 ../fish/guestfish-actions.pod:373
6762 msgid "The command returns no error if I<all> requested groups are available."
6763 msgstr ""
6764
6765 #. type: textblock
6766 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:375
6767 msgid ""
6768 "It fails with an error if one or more of the requested groups is unavailable "
6769 "in the appliance."
6770 msgstr ""
6771
6772 #. type: textblock
6773 #: ../src/guestfs-actions.pod:576 ../fish/guestfish-actions.pod:378
6774 msgid ""
6775 "If an unknown group name is included in the list of groups then an error is "
6776 "always returned."
6777 msgstr ""
6778
6779 #. type: textblock
6780 #: ../src/guestfs-actions.pod:579 ../fish/guestfish-actions.pod:381
6781 msgid "I<Notes:>"
6782 msgstr ""
6783
6784 #. type: textblock
6785 #: ../src/guestfs-actions.pod:585
6786 msgid "You must call C<guestfs_launch> before calling this function."
6787 msgstr ""
6788
6789 #. type: textblock
6790 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:389
6791 msgid ""
6792 "The reason is because we don't know what groups are supported by the "
6793 "appliance/daemon until it is running and can be queried."
6794 msgstr ""
6795
6796 #. type: textblock
6797 #: ../src/guestfs-actions.pod:593 ../fish/guestfish-actions.pod:395
6798 msgid ""
6799 "If a group of functions is available, this does not necessarily mean that "
6800 "they will work.  You still have to check for errors when calling individual "
6801 "API functions even if they are available."
6802 msgstr ""
6803
6804 #. type: textblock
6805 #: ../src/guestfs-actions.pod:600 ../fish/guestfish-actions.pod:402
6806 msgid ""
6807 "It is usually the job of distro packagers to build complete functionality "
6808 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
6809 "with all requirements satisfied, will support everything."
6810 msgstr ""
6811
6812 #. type: textblock
6813 #: ../src/guestfs-actions.pod:607
6814 msgid ""
6815 "This call was added in version C<1.0.80>.  In previous versions of "
6816 "libguestfs all you could do would be to speculatively execute a command to "
6817 "find out if the daemon implemented it.  See also C<guestfs_version>."
6818 msgstr ""
6819
6820 #. type: textblock
6821 #: ../src/guestfs-actions.pod:616 ../src/guestfs-actions.pod:1177
6822 msgid "(Added in 1.0.80)"
6823 msgstr ""
6824
6825 #. type: =head2
6826 #: ../src/guestfs-actions.pod:618
6827 msgid "guestfs_available_all_groups"
6828 msgstr ""
6829
6830 #. type: verbatim
6831 #: ../src/guestfs-actions.pod:620
6832 #, no-wrap
6833 msgid ""
6834 " char **\n"
6835 " guestfs_available_all_groups (guestfs_h *g);\n"
6836 "\n"
6837 msgstr ""
6838
6839 #. type: textblock
6840 #: ../src/guestfs-actions.pod:623
6841 msgid ""
6842 "This command returns a list of all optional groups that this daemon knows "
6843 "about.  Note this returns both supported and unsupported groups.  To find "
6844 "out which ones the daemon can actually support you have to call "
6845 "C<guestfs_available> on each member of the returned list."
6846 msgstr ""
6847
6848 #. type: textblock
6849 #: ../src/guestfs-actions.pod:629
6850 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
6851 msgstr ""
6852
6853 #. type: textblock
6854 #: ../src/guestfs-actions.pod:635
6855 msgid "(Added in 1.3.15)"
6856 msgstr ""
6857
6858 #. type: =head2
6859 #: ../src/guestfs-actions.pod:637
6860 msgid "guestfs_base64_in"
6861 msgstr ""
6862
6863 #. type: verbatim
6864 #: ../src/guestfs-actions.pod:639
6865 #, no-wrap
6866 msgid ""
6867 " int\n"
6868 " guestfs_base64_in (guestfs_h *g,\n"
6869 "                    const char *base64file,\n"
6870 "                    const char *filename);\n"
6871 "\n"
6872 msgstr ""
6873
6874 #. type: textblock
6875 #: ../src/guestfs-actions.pod:644 ../fish/guestfish-actions.pod:432
6876 msgid "This command uploads base64-encoded data from C<base64file> to C<filename>."
6877 msgstr ""
6878
6879 #. type: textblock
6880 #: ../src/guestfs-actions.pod:649 ../src/guestfs-actions.pod:663
6881 msgid "(Added in 1.3.5)"
6882 msgstr ""
6883
6884 #. type: =head2
6885 #: ../src/guestfs-actions.pod:651
6886 msgid "guestfs_base64_out"
6887 msgstr ""
6888
6889 #. type: verbatim
6890 #: ../src/guestfs-actions.pod:653
6891 #, no-wrap
6892 msgid ""
6893 " int\n"
6894 " guestfs_base64_out (guestfs_h *g,\n"
6895 "                     const char *filename,\n"
6896 "                     const char *base64file);\n"
6897 "\n"
6898 msgstr ""
6899
6900 #. type: textblock
6901 #: ../src/guestfs-actions.pod:658 ../fish/guestfish-actions.pod:441
6902 msgid ""
6903 "This command downloads the contents of C<filename>, writing it out to local "
6904 "file C<base64file> encoded as base64."
6905 msgstr ""
6906
6907 #. type: =head2
6908 #: ../src/guestfs-actions.pod:665
6909 msgid "guestfs_blockdev_flushbufs"
6910 msgstr ""
6911
6912 #. type: verbatim
6913 #: ../src/guestfs-actions.pod:667
6914 #, no-wrap
6915 msgid ""
6916 " int\n"
6917 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
6918 "                             const char *device);\n"
6919 "\n"
6920 msgstr ""
6921
6922 #. type: textblock
6923 #: ../src/guestfs-actions.pod:671 ../fish/guestfish-actions.pod:450
6924 msgid "This tells the kernel to flush internal buffers associated with C<device>."
6925 msgstr ""
6926
6927 #. type: textblock
6928 #: ../src/guestfs-actions.pod:674 ../src/guestfs-actions.pod:691 ../src/guestfs-actions.pod:706 ../src/guestfs-actions.pod:722 ../src/guestfs-actions.pod:740 ../src/guestfs-actions.pod:759 ../src/guestfs-actions.pod:773 ../src/guestfs-actions.pod:791 ../src/guestfs-actions.pod:805 ../src/guestfs-actions.pod:819 ../fish/guestfish-actions.pod:453 ../fish/guestfish-actions.pod:464 ../fish/guestfish-actions.pod:473 ../fish/guestfish-actions.pod:483 ../fish/guestfish-actions.pod:495 ../fish/guestfish-actions.pod:508 ../fish/guestfish-actions.pod:516 ../fish/guestfish-actions.pod:527 ../fish/guestfish-actions.pod:535 ../fish/guestfish-actions.pod:543
6929 msgid "This uses the L<blockdev(8)> command."
6930 msgstr ""
6931
6932 #. type: textblock
6933 #: ../src/guestfs-actions.pod:678 ../src/guestfs-actions.pod:695 ../src/guestfs-actions.pod:710 ../src/guestfs-actions.pod:726 ../src/guestfs-actions.pod:744 ../src/guestfs-actions.pod:763 ../src/guestfs-actions.pod:777 ../src/guestfs-actions.pod:795 ../src/guestfs-actions.pod:809 ../src/guestfs-actions.pod:823
6934 msgid "(Added in 0.9.3)"
6935 msgstr ""
6936
6937 #. type: =head2
6938 #: ../src/guestfs-actions.pod:680
6939 msgid "guestfs_blockdev_getbsz"
6940 msgstr ""
6941
6942 #. type: verbatim
6943 #: ../src/guestfs-actions.pod:682
6944 #, no-wrap
6945 msgid ""
6946 " int\n"
6947 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
6948 "                          const char *device);\n"
6949 "\n"
6950 msgstr ""
6951
6952 #. type: textblock
6953 #: ../src/guestfs-actions.pod:686 ../fish/guestfish-actions.pod:459
6954 msgid "This returns the block size of a device."
6955 msgstr ""
6956
6957 #. type: textblock
6958 #: ../src/guestfs-actions.pod:688 ../src/guestfs-actions.pod:788 ../fish/guestfish-actions.pod:461 ../fish/guestfish-actions.pod:524
6959 msgid ""
6960 "(Note this is different from both I<size in blocks> and I<filesystem block "
6961 "size>)."
6962 msgstr ""
6963
6964 #. type: =head2
6965 #: ../src/guestfs-actions.pod:697
6966 msgid "guestfs_blockdev_getro"
6967 msgstr ""
6968
6969 #. type: verbatim
6970 #: ../src/guestfs-actions.pod:699
6971 #, no-wrap
6972 msgid ""
6973 " int\n"
6974 " guestfs_blockdev_getro (guestfs_h *g,\n"
6975 "                         const char *device);\n"
6976 "\n"
6977 msgstr ""
6978
6979 #. type: textblock
6980 #: ../src/guestfs-actions.pod:703 ../fish/guestfish-actions.pod:470
6981 msgid ""
6982 "Returns a boolean indicating if the block device is read-only (true if "
6983 "read-only, false if not)."
6984 msgstr ""
6985
6986 #. type: textblock
6987 #: ../src/guestfs-actions.pod:708 ../src/guestfs-actions.pod:1415 ../src/guestfs-actions.pod:1430 ../src/guestfs-actions.pod:1920 ../src/guestfs-actions.pod:1931 ../src/guestfs-actions.pod:2003 ../src/guestfs-actions.pod:2058 ../src/guestfs-actions.pod:2073 ../src/guestfs-actions.pod:2098 ../src/guestfs-actions.pod:2121 ../src/guestfs-actions.pod:3094 ../src/guestfs-actions.pod:3111 ../src/guestfs-actions.pod:3130 ../src/guestfs-actions.pod:3293 ../src/guestfs-actions.pod:3307 ../src/guestfs-actions.pod:3322 ../src/guestfs-actions.pod:3336 ../src/guestfs-actions.pod:3352 ../src/guestfs-actions.pod:3367 ../src/guestfs-actions.pod:3383 ../src/guestfs-actions.pod:3397 ../src/guestfs-actions.pod:3410 ../src/guestfs-actions.pod:3424 ../src/guestfs-actions.pod:3439 ../src/guestfs-actions.pod:3454 ../src/guestfs-actions.pod:4992
6988 msgid "This function returns a C truth value on success or -1 on error."
6989 msgstr ""
6990
6991 #. type: =head2
6992 #: ../src/guestfs-actions.pod:712
6993 msgid "guestfs_blockdev_getsize64"
6994 msgstr ""
6995
6996 #. type: verbatim
6997 #: ../src/guestfs-actions.pod:714
6998 #, no-wrap
6999 msgid ""
7000 " int64_t\n"
7001 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7002 "                             const char *device);\n"
7003 "\n"
7004 msgstr ""
7005
7006 #. type: textblock
7007 #: ../src/guestfs-actions.pod:718 ../fish/guestfish-actions.pod:479
7008 msgid "This returns the size of the device in bytes."
7009 msgstr ""
7010
7011 #. type: textblock
7012 #: ../src/guestfs-actions.pod:720
7013 msgid "See also C<guestfs_blockdev_getsz>."
7014 msgstr ""
7015
7016 #. type: =head2
7017 #: ../src/guestfs-actions.pod:728
7018 msgid "guestfs_blockdev_getss"
7019 msgstr ""
7020
7021 #. type: verbatim
7022 #: ../src/guestfs-actions.pod:730
7023 #, no-wrap
7024 msgid ""
7025 " int\n"
7026 " guestfs_blockdev_getss (guestfs_h *g,\n"
7027 "                         const char *device);\n"
7028 "\n"
7029 msgstr ""
7030
7031 #. type: textblock
7032 #: ../src/guestfs-actions.pod:734 ../fish/guestfish-actions.pod:489
7033 msgid ""
7034 "This returns the size of sectors on a block device.  Usually 512, but can be "
7035 "larger for modern devices."
7036 msgstr ""
7037
7038 #. type: textblock
7039 #: ../src/guestfs-actions.pod:737
7040 msgid ""
7041 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
7042 "that)."
7043 msgstr ""
7044
7045 #. type: =head2
7046 #: ../src/guestfs-actions.pod:746
7047 msgid "guestfs_blockdev_getsz"
7048 msgstr ""
7049
7050 #. type: verbatim
7051 #: ../src/guestfs-actions.pod:748
7052 #, no-wrap
7053 msgid ""
7054 " int64_t\n"
7055 " guestfs_blockdev_getsz (guestfs_h *g,\n"
7056 "                         const char *device);\n"
7057 "\n"
7058 msgstr ""
7059
7060 #. type: textblock
7061 #: ../src/guestfs-actions.pod:752 ../fish/guestfish-actions.pod:501
7062 msgid ""
7063 "This returns the size of the device in units of 512-byte sectors (even if "
7064 "the sectorsize isn't 512 bytes ... weird)."
7065 msgstr ""
7066
7067 #. type: textblock
7068 #: ../src/guestfs-actions.pod:755
7069 msgid ""
7070 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
7071 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
7072 msgstr ""
7073
7074 #. type: =head2
7075 #: ../src/guestfs-actions.pod:765
7076 msgid "guestfs_blockdev_rereadpt"
7077 msgstr ""
7078
7079 #. type: verbatim
7080 #: ../src/guestfs-actions.pod:767
7081 #, no-wrap
7082 msgid ""
7083 " int\n"
7084 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
7085 "                            const char *device);\n"
7086 "\n"
7087 msgstr ""
7088
7089 #. type: textblock
7090 #: ../src/guestfs-actions.pod:771 ../fish/guestfish-actions.pod:514
7091 msgid "Reread the partition table on C<device>."
7092 msgstr ""
7093
7094 #. type: =head2
7095 #: ../src/guestfs-actions.pod:779
7096 msgid "guestfs_blockdev_setbsz"
7097 msgstr ""
7098
7099 #. type: verbatim
7100 #: ../src/guestfs-actions.pod:781
7101 #, no-wrap
7102 msgid ""
7103 " int\n"
7104 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
7105 "                          const char *device,\n"
7106 "                          int blocksize);\n"
7107 "\n"
7108 msgstr ""
7109
7110 #. type: textblock
7111 #: ../src/guestfs-actions.pod:786 ../fish/guestfish-actions.pod:522
7112 msgid "This sets the block size of a device."
7113 msgstr ""
7114
7115 #. type: =head2
7116 #: ../src/guestfs-actions.pod:797
7117 msgid "guestfs_blockdev_setro"
7118 msgstr ""
7119
7120 #. type: verbatim
7121 #: ../src/guestfs-actions.pod:799
7122 #, no-wrap
7123 msgid ""
7124 " int\n"
7125 " guestfs_blockdev_setro (guestfs_h *g,\n"
7126 "                         const char *device);\n"
7127 "\n"
7128 msgstr ""
7129
7130 #. type: textblock
7131 #: ../src/guestfs-actions.pod:803 ../fish/guestfish-actions.pod:533
7132 msgid "Sets the block device named C<device> to read-only."
7133 msgstr ""
7134
7135 #. type: =head2
7136 #: ../src/guestfs-actions.pod:811
7137 msgid "guestfs_blockdev_setrw"
7138 msgstr ""
7139
7140 #. type: verbatim
7141 #: ../src/guestfs-actions.pod:813
7142 #, no-wrap
7143 msgid ""
7144 " int\n"
7145 " guestfs_blockdev_setrw (guestfs_h *g,\n"
7146 "                         const char *device);\n"
7147 "\n"
7148 msgstr ""
7149
7150 #. type: textblock
7151 #: ../src/guestfs-actions.pod:817 ../fish/guestfish-actions.pod:541
7152 msgid "Sets the block device named C<device> to read-write."
7153 msgstr ""
7154
7155 #. type: =head2
7156 #: ../src/guestfs-actions.pod:825
7157 msgid "guestfs_case_sensitive_path"
7158 msgstr ""
7159
7160 #. type: verbatim
7161 #: ../src/guestfs-actions.pod:827
7162 #, no-wrap
7163 msgid ""
7164 " char *\n"
7165 " guestfs_case_sensitive_path (guestfs_h *g,\n"
7166 "                              const char *path);\n"
7167 "\n"
7168 msgstr ""
7169
7170 #. type: textblock
7171 #: ../src/guestfs-actions.pod:831 ../fish/guestfish-actions.pod:549
7172 msgid ""
7173 "This can be used to resolve case insensitive paths on a filesystem which is "
7174 "case sensitive.  The use case is to resolve paths which you have read from "
7175 "Windows configuration files or the Windows Registry, to the true path."
7176 msgstr ""
7177
7178 #. type: textblock
7179 #: ../src/guestfs-actions.pod:836 ../fish/guestfish-actions.pod:554
7180 msgid ""
7181 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
7182 "(and probably others), which is that although the underlying filesystem is "
7183 "case-insensitive, the driver exports the filesystem to Linux as "
7184 "case-sensitive."
7185 msgstr ""
7186
7187 #. type: textblock
7188 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:559
7189 msgid ""
7190 "One consequence of this is that special directories such as C<c:\\windows> "
7191 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
7192 "precise details of how they were created.  In Windows itself this would not "
7193 "be a problem."
7194 msgstr ""
7195
7196 #. type: textblock
7197 #: ../src/guestfs-actions.pod:847 ../fish/guestfish-actions.pod:565
7198 msgid ""
7199 "Bug or feature? You decide: "
7200 "L<http://www.tuxera.com/community/ntfs-3g-faq/#posixfilenames1>"
7201 msgstr ""
7202
7203 #. type: textblock
7204 #: ../src/guestfs-actions.pod:850 ../fish/guestfish-actions.pod:568
7205 msgid ""
7206 "This function resolves the true case of each element in the path and returns "
7207 "the case-sensitive path."
7208 msgstr ""
7209
7210 #. type: textblock
7211 #: ../src/guestfs-actions.pod:853
7212 msgid ""
7213 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return "
7214 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
7215 "how the directories were originally created under Windows)."
7216 msgstr ""
7217
7218 #. type: textblock
7219 #: ../src/guestfs-actions.pod:858 ../fish/guestfish-actions.pod:576
7220 msgid "I<Note>: This function does not handle drive names, backslashes etc."
7221 msgstr ""
7222
7223 #. type: textblock
7224 #: ../src/guestfs-actions.pod:861
7225 msgid "See also C<guestfs_realpath>."
7226 msgstr ""
7227
7228 #. type: textblock
7229 #: ../src/guestfs-actions.pod:866 ../src/guestfs-actions.pod:7011
7230 msgid "(Added in 1.0.75)"
7231 msgstr ""
7232
7233 #. type: =head2
7234 #: ../src/guestfs-actions.pod:868
7235 msgid "guestfs_cat"
7236 msgstr ""
7237
7238 #. type: verbatim
7239 #: ../src/guestfs-actions.pod:870
7240 #, no-wrap
7241 msgid ""
7242 " char *\n"
7243 " guestfs_cat (guestfs_h *g,\n"
7244 "              const char *path);\n"
7245 "\n"
7246 msgstr ""
7247
7248 #. type: textblock
7249 #: ../src/guestfs-actions.pod:874 ../src/guestfs-actions.pod:5479 ../fish/guestfish-actions.pod:585 ../fish/guestfish-actions.pod:3679
7250 msgid "Return the contents of the file named C<path>."
7251 msgstr ""
7252
7253 #. type: textblock
7254 #: ../src/guestfs-actions.pod:876
7255 msgid ""
7256 "Note that this function cannot correctly handle binary files (specifically, "
7257 "files containing C<\\0> character which is treated as end of string).  For "
7258 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
7259 "functions which have a more complex interface."
7260 msgstr ""
7261
7262 #. type: textblock
7263 #: ../src/guestfs-actions.pod:884 ../src/guestfs-actions.pod:1063 ../src/guestfs-actions.pod:1083 ../src/guestfs-actions.pod:1379 ../src/guestfs-actions.pod:1398 ../src/guestfs-actions.pod:1501 ../src/guestfs-actions.pod:1520 ../src/guestfs-actions.pod:1769 ../src/guestfs-actions.pod:2227 ../src/guestfs-actions.pod:2246 ../src/guestfs-actions.pod:2289 ../src/guestfs-actions.pod:2313 ../src/guestfs-actions.pod:2330 ../src/guestfs-actions.pod:2359 ../src/guestfs-actions.pod:5261 ../src/guestfs-actions.pod:5287 ../src/guestfs-actions.pod:5418 ../src/guestfs-actions.pod:5444 ../src/guestfs-actions.pod:5468 ../src/guestfs-actions.pod:6396 ../src/guestfs-actions.pod:6451 ../src/guestfs-actions.pod:6597 ../src/guestfs-actions.pod:6621 ../src/guestfs-actions.pod:7290 ../src/guestfs-actions.pod:7316 ../src/guestfs-actions.pod:7342 ../src/guestfs-actions.pod:7361 ../src/guestfs-actions.pod:7446 ../src/guestfs-actions.pod:7465 ../src/guestfs-actions.pod:7511 ../src/guestfs-actions.pod:7530 ../fish/guestfish-actions.pod:592 ../fish/guestfish-actions.pod:727 ../fish/guestfish-actions.pod:739 ../fish/guestfish-actions.pod:915 ../fish/guestfish-actions.pod:925 ../fish/guestfish-actions.pod:992 ../fish/guestfish-actions.pod:1002 ../fish/guestfish-actions.pod:1197 ../fish/guestfish-actions.pod:1498 ../fish/guestfish-actions.pod:1508 ../fish/guestfish-actions.pod:1536 ../fish/guestfish-actions.pod:1551 ../fish/guestfish-actions.pod:1561 ../fish/guestfish-actions.pod:1580 ../fish/guestfish-actions.pod:3549 ../fish/guestfish-actions.pod:3564 ../fish/guestfish-actions.pod:3640 ../fish/guestfish-actions.pod:3657 ../fish/guestfish-actions.pod:3672 ../fish/guestfish-actions.pod:4326 ../fish/guestfish-actions.pod:4372 ../fish/guestfish-actions.pod:4457 ../fish/guestfish-actions.pod:4472 ../fish/guestfish-actions.pod:4882 ../fish/guestfish-actions.pod:4900 ../fish/guestfish-actions.pod:4917 ../fish/guestfish-actions.pod:4927 ../fish/guestfish-actions.pod:4975 ../fish/guestfish-actions.pod:4985 ../fish/guestfish-actions.pod:5014 ../fish/guestfish-actions.pod:5024
7264 msgid ""
7265 "Because of the message protocol, there is a transfer limit of somewhere "
7266 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
7267 msgstr ""
7268
7269 #. type: textblock
7270 #: ../src/guestfs-actions.pod:887 ../src/guestfs-actions.pod:3570 ../src/guestfs-actions.pod:3632 ../src/guestfs-actions.pod:3649 ../src/guestfs-actions.pod:3737 ../src/guestfs-actions.pod:4142 ../src/guestfs-actions.pod:4156 ../src/guestfs-actions.pod:5367 ../src/guestfs-actions.pod:5381 ../src/guestfs-actions.pod:7170 ../src/guestfs-actions.pod:7184
7271 msgid "(Added in 0.4)"
7272 msgstr ""
7273
7274 #. type: =head2
7275 #: ../src/guestfs-actions.pod:889
7276 msgid "guestfs_checksum"
7277 msgstr ""
7278
7279 #. type: verbatim
7280 #: ../src/guestfs-actions.pod:891
7281 #, no-wrap
7282 msgid ""
7283 " char *\n"
7284 " guestfs_checksum (guestfs_h *g,\n"
7285 "                   const char *csumtype,\n"
7286 "                   const char *path);\n"
7287 "\n"
7288 msgstr ""
7289
7290 #. type: textblock
7291 #: ../src/guestfs-actions.pod:896 ../fish/guestfish-actions.pod:599
7292 msgid "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
7293 msgstr ""
7294
7295 #. type: textblock
7296 #: ../src/guestfs-actions.pod:899 ../fish/guestfish-actions.pod:602
7297 msgid ""
7298 "The type of checksum to compute is given by the C<csumtype> parameter which "
7299 "must have one of the following values:"
7300 msgstr ""
7301
7302 #. type: =item
7303 #: ../src/guestfs-actions.pod:904 ../fish/guestfish-actions.pod:607
7304 msgid "C<crc>"
7305 msgstr ""
7306
7307 #. type: textblock
7308 #: ../src/guestfs-actions.pod:906 ../fish/guestfish-actions.pod:609
7309 msgid ""
7310 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
7311 "C<cksum> command."
7312 msgstr ""
7313
7314 #. type: =item
7315 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:612
7316 msgid "C<md5>"
7317 msgstr ""
7318
7319 #. type: textblock
7320 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:614
7321 msgid "Compute the MD5 hash (using the C<md5sum> program)."
7322 msgstr ""
7323
7324 #. type: =item
7325 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:616
7326 msgid "C<sha1>"
7327 msgstr ""
7328
7329 #. type: textblock
7330 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:618
7331 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
7332 msgstr ""
7333
7334 #. type: =item
7335 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:620
7336 msgid "C<sha224>"
7337 msgstr ""
7338
7339 #. type: textblock
7340 #: ../src/guestfs-actions.pod:919 ../fish/guestfish-actions.pod:622
7341 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
7342 msgstr ""
7343
7344 #. type: =item
7345 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:624
7346 msgid "C<sha256>"
7347 msgstr ""
7348
7349 #. type: textblock
7350 #: ../src/guestfs-actions.pod:923 ../fish/guestfish-actions.pod:626
7351 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
7352 msgstr ""
7353
7354 #. type: =item
7355 #: ../src/guestfs-actions.pod:925 ../fish/guestfish-actions.pod:628
7356 msgid "C<sha384>"
7357 msgstr ""
7358
7359 #. type: textblock
7360 #: ../src/guestfs-actions.pod:927 ../fish/guestfish-actions.pod:630
7361 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
7362 msgstr ""
7363
7364 #. type: =item
7365 #: ../src/guestfs-actions.pod:929 ../fish/guestfish-actions.pod:632
7366 msgid "C<sha512>"
7367 msgstr ""
7368
7369 #. type: textblock
7370 #: ../src/guestfs-actions.pod:931 ../fish/guestfish-actions.pod:634
7371 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
7372 msgstr ""
7373
7374 #. type: textblock
7375 #: ../src/guestfs-actions.pod:935 ../fish/guestfish-actions.pod:638
7376 msgid "The checksum is returned as a printable string."
7377 msgstr ""
7378
7379 #. type: textblock
7380 #: ../src/guestfs-actions.pod:937
7381 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
7382 msgstr ""
7383
7384 #. type: textblock
7385 #: ../src/guestfs-actions.pod:939
7386 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
7387 msgstr ""
7388
7389 #. type: textblock
7390 #: ../src/guestfs-actions.pod:944 ../src/guestfs-actions.pod:1252 ../src/guestfs-actions.pod:2089 ../src/guestfs-actions.pod:3309 ../src/guestfs-actions.pod:3338 ../src/guestfs-actions.pod:3399 ../src/guestfs-actions.pod:3426 ../src/guestfs-actions.pod:6867
7391 msgid "(Added in 1.0.2)"
7392 msgstr ""
7393
7394 #. type: =head2
7395 #: ../src/guestfs-actions.pod:946
7396 msgid "guestfs_checksum_device"
7397 msgstr ""
7398
7399 #. type: verbatim
7400 #: ../src/guestfs-actions.pod:948
7401 #, no-wrap
7402 msgid ""
7403 " char *\n"
7404 " guestfs_checksum_device (guestfs_h *g,\n"
7405 "                          const char *csumtype,\n"
7406 "                          const char *device);\n"
7407 "\n"
7408 msgstr ""
7409
7410 #. type: textblock
7411 #: ../src/guestfs-actions.pod:953
7412 msgid ""
7413 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
7414 "device named C<device>.  For the types of checksums supported see the "
7415 "C<guestfs_checksum> command."
7416 msgstr ""
7417
7418 #. type: textblock
7419 #: ../src/guestfs-actions.pod:960 ../src/guestfs-actions.pod:4898 ../src/guestfs-actions.pod:4957 ../src/guestfs-actions.pod:4994 ../src/guestfs-actions.pod:5012 ../src/guestfs-actions.pod:5188 ../src/guestfs-actions.pod:6776 ../src/guestfs-actions.pod:6790 ../src/guestfs-actions.pod:7196
7420 msgid "(Added in 1.3.2)"
7421 msgstr ""
7422
7423 #. type: =head2
7424 #: ../src/guestfs-actions.pod:962
7425 msgid "guestfs_checksums_out"
7426 msgstr ""
7427
7428 #. type: verbatim
7429 #: ../src/guestfs-actions.pod:964
7430 #, no-wrap
7431 msgid ""
7432 " int\n"
7433 " guestfs_checksums_out (guestfs_h *g,\n"
7434 "                        const char *csumtype,\n"
7435 "                        const char *directory,\n"
7436 "                        const char *sumsfile);\n"
7437 "\n"
7438 msgstr ""
7439
7440 #. type: textblock
7441 #: ../src/guestfs-actions.pod:970 ../fish/guestfish-actions.pod:656
7442 msgid ""
7443 "This command computes the checksums of all regular files in C<directory> and "
7444 "then emits a list of those checksums to the local output file C<sumsfile>."
7445 msgstr ""
7446
7447 #. type: textblock
7448 #: ../src/guestfs-actions.pod:974 ../fish/guestfish-actions.pod:660
7449 msgid ""
7450 "This can be used for verifying the integrity of a virtual machine.  However "
7451 "to be properly secure you should pay attention to the output of the checksum "
7452 "command (it uses the ones from GNU coreutils).  In particular when the "
7453 "filename is not printable, coreutils uses a special backslash syntax.  For "
7454 "more information, see the GNU coreutils info file."
7455 msgstr ""
7456
7457 #. type: textblock
7458 #: ../src/guestfs-actions.pod:984
7459 msgid "(Added in 1.3.7)"
7460 msgstr ""
7461
7462 #. type: =head2
7463 #: ../src/guestfs-actions.pod:986
7464 msgid "guestfs_chmod"
7465 msgstr ""
7466
7467 #. type: verbatim
7468 #: ../src/guestfs-actions.pod:988
7469 #, no-wrap
7470 msgid ""
7471 " int\n"
7472 " guestfs_chmod (guestfs_h *g,\n"
7473 "                int mode,\n"
7474 "                const char *path);\n"
7475 "\n"
7476 msgstr ""
7477
7478 #. type: textblock
7479 #: ../src/guestfs-actions.pod:993 ../fish/guestfish-actions.pod:674
7480 msgid ""
7481 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
7482 "supported."
7483 msgstr ""
7484
7485 #. type: textblock
7486 #: ../src/guestfs-actions.pod:996 ../fish/guestfish-actions.pod:677
7487 msgid ""
7488 "I<Note>: When using this command from guestfish, C<mode> by default would be "
7489 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
7490 "C<700>."
7491 msgstr ""
7492
7493 #. type: textblock
7494 #: ../src/guestfs-actions.pod:1000 ../src/guestfs-actions.pod:4393 ../src/guestfs-actions.pod:4590 ../src/guestfs-actions.pod:4609 ../src/guestfs-actions.pod:4628 ../fish/guestfish-actions.pod:681 ../fish/guestfish-actions.pod:2988 ../fish/guestfish-actions.pod:3117 ../fish/guestfish-actions.pod:3127 ../fish/guestfish-actions.pod:3137
7495 msgid "The mode actually set is affected by the umask."
7496 msgstr ""
7497
7498 #. type: =head2
7499 #: ../src/guestfs-actions.pod:1006
7500 msgid "guestfs_chown"
7501 msgstr ""
7502
7503 #. type: verbatim
7504 #: ../src/guestfs-actions.pod:1008
7505 #, no-wrap
7506 msgid ""
7507 " int\n"
7508 " guestfs_chown (guestfs_h *g,\n"
7509 "                int owner,\n"
7510 "                int group,\n"
7511 "                const char *path);\n"
7512 "\n"
7513 msgstr ""
7514
7515 #. type: textblock
7516 #: ../src/guestfs-actions.pod:1014 ../fish/guestfish-actions.pod:687
7517 msgid "Change the file owner to C<owner> and group to C<group>."
7518 msgstr ""
7519
7520 #. type: textblock
7521 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:3501 ../fish/guestfish-actions.pod:689 ../fish/guestfish-actions.pod:2446
7522 msgid ""
7523 "Only numeric uid and gid are supported.  If you want to use names, you will "
7524 "need to locate and parse the password file yourself (Augeas support makes "
7525 "this relatively easy)."
7526 msgstr ""
7527
7528 #. type: =head2
7529 #: ../src/guestfs-actions.pod:1024
7530 msgid "guestfs_command"
7531 msgstr ""
7532
7533 #. type: verbatim
7534 #: ../src/guestfs-actions.pod:1026
7535 #, no-wrap
7536 msgid ""
7537 " char *\n"
7538 " guestfs_command (guestfs_h *g,\n"
7539 "                  char *const *arguments);\n"
7540 "\n"
7541 msgstr ""
7542
7543 #. type: textblock
7544 #: ../src/guestfs-actions.pod:1030 ../fish/guestfish-actions.pod:697
7545 msgid ""
7546 "This call runs a command from the guest filesystem.  The filesystem must be "
7547 "mounted, and must contain a compatible operating system (ie. something "
7548 "Linux, with the same or compatible processor architecture)."
7549 msgstr ""
7550
7551 #. type: textblock
7552 #: ../src/guestfs-actions.pod:1035
7553 msgid ""
7554 "The single parameter is an argv-style list of arguments.  The first element "
7555 "is the name of the program to run.  Subsequent elements are parameters.  The "
7556 "list must be non-empty (ie. must contain a program name).  Note that the "
7557 "command runs directly, and is I<not> invoked via the shell (see "
7558 "C<guestfs_sh>)."
7559 msgstr ""
7560
7561 #. type: textblock
7562 #: ../src/guestfs-actions.pod:1042 ../fish/guestfish-actions.pod:709
7563 msgid "The return value is anything printed to I<stdout> by the command."
7564 msgstr ""
7565
7566 #. type: textblock
7567 #: ../src/guestfs-actions.pod:1045 ../fish/guestfish-actions.pod:712
7568 msgid ""
7569 "If the command returns a non-zero exit status, then this function returns an "
7570 "error message.  The error message string is the content of I<stderr> from "
7571 "the command."
7572 msgstr ""
7573
7574 #. type: textblock
7575 #: ../src/guestfs-actions.pod:1049 ../fish/guestfish-actions.pod:716
7576 msgid ""
7577 "The C<$PATH> environment variable will contain at least C</usr/bin> and "
7578 "C</bin>.  If you require a program from another location, you should provide "
7579 "the full path in the first parameter."
7580 msgstr ""
7581
7582 #. type: textblock
7583 #: ../src/guestfs-actions.pod:1054 ../fish/guestfish-actions.pod:721
7584 msgid ""
7585 "Shared libraries and data files required by the program must be available on "
7586 "filesystems which are mounted in the correct places.  It is the caller's "
7587 "responsibility to ensure all filesystems that are needed are mounted at the "
7588 "right locations."
7589 msgstr ""
7590
7591 #. type: textblock
7592 #: ../src/guestfs-actions.pod:1066 ../src/guestfs-actions.pod:1086 ../src/guestfs-actions.pod:1554
7593 msgid "(Added in 0.9.1)"
7594 msgstr ""
7595
7596 #. type: =head2
7597 #: ../src/guestfs-actions.pod:1068
7598 msgid "guestfs_command_lines"
7599 msgstr ""
7600
7601 #. type: verbatim
7602 #: ../src/guestfs-actions.pod:1070
7603 #, no-wrap
7604 msgid ""
7605 " char **\n"
7606 " guestfs_command_lines (guestfs_h *g,\n"
7607 "                        char *const *arguments);\n"
7608 "\n"
7609 msgstr ""
7610
7611 #. type: textblock
7612 #: ../src/guestfs-actions.pod:1074
7613 msgid ""
7614 "This is the same as C<guestfs_command>, but splits the result into a list of "
7615 "lines."
7616 msgstr ""
7617
7618 #. type: textblock
7619 #: ../src/guestfs-actions.pod:1077
7620 msgid "See also: C<guestfs_sh_lines>"
7621 msgstr ""
7622
7623 #. type: =head2
7624 #: ../src/guestfs-actions.pod:1088
7625 msgid "guestfs_config"
7626 msgstr ""
7627
7628 #. type: verbatim
7629 #: ../src/guestfs-actions.pod:1090
7630 #, no-wrap
7631 msgid ""
7632 " int\n"
7633 " guestfs_config (guestfs_h *g,\n"
7634 "                 const char *qemuparam,\n"
7635 "                 const char *qemuvalue);\n"
7636 "\n"
7637 msgstr ""
7638
7639 #. type: textblock
7640 #: ../src/guestfs-actions.pod:1095 ../fish/guestfish-actions.pod:746
7641 msgid ""
7642 "This can be used to add arbitrary qemu command line parameters of the form "
7643 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
7644 "setting some parameters which would interfere with parameters that we use."
7645 msgstr ""
7646
7647 #. type: textblock
7648 #: ../src/guestfs-actions.pod:1100 ../fish/guestfish-actions.pod:751
7649 msgid "The first character of C<param> string must be a C<-> (dash)."
7650 msgstr ""
7651
7652 #. type: textblock
7653 #: ../src/guestfs-actions.pod:1102 ../fish/guestfish-actions.pod:753
7654 msgid "C<value> can be NULL."
7655 msgstr ""
7656
7657 #. type: =head2
7658 #: ../src/guestfs-actions.pod:1108
7659 msgid "guestfs_copy_size"
7660 msgstr ""
7661
7662 #. type: verbatim
7663 #: ../src/guestfs-actions.pod:1110
7664 #, no-wrap
7665 msgid ""
7666 " int\n"
7667 " guestfs_copy_size (guestfs_h *g,\n"
7668 "                    const char *src,\n"
7669 "                    const char *dest,\n"
7670 "                    int64_t size);\n"
7671 "\n"
7672 msgstr ""
7673
7674 #. type: textblock
7675 #: ../src/guestfs-actions.pod:1116 ../fish/guestfish-actions.pod:759
7676 msgid ""
7677 "This command copies exactly C<size> bytes from one source device or file "
7678 "C<src> to another destination device or file C<dest>."
7679 msgstr ""
7680
7681 #. type: textblock
7682 #: ../src/guestfs-actions.pod:1119 ../fish/guestfish-actions.pod:762
7683 msgid ""
7684 "Note this will fail if the source is too short or if the destination is not "
7685 "large enough."
7686 msgstr ""
7687
7688 #. type: textblock
7689 #: ../src/guestfs-actions.pod:1124 ../src/guestfs-actions.pod:1247 ../src/guestfs-actions.pod:1278 ../src/guestfs-actions.pod:1323 ../src/guestfs-actions.pod:1703 ../src/guestfs-actions.pod:1725 ../src/guestfs-actions.pod:3482 ../src/guestfs-actions.pod:6862 ../src/guestfs-actions.pod:6896 ../src/guestfs-actions.pod:7382 ../src/guestfs-actions.pod:7401
7690 msgid ""
7691 "This long-running command can generate progress notification messages so "
7692 "that the caller can display a progress bar or indicator.  To receive these "
7693 "messages, the caller must register a progress event callback.  See "
7694 "L<guestfs(3)/GUESTFS_EVENT_PROGRESS>."
7695 msgstr ""
7696
7697 #. type: textblock
7698 #: ../src/guestfs-actions.pod:1129 ../src/guestfs-actions.pod:4169 ../src/guestfs-actions.pod:5394 ../src/guestfs-actions.pod:7103 ../src/guestfs-actions.pod:7123 ../src/guestfs-actions.pod:7209
7699 msgid "(Added in 1.0.87)"
7700 msgstr ""
7701
7702 #. type: =head2
7703 #: ../src/guestfs-actions.pod:1131
7704 msgid "guestfs_cp"
7705 msgstr ""
7706
7707 #. type: verbatim
7708 #: ../src/guestfs-actions.pod:1133
7709 #, no-wrap
7710 msgid ""
7711 " int\n"
7712 " guestfs_cp (guestfs_h *g,\n"
7713 "             const char *src,\n"
7714 "             const char *dest);\n"
7715 "\n"
7716 msgstr ""
7717
7718 #. type: textblock
7719 #: ../src/guestfs-actions.pod:1138 ../fish/guestfish-actions.pod:769
7720 msgid ""
7721 "This copies a file from C<src> to C<dest> where C<dest> is either a "
7722 "destination filename or destination directory."
7723 msgstr ""
7724
7725 #. type: textblock
7726 #: ../src/guestfs-actions.pod:1143 ../src/guestfs-actions.pod:1157 ../src/guestfs-actions.pod:1229 ../src/guestfs-actions.pod:1303 ../src/guestfs-actions.pod:1417 ../src/guestfs-actions.pod:4861 ../src/guestfs-actions.pod:5238
7727 msgid "(Added in 1.0.18)"
7728 msgstr ""
7729
7730 #. type: =head2
7731 #: ../src/guestfs-actions.pod:1145
7732 msgid "guestfs_cp_a"
7733 msgstr ""
7734
7735 #. type: verbatim
7736 #: ../src/guestfs-actions.pod:1147
7737 #, no-wrap
7738 msgid ""
7739 " int\n"
7740 " guestfs_cp_a (guestfs_h *g,\n"
7741 "               const char *src,\n"
7742 "               const char *dest);\n"
7743 "\n"
7744 msgstr ""
7745
7746 #. type: textblock
7747 #: ../src/guestfs-actions.pod:1152 ../fish/guestfish-actions.pod:776
7748 msgid ""
7749 "This copies a file or directory from C<src> to C<dest> recursively using the "
7750 "C<cp -a> command."
7751 msgstr ""
7752
7753 #. type: =head2
7754 #: ../src/guestfs-actions.pod:1159
7755 msgid "guestfs_dd"
7756 msgstr ""
7757
7758 #. type: verbatim
7759 #: ../src/guestfs-actions.pod:1161
7760 #, no-wrap
7761 msgid ""
7762 " int\n"
7763 " guestfs_dd (guestfs_h *g,\n"
7764 "             const char *src,\n"
7765 "             const char *dest);\n"
7766 "\n"
7767 msgstr ""
7768
7769 #. type: textblock
7770 #: ../src/guestfs-actions.pod:1166 ../fish/guestfish-actions.pod:783
7771 msgid ""
7772 "This command copies from one source device or file C<src> to another "
7773 "destination device or file C<dest>.  Normally you would use this to copy to "
7774 "or from a device or partition, for example to duplicate a filesystem."
7775 msgstr ""
7776
7777 #. type: textblock
7778 #: ../src/guestfs-actions.pod:1171
7779 msgid ""
7780 "If the destination is a device, it must be as large or larger than the "
7781 "source file or device, otherwise the copy will fail.  This command cannot do "
7782 "partial copies (see C<guestfs_copy_size>)."
7783 msgstr ""
7784
7785 #. type: =head2
7786 #: ../src/guestfs-actions.pod:1179
7787 msgid "guestfs_df"
7788 msgstr ""
7789
7790 #. type: verbatim
7791 #: ../src/guestfs-actions.pod:1181
7792 #, no-wrap
7793 msgid ""
7794 " char *\n"
7795 " guestfs_df (guestfs_h *g);\n"
7796 "\n"
7797 msgstr ""
7798
7799 #. type: textblock
7800 #: ../src/guestfs-actions.pod:1184 ../fish/guestfish-actions.pod:796
7801 msgid "This command runs the C<df> command to report disk space used."
7802 msgstr ""
7803
7804 #. type: textblock
7805 #: ../src/guestfs-actions.pod:1186 ../src/guestfs-actions.pod:1203
7806 msgid ""
7807 "This command is mostly useful for interactive sessions.  It is I<not> "
7808 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
7809 "from programs."
7810 msgstr ""
7811
7812 #. type: textblock
7813 #: ../src/guestfs-actions.pod:1193 ../src/guestfs-actions.pod:1210 ../src/guestfs-actions.pod:1328 ../src/guestfs-actions.pod:2292 ../src/guestfs-actions.pod:2316 ../src/guestfs-actions.pod:2384 ../src/guestfs-actions.pod:4279 ../src/guestfs-actions.pod:4761 ../src/guestfs-actions.pod:6600 ../src/guestfs-actions.pod:6624 ../src/guestfs-actions.pod:7249 ../src/guestfs-actions.pod:7262 ../src/guestfs-actions.pod:7275
7814 msgid "(Added in 1.0.54)"
7815 msgstr ""
7816
7817 #. type: =head2
7818 #: ../src/guestfs-actions.pod:1195
7819 msgid "guestfs_df_h"
7820 msgstr ""
7821
7822 #. type: verbatim
7823 #: ../src/guestfs-actions.pod:1197
7824 #, no-wrap
7825 msgid ""
7826 " char *\n"
7827 " guestfs_df_h (guestfs_h *g);\n"
7828 "\n"
7829 msgstr ""
7830
7831 #. type: textblock
7832 #: ../src/guestfs-actions.pod:1200 ../fish/guestfish-actions.pod:806
7833 msgid ""
7834 "This command runs the C<df -h> command to report disk space used in "
7835 "human-readable format."
7836 msgstr ""
7837
7838 #. type: =head2
7839 #: ../src/guestfs-actions.pod:1212
7840 msgid "guestfs_dmesg"
7841 msgstr ""
7842
7843 #. type: verbatim
7844 #: ../src/guestfs-actions.pod:1214
7845 #, no-wrap
7846 msgid ""
7847 " char *\n"
7848 " guestfs_dmesg (guestfs_h *g);\n"
7849 "\n"
7850 msgstr ""
7851
7852 #. type: textblock
7853 #: ../src/guestfs-actions.pod:1217 ../fish/guestfish-actions.pod:817
7854 msgid ""
7855 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
7856 "This is sometimes useful for extended debugging of problems."
7857 msgstr ""
7858
7859 #. type: textblock
7860 #: ../src/guestfs-actions.pod:1221
7861 msgid ""
7862 "Another way to get the same information is to enable verbose messages with "
7863 "C<guestfs_set_verbose> or by setting the environment variable "
7864 "C<LIBGUESTFS_DEBUG=1> before running the program."
7865 msgstr ""
7866
7867 #. type: =head2
7868 #: ../src/guestfs-actions.pod:1231
7869 msgid "guestfs_download"
7870 msgstr ""
7871
7872 #. type: verbatim
7873 #: ../src/guestfs-actions.pod:1233
7874 #, no-wrap
7875 msgid ""
7876 " int\n"
7877 " guestfs_download (guestfs_h *g,\n"
7878 "                   const char *remotefilename,\n"
7879 "                   const char *filename);\n"
7880 "\n"
7881 msgstr ""
7882
7883 #. type: textblock
7884 #: ../src/guestfs-actions.pod:1238 ../src/guestfs-actions.pod:1263 ../fish/guestfish-actions.pod:830 ../fish/guestfish-actions.pod:843
7885 msgid ""
7886 "Download file C<remotefilename> and save it as C<filename> on the local "
7887 "machine."
7888 msgstr ""
7889
7890 #. type: textblock
7891 #: ../src/guestfs-actions.pod:1241 ../src/guestfs-actions.pod:6856 ../fish/guestfish-actions.pod:833 ../fish/guestfish-actions.pod:4630
7892 msgid "C<filename> can also be a named pipe."
7893 msgstr ""
7894
7895 #. type: textblock
7896 #: ../src/guestfs-actions.pod:1243
7897 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
7898 msgstr ""
7899
7900 #. type: =head2
7901 #: ../src/guestfs-actions.pod:1254
7902 msgid "guestfs_download_offset"
7903 msgstr ""
7904
7905 #. type: verbatim
7906 #: ../src/guestfs-actions.pod:1256
7907 #, no-wrap
7908 msgid ""
7909 " int\n"
7910 " guestfs_download_offset (guestfs_h *g,\n"
7911 "                          const char *remotefilename,\n"
7912 "                          const char *filename,\n"
7913 "                          int64_t offset,\n"
7914 "                          int64_t size);\n"
7915 "\n"
7916 msgstr ""
7917
7918 #. type: textblock
7919 #: ../src/guestfs-actions.pod:1266 ../fish/guestfish-actions.pod:846
7920 msgid ""
7921 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
7922 "region must be within the file or device)."
7923 msgstr ""
7924
7925 #. type: textblock
7926 #: ../src/guestfs-actions.pod:1269
7927 msgid ""
7928 "Note that there is no limit on the amount of data that can be downloaded "
7929 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
7930 "full amount unless an error occurs."
7931 msgstr ""
7932
7933 #. type: textblock
7934 #: ../src/guestfs-actions.pod:1274
7935 msgid "See also C<guestfs_download>, C<guestfs_pread>."
7936 msgstr ""
7937
7938 #. type: textblock
7939 #: ../src/guestfs-actions.pod:1283 ../src/guestfs-actions.pod:6901
7940 msgid "(Added in 1.5.17)"
7941 msgstr ""
7942
7943 #. type: =head2
7944 #: ../src/guestfs-actions.pod:1285
7945 msgid "guestfs_drop_caches"
7946 msgstr ""
7947
7948 #. type: verbatim
7949 #: ../src/guestfs-actions.pod:1287
7950 #, no-wrap
7951 msgid ""
7952 " int\n"
7953 " guestfs_drop_caches (guestfs_h *g,\n"
7954 "                      int whattodrop);\n"
7955 "\n"
7956 msgstr ""
7957
7958 #. type: textblock
7959 #: ../src/guestfs-actions.pod:1291 ../fish/guestfish-actions.pod:862
7960 msgid ""
7961 "This instructs the guest kernel to drop its page cache, and/or dentries and "
7962 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
7963 "to drop, see L<http://linux-mm.org/Drop_Caches>"
7964 msgstr ""
7965
7966 #. type: textblock
7967 #: ../src/guestfs-actions.pod:1296 ../fish/guestfish-actions.pod:867
7968 msgid "Setting C<whattodrop> to 3 should drop everything."
7969 msgstr ""
7970
7971 #. type: textblock
7972 #: ../src/guestfs-actions.pod:1298 ../fish/guestfish-actions.pod:869
7973 msgid ""
7974 "This automatically calls L<sync(2)> before the operation, so that the "
7975 "maximum guest memory is freed."
7976 msgstr ""
7977
7978 #. type: =head2
7979 #: ../src/guestfs-actions.pod:1305
7980 msgid "guestfs_du"
7981 msgstr ""
7982
7983 #. type: verbatim
7984 #: ../src/guestfs-actions.pod:1307
7985 #, no-wrap
7986 msgid ""
7987 " int64_t\n"
7988 " guestfs_du (guestfs_h *g,\n"
7989 "             const char *path);\n"
7990 "\n"
7991 msgstr ""
7992
7993 #. type: textblock
7994 #: ../src/guestfs-actions.pod:1311 ../fish/guestfish-actions.pod:876
7995 msgid ""
7996 "This command runs the C<du -s> command to estimate file space usage for "
7997 "C<path>."
7998 msgstr ""
7999
8000 #. type: textblock
8001 #: ../src/guestfs-actions.pod:1314 ../fish/guestfish-actions.pod:879
8002 msgid ""
8003 "C<path> can be a file or a directory.  If C<path> is a directory then the "
8004 "estimate includes the contents of the directory and all subdirectories "
8005 "(recursively)."
8006 msgstr ""
8007
8008 #. type: textblock
8009 #: ../src/guestfs-actions.pod:1318 ../fish/guestfish-actions.pod:883
8010 msgid "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
8011 msgstr ""
8012
8013 #. type: =head2
8014 #: ../src/guestfs-actions.pod:1330
8015 msgid "guestfs_e2fsck_f"
8016 msgstr ""
8017
8018 #. type: verbatim
8019 #: ../src/guestfs-actions.pod:1332
8020 #, no-wrap
8021 msgid ""
8022 " int\n"
8023 " guestfs_e2fsck_f (guestfs_h *g,\n"
8024 "                   const char *device);\n"
8025 "\n"
8026 msgstr ""
8027
8028 #. type: textblock
8029 #: ../src/guestfs-actions.pod:1336 ../fish/guestfish-actions.pod:890
8030 msgid ""
8031 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
8032 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
8033 "clean (I<-f>)."
8034 msgstr ""
8035
8036 #. type: textblock
8037 #: ../src/guestfs-actions.pod:1340
8038 msgid ""
8039 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
8040 "Normally you should use C<guestfs_fsck>."
8041 msgstr ""
8042
8043 #. type: textblock
8044 #: ../src/guestfs-actions.pod:1345
8045 msgid "(Added in 1.0.29)"
8046 msgstr ""
8047
8048 #. type: =head2
8049 #: ../src/guestfs-actions.pod:1347
8050 msgid "guestfs_echo_daemon"
8051 msgstr ""
8052
8053 #. type: verbatim
8054 #: ../src/guestfs-actions.pod:1349
8055 #, no-wrap
8056 msgid ""
8057 " char *\n"
8058 " guestfs_echo_daemon (guestfs_h *g,\n"
8059 "                      char *const *words);\n"
8060 "\n"
8061 msgstr ""
8062
8063 #. type: textblock
8064 #: ../src/guestfs-actions.pod:1353 ../fish/guestfish-actions.pod:901
8065 msgid ""
8066 "This command concatenates the list of C<words> passed with single spaces "
8067 "between them and returns the resulting string."
8068 msgstr ""
8069
8070 #. type: textblock
8071 #: ../src/guestfs-actions.pod:1356 ../fish/guestfish-actions.pod:904
8072 msgid "You can use this command to test the connection through to the daemon."
8073 msgstr ""
8074
8075 #. type: textblock
8076 #: ../src/guestfs-actions.pod:1358
8077 msgid "See also C<guestfs_ping_daemon>."
8078 msgstr ""
8079
8080 #. type: textblock
8081 #: ../src/guestfs-actions.pod:1363 ../src/guestfs-actions.pod:2100 ../src/guestfs-actions.pod:6072
8082 msgid "(Added in 1.0.69)"
8083 msgstr ""
8084
8085 #. type: =head2
8086 #: ../src/guestfs-actions.pod:1365
8087 msgid "guestfs_egrep"
8088 msgstr ""
8089
8090 #. type: verbatim
8091 #: ../src/guestfs-actions.pod:1367
8092 #, no-wrap
8093 msgid ""
8094 " char **\n"
8095 " guestfs_egrep (guestfs_h *g,\n"
8096 "                const char *regex,\n"
8097 "                const char *path);\n"
8098 "\n"
8099 msgstr ""
8100
8101 #. type: textblock
8102 #: ../src/guestfs-actions.pod:1372 ../fish/guestfish-actions.pod:912
8103 msgid "This calls the external C<egrep> program and returns the matching lines."
8104 msgstr ""
8105
8106 #. type: textblock
8107 #: ../src/guestfs-actions.pod:1382 ../src/guestfs-actions.pod:1401 ../src/guestfs-actions.pod:1458 ../src/guestfs-actions.pod:1504 ../src/guestfs-actions.pod:1523 ../src/guestfs-actions.pod:2230 ../src/guestfs-actions.pod:2249 ../src/guestfs-actions.pod:2405 ../src/guestfs-actions.pod:2418 ../src/guestfs-actions.pod:2433 ../src/guestfs-actions.pod:2479 ../src/guestfs-actions.pod:2501 ../src/guestfs-actions.pod:2514 ../src/guestfs-actions.pod:3662 ../src/guestfs-actions.pod:3676 ../src/guestfs-actions.pod:3689 ../src/guestfs-actions.pod:3703 ../src/guestfs-actions.pod:4689 ../src/guestfs-actions.pod:5572 ../src/guestfs-actions.pod:5621 ../src/guestfs-actions.pod:6468 ../src/guestfs-actions.pod:6480 ../src/guestfs-actions.pod:6493 ../src/guestfs-actions.pod:6506 ../src/guestfs-actions.pod:6528 ../src/guestfs-actions.pod:6541 ../src/guestfs-actions.pod:6554 ../src/guestfs-actions.pod:6567 ../src/guestfs-actions.pod:7345 ../src/guestfs-actions.pod:7364 ../src/guestfs-actions.pod:7449 ../src/guestfs-actions.pod:7468 ../src/guestfs-actions.pod:7514 ../src/guestfs-actions.pod:7533
8108 msgid "(Added in 1.0.66)"
8109 msgstr ""
8110
8111 #. type: =head2
8112 #: ../src/guestfs-actions.pod:1384
8113 msgid "guestfs_egrepi"
8114 msgstr ""
8115
8116 #. type: verbatim
8117 #: ../src/guestfs-actions.pod:1386
8118 #, no-wrap
8119 msgid ""
8120 " char **\n"
8121 " guestfs_egrepi (guestfs_h *g,\n"
8122 "                 const char *regex,\n"
8123 "                 const char *path);\n"
8124 "\n"
8125 msgstr ""
8126
8127 #. type: textblock
8128 #: ../src/guestfs-actions.pod:1391 ../fish/guestfish-actions.pod:922
8129 msgid "This calls the external C<egrep -i> program and returns the matching lines."
8130 msgstr ""
8131
8132 #. type: =head2
8133 #: ../src/guestfs-actions.pod:1403
8134 msgid "guestfs_equal"
8135 msgstr ""
8136
8137 #. type: verbatim
8138 #: ../src/guestfs-actions.pod:1405
8139 #, no-wrap
8140 msgid ""
8141 " int\n"
8142 " guestfs_equal (guestfs_h *g,\n"
8143 "                const char *file1,\n"
8144 "                const char *file2);\n"
8145 "\n"
8146 msgstr ""
8147
8148 #. type: textblock
8149 #: ../src/guestfs-actions.pod:1410 ../fish/guestfish-actions.pod:932
8150 msgid ""
8151 "This compares the two files C<file1> and C<file2> and returns true if their "
8152 "content is exactly equal, or false otherwise."
8153 msgstr ""
8154
8155 #. type: textblock
8156 #: ../src/guestfs-actions.pod:1413 ../fish/guestfish-actions.pod:935
8157 msgid "The external L<cmp(1)> program is used for the comparison."
8158 msgstr ""
8159
8160 #. type: =head2
8161 #: ../src/guestfs-actions.pod:1419
8162 msgid "guestfs_exists"
8163 msgstr ""
8164
8165 #. type: verbatim
8166 #: ../src/guestfs-actions.pod:1421
8167 #, no-wrap
8168 msgid ""
8169 " int\n"
8170 " guestfs_exists (guestfs_h *g,\n"
8171 "                 const char *path);\n"
8172 "\n"
8173 msgstr ""
8174
8175 #. type: textblock
8176 #: ../src/guestfs-actions.pod:1425 ../fish/guestfish-actions.pod:941
8177 msgid ""
8178 "This returns C<true> if and only if there is a file, directory (or anything) "
8179 "with the given C<path> name."
8180 msgstr ""
8181
8182 #. type: textblock
8183 #: ../src/guestfs-actions.pod:1428
8184 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
8185 msgstr ""
8186
8187 #. type: =head2
8188 #: ../src/guestfs-actions.pod:1434
8189 msgid "guestfs_fallocate"
8190 msgstr ""
8191
8192 #. type: verbatim
8193 #: ../src/guestfs-actions.pod:1436
8194 #, no-wrap
8195 msgid ""
8196 " int\n"
8197 " guestfs_fallocate (guestfs_h *g,\n"
8198 "                    const char *path,\n"
8199 "                    int len);\n"
8200 "\n"
8201 msgstr ""
8202
8203 #. type: textblock
8204 #: ../src/guestfs-actions.pod:1441 ../src/guestfs-actions.pod:1467 ../fish/guestfish-actions.pod:950 ../fish/guestfish-actions.pod:969
8205 msgid ""
8206 "This command preallocates a file (containing zero bytes) named C<path> of "
8207 "size C<len> bytes.  If the file exists already, it is overwritten."
8208 msgstr ""
8209
8210 #. type: textblock
8211 #: ../src/guestfs-actions.pod:1445 ../fish/guestfish-actions.pod:954
8212 msgid ""
8213 "Do not confuse this with the guestfish-specific C<alloc> command which "
8214 "allocates a file in the host and attaches it as a device."
8215 msgstr ""
8216
8217 #. type: textblock
8218 #: ../src/guestfs-actions.pod:1451 ../fish/guestfish-actions.pod:958
8219 msgid ""
8220 "This function is deprecated.  In new code, use the C<fallocate64> call "
8221 "instead."
8222 msgstr ""
8223
8224 #. type: =head2
8225 #: ../src/guestfs-actions.pod:1460
8226 msgid "guestfs_fallocate64"
8227 msgstr ""
8228
8229 #. type: verbatim
8230 #: ../src/guestfs-actions.pod:1462
8231 #, no-wrap
8232 msgid ""
8233 " int\n"
8234 " guestfs_fallocate64 (guestfs_h *g,\n"
8235 "                      const char *path,\n"
8236 "                      int64_t len);\n"
8237 "\n"
8238 msgstr ""
8239
8240 #. type: textblock
8241 #: ../src/guestfs-actions.pod:1471
8242 msgid ""
8243 "Note that this call allocates disk blocks for the file.  To create a sparse "
8244 "file use C<guestfs_truncate_size> instead."
8245 msgstr ""
8246
8247 #. type: textblock
8248 #: ../src/guestfs-actions.pod:1474
8249 msgid ""
8250 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
8251 "oversight it only allowed 30 bit lengths to be specified, effectively "
8252 "limiting the maximum size of files created through that call to 1GB."
8253 msgstr ""
8254
8255 #. type: textblock
8256 #: ../src/guestfs-actions.pod:1479 ../fish/guestfish-actions.pod:981
8257 msgid ""
8258 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
8259 "commands which create a file in the host and attach it as a device."
8260 msgstr ""
8261
8262 #. type: textblock
8263 #: ../src/guestfs-actions.pod:1485
8264 msgid "(Added in 1.3.17)"
8265 msgstr ""
8266
8267 #. type: =head2
8268 #: ../src/guestfs-actions.pod:1487
8269 msgid "guestfs_fgrep"
8270 msgstr ""
8271
8272 #. type: verbatim
8273 #: ../src/guestfs-actions.pod:1489
8274 #, no-wrap
8275 msgid ""
8276 " char **\n"
8277 " guestfs_fgrep (guestfs_h *g,\n"
8278 "                const char *pattern,\n"
8279 "                const char *path);\n"
8280 "\n"
8281 msgstr ""
8282
8283 #. type: textblock
8284 #: ../src/guestfs-actions.pod:1494 ../fish/guestfish-actions.pod:989
8285 msgid "This calls the external C<fgrep> program and returns the matching lines."
8286 msgstr ""
8287
8288 #. type: =head2
8289 #: ../src/guestfs-actions.pod:1506
8290 msgid "guestfs_fgrepi"
8291 msgstr ""
8292
8293 #. type: verbatim
8294 #: ../src/guestfs-actions.pod:1508
8295 #, no-wrap
8296 msgid ""
8297 " char **\n"
8298 " guestfs_fgrepi (guestfs_h *g,\n"
8299 "                 const char *pattern,\n"
8300 "                 const char *path);\n"
8301 "\n"
8302 msgstr ""
8303
8304 #. type: textblock
8305 #: ../src/guestfs-actions.pod:1513 ../fish/guestfish-actions.pod:999
8306 msgid "This calls the external C<fgrep -i> program and returns the matching lines."
8307 msgstr ""
8308
8309 #. type: =head2
8310 #: ../src/guestfs-actions.pod:1525
8311 msgid "guestfs_file"
8312 msgstr ""
8313
8314 #. type: verbatim
8315 #: ../src/guestfs-actions.pod:1527
8316 #, no-wrap
8317 msgid ""
8318 " char *\n"
8319 " guestfs_file (guestfs_h *g,\n"
8320 "               const char *path);\n"
8321 "\n"
8322 msgstr ""
8323
8324 #. type: textblock
8325 #: ../src/guestfs-actions.pod:1531 ../fish/guestfish-actions.pod:1009
8326 msgid ""
8327 "This call uses the standard L<file(1)> command to determine the type or "
8328 "contents of the file."
8329 msgstr ""
8330
8331 #. type: textblock
8332 #: ../src/guestfs-actions.pod:1534 ../fish/guestfish-actions.pod:1012
8333 msgid ""
8334 "This call will also transparently look inside various types of compressed "
8335 "file."
8336 msgstr ""
8337
8338 #. type: textblock
8339 #: ../src/guestfs-actions.pod:1537 ../fish/guestfish-actions.pod:1015
8340 msgid ""
8341 "The exact command which runs is C<file -zb path>.  Note in particular that "
8342 "the filename is not prepended to the output (the I<-b> option)."
8343 msgstr ""
8344
8345 #. type: textblock
8346 #: ../src/guestfs-actions.pod:1541
8347 msgid ""
8348 "This command can also be used on C</dev/> devices (and partitions, LV "
8349 "names).  You can for example use this to determine if a device contains a "
8350 "filesystem, although it's usually better to use C<guestfs_vfs_type>."
8351 msgstr ""
8352
8353 #. type: textblock
8354 #: ../src/guestfs-actions.pod:1546 ../fish/guestfish-actions.pod:1024
8355 msgid ""
8356 "If the C<path> does not begin with C</dev/> then this command only works for "
8357 "the content of regular files.  For other file types (directory, symbolic "
8358 "link etc) it will just return the string C<directory> etc."
8359 msgstr ""
8360
8361 #. type: =head2
8362 #: ../src/guestfs-actions.pod:1556
8363 msgid "guestfs_file_architecture"
8364 msgstr ""
8365
8366 #. type: verbatim
8367 #: ../src/guestfs-actions.pod:1558
8368 #, no-wrap
8369 msgid ""
8370 " char *\n"
8371 " guestfs_file_architecture (guestfs_h *g,\n"
8372 "                            const char *filename);\n"
8373 "\n"
8374 msgstr ""
8375
8376 #. type: textblock
8377 #: ../src/guestfs-actions.pod:1562 ../fish/guestfish-actions.pod:1033
8378 msgid ""
8379 "This detects the architecture of the binary C<filename>, and returns it if "
8380 "known."
8381 msgstr ""
8382
8383 #. type: textblock
8384 #: ../src/guestfs-actions.pod:1565 ../fish/guestfish-actions.pod:1036
8385 msgid "Currently defined architectures are:"
8386 msgstr ""
8387
8388 #. type: =item
8389 #: ../src/guestfs-actions.pod:1569 ../fish/guestfish-actions.pod:1040
8390 msgid "\"i386\""
8391 msgstr ""
8392
8393 #. type: textblock
8394 #: ../src/guestfs-actions.pod:1571 ../fish/guestfish-actions.pod:1042
8395 msgid ""
8396 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
8397 "irrespective of the precise processor requirements of the binary."
8398 msgstr ""
8399
8400 #. type: =item
8401 #: ../src/guestfs-actions.pod:1574 ../fish/guestfish-actions.pod:1045
8402 msgid "\"x86_64\""
8403 msgstr ""
8404
8405 #. type: textblock
8406 #: ../src/guestfs-actions.pod:1576 ../fish/guestfish-actions.pod:1047
8407 msgid "64 bit x86-64."
8408 msgstr ""
8409
8410 #. type: =item
8411 #: ../src/guestfs-actions.pod:1578 ../fish/guestfish-actions.pod:1049
8412 msgid "\"sparc\""
8413 msgstr ""
8414
8415 #. type: textblock
8416 #: ../src/guestfs-actions.pod:1580 ../fish/guestfish-actions.pod:1051
8417 msgid "32 bit SPARC."
8418 msgstr ""
8419
8420 #. type: =item
8421 #: ../src/guestfs-actions.pod:1582 ../fish/guestfish-actions.pod:1053
8422 msgid "\"sparc64\""
8423 msgstr ""
8424
8425 #. type: textblock
8426 #: ../src/guestfs-actions.pod:1584 ../fish/guestfish-actions.pod:1055
8427 msgid "64 bit SPARC V9 and above."
8428 msgstr ""
8429
8430 #. type: =item
8431 #: ../src/guestfs-actions.pod:1586 ../fish/guestfish-actions.pod:1057
8432 msgid "\"ia64\""
8433 msgstr ""
8434
8435 #. type: textblock
8436 #: ../src/guestfs-actions.pod:1588 ../fish/guestfish-actions.pod:1059
8437 msgid "Intel Itanium."
8438 msgstr ""
8439
8440 #. type: =item
8441 #: ../src/guestfs-actions.pod:1590 ../fish/guestfish-actions.pod:1061
8442 msgid "\"ppc\""
8443 msgstr ""
8444
8445 #. type: textblock
8446 #: ../src/guestfs-actions.pod:1592 ../fish/guestfish-actions.pod:1063
8447 msgid "32 bit Power PC."
8448 msgstr ""
8449
8450 #. type: =item
8451 #: ../src/guestfs-actions.pod:1594 ../fish/guestfish-actions.pod:1065
8452 msgid "\"ppc64\""
8453 msgstr ""
8454
8455 #. type: textblock
8456 #: ../src/guestfs-actions.pod:1596 ../fish/guestfish-actions.pod:1067
8457 msgid "64 bit Power PC."
8458 msgstr ""
8459
8460 #. type: textblock
8461 #: ../src/guestfs-actions.pod:1600 ../fish/guestfish-actions.pod:1071
8462 msgid "Libguestfs may return other architecture strings in future."
8463 msgstr ""
8464
8465 #. type: textblock
8466 #: ../src/guestfs-actions.pod:1602 ../fish/guestfish-actions.pod:1073
8467 msgid "The function works on at least the following types of files:"
8468 msgstr ""
8469
8470 #. type: textblock
8471 #: ../src/guestfs-actions.pod:1608 ../fish/guestfish-actions.pod:1079
8472 msgid "many types of Un*x and Linux binary"
8473 msgstr ""
8474
8475 #. type: textblock
8476 #: ../src/guestfs-actions.pod:1612 ../fish/guestfish-actions.pod:1083
8477 msgid "many types of Un*x and Linux shared library"
8478 msgstr ""
8479
8480 #. type: textblock
8481 #: ../src/guestfs-actions.pod:1616 ../fish/guestfish-actions.pod:1087
8482 msgid "Windows Win32 and Win64 binaries"
8483 msgstr ""
8484
8485 #. type: textblock
8486 #: ../src/guestfs-actions.pod:1620 ../fish/guestfish-actions.pod:1091
8487 msgid "Windows Win32 and Win64 DLLs"
8488 msgstr ""
8489
8490 #. type: textblock
8491 #: ../src/guestfs-actions.pod:1622 ../fish/guestfish-actions.pod:1093
8492 msgid "Win32 binaries and DLLs return C<i386>."
8493 msgstr ""
8494
8495 #. type: textblock
8496 #: ../src/guestfs-actions.pod:1624 ../fish/guestfish-actions.pod:1095
8497 msgid "Win64 binaries and DLLs return C<x86_64>."
8498 msgstr ""
8499
8500 #. type: textblock
8501 #: ../src/guestfs-actions.pod:1628 ../fish/guestfish-actions.pod:1099
8502 msgid "Linux kernel modules"
8503 msgstr ""
8504
8505 #. type: textblock
8506 #: ../src/guestfs-actions.pod:1632 ../fish/guestfish-actions.pod:1103
8507 msgid "Linux new-style initrd images"
8508 msgstr ""
8509
8510 #. type: textblock
8511 #: ../src/guestfs-actions.pod:1636 ../fish/guestfish-actions.pod:1107
8512 msgid "some non-x86 Linux vmlinuz kernels"
8513 msgstr ""
8514
8515 #. type: textblock
8516 #: ../src/guestfs-actions.pod:1640 ../fish/guestfish-actions.pod:1111
8517 msgid "What it can't do currently:"
8518 msgstr ""
8519
8520 #. type: textblock
8521 #: ../src/guestfs-actions.pod:1646 ../fish/guestfish-actions.pod:1117
8522 msgid "static libraries (libfoo.a)"
8523 msgstr ""
8524
8525 #. type: textblock
8526 #: ../src/guestfs-actions.pod:1650 ../fish/guestfish-actions.pod:1121
8527 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
8528 msgstr ""
8529
8530 #. type: textblock
8531 #: ../src/guestfs-actions.pod:1654 ../fish/guestfish-actions.pod:1125
8532 msgid "x86 Linux vmlinuz kernels"
8533 msgstr ""
8534
8535 #. type: textblock
8536 #: ../src/guestfs-actions.pod:1656 ../fish/guestfish-actions.pod:1127
8537 msgid ""
8538 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
8539 "compressed code, and are horribly hard to unpack.  If you want to find the "
8540 "architecture of a kernel, use the architecture of the associated initrd or "
8541 "kernel module(s) instead."
8542 msgstr ""
8543
8544 #. type: textblock
8545 #: ../src/guestfs-actions.pod:1666 ../src/guestfs-actions.pod:1829 ../src/guestfs-actions.pod:1846 ../src/guestfs-actions.pod:2537 ../src/guestfs-actions.pod:2630 ../src/guestfs-actions.pod:2700 ../src/guestfs-actions.pod:2788 ../src/guestfs-actions.pod:2809 ../src/guestfs-actions.pod:2852 ../src/guestfs-actions.pod:2936 ../src/guestfs-actions.pod:3033 ../src/guestfs-actions.pod:3280 ../src/guestfs-actions.pod:3412
8546 msgid "(Added in 1.5.3)"
8547 msgstr ""
8548
8549 #. type: =head2
8550 #: ../src/guestfs-actions.pod:1668
8551 msgid "guestfs_filesize"
8552 msgstr ""
8553
8554 #. type: verbatim
8555 #: ../src/guestfs-actions.pod:1670
8556 #, no-wrap
8557 msgid ""
8558 " int64_t\n"
8559 " guestfs_filesize (guestfs_h *g,\n"
8560 "                   const char *file);\n"
8561 "\n"
8562 msgstr ""
8563
8564 #. type: textblock
8565 #: ../src/guestfs-actions.pod:1674 ../fish/guestfish-actions.pod:1138
8566 msgid "This command returns the size of C<file> in bytes."
8567 msgstr ""
8568
8569 #. type: textblock
8570 #: ../src/guestfs-actions.pod:1676
8571 msgid ""
8572 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
8573 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
8574 "devices, use C<guestfs_blockdev_getsize64>."
8575 msgstr ""
8576
8577 #. type: textblock
8578 #: ../src/guestfs-actions.pod:1682
8579 msgid "(Added in 1.0.82)"
8580 msgstr ""
8581
8582 #. type: =head2
8583 #: ../src/guestfs-actions.pod:1684
8584 msgid "guestfs_fill"
8585 msgstr ""
8586
8587 #. type: verbatim
8588 #: ../src/guestfs-actions.pod:1686
8589 #, no-wrap
8590 msgid ""
8591 " int\n"
8592 " guestfs_fill (guestfs_h *g,\n"
8593 "               int c,\n"
8594 "               int len,\n"
8595 "               const char *path);\n"
8596 "\n"
8597 msgstr ""
8598
8599 #. type: textblock
8600 #: ../src/guestfs-actions.pod:1692 ../fish/guestfish-actions.pod:1148
8601 msgid ""
8602 "This command creates a new file called C<path>.  The initial content of the "
8603 "file is C<len> octets of C<c>, where C<c> must be a number in the range "
8604 "C<[0..255]>."
8605 msgstr ""
8606
8607 #. type: textblock
8608 #: ../src/guestfs-actions.pod:1696
8609 msgid ""
8610 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
8611 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
8612 "bytes use C<guestfs_fill_pattern>."
8613 msgstr ""
8614
8615 #. type: textblock
8616 #: ../src/guestfs-actions.pod:1708
8617 msgid "(Added in 1.0.79)"
8618 msgstr ""
8619
8620 #. type: =head2
8621 #: ../src/guestfs-actions.pod:1710
8622 msgid "guestfs_fill_pattern"
8623 msgstr ""
8624
8625 #. type: verbatim
8626 #: ../src/guestfs-actions.pod:1712
8627 #, no-wrap
8628 msgid ""
8629 " int\n"
8630 " guestfs_fill_pattern (guestfs_h *g,\n"
8631 "                       const char *pattern,\n"
8632 "                       int len,\n"
8633 "                       const char *path);\n"
8634 "\n"
8635 msgstr ""
8636
8637 #. type: textblock
8638 #: ../src/guestfs-actions.pod:1718
8639 msgid ""
8640 "This function is like C<guestfs_fill> except that it creates a new file of "
8641 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
8642 "pattern is truncated if necessary to ensure the length of the file is "
8643 "exactly C<len> bytes."
8644 msgstr ""
8645
8646 #. type: textblock
8647 #: ../src/guestfs-actions.pod:1730
8648 msgid "(Added in 1.3.12)"
8649 msgstr ""
8650
8651 #. type: =head2
8652 #: ../src/guestfs-actions.pod:1732
8653 msgid "guestfs_find"
8654 msgstr ""
8655
8656 #. type: verbatim
8657 #: ../src/guestfs-actions.pod:1734
8658 #, no-wrap
8659 msgid ""
8660 " char **\n"
8661 " guestfs_find (guestfs_h *g,\n"
8662 "               const char *directory);\n"
8663 "\n"
8664 msgstr ""
8665
8666 #. type: textblock
8667 #: ../src/guestfs-actions.pod:1738 ../fish/guestfish-actions.pod:1170
8668 msgid ""
8669 "This command lists out all files and directories, recursively, starting at "
8670 "C<directory>.  It is essentially equivalent to running the shell command "
8671 "C<find directory -print> but some post-processing happens on the output, "
8672 "described below."
8673 msgstr ""
8674
8675 #. type: textblock
8676 #: ../src/guestfs-actions.pod:1743 ../fish/guestfish-actions.pod:1175
8677 msgid ""
8678 "This returns a list of strings I<without any prefix>.  Thus if the directory "
8679 "structure was:"
8680 msgstr ""
8681
8682 #. type: verbatim
8683 #: ../src/guestfs-actions.pod:1746 ../fish/guestfish-actions.pod:1178
8684 #, no-wrap
8685 msgid ""
8686 " /tmp/a\n"
8687 " /tmp/b\n"
8688 " /tmp/c/d\n"
8689 "\n"
8690 msgstr ""
8691
8692 #. type: textblock
8693 #: ../src/guestfs-actions.pod:1750
8694 msgid "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
8695 msgstr ""
8696
8697 #. type: verbatim
8698 #: ../src/guestfs-actions.pod:1753 ../fish/guestfish-actions.pod:1185
8699 #, no-wrap
8700 msgid ""
8701 " a\n"
8702 " b\n"
8703 " c\n"
8704 " c/d\n"
8705 "\n"
8706 msgstr ""
8707
8708 #. type: textblock
8709 #: ../src/guestfs-actions.pod:1758 ../fish/guestfish-actions.pod:1190
8710 msgid "If C<directory> is not a directory, then this command returns an error."
8711 msgstr ""
8712
8713 #. type: textblock
8714 #: ../src/guestfs-actions.pod:1761 ../fish/guestfish-actions.pod:1193
8715 msgid "The returned list is sorted."
8716 msgstr ""
8717
8718 #. type: textblock
8719 #: ../src/guestfs-actions.pod:1763
8720 msgid "See also C<guestfs_find0>."
8721 msgstr ""
8722
8723 #. type: textblock
8724 #: ../src/guestfs-actions.pod:1772 ../src/guestfs-actions.pod:4106 ../src/guestfs-actions.pod:5656
8725 msgid "(Added in 1.0.27)"
8726 msgstr ""
8727
8728 #. type: =head2
8729 #: ../src/guestfs-actions.pod:1774
8730 msgid "guestfs_find0"
8731 msgstr ""
8732
8733 #. type: verbatim
8734 #: ../src/guestfs-actions.pod:1776
8735 #, no-wrap
8736 msgid ""
8737 " int\n"
8738 " guestfs_find0 (guestfs_h *g,\n"
8739 "                const char *directory,\n"
8740 "                const char *files);\n"
8741 "\n"
8742 msgstr ""
8743
8744 #. type: textblock
8745 #: ../src/guestfs-actions.pod:1781 ../fish/guestfish-actions.pod:1204
8746 msgid ""
8747 "This command lists out all files and directories, recursively, starting at "
8748 "C<directory>, placing the resulting list in the external file called "
8749 "C<files>."
8750 msgstr ""
8751
8752 #. type: textblock
8753 #: ../src/guestfs-actions.pod:1785
8754 msgid ""
8755 "This command works the same way as C<guestfs_find> with the following "
8756 "exceptions:"
8757 msgstr ""
8758
8759 #. type: textblock
8760 #: ../src/guestfs-actions.pod:1792 ../fish/guestfish-actions.pod:1215
8761 msgid "The resulting list is written to an external file."
8762 msgstr ""
8763
8764 #. type: textblock
8765 #: ../src/guestfs-actions.pod:1796 ../fish/guestfish-actions.pod:1219
8766 msgid ""
8767 "Items (filenames) in the result are separated by C<\\0> characters.  See "
8768 "L<find(1)> option I<-print0>."
8769 msgstr ""
8770
8771 #. type: textblock
8772 #: ../src/guestfs-actions.pod:1801 ../fish/guestfish-actions.pod:1224
8773 msgid "This command is not limited in the number of names that it can return."
8774 msgstr ""
8775
8776 #. type: textblock
8777 #: ../src/guestfs-actions.pod:1806 ../fish/guestfish-actions.pod:1229
8778 msgid "The result list is not sorted."
8779 msgstr ""
8780
8781 #. type: textblock
8782 #: ../src/guestfs-actions.pod:1812
8783 msgid "(Added in 1.0.74)"
8784 msgstr ""
8785
8786 #. type: =head2
8787 #: ../src/guestfs-actions.pod:1814
8788 msgid "guestfs_findfs_label"
8789 msgstr ""
8790
8791 #. type: verbatim
8792 #: ../src/guestfs-actions.pod:1816
8793 #, no-wrap
8794 msgid ""
8795 " char *\n"
8796 " guestfs_findfs_label (guestfs_h *g,\n"
8797 "                       const char *label);\n"
8798 "\n"
8799 msgstr ""
8800
8801 #. type: textblock
8802 #: ../src/guestfs-actions.pod:1820 ../fish/guestfish-actions.pod:1239
8803 msgid ""
8804 "This command searches the filesystems and returns the one which has the "
8805 "given label.  An error is returned if no such filesystem can be found."
8806 msgstr ""
8807
8808 #. type: textblock
8809 #: ../src/guestfs-actions.pod:1824
8810 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
8811 msgstr ""
8812
8813 #. type: =head2
8814 #: ../src/guestfs-actions.pod:1831
8815 msgid "guestfs_findfs_uuid"
8816 msgstr ""
8817
8818 #. type: verbatim
8819 #: ../src/guestfs-actions.pod:1833
8820 #, no-wrap
8821 msgid ""
8822 " char *\n"
8823 " guestfs_findfs_uuid (guestfs_h *g,\n"
8824 "                      const char *uuid);\n"
8825 "\n"
8826 msgstr ""
8827
8828 #. type: textblock
8829 #: ../src/guestfs-actions.pod:1837 ../fish/guestfish-actions.pod:1249
8830 msgid ""
8831 "This command searches the filesystems and returns the one which has the "
8832 "given UUID.  An error is returned if no such filesystem can be found."
8833 msgstr ""
8834
8835 #. type: textblock
8836 #: ../src/guestfs-actions.pod:1841
8837 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
8838 msgstr ""
8839
8840 #. type: =head2
8841 #: ../src/guestfs-actions.pod:1848
8842 msgid "guestfs_fsck"
8843 msgstr ""
8844
8845 #. type: verbatim
8846 #: ../src/guestfs-actions.pod:1850
8847 #, no-wrap
8848 msgid ""
8849 " int\n"
8850 " guestfs_fsck (guestfs_h *g,\n"
8851 "               const char *fstype,\n"
8852 "               const char *device);\n"
8853 "\n"
8854 msgstr ""
8855
8856 #. type: textblock
8857 #: ../src/guestfs-actions.pod:1855 ../fish/guestfish-actions.pod:1259
8858 msgid ""
8859 "This runs the filesystem checker (fsck) on C<device> which should have "
8860 "filesystem type C<fstype>."
8861 msgstr ""
8862
8863 #. type: textblock
8864 #: ../src/guestfs-actions.pod:1858 ../fish/guestfish-actions.pod:1262
8865 msgid ""
8866 "The returned integer is the status.  See L<fsck(8)> for the list of status "
8867 "codes from C<fsck>."
8868 msgstr ""
8869
8870 #. type: textblock
8871 #: ../src/guestfs-actions.pod:1867 ../fish/guestfish-actions.pod:1271
8872 msgid "Multiple status codes can be summed together."
8873 msgstr ""
8874
8875 #. type: textblock
8876 #: ../src/guestfs-actions.pod:1871 ../fish/guestfish-actions.pod:1275
8877 msgid ""
8878 "A non-zero return code can mean \"success\", for example if errors have been "
8879 "corrected on the filesystem."
8880 msgstr ""
8881
8882 #. type: textblock
8883 #: ../src/guestfs-actions.pod:1876 ../fish/guestfish-actions.pod:1280
8884 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
8885 msgstr ""
8886
8887 #. type: textblock
8888 #: ../src/guestfs-actions.pod:1881 ../fish/guestfish-actions.pod:1285
8889 msgid "This command is entirely equivalent to running C<fsck -a -t fstype device>."
8890 msgstr ""
8891
8892 #. type: textblock
8893 #: ../src/guestfs-actions.pod:1885 ../src/guestfs-actions.pod:7387
8894 msgid "(Added in 1.0.16)"
8895 msgstr ""
8896
8897 #. type: =head2
8898 #: ../src/guestfs-actions.pod:1887
8899 msgid "guestfs_get_append"
8900 msgstr ""
8901
8902 #. type: verbatim
8903 #: ../src/guestfs-actions.pod:1889
8904 #, no-wrap
8905 msgid ""
8906 " const char *\n"
8907 " guestfs_get_append (guestfs_h *g);\n"
8908 "\n"
8909 msgstr ""
8910
8911 #. type: textblock
8912 #: ../src/guestfs-actions.pod:1892 ../fish/guestfish-actions.pod:1291
8913 msgid ""
8914 "Return the additional kernel options which are added to the guest kernel "
8915 "command line."
8916 msgstr ""
8917
8918 #. type: textblock
8919 #: ../src/guestfs-actions.pod:1895 ../fish/guestfish-actions.pod:1294
8920 msgid "If C<NULL> then no options are added."
8921 msgstr ""
8922
8923 #. type: textblock
8924 #: ../src/guestfs-actions.pod:1897
8925 msgid ""
8926 "This function returns a string which may be NULL.  There is no way to return "
8927 "an error from this function.  The string is owned by the guest handle and "
8928 "must I<not> be freed."
8929 msgstr ""
8930
8931 #. type: textblock
8932 #: ../src/guestfs-actions.pod:1901 ../src/guestfs-actions.pod:5334 ../src/guestfs-actions.pod:5814 ../src/guestfs-actions.pod:6235 ../src/guestfs-actions.pod:6254 ../src/guestfs-actions.pod:6270 ../src/guestfs-actions.pod:6294 ../src/guestfs-actions.pod:7051 ../src/guestfs-actions.pod:7069 ../src/guestfs-actions.pod:7430
8933 msgid "(Added in 1.0.26)"
8934 msgstr ""
8935
8936 #. type: =head2
8937 #: ../src/guestfs-actions.pod:1903
8938 msgid "guestfs_get_attach_method"
8939 msgstr ""
8940
8941 #. type: verbatim
8942 #: ../src/guestfs-actions.pod:1905
8943 #, no-wrap
8944 msgid ""
8945 " char *\n"
8946 " guestfs_get_attach_method (guestfs_h *g);\n"
8947 "\n"
8948 msgstr ""
8949
8950 #. type: textblock
8951 #: ../src/guestfs-actions.pod:1908
8952 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
8953 msgstr ""
8954
8955 #. type: =head2
8956 #: ../src/guestfs-actions.pod:1913
8957 msgid "guestfs_get_autosync"
8958 msgstr ""
8959
8960 #. type: verbatim
8961 #: ../src/guestfs-actions.pod:1915
8962 #, no-wrap
8963 msgid ""
8964 " int\n"
8965 " guestfs_get_autosync (guestfs_h *g);\n"
8966 "\n"
8967 msgstr ""
8968
8969 #. type: textblock
8970 #: ../src/guestfs-actions.pod:1918 ../fish/guestfish-actions.pod:1306
8971 msgid "Get the autosync flag."
8972 msgstr ""
8973
8974 #. type: =head2
8975 #: ../src/guestfs-actions.pod:1924
8976 msgid "guestfs_get_direct"
8977 msgstr ""
8978
8979 #. type: verbatim
8980 #: ../src/guestfs-actions.pod:1926
8981 #, no-wrap
8982 msgid ""
8983 " int\n"
8984 " guestfs_get_direct (guestfs_h *g);\n"
8985 "\n"
8986 msgstr ""
8987
8988 #. type: textblock
8989 #: ../src/guestfs-actions.pod:1929 ../fish/guestfish-actions.pod:1312
8990 msgid "Return the direct appliance mode flag."
8991 msgstr ""
8992
8993 #. type: textblock
8994 #: ../src/guestfs-actions.pod:1933 ../src/guestfs-actions.pod:5883
8995 msgid "(Added in 1.0.72)"
8996 msgstr ""
8997
8998 #. type: =head2
8999 #: ../src/guestfs-actions.pod:1935
9000 msgid "guestfs_get_e2label"
9001 msgstr ""
9002
9003 #. type: verbatim
9004 #: ../src/guestfs-actions.pod:1937
9005 #, no-wrap
9006 msgid ""
9007 " char *\n"
9008 " guestfs_get_e2label (guestfs_h *g,\n"
9009 "                      const char *device);\n"
9010 "\n"
9011 msgstr ""
9012
9013 #. type: textblock
9014 #: ../src/guestfs-actions.pod:1941 ../fish/guestfish-actions.pod:1318
9015 msgid "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
9016 msgstr ""
9017
9018 #. type: textblock
9019 #: ../src/guestfs-actions.pod:1947 ../fish/guestfish-actions.pod:1321
9020 msgid ""
9021 "This function is deprecated.  In new code, use the C<vfs_label> call "
9022 "instead."
9023 msgstr ""
9024
9025 #. type: textblock
9026 #: ../src/guestfs-actions.pod:1954 ../src/guestfs-actions.pod:1975 ../src/guestfs-actions.pod:5901 ../src/guestfs-actions.pod:5920
9027 msgid "(Added in 1.0.15)"
9028 msgstr ""
9029
9030 #. type: =head2
9031 #: ../src/guestfs-actions.pod:1956
9032 msgid "guestfs_get_e2uuid"
9033 msgstr ""
9034
9035 #. type: verbatim
9036 #: ../src/guestfs-actions.pod:1958
9037 #, no-wrap
9038 msgid ""
9039 " char *\n"
9040 " guestfs_get_e2uuid (guestfs_h *g,\n"
9041 "                     const char *device);\n"
9042 "\n"
9043 msgstr ""
9044
9045 #. type: textblock
9046 #: ../src/guestfs-actions.pod:1962 ../fish/guestfish-actions.pod:1332
9047 msgid "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
9048 msgstr ""
9049
9050 #. type: textblock
9051 #: ../src/guestfs-actions.pod:1968 ../fish/guestfish-actions.pod:1335
9052 msgid "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
9053 msgstr ""
9054
9055 #. type: =head2
9056 #: ../src/guestfs-actions.pod:1977
9057 msgid "guestfs_get_memsize"
9058 msgstr ""
9059
9060 #. type: verbatim
9061 #: ../src/guestfs-actions.pod:1979
9062 #, no-wrap
9063 msgid ""
9064 " int\n"
9065 " guestfs_get_memsize (guestfs_h *g);\n"
9066 "\n"
9067 msgstr ""
9068
9069 #. type: textblock
9070 #: ../src/guestfs-actions.pod:1982 ../fish/guestfish-actions.pod:1346
9071 msgid "This gets the memory size in megabytes allocated to the qemu subprocess."
9072 msgstr ""
9073
9074 #. type: textblock
9075 #: ../src/guestfs-actions.pod:1985
9076 msgid ""
9077 "If C<guestfs_set_memsize> was not called on this handle, and if "
9078 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
9079 "value for memsize."
9080 msgstr ""
9081
9082 #. type: textblock
9083 #: ../src/guestfs-actions.pod:1989 ../src/guestfs-actions.pod:2070 ../src/guestfs-actions.pod:5936 ../src/guestfs-actions.pod:6043 ../fish/guestfish-actions.pod:1353 ../fish/guestfish-actions.pod:1404 ../fish/guestfish-actions.pod:4005 ../fish/guestfish-actions.pod:4092
9084 msgid "For more information on the architecture of libguestfs, see L<guestfs(3)>."
9085 msgstr ""
9086
9087 #. type: textblock
9088 #: ../src/guestfs-actions.pod:1994 ../src/guestfs-actions.pod:4397 ../src/guestfs-actions.pod:4594 ../src/guestfs-actions.pod:4613 ../src/guestfs-actions.pod:4632 ../src/guestfs-actions.pod:4644 ../src/guestfs-actions.pod:4661 ../src/guestfs-actions.pod:4674 ../src/guestfs-actions.pod:5559 ../src/guestfs-actions.pod:5941 ../src/guestfs-actions.pod:6202 ../src/guestfs-actions.pod:6817
9089 msgid "(Added in 1.0.55)"
9090 msgstr ""
9091
9092 #. type: =head2
9093 #: ../src/guestfs-actions.pod:1996
9094 msgid "guestfs_get_network"
9095 msgstr ""
9096
9097 #. type: verbatim
9098 #: ../src/guestfs-actions.pod:1998
9099 #, no-wrap
9100 msgid ""
9101 " int\n"
9102 " guestfs_get_network (guestfs_h *g);\n"
9103 "\n"
9104 msgstr ""
9105
9106 #. type: textblock
9107 #: ../src/guestfs-actions.pod:2001 ../fish/guestfish-actions.pod:1360
9108 msgid "This returns the enable network flag."
9109 msgstr ""
9110
9111 #. type: textblock
9112 #: ../src/guestfs-actions.pod:2005 ../src/guestfs-actions.pod:5960
9113 msgid "(Added in 1.5.4)"
9114 msgstr ""
9115
9116 #. type: =head2
9117 #: ../src/guestfs-actions.pod:2007
9118 msgid "guestfs_get_path"
9119 msgstr ""
9120
9121 #. type: verbatim
9122 #: ../src/guestfs-actions.pod:2009
9123 #, no-wrap
9124 msgid ""
9125 " const char *\n"
9126 " guestfs_get_path (guestfs_h *g);\n"
9127 "\n"
9128 msgstr ""
9129
9130 #. type: textblock
9131 #: ../src/guestfs-actions.pod:2012 ../fish/guestfish-actions.pod:1366
9132 msgid "Return the current search path."
9133 msgstr ""
9134
9135 #. type: textblock
9136 #: ../src/guestfs-actions.pod:2014 ../fish/guestfish-actions.pod:1368
9137 msgid ""
9138 "This is always non-NULL.  If it wasn't set already, then this will return "
9139 "the default path."
9140 msgstr ""
9141
9142 #. type: textblock
9143 #: ../src/guestfs-actions.pod:2017 ../src/guestfs-actions.pod:2046
9144 msgid ""
9145 "This function returns a string, or NULL on error.  The string is owned by "
9146 "the guest handle and must I<not> be freed."
9147 msgstr ""
9148
9149 #. type: =head2
9150 #: ../src/guestfs-actions.pod:2022
9151 msgid "guestfs_get_pid"
9152 msgstr ""
9153
9154 #. type: verbatim
9155 #: ../src/guestfs-actions.pod:2024
9156 #, no-wrap
9157 msgid ""
9158 " int\n"
9159 " guestfs_get_pid (guestfs_h *g);\n"
9160 "\n"
9161 msgstr ""
9162
9163 #. type: textblock
9164 #: ../src/guestfs-actions.pod:2027 ../fish/guestfish-actions.pod:1377
9165 msgid ""
9166 "Return the process ID of the qemu subprocess.  If there is no qemu "
9167 "subprocess, then this will return an error."
9168 msgstr ""
9169
9170 #. type: textblock
9171 #: ../src/guestfs-actions.pod:2030 ../fish/guestfish-actions.pod:1380
9172 msgid "This is an internal call used for debugging and testing."
9173 msgstr ""
9174
9175 #. type: textblock
9176 #: ../src/guestfs-actions.pod:2034
9177 msgid "(Added in 1.0.56)"
9178 msgstr ""
9179
9180 #. type: =head2
9181 #: ../src/guestfs-actions.pod:2036
9182 msgid "guestfs_get_qemu"
9183 msgstr ""
9184
9185 #. type: verbatim
9186 #: ../src/guestfs-actions.pod:2038
9187 #, no-wrap
9188 msgid ""
9189 " const char *\n"
9190 " guestfs_get_qemu (guestfs_h *g);\n"
9191 "\n"
9192 msgstr ""
9193
9194 #. type: textblock
9195 #: ../src/guestfs-actions.pod:2041 ../fish/guestfish-actions.pod:1386
9196 msgid "Return the current qemu binary."
9197 msgstr ""
9198
9199 #. type: textblock
9200 #: ../src/guestfs-actions.pod:2043 ../fish/guestfish-actions.pod:1388
9201 msgid ""
9202 "This is always non-NULL.  If it wasn't set already, then this will return "
9203 "the default qemu binary name."
9204 msgstr ""
9205
9206 #. type: textblock
9207 #: ../src/guestfs-actions.pod:2049 ../src/guestfs-actions.pod:6005
9208 msgid "(Added in 1.0.6)"
9209 msgstr ""
9210
9211 #. type: =head2
9212 #: ../src/guestfs-actions.pod:2051
9213 msgid "guestfs_get_recovery_proc"
9214 msgstr ""
9215
9216 #. type: verbatim
9217 #: ../src/guestfs-actions.pod:2053
9218 #, no-wrap
9219 msgid ""
9220 " int\n"
9221 " guestfs_get_recovery_proc (guestfs_h *g);\n"
9222 "\n"
9223 msgstr ""
9224
9225 #. type: textblock
9226 #: ../src/guestfs-actions.pod:2056 ../fish/guestfish-actions.pod:1395
9227 msgid "Return the recovery process enabled flag."
9228 msgstr ""
9229
9230 #. type: textblock
9231 #: ../src/guestfs-actions.pod:2060 ../src/guestfs-actions.pod:3507 ../src/guestfs-actions.pod:3804 ../src/guestfs-actions.pod:4204 ../src/guestfs-actions.pod:4236 ../src/guestfs-actions.pod:5264 ../src/guestfs-actions.pod:5607 ../src/guestfs-actions.pod:6029 ../src/guestfs-actions.pod:6720 ../src/guestfs-actions.pod:6740 ../src/guestfs-actions.pod:6932
9232 msgid "(Added in 1.0.77)"
9233 msgstr ""
9234
9235 #. type: =head2
9236 #: ../src/guestfs-actions.pod:2062
9237 msgid "guestfs_get_selinux"
9238 msgstr ""
9239
9240 #. type: verbatim
9241 #: ../src/guestfs-actions.pod:2064
9242 #, no-wrap
9243 msgid ""
9244 " int\n"
9245 " guestfs_get_selinux (guestfs_h *g);\n"
9246 "\n"
9247 msgstr ""
9248
9249 #. type: textblock
9250 #: ../src/guestfs-actions.pod:2067
9251 msgid ""
9252 "This returns the current setting of the selinux flag which is passed to the "
9253 "appliance at boot time.  See C<guestfs_set_selinux>."
9254 msgstr ""
9255
9256 #. type: textblock
9257 #: ../src/guestfs-actions.pod:2075 ../src/guestfs-actions.pod:2138 ../src/guestfs-actions.pod:6048 ../src/guestfs-actions.pod:6106
9258 msgid "(Added in 1.0.67)"
9259 msgstr ""
9260
9261 #. type: =head2
9262 #: ../src/guestfs-actions.pod:2077
9263 msgid "guestfs_get_state"
9264 msgstr ""
9265
9266 #. type: verbatim
9267 #: ../src/guestfs-actions.pod:2079
9268 #, no-wrap
9269 msgid ""
9270 " int\n"
9271 " guestfs_get_state (guestfs_h *g);\n"
9272 "\n"
9273 msgstr ""
9274
9275 #. type: textblock
9276 #: ../src/guestfs-actions.pod:2082 ../fish/guestfish-actions.pod:1411
9277 msgid ""
9278 "This returns the current state as an opaque integer.  This is only useful "
9279 "for printing debug and internal error messages."
9280 msgstr ""
9281
9282 #. type: textblock
9283 #: ../src/guestfs-actions.pod:2085 ../src/guestfs-actions.pod:3305 ../src/guestfs-actions.pod:3334 ../src/guestfs-actions.pod:3395 ../src/guestfs-actions.pod:3422 ../fish/guestfish-actions.pod:1414 ../fish/guestfish-actions.pod:2328 ../fish/guestfish-actions.pod:2346 ../fish/guestfish-actions.pod:2384 ../fish/guestfish-actions.pod:2400
9284 msgid "For more information on states, see L<guestfs(3)>."
9285 msgstr ""
9286
9287 #. type: =head2
9288 #: ../src/guestfs-actions.pod:2091
9289 msgid "guestfs_get_trace"
9290 msgstr ""
9291
9292 #. type: verbatim
9293 #: ../src/guestfs-actions.pod:2093
9294 #, no-wrap
9295 msgid ""
9296 " int\n"
9297 " guestfs_get_trace (guestfs_h *g);\n"
9298 "\n"
9299 msgstr ""
9300
9301 #. type: textblock
9302 #: ../src/guestfs-actions.pod:2096 ../fish/guestfish-actions.pod:1420
9303 msgid "Return the command trace flag."
9304 msgstr ""
9305
9306 #. type: =head2
9307 #: ../src/guestfs-actions.pod:2102
9308 msgid "guestfs_get_umask"
9309 msgstr ""
9310
9311 #. type: verbatim
9312 #: ../src/guestfs-actions.pod:2104
9313 #, no-wrap
9314 msgid ""
9315 " int\n"
9316 " guestfs_get_umask (guestfs_h *g);\n"
9317 "\n"
9318 msgstr ""
9319
9320 #. type: textblock
9321 #: ../src/guestfs-actions.pod:2107
9322 msgid ""
9323 "Return the current umask.  By default the umask is C<022> unless it has been "
9324 "set by calling C<guestfs_umask>."
9325 msgstr ""
9326
9327 #. type: =head2
9328 #: ../src/guestfs-actions.pod:2114
9329 msgid "guestfs_get_verbose"
9330 msgstr ""
9331
9332 #. type: verbatim
9333 #: ../src/guestfs-actions.pod:2116
9334 #, no-wrap
9335 msgid ""
9336 " int\n"
9337 " guestfs_get_verbose (guestfs_h *g);\n"
9338 "\n"
9339 msgstr ""
9340
9341 #. type: textblock
9342 #: ../src/guestfs-actions.pod:2119 ../fish/guestfish-actions.pod:1433
9343 msgid "This returns the verbose messages flag."
9344 msgstr ""
9345
9346 #. type: =head2
9347 #: ../src/guestfs-actions.pod:2125
9348 msgid "guestfs_getcon"
9349 msgstr ""
9350
9351 #. type: verbatim
9352 #: ../src/guestfs-actions.pod:2127
9353 #, no-wrap
9354 msgid ""
9355 " char *\n"
9356 " guestfs_getcon (guestfs_h *g);\n"
9357 "\n"
9358 msgstr ""
9359
9360 #. type: textblock
9361 #: ../src/guestfs-actions.pod:2130 ../fish/guestfish-actions.pod:1439
9362 msgid "This gets the SELinux security context of the daemon."
9363 msgstr ""
9364
9365 #. type: textblock
9366 #: ../src/guestfs-actions.pod:2132
9367 msgid "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
9368 msgstr ""
9369
9370 #. type: =head2
9371 #: ../src/guestfs-actions.pod:2140
9372 msgid "guestfs_getxattr"
9373 msgstr ""
9374
9375 #. type: verbatim
9376 #: ../src/guestfs-actions.pod:2142
9377 #, no-wrap
9378 msgid ""
9379 " char *\n"
9380 " guestfs_getxattr (guestfs_h *g,\n"
9381 "                   const char *path,\n"
9382 "                   const char *name,\n"
9383 "                   size_t *size_r);\n"
9384 "\n"
9385 msgstr ""
9386
9387 #. type: textblock
9388 #: ../src/guestfs-actions.pod:2148
9389 msgid ""
9390 "Get a single extended attribute from file C<path> named C<name>.  This call "
9391 "follows symlinks.  If you want to lookup an extended attribute for the "
9392 "symlink itself, use C<guestfs_lgetxattr>."
9393 msgstr ""
9394
9395 #. type: textblock
9396 #: ../src/guestfs-actions.pod:2152 ../src/guestfs-actions.pod:3521
9397 msgid ""
9398 "Normally it is better to get all extended attributes from a file in one go "
9399 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
9400 "implementations are buggy and do not provide a way to list out attributes.  "
9401 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
9402 "extended attributes you want in advance and call this function."
9403 msgstr ""
9404
9405 #. type: textblock
9406 #: ../src/guestfs-actions.pod:2159 ../src/guestfs-actions.pod:3528 ../fish/guestfish-actions.pod:1459 ../fish/guestfish-actions.pod:2465
9407 msgid ""
9408 "Extended attribute values are blobs of binary data.  If there is no extended "
9409 "attribute named C<name>, this returns an error."
9410 msgstr ""
9411
9412 #. type: textblock
9413 #: ../src/guestfs-actions.pod:2162
9414 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
9415 msgstr ""
9416
9417 #. type: textblock
9418 #: ../src/guestfs-actions.pod:2164 ../src/guestfs-actions.pod:2355 ../src/guestfs-actions.pod:3533 ../src/guestfs-actions.pod:5257 ../src/guestfs-actions.pod:5283 ../src/guestfs-actions.pod:5464
9419 msgid ""
9420 "This function returns a buffer, or NULL on error.  The size of the returned "
9421 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
9422 "after use>."
9423 msgstr ""
9424
9425 #. type: textblock
9426 #: ../src/guestfs-actions.pod:2168 ../src/guestfs-actions.pod:3537
9427 msgid "(Added in 1.7.24)"
9428 msgstr ""
9429
9430 #. type: =head2
9431 #: ../src/guestfs-actions.pod:2170
9432 msgid "guestfs_getxattrs"
9433 msgstr ""
9434
9435 #. type: verbatim
9436 #: ../src/guestfs-actions.pod:2172
9437 #, no-wrap
9438 msgid ""
9439 " struct guestfs_xattr_list *\n"
9440 " guestfs_getxattrs (guestfs_h *g,\n"
9441 "                    const char *path);\n"
9442 "\n"
9443 msgstr ""
9444
9445 #. type: textblock
9446 #: ../src/guestfs-actions.pod:2176 ../fish/guestfish-actions.pod:1468
9447 msgid "This call lists the extended attributes of the file or directory C<path>."
9448 msgstr ""
9449
9450 #. type: textblock
9451 #: ../src/guestfs-actions.pod:2179 ../fish/guestfish-actions.pod:1471
9452 msgid ""
9453 "At the system call level, this is a combination of the L<listxattr(2)> and "
9454 "L<getxattr(2)> calls."
9455 msgstr ""
9456
9457 #. type: textblock
9458 #: ../src/guestfs-actions.pod:2182
9459 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
9460 msgstr ""
9461
9462 #. type: textblock
9463 #: ../src/guestfs-actions.pod:2184 ../src/guestfs-actions.pod:3549 ../src/guestfs-actions.pod:4200
9464 msgid ""
9465 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
9466 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
9467 msgstr ""
9468
9469 #. type: textblock
9470 #: ../src/guestfs-actions.pod:2188 ../src/guestfs-actions.pod:3553 ../src/guestfs-actions.pod:3718 ../src/guestfs-actions.pod:3754 ../src/guestfs-actions.pod:5637 ../src/guestfs-actions.pod:6125 ../src/guestfs-actions.pod:7495
9471 msgid "(Added in 1.0.59)"
9472 msgstr ""
9473
9474 #. type: =head2
9475 #: ../src/guestfs-actions.pod:2190
9476 msgid "guestfs_glob_expand"
9477 msgstr ""
9478
9479 #. type: verbatim
9480 #: ../src/guestfs-actions.pod:2192
9481 #, no-wrap
9482 msgid ""
9483 " char **\n"
9484 " guestfs_glob_expand (guestfs_h *g,\n"
9485 "                      const char *pattern);\n"
9486 "\n"
9487 msgstr ""
9488
9489 #. type: textblock
9490 #: ../src/guestfs-actions.pod:2196 ../fish/guestfish-actions.pod:1480
9491 msgid ""
9492 "This command searches for all the pathnames matching C<pattern> according to "
9493 "the wildcard expansion rules used by the shell."
9494 msgstr ""
9495
9496 #. type: textblock
9497 #: ../src/guestfs-actions.pod:2200 ../fish/guestfish-actions.pod:1484
9498 msgid "If no paths match, then this returns an empty list (note: not an error)."
9499 msgstr ""
9500
9501 #. type: textblock
9502 #: ../src/guestfs-actions.pod:2203 ../fish/guestfish-actions.pod:1487
9503 msgid ""
9504 "It is just a wrapper around the C L<glob(3)> function with flags "
9505 "C<GLOB_MARK|GLOB_BRACE>.  See that manual page for more details."
9506 msgstr ""
9507
9508 #. type: textblock
9509 #: ../src/guestfs-actions.pod:2211 ../src/guestfs-actions.pod:6318 ../src/guestfs-actions.pod:6335
9510 msgid "(Added in 1.0.50)"
9511 msgstr ""
9512
9513 #. type: =head2
9514 #: ../src/guestfs-actions.pod:2213
9515 msgid "guestfs_grep"
9516 msgstr ""
9517
9518 #. type: verbatim
9519 #: ../src/guestfs-actions.pod:2215
9520 #, no-wrap
9521 msgid ""
9522 " char **\n"
9523 " guestfs_grep (guestfs_h *g,\n"
9524 "               const char *regex,\n"
9525 "               const char *path);\n"
9526 "\n"
9527 msgstr ""
9528
9529 #. type: textblock
9530 #: ../src/guestfs-actions.pod:2220 ../fish/guestfish-actions.pod:1495
9531 msgid "This calls the external C<grep> program and returns the matching lines."
9532 msgstr ""
9533
9534 #. type: =head2
9535 #: ../src/guestfs-actions.pod:2232
9536 msgid "guestfs_grepi"
9537 msgstr ""
9538
9539 #. type: verbatim
9540 #: ../src/guestfs-actions.pod:2234
9541 #, no-wrap
9542 msgid ""
9543 " char **\n"
9544 " guestfs_grepi (guestfs_h *g,\n"
9545 "                const char *regex,\n"
9546 "                const char *path);\n"
9547 "\n"
9548 msgstr ""
9549
9550 #. type: textblock
9551 #: ../src/guestfs-actions.pod:2239 ../fish/guestfish-actions.pod:1505
9552 msgid "This calls the external C<grep -i> program and returns the matching lines."
9553 msgstr ""
9554
9555 #. type: =head2
9556 #: ../src/guestfs-actions.pod:2251
9557 msgid "guestfs_grub_install"
9558 msgstr ""
9559
9560 #. type: verbatim
9561 #: ../src/guestfs-actions.pod:2253
9562 #, no-wrap
9563 msgid ""
9564 " int\n"
9565 " guestfs_grub_install (guestfs_h *g,\n"
9566 "                       const char *root,\n"
9567 "                       const char *device);\n"
9568 "\n"
9569 msgstr ""
9570
9571 #. type: textblock
9572 #: ../src/guestfs-actions.pod:2258 ../fish/guestfish-actions.pod:1515
9573 msgid ""
9574 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
9575 "the root directory being C<root>."
9576 msgstr ""
9577
9578 #. type: textblock
9579 #: ../src/guestfs-actions.pod:2261 ../fish/guestfish-actions.pod:1518
9580 msgid ""
9581 "Note: If grub-install reports the error \"No suitable drive was found in the "
9582 "generated device map.\" it may be that you need to create a "
9583 "C</boot/grub/device.map> file first that contains the mapping between grub "
9584 "device names and Linux device names.  It is usually sufficient to create a "
9585 "file containing:"
9586 msgstr ""
9587
9588 #. type: verbatim
9589 #: ../src/guestfs-actions.pod:2268 ../fish/guestfish-actions.pod:1525
9590 #, no-wrap
9591 msgid ""
9592 " (hd0) /dev/vda\n"
9593 "\n"
9594 msgstr ""
9595
9596 #. type: textblock
9597 #: ../src/guestfs-actions.pod:2270 ../fish/guestfish-actions.pod:1527
9598 msgid "replacing C</dev/vda> with the name of the installation device."
9599 msgstr ""
9600
9601 #. type: textblock
9602 #: ../src/guestfs-actions.pod:2274
9603 msgid "(Added in 1.0.17)"
9604 msgstr ""
9605
9606 #. type: =head2
9607 #: ../src/guestfs-actions.pod:2276
9608 msgid "guestfs_head"
9609 msgstr ""
9610
9611 #. type: verbatim
9612 #: ../src/guestfs-actions.pod:2278
9613 #, no-wrap
9614 msgid ""
9615 " char **\n"
9616 " guestfs_head (guestfs_h *g,\n"
9617 "               const char *path);\n"
9618 "\n"
9619 msgstr ""
9620
9621 #. type: textblock
9622 #: ../src/guestfs-actions.pod:2282 ../fish/guestfish-actions.pod:1533
9623 msgid ""
9624 "This command returns up to the first 10 lines of a file as a list of "
9625 "strings."
9626 msgstr ""
9627
9628 #. type: =head2
9629 #: ../src/guestfs-actions.pod:2294
9630 msgid "guestfs_head_n"
9631 msgstr ""
9632
9633 #. type: verbatim
9634 #: ../src/guestfs-actions.pod:2296
9635 #, no-wrap
9636 msgid ""
9637 " char **\n"
9638 " guestfs_head_n (guestfs_h *g,\n"
9639 "                 int nrlines,\n"
9640 "                 const char *path);\n"
9641 "\n"
9642 msgstr ""
9643
9644 #. type: textblock
9645 #: ../src/guestfs-actions.pod:2301 ../fish/guestfish-actions.pod:1543
9646 msgid ""
9647 "If the parameter C<nrlines> is a positive number, this returns the first "
9648 "C<nrlines> lines of the file C<path>."
9649 msgstr ""
9650
9651 #. type: textblock
9652 #: ../src/guestfs-actions.pod:2304 ../fish/guestfish-actions.pod:1546
9653 msgid ""
9654 "If the parameter C<nrlines> is a negative number, this returns lines from "
9655 "the file C<path>, excluding the last C<nrlines> lines."
9656 msgstr ""
9657
9658 #. type: textblock
9659 #: ../src/guestfs-actions.pod:2307 ../src/guestfs-actions.pod:6615 ../fish/guestfish-actions.pod:1549 ../fish/guestfish-actions.pod:4470
9660 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
9661 msgstr ""
9662
9663 #. type: =head2
9664 #: ../src/guestfs-actions.pod:2318
9665 msgid "guestfs_hexdump"
9666 msgstr ""
9667
9668 #. type: verbatim
9669 #: ../src/guestfs-actions.pod:2320
9670 #, no-wrap
9671 msgid ""
9672 " char *\n"
9673 " guestfs_hexdump (guestfs_h *g,\n"
9674 "                  const char *path);\n"
9675 "\n"
9676 msgstr ""
9677
9678 #. type: textblock
9679 #: ../src/guestfs-actions.pod:2324 ../fish/guestfish-actions.pod:1558
9680 msgid ""
9681 "This runs C<hexdump -C> on the given C<path>.  The result is the "
9682 "human-readable, canonical hex dump of the file."
9683 msgstr ""
9684
9685 #. type: textblock
9686 #: ../src/guestfs-actions.pod:2333 ../src/guestfs-actions.pod:6399 ../src/guestfs-actions.pod:6454
9687 msgid "(Added in 1.0.22)"
9688 msgstr ""
9689
9690 #. type: =head2
9691 #: ../src/guestfs-actions.pod:2335
9692 msgid "guestfs_initrd_cat"
9693 msgstr ""
9694
9695 #. type: verbatim
9696 #: ../src/guestfs-actions.pod:2337
9697 #, no-wrap
9698 msgid ""
9699 " char *\n"
9700 " guestfs_initrd_cat (guestfs_h *g,\n"
9701 "                     const char *initrdpath,\n"
9702 "                     const char *filename,\n"
9703 "                     size_t *size_r);\n"
9704 "\n"
9705 msgstr ""
9706
9707 #. type: textblock
9708 #: ../src/guestfs-actions.pod:2343 ../fish/guestfish-actions.pod:1568
9709 msgid ""
9710 "This command unpacks the file C<filename> from the initrd file called "
9711 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
9712 "character."
9713 msgstr ""
9714
9715 #. type: textblock
9716 #: ../src/guestfs-actions.pod:2347 ../fish/guestfish-actions.pod:1572
9717 msgid ""
9718 "For example, in guestfish you could use the following command to examine the "
9719 "boot script (usually called C</init>)  contained in a Linux initrd or "
9720 "initramfs image:"
9721 msgstr ""
9722
9723 #. type: verbatim
9724 #: ../src/guestfs-actions.pod:2351 ../fish/guestfish-actions.pod:1576
9725 #, no-wrap
9726 msgid ""
9727 " initrd-cat /boot/initrd-<version>.img init\n"
9728 "\n"
9729 msgstr ""
9730
9731 #. type: textblock
9732 #: ../src/guestfs-actions.pod:2353
9733 msgid "See also C<guestfs_initrd_list>."
9734 msgstr ""
9735
9736 #. type: =head2
9737 #: ../src/guestfs-actions.pod:2364
9738 msgid "guestfs_initrd_list"
9739 msgstr ""
9740
9741 #. type: verbatim
9742 #: ../src/guestfs-actions.pod:2366
9743 #, no-wrap
9744 msgid ""
9745 " char **\n"
9746 " guestfs_initrd_list (guestfs_h *g,\n"
9747 "                      const char *path);\n"
9748 "\n"
9749 msgstr ""
9750
9751 #. type: textblock
9752 #: ../src/guestfs-actions.pod:2370 ../fish/guestfish-actions.pod:1587
9753 msgid "This command lists out files contained in an initrd."
9754 msgstr ""
9755
9756 #. type: textblock
9757 #: ../src/guestfs-actions.pod:2372 ../fish/guestfish-actions.pod:1589
9758 msgid ""
9759 "The files are listed without any initial C</> character.  The files are "
9760 "listed in the order they appear (not necessarily alphabetical).  Directory "
9761 "names are listed as separate items."
9762 msgstr ""
9763
9764 #. type: textblock
9765 #: ../src/guestfs-actions.pod:2376 ../fish/guestfish-actions.pod:1593
9766 msgid ""
9767 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
9768 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
9769 "files)."
9770 msgstr ""
9771
9772 #. type: =head2
9773 #: ../src/guestfs-actions.pod:2386
9774 msgid "guestfs_inotify_add_watch"
9775 msgstr ""
9776
9777 #. type: verbatim
9778 #: ../src/guestfs-actions.pod:2388
9779 #, no-wrap
9780 msgid ""
9781 " int64_t\n"
9782 " guestfs_inotify_add_watch (guestfs_h *g,\n"
9783 "                            const char *path,\n"
9784 "                            int mask);\n"
9785 "\n"
9786 msgstr ""
9787
9788 #. type: textblock
9789 #: ../src/guestfs-actions.pod:2393 ../fish/guestfish-actions.pod:1601
9790 msgid "Watch C<path> for the events listed in C<mask>."
9791 msgstr ""
9792
9793 #. type: textblock
9794 #: ../src/guestfs-actions.pod:2395 ../fish/guestfish-actions.pod:1603
9795 msgid ""
9796 "Note that if C<path> is a directory then events within that directory are "
9797 "watched, but this does I<not> happen recursively (in subdirectories)."
9798 msgstr ""
9799
9800 #. type: textblock
9801 #: ../src/guestfs-actions.pod:2399 ../fish/guestfish-actions.pod:1607
9802 msgid ""
9803 "Note for non-C or non-Linux callers: the inotify events are defined by the "
9804 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
9805 msgstr ""
9806
9807 #. type: =head2
9808 #: ../src/guestfs-actions.pod:2407
9809 msgid "guestfs_inotify_close"
9810 msgstr ""
9811
9812 #. type: verbatim
9813 #: ../src/guestfs-actions.pod:2409
9814 #, no-wrap
9815 msgid ""
9816 " int\n"
9817 " guestfs_inotify_close (guestfs_h *g);\n"
9818 "\n"
9819 msgstr ""
9820
9821 #. type: textblock
9822 #: ../src/guestfs-actions.pod:2412 ../fish/guestfish-actions.pod:1615
9823 msgid ""
9824 "This closes the inotify handle which was previously opened by inotify_init.  "
9825 "It removes all watches, throws away any pending events, and deallocates all "
9826 "resources."
9827 msgstr ""
9828
9829 #. type: =head2
9830 #: ../src/guestfs-actions.pod:2420
9831 msgid "guestfs_inotify_files"
9832 msgstr ""
9833
9834 #. type: verbatim
9835 #: ../src/guestfs-actions.pod:2422
9836 #, no-wrap
9837 msgid ""
9838 " char **\n"
9839 " guestfs_inotify_files (guestfs_h *g);\n"
9840 "\n"
9841 msgstr ""
9842
9843 #. type: textblock
9844 #: ../src/guestfs-actions.pod:2425
9845 msgid ""
9846 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
9847 "returns a list of pathnames of objects that were touched.  The returned "
9848 "pathnames are sorted and deduplicated."
9849 msgstr ""
9850
9851 #. type: =head2
9852 #: ../src/guestfs-actions.pod:2435
9853 msgid "guestfs_inotify_init"
9854 msgstr ""
9855
9856 #. type: verbatim
9857 #: ../src/guestfs-actions.pod:2437
9858 #, no-wrap
9859 msgid ""
9860 " int\n"
9861 " guestfs_inotify_init (guestfs_h *g,\n"
9862 "                       int maxevents);\n"
9863 "\n"
9864 msgstr ""
9865
9866 #. type: textblock
9867 #: ../src/guestfs-actions.pod:2441 ../fish/guestfish-actions.pod:1631
9868 msgid ""
9869 "This command creates a new inotify handle.  The inotify subsystem can be "
9870 "used to notify events which happen to objects in the guest filesystem."
9871 msgstr ""
9872
9873 #. type: textblock
9874 #: ../src/guestfs-actions.pod:2445
9875 msgid ""
9876 "C<maxevents> is the maximum number of events which will be queued up between "
9877 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
9878 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
9879 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
9880 "throws away events, but records the fact that it threw them away by setting "
9881 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
9882 "C<guestfs_inotify_read>)."
9883 msgstr ""
9884
9885 #. type: textblock
9886 #: ../src/guestfs-actions.pod:2455
9887 msgid ""
9888 "Before any events are generated, you have to add some watches to the "
9889 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
9890 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
9891 msgstr ""
9892
9893 #. type: textblock
9894 #: ../src/guestfs-actions.pod:2461
9895 msgid ""
9896 "Queued up events should be read periodically by calling "
9897 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
9898 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
9899 "often enough then you risk the internal queue overflowing."
9900 msgstr ""
9901
9902 #. type: textblock
9903 #: ../src/guestfs-actions.pod:2468
9904 msgid ""
9905 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
9906 "This also removes any watches automatically."
9907 msgstr ""
9908
9909 #. type: textblock
9910 #: ../src/guestfs-actions.pod:2472 ../fish/guestfish-actions.pod:1662
9911 msgid ""
9912 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
9913 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
9914 "that there is one global inotify handle per libguestfs instance."
9915 msgstr ""
9916
9917 #. type: =head2
9918 #: ../src/guestfs-actions.pod:2481
9919 msgid "guestfs_inotify_read"
9920 msgstr ""
9921
9922 #. type: verbatim
9923 #: ../src/guestfs-actions.pod:2483
9924 #, no-wrap
9925 msgid ""
9926 " struct guestfs_inotify_event_list *\n"
9927 " guestfs_inotify_read (guestfs_h *g);\n"
9928 "\n"
9929 msgstr ""
9930
9931 #. type: textblock
9932 #: ../src/guestfs-actions.pod:2486 ../fish/guestfish-actions.pod:1671
9933 msgid ""
9934 "Return the complete queue of events that have happened since the previous "
9935 "read call."
9936 msgstr ""
9937
9938 #. type: textblock
9939 #: ../src/guestfs-actions.pod:2489 ../fish/guestfish-actions.pod:1674
9940 msgid "If no events have happened, this returns an empty list."
9941 msgstr ""
9942
9943 #. type: textblock
9944 #: ../src/guestfs-actions.pod:2491 ../fish/guestfish-actions.pod:1676
9945 msgid ""
9946 "I<Note>: In order to make sure that all events have been read, you must call "
9947 "this function repeatedly until it returns an empty list.  The reason is that "
9948 "the call will read events up to the maximum appliance-to-host message size "
9949 "and leave remaining events in the queue."
9950 msgstr ""
9951
9952 #. type: textblock
9953 #: ../src/guestfs-actions.pod:2497
9954 msgid ""
9955 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
9956 "there was an error.  I<The caller must call "
9957 "C<guestfs_free_inotify_event_list> after use>."
9958 msgstr ""
9959
9960 #. type: =head2
9961 #: ../src/guestfs-actions.pod:2503
9962 msgid "guestfs_inotify_rm_watch"
9963 msgstr ""
9964
9965 #. type: verbatim
9966 #: ../src/guestfs-actions.pod:2505
9967 #, no-wrap
9968 msgid ""
9969 " int\n"
9970 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
9971 "                           int wd);\n"
9972 "\n"
9973 msgstr ""
9974
9975 #. type: textblock
9976 #: ../src/guestfs-actions.pod:2509
9977 msgid ""
9978 "Remove a previously defined inotify watch.  See "
9979 "C<guestfs_inotify_add_watch>."
9980 msgstr ""
9981
9982 #. type: =head2
9983 #: ../src/guestfs-actions.pod:2516
9984 msgid "guestfs_inspect_get_arch"
9985 msgstr ""
9986
9987 #. type: verbatim
9988 #: ../src/guestfs-actions.pod:2518
9989 #, no-wrap
9990 msgid ""
9991 " char *\n"
9992 " guestfs_inspect_get_arch (guestfs_h *g,\n"
9993 "                           const char *root);\n"
9994 "\n"
9995 msgstr ""
9996
9997 #. type: textblock
9998 #: ../src/guestfs-actions.pod:2522 ../src/guestfs-actions.pod:2545 ../src/guestfs-actions.pod:2638 ../src/guestfs-actions.pod:2682 ../src/guestfs-actions.pod:2708 ../src/guestfs-actions.pod:2747 ../src/guestfs-actions.pod:2769 ../src/guestfs-actions.pod:2796 ../src/guestfs-actions.pod:2817 ../src/guestfs-actions.pod:2860 ../src/guestfs-actions.pod:2889 ../src/guestfs-actions.pod:2920 ../src/guestfs-actions.pod:2944 ../src/guestfs-actions.pod:2999 ../src/guestfs-actions.pod:3041 ../src/guestfs-actions.pod:3062 ../src/guestfs-actions.pod:3085 ../src/guestfs-actions.pod:3102 ../src/guestfs-actions.pod:3119 ../src/guestfs-actions.pod:3138
9999 msgid ""
10000 "This function should only be called with a root device string as returned by "
10001 "C<guestfs_inspect_os>."
10002 msgstr ""
10003
10004 #. type: textblock
10005 #: ../src/guestfs-actions.pod:2525
10006 msgid ""
10007 "This returns the architecture of the inspected operating system.  The "
10008 "possible return values are listed under C<guestfs_file_architecture>."
10009 msgstr ""
10010
10011 #. type: textblock
10012 #: ../src/guestfs-actions.pod:2529 ../fish/guestfish-actions.pod:1700
10013 msgid ""
10014 "If the architecture could not be determined, then the string C<unknown> is "
10015 "returned."
10016 msgstr ""
10017
10018 #. type: textblock
10019 #: ../src/guestfs-actions.pod:2532 ../src/guestfs-actions.pod:2625 ../src/guestfs-actions.pod:2736 ../src/guestfs-actions.pod:2756 ../src/guestfs-actions.pod:2784 ../src/guestfs-actions.pod:2876 ../src/guestfs-actions.pod:2907 ../src/guestfs-actions.pod:2931 ../src/guestfs-actions.pod:2985 ../src/guestfs-actions.pod:3028 ../src/guestfs-actions.pod:3051 ../src/guestfs-actions.pod:3072 ../src/guestfs-actions.pod:3092 ../src/guestfs-actions.pod:3109 ../src/guestfs-actions.pod:3128 ../src/guestfs-actions.pod:3231 ../src/guestfs-actions.pod:3272 ../fish/guestfish-actions.pod:1703 ../fish/guestfish-actions.pod:1789 ../fish/guestfish-actions.pod:1877 ../fish/guestfish-actions.pod:1892 ../fish/guestfish-actions.pod:1913 ../fish/guestfish-actions.pod:1983 ../fish/guestfish-actions.pod:2007 ../fish/guestfish-actions.pod:2024 ../fish/guestfish-actions.pod:2067 ../fish/guestfish-actions.pod:2102 ../fish/guestfish-actions.pod:2118 ../fish/guestfish-actions.pod:2134 ../fish/guestfish-actions.pod:2147 ../fish/guestfish-actions.pod:2160 ../fish/guestfish-actions.pod:2175 ../fish/guestfish-actions.pod:2274 ../fish/guestfish-actions.pod:2308
10020 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
10021 msgstr ""
10022
10023 #. type: =head2
10024 #: ../src/guestfs-actions.pod:2539
10025 msgid "guestfs_inspect_get_distro"
10026 msgstr ""
10027
10028 #. type: verbatim
10029 #: ../src/guestfs-actions.pod:2541
10030 #, no-wrap
10031 msgid ""
10032 " char *\n"
10033 " guestfs_inspect_get_distro (guestfs_h *g,\n"
10034 "                             const char *root);\n"
10035 "\n"
10036 msgstr ""
10037
10038 #. type: textblock
10039 #: ../src/guestfs-actions.pod:2548 ../fish/guestfish-actions.pod:1712
10040 msgid "This returns the distro (distribution) of the inspected operating system."
10041 msgstr ""
10042
10043 #. type: textblock
10044 #: ../src/guestfs-actions.pod:2551 ../fish/guestfish-actions.pod:1715
10045 msgid "Currently defined distros are:"
10046 msgstr ""
10047
10048 #. type: =item
10049 #: ../src/guestfs-actions.pod:2555 ../fish/guestfish-actions.pod:1719
10050 msgid "\"archlinux\""
10051 msgstr ""
10052
10053 #. type: textblock
10054 #: ../src/guestfs-actions.pod:2557 ../fish/guestfish-actions.pod:1721
10055 msgid "Arch Linux."
10056 msgstr ""
10057
10058 #. type: =item
10059 #: ../src/guestfs-actions.pod:2559 ../fish/guestfish-actions.pod:1723
10060 msgid "\"centos\""
10061 msgstr ""
10062
10063 #. type: textblock
10064 #: ../src/guestfs-actions.pod:2561 ../fish/guestfish-actions.pod:1725
10065 msgid "CentOS."
10066 msgstr ""
10067
10068 #. type: =item
10069 #: ../src/guestfs-actions.pod:2563 ../fish/guestfish-actions.pod:1727
10070 msgid "\"debian\""
10071 msgstr ""
10072
10073 #. type: textblock
10074 #: ../src/guestfs-actions.pod:2565 ../fish/guestfish-actions.pod:1729
10075 msgid "Debian."
10076 msgstr ""
10077
10078 #. type: =item
10079 #: ../src/guestfs-actions.pod:2567 ../fish/guestfish-actions.pod:1731
10080 msgid "\"fedora\""
10081 msgstr ""
10082
10083 #. type: textblock
10084 #: ../src/guestfs-actions.pod:2569 ../fish/guestfish-actions.pod:1733
10085 msgid "Fedora."
10086 msgstr ""
10087
10088 #. type: =item
10089 #: ../src/guestfs-actions.pod:2571 ../fish/guestfish-actions.pod:1735
10090 msgid "\"gentoo\""
10091 msgstr ""
10092
10093 #. type: textblock
10094 #: ../src/guestfs-actions.pod:2573 ../fish/guestfish-actions.pod:1737
10095 msgid "Gentoo."
10096 msgstr ""
10097
10098 #. type: =item
10099 #: ../src/guestfs-actions.pod:2575 ../fish/guestfish-actions.pod:1739
10100 msgid "\"linuxmint\""
10101 msgstr ""
10102
10103 #. type: textblock
10104 #: ../src/guestfs-actions.pod:2577 ../fish/guestfish-actions.pod:1741
10105 msgid "Linux Mint."
10106 msgstr ""
10107
10108 #. type: =item
10109 #: ../src/guestfs-actions.pod:2579 ../fish/guestfish-actions.pod:1743
10110 msgid "\"mandriva\""
10111 msgstr ""
10112
10113 #. type: textblock
10114 #: ../src/guestfs-actions.pod:2581 ../fish/guestfish-actions.pod:1745
10115 msgid "Mandriva."
10116 msgstr ""
10117
10118 #. type: =item
10119 #: ../src/guestfs-actions.pod:2583 ../fish/guestfish-actions.pod:1747
10120 msgid "\"meego\""
10121 msgstr ""
10122
10123 #. type: textblock
10124 #: ../src/guestfs-actions.pod:2585 ../fish/guestfish-actions.pod:1749
10125 msgid "MeeGo."
10126 msgstr ""
10127
10128 #. type: =item
10129 #: ../src/guestfs-actions.pod:2587 ../fish/guestfish-actions.pod:1751
10130 msgid "\"pardus\""
10131 msgstr ""
10132
10133 #. type: textblock
10134 #: ../src/guestfs-actions.pod:2589 ../fish/guestfish-actions.pod:1753
10135 msgid "Pardus."
10136 msgstr ""
10137
10138 #. type: =item
10139 #: ../src/guestfs-actions.pod:2591 ../fish/guestfish-actions.pod:1755
10140 msgid "\"redhat-based\""
10141 msgstr ""
10142
10143 #. type: textblock
10144 #: ../src/guestfs-actions.pod:2593 ../fish/guestfish-actions.pod:1757
10145 msgid "Some Red Hat-derived distro."
10146 msgstr ""
10147
10148 #. type: =item
10149 #: ../src/guestfs-actions.pod:2595 ../fish/guestfish-actions.pod:1759
10150 msgid "\"rhel\""
10151 msgstr ""
10152
10153 #. type: textblock
10154 #: ../src/guestfs-actions.pod:2597 ../fish/guestfish-actions.pod:1761
10155 msgid "Red Hat Enterprise Linux."
10156 msgstr ""
10157
10158 #. type: =item
10159 #: ../src/guestfs-actions.pod:2599 ../fish/guestfish-actions.pod:1763
10160 msgid "\"scientificlinux\""
10161 msgstr ""
10162
10163 #. type: textblock
10164 #: ../src/guestfs-actions.pod:2601 ../fish/guestfish-actions.pod:1765
10165 msgid "Scientific Linux."
10166 msgstr ""
10167
10168 #. type: =item
10169 #: ../src/guestfs-actions.pod:2603 ../fish/guestfish-actions.pod:1767
10170 msgid "\"slackware\""
10171 msgstr ""
10172
10173 #. type: textblock
10174 #: ../src/guestfs-actions.pod:2605 ../fish/guestfish-actions.pod:1769
10175 msgid "Slackware."
10176 msgstr ""
10177
10178 #. type: =item
10179 #: ../src/guestfs-actions.pod:2607 ../fish/guestfish-actions.pod:1771
10180 msgid "\"ubuntu\""
10181 msgstr ""
10182
10183 #. type: textblock
10184 #: ../src/guestfs-actions.pod:2609 ../fish/guestfish-actions.pod:1773
10185 msgid "Ubuntu."
10186 msgstr ""
10187
10188 #. type: =item
10189 #: ../src/guestfs-actions.pod:2611 ../src/guestfs-actions.pod:2727 ../src/guestfs-actions.pod:3019 ../fish/guestfish-actions.pod:1775 ../fish/guestfish-actions.pod:1868 ../fish/guestfish-actions.pod:2093
10190 msgid "\"unknown\""
10191 msgstr ""
10192
10193 #. type: textblock
10194 #: ../src/guestfs-actions.pod:2613 ../fish/guestfish-actions.pod:1777
10195 msgid "The distro could not be determined."
10196 msgstr ""
10197
10198 #. type: =item
10199 #: ../src/guestfs-actions.pod:2615 ../src/guestfs-actions.pod:3011 ../fish/guestfish-actions.pod:1779 ../fish/guestfish-actions.pod:2085
10200 msgid "\"windows\""
10201 msgstr ""
10202
10203 #. type: textblock
10204 #: ../src/guestfs-actions.pod:2617 ../fish/guestfish-actions.pod:1781
10205 msgid ""
10206 "Windows does not have distributions.  This string is returned if the OS type "
10207 "is Windows."
10208 msgstr ""
10209
10210 #. type: textblock
10211 #: ../src/guestfs-actions.pod:2622 ../src/guestfs-actions.pod:2733 ../src/guestfs-actions.pod:3025 ../fish/guestfish-actions.pod:1786 ../fish/guestfish-actions.pod:1874 ../fish/guestfish-actions.pod:2099
10212 msgid ""
10213 "Future versions of libguestfs may return other strings here.  The caller "
10214 "should be prepared to handle any string."
10215 msgstr ""
10216
10217 #. type: =head2
10218 #: ../src/guestfs-actions.pod:2632
10219 msgid "guestfs_inspect_get_drive_mappings"
10220 msgstr ""
10221
10222 #. type: verbatim
10223 #: ../src/guestfs-actions.pod:2634
10224 #, no-wrap
10225 msgid ""
10226 " char **\n"
10227 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
10228 "                                     const char *root);\n"
10229 "\n"
10230 msgstr ""
10231
10232 #. type: textblock
10233 #: ../src/guestfs-actions.pod:2641 ../fish/guestfish-actions.pod:1798
10234 msgid ""
10235 "This call is useful for Windows which uses a primitive system of assigning "
10236 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
10237 "Windows Registry to find out how disks/partitions are mapped to drive "
10238 "letters, and returns a hash table as in the example below:"
10239 msgstr ""
10240
10241 #. type: verbatim
10242 #: ../src/guestfs-actions.pod:2647 ../fish/guestfish-actions.pod:1804
10243 #, no-wrap
10244 msgid ""
10245 " C      =>     /dev/vda2\n"
10246 " E      =>     /dev/vdb1\n"
10247 " F      =>     /dev/vdc1\n"
10248 "\n"
10249 msgstr ""
10250
10251 #. type: textblock
10252 #: ../src/guestfs-actions.pod:2651 ../fish/guestfish-actions.pod:1808
10253 msgid ""
10254 "Note that keys are drive letters.  For Windows, the key is case insensitive "
10255 "and just contains the drive letter, without the customary colon separator "
10256 "character."
10257 msgstr ""
10258
10259 #. type: textblock
10260 #: ../src/guestfs-actions.pod:2655 ../fish/guestfish-actions.pod:1812
10261 msgid ""
10262 "In future we may support other operating systems that also used drive "
10263 "letters, but the keys for those might not be case insensitive and might be "
10264 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
10265 "C<h1> etc."
10266 msgstr ""
10267
10268 #. type: textblock
10269 #: ../src/guestfs-actions.pod:2660 ../fish/guestfish-actions.pod:1817
10270 msgid ""
10271 "For Windows guests, currently only hard drive mappings are returned.  "
10272 "Removable disks (eg. DVD-ROMs) are ignored."
10273 msgstr ""
10274
10275 #. type: textblock
10276 #: ../src/guestfs-actions.pod:2663 ../fish/guestfish-actions.pod:1820
10277 msgid ""
10278 "For guests that do not use drive mappings, or if the drive mappings could "
10279 "not be determined, this returns an empty hash table."
10280 msgstr ""
10281
10282 #. type: textblock
10283 #: ../src/guestfs-actions.pod:2666
10284 msgid ""
10285 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10286 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
10287 msgstr ""
10288
10289 #. type: textblock
10290 #: ../src/guestfs-actions.pod:2670 ../src/guestfs-actions.pod:2846 ../src/guestfs-actions.pod:3606 ../src/guestfs-actions.pod:4823 ../src/guestfs-actions.pod:6756
10291 msgid ""
10292 "This function returns a NULL-terminated array of strings, or NULL if there "
10293 "was an error.  The array of strings will always have length C<2n+1>, where "
10294 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
10295 "caller must free the strings and the array after use>."
10296 msgstr ""
10297
10298 #. type: =head2
10299 #: ../src/guestfs-actions.pod:2676
10300 msgid "guestfs_inspect_get_filesystems"
10301 msgstr ""
10302
10303 #. type: verbatim
10304 #: ../src/guestfs-actions.pod:2678
10305 #, no-wrap
10306 msgid ""
10307 " char **\n"
10308 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
10309 "                                  const char *root);\n"
10310 "\n"
10311 msgstr ""
10312
10313 #. type: textblock
10314 #: ../src/guestfs-actions.pod:2685 ../fish/guestfish-actions.pod:1834
10315 msgid ""
10316 "This returns a list of all the filesystems that we think are associated with "
10317 "this operating system.  This includes the root filesystem, other ordinary "
10318 "filesystems, and non-mounted devices like swap partitions."
10319 msgstr ""
10320
10321 #. type: textblock
10322 #: ../src/guestfs-actions.pod:2690 ../fish/guestfish-actions.pod:1839
10323 msgid ""
10324 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
10325 "to be shared between operating systems."
10326 msgstr ""
10327
10328 #. type: textblock
10329 #: ../src/guestfs-actions.pod:2693
10330 msgid ""
10331 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10332 "C<guestfs_inspect_get_mountpoints>."
10333 msgstr ""
10334
10335 #. type: =head2
10336 #: ../src/guestfs-actions.pod:2702
10337 msgid "guestfs_inspect_get_format"
10338 msgstr ""
10339
10340 #. type: verbatim
10341 #: ../src/guestfs-actions.pod:2704
10342 #, no-wrap
10343 msgid ""
10344 " char *\n"
10345 " guestfs_inspect_get_format (guestfs_h *g,\n"
10346 "                             const char *root);\n"
10347 "\n"
10348 msgstr ""
10349
10350 #. type: textblock
10351 #: ../src/guestfs-actions.pod:2711 ../fish/guestfish-actions.pod:1852
10352 msgid ""
10353 "This returns the format of the inspected operating system.  You can use it "
10354 "to detect install images, live CDs and similar."
10355 msgstr ""
10356
10357 #. type: textblock
10358 #: ../src/guestfs-actions.pod:2714 ../fish/guestfish-actions.pod:1855
10359 msgid "Currently defined formats are:"
10360 msgstr ""
10361
10362 #. type: =item
10363 #: ../src/guestfs-actions.pod:2718 ../fish/guestfish-actions.pod:1859
10364 msgid "\"installed\""
10365 msgstr ""
10366
10367 #. type: textblock
10368 #: ../src/guestfs-actions.pod:2720 ../fish/guestfish-actions.pod:1861
10369 msgid "This is an installed operating system."
10370 msgstr ""
10371
10372 #. type: =item
10373 #: ../src/guestfs-actions.pod:2722 ../fish/guestfish-actions.pod:1863
10374 msgid "\"installer\""
10375 msgstr ""
10376
10377 #. type: textblock
10378 #: ../src/guestfs-actions.pod:2724 ../fish/guestfish-actions.pod:1865
10379 msgid ""
10380 "The disk image being inspected is not an installed operating system, but a "
10381 "I<bootable> install disk, live CD, or similar."
10382 msgstr ""
10383
10384 #. type: textblock
10385 #: ../src/guestfs-actions.pod:2729 ../fish/guestfish-actions.pod:1870
10386 msgid "The format of this disk image is not known."
10387 msgstr ""
10388
10389 #. type: =head2
10390 #: ../src/guestfs-actions.pod:2741
10391 msgid "guestfs_inspect_get_hostname"
10392 msgstr ""
10393
10394 #. type: verbatim
10395 #: ../src/guestfs-actions.pod:2743
10396 #, no-wrap
10397 msgid ""
10398 " char *\n"
10399 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
10400 "                               const char *root);\n"
10401 "\n"
10402 msgstr ""
10403
10404 #. type: textblock
10405 #: ../src/guestfs-actions.pod:2750 ../fish/guestfish-actions.pod:1886
10406 msgid ""
10407 "This function returns the hostname of the operating system as found by "
10408 "inspection of the guest's configuration files."
10409 msgstr ""
10410
10411 #. type: textblock
10412 #: ../src/guestfs-actions.pod:2753 ../fish/guestfish-actions.pod:1889
10413 msgid ""
10414 "If the hostname could not be determined, then the string C<unknown> is "
10415 "returned."
10416 msgstr ""
10417
10418 #. type: textblock
10419 #: ../src/guestfs-actions.pod:2761
10420 msgid "(Added in 1.7.9)"
10421 msgstr ""
10422
10423 #. type: =head2
10424 #: ../src/guestfs-actions.pod:2763
10425 msgid "guestfs_inspect_get_major_version"
10426 msgstr ""
10427
10428 #. type: verbatim
10429 #: ../src/guestfs-actions.pod:2765
10430 #, no-wrap
10431 msgid ""
10432 " int\n"
10433 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
10434 "                                    const char *root);\n"
10435 "\n"
10436 msgstr ""
10437
10438 #. type: textblock
10439 #: ../src/guestfs-actions.pod:2772 ../fish/guestfish-actions.pod:1901
10440 msgid "This returns the major version number of the inspected operating system."
10441 msgstr ""
10442
10443 #. type: textblock
10444 #: ../src/guestfs-actions.pod:2775 ../fish/guestfish-actions.pod:1904
10445 msgid ""
10446 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
10447 "popular public names used by the operating system.  Notably the operating "
10448 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
10449 "1).  You can find out the real versions corresponding to releases of Windows "
10450 "by consulting Wikipedia or MSDN."
10451 msgstr ""
10452
10453 #. type: textblock
10454 #: ../src/guestfs-actions.pod:2782 ../src/guestfs-actions.pod:2802 ../fish/guestfish-actions.pod:1911 ../fish/guestfish-actions.pod:1925
10455 msgid "If the version could not be determined, then C<0> is returned."
10456 msgstr ""
10457
10458 #. type: =head2
10459 #: ../src/guestfs-actions.pod:2790
10460 msgid "guestfs_inspect_get_minor_version"
10461 msgstr ""
10462
10463 #. type: verbatim
10464 #: ../src/guestfs-actions.pod:2792
10465 #, no-wrap
10466 msgid ""
10467 " int\n"
10468 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
10469 "                                    const char *root);\n"
10470 "\n"
10471 msgstr ""
10472
10473 #. type: textblock
10474 #: ../src/guestfs-actions.pod:2799 ../fish/guestfish-actions.pod:1922
10475 msgid "This returns the minor version number of the inspected operating system."
10476 msgstr ""
10477
10478 #. type: textblock
10479 #: ../src/guestfs-actions.pod:2804
10480 msgid ""
10481 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10482 "C<guestfs_inspect_get_major_version>."
10483 msgstr ""
10484
10485 #. type: =head2
10486 #: ../src/guestfs-actions.pod:2811
10487 msgid "guestfs_inspect_get_mountpoints"
10488 msgstr ""
10489
10490 #. type: verbatim
10491 #: ../src/guestfs-actions.pod:2813
10492 #, no-wrap
10493 msgid ""
10494 " char **\n"
10495 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
10496 "                                  const char *root);\n"
10497 "\n"
10498 msgstr ""
10499
10500 #. type: textblock
10501 #: ../src/guestfs-actions.pod:2820 ../fish/guestfish-actions.pod:1937
10502 msgid ""
10503 "This returns a hash of where we think the filesystems associated with this "
10504 "operating system should be mounted.  Callers should note that this is at "
10505 "best an educated guess made by reading configuration files such as "
10506 "C</etc/fstab>.  I<In particular note> that this may return filesystems which "
10507 "are non-existent or not mountable and callers should be prepared to handle "
10508 "or ignore failures if they try to mount them."
10509 msgstr ""
10510
10511 #. type: textblock
10512 #: ../src/guestfs-actions.pod:2829 ../fish/guestfish-actions.pod:1946
10513 msgid ""
10514 "Each element in the returned hashtable has a key which is the path of the "
10515 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
10516 "mounted there (eg. C</dev/sda1>)."
10517 msgstr ""
10518
10519 #. type: textblock
10520 #: ../src/guestfs-actions.pod:2834 ../fish/guestfish-actions.pod:1951
10521 msgid "Non-mounted devices such as swap devices are I<not> returned in this list."
10522 msgstr ""
10523
10524 #. type: textblock
10525 #: ../src/guestfs-actions.pod:2837
10526 msgid ""
10527 "For operating systems like Windows which still use drive letters, this call "
10528 "will only return an entry for the first drive \"mounted on\" C</>.  For "
10529 "information about the mapping of drive letters to partitions, see "
10530 "C<guestfs_inspect_get_drive_mappings>."
10531 msgstr ""
10532
10533 #. type: textblock
10534 #: ../src/guestfs-actions.pod:2843
10535 msgid ""
10536 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10537 "C<guestfs_inspect_get_filesystems>."
10538 msgstr ""
10539
10540 #. type: =head2
10541 #: ../src/guestfs-actions.pod:2854
10542 msgid "guestfs_inspect_get_package_format"
10543 msgstr ""
10544
10545 #. type: verbatim
10546 #: ../src/guestfs-actions.pod:2856
10547 #, no-wrap
10548 msgid ""
10549 " char *\n"
10550 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
10551 "                                     const char *root);\n"
10552 "\n"
10553 msgstr ""
10554
10555 #. type: textblock
10556 #: ../src/guestfs-actions.pod:2863
10557 msgid ""
10558 "This function and C<guestfs_inspect_get_package_management> return the "
10559 "package format and package management tool used by the inspected operating "
10560 "system.  For example for Fedora these functions would return C<rpm> (package "
10561 "format) and C<yum> (package management)."
10562 msgstr ""
10563
10564 #. type: textblock
10565 #: ../src/guestfs-actions.pod:2869 ../fish/guestfish-actions.pod:1976
10566 msgid ""
10567 "This returns the string C<unknown> if we could not determine the package "
10568 "format I<or> if the operating system does not have a real packaging system "
10569 "(eg. Windows)."
10570 msgstr ""
10571
10572 #. type: textblock
10573 #: ../src/guestfs-actions.pod:2873 ../fish/guestfish-actions.pod:1980
10574 msgid ""
10575 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
10576 "Future versions of libguestfs may return other strings."
10577 msgstr ""
10578
10579 #. type: textblock
10580 #: ../src/guestfs-actions.pod:2881 ../src/guestfs-actions.pod:2912
10581 msgid "(Added in 1.7.5)"
10582 msgstr ""
10583
10584 #. type: =head2
10585 #: ../src/guestfs-actions.pod:2883
10586 msgid "guestfs_inspect_get_package_management"
10587 msgstr ""
10588
10589 #. type: verbatim
10590 #: ../src/guestfs-actions.pod:2885
10591 #, no-wrap
10592 msgid ""
10593 " char *\n"
10594 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
10595 "                                         const char *root);\n"
10596 "\n"
10597 msgstr ""
10598
10599 #. type: textblock
10600 #: ../src/guestfs-actions.pod:2892
10601 msgid ""
10602 "C<guestfs_inspect_get_package_format> and this function return the package "
10603 "format and package management tool used by the inspected operating system.  "
10604 "For example for Fedora these functions would return C<rpm> (package format) "
10605 "and C<yum> (package management)."
10606 msgstr ""
10607
10608 #. type: textblock
10609 #: ../src/guestfs-actions.pod:2898 ../fish/guestfish-actions.pod:1998
10610 msgid ""
10611 "This returns the string C<unknown> if we could not determine the package "
10612 "management tool I<or> if the operating system does not have a real packaging "
10613 "system (eg. Windows)."
10614 msgstr ""
10615
10616 #. type: textblock
10617 #: ../src/guestfs-actions.pod:2902 ../fish/guestfish-actions.pod:2002
10618 msgid ""
10619 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
10620 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
10621 "libguestfs may return other strings."
10622 msgstr ""
10623
10624 #. type: =head2
10625 #: ../src/guestfs-actions.pod:2914
10626 msgid "guestfs_inspect_get_product_name"
10627 msgstr ""
10628
10629 #. type: verbatim
10630 #: ../src/guestfs-actions.pod:2916
10631 #, no-wrap
10632 msgid ""
10633 " char *\n"
10634 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
10635 "                                   const char *root);\n"
10636 "\n"
10637 msgstr ""
10638
10639 #. type: textblock
10640 #: ../src/guestfs-actions.pod:2923 ../fish/guestfish-actions.pod:2016
10641 msgid ""
10642 "This returns the product name of the inspected operating system.  The "
10643 "product name is generally some freeform string which can be displayed to the "
10644 "user, but should not be parsed by programs."
10645 msgstr ""
10646
10647 #. type: textblock
10648 #: ../src/guestfs-actions.pod:2928 ../fish/guestfish-actions.pod:2021
10649 msgid ""
10650 "If the product name could not be determined, then the string C<unknown> is "
10651 "returned."
10652 msgstr ""
10653
10654 #. type: =head2
10655 #: ../src/guestfs-actions.pod:2938
10656 msgid "guestfs_inspect_get_product_variant"
10657 msgstr ""
10658
10659 #. type: verbatim
10660 #: ../src/guestfs-actions.pod:2940
10661 #, no-wrap
10662 msgid ""
10663 " char *\n"
10664 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
10665 "                                      const char *root);\n"
10666 "\n"
10667 msgstr ""
10668
10669 #. type: textblock
10670 #: ../src/guestfs-actions.pod:2947 ../fish/guestfish-actions.pod:2033
10671 msgid "This returns the product variant of the inspected operating system."
10672 msgstr ""
10673
10674 #. type: textblock
10675 #: ../src/guestfs-actions.pod:2950 ../fish/guestfish-actions.pod:2036
10676 msgid ""
10677 "For Windows guests, this returns the contents of the Registry key "
10678 "C<HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> "
10679 "which is usually a string such as C<Client> or C<Server> (other values are "
10680 "possible).  This can be used to distinguish consumer and enterprise versions "
10681 "of Windows that have the same version number (for example, Windows 7 and "
10682 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
10683 "the latter is C<Server>)."
10684 msgstr ""
10685
10686 #. type: textblock
10687 #: ../src/guestfs-actions.pod:2959 ../fish/guestfish-actions.pod:2045
10688 msgid ""
10689 "For enterprise Linux guests, in future we intend this to return the product "
10690 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
10691 "implemented at present."
10692 msgstr ""
10693
10694 #. type: textblock
10695 #: ../src/guestfs-actions.pod:2963 ../fish/guestfish-actions.pod:2049
10696 msgid ""
10697 "If the product variant could not be determined, then the string C<unknown> "
10698 "is returned."
10699 msgstr ""
10700
10701 #. type: textblock
10702 #: ../src/guestfs-actions.pod:2966
10703 msgid ""
10704 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10705 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
10706 msgstr ""
10707
10708 #. type: =head2
10709 #: ../src/guestfs-actions.pod:2973
10710 msgid "guestfs_inspect_get_roots"
10711 msgstr ""
10712
10713 #. type: verbatim
10714 #: ../src/guestfs-actions.pod:2975
10715 #, no-wrap
10716 msgid ""
10717 " char **\n"
10718 " guestfs_inspect_get_roots (guestfs_h *g);\n"
10719 "\n"
10720 msgstr ""
10721
10722 #. type: textblock
10723 #: ../src/guestfs-actions.pod:2978
10724 msgid ""
10725 "This function is a convenient way to get the list of root devices, as "
10726 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
10727 "the whole inspection process."
10728 msgstr ""
10729
10730 #. type: textblock
10731 #: ../src/guestfs-actions.pod:2982
10732 msgid ""
10733 "This returns an empty list if either no root devices were found or the "
10734 "caller has not called C<guestfs_inspect_os>."
10735 msgstr ""
10736
10737 #. type: textblock
10738 #: ../src/guestfs-actions.pod:2991
10739 msgid "(Added in 1.7.3)"
10740 msgstr ""
10741
10742 #. type: =head2
10743 #: ../src/guestfs-actions.pod:2993
10744 msgid "guestfs_inspect_get_type"
10745 msgstr ""
10746
10747 #. type: verbatim
10748 #: ../src/guestfs-actions.pod:2995
10749 #, no-wrap
10750 msgid ""
10751 " char *\n"
10752 " guestfs_inspect_get_type (guestfs_h *g,\n"
10753 "                           const char *root);\n"
10754 "\n"
10755 msgstr ""
10756
10757 #. type: textblock
10758 #: ../src/guestfs-actions.pod:3002 ../fish/guestfish-actions.pod:2076
10759 msgid ""
10760 "This returns the type of the inspected operating system.  Currently defined "
10761 "types are:"
10762 msgstr ""
10763
10764 #. type: =item
10765 #: ../src/guestfs-actions.pod:3007 ../fish/guestfish-actions.pod:2081
10766 msgid "\"linux\""
10767 msgstr ""
10768
10769 #. type: textblock
10770 #: ../src/guestfs-actions.pod:3009 ../fish/guestfish-actions.pod:2083
10771 msgid "Any Linux-based operating system."
10772 msgstr ""
10773
10774 #. type: textblock
10775 #: ../src/guestfs-actions.pod:3013 ../fish/guestfish-actions.pod:2087
10776 msgid "Any Microsoft Windows operating system."
10777 msgstr ""
10778
10779 #. type: =item
10780 #: ../src/guestfs-actions.pod:3015 ../fish/guestfish-actions.pod:2089
10781 msgid "\"freebsd\""
10782 msgstr ""
10783
10784 #. type: textblock
10785 #: ../src/guestfs-actions.pod:3017 ../fish/guestfish-actions.pod:2091
10786 msgid "FreeBSD."
10787 msgstr ""
10788
10789 #. type: textblock
10790 #: ../src/guestfs-actions.pod:3021 ../fish/guestfish-actions.pod:2095
10791 msgid "The operating system type could not be determined."
10792 msgstr ""
10793
10794 #. type: =head2
10795 #: ../src/guestfs-actions.pod:3035
10796 msgid "guestfs_inspect_get_windows_current_control_set"
10797 msgstr ""
10798
10799 #. type: verbatim
10800 #: ../src/guestfs-actions.pod:3037
10801 #, no-wrap
10802 msgid ""
10803 " char *\n"
10804 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
10805 "                                                  const char *root);\n"
10806 "\n"
10807 msgstr ""
10808
10809 #. type: textblock
10810 #: ../src/guestfs-actions.pod:3044 ../fish/guestfish-actions.pod:2111
10811 msgid ""
10812 "This returns the Windows CurrentControlSet of the inspected guest.  The "
10813 "CurrentControlSet is a registry key name such as C<ControlSet001>."
10814 msgstr ""
10815
10816 #. type: textblock
10817 #: ../src/guestfs-actions.pod:3047 ../fish/guestfish-actions.pod:2114
10818 msgid ""
10819 "This call assumes that the guest is Windows and that the Registry could be "
10820 "examined by inspection.  If this is not the case then an error is returned."
10821 msgstr ""
10822
10823 #. type: =head2
10824 #: ../src/guestfs-actions.pod:3056
10825 msgid "guestfs_inspect_get_windows_systemroot"
10826 msgstr ""
10827
10828 #. type: verbatim
10829 #: ../src/guestfs-actions.pod:3058
10830 #, no-wrap
10831 msgid ""
10832 " char *\n"
10833 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
10834 "                                         const char *root);\n"
10835 "\n"
10836 msgstr ""
10837
10838 #. type: textblock
10839 #: ../src/guestfs-actions.pod:3065 ../fish/guestfish-actions.pod:2127
10840 msgid ""
10841 "This returns the Windows systemroot of the inspected guest.  The systemroot "
10842 "is a directory path such as C</WINDOWS>."
10843 msgstr ""
10844
10845 #. type: textblock
10846 #: ../src/guestfs-actions.pod:3068 ../fish/guestfish-actions.pod:2130
10847 msgid ""
10848 "This call assumes that the guest is Windows and that the systemroot could be "
10849 "determined by inspection.  If this is not the case then an error is "
10850 "returned."
10851 msgstr ""
10852
10853 #. type: textblock
10854 #: ../src/guestfs-actions.pod:3077
10855 msgid "(Added in 1.5.25)"
10856 msgstr ""
10857
10858 #. type: =head2
10859 #: ../src/guestfs-actions.pod:3079
10860 msgid "guestfs_inspect_is_live"
10861 msgstr ""
10862
10863 #. type: verbatim
10864 #: ../src/guestfs-actions.pod:3081
10865 #, no-wrap
10866 msgid ""
10867 " int\n"
10868 " guestfs_inspect_is_live (guestfs_h *g,\n"
10869 "                          const char *root);\n"
10870 "\n"
10871 msgstr ""
10872
10873 #. type: textblock
10874 #: ../src/guestfs-actions.pod:3088
10875 msgid ""
10876 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
10877 "disk), then this returns true if a live image was detected on the disk."
10878 msgstr ""
10879
10880 #. type: =head2
10881 #: ../src/guestfs-actions.pod:3096
10882 msgid "guestfs_inspect_is_multipart"
10883 msgstr ""
10884
10885 #. type: verbatim
10886 #: ../src/guestfs-actions.pod:3098
10887 #, no-wrap
10888 msgid ""
10889 " int\n"
10890 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
10891 "                               const char *root);\n"
10892 "\n"
10893 msgstr ""
10894
10895 #. type: textblock
10896 #: ../src/guestfs-actions.pod:3105
10897 msgid ""
10898 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
10899 "disk), then this returns true if the disk is part of a set."
10900 msgstr ""
10901
10902 #. type: =head2
10903 #: ../src/guestfs-actions.pod:3113
10904 msgid "guestfs_inspect_is_netinst"
10905 msgstr ""
10906
10907 #. type: verbatim
10908 #: ../src/guestfs-actions.pod:3115
10909 #, no-wrap
10910 msgid ""
10911 " int\n"
10912 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
10913 "                             const char *root);\n"
10914 "\n"
10915 msgstr ""
10916
10917 #. type: textblock
10918 #: ../src/guestfs-actions.pod:3122
10919 msgid ""
10920 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
10921 "disk), then this returns true if the disk is a network installer, ie. not a "
10922 "self-contained install CD but one which is likely to require network access "
10923 "to complete the install."
10924 msgstr ""
10925
10926 #. type: =head2
10927 #: ../src/guestfs-actions.pod:3132
10928 msgid "guestfs_inspect_list_applications"
10929 msgstr ""
10930
10931 #. type: verbatim
10932 #: ../src/guestfs-actions.pod:3134
10933 #, no-wrap
10934 msgid ""
10935 " struct guestfs_application_list *\n"
10936 " guestfs_inspect_list_applications (guestfs_h *g,\n"
10937 "                                    const char *root);\n"
10938 "\n"
10939 msgstr ""
10940
10941 #. type: textblock
10942 #: ../src/guestfs-actions.pod:3141 ../fish/guestfish-actions.pod:2184
10943 msgid "Return the list of applications installed in the operating system."
10944 msgstr ""
10945
10946 #. type: textblock
10947 #: ../src/guestfs-actions.pod:3143
10948 msgid ""
10949 "I<Note:> This call works differently from other parts of the inspection "
10950 "API.  You have to call C<guestfs_inspect_os>, then "
10951 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
10952 "this.  Listing applications is a significantly more difficult operation "
10953 "which requires access to the full filesystem.  Also note that unlike the "
10954 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
10955 "the libguestfs handle, this call actually reads parts of the mounted "
10956 "filesystems during the call."
10957 msgstr ""
10958
10959 #. type: textblock
10960 #: ../src/guestfs-actions.pod:3153 ../fish/guestfish-actions.pod:2196
10961 msgid ""
10962 "This returns an empty list if the inspection code was not able to determine "
10963 "the list of applications."
10964 msgstr ""
10965
10966 #. type: textblock
10967 #: ../src/guestfs-actions.pod:3156 ../fish/guestfish-actions.pod:2199
10968 msgid "The application structure contains the following fields:"
10969 msgstr ""
10970
10971 #. type: =item
10972 #: ../src/guestfs-actions.pod:3160 ../fish/guestfish-actions.pod:2203
10973 msgid "C<app_name>"
10974 msgstr ""
10975
10976 #. type: textblock
10977 #: ../src/guestfs-actions.pod:3162 ../fish/guestfish-actions.pod:2205
10978 msgid ""
10979 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
10980 "guests, this is the package name."
10981 msgstr ""
10982
10983 #. type: =item
10984 #: ../src/guestfs-actions.pod:3165 ../fish/guestfish-actions.pod:2208
10985 msgid "C<app_display_name>"
10986 msgstr ""
10987
10988 #. type: textblock
10989 #: ../src/guestfs-actions.pod:3167 ../fish/guestfish-actions.pod:2210
10990 msgid ""
10991 "The display name of the application, sometimes localized to the install "
10992 "language of the guest operating system."
10993 msgstr ""
10994
10995 #. type: textblock
10996 #: ../src/guestfs-actions.pod:3170 ../fish/guestfish-actions.pod:2213
10997 msgid ""
10998 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
10999 "to display something can use C<app_name> instead."
11000 msgstr ""
11001
11002 #. type: =item
11003 #: ../src/guestfs-actions.pod:3173 ../fish/guestfish-actions.pod:2216
11004 msgid "C<app_epoch>"
11005 msgstr ""
11006
11007 #. type: textblock
11008 #: ../src/guestfs-actions.pod:3175 ../fish/guestfish-actions.pod:2218
11009 msgid ""
11010 "For package managers which use epochs, this contains the epoch of the "
11011 "package (an integer).  If unavailable, this is returned as C<0>."
11012 msgstr ""
11013
11014 #. type: =item
11015 #: ../src/guestfs-actions.pod:3178 ../fish/guestfish-actions.pod:2221
11016 msgid "C<app_version>"
11017 msgstr ""
11018
11019 #. type: textblock
11020 #: ../src/guestfs-actions.pod:3180 ../fish/guestfish-actions.pod:2223
11021 msgid ""
11022 "The version string of the application or package.  If unavailable this is "
11023 "returned as an empty string C<\"\">."
11024 msgstr ""
11025
11026 #. type: =item
11027 #: ../src/guestfs-actions.pod:3183 ../fish/guestfish-actions.pod:2226
11028 msgid "C<app_release>"
11029 msgstr ""
11030
11031 #. type: textblock
11032 #: ../src/guestfs-actions.pod:3185 ../fish/guestfish-actions.pod:2228
11033 msgid ""
11034 "The release string of the application or package, for package managers that "
11035 "use this.  If unavailable this is returned as an empty string C<\"\">."
11036 msgstr ""
11037
11038 #. type: =item
11039 #: ../src/guestfs-actions.pod:3189 ../fish/guestfish-actions.pod:2232
11040 msgid "C<app_install_path>"
11041 msgstr ""
11042
11043 #. type: textblock
11044 #: ../src/guestfs-actions.pod:3191 ../fish/guestfish-actions.pod:2234
11045 msgid ""
11046 "The installation path of the application (on operating systems such as "
11047 "Windows which use installation paths).  This path is in the format used by "
11048 "the guest operating system, it is not a libguestfs path."
11049 msgstr ""
11050
11051 #. type: textblock
11052 #: ../src/guestfs-actions.pod:3196 ../fish/guestfish-actions.pod:2239
11053 msgid "If unavailable this is returned as an empty string C<\"\">."
11054 msgstr ""
11055
11056 #. type: =item
11057 #: ../src/guestfs-actions.pod:3198 ../fish/guestfish-actions.pod:2241
11058 msgid "C<app_trans_path>"
11059 msgstr ""
11060
11061 #. type: textblock
11062 #: ../src/guestfs-actions.pod:3200 ../fish/guestfish-actions.pod:2243
11063 msgid ""
11064 "The install path translated into a libguestfs path.  If unavailable this is "
11065 "returned as an empty string C<\"\">."
11066 msgstr ""
11067
11068 #. type: =item
11069 #: ../src/guestfs-actions.pod:3203 ../fish/guestfish-actions.pod:2246
11070 msgid "C<app_publisher>"
11071 msgstr ""
11072
11073 #. type: textblock
11074 #: ../src/guestfs-actions.pod:3205 ../fish/guestfish-actions.pod:2248
11075 msgid ""
11076 "The name of the publisher of the application, for package managers that use "
11077 "this.  If unavailable this is returned as an empty string C<\"\">."
11078 msgstr ""
11079
11080 #. type: =item
11081 #: ../src/guestfs-actions.pod:3209 ../fish/guestfish-actions.pod:2252
11082 msgid "C<app_url>"
11083 msgstr ""
11084
11085 #. type: textblock
11086 #: ../src/guestfs-actions.pod:3211 ../fish/guestfish-actions.pod:2254
11087 msgid ""
11088 "The URL (eg. upstream URL) of the application.  If unavailable this is "
11089 "returned as an empty string C<\"\">."
11090 msgstr ""
11091
11092 #. type: =item
11093 #: ../src/guestfs-actions.pod:3214 ../fish/guestfish-actions.pod:2257
11094 msgid "C<app_source_package>"
11095 msgstr ""
11096
11097 #. type: textblock
11098 #: ../src/guestfs-actions.pod:3216 ../fish/guestfish-actions.pod:2259
11099 msgid ""
11100 "For packaging systems which support this, the name of the source package.  "
11101 "If unavailable this is returned as an empty string C<\"\">."
11102 msgstr ""
11103
11104 #. type: =item
11105 #: ../src/guestfs-actions.pod:3219 ../fish/guestfish-actions.pod:2262
11106 msgid "C<app_summary>"
11107 msgstr ""
11108
11109 #. type: textblock
11110 #: ../src/guestfs-actions.pod:3221 ../fish/guestfish-actions.pod:2264
11111 msgid ""
11112 "A short (usually one line) description of the application or package.  If "
11113 "unavailable this is returned as an empty string C<\"\">."
11114 msgstr ""
11115
11116 #. type: =item
11117 #: ../src/guestfs-actions.pod:3224 ../fish/guestfish-actions.pod:2267
11118 msgid "C<app_description>"
11119 msgstr ""
11120
11121 #. type: textblock
11122 #: ../src/guestfs-actions.pod:3226 ../fish/guestfish-actions.pod:2269
11123 msgid ""
11124 "A longer description of the application or package.  If unavailable this is "
11125 "returned as an empty string C<\"\">."
11126 msgstr ""
11127
11128 #. type: textblock
11129 #: ../src/guestfs-actions.pod:3233
11130 msgid ""
11131 "This function returns a C<struct guestfs_application_list *>, or NULL if "
11132 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
11133 "after use>."
11134 msgstr ""
11135
11136 #. type: textblock
11137 #: ../src/guestfs-actions.pod:3237
11138 msgid "(Added in 1.7.8)"
11139 msgstr ""
11140
11141 #. type: =head2
11142 #: ../src/guestfs-actions.pod:3239
11143 msgid "guestfs_inspect_os"
11144 msgstr ""
11145
11146 #. type: verbatim
11147 #: ../src/guestfs-actions.pod:3241
11148 #, no-wrap
11149 msgid ""
11150 " char **\n"
11151 " guestfs_inspect_os (guestfs_h *g);\n"
11152 "\n"
11153 msgstr ""
11154
11155 #. type: textblock
11156 #: ../src/guestfs-actions.pod:3244 ../fish/guestfish-actions.pod:2280
11157 msgid ""
11158 "This function uses other libguestfs functions and certain heuristics to "
11159 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
11160 "for operating systems."
11161 msgstr ""
11162
11163 #. type: textblock
11164 #: ../src/guestfs-actions.pod:3248 ../fish/guestfish-actions.pod:2284
11165 msgid "The list returned is empty if no operating systems were found."
11166 msgstr ""
11167
11168 #. type: textblock
11169 #: ../src/guestfs-actions.pod:3250 ../fish/guestfish-actions.pod:2286
11170 msgid ""
11171 "If one operating system was found, then this returns a list with a single "
11172 "element, which is the name of the root filesystem of this operating system.  "
11173 "It is also possible for this function to return a list containing more than "
11174 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
11175 "element being the root filesystem of one of the operating systems."
11176 msgstr ""
11177
11178 #. type: textblock
11179 #: ../src/guestfs-actions.pod:3257
11180 msgid ""
11181 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
11182 "functions in order to query further information about each operating system, "
11183 "such as the name and version."
11184 msgstr ""
11185
11186 #. type: textblock
11187 #: ../src/guestfs-actions.pod:3262
11188 msgid ""
11189 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
11190 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
11191 "the contents.  This should be called with no disks currently mounted.  The "
11192 "function may also use Augeas, so any existing Augeas handle will be closed."
11193 msgstr ""
11194
11195 #. type: textblock
11196 #: ../src/guestfs-actions.pod:3268 ../fish/guestfish-actions.pod:2304
11197 msgid ""
11198 "This function cannot decrypt encrypted disks.  The caller must do that first "
11199 "(supplying the necessary keys) if the disk is encrypted."
11200 msgstr ""
11201
11202 #. type: textblock
11203 #: ../src/guestfs-actions.pod:3274 ../src/guestfs-actions.pod:3564 ../src/guestfs-actions.pod:3626
11204 msgid "See also C<guestfs_list_filesystems>."
11205 msgstr ""
11206
11207 #. type: =head2
11208 #: ../src/guestfs-actions.pod:3282
11209 msgid "guestfs_is_blockdev"
11210 msgstr ""
11211
11212 #. type: verbatim
11213 #: ../src/guestfs-actions.pod:3284
11214 #, no-wrap
11215 msgid ""
11216 " int\n"
11217 " guestfs_is_blockdev (guestfs_h *g,\n"
11218 "                      const char *path);\n"
11219 "\n"
11220 msgstr ""
11221
11222 #. type: textblock
11223 #: ../src/guestfs-actions.pod:3288 ../fish/guestfish-actions.pod:2316
11224 msgid ""
11225 "This returns C<true> if and only if there is a block device with the given "
11226 "C<path> name."
11227 msgstr ""
11228
11229 #. type: textblock
11230 #: ../src/guestfs-actions.pod:3291 ../src/guestfs-actions.pod:3320 ../src/guestfs-actions.pod:3350 ../src/guestfs-actions.pod:3365 ../src/guestfs-actions.pod:3381 ../src/guestfs-actions.pod:3437 ../src/guestfs-actions.pod:3452
11231 msgid "See also C<guestfs_stat>."
11232 msgstr ""
11233
11234 #. type: textblock
11235 #: ../src/guestfs-actions.pod:3295 ../src/guestfs-actions.pod:3324 ../src/guestfs-actions.pod:3369 ../src/guestfs-actions.pod:3441 ../src/guestfs-actions.pod:3456
11236 msgid "(Added in 1.5.10)"
11237 msgstr ""
11238
11239 #. type: =head2
11240 #: ../src/guestfs-actions.pod:3297
11241 msgid "guestfs_is_busy"
11242 msgstr ""
11243
11244 #. type: verbatim
11245 #: ../src/guestfs-actions.pod:3299
11246 #, no-wrap
11247 msgid ""
11248 " int\n"
11249 " guestfs_is_busy (guestfs_h *g);\n"
11250 "\n"
11251 msgstr ""
11252
11253 #. type: textblock
11254 #: ../src/guestfs-actions.pod:3302 ../fish/guestfish-actions.pod:2325
11255 msgid ""
11256 "This returns true iff this handle is busy processing a command (in the "
11257 "C<BUSY> state)."
11258 msgstr ""
11259
11260 #. type: =head2
11261 #: ../src/guestfs-actions.pod:3311
11262 msgid "guestfs_is_chardev"
11263 msgstr ""
11264
11265 #. type: verbatim
11266 #: ../src/guestfs-actions.pod:3313
11267 #, no-wrap
11268 msgid ""
11269 " int\n"
11270 " guestfs_is_chardev (guestfs_h *g,\n"
11271 "                     const char *path);\n"
11272 "\n"
11273 msgstr ""
11274
11275 #. type: textblock
11276 #: ../src/guestfs-actions.pod:3317 ../fish/guestfish-actions.pod:2334
11277 msgid ""
11278 "This returns C<true> if and only if there is a character device with the "
11279 "given C<path> name."
11280 msgstr ""
11281
11282 #. type: =head2
11283 #: ../src/guestfs-actions.pod:3326
11284 msgid "guestfs_is_config"
11285 msgstr ""
11286
11287 #. type: verbatim
11288 #: ../src/guestfs-actions.pod:3328
11289 #, no-wrap
11290 msgid ""
11291 " int\n"
11292 " guestfs_is_config (guestfs_h *g);\n"
11293 "\n"
11294 msgstr ""
11295
11296 #. type: textblock
11297 #: ../src/guestfs-actions.pod:3331 ../fish/guestfish-actions.pod:2343
11298 msgid ""
11299 "This returns true iff this handle is being configured (in the C<CONFIG> "
11300 "state)."
11301 msgstr ""
11302
11303 #. type: =head2
11304 #: ../src/guestfs-actions.pod:3340
11305 msgid "guestfs_is_dir"
11306 msgstr ""
11307
11308 #. type: verbatim
11309 #: ../src/guestfs-actions.pod:3342
11310 #, no-wrap
11311 msgid ""
11312 " int\n"
11313 " guestfs_is_dir (guestfs_h *g,\n"
11314 "                 const char *path);\n"
11315 "\n"
11316 msgstr ""
11317
11318 #. type: textblock
11319 #: ../src/guestfs-actions.pod:3346 ../fish/guestfish-actions.pod:2352
11320 msgid ""
11321 "This returns C<true> if and only if there is a directory with the given "
11322 "C<path> name.  Note that it returns false for other objects like files."
11323 msgstr ""
11324
11325 #. type: =head2
11326 #: ../src/guestfs-actions.pod:3356
11327 msgid "guestfs_is_fifo"
11328 msgstr ""
11329
11330 #. type: verbatim
11331 #: ../src/guestfs-actions.pod:3358
11332 #, no-wrap
11333 msgid ""
11334 " int\n"
11335 " guestfs_is_fifo (guestfs_h *g,\n"
11336 "                  const char *path);\n"
11337 "\n"
11338 msgstr ""
11339
11340 #. type: textblock
11341 #: ../src/guestfs-actions.pod:3362 ../fish/guestfish-actions.pod:2362
11342 msgid ""
11343 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
11344 "given C<path> name."
11345 msgstr ""
11346
11347 #. type: =head2
11348 #: ../src/guestfs-actions.pod:3371
11349 msgid "guestfs_is_file"
11350 msgstr ""
11351
11352 #. type: verbatim
11353 #: ../src/guestfs-actions.pod:3373
11354 #, no-wrap
11355 msgid ""
11356 " int\n"
11357 " guestfs_is_file (guestfs_h *g,\n"
11358 "                  const char *path);\n"
11359 "\n"
11360 msgstr ""
11361
11362 #. type: textblock
11363 #: ../src/guestfs-actions.pod:3377 ../fish/guestfish-actions.pod:2371
11364 msgid ""
11365 "This returns C<true> if and only if there is a regular file with the given "
11366 "C<path> name.  Note that it returns false for other objects like "
11367 "directories."
11368 msgstr ""
11369
11370 #. type: =head2
11371 #: ../src/guestfs-actions.pod:3387
11372 msgid "guestfs_is_launching"
11373 msgstr ""
11374
11375 #. type: verbatim
11376 #: ../src/guestfs-actions.pod:3389
11377 #, no-wrap
11378 msgid ""
11379 " int\n"
11380 " guestfs_is_launching (guestfs_h *g);\n"
11381 "\n"
11382 msgstr ""
11383
11384 #. type: textblock
11385 #: ../src/guestfs-actions.pod:3392 ../fish/guestfish-actions.pod:2381
11386 msgid ""
11387 "This returns true iff this handle is launching the subprocess (in the "
11388 "C<LAUNCHING> state)."
11389 msgstr ""
11390
11391 #. type: =head2
11392 #: ../src/guestfs-actions.pod:3401
11393 msgid "guestfs_is_lv"
11394 msgstr ""
11395
11396 #. type: verbatim
11397 #: ../src/guestfs-actions.pod:3403
11398 #, no-wrap
11399 msgid ""
11400 " int\n"
11401 " guestfs_is_lv (guestfs_h *g,\n"
11402 "                const char *device);\n"
11403 "\n"
11404 msgstr ""
11405
11406 #. type: textblock
11407 #: ../src/guestfs-actions.pod:3407 ../fish/guestfish-actions.pod:2390
11408 msgid ""
11409 "This command tests whether C<device> is a logical volume, and returns true "
11410 "iff this is the case."
11411 msgstr ""
11412
11413 #. type: =head2
11414 #: ../src/guestfs-actions.pod:3414
11415 msgid "guestfs_is_ready"
11416 msgstr ""
11417
11418 #. type: verbatim
11419 #: ../src/guestfs-actions.pod:3416
11420 #, no-wrap
11421 msgid ""
11422 " int\n"
11423 " guestfs_is_ready (guestfs_h *g);\n"
11424 "\n"
11425 msgstr ""
11426
11427 #. type: textblock
11428 #: ../src/guestfs-actions.pod:3419 ../fish/guestfish-actions.pod:2397
11429 msgid ""
11430 "This returns true iff this handle is ready to accept commands (in the "
11431 "C<READY> state)."
11432 msgstr ""
11433
11434 #. type: =head2
11435 #: ../src/guestfs-actions.pod:3428
11436 msgid "guestfs_is_socket"
11437 msgstr ""
11438
11439 #. type: verbatim
11440 #: ../src/guestfs-actions.pod:3430
11441 #, no-wrap
11442 msgid ""
11443 " int\n"
11444 " guestfs_is_socket (guestfs_h *g,\n"
11445 "                    const char *path);\n"
11446 "\n"
11447 msgstr ""
11448
11449 #. type: textblock
11450 #: ../src/guestfs-actions.pod:3434 ../fish/guestfish-actions.pod:2406
11451 msgid ""
11452 "This returns C<true> if and only if there is a Unix domain socket with the "
11453 "given C<path> name."
11454 msgstr ""
11455
11456 #. type: =head2
11457 #: ../src/guestfs-actions.pod:3443
11458 msgid "guestfs_is_symlink"
11459 msgstr ""
11460
11461 #. type: verbatim
11462 #: ../src/guestfs-actions.pod:3445
11463 #, no-wrap
11464 msgid ""
11465 " int\n"
11466 " guestfs_is_symlink (guestfs_h *g,\n"
11467 "                     const char *path);\n"
11468 "\n"
11469 msgstr ""
11470
11471 #. type: textblock
11472 #: ../src/guestfs-actions.pod:3449 ../fish/guestfish-actions.pod:2415
11473 msgid ""
11474 "This returns C<true> if and only if there is a symbolic link with the given "
11475 "C<path> name."
11476 msgstr ""
11477
11478 #. type: =head2
11479 #: ../src/guestfs-actions.pod:3458
11480 msgid "guestfs_kill_subprocess"
11481 msgstr ""
11482
11483 #. type: verbatim
11484 #: ../src/guestfs-actions.pod:3460
11485 #, no-wrap
11486 msgid ""
11487 " int\n"
11488 " guestfs_kill_subprocess (guestfs_h *g);\n"
11489 "\n"
11490 msgstr ""
11491
11492 #. type: textblock
11493 #: ../src/guestfs-actions.pod:3463 ../fish/guestfish-actions.pod:2424
11494 msgid "This kills the qemu subprocess.  You should never need to call this."
11495 msgstr ""
11496
11497 #. type: =head2
11498 #: ../src/guestfs-actions.pod:3469
11499 msgid "guestfs_launch"
11500 msgstr ""
11501
11502 #. type: verbatim
11503 #: ../src/guestfs-actions.pod:3471
11504 #, no-wrap
11505 msgid ""
11506 " int\n"
11507 " guestfs_launch (guestfs_h *g);\n"
11508 "\n"
11509 msgstr ""
11510
11511 #. type: textblock
11512 #: ../src/guestfs-actions.pod:3474 ../fish/guestfish-actions.pod:2432
11513 msgid ""
11514 "Internally libguestfs is implemented by running a virtual machine using "
11515 "L<qemu(1)>."
11516 msgstr ""
11517
11518 #. type: textblock
11519 #: ../src/guestfs-actions.pod:3477 ../fish/guestfish-actions.pod:2435
11520 msgid ""
11521 "You should call this after configuring the handle (eg. adding drives) but "
11522 "before performing any actions."
11523 msgstr ""
11524
11525 #. type: =head2
11526 #: ../src/guestfs-actions.pod:3489
11527 msgid "guestfs_lchown"
11528 msgstr ""
11529
11530 #. type: verbatim
11531 #: ../src/guestfs-actions.pod:3491
11532 #, no-wrap
11533 msgid ""
11534 " int\n"
11535 " guestfs_lchown (guestfs_h *g,\n"
11536 "                 int owner,\n"
11537 "                 int group,\n"
11538 "                 const char *path);\n"
11539 "\n"
11540 msgstr ""
11541
11542 #. type: textblock
11543 #: ../src/guestfs-actions.pod:3497
11544 msgid ""
11545 "Change the file owner to C<owner> and group to C<group>.  This is like "
11546 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
11547 "changed, not the target."
11548 msgstr ""
11549
11550 #. type: =head2
11551 #: ../src/guestfs-actions.pod:3509
11552 msgid "guestfs_lgetxattr"
11553 msgstr ""
11554
11555 #. type: verbatim
11556 #: ../src/guestfs-actions.pod:3511
11557 #, no-wrap
11558 msgid ""
11559 " char *\n"
11560 " guestfs_lgetxattr (guestfs_h *g,\n"
11561 "                    const char *path,\n"
11562 "                    const char *name,\n"
11563 "                    size_t *size_r);\n"
11564 "\n"
11565 msgstr ""
11566
11567 #. type: textblock
11568 #: ../src/guestfs-actions.pod:3517 ../fish/guestfish-actions.pod:2454
11569 msgid ""
11570 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
11571 "is a symlink, then this call returns an extended attribute from the symlink."
11572 msgstr ""
11573
11574 #. type: textblock
11575 #: ../src/guestfs-actions.pod:3531
11576 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
11577 msgstr ""
11578
11579 #. type: =head2
11580 #: ../src/guestfs-actions.pod:3539
11581 msgid "guestfs_lgetxattrs"
11582 msgstr ""
11583
11584 #. type: verbatim
11585 #: ../src/guestfs-actions.pod:3541
11586 #, no-wrap
11587 msgid ""
11588 " struct guestfs_xattr_list *\n"
11589 " guestfs_lgetxattrs (guestfs_h *g,\n"
11590 "                     const char *path);\n"
11591 "\n"
11592 msgstr ""
11593
11594 #. type: textblock
11595 #: ../src/guestfs-actions.pod:3545
11596 msgid ""
11597 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
11598 "then it returns the extended attributes of the link itself."
11599 msgstr ""
11600
11601 #. type: =head2
11602 #: ../src/guestfs-actions.pod:3555
11603 msgid "guestfs_list_devices"
11604 msgstr ""
11605
11606 #. type: verbatim
11607 #: ../src/guestfs-actions.pod:3557
11608 #, no-wrap
11609 msgid ""
11610 " char **\n"
11611 " guestfs_list_devices (guestfs_h *g);\n"
11612 "\n"
11613 msgstr ""
11614
11615 #. type: textblock
11616 #: ../src/guestfs-actions.pod:3560 ../fish/guestfish-actions.pod:2482
11617 msgid "List all the block devices."
11618 msgstr ""
11619
11620 #. type: textblock
11621 #: ../src/guestfs-actions.pod:3562 ../fish/guestfish-actions.pod:2484
11622 msgid "The full block device names are returned, eg. C</dev/sda>."
11623 msgstr ""
11624
11625 #. type: =head2
11626 #: ../src/guestfs-actions.pod:3572
11627 msgid "guestfs_list_filesystems"
11628 msgstr ""
11629
11630 #. type: verbatim
11631 #: ../src/guestfs-actions.pod:3574
11632 #, no-wrap
11633 msgid ""
11634 " char **\n"
11635 " guestfs_list_filesystems (guestfs_h *g);\n"
11636 "\n"
11637 msgstr ""
11638
11639 #. type: textblock
11640 #: ../src/guestfs-actions.pod:3577 ../fish/guestfish-actions.pod:2492
11641 msgid ""
11642 "This inspection command looks for filesystems on partitions, block devices "
11643 "and logical volumes, returning a list of devices containing filesystems and "
11644 "their type."
11645 msgstr ""
11646
11647 #. type: textblock
11648 #: ../src/guestfs-actions.pod:3581 ../fish/guestfish-actions.pod:2496
11649 msgid ""
11650 "The return value is a hash, where the keys are the devices containing "
11651 "filesystems, and the values are the filesystem types.  For example:"
11652 msgstr ""
11653
11654 #. type: verbatim
11655 #: ../src/guestfs-actions.pod:3585 ../fish/guestfish-actions.pod:2500
11656 #, no-wrap
11657 msgid ""
11658 " \"/dev/sda1\" => \"ntfs\"\n"
11659 " \"/dev/sda2\" => \"ext2\"\n"
11660 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
11661 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
11662 "\n"
11663 msgstr ""
11664
11665 #. type: textblock
11666 #: ../src/guestfs-actions.pod:3590 ../fish/guestfish-actions.pod:2505
11667 msgid ""
11668 "The value can have the special value \"unknown\", meaning the content of the "
11669 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
11670 msgstr ""
11671
11672 #. type: textblock
11673 #: ../src/guestfs-actions.pod:3594
11674 msgid ""
11675 "This command runs other libguestfs commands, which might include "
11676 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
11677 "soon after launch and only when nothing is mounted."
11678 msgstr ""
11679
11680 #. type: textblock
11681 #: ../src/guestfs-actions.pod:3598
11682 msgid ""
11683 "Not all of the filesystems returned will be mountable.  In particular, swap "
11684 "partitions are returned in the list.  Also this command does not check that "
11685 "each filesystem found is valid and mountable, and some filesystems might be "
11686 "mountable but require special options.  Filesystems may not all belong to a "
11687 "single logical operating system (use C<guestfs_inspect_os> to look for "
11688 "OSes)."
11689 msgstr ""
11690
11691 #. type: textblock
11692 #: ../src/guestfs-actions.pod:3612 ../src/guestfs-actions.pod:5224
11693 msgid "(Added in 1.5.15)"
11694 msgstr ""
11695
11696 #. type: =head2
11697 #: ../src/guestfs-actions.pod:3614
11698 msgid "guestfs_list_partitions"
11699 msgstr ""
11700
11701 #. type: verbatim
11702 #: ../src/guestfs-actions.pod:3616
11703 #, no-wrap
11704 msgid ""
11705 " char **\n"
11706 " guestfs_list_partitions (guestfs_h *g);\n"
11707 "\n"
11708 msgstr ""
11709
11710 #. type: textblock
11711 #: ../src/guestfs-actions.pod:3619 ../fish/guestfish-actions.pod:2525
11712 msgid "List all the partitions detected on all block devices."
11713 msgstr ""
11714
11715 #. type: textblock
11716 #: ../src/guestfs-actions.pod:3621 ../fish/guestfish-actions.pod:2527
11717 msgid "The full partition device names are returned, eg. C</dev/sda1>"
11718 msgstr ""
11719
11720 #. type: textblock
11721 #: ../src/guestfs-actions.pod:3623
11722 msgid ""
11723 "This does not return logical volumes.  For that you will need to call "
11724 "C<guestfs_lvs>."
11725 msgstr ""
11726
11727 #. type: =head2
11728 #: ../src/guestfs-actions.pod:3634
11729 msgid "guestfs_ll"
11730 msgstr ""
11731
11732 #. type: verbatim
11733 #: ../src/guestfs-actions.pod:3636
11734 #, no-wrap
11735 msgid ""
11736 " char *\n"
11737 " guestfs_ll (guestfs_h *g,\n"
11738 "             const char *directory);\n"
11739 "\n"
11740 msgstr ""
11741
11742 #. type: textblock
11743 #: ../src/guestfs-actions.pod:3640 ../fish/guestfish-actions.pod:2538
11744 msgid ""
11745 "List the files in C<directory> (relative to the root directory, there is no "
11746 "cwd) in the format of 'ls -la'."
11747 msgstr ""
11748
11749 #. type: textblock
11750 #: ../src/guestfs-actions.pod:3643 ../fish/guestfish-actions.pod:2541
11751 msgid ""
11752 "This command is mostly useful for interactive sessions.  It is I<not> "
11753 "intended that you try to parse the output string."
11754 msgstr ""
11755
11756 #. type: =head2
11757 #: ../src/guestfs-actions.pod:3651
11758 msgid "guestfs_ln"
11759 msgstr ""
11760
11761 #. type: verbatim
11762 #: ../src/guestfs-actions.pod:3653
11763 #, no-wrap
11764 msgid ""
11765 " int\n"
11766 " guestfs_ln (guestfs_h *g,\n"
11767 "             const char *target,\n"
11768 "             const char *linkname);\n"
11769 "\n"
11770 msgstr ""
11771
11772 #. type: textblock
11773 #: ../src/guestfs-actions.pod:3658 ../fish/guestfish-actions.pod:2548
11774 msgid "This command creates a hard link using the C<ln> command."
11775 msgstr ""
11776
11777 #. type: =head2
11778 #: ../src/guestfs-actions.pod:3664
11779 msgid "guestfs_ln_f"
11780 msgstr ""
11781
11782 #. type: verbatim
11783 #: ../src/guestfs-actions.pod:3666
11784 #, no-wrap
11785 msgid ""
11786 " int\n"
11787 " guestfs_ln_f (guestfs_h *g,\n"
11788 "               const char *target,\n"
11789 "               const char *linkname);\n"
11790 "\n"
11791 msgstr ""
11792
11793 #. type: textblock
11794 #: ../src/guestfs-actions.pod:3671 ../fish/guestfish-actions.pod:2554
11795 msgid ""
11796 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
11797 "option removes the link (C<linkname>) if it exists already."
11798 msgstr ""
11799
11800 #. type: =head2
11801 #: ../src/guestfs-actions.pod:3678
11802 msgid "guestfs_ln_s"
11803 msgstr ""
11804
11805 #. type: verbatim
11806 #: ../src/guestfs-actions.pod:3680
11807 #, no-wrap
11808 msgid ""
11809 " int\n"
11810 " guestfs_ln_s (guestfs_h *g,\n"
11811 "               const char *target,\n"
11812 "               const char *linkname);\n"
11813 "\n"
11814 msgstr ""
11815
11816 #. type: textblock
11817 #: ../src/guestfs-actions.pod:3685 ../fish/guestfish-actions.pod:2561
11818 msgid "This command creates a symbolic link using the C<ln -s> command."
11819 msgstr ""
11820
11821 #. type: =head2
11822 #: ../src/guestfs-actions.pod:3691
11823 msgid "guestfs_ln_sf"
11824 msgstr ""
11825
11826 #. type: verbatim
11827 #: ../src/guestfs-actions.pod:3693
11828 #, no-wrap
11829 msgid ""
11830 " int\n"
11831 " guestfs_ln_sf (guestfs_h *g,\n"
11832 "                const char *target,\n"
11833 "                const char *linkname);\n"
11834 "\n"
11835 msgstr ""
11836
11837 #. type: textblock
11838 #: ../src/guestfs-actions.pod:3698 ../fish/guestfish-actions.pod:2567
11839 msgid ""
11840 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
11841 "option removes the link (C<linkname>) if it exists already."
11842 msgstr ""
11843
11844 #. type: =head2
11845 #: ../src/guestfs-actions.pod:3705
11846 msgid "guestfs_lremovexattr"
11847 msgstr ""
11848
11849 #. type: verbatim
11850 #: ../src/guestfs-actions.pod:3707
11851 #, no-wrap
11852 msgid ""
11853 " int\n"
11854 " guestfs_lremovexattr (guestfs_h *g,\n"
11855 "                       const char *xattr,\n"
11856 "                       const char *path);\n"
11857 "\n"
11858 msgstr ""
11859
11860 #. type: textblock
11861 #: ../src/guestfs-actions.pod:3712
11862 msgid ""
11863 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
11864 "link, then it removes an extended attribute of the link itself."
11865 msgstr ""
11866
11867 #. type: =head2
11868 #: ../src/guestfs-actions.pod:3720
11869 msgid "guestfs_ls"
11870 msgstr ""
11871
11872 #. type: verbatim
11873 #: ../src/guestfs-actions.pod:3722
11874 #, no-wrap
11875 msgid ""
11876 " char **\n"
11877 " guestfs_ls (guestfs_h *g,\n"
11878 "             const char *directory);\n"
11879 "\n"
11880 msgstr ""
11881
11882 #. type: textblock
11883 #: ../src/guestfs-actions.pod:3726 ../fish/guestfish-actions.pod:2582
11884 msgid ""
11885 "List the files in C<directory> (relative to the root directory, there is no "
11886 "cwd).  The '.' and '..' entries are not returned, but hidden files are "
11887 "shown."
11888 msgstr ""
11889
11890 #. type: textblock
11891 #: ../src/guestfs-actions.pod:3730
11892 msgid ""
11893 "This command is mostly useful for interactive sessions.  Programs should "
11894 "probably use C<guestfs_readdir> instead."
11895 msgstr ""
11896
11897 #. type: =head2
11898 #: ../src/guestfs-actions.pod:3739
11899 msgid "guestfs_lsetxattr"
11900 msgstr ""
11901
11902 #. type: verbatim
11903 #: ../src/guestfs-actions.pod:3741
11904 #, no-wrap
11905 msgid ""
11906 " int\n"
11907 " guestfs_lsetxattr (guestfs_h *g,\n"
11908 "                    const char *xattr,\n"
11909 "                    const char *val,\n"
11910 "                    int vallen,\n"
11911 "                    const char *path);\n"
11912 "\n"
11913 msgstr ""
11914
11915 #. type: textblock
11916 #: ../src/guestfs-actions.pod:3748
11917 msgid ""
11918 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
11919 "then it sets an extended attribute of the link itself."
11920 msgstr ""
11921
11922 #. type: =head2
11923 #: ../src/guestfs-actions.pod:3756
11924 msgid "guestfs_lstat"
11925 msgstr ""
11926
11927 #. type: verbatim
11928 #: ../src/guestfs-actions.pod:3758
11929 #, no-wrap
11930 msgid ""
11931 " struct guestfs_stat *\n"
11932 " guestfs_lstat (guestfs_h *g,\n"
11933 "                const char *path);\n"
11934 "\n"
11935 msgstr ""
11936
11937 #. type: textblock
11938 #: ../src/guestfs-actions.pod:3762 ../src/guestfs-actions.pod:6355 ../fish/guestfish-actions.pod:2601 ../fish/guestfish-actions.pod:4305
11939 msgid "Returns file information for the given C<path>."
11940 msgstr ""
11941
11942 #. type: textblock
11943 #: ../src/guestfs-actions.pod:3764
11944 msgid ""
11945 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
11946 "link, then the link is stat-ed, not the file it refers to."
11947 msgstr ""
11948
11949 #. type: textblock
11950 #: ../src/guestfs-actions.pod:3768 ../fish/guestfish-actions.pod:2607
11951 msgid "This is the same as the C<lstat(2)> system call."
11952 msgstr ""
11953
11954 #. type: textblock
11955 #: ../src/guestfs-actions.pod:3770 ../src/guestfs-actions.pod:6359
11956 msgid ""
11957 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
11958 "error.  I<The caller must call C<guestfs_free_stat> after use>."
11959 msgstr ""
11960
11961 #. type: textblock
11962 #: ../src/guestfs-actions.pod:3774 ../src/guestfs-actions.pod:6363 ../src/guestfs-actions.pod:6381 ../src/guestfs-actions.pod:6762
11963 msgid "(Added in 0.9.2)"
11964 msgstr ""
11965
11966 #. type: =head2
11967 #: ../src/guestfs-actions.pod:3776
11968 msgid "guestfs_lstatlist"
11969 msgstr ""
11970
11971 #. type: verbatim
11972 #: ../src/guestfs-actions.pod:3778
11973 #, no-wrap
11974 msgid ""
11975 " struct guestfs_stat_list *\n"
11976 " guestfs_lstatlist (guestfs_h *g,\n"
11977 "                    const char *path,\n"
11978 "                    char *const *names);\n"
11979 "\n"
11980 msgstr ""
11981
11982 #. type: textblock
11983 #: ../src/guestfs-actions.pod:3783
11984 msgid ""
11985 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
11986 "files, where all files are in the directory C<path>.  C<names> is the list "
11987 "of files from this directory."
11988 msgstr ""
11989
11990 #. type: textblock
11991 #: ../src/guestfs-actions.pod:3787 ../fish/guestfish-actions.pod:2617
11992 msgid ""
11993 "On return you get a list of stat structs, with a one-to-one correspondence "
11994 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
11995 "then the C<ino> field of that structure is set to C<-1>."
11996 msgstr ""
11997
11998 #. type: textblock
11999 #: ../src/guestfs-actions.pod:3792
12000 msgid ""
12001 "This call is intended for programs that want to efficiently list a directory "
12002 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
12003 "for a similarly efficient call for getting extended attributes.  Very long "
12004 "directory listings might cause the protocol message size to be exceeded, "
12005 "causing this call to fail.  The caller must split up such requests into "
12006 "smaller groups of names."
12007 msgstr ""
12008
12009 #. type: textblock
12010 #: ../src/guestfs-actions.pod:3800
12011 msgid ""
12012 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
12013 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
12014 msgstr ""
12015
12016 #. type: =head2
12017 #: ../src/guestfs-actions.pod:3806
12018 msgid "guestfs_luks_add_key"
12019 msgstr ""
12020
12021 #. type: verbatim
12022 #: ../src/guestfs-actions.pod:3808
12023 #, no-wrap
12024 msgid ""
12025 " int\n"
12026 " guestfs_luks_add_key (guestfs_h *g,\n"
12027 "                       const char *device,\n"
12028 "                       const char *key,\n"
12029 "                       const char *newkey,\n"
12030 "                       int keyslot);\n"
12031 "\n"
12032 msgstr ""
12033
12034 #. type: textblock
12035 #: ../src/guestfs-actions.pod:3815 ../fish/guestfish-actions.pod:2634
12036 msgid ""
12037 "This command adds a new key on LUKS device C<device>.  C<key> is any "
12038 "existing key, and is used to access the device.  C<newkey> is the new key to "
12039 "add.  C<keyslot> is the key slot that will be replaced."
12040 msgstr ""
12041
12042 #. type: textblock
12043 #: ../src/guestfs-actions.pod:3820
12044 msgid ""
12045 "Note that if C<keyslot> already contains a key, then this command will "
12046 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
12047 msgstr ""
12048
12049 #. type: textblock
12050 #: ../src/guestfs-actions.pod:3826 ../src/guestfs-actions.pod:3866 ../src/guestfs-actions.pod:3889 ../src/guestfs-actions.pod:3909 ../src/guestfs-actions.pod:3941 ../src/guestfs-actions.pod:3960
12051 msgid ""
12052 "This function takes a key or passphrase parameter which could contain "
12053 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
12054 "information."
12055 msgstr ""
12056
12057 #. type: textblock
12058 #: ../src/guestfs-actions.pod:3830 ../src/guestfs-actions.pod:3870 ../src/guestfs-actions.pod:3893 ../src/guestfs-actions.pod:3913
12059 msgid "(Added in 1.5.2)"
12060 msgstr ""
12061
12062 #. type: =head2
12063 #: ../src/guestfs-actions.pod:3832
12064 msgid "guestfs_luks_close"
12065 msgstr ""
12066
12067 #. type: verbatim
12068 #: ../src/guestfs-actions.pod:3834
12069 #, no-wrap
12070 msgid ""
12071 " int\n"
12072 " guestfs_luks_close (guestfs_h *g,\n"
12073 "                     const char *device);\n"
12074 "\n"
12075 msgstr ""
12076
12077 #. type: textblock
12078 #: ../src/guestfs-actions.pod:3838
12079 msgid ""
12080 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
12081 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
12082 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
12083 "underlying block device."
12084 msgstr ""
12085
12086 #. type: textblock
12087 #: ../src/guestfs-actions.pod:3846 ../src/guestfs-actions.pod:3945 ../src/guestfs-actions.pod:3964 ../src/guestfs-actions.pod:4014 ../src/guestfs-actions.pod:4062
12088 msgid "(Added in 1.5.1)"
12089 msgstr ""
12090
12091 #. type: =head2
12092 #: ../src/guestfs-actions.pod:3848
12093 msgid "guestfs_luks_format"
12094 msgstr ""
12095
12096 #. type: verbatim
12097 #: ../src/guestfs-actions.pod:3850
12098 #, no-wrap
12099 msgid ""
12100 " int\n"
12101 " guestfs_luks_format (guestfs_h *g,\n"
12102 "                      const char *device,\n"
12103 "                      const char *key,\n"
12104 "                      int keyslot);\n"
12105 "\n"
12106 msgstr ""
12107
12108 #. type: textblock
12109 #: ../src/guestfs-actions.pod:3856 ../fish/guestfish-actions.pod:2660
12110 msgid ""
12111 "This command erases existing data on C<device> and formats the device as a "
12112 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
12113 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
12114 msgstr ""
12115
12116 #. type: textblock
12117 #: ../src/guestfs-actions.pod:3863 ../src/guestfs-actions.pod:3886 ../src/guestfs-actions.pod:4026 ../src/guestfs-actions.pod:4975 ../src/guestfs-actions.pod:5755 ../src/guestfs-actions.pod:6162 ../src/guestfs-actions.pod:6192 ../src/guestfs-actions.pod:6225 ../src/guestfs-actions.pod:7406 ../fish/guestfish-actions.pod:2668 ../fish/guestfish-actions.pod:2681 ../fish/guestfish-actions.pod:2765 ../fish/guestfish-actions.pod:3346 ../fish/guestfish-actions.pod:3866 ../fish/guestfish-actions.pod:4176 ../fish/guestfish-actions.pod:4199 ../fish/guestfish-actions.pod:4221 ../fish/guestfish-actions.pod:4950
12118 msgid ""
12119 "B<This command is dangerous.  Without careful use you can easily destroy all "
12120 "your data>."
12121 msgstr ""
12122
12123 #. type: =head2
12124 #: ../src/guestfs-actions.pod:3872
12125 msgid "guestfs_luks_format_cipher"
12126 msgstr ""
12127
12128 #. type: verbatim
12129 #: ../src/guestfs-actions.pod:3874
12130 #, no-wrap
12131 msgid ""
12132 " int\n"
12133 " guestfs_luks_format_cipher (guestfs_h *g,\n"
12134 "                             const char *device,\n"
12135 "                             const char *key,\n"
12136 "                             int keyslot,\n"
12137 "                             const char *cipher);\n"
12138 "\n"
12139 msgstr ""
12140
12141 #. type: textblock
12142 #: ../src/guestfs-actions.pod:3881
12143 msgid ""
12144 "This command is the same as C<guestfs_luks_format> but it also allows you to "
12145 "set the C<cipher> used."
12146 msgstr ""
12147
12148 #. type: =head2
12149 #: ../src/guestfs-actions.pod:3895
12150 msgid "guestfs_luks_kill_slot"
12151 msgstr ""
12152
12153 #. type: verbatim
12154 #: ../src/guestfs-actions.pod:3897
12155 #, no-wrap
12156 msgid ""
12157 " int\n"
12158 " guestfs_luks_kill_slot (guestfs_h *g,\n"
12159 "                         const char *device,\n"
12160 "                         const char *key,\n"
12161 "                         int keyslot);\n"
12162 "\n"
12163 msgstr ""
12164
12165 #. type: textblock
12166 #: ../src/guestfs-actions.pod:3903 ../fish/guestfish-actions.pod:2688
12167 msgid ""
12168 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
12169 "device C<device>.  C<key> must be one of the I<other> keys."
12170 msgstr ""
12171
12172 #. type: =head2
12173 #: ../src/guestfs-actions.pod:3915
12174 msgid "guestfs_luks_open"
12175 msgstr ""
12176
12177 #. type: verbatim
12178 #: ../src/guestfs-actions.pod:3917
12179 #, no-wrap
12180 msgid ""
12181 " int\n"
12182 " guestfs_luks_open (guestfs_h *g,\n"
12183 "                    const char *device,\n"
12184 "                    const char *key,\n"
12185 "                    const char *mapname);\n"
12186 "\n"
12187 msgstr ""
12188
12189 #. type: textblock
12190 #: ../src/guestfs-actions.pod:3923 ../fish/guestfish-actions.pod:2699
12191 msgid ""
12192 "This command opens a block device which has been encrypted according to the "
12193 "Linux Unified Key Setup (LUKS) standard."
12194 msgstr ""
12195
12196 #. type: textblock
12197 #: ../src/guestfs-actions.pod:3926 ../fish/guestfish-actions.pod:2702
12198 msgid "C<device> is the encrypted block device or partition."
12199 msgstr ""
12200
12201 #. type: textblock
12202 #: ../src/guestfs-actions.pod:3928 ../fish/guestfish-actions.pod:2704
12203 msgid ""
12204 "The caller must supply one of the keys associated with the LUKS block "
12205 "device, in the C<key> parameter."
12206 msgstr ""
12207
12208 #. type: textblock
12209 #: ../src/guestfs-actions.pod:3931 ../fish/guestfish-actions.pod:2707
12210 msgid ""
12211 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
12212 "writes to this block device are decrypted from and encrypted to the "
12213 "underlying C<device> respectively."
12214 msgstr ""
12215
12216 #. type: textblock
12217 #: ../src/guestfs-actions.pod:3935
12218 msgid ""
12219 "If this block device contains LVM volume groups, then calling "
12220 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
12221 "visible."
12222 msgstr ""
12223
12224 #. type: =head2
12225 #: ../src/guestfs-actions.pod:3947
12226 msgid "guestfs_luks_open_ro"
12227 msgstr ""
12228
12229 #. type: verbatim
12230 #: ../src/guestfs-actions.pod:3949
12231 #, no-wrap
12232 msgid ""
12233 " int\n"
12234 " guestfs_luks_open_ro (guestfs_h *g,\n"
12235 "                       const char *device,\n"
12236 "                       const char *key,\n"
12237 "                       const char *mapname);\n"
12238 "\n"
12239 msgstr ""
12240
12241 #. type: textblock
12242 #: ../src/guestfs-actions.pod:3955
12243 msgid ""
12244 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
12245 "created."
12246 msgstr ""
12247
12248 #. type: =head2
12249 #: ../src/guestfs-actions.pod:3966
12250 msgid "guestfs_lvcreate"
12251 msgstr ""
12252
12253 #. type: verbatim
12254 #: ../src/guestfs-actions.pod:3968
12255 #, no-wrap
12256 msgid ""
12257 " int\n"
12258 " guestfs_lvcreate (guestfs_h *g,\n"
12259 "                   const char *logvol,\n"
12260 "                   const char *volgroup,\n"
12261 "                   int mbytes);\n"
12262 "\n"
12263 msgstr ""
12264
12265 #. type: textblock
12266 #: ../src/guestfs-actions.pod:3974 ../fish/guestfish-actions.pod:2732
12267 msgid ""
12268 "This creates an LVM logical volume called C<logvol> on the volume group "
12269 "C<volgroup>, with C<size> megabytes."
12270 msgstr ""
12271
12272 #. type: =head2
12273 #: ../src/guestfs-actions.pod:3981
12274 msgid "guestfs_lvm_canonical_lv_name"
12275 msgstr ""
12276
12277 #. type: verbatim
12278 #: ../src/guestfs-actions.pod:3983
12279 #, no-wrap
12280 msgid ""
12281 " char *\n"
12282 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
12283 "                                const char *lvname);\n"
12284 "\n"
12285 msgstr ""
12286
12287 #. type: textblock
12288 #: ../src/guestfs-actions.pod:3987 ../fish/guestfish-actions.pod:2739
12289 msgid ""
12290 "This converts alternative naming schemes for LVs that you might find to the "
12291 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to "
12292 "C</dev/VG/LV>."
12293 msgstr ""
12294
12295 #. type: textblock
12296 #: ../src/guestfs-actions.pod:3991 ../fish/guestfish-actions.pod:2743
12297 msgid ""
12298 "This command returns an error if the C<lvname> parameter does not refer to a "
12299 "logical volume."
12300 msgstr ""
12301
12302 #. type: textblock
12303 #: ../src/guestfs-actions.pod:3994
12304 msgid "See also C<guestfs_is_lv>."
12305 msgstr ""
12306
12307 #. type: textblock
12308 #: ../src/guestfs-actions.pod:3999
12309 msgid "(Added in 1.5.24)"
12310 msgstr ""
12311
12312 #. type: =head2
12313 #: ../src/guestfs-actions.pod:4001
12314 msgid "guestfs_lvm_clear_filter"
12315 msgstr ""
12316
12317 #. type: verbatim
12318 #: ../src/guestfs-actions.pod:4003
12319 #, no-wrap
12320 msgid ""
12321 " int\n"
12322 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
12323 "\n"
12324 msgstr ""
12325
12326 #. type: textblock
12327 #: ../src/guestfs-actions.pod:4006
12328 msgid ""
12329 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
12330 "see every block device."
12331 msgstr ""
12332
12333 #. type: textblock
12334 #: ../src/guestfs-actions.pod:4009 ../src/guestfs-actions.pod:4051 ../fish/guestfish-actions.pod:2755 ../fish/guestfish-actions.pod:2786
12335 msgid "This command also clears the LVM cache and performs a volume group scan."
12336 msgstr ""
12337
12338 #. type: =head2
12339 #: ../src/guestfs-actions.pod:4016
12340 msgid "guestfs_lvm_remove_all"
12341 msgstr ""
12342
12343 #. type: verbatim
12344 #: ../src/guestfs-actions.pod:4018
12345 #, no-wrap
12346 msgid ""
12347 " int\n"
12348 " guestfs_lvm_remove_all (guestfs_h *g);\n"
12349 "\n"
12350 msgstr ""
12351
12352 #. type: textblock
12353 #: ../src/guestfs-actions.pod:4021 ../fish/guestfish-actions.pod:2762
12354 msgid ""
12355 "This command removes all LVM logical volumes, volume groups and physical "
12356 "volumes."
12357 msgstr ""
12358
12359 #. type: =head2
12360 #: ../src/guestfs-actions.pod:4031
12361 msgid "guestfs_lvm_set_filter"
12362 msgstr ""
12363
12364 #. type: verbatim
12365 #: ../src/guestfs-actions.pod:4033
12366 #, no-wrap
12367 msgid ""
12368 " int\n"
12369 " guestfs_lvm_set_filter (guestfs_h *g,\n"
12370 "                         char *const *devices);\n"
12371 "\n"
12372 msgstr ""
12373
12374 #. type: textblock
12375 #: ../src/guestfs-actions.pod:4037 ../fish/guestfish-actions.pod:2772
12376 msgid ""
12377 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
12378 "block devices in the list C<devices>, and will ignore all other attached "
12379 "block devices."
12380 msgstr ""
12381
12382 #. type: textblock
12383 #: ../src/guestfs-actions.pod:4041 ../fish/guestfish-actions.pod:2776
12384 msgid ""
12385 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
12386 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
12387 "there are two types of duplication possible: either cloned PVs/VGs which "
12388 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
12389 "same name.  In normal operation you cannot create this situation, but you "
12390 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
12391 "inside the LVM metadata."
12392 msgstr ""
12393
12394 #. type: textblock
12395 #: ../src/guestfs-actions.pod:4054 ../fish/guestfish-actions.pod:2789
12396 msgid "You can filter whole block devices or individual partitions."
12397 msgstr ""
12398
12399 #. type: textblock
12400 #: ../src/guestfs-actions.pod:4056 ../fish/guestfish-actions.pod:2791
12401 msgid ""
12402 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
12403 "filesystem), even if you are not filtering out that VG."
12404 msgstr ""
12405
12406 #. type: =head2
12407 #: ../src/guestfs-actions.pod:4064
12408 msgid "guestfs_lvremove"
12409 msgstr ""
12410
12411 #. type: verbatim
12412 #: ../src/guestfs-actions.pod:4066
12413 #, no-wrap
12414 msgid ""
12415 " int\n"
12416 " guestfs_lvremove (guestfs_h *g,\n"
12417 "                   const char *device);\n"
12418 "\n"
12419 msgstr ""
12420
12421 #. type: textblock
12422 #: ../src/guestfs-actions.pod:4070 ../fish/guestfish-actions.pod:2799
12423 msgid ""
12424 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
12425 "LV, such as C</dev/VG/LV>."
12426 msgstr ""
12427
12428 #. type: textblock
12429 #: ../src/guestfs-actions.pod:4073 ../fish/guestfish-actions.pod:2802
12430 msgid ""
12431 "You can also remove all LVs in a volume group by specifying the VG name, "
12432 "C</dev/VG>."
12433 msgstr ""
12434
12435 #. type: textblock
12436 #: ../src/guestfs-actions.pod:4078 ../src/guestfs-actions.pod:5321 ../src/guestfs-actions.pod:7138
12437 msgid "(Added in 1.0.13)"
12438 msgstr ""
12439
12440 #. type: =head2
12441 #: ../src/guestfs-actions.pod:4080
12442 msgid "guestfs_lvrename"
12443 msgstr ""
12444
12445 #. type: verbatim
12446 #: ../src/guestfs-actions.pod:4082
12447 #, no-wrap
12448 msgid ""
12449 " int\n"
12450 " guestfs_lvrename (guestfs_h *g,\n"
12451 "                   const char *logvol,\n"
12452 "                   const char *newlogvol);\n"
12453 "\n"
12454 msgstr ""
12455
12456 #. type: textblock
12457 #: ../src/guestfs-actions.pod:4087 ../fish/guestfish-actions.pod:2809
12458 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
12459 msgstr ""
12460
12461 #. type: textblock
12462 #: ../src/guestfs-actions.pod:4091 ../src/guestfs-actions.pod:7151
12463 msgid "(Added in 1.0.83)"
12464 msgstr ""
12465
12466 #. type: =head2
12467 #: ../src/guestfs-actions.pod:4093
12468 msgid "guestfs_lvresize"
12469 msgstr ""
12470
12471 #. type: verbatim
12472 #: ../src/guestfs-actions.pod:4095
12473 #, no-wrap
12474 msgid ""
12475 " int\n"
12476 " guestfs_lvresize (guestfs_h *g,\n"
12477 "                   const char *device,\n"
12478 "                   int mbytes);\n"
12479 "\n"
12480 msgstr ""
12481
12482 #. type: textblock
12483 #: ../src/guestfs-actions.pod:4100 ../fish/guestfish-actions.pod:2815
12484 msgid ""
12485 "This resizes (expands or shrinks) an existing LVM logical volume to "
12486 "C<mbytes>.  When reducing, data in the reduced part is lost."
12487 msgstr ""
12488
12489 #. type: =head2
12490 #: ../src/guestfs-actions.pod:4108
12491 msgid "guestfs_lvresize_free"
12492 msgstr ""
12493
12494 #. type: verbatim
12495 #: ../src/guestfs-actions.pod:4110
12496 #, no-wrap
12497 msgid ""
12498 " int\n"
12499 " guestfs_lvresize_free (guestfs_h *g,\n"
12500 "                        const char *lv,\n"
12501 "                        int percent);\n"
12502 "\n"
12503 msgstr ""
12504
12505 #. type: textblock
12506 #: ../src/guestfs-actions.pod:4115 ../fish/guestfish-actions.pod:2823
12507 msgid ""
12508 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
12509 "remaining free space in the volume group.  Commonly you would call this with "
12510 "pc = 100 which expands the logical volume as much as possible, using all "
12511 "remaining free space in the volume group."
12512 msgstr ""
12513
12514 #. type: textblock
12515 #: ../src/guestfs-actions.pod:4123
12516 msgid "(Added in 1.3.3)"
12517 msgstr ""
12518
12519 #. type: =head2
12520 #: ../src/guestfs-actions.pod:4125
12521 msgid "guestfs_lvs"
12522 msgstr ""
12523
12524 #. type: verbatim
12525 #: ../src/guestfs-actions.pod:4127
12526 #, no-wrap
12527 msgid ""
12528 " char **\n"
12529 " guestfs_lvs (guestfs_h *g);\n"
12530 "\n"
12531 msgstr ""
12532
12533 #. type: textblock
12534 #: ../src/guestfs-actions.pod:4130 ../fish/guestfish-actions.pod:2833
12535 msgid ""
12536 "List all the logical volumes detected.  This is the equivalent of the "
12537 "L<lvs(8)> command."
12538 msgstr ""
12539
12540 #. type: textblock
12541 #: ../src/guestfs-actions.pod:4133 ../fish/guestfish-actions.pod:2836
12542 msgid ""
12543 "This returns a list of the logical volume device names "
12544 "(eg. C</dev/VolGroup00/LogVol00>)."
12545 msgstr ""
12546
12547 #. type: textblock
12548 #: ../src/guestfs-actions.pod:4136
12549 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
12550 msgstr ""
12551
12552 #. type: =head2
12553 #: ../src/guestfs-actions.pod:4144
12554 msgid "guestfs_lvs_full"
12555 msgstr ""
12556
12557 #. type: verbatim
12558 #: ../src/guestfs-actions.pod:4146
12559 #, no-wrap
12560 msgid ""
12561 " struct guestfs_lvm_lv_list *\n"
12562 " guestfs_lvs_full (guestfs_h *g);\n"
12563 "\n"
12564 msgstr ""
12565
12566 #. type: textblock
12567 #: ../src/guestfs-actions.pod:4149 ../fish/guestfish-actions.pod:2845
12568 msgid ""
12569 "List all the logical volumes detected.  This is the equivalent of the "
12570 "L<lvs(8)> command.  The \"full\" version includes all fields."
12571 msgstr ""
12572
12573 #. type: textblock
12574 #: ../src/guestfs-actions.pod:4152
12575 msgid ""
12576 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
12577 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after "
12578 "use>."
12579 msgstr ""
12580
12581 #. type: =head2
12582 #: ../src/guestfs-actions.pod:4158
12583 msgid "guestfs_lvuuid"
12584 msgstr ""
12585
12586 #. type: verbatim
12587 #: ../src/guestfs-actions.pod:4160
12588 #, no-wrap
12589 msgid ""
12590 " char *\n"
12591 " guestfs_lvuuid (guestfs_h *g,\n"
12592 "                 const char *device);\n"
12593 "\n"
12594 msgstr ""
12595
12596 #. type: textblock
12597 #: ../src/guestfs-actions.pod:4164 ../fish/guestfish-actions.pod:2852
12598 msgid "This command returns the UUID of the LVM LV C<device>."
12599 msgstr ""
12600
12601 #. type: =head2
12602 #: ../src/guestfs-actions.pod:4171
12603 msgid "guestfs_lxattrlist"
12604 msgstr ""
12605
12606 #. type: verbatim
12607 #: ../src/guestfs-actions.pod:4173
12608 #, no-wrap
12609 msgid ""
12610 " struct guestfs_xattr_list *\n"
12611 " guestfs_lxattrlist (guestfs_h *g,\n"
12612 "                     const char *path,\n"
12613 "                     char *const *names);\n"
12614 "\n"
12615 msgstr ""
12616
12617 #. type: textblock
12618 #: ../src/guestfs-actions.pod:4178 ../fish/guestfish-actions.pod:2858
12619 msgid ""
12620 "This call allows you to get the extended attributes of multiple files, where "
12621 "all files are in the directory C<path>.  C<names> is the list of files from "
12622 "this directory."
12623 msgstr ""
12624
12625 #. type: textblock
12626 #: ../src/guestfs-actions.pod:4182 ../fish/guestfish-actions.pod:2862
12627 msgid ""
12628 "On return you get a flat list of xattr structs which must be interpreted "
12629 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
12630 "C<attrval> in this struct is zero-length to indicate there was an error "
12631 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
12632 "number (the number of following attributes for this file, which could be "
12633 "C<\"0\">).  Then after the first xattr struct are the zero or more "
12634 "attributes for the first named file.  This repeats for the second and "
12635 "subsequent files."
12636 msgstr ""
12637
12638 #. type: textblock
12639 #: ../src/guestfs-actions.pod:4192
12640 msgid ""
12641 "This call is intended for programs that want to efficiently list a directory "
12642 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
12643 "a similarly efficient call for getting standard stats.  Very long directory "
12644 "listings might cause the protocol message size to be exceeded, causing this "
12645 "call to fail.  The caller must split up such requests into smaller groups of "
12646 "names."
12647 msgstr ""
12648
12649 #. type: =head2
12650 #: ../src/guestfs-actions.pod:4206
12651 msgid "guestfs_mkdir"
12652 msgstr ""
12653
12654 #. type: verbatim
12655 #: ../src/guestfs-actions.pod:4208
12656 #, no-wrap
12657 msgid ""
12658 " int\n"
12659 " guestfs_mkdir (guestfs_h *g,\n"
12660 "                const char *path);\n"
12661 "\n"
12662 msgstr ""
12663
12664 #. type: textblock
12665 #: ../src/guestfs-actions.pod:4212 ../fish/guestfish-actions.pod:2884
12666 msgid "Create a directory named C<path>."
12667 msgstr ""
12668
12669 #. type: =head2
12670 #: ../src/guestfs-actions.pod:4218
12671 msgid "guestfs_mkdir_mode"
12672 msgstr ""
12673
12674 #. type: verbatim
12675 #: ../src/guestfs-actions.pod:4220
12676 #, no-wrap
12677 msgid ""
12678 " int\n"
12679 " guestfs_mkdir_mode (guestfs_h *g,\n"
12680 "                     const char *path,\n"
12681 "                     int mode);\n"
12682 "\n"
12683 msgstr ""
12684
12685 #. type: textblock
12686 #: ../src/guestfs-actions.pod:4225 ../fish/guestfish-actions.pod:2890
12687 msgid ""
12688 "This command creates a directory, setting the initial permissions of the "
12689 "directory to C<mode>."
12690 msgstr ""
12691
12692 #. type: textblock
12693 #: ../src/guestfs-actions.pod:4228 ../fish/guestfish-actions.pod:2893
12694 msgid ""
12695 "For common Linux filesystems, the actual mode which is set will be C<mode & "
12696 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
12697 "other ways."
12698 msgstr ""
12699
12700 #. type: textblock
12701 #: ../src/guestfs-actions.pod:4232
12702 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
12703 msgstr ""
12704
12705 #. type: =head2
12706 #: ../src/guestfs-actions.pod:4238
12707 msgid "guestfs_mkdir_p"
12708 msgstr ""
12709
12710 #. type: verbatim
12711 #: ../src/guestfs-actions.pod:4240
12712 #, no-wrap
12713 msgid ""
12714 " int\n"
12715 " guestfs_mkdir_p (guestfs_h *g,\n"
12716 "                  const char *path);\n"
12717 "\n"
12718 msgstr ""
12719
12720 #. type: textblock
12721 #: ../src/guestfs-actions.pod:4244 ../fish/guestfish-actions.pod:2903
12722 msgid ""
12723 "Create a directory named C<path>, creating any parent directories as "
12724 "necessary.  This is like the C<mkdir -p> shell command."
12725 msgstr ""
12726
12727 #. type: =head2
12728 #: ../src/guestfs-actions.pod:4251
12729 msgid "guestfs_mkdtemp"
12730 msgstr ""
12731
12732 #. type: verbatim
12733 #: ../src/guestfs-actions.pod:4253
12734 #, no-wrap
12735 msgid ""
12736 " char *\n"
12737 " guestfs_mkdtemp (guestfs_h *g,\n"
12738 "                  const char *template);\n"
12739 "\n"
12740 msgstr ""
12741
12742 #. type: textblock
12743 #: ../src/guestfs-actions.pod:4257 ../fish/guestfish-actions.pod:2910
12744 msgid ""
12745 "This command creates a temporary directory.  The C<template> parameter "
12746 "should be a full pathname for the temporary directory name with the final "
12747 "six characters being \"XXXXXX\"."
12748 msgstr ""
12749
12750 #. type: textblock
12751 #: ../src/guestfs-actions.pod:4262 ../fish/guestfish-actions.pod:2915
12752 msgid ""
12753 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
12754 "being suitable for Windows filesystems."
12755 msgstr ""
12756
12757 #. type: textblock
12758 #: ../src/guestfs-actions.pod:4265 ../fish/guestfish-actions.pod:2918
12759 msgid "The name of the temporary directory that was created is returned."
12760 msgstr ""
12761
12762 #. type: textblock
12763 #: ../src/guestfs-actions.pod:4268 ../fish/guestfish-actions.pod:2921
12764 msgid "The temporary directory is created with mode 0700 and is owned by root."
12765 msgstr ""
12766
12767 #. type: textblock
12768 #: ../src/guestfs-actions.pod:4271 ../fish/guestfish-actions.pod:2924
12769 msgid ""
12770 "The caller is responsible for deleting the temporary directory and its "
12771 "contents after use."
12772 msgstr ""
12773
12774 #. type: textblock
12775 #: ../src/guestfs-actions.pod:4274 ../fish/guestfish-actions.pod:2927
12776 msgid "See also: L<mkdtemp(3)>"
12777 msgstr ""
12778
12779 #. type: =head2
12780 #: ../src/guestfs-actions.pod:4281
12781 msgid "guestfs_mke2fs_J"
12782 msgstr ""
12783
12784 #. type: verbatim
12785 #: ../src/guestfs-actions.pod:4283
12786 #, no-wrap
12787 msgid ""
12788 " int\n"
12789 " guestfs_mke2fs_J (guestfs_h *g,\n"
12790 "                   const char *fstype,\n"
12791 "                   int blocksize,\n"
12792 "                   const char *device,\n"
12793 "                   const char *journal);\n"
12794 "\n"
12795 msgstr ""
12796
12797 #. type: textblock
12798 #: ../src/guestfs-actions.pod:4290 ../fish/guestfish-actions.pod:2933
12799 msgid ""
12800 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
12801 "C<journal>.  It is equivalent to the command:"
12802 msgstr ""
12803
12804 #. type: verbatim
12805 #: ../src/guestfs-actions.pod:4294 ../fish/guestfish-actions.pod:2937
12806 #, no-wrap
12807 msgid ""
12808 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
12809 "\n"
12810 msgstr ""
12811
12812 #. type: textblock
12813 #: ../src/guestfs-actions.pod:4296
12814 msgid "See also C<guestfs_mke2journal>."
12815 msgstr ""
12816
12817 #. type: textblock
12818 #: ../src/guestfs-actions.pod:4300 ../src/guestfs-actions.pod:4318 ../src/guestfs-actions.pod:4336 ../src/guestfs-actions.pod:4352 ../src/guestfs-actions.pod:4366 ../src/guestfs-actions.pod:4380 ../src/guestfs-actions.pod:4439 ../src/guestfs-actions.pod:4704
12819 msgid "(Added in 1.0.68)"
12820 msgstr ""
12821
12822 #. type: =head2
12823 #: ../src/guestfs-actions.pod:4302
12824 msgid "guestfs_mke2fs_JL"
12825 msgstr ""
12826
12827 #. type: verbatim
12828 #: ../src/guestfs-actions.pod:4304
12829 #, no-wrap
12830 msgid ""
12831 " int\n"
12832 " guestfs_mke2fs_JL (guestfs_h *g,\n"
12833 "                    const char *fstype,\n"
12834 "                    int blocksize,\n"
12835 "                    const char *device,\n"
12836 "                    const char *label);\n"
12837 "\n"
12838 msgstr ""
12839
12840 #. type: textblock
12841 #: ../src/guestfs-actions.pod:4311 ../fish/guestfish-actions.pod:2945
12842 msgid ""
12843 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
12844 "the journal labeled C<label>."
12845 msgstr ""
12846
12847 #. type: textblock
12848 #: ../src/guestfs-actions.pod:4314
12849 msgid "See also C<guestfs_mke2journal_L>."
12850 msgstr ""
12851
12852 #. type: =head2
12853 #: ../src/guestfs-actions.pod:4320
12854 msgid "guestfs_mke2fs_JU"
12855 msgstr ""
12856
12857 #. type: verbatim
12858 #: ../src/guestfs-actions.pod:4322
12859 #, no-wrap
12860 msgid ""
12861 " int\n"
12862 " guestfs_mke2fs_JU (guestfs_h *g,\n"
12863 "                    const char *fstype,\n"
12864 "                    int blocksize,\n"
12865 "                    const char *device,\n"
12866 "                    const char *uuid);\n"
12867 "\n"
12868 msgstr ""
12869
12870 #. type: textblock
12871 #: ../src/guestfs-actions.pod:4329 ../fish/guestfish-actions.pod:2954
12872 msgid ""
12873 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
12874 "the journal with UUID C<uuid>."
12875 msgstr ""
12876
12877 #. type: textblock
12878 #: ../src/guestfs-actions.pod:4332
12879 msgid "See also C<guestfs_mke2journal_U>."
12880 msgstr ""
12881
12882 #. type: =head2
12883 #: ../src/guestfs-actions.pod:4338
12884 msgid "guestfs_mke2journal"
12885 msgstr ""
12886
12887 #. type: verbatim
12888 #: ../src/guestfs-actions.pod:4340
12889 #, no-wrap
12890 msgid ""
12891 " int\n"
12892 " guestfs_mke2journal (guestfs_h *g,\n"
12893 "                      int blocksize,\n"
12894 "                      const char *device);\n"
12895 "\n"
12896 msgstr ""
12897
12898 #. type: textblock
12899 #: ../src/guestfs-actions.pod:4345 ../fish/guestfish-actions.pod:2963
12900 msgid ""
12901 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
12902 "command:"
12903 msgstr ""
12904
12905 #. type: verbatim
12906 #: ../src/guestfs-actions.pod:4348 ../fish/guestfish-actions.pod:2966
12907 #, no-wrap
12908 msgid ""
12909 " mke2fs -O journal_dev -b blocksize device\n"
12910 "\n"
12911 msgstr ""
12912
12913 #. type: =head2
12914 #: ../src/guestfs-actions.pod:4354
12915 msgid "guestfs_mke2journal_L"
12916 msgstr ""
12917
12918 #. type: verbatim
12919 #: ../src/guestfs-actions.pod:4356
12920 #, no-wrap
12921 msgid ""
12922 " int\n"
12923 " guestfs_mke2journal_L (guestfs_h *g,\n"
12924 "                        int blocksize,\n"
12925 "                        const char *label,\n"
12926 "                        const char *device);\n"
12927 "\n"
12928 msgstr ""
12929
12930 #. type: textblock
12931 #: ../src/guestfs-actions.pod:4362 ../fish/guestfish-actions.pod:2972
12932 msgid "This creates an ext2 external journal on C<device> with label C<label>."
12933 msgstr ""
12934
12935 #. type: =head2
12936 #: ../src/guestfs-actions.pod:4368
12937 msgid "guestfs_mke2journal_U"
12938 msgstr ""
12939
12940 #. type: verbatim
12941 #: ../src/guestfs-actions.pod:4370
12942 #, no-wrap
12943 msgid ""
12944 " int\n"
12945 " guestfs_mke2journal_U (guestfs_h *g,\n"
12946 "                        int blocksize,\n"
12947 "                        const char *uuid,\n"
12948 "                        const char *device);\n"
12949 "\n"
12950 msgstr ""
12951
12952 #. type: textblock
12953 #: ../src/guestfs-actions.pod:4376 ../fish/guestfish-actions.pod:2978
12954 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
12955 msgstr ""
12956
12957 #. type: =head2
12958 #: ../src/guestfs-actions.pod:4382
12959 msgid "guestfs_mkfifo"
12960 msgstr ""
12961
12962 #. type: verbatim
12963 #: ../src/guestfs-actions.pod:4384
12964 #, no-wrap
12965 msgid ""
12966 " int\n"
12967 " guestfs_mkfifo (guestfs_h *g,\n"
12968 "                 int mode,\n"
12969 "                 const char *path);\n"
12970 "\n"
12971 msgstr ""
12972
12973 #. type: textblock
12974 #: ../src/guestfs-actions.pod:4389
12975 msgid ""
12976 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
12977 "is just a convenient wrapper around C<guestfs_mknod>."
12978 msgstr ""
12979
12980 #. type: =head2
12981 #: ../src/guestfs-actions.pod:4399
12982 msgid "guestfs_mkfs"
12983 msgstr ""
12984
12985 #. type: verbatim
12986 #: ../src/guestfs-actions.pod:4401
12987 #, no-wrap
12988 msgid ""
12989 " int\n"
12990 " guestfs_mkfs (guestfs_h *g,\n"
12991 "               const char *fstype,\n"
12992 "               const char *device);\n"
12993 "\n"
12994 msgstr ""
12995
12996 #. type: textblock
12997 #: ../src/guestfs-actions.pod:4406 ../fish/guestfish-actions.pod:2994
12998 msgid ""
12999 "This creates a filesystem on C<device> (usually a partition or LVM logical "
13000 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
13001 msgstr ""
13002
13003 #. type: =head2
13004 #: ../src/guestfs-actions.pod:4414
13005 msgid "guestfs_mkfs_b"
13006 msgstr ""
13007
13008 #. type: verbatim
13009 #: ../src/guestfs-actions.pod:4416
13010 #, no-wrap
13011 msgid ""
13012 " int\n"
13013 " guestfs_mkfs_b (guestfs_h *g,\n"
13014 "                 const char *fstype,\n"
13015 "                 int blocksize,\n"
13016 "                 const char *device);\n"
13017 "\n"
13018 msgstr ""
13019
13020 #. type: textblock
13021 #: ../src/guestfs-actions.pod:4422
13022 msgid ""
13023 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
13024 "block size of the resulting filesystem.  Supported block sizes depend on the "
13025 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
13026 msgstr ""
13027
13028 #. type: textblock
13029 #: ../src/guestfs-actions.pod:4427 ../src/guestfs-actions.pod:4470 ../fish/guestfish-actions.pod:3007 ../fish/guestfish-actions.pod:3034
13030 msgid ""
13031 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
13032 "cluster size."
13033 msgstr ""
13034
13035 #. type: textblock
13036 #: ../src/guestfs-actions.pod:4432 ../fish/guestfish-actions.pod:3010
13037 msgid ""
13038 "This function is deprecated.  In new code, use the C<mkfs_opts> call "
13039 "instead."
13040 msgstr ""
13041
13042 #. type: =head2
13043 #: ../src/guestfs-actions.pod:4441
13044 msgid "guestfs_mkfs_opts"
13045 msgstr ""
13046
13047 #. type: verbatim
13048 #: ../src/guestfs-actions.pod:4443
13049 #, no-wrap
13050 msgid ""
13051 " int\n"
13052 " guestfs_mkfs_opts (guestfs_h *g,\n"
13053 "                    const char *fstype,\n"
13054 "                    const char *device,\n"
13055 "                    ...);\n"
13056 "\n"
13057 msgstr ""
13058
13059 #. type: verbatim
13060 #: ../src/guestfs-actions.pod:4454
13061 #, no-wrap
13062 msgid ""
13063 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
13064 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
13065 "\n"
13066 msgstr ""
13067
13068 #. type: textblock
13069 #: ../src/guestfs-actions.pod:4457 ../fish/guestfish-actions.pod:3021
13070 msgid ""
13071 "This function creates a filesystem on C<device>.  The filesystem type is "
13072 "C<fstype>, for example C<ext3>."
13073 msgstr ""
13074
13075 #. type: =item
13076 #: ../src/guestfs-actions.pod:4464 ../fish/guestfish-actions.pod:3028
13077 msgid "C<blocksize>"
13078 msgstr ""
13079
13080 #. type: textblock
13081 #: ../src/guestfs-actions.pod:4466 ../fish/guestfish-actions.pod:3030
13082 msgid ""
13083 "The filesystem block size.  Supported block sizes depend on the filesystem "
13084 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
13085 "filesystems."
13086 msgstr ""
13087
13088 #. type: textblock
13089 #: ../src/guestfs-actions.pod:4473 ../fish/guestfish-actions.pod:3037
13090 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
13091 msgstr ""
13092
13093 #. type: =item
13094 #: ../src/guestfs-actions.pod:4475 ../fish/guestfish-actions.pod:3039
13095 msgid "C<features>"
13096 msgstr ""
13097
13098 #. type: textblock
13099 #: ../src/guestfs-actions.pod:4477 ../fish/guestfish-actions.pod:3041
13100 msgid "This passes the I<-O> parameter to the external mkfs program."
13101 msgstr ""
13102
13103 #. type: textblock
13104 #: ../src/guestfs-actions.pod:4479 ../fish/guestfish-actions.pod:3043
13105 msgid ""
13106 "For certain filesystem types, this allows extra filesystem features to be "
13107 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
13108 msgstr ""
13109
13110 #. type: textblock
13111 #: ../src/guestfs-actions.pod:4483 ../fish/guestfish-actions.pod:3047
13112 msgid ""
13113 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
13114 "type."
13115 msgstr ""
13116
13117 #. type: textblock
13118 #: ../src/guestfs-actions.pod:4490
13119 msgid "(Added in 1.7.19)"
13120 msgstr ""
13121
13122 #. type: =head2
13123 #: ../src/guestfs-actions.pod:4492
13124 msgid "guestfs_mkfs_opts_va"
13125 msgstr ""
13126
13127 #. type: verbatim
13128 #: ../src/guestfs-actions.pod:4494
13129 #, no-wrap
13130 msgid ""
13131 " int\n"
13132 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
13133 "                       const char *fstype,\n"
13134 "                       const char *device,\n"
13135 "                       va_list args);\n"
13136 "\n"
13137 msgstr ""
13138
13139 #. type: textblock
13140 #: ../src/guestfs-actions.pod:4500
13141 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
13142 msgstr ""
13143
13144 #. type: =head2
13145 #: ../src/guestfs-actions.pod:4504
13146 msgid "guestfs_mkfs_opts_argv"
13147 msgstr ""
13148
13149 #. type: verbatim
13150 #: ../src/guestfs-actions.pod:4506
13151 #, no-wrap
13152 msgid ""
13153 " int\n"
13154 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
13155 "                         const char *fstype,\n"
13156 "                         const char *device,\n"
13157 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
13158 "\n"
13159 msgstr ""
13160
13161 #. type: textblock
13162 #: ../src/guestfs-actions.pod:4512
13163 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
13164 msgstr ""
13165
13166 #. type: =head2
13167 #: ../src/guestfs-actions.pod:4516
13168 msgid "guestfs_mkmountpoint"
13169 msgstr ""
13170
13171 #. type: verbatim
13172 #: ../src/guestfs-actions.pod:4518
13173 #, no-wrap
13174 msgid ""
13175 " int\n"
13176 " guestfs_mkmountpoint (guestfs_h *g,\n"
13177 "                       const char *exemptpath);\n"
13178 "\n"
13179 msgstr ""
13180
13181 #. type: textblock
13182 #: ../src/guestfs-actions.pod:4522
13183 msgid ""
13184 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
13185 "that can be used to create extra mountpoints before mounting the first "
13186 "filesystem."
13187 msgstr ""
13188
13189 #. type: textblock
13190 #: ../src/guestfs-actions.pod:4526 ../fish/guestfish-actions.pod:3062
13191 msgid ""
13192 "These calls are I<only> necessary in some very limited circumstances, mainly "
13193 "the case where you want to mount a mix of unrelated and/or read-only "
13194 "filesystems together."
13195 msgstr ""
13196
13197 #. type: textblock
13198 #: ../src/guestfs-actions.pod:4530 ../fish/guestfish-actions.pod:3066
13199 msgid ""
13200 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
13201 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
13202 "inside that.  You can unpack this as follows in guestfish:"
13203 msgstr ""
13204
13205 #. type: verbatim
13206 #: ../src/guestfs-actions.pod:4535 ../fish/guestfish-actions.pod:3071
13207 #, no-wrap
13208 msgid ""
13209 " add-ro Fedora-11-i686-Live.iso\n"
13210 " run\n"
13211 " mkmountpoint /cd\n"
13212 " mkmountpoint /sqsh\n"
13213 " mkmountpoint /ext3fs\n"
13214 " mount /dev/sda /cd\n"
13215 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
13216 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
13217 "\n"
13218 msgstr ""
13219
13220 #. type: textblock
13221 #: ../src/guestfs-actions.pod:4544 ../fish/guestfish-actions.pod:3080
13222 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
13223 msgstr ""
13224
13225 #. type: textblock
13226 #: ../src/guestfs-actions.pod:4546
13227 msgid ""
13228 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
13229 "may get unexpected errors if you try to mix these calls.  It is safest to "
13230 "manually unmount filesystems and remove mountpoints after use."
13231 msgstr ""
13232
13233 #. type: textblock
13234 #: ../src/guestfs-actions.pod:4550
13235 msgid ""
13236 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
13237 "first, so for this to work for manual mountpoints, you must ensure that the "
13238 "innermost mountpoints have the longest pathnames, as in the example code "
13239 "above."
13240 msgstr ""
13241
13242 #. type: textblock
13243 #: ../src/guestfs-actions.pod:4555 ../fish/guestfish-actions.pod:3091
13244 msgid "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
13245 msgstr ""
13246
13247 #. type: textblock
13248 #: ../src/guestfs-actions.pod:4557
13249 msgid ""
13250 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
13251 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
13252 "can also trigger these issues."
13253 msgstr ""
13254
13255 #. type: textblock
13256 #: ../src/guestfs-actions.pod:4563 ../src/guestfs-actions.pod:4829 ../src/guestfs-actions.pod:5739
13257 msgid "(Added in 1.0.62)"
13258 msgstr ""
13259
13260 #. type: =head2
13261 #: ../src/guestfs-actions.pod:4565
13262 msgid "guestfs_mknod"
13263 msgstr ""
13264
13265 #. type: verbatim
13266 #: ../src/guestfs-actions.pod:4567
13267 #, no-wrap
13268 msgid ""
13269 " int\n"
13270 " guestfs_mknod (guestfs_h *g,\n"
13271 "                int mode,\n"
13272 "                int devmajor,\n"
13273 "                int devminor,\n"
13274 "                const char *path);\n"
13275 "\n"
13276 msgstr ""
13277
13278 #. type: textblock
13279 #: ../src/guestfs-actions.pod:4574 ../fish/guestfish-actions.pod:3101
13280 msgid ""
13281 "This call creates block or character special devices, or named pipes "
13282 "(FIFOs)."
13283 msgstr ""
13284
13285 #. type: textblock
13286 #: ../src/guestfs-actions.pod:4577 ../fish/guestfish-actions.pod:3104
13287 msgid ""
13288 "The C<mode> parameter should be the mode, using the standard constants.  "
13289 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
13290 "used when creating block and character special devices."
13291 msgstr ""
13292
13293 #. type: textblock
13294 #: ../src/guestfs-actions.pod:4582
13295 msgid ""
13296 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
13297 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
13298 "regular file).  These constants are available in the standard Linux header "
13299 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
13300 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
13301 "the appropriate constant for you."
13302 msgstr ""
13303
13304 #. type: =head2
13305 #: ../src/guestfs-actions.pod:4596
13306 msgid "guestfs_mknod_b"
13307 msgstr ""
13308
13309 #. type: verbatim
13310 #: ../src/guestfs-actions.pod:4598
13311 #, no-wrap
13312 msgid ""
13313 " int\n"
13314 " guestfs_mknod_b (guestfs_h *g,\n"
13315 "                  int mode,\n"
13316 "                  int devmajor,\n"
13317 "                  int devminor,\n"
13318 "                  const char *path);\n"
13319 "\n"
13320 msgstr ""
13321
13322 #. type: textblock
13323 #: ../src/guestfs-actions.pod:4605
13324 msgid ""
13325 "This call creates a block device node called C<path> with mode C<mode> and "
13326 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13327 "wrapper around C<guestfs_mknod>."
13328 msgstr ""
13329
13330 #. type: =head2
13331 #: ../src/guestfs-actions.pod:4615
13332 msgid "guestfs_mknod_c"
13333 msgstr ""
13334
13335 #. type: verbatim
13336 #: ../src/guestfs-actions.pod:4617
13337 #, no-wrap
13338 msgid ""
13339 " int\n"
13340 " guestfs_mknod_c (guestfs_h *g,\n"
13341 "                  int mode,\n"
13342 "                  int devmajor,\n"
13343 "                  int devminor,\n"
13344 "                  const char *path);\n"
13345 "\n"
13346 msgstr ""
13347
13348 #. type: textblock
13349 #: ../src/guestfs-actions.pod:4624
13350 msgid ""
13351 "This call creates a char device node called C<path> with mode C<mode> and "
13352 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13353 "wrapper around C<guestfs_mknod>."
13354 msgstr ""
13355
13356 #. type: =head2
13357 #: ../src/guestfs-actions.pod:4634
13358 msgid "guestfs_mkswap"
13359 msgstr ""
13360
13361 #. type: verbatim
13362 #: ../src/guestfs-actions.pod:4636
13363 #, no-wrap
13364 msgid ""
13365 " int\n"
13366 " guestfs_mkswap (guestfs_h *g,\n"
13367 "                 const char *device);\n"
13368 "\n"
13369 msgstr ""
13370
13371 #. type: textblock
13372 #: ../src/guestfs-actions.pod:4640 ../fish/guestfish-actions.pod:3143
13373 msgid "Create a swap partition on C<device>."
13374 msgstr ""
13375
13376 #. type: =head2
13377 #: ../src/guestfs-actions.pod:4646
13378 msgid "guestfs_mkswap_L"
13379 msgstr ""
13380
13381 #. type: verbatim
13382 #: ../src/guestfs-actions.pod:4648
13383 #, no-wrap
13384 msgid ""
13385 " int\n"
13386 " guestfs_mkswap_L (guestfs_h *g,\n"
13387 "                   const char *label,\n"
13388 "                   const char *device);\n"
13389 "\n"
13390 msgstr ""
13391
13392 #. type: textblock
13393 #: ../src/guestfs-actions.pod:4653 ../fish/guestfish-actions.pod:3149
13394 msgid "Create a swap partition on C<device> with label C<label>."
13395 msgstr ""
13396
13397 #. type: textblock
13398 #: ../src/guestfs-actions.pod:4655 ../fish/guestfish-actions.pod:3151
13399 msgid ""
13400 "Note that you cannot attach a swap label to a block device "
13401 "(eg. C</dev/sda>), just to a partition.  This appears to be a limitation of "
13402 "the kernel or swap tools."
13403 msgstr ""
13404
13405 #. type: =head2
13406 #: ../src/guestfs-actions.pod:4663
13407 msgid "guestfs_mkswap_U"
13408 msgstr ""
13409
13410 #. type: verbatim
13411 #: ../src/guestfs-actions.pod:4665
13412 #, no-wrap
13413 msgid ""
13414 " int\n"
13415 " guestfs_mkswap_U (guestfs_h *g,\n"
13416 "                   const char *uuid,\n"
13417 "                   const char *device);\n"
13418 "\n"
13419 msgstr ""
13420
13421 #. type: textblock
13422 #: ../src/guestfs-actions.pod:4670 ../fish/guestfish-actions.pod:3159
13423 msgid "Create a swap partition on C<device> with UUID C<uuid>."
13424 msgstr ""
13425
13426 #. type: =head2
13427 #: ../src/guestfs-actions.pod:4676
13428 msgid "guestfs_mkswap_file"
13429 msgstr ""
13430
13431 #. type: verbatim
13432 #: ../src/guestfs-actions.pod:4678
13433 #, no-wrap
13434 msgid ""
13435 " int\n"
13436 " guestfs_mkswap_file (guestfs_h *g,\n"
13437 "                      const char *path);\n"
13438 "\n"
13439 msgstr ""
13440
13441 #. type: textblock
13442 #: ../src/guestfs-actions.pod:4682 ../fish/guestfish-actions.pod:3165
13443 msgid "Create a swap file."
13444 msgstr ""
13445
13446 #. type: textblock
13447 #: ../src/guestfs-actions.pod:4684
13448 msgid ""
13449 "This command just writes a swap file signature to an existing file.  To "
13450 "create the file itself, use something like C<guestfs_fallocate>."
13451 msgstr ""
13452
13453 #. type: =head2
13454 #: ../src/guestfs-actions.pod:4691
13455 msgid "guestfs_modprobe"
13456 msgstr ""
13457
13458 #. type: verbatim
13459 #: ../src/guestfs-actions.pod:4693
13460 #, no-wrap
13461 msgid ""
13462 " int\n"
13463 " guestfs_modprobe (guestfs_h *g,\n"
13464 "                   const char *modulename);\n"
13465 "\n"
13466 msgstr ""
13467
13468 #. type: textblock
13469 #: ../src/guestfs-actions.pod:4697 ../fish/guestfish-actions.pod:3174
13470 msgid "This loads a kernel module in the appliance."
13471 msgstr ""
13472
13473 #. type: textblock
13474 #: ../src/guestfs-actions.pod:4699 ../fish/guestfish-actions.pod:3176
13475 msgid ""
13476 "The kernel module must have been whitelisted when libguestfs was built (see "
13477 "C<appliance/kmod.whitelist.in> in the source)."
13478 msgstr ""
13479
13480 #. type: =head2
13481 #: ../src/guestfs-actions.pod:4706
13482 msgid "guestfs_mount"
13483 msgstr ""
13484
13485 #. type: verbatim
13486 #: ../src/guestfs-actions.pod:4708
13487 #, no-wrap
13488 msgid ""
13489 " int\n"
13490 " guestfs_mount (guestfs_h *g,\n"
13491 "                const char *device,\n"
13492 "                const char *mountpoint);\n"
13493 "\n"
13494 msgstr ""
13495
13496 #. type: textblock
13497 #: ../src/guestfs-actions.pod:4713 ../fish/guestfish-actions.pod:3183
13498 msgid ""
13499 "Mount a guest disk at a position in the filesystem.  Block devices are named "
13500 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
13501 "those block devices contain partitions, they will have the usual names "
13502 "(eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
13503 msgstr ""
13504
13505 #. type: textblock
13506 #: ../src/guestfs-actions.pod:4719 ../fish/guestfish-actions.pod:3189
13507 msgid ""
13508 "The rules are the same as for L<mount(2)>: A filesystem must first be "
13509 "mounted on C</> before others can be mounted.  Other filesystems can only be "
13510 "mounted on directories which already exist."
13511 msgstr ""
13512
13513 #. type: textblock
13514 #: ../src/guestfs-actions.pod:4724 ../fish/guestfish-actions.pod:3194
13515 msgid ""
13516 "The mounted filesystem is writable, if we have sufficient permissions on the "
13517 "underlying device."
13518 msgstr ""
13519
13520 #. type: textblock
13521 #: ../src/guestfs-actions.pod:4727
13522 msgid ""
13523 "B<Important note:> When you use this call, the filesystem options C<sync> "
13524 "and C<noatime> are set implicitly.  This was originally done because we "
13525 "thought it would improve reliability, but it turns out that I<-o sync> has a "
13526 "very large negative performance impact and negligible effect on "
13527 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
13528 "in any code that needs performance, and instead use C<guestfs_mount_options> "
13529 "(use an empty string for the first parameter if you don't want any options)."
13530 msgstr ""
13531
13532 #. type: textblock
13533 #: ../src/guestfs-actions.pod:4739 ../fish/guestfish-actions.pod:3207
13534 msgid ""
13535 "This function is deprecated.  In new code, use the C<mount_options> call "
13536 "instead."
13537 msgstr ""
13538
13539 #. type: =head2
13540 #: ../src/guestfs-actions.pod:4748
13541 msgid "guestfs_mount_loop"
13542 msgstr ""
13543
13544 #. type: verbatim
13545 #: ../src/guestfs-actions.pod:4750
13546 #, no-wrap
13547 msgid ""
13548 " int\n"
13549 " guestfs_mount_loop (guestfs_h *g,\n"
13550 "                     const char *file,\n"
13551 "                     const char *mountpoint);\n"
13552 "\n"
13553 msgstr ""
13554
13555 #. type: textblock
13556 #: ../src/guestfs-actions.pod:4755 ../fish/guestfish-actions.pod:3218
13557 msgid ""
13558 "This command lets you mount C<file> (a filesystem image in a file) on a "
13559 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
13560 "mountpoint>."
13561 msgstr ""
13562
13563 #. type: =head2
13564 #: ../src/guestfs-actions.pod:4763
13565 msgid "guestfs_mount_options"
13566 msgstr ""
13567
13568 #. type: verbatim
13569 #: ../src/guestfs-actions.pod:4765
13570 #, no-wrap
13571 msgid ""
13572 " int\n"
13573 " guestfs_mount_options (guestfs_h *g,\n"
13574 "                        const char *options,\n"
13575 "                        const char *device,\n"
13576 "                        const char *mountpoint);\n"
13577 "\n"
13578 msgstr ""
13579
13580 #. type: textblock
13581 #: ../src/guestfs-actions.pod:4771
13582 msgid ""
13583 "This is the same as the C<guestfs_mount> command, but it allows you to set "
13584 "the mount options as for the L<mount(8)> I<-o> flag."
13585 msgstr ""
13586
13587 #. type: textblock
13588 #: ../src/guestfs-actions.pod:4775 ../fish/guestfish-actions.pod:3230
13589 msgid ""
13590 "If the C<options> parameter is an empty string, then no options are passed "
13591 "(all options default to whatever the filesystem uses)."
13592 msgstr ""
13593
13594 #. type: textblock
13595 #: ../src/guestfs-actions.pod:4781 ../src/guestfs-actions.pod:4795 ../src/guestfs-actions.pod:4812
13596 msgid "(Added in 1.0.10)"
13597 msgstr ""
13598
13599 #. type: =head2
13600 #: ../src/guestfs-actions.pod:4783
13601 msgid "guestfs_mount_ro"
13602 msgstr ""
13603
13604 #. type: verbatim
13605 #: ../src/guestfs-actions.pod:4785
13606 #, no-wrap
13607 msgid ""
13608 " int\n"
13609 " guestfs_mount_ro (guestfs_h *g,\n"
13610 "                   const char *device,\n"
13611 "                   const char *mountpoint);\n"
13612 "\n"
13613 msgstr ""
13614
13615 #. type: textblock
13616 #: ../src/guestfs-actions.pod:4790
13617 msgid ""
13618 "This is the same as the C<guestfs_mount> command, but it mounts the "
13619 "filesystem with the read-only (I<-o ro>) flag."
13620 msgstr ""
13621
13622 #. type: =head2
13623 #: ../src/guestfs-actions.pod:4797
13624 msgid "guestfs_mount_vfs"
13625 msgstr ""
13626
13627 #. type: verbatim
13628 #: ../src/guestfs-actions.pod:4799
13629 #, no-wrap
13630 msgid ""
13631 " int\n"
13632 " guestfs_mount_vfs (guestfs_h *g,\n"
13633 "                    const char *options,\n"
13634 "                    const char *vfstype,\n"
13635 "                    const char *device,\n"
13636 "                    const char *mountpoint);\n"
13637 "\n"
13638 msgstr ""
13639
13640 #. type: textblock
13641 #: ../src/guestfs-actions.pod:4806
13642 msgid ""
13643 "This is the same as the C<guestfs_mount> command, but it allows you to set "
13644 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and "
13645 "I<-t> flags."
13646 msgstr ""
13647
13648 #. type: =head2
13649 #: ../src/guestfs-actions.pod:4814
13650 msgid "guestfs_mountpoints"
13651 msgstr ""
13652
13653 #. type: verbatim
13654 #: ../src/guestfs-actions.pod:4816
13655 #, no-wrap
13656 msgid ""
13657 " char **\n"
13658 " guestfs_mountpoints (guestfs_h *g);\n"
13659 "\n"
13660 msgstr ""
13661
13662 #. type: textblock
13663 #: ../src/guestfs-actions.pod:4819
13664 msgid ""
13665 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
13666 "devices.  This one returns a hash table (map) of device name to directory "
13667 "where the device is mounted."
13668 msgstr ""
13669
13670 #. type: =head2
13671 #: ../src/guestfs-actions.pod:4831
13672 msgid "guestfs_mounts"
13673 msgstr ""
13674
13675 #. type: verbatim
13676 #: ../src/guestfs-actions.pod:4833
13677 #, no-wrap
13678 msgid ""
13679 " char **\n"
13680 " guestfs_mounts (guestfs_h *g);\n"
13681 "\n"
13682 msgstr ""
13683
13684 #. type: textblock
13685 #: ../src/guestfs-actions.pod:4836 ../fish/guestfish-actions.pod:3261
13686 msgid ""
13687 "This returns the list of currently mounted filesystems.  It returns the list "
13688 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
13689 msgstr ""
13690
13691 #. type: textblock
13692 #: ../src/guestfs-actions.pod:4839 ../fish/guestfish-actions.pod:3264
13693 msgid "Some internal mounts are not shown."
13694 msgstr ""
13695
13696 #. type: textblock
13697 #: ../src/guestfs-actions.pod:4841
13698 msgid "See also: C<guestfs_mountpoints>"
13699 msgstr ""
13700
13701 #. type: =head2
13702 #: ../src/guestfs-actions.pod:4849
13703 msgid "guestfs_mv"
13704 msgstr ""
13705
13706 #. type: verbatim
13707 #: ../src/guestfs-actions.pod:4851
13708 #, no-wrap
13709 msgid ""
13710 " int\n"
13711 " guestfs_mv (guestfs_h *g,\n"
13712 "             const char *src,\n"
13713 "             const char *dest);\n"
13714 "\n"
13715 msgstr ""
13716
13717 #. type: textblock
13718 #: ../src/guestfs-actions.pod:4856 ../fish/guestfish-actions.pod:3272
13719 msgid ""
13720 "This moves a file from C<src> to C<dest> where C<dest> is either a "
13721 "destination filename or destination directory."
13722 msgstr ""
13723
13724 #. type: =head2
13725 #: ../src/guestfs-actions.pod:4863
13726 msgid "guestfs_ntfs_3g_probe"
13727 msgstr ""
13728
13729 #. type: verbatim
13730 #: ../src/guestfs-actions.pod:4865
13731 #, no-wrap
13732 msgid ""
13733 " int\n"
13734 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
13735 "                        int rw,\n"
13736 "                        const char *device);\n"
13737 "\n"
13738 msgstr ""
13739
13740 #. type: textblock
13741 #: ../src/guestfs-actions.pod:4870 ../fish/guestfish-actions.pod:3279
13742 msgid ""
13743 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
13744 "C<device> for mountability.  (Not all NTFS volumes can be mounted "
13745 "read-write, and some cannot be mounted at all)."
13746 msgstr ""
13747
13748 #. type: textblock
13749 #: ../src/guestfs-actions.pod:4874 ../fish/guestfish-actions.pod:3283
13750 msgid ""
13751 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
13752 "can be mounted read-write.  Set it to false if you want to test if the "
13753 "volume can be mounted read-only."
13754 msgstr ""
13755
13756 #. type: textblock
13757 #: ../src/guestfs-actions.pod:4878 ../fish/guestfish-actions.pod:3287
13758 msgid ""
13759 "The return value is an integer which C<0> if the operation would succeed, or "
13760 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
13761 msgstr ""
13762
13763 #. type: textblock
13764 #: ../src/guestfs-actions.pod:4884
13765 msgid "(Added in 1.0.43)"
13766 msgstr ""
13767
13768 #. type: =head2
13769 #: ../src/guestfs-actions.pod:4886
13770 msgid "guestfs_ntfsresize"
13771 msgstr ""
13772
13773 #. type: verbatim
13774 #: ../src/guestfs-actions.pod:4888
13775 #, no-wrap
13776 msgid ""
13777 " int\n"
13778 " guestfs_ntfsresize (guestfs_h *g,\n"
13779 "                     const char *device);\n"
13780 "\n"
13781 msgstr ""
13782
13783 #. type: textblock
13784 #: ../src/guestfs-actions.pod:4892 ../fish/guestfish-actions.pod:3295
13785 msgid ""
13786 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
13787 "size of the underlying device.  See also L<ntfsresize(8)>."
13788 msgstr ""
13789
13790 #. type: =head2
13791 #: ../src/guestfs-actions.pod:4900
13792 msgid "guestfs_ntfsresize_size"
13793 msgstr ""
13794
13795 #. type: verbatim
13796 #: ../src/guestfs-actions.pod:4902
13797 #, no-wrap
13798 msgid ""
13799 " int\n"
13800 " guestfs_ntfsresize_size (guestfs_h *g,\n"
13801 "                          const char *device,\n"
13802 "                          int64_t size);\n"
13803 "\n"
13804 msgstr ""
13805
13806 #. type: textblock
13807 #: ../src/guestfs-actions.pod:4907
13808 msgid ""
13809 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
13810 "to specify the new size (in bytes) explicitly."
13811 msgstr ""
13812
13813 #. type: textblock
13814 #: ../src/guestfs-actions.pod:4912 ../src/guestfs-actions.pod:5348 ../src/guestfs-actions.pod:5421 ../src/guestfs-actions.pod:5687 ../src/guestfs-actions.pod:7293
13815 msgid "(Added in 1.3.14)"
13816 msgstr ""
13817
13818 #. type: =head2
13819 #: ../src/guestfs-actions.pod:4914
13820 msgid "guestfs_part_add"
13821 msgstr ""
13822
13823 #. type: verbatim
13824 #: ../src/guestfs-actions.pod:4916
13825 #, no-wrap
13826 msgid ""
13827 " int\n"
13828 " guestfs_part_add (guestfs_h *g,\n"
13829 "                   const char *device,\n"
13830 "                   const char *prlogex,\n"
13831 "                   int64_t startsect,\n"
13832 "                   int64_t endsect);\n"
13833 "\n"
13834 msgstr ""
13835
13836 #. type: textblock
13837 #: ../src/guestfs-actions.pod:4923
13838 msgid ""
13839 "This command adds a partition to C<device>.  If there is no partition table "
13840 "on the device, call C<guestfs_part_init> first."
13841 msgstr ""
13842
13843 #. type: textblock
13844 #: ../src/guestfs-actions.pod:4926 ../fish/guestfish-actions.pod:3313
13845 msgid ""
13846 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
13847 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
13848 "C<logical>) and C<e> (or C<extended>) partition types."
13849 msgstr ""
13850
13851 #. type: textblock
13852 #: ../src/guestfs-actions.pod:4931 ../fish/guestfish-actions.pod:3318
13853 msgid ""
13854 "C<startsect> and C<endsect> are the start and end of the partition in "
13855 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
13856 "from the end of the disk (C<-1> is the last sector)."
13857 msgstr ""
13858
13859 #. type: textblock
13860 #: ../src/guestfs-actions.pod:4935
13861 msgid ""
13862 "Creating a partition which covers the whole disk is not so easy.  Use "
13863 "C<guestfs_part_disk> to do that."
13864 msgstr ""
13865
13866 #. type: textblock
13867 #: ../src/guestfs-actions.pod:4940 ../src/guestfs-actions.pod:4978 ../src/guestfs-actions.pod:5031 ../src/guestfs-actions.pod:5109 ../src/guestfs-actions.pod:5147 ../src/guestfs-actions.pod:5166 ../src/guestfs-actions.pod:5206
13868 msgid "(Added in 1.0.78)"
13869 msgstr ""
13870
13871 #. type: =head2
13872 #: ../src/guestfs-actions.pod:4942
13873 msgid "guestfs_part_del"
13874 msgstr ""
13875
13876 #. type: verbatim
13877 #: ../src/guestfs-actions.pod:4944
13878 #, no-wrap
13879 msgid ""
13880 " int\n"
13881 " guestfs_part_del (guestfs_h *g,\n"
13882 "                   const char *device,\n"
13883 "                   int partnum);\n"
13884 "\n"
13885 msgstr ""
13886
13887 #. type: textblock
13888 #: ../src/guestfs-actions.pod:4949 ../fish/guestfish-actions.pod:3329
13889 msgid "This command deletes the partition numbered C<partnum> on C<device>."
13890 msgstr ""
13891
13892 #. type: textblock
13893 #: ../src/guestfs-actions.pod:4951 ../fish/guestfish-actions.pod:3331
13894 msgid ""
13895 "Note that in the case of MBR partitioning, deleting an extended partition "
13896 "also deletes any logical partitions it contains."
13897 msgstr ""
13898
13899 #. type: =head2
13900 #: ../src/guestfs-actions.pod:4959
13901 msgid "guestfs_part_disk"
13902 msgstr ""
13903
13904 #. type: verbatim
13905 #: ../src/guestfs-actions.pod:4961
13906 #, no-wrap
13907 msgid ""
13908 " int\n"
13909 " guestfs_part_disk (guestfs_h *g,\n"
13910 "                    const char *device,\n"
13911 "                    const char *parttype);\n"
13912 "\n"
13913 msgstr ""
13914
13915 #. type: textblock
13916 #: ../src/guestfs-actions.pod:4966
13917 msgid ""
13918 "This command is simply a combination of C<guestfs_part_init> followed by "
13919 "C<guestfs_part_add> to create a single primary partition covering the whole "
13920 "disk."
13921 msgstr ""
13922
13923 #. type: textblock
13924 #: ../src/guestfs-actions.pod:4970
13925 msgid ""
13926 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
13927 "possible values are described in C<guestfs_part_init>."
13928 msgstr ""
13929
13930 #. type: =head2
13931 #: ../src/guestfs-actions.pod:4980
13932 msgid "guestfs_part_get_bootable"
13933 msgstr ""
13934
13935 #. type: verbatim
13936 #: ../src/guestfs-actions.pod:4982
13937 #, no-wrap
13938 msgid ""
13939 " int\n"
13940 " guestfs_part_get_bootable (guestfs_h *g,\n"
13941 "                            const char *device,\n"
13942 "                            int partnum);\n"
13943 "\n"
13944 msgstr ""
13945
13946 #. type: textblock
13947 #: ../src/guestfs-actions.pod:4987 ../fish/guestfish-actions.pod:3353
13948 msgid ""
13949 "This command returns true if the partition C<partnum> on C<device> has the "
13950 "bootable flag set."
13951 msgstr ""
13952
13953 #. type: textblock
13954 #: ../src/guestfs-actions.pod:4990
13955 msgid "See also C<guestfs_part_set_bootable>."
13956 msgstr ""
13957
13958 #. type: =head2
13959 #: ../src/guestfs-actions.pod:4996
13960 msgid "guestfs_part_get_mbr_id"
13961 msgstr ""
13962
13963 #. type: verbatim
13964 #: ../src/guestfs-actions.pod:4998
13965 #, no-wrap
13966 msgid ""
13967 " int\n"
13968 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
13969 "                          const char *device,\n"
13970 "                          int partnum);\n"
13971 "\n"
13972 msgstr ""
13973
13974 #. type: textblock
13975 #: ../src/guestfs-actions.pod:5003 ../fish/guestfish-actions.pod:3362
13976 msgid ""
13977 "Returns the MBR type byte (also known as the ID byte) from the numbered "
13978 "partition C<partnum>."
13979 msgstr ""
13980
13981 #. type: textblock
13982 #: ../src/guestfs-actions.pod:5006 ../src/guestfs-actions.pod:5182
13983 msgid ""
13984 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
13985 "undefined results for other partition table types (see "
13986 "C<guestfs_part_get_parttype>)."
13987 msgstr ""
13988
13989 #. type: =head2
13990 #: ../src/guestfs-actions.pod:5014
13991 msgid "guestfs_part_get_parttype"
13992 msgstr ""
13993
13994 #. type: verbatim
13995 #: ../src/guestfs-actions.pod:5016
13996 #, no-wrap
13997 msgid ""
13998 " char *\n"
13999 " guestfs_part_get_parttype (guestfs_h *g,\n"
14000 "                            const char *device);\n"
14001 "\n"
14002 msgstr ""
14003
14004 #. type: textblock
14005 #: ../src/guestfs-actions.pod:5020 ../fish/guestfish-actions.pod:3373
14006 msgid ""
14007 "This command examines the partition table on C<device> and returns the "
14008 "partition table type (format) being used."
14009 msgstr ""
14010
14011 #. type: textblock
14012 #: ../src/guestfs-actions.pod:5023
14013 msgid ""
14014 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
14015 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
14016 "possible, although unusual.  See C<guestfs_part_init> for a full list."
14017 msgstr ""
14018
14019 #. type: =head2
14020 #: ../src/guestfs-actions.pod:5033
14021 msgid "guestfs_part_init"
14022 msgstr ""
14023
14024 #. type: verbatim
14025 #: ../src/guestfs-actions.pod:5035
14026 #, no-wrap
14027 msgid ""
14028 " int\n"
14029 " guestfs_part_init (guestfs_h *g,\n"
14030 "                    const char *device,\n"
14031 "                    const char *parttype);\n"
14032 "\n"
14033 msgstr ""
14034
14035 #. type: textblock
14036 #: ../src/guestfs-actions.pod:5040 ../fish/guestfish-actions.pod:3385
14037 msgid ""
14038 "This creates an empty partition table on C<device> of one of the partition "
14039 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
14040 "(for large disks)."
14041 msgstr ""
14042
14043 #. type: textblock
14044 #: ../src/guestfs-actions.pod:5044
14045 msgid ""
14046 "Initially there are no partitions.  Following this, you should call "
14047 "C<guestfs_part_add> for each partition required."
14048 msgstr ""
14049
14050 #. type: textblock
14051 #: ../src/guestfs-actions.pod:5047 ../fish/guestfish-actions.pod:3392
14052 msgid "Possible values for C<parttype> are:"
14053 msgstr ""
14054
14055 #. type: =item
14056 #: ../src/guestfs-actions.pod:5051 ../fish/guestfish-actions.pod:3396
14057 msgid "B<efi> | B<gpt>"
14058 msgstr ""
14059
14060 #. type: textblock
14061 #: ../src/guestfs-actions.pod:5053 ../fish/guestfish-actions.pod:3398
14062 msgid "Intel EFI / GPT partition table."
14063 msgstr ""
14064
14065 #. type: textblock
14066 #: ../src/guestfs-actions.pod:5055 ../fish/guestfish-actions.pod:3400
14067 msgid ""
14068 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
14069 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
14070 "the C<mbr> format."
14071 msgstr ""
14072
14073 #. type: =item
14074 #: ../src/guestfs-actions.pod:5059 ../fish/guestfish-actions.pod:3404
14075 msgid "B<mbr> | B<msdos>"
14076 msgstr ""
14077
14078 #. type: textblock
14079 #: ../src/guestfs-actions.pod:5061 ../fish/guestfish-actions.pod:3406
14080 msgid ""
14081 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
14082 "Windows.  This partition type will B<only> work for device sizes up to 2 "
14083 "TB.  For large disks we recommend using C<gpt>."
14084 msgstr ""
14085
14086 #. type: textblock
14087 #: ../src/guestfs-actions.pod:5068 ../fish/guestfish-actions.pod:3413
14088 msgid "Other partition table types that may work but are not supported include:"
14089 msgstr ""
14090
14091 #. type: =item
14092 #: ../src/guestfs-actions.pod:5073 ../fish/guestfish-actions.pod:3418
14093 msgid "B<aix>"
14094 msgstr ""
14095
14096 #. type: textblock
14097 #: ../src/guestfs-actions.pod:5075 ../fish/guestfish-actions.pod:3420
14098 msgid "AIX disk labels."
14099 msgstr ""
14100
14101 #. type: =item
14102 #: ../src/guestfs-actions.pod:5077 ../fish/guestfish-actions.pod:3422
14103 msgid "B<amiga> | B<rdb>"
14104 msgstr ""
14105
14106 #. type: textblock
14107 #: ../src/guestfs-actions.pod:5079 ../fish/guestfish-actions.pod:3424
14108 msgid "Amiga \"Rigid Disk Block\" format."
14109 msgstr ""
14110
14111 #. type: =item
14112 #: ../src/guestfs-actions.pod:5081 ../fish/guestfish-actions.pod:3426
14113 msgid "B<bsd>"
14114 msgstr ""
14115
14116 #. type: textblock
14117 #: ../src/guestfs-actions.pod:5083 ../fish/guestfish-actions.pod:3428
14118 msgid "BSD disk labels."
14119 msgstr ""
14120
14121 #. type: =item
14122 #: ../src/guestfs-actions.pod:5085 ../fish/guestfish-actions.pod:3430
14123 msgid "B<dasd>"
14124 msgstr ""
14125
14126 #. type: textblock
14127 #: ../src/guestfs-actions.pod:5087 ../fish/guestfish-actions.pod:3432
14128 msgid "DASD, used on IBM mainframes."
14129 msgstr ""
14130
14131 #. type: =item
14132 #: ../src/guestfs-actions.pod:5089 ../fish/guestfish-actions.pod:3434
14133 msgid "B<dvh>"
14134 msgstr ""
14135
14136 #. type: textblock
14137 #: ../src/guestfs-actions.pod:5091 ../fish/guestfish-actions.pod:3436
14138 msgid "MIPS/SGI volumes."
14139 msgstr ""
14140
14141 #. type: =item
14142 #: ../src/guestfs-actions.pod:5093 ../fish/guestfish-actions.pod:3438
14143 msgid "B<mac>"
14144 msgstr ""
14145
14146 #. type: textblock
14147 #: ../src/guestfs-actions.pod:5095 ../fish/guestfish-actions.pod:3440
14148 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
14149 msgstr ""
14150
14151 #. type: =item
14152 #: ../src/guestfs-actions.pod:5097 ../fish/guestfish-actions.pod:3442
14153 msgid "B<pc98>"
14154 msgstr ""
14155
14156 #. type: textblock
14157 #: ../src/guestfs-actions.pod:5099 ../fish/guestfish-actions.pod:3444
14158 msgid "NEC PC-98 format, common in Japan apparently."
14159 msgstr ""
14160
14161 #. type: =item
14162 #: ../src/guestfs-actions.pod:5101 ../fish/guestfish-actions.pod:3446
14163 msgid "B<sun>"
14164 msgstr ""
14165
14166 #. type: textblock
14167 #: ../src/guestfs-actions.pod:5103 ../fish/guestfish-actions.pod:3448
14168 msgid "Sun disk labels."
14169 msgstr ""
14170
14171 #. type: =head2
14172 #: ../src/guestfs-actions.pod:5111
14173 msgid "guestfs_part_list"
14174 msgstr ""
14175
14176 #. type: verbatim
14177 #: ../src/guestfs-actions.pod:5113
14178 #, no-wrap
14179 msgid ""
14180 " struct guestfs_partition_list *\n"
14181 " guestfs_part_list (guestfs_h *g,\n"
14182 "                    const char *device);\n"
14183 "\n"
14184 msgstr ""
14185
14186 #. type: textblock
14187 #: ../src/guestfs-actions.pod:5117 ../fish/guestfish-actions.pod:3456
14188 msgid ""
14189 "This command parses the partition table on C<device> and returns the list of "
14190 "partitions found."
14191 msgstr ""
14192
14193 #. type: textblock
14194 #: ../src/guestfs-actions.pod:5120 ../fish/guestfish-actions.pod:3459
14195 msgid "The fields in the returned structure are:"
14196 msgstr ""
14197
14198 #. type: =item
14199 #: ../src/guestfs-actions.pod:5124 ../fish/guestfish-actions.pod:3463
14200 msgid "B<part_num>"
14201 msgstr ""
14202
14203 #. type: textblock
14204 #: ../src/guestfs-actions.pod:5126 ../fish/guestfish-actions.pod:3465
14205 msgid "Partition number, counting from 1."
14206 msgstr ""
14207
14208 #. type: =item
14209 #: ../src/guestfs-actions.pod:5128 ../fish/guestfish-actions.pod:3467
14210 msgid "B<part_start>"
14211 msgstr ""
14212
14213 #. type: textblock
14214 #: ../src/guestfs-actions.pod:5130
14215 msgid ""
14216 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
14217 "the device's sector size, see C<guestfs_blockdev_getss>."
14218 msgstr ""
14219
14220 #. type: =item
14221 #: ../src/guestfs-actions.pod:5133 ../fish/guestfish-actions.pod:3472
14222 msgid "B<part_end>"
14223 msgstr ""
14224
14225 #. type: textblock
14226 #: ../src/guestfs-actions.pod:5135 ../fish/guestfish-actions.pod:3474
14227 msgid "End of the partition in bytes."
14228 msgstr ""
14229
14230 #. type: =item
14231 #: ../src/guestfs-actions.pod:5137 ../fish/guestfish-actions.pod:3476
14232 msgid "B<part_size>"
14233 msgstr ""
14234
14235 #. type: textblock
14236 #: ../src/guestfs-actions.pod:5139 ../fish/guestfish-actions.pod:3478
14237 msgid "Size of the partition in bytes."
14238 msgstr ""
14239
14240 #. type: textblock
14241 #: ../src/guestfs-actions.pod:5143
14242 msgid ""
14243 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
14244 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
14245 "use>."
14246 msgstr ""
14247
14248 #. type: =head2
14249 #: ../src/guestfs-actions.pod:5149
14250 msgid "guestfs_part_set_bootable"
14251 msgstr ""
14252
14253 #. type: verbatim
14254 #: ../src/guestfs-actions.pod:5151
14255 #, no-wrap
14256 msgid ""
14257 " int\n"
14258 " guestfs_part_set_bootable (guestfs_h *g,\n"
14259 "                            const char *device,\n"
14260 "                            int partnum,\n"
14261 "                            int bootable);\n"
14262 "\n"
14263 msgstr ""
14264
14265 #. type: textblock
14266 #: ../src/guestfs-actions.pod:5157 ../fish/guestfish-actions.pod:3486
14267 msgid ""
14268 "This sets the bootable flag on partition numbered C<partnum> on device "
14269 "C<device>.  Note that partitions are numbered from 1."
14270 msgstr ""
14271
14272 #. type: textblock
14273 #: ../src/guestfs-actions.pod:5160 ../fish/guestfish-actions.pod:3489
14274 msgid ""
14275 "The bootable flag is used by some operating systems (notably Windows) to "
14276 "determine which partition to boot from.  It is by no means universally "
14277 "recognized."
14278 msgstr ""
14279
14280 #. type: =head2
14281 #: ../src/guestfs-actions.pod:5168
14282 msgid "guestfs_part_set_mbr_id"
14283 msgstr ""
14284
14285 #. type: verbatim
14286 #: ../src/guestfs-actions.pod:5170
14287 #, no-wrap
14288 msgid ""
14289 " int\n"
14290 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
14291 "                          const char *device,\n"
14292 "                          int partnum,\n"
14293 "                          int idbyte);\n"
14294 "\n"
14295 msgstr ""
14296
14297 #. type: textblock
14298 #: ../src/guestfs-actions.pod:5176 ../fish/guestfish-actions.pod:3497
14299 msgid ""
14300 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
14301 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
14302 "documentation are in fact hexadecimal numbers, but usually documented "
14303 "without any leading \"0x\" which might be confusing."
14304 msgstr ""
14305
14306 #. type: =head2
14307 #: ../src/guestfs-actions.pod:5190
14308 msgid "guestfs_part_set_name"
14309 msgstr ""
14310
14311 #. type: verbatim
14312 #: ../src/guestfs-actions.pod:5192
14313 #, no-wrap
14314 msgid ""
14315 " int\n"
14316 " guestfs_part_set_name (guestfs_h *g,\n"
14317 "                        const char *device,\n"
14318 "                        int partnum,\n"
14319 "                        const char *name);\n"
14320 "\n"
14321 msgstr ""
14322
14323 #. type: textblock
14324 #: ../src/guestfs-actions.pod:5198 ../fish/guestfish-actions.pod:3511
14325 msgid ""
14326 "This sets the partition name on partition numbered C<partnum> on device "
14327 "C<device>.  Note that partitions are numbered from 1."
14328 msgstr ""
14329
14330 #. type: textblock
14331 #: ../src/guestfs-actions.pod:5201 ../fish/guestfish-actions.pod:3514
14332 msgid ""
14333 "The partition name can only be set on certain types of partition table.  "
14334 "This works on C<gpt> but not on C<mbr> partitions."
14335 msgstr ""
14336
14337 #. type: =head2
14338 #: ../src/guestfs-actions.pod:5208
14339 msgid "guestfs_part_to_dev"
14340 msgstr ""
14341
14342 #. type: verbatim
14343 #: ../src/guestfs-actions.pod:5210
14344 #, no-wrap
14345 msgid ""
14346 " char *\n"
14347 " guestfs_part_to_dev (guestfs_h *g,\n"
14348 "                      const char *partition);\n"
14349 "\n"
14350 msgstr ""
14351
14352 #. type: textblock
14353 #: ../src/guestfs-actions.pod:5214 ../fish/guestfish-actions.pod:3521
14354 msgid ""
14355 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
14356 "partition number, returning the device name (eg. \"/dev/sdb\")."
14357 msgstr ""
14358
14359 #. type: textblock
14360 #: ../src/guestfs-actions.pod:5218
14361 msgid ""
14362 "The named partition must exist, for example as a string returned from "
14363 "C<guestfs_list_partitions>."
14364 msgstr ""
14365
14366 #. type: =head2
14367 #: ../src/guestfs-actions.pod:5226
14368 msgid "guestfs_ping_daemon"
14369 msgstr ""
14370
14371 #. type: verbatim
14372 #: ../src/guestfs-actions.pod:5228
14373 #, no-wrap
14374 msgid ""
14375 " int\n"
14376 " guestfs_ping_daemon (guestfs_h *g);\n"
14377 "\n"
14378 msgstr ""
14379
14380 #. type: textblock
14381 #: ../src/guestfs-actions.pod:5231 ../fish/guestfish-actions.pod:3532
14382 msgid ""
14383 "This is a test probe into the guestfs daemon running inside the qemu "
14384 "subprocess.  Calling this function checks that the daemon responds to the "
14385 "ping message, without affecting the daemon or attached block device(s) in "
14386 "any other way."
14387 msgstr ""
14388
14389 #. type: =head2
14390 #: ../src/guestfs-actions.pod:5240
14391 msgid "guestfs_pread"
14392 msgstr ""
14393
14394 #. type: verbatim
14395 #: ../src/guestfs-actions.pod:5242
14396 #, no-wrap
14397 msgid ""
14398 " char *\n"
14399 " guestfs_pread (guestfs_h *g,\n"
14400 "                const char *path,\n"
14401 "                int count,\n"
14402 "                int64_t offset,\n"
14403 "                size_t *size_r);\n"
14404 "\n"
14405 msgstr ""
14406
14407 #. type: textblock
14408 #: ../src/guestfs-actions.pod:5249 ../fish/guestfish-actions.pod:3541
14409 msgid ""
14410 "This command lets you read part of a file.  It reads C<count> bytes of the "
14411 "file, starting at C<offset>, from file C<path>."
14412 msgstr ""
14413
14414 #. type: textblock
14415 #: ../src/guestfs-actions.pod:5252 ../src/guestfs-actions.pod:5278 ../fish/guestfish-actions.pod:3544 ../fish/guestfish-actions.pod:3559
14416 msgid ""
14417 "This may read fewer bytes than requested.  For further details see the "
14418 "L<pread(2)> system call."
14419 msgstr ""
14420
14421 #. type: textblock
14422 #: ../src/guestfs-actions.pod:5255
14423 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
14424 msgstr ""
14425
14426 #. type: =head2
14427 #: ../src/guestfs-actions.pod:5266
14428 msgid "guestfs_pread_device"
14429 msgstr ""
14430
14431 #. type: verbatim
14432 #: ../src/guestfs-actions.pod:5268
14433 #, no-wrap
14434 msgid ""
14435 " char *\n"
14436 " guestfs_pread_device (guestfs_h *g,\n"
14437 "                       const char *device,\n"
14438 "                       int count,\n"
14439 "                       int64_t offset,\n"
14440 "                       size_t *size_r);\n"
14441 "\n"
14442 msgstr ""
14443
14444 #. type: textblock
14445 #: ../src/guestfs-actions.pod:5275 ../fish/guestfish-actions.pod:3556
14446 msgid ""
14447 "This command lets you read part of a file.  It reads C<count> bytes of "
14448 "C<device>, starting at C<offset>."
14449 msgstr ""
14450
14451 #. type: textblock
14452 #: ../src/guestfs-actions.pod:5281
14453 msgid "See also C<guestfs_pread>."
14454 msgstr ""
14455
14456 #. type: textblock
14457 #: ../src/guestfs-actions.pod:5290
14458 msgid "(Added in 1.5.21)"
14459 msgstr ""
14460
14461 #. type: =head2
14462 #: ../src/guestfs-actions.pod:5292
14463 msgid "guestfs_pvcreate"
14464 msgstr ""
14465
14466 #. type: verbatim
14467 #: ../src/guestfs-actions.pod:5294
14468 #, no-wrap
14469 msgid ""
14470 " int\n"
14471 " guestfs_pvcreate (guestfs_h *g,\n"
14472 "                   const char *device);\n"
14473 "\n"
14474 msgstr ""
14475
14476 #. type: textblock
14477 #: ../src/guestfs-actions.pod:5298 ../fish/guestfish-actions.pod:3571
14478 msgid ""
14479 "This creates an LVM physical volume on the named C<device>, where C<device> "
14480 "should usually be a partition name such as C</dev/sda1>."
14481 msgstr ""
14482
14483 #. type: =head2
14484 #: ../src/guestfs-actions.pod:5306
14485 msgid "guestfs_pvremove"
14486 msgstr ""
14487
14488 #. type: verbatim
14489 #: ../src/guestfs-actions.pod:5308
14490 #, no-wrap
14491 msgid ""
14492 " int\n"
14493 " guestfs_pvremove (guestfs_h *g,\n"
14494 "                   const char *device);\n"
14495 "\n"
14496 msgstr ""
14497
14498 #. type: textblock
14499 #: ../src/guestfs-actions.pod:5312 ../fish/guestfish-actions.pod:3579
14500 msgid ""
14501 "This wipes a physical volume C<device> so that LVM will no longer recognise "
14502 "it."
14503 msgstr ""
14504
14505 #. type: textblock
14506 #: ../src/guestfs-actions.pod:5315 ../fish/guestfish-actions.pod:3582
14507 msgid ""
14508 "The implementation uses the C<pvremove> command which refuses to wipe "
14509 "physical volumes that contain any volume groups, so you have to remove those "
14510 "first."
14511 msgstr ""
14512
14513 #. type: =head2
14514 #: ../src/guestfs-actions.pod:5323
14515 msgid "guestfs_pvresize"
14516 msgstr ""
14517
14518 #. type: verbatim
14519 #: ../src/guestfs-actions.pod:5325
14520 #, no-wrap
14521 msgid ""
14522 " int\n"
14523 " guestfs_pvresize (guestfs_h *g,\n"
14524 "                   const char *device);\n"
14525 "\n"
14526 msgstr ""
14527
14528 #. type: textblock
14529 #: ../src/guestfs-actions.pod:5329 ../fish/guestfish-actions.pod:3590
14530 msgid ""
14531 "This resizes (expands or shrinks) an existing LVM physical volume to match "
14532 "the new size of the underlying device."
14533 msgstr ""
14534
14535 #. type: =head2
14536 #: ../src/guestfs-actions.pod:5336
14537 msgid "guestfs_pvresize_size"
14538 msgstr ""
14539
14540 #. type: verbatim
14541 #: ../src/guestfs-actions.pod:5338
14542 #, no-wrap
14543 msgid ""
14544 " int\n"
14545 " guestfs_pvresize_size (guestfs_h *g,\n"
14546 "                        const char *device,\n"
14547 "                        int64_t size);\n"
14548 "\n"
14549 msgstr ""
14550
14551 #. type: textblock
14552 #: ../src/guestfs-actions.pod:5343
14553 msgid ""
14554 "This command is the same as C<guestfs_pvresize> except that it allows you to "
14555 "specify the new size (in bytes) explicitly."
14556 msgstr ""
14557
14558 #. type: =head2
14559 #: ../src/guestfs-actions.pod:5350
14560 msgid "guestfs_pvs"
14561 msgstr ""
14562
14563 #. type: verbatim
14564 #: ../src/guestfs-actions.pod:5352
14565 #, no-wrap
14566 msgid ""
14567 " char **\n"
14568 " guestfs_pvs (guestfs_h *g);\n"
14569 "\n"
14570 msgstr ""
14571
14572 #. type: textblock
14573 #: ../src/guestfs-actions.pod:5355 ../fish/guestfish-actions.pod:3604
14574 msgid ""
14575 "List all the physical volumes detected.  This is the equivalent of the "
14576 "L<pvs(8)> command."
14577 msgstr ""
14578
14579 #. type: textblock
14580 #: ../src/guestfs-actions.pod:5358 ../fish/guestfish-actions.pod:3607
14581 msgid ""
14582 "This returns a list of just the device names that contain PVs "
14583 "(eg. C</dev/sda2>)."
14584 msgstr ""
14585
14586 #. type: textblock
14587 #: ../src/guestfs-actions.pod:5361
14588 msgid "See also C<guestfs_pvs_full>."
14589 msgstr ""
14590
14591 #. type: =head2
14592 #: ../src/guestfs-actions.pod:5369
14593 msgid "guestfs_pvs_full"
14594 msgstr ""
14595
14596 #. type: verbatim
14597 #: ../src/guestfs-actions.pod:5371
14598 #, no-wrap
14599 msgid ""
14600 " struct guestfs_lvm_pv_list *\n"
14601 " guestfs_pvs_full (guestfs_h *g);\n"
14602 "\n"
14603 msgstr ""
14604
14605 #. type: textblock
14606 #: ../src/guestfs-actions.pod:5374 ../fish/guestfish-actions.pod:3616
14607 msgid ""
14608 "List all the physical volumes detected.  This is the equivalent of the "
14609 "L<pvs(8)> command.  The \"full\" version includes all fields."
14610 msgstr ""
14611
14612 #. type: textblock
14613 #: ../src/guestfs-actions.pod:5377
14614 msgid ""
14615 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
14616 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after "
14617 "use>."
14618 msgstr ""
14619
14620 #. type: =head2
14621 #: ../src/guestfs-actions.pod:5383
14622 msgid "guestfs_pvuuid"
14623 msgstr ""
14624
14625 #. type: verbatim
14626 #: ../src/guestfs-actions.pod:5385
14627 #, no-wrap
14628 msgid ""
14629 " char *\n"
14630 " guestfs_pvuuid (guestfs_h *g,\n"
14631 "                 const char *device);\n"
14632 "\n"
14633 msgstr ""
14634
14635 #. type: textblock
14636 #: ../src/guestfs-actions.pod:5389 ../fish/guestfish-actions.pod:3623
14637 msgid "This command returns the UUID of the LVM PV C<device>."
14638 msgstr ""
14639
14640 #. type: =head2
14641 #: ../src/guestfs-actions.pod:5396
14642 msgid "guestfs_pwrite"
14643 msgstr ""
14644
14645 #. type: verbatim
14646 #: ../src/guestfs-actions.pod:5398
14647 #, no-wrap
14648 msgid ""
14649 " int\n"
14650 " guestfs_pwrite (guestfs_h *g,\n"
14651 "                 const char *path,\n"
14652 "                 const char *content,\n"
14653 "                 size_t content_size,\n"
14654 "                 int64_t offset);\n"
14655 "\n"
14656 msgstr ""
14657
14658 #. type: textblock
14659 #: ../src/guestfs-actions.pod:5405 ../fish/guestfish-actions.pod:3629
14660 msgid ""
14661 "This command writes to part of a file.  It writes the data buffer C<content> "
14662 "to the file C<path> starting at offset C<offset>."
14663 msgstr ""
14664
14665 #. type: textblock
14666 #: ../src/guestfs-actions.pod:5408 ../fish/guestfish-actions.pod:3632
14667 msgid ""
14668 "This command implements the L<pwrite(2)> system call, and like that system "
14669 "call it may not write the full data requested.  The return value is the "
14670 "number of bytes that were actually written to the file.  This could even be "
14671 "0, although short writes are unlikely for regular files in ordinary "
14672 "circumstances."
14673 msgstr ""
14674
14675 #. type: textblock
14676 #: ../src/guestfs-actions.pod:5414
14677 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
14678 msgstr ""
14679
14680 #. type: =head2
14681 #: ../src/guestfs-actions.pod:5423
14682 msgid "guestfs_pwrite_device"
14683 msgstr ""
14684
14685 #. type: verbatim
14686 #: ../src/guestfs-actions.pod:5425
14687 #, no-wrap
14688 msgid ""
14689 " int\n"
14690 " guestfs_pwrite_device (guestfs_h *g,\n"
14691 "                        const char *device,\n"
14692 "                        const char *content,\n"
14693 "                        size_t content_size,\n"
14694 "                        int64_t offset);\n"
14695 "\n"
14696 msgstr ""
14697
14698 #. type: textblock
14699 #: ../src/guestfs-actions.pod:5432 ../fish/guestfish-actions.pod:3647
14700 msgid ""
14701 "This command writes to part of a device.  It writes the data buffer "
14702 "C<content> to C<device> starting at offset C<offset>."
14703 msgstr ""
14704
14705 #. type: textblock
14706 #: ../src/guestfs-actions.pod:5435 ../fish/guestfish-actions.pod:3650
14707 msgid ""
14708 "This command implements the L<pwrite(2)> system call, and like that system "
14709 "call it may not write the full data requested (although short writes to disk "
14710 "devices and partitions are probably impossible with standard Linux kernels)."
14711 msgstr ""
14712
14713 #. type: textblock
14714 #: ../src/guestfs-actions.pod:5440
14715 msgid "See also C<guestfs_pwrite>."
14716 msgstr ""
14717
14718 #. type: textblock
14719 #: ../src/guestfs-actions.pod:5447
14720 msgid "(Added in 1.5.20)"
14721 msgstr ""
14722
14723 #. type: =head2
14724 #: ../src/guestfs-actions.pod:5449
14725 msgid "guestfs_read_file"
14726 msgstr ""
14727
14728 #. type: verbatim
14729 #: ../src/guestfs-actions.pod:5451
14730 #, no-wrap
14731 msgid ""
14732 " char *\n"
14733 " guestfs_read_file (guestfs_h *g,\n"
14734 "                    const char *path,\n"
14735 "                    size_t *size_r);\n"
14736 "\n"
14737 msgstr ""
14738
14739 #. type: textblock
14740 #: ../src/guestfs-actions.pod:5456 ../fish/guestfish-actions.pod:3664
14741 msgid "This calls returns the contents of the file C<path> as a buffer."
14742 msgstr ""
14743
14744 #. type: textblock
14745 #: ../src/guestfs-actions.pod:5459
14746 msgid ""
14747 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
14748 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
14749 "function is limited in the total size of file that can be handled."
14750 msgstr ""
14751
14752 #. type: textblock
14753 #: ../src/guestfs-actions.pod:5471
14754 msgid "(Added in 1.0.63)"
14755 msgstr ""
14756
14757 #. type: =head2
14758 #: ../src/guestfs-actions.pod:5473
14759 msgid "guestfs_read_lines"
14760 msgstr ""
14761
14762 #. type: verbatim
14763 #: ../src/guestfs-actions.pod:5475
14764 #, no-wrap
14765 msgid ""
14766 " char **\n"
14767 " guestfs_read_lines (guestfs_h *g,\n"
14768 "                     const char *path);\n"
14769 "\n"
14770 msgstr ""
14771
14772 #. type: textblock
14773 #: ../src/guestfs-actions.pod:5481 ../fish/guestfish-actions.pod:3681
14774 msgid ""
14775 "The file contents are returned as a list of lines.  Trailing C<LF> and "
14776 "C<CRLF> character sequences are I<not> returned."
14777 msgstr ""
14778
14779 #. type: textblock
14780 #: ../src/guestfs-actions.pod:5484
14781 msgid ""
14782 "Note that this function cannot correctly handle binary files (specifically, "
14783 "files containing C<\\0> character which is treated as end of line).  For "
14784 "those you need to use the C<guestfs_read_file> function which has a more "
14785 "complex interface."
14786 msgstr ""
14787
14788 #. type: =head2
14789 #: ../src/guestfs-actions.pod:5495
14790 msgid "guestfs_readdir"
14791 msgstr ""
14792
14793 #. type: verbatim
14794 #: ../src/guestfs-actions.pod:5497
14795 #, no-wrap
14796 msgid ""
14797 " struct guestfs_dirent_list *\n"
14798 " guestfs_readdir (guestfs_h *g,\n"
14799 "                  const char *dir);\n"
14800 "\n"
14801 msgstr ""
14802
14803 #. type: textblock
14804 #: ../src/guestfs-actions.pod:5501 ../fish/guestfish-actions.pod:3693
14805 msgid "This returns the list of directory entries in directory C<dir>."
14806 msgstr ""
14807
14808 #. type: textblock
14809 #: ../src/guestfs-actions.pod:5503 ../fish/guestfish-actions.pod:3695
14810 msgid ""
14811 "All entries in the directory are returned, including C<.> and C<..>.  The "
14812 "entries are I<not> sorted, but returned in the same order as the underlying "
14813 "filesystem."
14814 msgstr ""
14815
14816 #. type: textblock
14817 #: ../src/guestfs-actions.pod:5507 ../fish/guestfish-actions.pod:3699
14818 msgid ""
14819 "Also this call returns basic file type information about each file.  The "
14820 "C<ftyp> field will contain one of the following characters:"
14821 msgstr ""
14822
14823 #. type: =item
14824 #: ../src/guestfs-actions.pod:5512 ../fish/guestfish-actions.pod:3704
14825 msgid "'b'"
14826 msgstr ""
14827
14828 #. type: textblock
14829 #: ../src/guestfs-actions.pod:5514 ../fish/guestfish-actions.pod:3706
14830 msgid "Block special"
14831 msgstr ""
14832
14833 #. type: =item
14834 #: ../src/guestfs-actions.pod:5516 ../fish/guestfish-actions.pod:3708
14835 msgid "'c'"
14836 msgstr ""
14837
14838 #. type: textblock
14839 #: ../src/guestfs-actions.pod:5518 ../fish/guestfish-actions.pod:3710
14840 msgid "Char special"
14841 msgstr ""
14842
14843 #. type: =item
14844 #: ../src/guestfs-actions.pod:5520 ../fish/guestfish-actions.pod:3712
14845 msgid "'d'"
14846 msgstr ""
14847
14848 #. type: textblock
14849 #: ../src/guestfs-actions.pod:5522 ../fish/guestfish-actions.pod:3714
14850 msgid "Directory"
14851 msgstr ""
14852
14853 #. type: =item
14854 #: ../src/guestfs-actions.pod:5524 ../fish/guestfish-actions.pod:3716
14855 msgid "'f'"
14856 msgstr ""
14857
14858 #. type: textblock
14859 #: ../src/guestfs-actions.pod:5526 ../fish/guestfish-actions.pod:3718
14860 msgid "FIFO (named pipe)"
14861 msgstr ""
14862
14863 #. type: =item
14864 #: ../src/guestfs-actions.pod:5528 ../fish/guestfish-actions.pod:3720
14865 msgid "'l'"
14866 msgstr ""
14867
14868 #. type: textblock
14869 #: ../src/guestfs-actions.pod:5530 ../fish/guestfish-actions.pod:3722
14870 msgid "Symbolic link"
14871 msgstr ""
14872
14873 #. type: =item
14874 #: ../src/guestfs-actions.pod:5532 ../fish/guestfish-actions.pod:3724
14875 msgid "'r'"
14876 msgstr ""
14877
14878 #. type: textblock
14879 #: ../src/guestfs-actions.pod:5534 ../fish/guestfish-actions.pod:3726
14880 msgid "Regular file"
14881 msgstr ""
14882
14883 #. type: =item
14884 #: ../src/guestfs-actions.pod:5536 ../fish/guestfish-actions.pod:3728
14885 msgid "'s'"
14886 msgstr ""
14887
14888 #. type: textblock
14889 #: ../src/guestfs-actions.pod:5538 ../fish/guestfish-actions.pod:3730
14890 msgid "Socket"
14891 msgstr ""
14892
14893 #. type: =item
14894 #: ../src/guestfs-actions.pod:5540 ../fish/guestfish-actions.pod:3732
14895 msgid "'u'"
14896 msgstr ""
14897
14898 #. type: textblock
14899 #: ../src/guestfs-actions.pod:5542 ../fish/guestfish-actions.pod:3734
14900 msgid "Unknown file type"
14901 msgstr ""
14902
14903 #. type: =item
14904 #: ../src/guestfs-actions.pod:5544 ../fish/guestfish-actions.pod:3736
14905 msgid "'?'"
14906 msgstr ""
14907
14908 #. type: textblock
14909 #: ../src/guestfs-actions.pod:5546 ../fish/guestfish-actions.pod:3738
14910 msgid "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
14911 msgstr ""
14912
14913 #. type: textblock
14914 #: ../src/guestfs-actions.pod:5551
14915 msgid ""
14916 "This function is primarily intended for use by programs.  To get a simple "
14917 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
14918 "consumption, use C<guestfs_ll>."
14919 msgstr ""
14920
14921 #. type: textblock
14922 #: ../src/guestfs-actions.pod:5555
14923 msgid ""
14924 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
14925 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after "
14926 "use>."
14927 msgstr ""
14928
14929 #. type: =head2
14930 #: ../src/guestfs-actions.pod:5561
14931 msgid "guestfs_readlink"
14932 msgstr ""
14933
14934 #. type: verbatim
14935 #: ../src/guestfs-actions.pod:5563
14936 #, no-wrap
14937 msgid ""
14938 " char *\n"
14939 " guestfs_readlink (guestfs_h *g,\n"
14940 "                   const char *path);\n"
14941 "\n"
14942 msgstr ""
14943
14944 #. type: textblock
14945 #: ../src/guestfs-actions.pod:5567 ../fish/guestfish-actions.pod:3751
14946 msgid "This command reads the target of a symbolic link."
14947 msgstr ""
14948
14949 #. type: =head2
14950 #: ../src/guestfs-actions.pod:5574
14951 msgid "guestfs_readlinklist"
14952 msgstr ""
14953
14954 #. type: verbatim
14955 #: ../src/guestfs-actions.pod:5576
14956 #, no-wrap
14957 msgid ""
14958 " char **\n"
14959 " guestfs_readlinklist (guestfs_h *g,\n"
14960 "                       const char *path,\n"
14961 "                       char *const *names);\n"
14962 "\n"
14963 msgstr ""
14964
14965 #. type: textblock
14966 #: ../src/guestfs-actions.pod:5581 ../fish/guestfish-actions.pod:3757
14967 msgid ""
14968 "This call allows you to do a C<readlink> operation on multiple files, where "
14969 "all files are in the directory C<path>.  C<names> is the list of files from "
14970 "this directory."
14971 msgstr ""
14972
14973 #. type: textblock
14974 #: ../src/guestfs-actions.pod:5585 ../fish/guestfish-actions.pod:3761
14975 msgid ""
14976 "On return you get a list of strings, with a one-to-one correspondence to the "
14977 "C<names> list.  Each string is the value of the symbolic link."
14978 msgstr ""
14979
14980 #. type: textblock
14981 #: ../src/guestfs-actions.pod:5589 ../fish/guestfish-actions.pod:3765
14982 msgid ""
14983 "If the C<readlink(2)> operation fails on any name, then the corresponding "
14984 "result string is the empty string C<\"\">.  However the whole operation is "
14985 "completed even if there were C<readlink(2)> errors, and so you can call this "
14986 "function with names where you don't know if they are symbolic links already "
14987 "(albeit slightly less efficient)."
14988 msgstr ""
14989
14990 #. type: textblock
14991 #: ../src/guestfs-actions.pod:5596 ../fish/guestfish-actions.pod:3772
14992 msgid ""
14993 "This call is intended for programs that want to efficiently list a directory "
14994 "contents without making many round-trips.  Very long directory listings "
14995 "might cause the protocol message size to be exceeded, causing this call to "
14996 "fail.  The caller must split up such requests into smaller groups of names."
14997 msgstr ""
14998
14999 #. type: =head2
15000 #: ../src/guestfs-actions.pod:5609
15001 msgid "guestfs_realpath"
15002 msgstr ""
15003
15004 #. type: verbatim
15005 #: ../src/guestfs-actions.pod:5611
15006 #, no-wrap
15007 msgid ""
15008 " char *\n"
15009 " guestfs_realpath (guestfs_h *g,\n"
15010 "                   const char *path);\n"
15011 "\n"
15012 msgstr ""
15013
15014 #. type: textblock
15015 #: ../src/guestfs-actions.pod:5615 ../fish/guestfish-actions.pod:3783
15016 msgid ""
15017 "Return the canonicalized absolute pathname of C<path>.  The returned path "
15018 "has no C<.>, C<..> or symbolic link path elements."
15019 msgstr ""
15020
15021 #. type: =head2
15022 #: ../src/guestfs-actions.pod:5623
15023 msgid "guestfs_removexattr"
15024 msgstr ""
15025
15026 #. type: verbatim
15027 #: ../src/guestfs-actions.pod:5625
15028 #, no-wrap
15029 msgid ""
15030 " int\n"
15031 " guestfs_removexattr (guestfs_h *g,\n"
15032 "                      const char *xattr,\n"
15033 "                      const char *path);\n"
15034 "\n"
15035 msgstr ""
15036
15037 #. type: textblock
15038 #: ../src/guestfs-actions.pod:5630 ../fish/guestfish-actions.pod:3790
15039 msgid "This call removes the extended attribute named C<xattr> of the file C<path>."
15040 msgstr ""
15041
15042 #. type: textblock
15043 #: ../src/guestfs-actions.pod:5633
15044 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
15045 msgstr ""
15046
15047 #. type: =head2
15048 #: ../src/guestfs-actions.pod:5639
15049 msgid "guestfs_resize2fs"
15050 msgstr ""
15051
15052 #. type: verbatim
15053 #: ../src/guestfs-actions.pod:5641
15054 #, no-wrap
15055 msgid ""
15056 " int\n"
15057 " guestfs_resize2fs (guestfs_h *g,\n"
15058 "                    const char *device);\n"
15059 "\n"
15060 msgstr ""
15061
15062 #. type: textblock
15063 #: ../src/guestfs-actions.pod:5645 ../fish/guestfish-actions.pod:3799
15064 msgid ""
15065 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
15066 "underlying device."
15067 msgstr ""
15068
15069 #. type: textblock
15070 #: ../src/guestfs-actions.pod:5648
15071 msgid ""
15072 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
15073 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
15074 "sometimes gives an error about this and sometimes not.  In any case, it is "
15075 "always safe to call C<guestfs_e2fsck_f> before calling this function."
15076 msgstr ""
15077
15078 #. type: =head2
15079 #: ../src/guestfs-actions.pod:5658
15080 msgid "guestfs_resize2fs_M"
15081 msgstr ""
15082
15083 #. type: verbatim
15084 #: ../src/guestfs-actions.pod:5660
15085 #, no-wrap
15086 msgid ""
15087 " int\n"
15088 " guestfs_resize2fs_M (guestfs_h *g,\n"
15089 "                      const char *device);\n"
15090 "\n"
15091 msgstr ""
15092
15093 #. type: textblock
15094 #: ../src/guestfs-actions.pod:5664
15095 msgid ""
15096 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
15097 "resized to its minimum size.  This works like the I<-M> option to the "
15098 "C<resize2fs> command."
15099 msgstr ""
15100
15101 #. type: textblock
15102 #: ../src/guestfs-actions.pod:5668
15103 msgid ""
15104 "To get the resulting size of the filesystem you should call "
15105 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
15106 "These two numbers, multiplied together, give the resulting size of the "
15107 "minimal filesystem in bytes."
15108 msgstr ""
15109
15110 #. type: =head2
15111 #: ../src/guestfs-actions.pod:5675
15112 msgid "guestfs_resize2fs_size"
15113 msgstr ""
15114
15115 #. type: verbatim
15116 #: ../src/guestfs-actions.pod:5677
15117 #, no-wrap
15118 msgid ""
15119 " int\n"
15120 " guestfs_resize2fs_size (guestfs_h *g,\n"
15121 "                         const char *device,\n"
15122 "                         int64_t size);\n"
15123 "\n"
15124 msgstr ""
15125
15126 #. type: textblock
15127 #: ../src/guestfs-actions.pod:5682
15128 msgid ""
15129 "This command is the same as C<guestfs_resize2fs> except that it allows you "
15130 "to specify the new size (in bytes) explicitly."
15131 msgstr ""
15132
15133 #. type: =head2
15134 #: ../src/guestfs-actions.pod:5689
15135 msgid "guestfs_rm"
15136 msgstr ""
15137
15138 #. type: verbatim
15139 #: ../src/guestfs-actions.pod:5691
15140 #, no-wrap
15141 msgid ""
15142 " int\n"
15143 " guestfs_rm (guestfs_h *g,\n"
15144 "             const char *path);\n"
15145 "\n"
15146 msgstr ""
15147
15148 #. type: textblock
15149 #: ../src/guestfs-actions.pod:5695 ../fish/guestfish-actions.pod:3832
15150 msgid "Remove the single file C<path>."
15151 msgstr ""
15152
15153 #. type: =head2
15154 #: ../src/guestfs-actions.pod:5701
15155 msgid "guestfs_rm_rf"
15156 msgstr ""
15157
15158 #. type: verbatim
15159 #: ../src/guestfs-actions.pod:5703
15160 #, no-wrap
15161 msgid ""
15162 " int\n"
15163 " guestfs_rm_rf (guestfs_h *g,\n"
15164 "                const char *path);\n"
15165 "\n"
15166 msgstr ""
15167
15168 #. type: textblock
15169 #: ../src/guestfs-actions.pod:5707 ../fish/guestfish-actions.pod:3838
15170 msgid ""
15171 "Remove the file or directory C<path>, recursively removing the contents if "
15172 "its a directory.  This is like the C<rm -rf> shell command."
15173 msgstr ""
15174
15175 #. type: =head2
15176 #: ../src/guestfs-actions.pod:5715
15177 msgid "guestfs_rmdir"
15178 msgstr ""
15179
15180 #. type: verbatim
15181 #: ../src/guestfs-actions.pod:5717
15182 #, no-wrap
15183 msgid ""
15184 " int\n"
15185 " guestfs_rmdir (guestfs_h *g,\n"
15186 "                const char *path);\n"
15187 "\n"
15188 msgstr ""
15189
15190 #. type: textblock
15191 #: ../src/guestfs-actions.pod:5721 ../fish/guestfish-actions.pod:3846
15192 msgid "Remove the single directory C<path>."
15193 msgstr ""
15194
15195 #. type: =head2
15196 #: ../src/guestfs-actions.pod:5727
15197 msgid "guestfs_rmmountpoint"
15198 msgstr ""
15199
15200 #. type: verbatim
15201 #: ../src/guestfs-actions.pod:5729
15202 #, no-wrap
15203 msgid ""
15204 " int\n"
15205 " guestfs_rmmountpoint (guestfs_h *g,\n"
15206 "                       const char *exemptpath);\n"
15207 "\n"
15208 msgstr ""
15209
15210 #. type: textblock
15211 #: ../src/guestfs-actions.pod:5733
15212 msgid ""
15213 "This calls removes a mountpoint that was previously created with "
15214 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
15215 msgstr ""
15216
15217 #. type: =head2
15218 #: ../src/guestfs-actions.pod:5741
15219 msgid "guestfs_scrub_device"
15220 msgstr ""
15221
15222 #. type: verbatim
15223 #: ../src/guestfs-actions.pod:5743
15224 #, no-wrap
15225 msgid ""
15226 " int\n"
15227 " guestfs_scrub_device (guestfs_h *g,\n"
15228 "                       const char *device);\n"
15229 "\n"
15230 msgstr ""
15231
15232 #. type: textblock
15233 #: ../src/guestfs-actions.pod:5747 ../fish/guestfish-actions.pod:3860
15234 msgid ""
15235 "This command writes patterns over C<device> to make data retrieval more "
15236 "difficult."
15237 msgstr ""
15238
15239 #. type: textblock
15240 #: ../src/guestfs-actions.pod:5750 ../src/guestfs-actions.pod:5771 ../src/guestfs-actions.pod:5790 ../fish/guestfish-actions.pod:3863 ../fish/guestfish-actions.pod:3878 ../fish/guestfish-actions.pod:3891
15241 msgid ""
15242 "It is an interface to the L<scrub(1)> program.  See that manual page for "
15243 "more details."
15244 msgstr ""
15245
15246 #. type: textblock
15247 #: ../src/guestfs-actions.pod:5758 ../src/guestfs-actions.pod:5776 ../src/guestfs-actions.pod:5795
15248 msgid "(Added in 1.0.52)"
15249 msgstr ""
15250
15251 #. type: =head2
15252 #: ../src/guestfs-actions.pod:5760
15253 msgid "guestfs_scrub_file"
15254 msgstr ""
15255
15256 #. type: verbatim
15257 #: ../src/guestfs-actions.pod:5762
15258 #, no-wrap
15259 msgid ""
15260 " int\n"
15261 " guestfs_scrub_file (guestfs_h *g,\n"
15262 "                     const char *file);\n"
15263 "\n"
15264 msgstr ""
15265
15266 #. type: textblock
15267 #: ../src/guestfs-actions.pod:5766 ../fish/guestfish-actions.pod:3873
15268 msgid ""
15269 "This command writes patterns over a file to make data retrieval more "
15270 "difficult."
15271 msgstr ""
15272
15273 #. type: textblock
15274 #: ../src/guestfs-actions.pod:5769 ../fish/guestfish-actions.pod:3876
15275 msgid "The file is I<removed> after scrubbing."
15276 msgstr ""
15277
15278 #. type: =head2
15279 #: ../src/guestfs-actions.pod:5778
15280 msgid "guestfs_scrub_freespace"
15281 msgstr ""
15282
15283 #. type: verbatim
15284 #: ../src/guestfs-actions.pod:5780
15285 #, no-wrap
15286 msgid ""
15287 " int\n"
15288 " guestfs_scrub_freespace (guestfs_h *g,\n"
15289 "                          const char *dir);\n"
15290 "\n"
15291 msgstr ""
15292
15293 #. type: textblock
15294 #: ../src/guestfs-actions.pod:5784
15295 msgid ""
15296 "This command creates the directory C<dir> and then fills it with files until "
15297 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
15298 "and deletes them.  The intention is to scrub any free space on the partition "
15299 "containing C<dir>."
15300 msgstr ""
15301
15302 #. type: =head2
15303 #: ../src/guestfs-actions.pod:5797
15304 msgid "guestfs_set_append"
15305 msgstr ""
15306
15307 #. type: verbatim
15308 #: ../src/guestfs-actions.pod:5799
15309 #, no-wrap
15310 msgid ""
15311 " int\n"
15312 " guestfs_set_append (guestfs_h *g,\n"
15313 "                     const char *append);\n"
15314 "\n"
15315 msgstr ""
15316
15317 #. type: textblock
15318 #: ../src/guestfs-actions.pod:5803 ../fish/guestfish-actions.pod:3900
15319 msgid ""
15320 "This function is used to add additional options to the guest kernel command "
15321 "line."
15322 msgstr ""
15323
15324 #. type: textblock
15325 #: ../src/guestfs-actions.pod:5806 ../fish/guestfish-actions.pod:3903
15326 msgid ""
15327 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
15328 "environment variable."
15329 msgstr ""
15330
15331 #. type: textblock
15332 #: ../src/guestfs-actions.pod:5809 ../fish/guestfish-actions.pod:3906
15333 msgid ""
15334 "Setting C<append> to C<NULL> means I<no> additional options are passed "
15335 "(libguestfs always adds a few of its own)."
15336 msgstr ""
15337
15338 #. type: =head2
15339 #: ../src/guestfs-actions.pod:5816
15340 msgid "guestfs_set_attach_method"
15341 msgstr ""
15342
15343 #. type: verbatim
15344 #: ../src/guestfs-actions.pod:5818
15345 #, no-wrap
15346 msgid ""
15347 " int\n"
15348 " guestfs_set_attach_method (guestfs_h *g,\n"
15349 "                            const char *attachmethod);\n"
15350 "\n"
15351 msgstr ""
15352
15353 #. type: textblock
15354 #: ../src/guestfs-actions.pod:5822 ../fish/guestfish-actions.pod:3915
15355 msgid ""
15356 "Set the method that libguestfs uses to connect to the back end guestfsd "
15357 "daemon.  Possible methods are:"
15358 msgstr ""
15359
15360 #. type: textblock
15361 #: ../src/guestfs-actions.pod:5829 ../fish/guestfish-actions.pod:3922
15362 msgid ""
15363 "Launch an appliance and connect to it.  This is the ordinary method and the "
15364 "default."
15365 msgstr ""
15366
15367 #. type: =item
15368 #: ../src/guestfs-actions.pod:5832 ../fish/guestfish-actions.pod:3925
15369 msgid "C<unix:I<path>>"
15370 msgstr ""
15371
15372 #. type: textblock
15373 #: ../src/guestfs-actions.pod:5834 ../fish/guestfish-actions.pod:3927
15374 msgid "Connect to the Unix domain socket I<path>."
15375 msgstr ""
15376
15377 #. type: textblock
15378 #: ../src/guestfs-actions.pod:5836 ../fish/guestfish-actions.pod:3929
15379 msgid ""
15380 "This method lets you connect to an existing daemon or (using virtio-serial) "
15381 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
15382 "RUNNING DAEMONS>."
15383 msgstr ""
15384
15385 #. type: =head2
15386 #: ../src/guestfs-actions.pod:5844
15387 msgid "guestfs_set_autosync"
15388 msgstr ""
15389
15390 #. type: verbatim
15391 #: ../src/guestfs-actions.pod:5846
15392 #, no-wrap
15393 msgid ""
15394 " int\n"
15395 " guestfs_set_autosync (guestfs_h *g,\n"
15396 "                       int autosync);\n"
15397 "\n"
15398 msgstr ""
15399
15400 #. type: textblock
15401 #: ../src/guestfs-actions.pod:5850 ../fish/guestfish-actions.pod:3941
15402 msgid ""
15403 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
15404 "effort attempt to make filesystems consistent and synchronized when the "
15405 "handle is closed (also if the program exits without closing handles)."
15406 msgstr ""
15407
15408 #. type: textblock
15409 #: ../src/guestfs-actions.pod:5855 ../fish/guestfish-actions.pod:3946
15410 msgid ""
15411 "This is enabled by default (since libguestfs 1.5.24, previously it was "
15412 "disabled by default)."
15413 msgstr ""
15414
15415 #. type: =head2
15416 #: ../src/guestfs-actions.pod:5862
15417 msgid "guestfs_set_direct"
15418 msgstr ""
15419
15420 #. type: verbatim
15421 #: ../src/guestfs-actions.pod:5864
15422 #, no-wrap
15423 msgid ""
15424 " int\n"
15425 " guestfs_set_direct (guestfs_h *g,\n"
15426 "                     int direct);\n"
15427 "\n"
15428 msgstr ""
15429
15430 #. type: textblock
15431 #: ../src/guestfs-actions.pod:5868 ../fish/guestfish-actions.pod:3955
15432 msgid ""
15433 "If the direct appliance mode flag is enabled, then stdin and stdout are "
15434 "passed directly through to the appliance once it is launched."
15435 msgstr ""
15436
15437 #. type: textblock
15438 #: ../src/guestfs-actions.pod:5872
15439 msgid ""
15440 "One consequence of this is that log messages aren't caught by the library "
15441 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
15442 "stdout."
15443 msgstr ""
15444
15445 #. type: textblock
15446 #: ../src/guestfs-actions.pod:5876 ../fish/guestfish-actions.pod:3963
15447 msgid "You probably don't want to use this unless you know what you are doing."
15448 msgstr ""
15449
15450 #. type: textblock
15451 #: ../src/guestfs-actions.pod:5879 ../fish/guestfish-actions.pod:3966
15452 msgid "The default is disabled."
15453 msgstr ""
15454
15455 #. type: =head2
15456 #: ../src/guestfs-actions.pod:5885
15457 msgid "guestfs_set_e2label"
15458 msgstr ""
15459
15460 #. type: verbatim
15461 #: ../src/guestfs-actions.pod:5887
15462 #, no-wrap
15463 msgid ""
15464 " int\n"
15465 " guestfs_set_e2label (guestfs_h *g,\n"
15466 "                      const char *device,\n"
15467 "                      const char *label);\n"
15468 "\n"
15469 msgstr ""
15470
15471 #. type: textblock
15472 #: ../src/guestfs-actions.pod:5892 ../fish/guestfish-actions.pod:3972
15473 msgid ""
15474 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
15475 "C<label>.  Filesystem labels are limited to 16 characters."
15476 msgstr ""
15477
15478 #. type: textblock
15479 #: ../src/guestfs-actions.pod:5896
15480 msgid ""
15481 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
15482 "the existing label on a filesystem."
15483 msgstr ""
15484
15485 #. type: =head2
15486 #: ../src/guestfs-actions.pod:5903
15487 msgid "guestfs_set_e2uuid"
15488 msgstr ""
15489
15490 #. type: verbatim
15491 #: ../src/guestfs-actions.pod:5905
15492 #, no-wrap
15493 msgid ""
15494 " int\n"
15495 " guestfs_set_e2uuid (guestfs_h *g,\n"
15496 "                     const char *device,\n"
15497 "                     const char *uuid);\n"
15498 "\n"
15499 msgstr ""
15500
15501 #. type: textblock
15502 #: ../src/guestfs-actions.pod:5910 ../fish/guestfish-actions.pod:3983
15503 msgid ""
15504 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
15505 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
15506 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
15507 msgstr ""
15508
15509 #. type: textblock
15510 #: ../src/guestfs-actions.pod:5915
15511 msgid ""
15512 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
15513 "the existing UUID of a filesystem."
15514 msgstr ""
15515
15516 #. type: =head2
15517 #: ../src/guestfs-actions.pod:5922
15518 msgid "guestfs_set_memsize"
15519 msgstr ""
15520
15521 #. type: verbatim
15522 #: ../src/guestfs-actions.pod:5924
15523 #, no-wrap
15524 msgid ""
15525 " int\n"
15526 " guestfs_set_memsize (guestfs_h *g,\n"
15527 "                      int memsize);\n"
15528 "\n"
15529 msgstr ""
15530
15531 #. type: textblock
15532 #: ../src/guestfs-actions.pod:5928
15533 msgid ""
15534 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
15535 "This only has any effect if called before C<guestfs_launch>."
15536 msgstr ""
15537
15538 #. type: textblock
15539 #: ../src/guestfs-actions.pod:5932 ../fish/guestfish-actions.pod:4001
15540 msgid ""
15541 "You can also change this by setting the environment variable "
15542 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
15543 msgstr ""
15544
15545 #. type: =head2
15546 #: ../src/guestfs-actions.pod:5943
15547 msgid "guestfs_set_network"
15548 msgstr ""
15549
15550 #. type: verbatim
15551 #: ../src/guestfs-actions.pod:5945
15552 #, no-wrap
15553 msgid ""
15554 " int\n"
15555 " guestfs_set_network (guestfs_h *g,\n"
15556 "                      int network);\n"
15557 "\n"
15558 msgstr ""
15559
15560 #. type: textblock
15561 #: ../src/guestfs-actions.pod:5949 ../fish/guestfish-actions.pod:4014
15562 msgid ""
15563 "If C<network> is true, then the network is enabled in the libguestfs "
15564 "appliance.  The default is false."
15565 msgstr ""
15566
15567 #. type: textblock
15568 #: ../src/guestfs-actions.pod:5952 ../fish/guestfish-actions.pod:4017
15569 msgid ""
15570 "This affects whether commands are able to access the network (see "
15571 "L<guestfs(3)/RUNNING COMMANDS>)."
15572 msgstr ""
15573
15574 #. type: textblock
15575 #: ../src/guestfs-actions.pod:5955
15576 msgid ""
15577 "You must call this before calling C<guestfs_launch>, otherwise it has no "
15578 "effect."
15579 msgstr ""
15580
15581 #. type: =head2
15582 #: ../src/guestfs-actions.pod:5962
15583 msgid "guestfs_set_path"
15584 msgstr ""
15585
15586 #. type: verbatim
15587 #: ../src/guestfs-actions.pod:5964
15588 #, no-wrap
15589 msgid ""
15590 " int\n"
15591 " guestfs_set_path (guestfs_h *g,\n"
15592 "                   const char *searchpath);\n"
15593 "\n"
15594 msgstr ""
15595
15596 #. type: textblock
15597 #: ../src/guestfs-actions.pod:5968 ../fish/guestfish-actions.pod:4029
15598 msgid "Set the path that libguestfs searches for kernel and initrd.img."
15599 msgstr ""
15600
15601 #. type: textblock
15602 #: ../src/guestfs-actions.pod:5970 ../fish/guestfish-actions.pod:4031
15603 msgid ""
15604 "The default is C<$libdir/guestfs> unless overridden by setting "
15605 "C<LIBGUESTFS_PATH> environment variable."
15606 msgstr ""
15607
15608 #. type: textblock
15609 #: ../src/guestfs-actions.pod:5973 ../fish/guestfish-actions.pod:4034
15610 msgid "Setting C<path> to C<NULL> restores the default path."
15611 msgstr ""
15612
15613 #. type: =head2
15614 #: ../src/guestfs-actions.pod:5979
15615 msgid "guestfs_set_qemu"
15616 msgstr ""
15617
15618 #. type: verbatim
15619 #: ../src/guestfs-actions.pod:5981
15620 #, no-wrap
15621 msgid ""
15622 " int\n"
15623 " guestfs_set_qemu (guestfs_h *g,\n"
15624 "                   const char *qemu);\n"
15625 "\n"
15626 msgstr ""
15627
15628 #. type: textblock
15629 #: ../src/guestfs-actions.pod:5985 ../fish/guestfish-actions.pod:4042
15630 msgid "Set the qemu binary that we will use."
15631 msgstr ""
15632
15633 #. type: textblock
15634 #: ../src/guestfs-actions.pod:5987 ../fish/guestfish-actions.pod:4044
15635 msgid "The default is chosen when the library was compiled by the configure script."
15636 msgstr ""
15637
15638 #. type: textblock
15639 #: ../src/guestfs-actions.pod:5990 ../fish/guestfish-actions.pod:4047
15640 msgid ""
15641 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
15642 "variable."
15643 msgstr ""
15644
15645 #. type: textblock
15646 #: ../src/guestfs-actions.pod:5993 ../fish/guestfish-actions.pod:4050
15647 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
15648 msgstr ""
15649
15650 #. type: textblock
15651 #: ../src/guestfs-actions.pod:5995 ../fish/guestfish-actions.pod:4052
15652 msgid ""
15653 "Note that you should call this function as early as possible after creating "
15654 "the handle.  This is because some pre-launch operations depend on testing "
15655 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
15656 "don't retest features, and so you might see inconsistent results.  Using the "
15657 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
15658 "the qemu binary at the same time as the handle is created."
15659 msgstr ""
15660
15661 #. type: =head2
15662 #: ../src/guestfs-actions.pod:6007
15663 msgid "guestfs_set_recovery_proc"
15664 msgstr ""
15665
15666 #. type: verbatim
15667 #: ../src/guestfs-actions.pod:6009
15668 #, no-wrap
15669 msgid ""
15670 " int\n"
15671 " guestfs_set_recovery_proc (guestfs_h *g,\n"
15672 "                            int recoveryproc);\n"
15673 "\n"
15674 msgstr ""
15675
15676 #. type: textblock
15677 #: ../src/guestfs-actions.pod:6013
15678 msgid ""
15679 "If this is called with the parameter C<false> then C<guestfs_launch> does "
15680 "not create a recovery process.  The purpose of the recovery process is to "
15681 "stop runaway qemu processes in the case where the main program aborts "
15682 "abruptly."
15683 msgstr ""
15684
15685 #. type: textblock
15686 #: ../src/guestfs-actions.pod:6018
15687 msgid ""
15688 "This only has any effect if called before C<guestfs_launch>, and the default "
15689 "is true."
15690 msgstr ""
15691
15692 #. type: textblock
15693 #: ../src/guestfs-actions.pod:6021 ../fish/guestfish-actions.pod:4074
15694 msgid ""
15695 "About the only time when you would want to disable this is if the main "
15696 "process will fork itself into the background (\"daemonize\" itself).  In "
15697 "this case the recovery process thinks that the main program has disappeared "
15698 "and so kills qemu, which is not very helpful."
15699 msgstr ""
15700
15701 #. type: =head2
15702 #: ../src/guestfs-actions.pod:6031
15703 msgid "guestfs_set_selinux"
15704 msgstr ""
15705
15706 #. type: verbatim
15707 #: ../src/guestfs-actions.pod:6033
15708 #, no-wrap
15709 msgid ""
15710 " int\n"
15711 " guestfs_set_selinux (guestfs_h *g,\n"
15712 "                      int selinux);\n"
15713 "\n"
15714 msgstr ""
15715
15716 #. type: textblock
15717 #: ../src/guestfs-actions.pod:6037 ../fish/guestfish-actions.pod:4086
15718 msgid ""
15719 "This sets the selinux flag that is passed to the appliance at boot time.  "
15720 "The default is C<selinux=0> (disabled)."
15721 msgstr ""
15722
15723 #. type: textblock
15724 #: ../src/guestfs-actions.pod:6040 ../fish/guestfish-actions.pod:4089
15725 msgid ""
15726 "Note that if SELinux is enabled, it is always in Permissive mode "
15727 "(C<enforcing=0>)."
15728 msgstr ""
15729
15730 #. type: =head2
15731 #: ../src/guestfs-actions.pod:6050
15732 msgid "guestfs_set_trace"
15733 msgstr ""
15734
15735 #. type: verbatim
15736 #: ../src/guestfs-actions.pod:6052
15737 #, no-wrap
15738 msgid ""
15739 " int\n"
15740 " guestfs_set_trace (guestfs_h *g,\n"
15741 "                    int trace);\n"
15742 "\n"
15743 msgstr ""
15744
15745 #. type: textblock
15746 #: ../src/guestfs-actions.pod:6056 ../fish/guestfish-actions.pod:4101
15747 msgid ""
15748 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
15749 "return values are traced."
15750 msgstr ""
15751
15752 #. type: textblock
15753 #: ../src/guestfs-actions.pod:6059 ../fish/guestfish-actions.pod:4104
15754 msgid ""
15755 "If you want to trace C API calls into libguestfs (and other libraries) then "
15756 "possibly a better way is to use the external ltrace(1) command."
15757 msgstr ""
15758
15759 #. type: textblock
15760 #: ../src/guestfs-actions.pod:6063 ../fish/guestfish-actions.pod:4108
15761 msgid ""
15762 "Command traces are disabled unless the environment variable "
15763 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
15764 msgstr ""
15765
15766 #. type: textblock
15767 #: ../src/guestfs-actions.pod:6066
15768 msgid ""
15769 "Trace messages are normally sent to C<stderr>, unless you register a "
15770 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
15771 msgstr ""
15772
15773 #. type: =head2
15774 #: ../src/guestfs-actions.pod:6074
15775 msgid "guestfs_set_verbose"
15776 msgstr ""
15777
15778 #. type: verbatim
15779 #: ../src/guestfs-actions.pod:6076
15780 #, no-wrap
15781 msgid ""
15782 " int\n"
15783 " guestfs_set_verbose (guestfs_h *g,\n"
15784 "                      int verbose);\n"
15785 "\n"
15786 msgstr ""
15787
15788 #. type: textblock
15789 #: ../src/guestfs-actions.pod:6080 ../fish/guestfish-actions.pod:4121
15790 msgid "If C<verbose> is true, this turns on verbose messages."
15791 msgstr ""
15792
15793 #. type: textblock
15794 #: ../src/guestfs-actions.pod:6082 ../fish/guestfish-actions.pod:4123
15795 msgid ""
15796 "Verbose messages are disabled unless the environment variable "
15797 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
15798 msgstr ""
15799
15800 #. type: textblock
15801 #: ../src/guestfs-actions.pod:6085
15802 msgid ""
15803 "Verbose messages are normally sent to C<stderr>, unless you register a "
15804 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
15805 msgstr ""
15806
15807 #. type: =head2
15808 #: ../src/guestfs-actions.pod:6093
15809 msgid "guestfs_setcon"
15810 msgstr ""
15811
15812 #. type: verbatim
15813 #: ../src/guestfs-actions.pod:6095
15814 #, no-wrap
15815 msgid ""
15816 " int\n"
15817 " guestfs_setcon (guestfs_h *g,\n"
15818 "                 const char *context);\n"
15819 "\n"
15820 msgstr ""
15821
15822 #. type: textblock
15823 #: ../src/guestfs-actions.pod:6099 ../fish/guestfish-actions.pod:4134
15824 msgid ""
15825 "This sets the SELinux security context of the daemon to the string "
15826 "C<context>."
15827 msgstr ""
15828
15829 #. type: textblock
15830 #: ../src/guestfs-actions.pod:6102 ../fish/guestfish-actions.pod:4137
15831 msgid "See the documentation about SELINUX in L<guestfs(3)>."
15832 msgstr ""
15833
15834 #. type: =head2
15835 #: ../src/guestfs-actions.pod:6108
15836 msgid "guestfs_setxattr"
15837 msgstr ""
15838
15839 #. type: verbatim
15840 #: ../src/guestfs-actions.pod:6110
15841 #, no-wrap
15842 msgid ""
15843 " int\n"
15844 " guestfs_setxattr (guestfs_h *g,\n"
15845 "                   const char *xattr,\n"
15846 "                   const char *val,\n"
15847 "                   int vallen,\n"
15848 "                   const char *path);\n"
15849 "\n"
15850 msgstr ""
15851
15852 #. type: textblock
15853 #: ../src/guestfs-actions.pod:6117 ../fish/guestfish-actions.pod:4143
15854 msgid ""
15855 "This call sets the extended attribute named C<xattr> of the file C<path> to "
15856 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
15857 msgstr ""
15858
15859 #. type: textblock
15860 #: ../src/guestfs-actions.pod:6121
15861 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
15862 msgstr ""
15863
15864 #. type: =head2
15865 #: ../src/guestfs-actions.pod:6127
15866 msgid "guestfs_sfdisk"
15867 msgstr ""
15868
15869 #. type: verbatim
15870 #: ../src/guestfs-actions.pod:6129
15871 #, no-wrap
15872 msgid ""
15873 " int\n"
15874 " guestfs_sfdisk (guestfs_h *g,\n"
15875 "                 const char *device,\n"
15876 "                 int cyls,\n"
15877 "                 int heads,\n"
15878 "                 int sectors,\n"
15879 "                 char *const *lines);\n"
15880 "\n"
15881 msgstr ""
15882
15883 #. type: textblock
15884 #: ../src/guestfs-actions.pod:6137 ../fish/guestfish-actions.pod:4153
15885 msgid ""
15886 "This is a direct interface to the L<sfdisk(8)> program for creating "
15887 "partitions on block devices."
15888 msgstr ""
15889
15890 #. type: textblock
15891 #: ../src/guestfs-actions.pod:6140 ../fish/guestfish-actions.pod:4156
15892 msgid "C<device> should be a block device, for example C</dev/sda>."
15893 msgstr ""
15894
15895 #. type: textblock
15896 #: ../src/guestfs-actions.pod:6142 ../fish/guestfish-actions.pod:4158
15897 msgid ""
15898 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
15899 "sectors on the device, which are passed directly to sfdisk as the I<-C>, "
15900 "I<-H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
15901 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
15902 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
15903 "the kernel) cannot work out the right geometry and you will need to tell it."
15904 msgstr ""
15905
15906 #. type: textblock
15907 #: ../src/guestfs-actions.pod:6150 ../fish/guestfish-actions.pod:4166
15908 msgid ""
15909 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
15910 "refer to the L<sfdisk(8)> manpage."
15911 msgstr ""
15912
15913 #. type: textblock
15914 #: ../src/guestfs-actions.pod:6153 ../fish/guestfish-actions.pod:4169
15915 msgid ""
15916 "To create a single partition occupying the whole disk, you would pass "
15917 "C<lines> as a single element list, when the single element being the string "
15918 "C<,> (comma)."
15919 msgstr ""
15920
15921 #. type: textblock
15922 #: ../src/guestfs-actions.pod:6157
15923 msgid "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
15924 msgstr ""
15925
15926 #. type: textblock
15927 #: ../src/guestfs-actions.pod:6165 ../src/guestfs-actions.pod:6195 ../src/guestfs-actions.pod:6228 ../fish/guestfish-actions.pod:4179 ../fish/guestfish-actions.pod:4202 ../fish/guestfish-actions.pod:4224
15928 msgid "This function is deprecated.  In new code, use the C<part_add> call instead."
15929 msgstr ""
15930
15931 #. type: =head2
15932 #: ../src/guestfs-actions.pod:6174
15933 msgid "guestfs_sfdiskM"
15934 msgstr ""
15935
15936 #. type: verbatim
15937 #: ../src/guestfs-actions.pod:6176
15938 #, no-wrap
15939 msgid ""
15940 " int\n"
15941 " guestfs_sfdiskM (guestfs_h *g,\n"
15942 "                  const char *device,\n"
15943 "                  char *const *lines);\n"
15944 "\n"
15945 msgstr ""
15946
15947 #. type: textblock
15948 #: ../src/guestfs-actions.pod:6181
15949 msgid ""
15950 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
15951 "partition sizes are specified in megabytes only (rounded to the nearest "
15952 "cylinder) and you don't need to specify the cyls, heads and sectors "
15953 "parameters which were rarely if ever used anyway."
15954 msgstr ""
15955
15956 #. type: textblock
15957 #: ../src/guestfs-actions.pod:6187
15958 msgid ""
15959 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
15960 "C<guestfs_part_disk>"
15961 msgstr ""
15962
15963 #. type: =head2
15964 #: ../src/guestfs-actions.pod:6204
15965 msgid "guestfs_sfdisk_N"
15966 msgstr ""
15967
15968 #. type: verbatim
15969 #: ../src/guestfs-actions.pod:6206
15970 #, no-wrap
15971 msgid ""
15972 " int\n"
15973 " guestfs_sfdisk_N (guestfs_h *g,\n"
15974 "                   const char *device,\n"
15975 "                   int partnum,\n"
15976 "                   int cyls,\n"
15977 "                   int heads,\n"
15978 "                   int sectors,\n"
15979 "                   const char *line);\n"
15980 "\n"
15981 msgstr ""
15982
15983 #. type: textblock
15984 #: ../src/guestfs-actions.pod:6215 ../fish/guestfish-actions.pod:4213
15985 msgid ""
15986 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
15987 "(note: C<n> counts from 1)."
15988 msgstr ""
15989
15990 #. type: textblock
15991 #: ../src/guestfs-actions.pod:6218
15992 msgid ""
15993 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
15994 "for the cyls/heads/sectors parameters."
15995 msgstr ""
15996
15997 #. type: textblock
15998 #: ../src/guestfs-actions.pod:6221
15999 msgid "See also: C<guestfs_part_add>"
16000 msgstr ""
16001
16002 #. type: =head2
16003 #: ../src/guestfs-actions.pod:6237
16004 msgid "guestfs_sfdisk_disk_geometry"
16005 msgstr ""
16006
16007 #. type: verbatim
16008 #: ../src/guestfs-actions.pod:6239
16009 #, no-wrap
16010 msgid ""
16011 " char *\n"
16012 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
16013 "                               const char *device);\n"
16014 "\n"
16015 msgstr ""
16016
16017 #. type: textblock
16018 #: ../src/guestfs-actions.pod:6243
16019 msgid ""
16020 "This displays the disk geometry of C<device> read from the partition table.  "
16021 "Especially in the case where the underlying block device has been resized, "
16022 "this can be different from the kernel's idea of the geometry (see "
16023 "C<guestfs_sfdisk_kernel_geometry>)."
16024 msgstr ""
16025
16026 #. type: textblock
16027 #: ../src/guestfs-actions.pod:6248 ../src/guestfs-actions.pod:6264 ../fish/guestfish-actions.pod:4240 ../fish/guestfish-actions.pod:4249
16028 msgid "The result is in human-readable format, and not designed to be parsed."
16029 msgstr ""
16030
16031 #. type: =head2
16032 #: ../src/guestfs-actions.pod:6256
16033 msgid "guestfs_sfdisk_kernel_geometry"
16034 msgstr ""
16035
16036 #. type: verbatim
16037 #: ../src/guestfs-actions.pod:6258
16038 #, no-wrap
16039 msgid ""
16040 " char *\n"
16041 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
16042 "                                 const char *device);\n"
16043 "\n"
16044 msgstr ""
16045
16046 #. type: textblock
16047 #: ../src/guestfs-actions.pod:6262 ../fish/guestfish-actions.pod:4247
16048 msgid "This displays the kernel's idea of the geometry of C<device>."
16049 msgstr ""
16050
16051 #. type: =head2
16052 #: ../src/guestfs-actions.pod:6272
16053 msgid "guestfs_sfdisk_l"
16054 msgstr ""
16055
16056 #. type: verbatim
16057 #: ../src/guestfs-actions.pod:6274
16058 #, no-wrap
16059 msgid ""
16060 " char *\n"
16061 " guestfs_sfdisk_l (guestfs_h *g,\n"
16062 "                   const char *device);\n"
16063 "\n"
16064 msgstr ""
16065
16066 #. type: textblock
16067 #: ../src/guestfs-actions.pod:6278 ../fish/guestfish-actions.pod:4256
16068 msgid ""
16069 "This displays the partition table on C<device>, in the human-readable output "
16070 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
16071 msgstr ""
16072
16073 #. type: textblock
16074 #: ../src/guestfs-actions.pod:6282
16075 msgid "See also: C<guestfs_part_list>"
16076 msgstr ""
16077
16078 #. type: textblock
16079 #: ../src/guestfs-actions.pod:6287 ../fish/guestfish-actions.pod:4262
16080 msgid ""
16081 "This function is deprecated.  In new code, use the C<part_list> call "
16082 "instead."
16083 msgstr ""
16084
16085 #. type: =head2
16086 #: ../src/guestfs-actions.pod:6296
16087 msgid "guestfs_sh"
16088 msgstr ""
16089
16090 #. type: verbatim
16091 #: ../src/guestfs-actions.pod:6298
16092 #, no-wrap
16093 msgid ""
16094 " char *\n"
16095 " guestfs_sh (guestfs_h *g,\n"
16096 "             const char *command);\n"
16097 "\n"
16098 msgstr ""
16099
16100 #. type: textblock
16101 #: ../src/guestfs-actions.pod:6302 ../fish/guestfish-actions.pod:4273
16102 msgid ""
16103 "This call runs a command from the guest filesystem via the guest's "
16104 "C</bin/sh>."
16105 msgstr ""
16106
16107 #. type: textblock
16108 #: ../src/guestfs-actions.pod:6305
16109 msgid "This is like C<guestfs_command>, but passes the command to:"
16110 msgstr ""
16111
16112 #. type: verbatim
16113 #: ../src/guestfs-actions.pod:6307 ../fish/guestfish-actions.pod:4278
16114 #, no-wrap
16115 msgid ""
16116 " /bin/sh -c \"command\"\n"
16117 "\n"
16118 msgstr ""
16119
16120 #. type: textblock
16121 #: ../src/guestfs-actions.pod:6309 ../fish/guestfish-actions.pod:4280
16122 msgid ""
16123 "Depending on the guest's shell, this usually results in wildcards being "
16124 "expanded, shell expressions being interpolated and so on."
16125 msgstr ""
16126
16127 #. type: textblock
16128 #: ../src/guestfs-actions.pod:6313
16129 msgid "All the provisos about C<guestfs_command> apply to this call."
16130 msgstr ""
16131
16132 #. type: =head2
16133 #: ../src/guestfs-actions.pod:6320
16134 msgid "guestfs_sh_lines"
16135 msgstr ""
16136
16137 #. type: verbatim
16138 #: ../src/guestfs-actions.pod:6322
16139 #, no-wrap
16140 msgid ""
16141 " char **\n"
16142 " guestfs_sh_lines (guestfs_h *g,\n"
16143 "                   const char *command);\n"
16144 "\n"
16145 msgstr ""
16146
16147 #. type: textblock
16148 #: ../src/guestfs-actions.pod:6326
16149 msgid ""
16150 "This is the same as C<guestfs_sh>, but splits the result into a list of "
16151 "lines."
16152 msgstr ""
16153
16154 #. type: textblock
16155 #: ../src/guestfs-actions.pod:6329
16156 msgid "See also: C<guestfs_command_lines>"
16157 msgstr ""
16158
16159 #. type: =head2
16160 #: ../src/guestfs-actions.pod:6337
16161 msgid "guestfs_sleep"
16162 msgstr ""
16163
16164 #. type: verbatim
16165 #: ../src/guestfs-actions.pod:6339
16166 #, no-wrap
16167 msgid ""
16168 " int\n"
16169 " guestfs_sleep (guestfs_h *g,\n"
16170 "                int secs);\n"
16171 "\n"
16172 msgstr ""
16173
16174 #. type: textblock
16175 #: ../src/guestfs-actions.pod:6343 ../fish/guestfish-actions.pod:4299
16176 msgid "Sleep for C<secs> seconds."
16177 msgstr ""
16178
16179 #. type: textblock
16180 #: ../src/guestfs-actions.pod:6347
16181 msgid "(Added in 1.0.41)"
16182 msgstr ""
16183
16184 #. type: =head2
16185 #: ../src/guestfs-actions.pod:6349 ../src/guestfs-structs.pod:109
16186 msgid "guestfs_stat"
16187 msgstr ""
16188
16189 #. type: verbatim
16190 #: ../src/guestfs-actions.pod:6351
16191 #, no-wrap
16192 msgid ""
16193 " struct guestfs_stat *\n"
16194 " guestfs_stat (guestfs_h *g,\n"
16195 "               const char *path);\n"
16196 "\n"
16197 msgstr ""
16198
16199 #. type: textblock
16200 #: ../src/guestfs-actions.pod:6357 ../fish/guestfish-actions.pod:4307
16201 msgid "This is the same as the C<stat(2)> system call."
16202 msgstr ""
16203
16204 #. type: =head2
16205 #: ../src/guestfs-actions.pod:6365 ../src/guestfs-structs.pod:135
16206 msgid "guestfs_statvfs"
16207 msgstr ""
16208
16209 #. type: verbatim
16210 #: ../src/guestfs-actions.pod:6367
16211 #, no-wrap
16212 msgid ""
16213 " struct guestfs_statvfs *\n"
16214 " guestfs_statvfs (guestfs_h *g,\n"
16215 "                  const char *path);\n"
16216 "\n"
16217 msgstr ""
16218
16219 #. type: textblock
16220 #: ../src/guestfs-actions.pod:6371 ../fish/guestfish-actions.pod:4313
16221 msgid ""
16222 "Returns file system statistics for any mounted file system.  C<path> should "
16223 "be a file or directory in the mounted file system (typically it is the mount "
16224 "point itself, but it doesn't need to be)."
16225 msgstr ""
16226
16227 #. type: textblock
16228 #: ../src/guestfs-actions.pod:6375 ../fish/guestfish-actions.pod:4317
16229 msgid "This is the same as the C<statvfs(2)> system call."
16230 msgstr ""
16231
16232 #. type: textblock
16233 #: ../src/guestfs-actions.pod:6377
16234 msgid ""
16235 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
16236 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
16237 msgstr ""
16238
16239 #. type: =head2
16240 #: ../src/guestfs-actions.pod:6383
16241 msgid "guestfs_strings"
16242 msgstr ""
16243
16244 #. type: verbatim
16245 #: ../src/guestfs-actions.pod:6385
16246 #, no-wrap
16247 msgid ""
16248 " char **\n"
16249 " guestfs_strings (guestfs_h *g,\n"
16250 "                  const char *path);\n"
16251 "\n"
16252 msgstr ""
16253
16254 #. type: textblock
16255 #: ../src/guestfs-actions.pod:6389 ../fish/guestfish-actions.pod:4323
16256 msgid ""
16257 "This runs the L<strings(1)> command on a file and returns the list of "
16258 "printable strings found."
16259 msgstr ""
16260
16261 #. type: =head2
16262 #: ../src/guestfs-actions.pod:6401
16263 msgid "guestfs_strings_e"
16264 msgstr ""
16265
16266 #. type: verbatim
16267 #: ../src/guestfs-actions.pod:6403
16268 #, no-wrap
16269 msgid ""
16270 " char **\n"
16271 " guestfs_strings_e (guestfs_h *g,\n"
16272 "                    const char *encoding,\n"
16273 "                    const char *path);\n"
16274 "\n"
16275 msgstr ""
16276
16277 #. type: textblock
16278 #: ../src/guestfs-actions.pod:6408
16279 msgid ""
16280 "This is like the C<guestfs_strings> command, but allows you to specify the "
16281 "encoding of strings that are looked for in the source file C<path>."
16282 msgstr ""
16283
16284 #. type: textblock
16285 #: ../src/guestfs-actions.pod:6412 ../fish/guestfish-actions.pod:4337
16286 msgid "Allowed encodings are:"
16287 msgstr ""
16288
16289 #. type: =item
16290 #: ../src/guestfs-actions.pod:6416 ../fish/guestfish-actions.pod:4341
16291 msgid "s"
16292 msgstr ""
16293
16294 #. type: textblock
16295 #: ../src/guestfs-actions.pod:6418
16296 msgid ""
16297 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
16298 "ISO-8859-X (this is what C<guestfs_strings> uses)."
16299 msgstr ""
16300
16301 #. type: =item
16302 #: ../src/guestfs-actions.pod:6421 ../fish/guestfish-actions.pod:4346
16303 msgid "S"
16304 msgstr ""
16305
16306 #. type: textblock
16307 #: ../src/guestfs-actions.pod:6423 ../fish/guestfish-actions.pod:4348
16308 msgid "Single 8-bit-byte characters."
16309 msgstr ""
16310
16311 #. type: =item
16312 #: ../src/guestfs-actions.pod:6425 ../fish/guestfish-actions.pod:4350
16313 msgid "b"
16314 msgstr ""
16315
16316 #. type: textblock
16317 #: ../src/guestfs-actions.pod:6427 ../fish/guestfish-actions.pod:4352
16318 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
16319 msgstr ""
16320
16321 #. type: =item
16322 #: ../src/guestfs-actions.pod:6430 ../fish/guestfish-actions.pod:4355
16323 msgid "l (lower case letter L)"
16324 msgstr ""
16325
16326 #. type: textblock
16327 #: ../src/guestfs-actions.pod:6432 ../fish/guestfish-actions.pod:4357
16328 msgid ""
16329 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
16330 "examining binaries in Windows guests."
16331 msgstr ""
16332
16333 #. type: =item
16334 #: ../src/guestfs-actions.pod:6435 ../fish/guestfish-actions.pod:4360
16335 msgid "B"
16336 msgstr ""
16337
16338 #. type: textblock
16339 #: ../src/guestfs-actions.pod:6437 ../fish/guestfish-actions.pod:4362
16340 msgid "32-bit big endian such as UCS-4BE."
16341 msgstr ""
16342
16343 #. type: =item
16344 #: ../src/guestfs-actions.pod:6439 ../fish/guestfish-actions.pod:4364
16345 msgid "L"
16346 msgstr ""
16347
16348 #. type: textblock
16349 #: ../src/guestfs-actions.pod:6441 ../fish/guestfish-actions.pod:4366
16350 msgid "32-bit little endian such as UCS-4LE."
16351 msgstr ""
16352
16353 #. type: textblock
16354 #: ../src/guestfs-actions.pod:6445 ../fish/guestfish-actions.pod:4370
16355 msgid "The returned strings are transcoded to UTF-8."
16356 msgstr ""
16357
16358 #. type: =head2
16359 #: ../src/guestfs-actions.pod:6456
16360 msgid "guestfs_swapoff_device"
16361 msgstr ""
16362
16363 #. type: verbatim
16364 #: ../src/guestfs-actions.pod:6458
16365 #, no-wrap
16366 msgid ""
16367 " int\n"
16368 " guestfs_swapoff_device (guestfs_h *g,\n"
16369 "                         const char *device);\n"
16370 "\n"
16371 msgstr ""
16372
16373 #. type: textblock
16374 #: ../src/guestfs-actions.pod:6462
16375 msgid ""
16376 "This command disables the libguestfs appliance swap device or partition "
16377 "named C<device>.  See C<guestfs_swapon_device>."
16378 msgstr ""
16379
16380 #. type: =head2
16381 #: ../src/guestfs-actions.pod:6470
16382 msgid "guestfs_swapoff_file"
16383 msgstr ""
16384
16385 #. type: verbatim
16386 #: ../src/guestfs-actions.pod:6472
16387 #, no-wrap
16388 msgid ""
16389 " int\n"
16390 " guestfs_swapoff_file (guestfs_h *g,\n"
16391 "                       const char *file);\n"
16392 "\n"
16393 msgstr ""
16394
16395 #. type: textblock
16396 #: ../src/guestfs-actions.pod:6476 ../fish/guestfish-actions.pod:4387
16397 msgid "This command disables the libguestfs appliance swap on file."
16398 msgstr ""
16399
16400 #. type: =head2
16401 #: ../src/guestfs-actions.pod:6482
16402 msgid "guestfs_swapoff_label"
16403 msgstr ""
16404
16405 #. type: verbatim
16406 #: ../src/guestfs-actions.pod:6484
16407 #, no-wrap
16408 msgid ""
16409 " int\n"
16410 " guestfs_swapoff_label (guestfs_h *g,\n"
16411 "                        const char *label);\n"
16412 "\n"
16413 msgstr ""
16414
16415 #. type: textblock
16416 #: ../src/guestfs-actions.pod:6488 ../fish/guestfish-actions.pod:4393
16417 msgid ""
16418 "This command disables the libguestfs appliance swap on labeled swap "
16419 "partition."
16420 msgstr ""
16421
16422 #. type: =head2
16423 #: ../src/guestfs-actions.pod:6495
16424 msgid "guestfs_swapoff_uuid"
16425 msgstr ""
16426
16427 #. type: verbatim
16428 #: ../src/guestfs-actions.pod:6497
16429 #, no-wrap
16430 msgid ""
16431 " int\n"
16432 " guestfs_swapoff_uuid (guestfs_h *g,\n"
16433 "                       const char *uuid);\n"
16434 "\n"
16435 msgstr ""
16436
16437 #. type: textblock
16438 #: ../src/guestfs-actions.pod:6501 ../fish/guestfish-actions.pod:4400
16439 msgid ""
16440 "This command disables the libguestfs appliance swap partition with the given "
16441 "UUID."
16442 msgstr ""
16443
16444 #. type: =head2
16445 #: ../src/guestfs-actions.pod:6508
16446 msgid "guestfs_swapon_device"
16447 msgstr ""
16448
16449 #. type: verbatim
16450 #: ../src/guestfs-actions.pod:6510
16451 #, no-wrap
16452 msgid ""
16453 " int\n"
16454 " guestfs_swapon_device (guestfs_h *g,\n"
16455 "                        const char *device);\n"
16456 "\n"
16457 msgstr ""
16458
16459 #. type: textblock
16460 #: ../src/guestfs-actions.pod:6514
16461 msgid ""
16462 "This command enables the libguestfs appliance to use the swap device or "
16463 "partition named C<device>.  The increased memory is made available for all "
16464 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
16465 msgstr ""
16466
16467 #. type: textblock
16468 #: ../src/guestfs-actions.pod:6519 ../fish/guestfish-actions.pod:4412
16469 msgid ""
16470 "Note that you should not swap to existing guest swap partitions unless you "
16471 "know what you are doing.  They may contain hibernation information, or other "
16472 "information that the guest doesn't want you to trash.  You also risk leaking "
16473 "information about the host to the guest this way.  Instead, attach a new "
16474 "host device to the guest and swap on that."
16475 msgstr ""
16476
16477 #. type: =head2
16478 #: ../src/guestfs-actions.pod:6530
16479 msgid "guestfs_swapon_file"
16480 msgstr ""
16481
16482 #. type: verbatim
16483 #: ../src/guestfs-actions.pod:6532
16484 #, no-wrap
16485 msgid ""
16486 " int\n"
16487 " guestfs_swapon_file (guestfs_h *g,\n"
16488 "                      const char *file);\n"
16489 "\n"
16490 msgstr ""
16491
16492 #. type: textblock
16493 #: ../src/guestfs-actions.pod:6536
16494 msgid ""
16495 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
16496 "notes."
16497 msgstr ""
16498
16499 #. type: =head2
16500 #: ../src/guestfs-actions.pod:6543
16501 msgid "guestfs_swapon_label"
16502 msgstr ""
16503
16504 #. type: verbatim
16505 #: ../src/guestfs-actions.pod:6545
16506 #, no-wrap
16507 msgid ""
16508 " int\n"
16509 " guestfs_swapon_label (guestfs_h *g,\n"
16510 "                       const char *label);\n"
16511 "\n"
16512 msgstr ""
16513
16514 #. type: textblock
16515 #: ../src/guestfs-actions.pod:6549
16516 msgid ""
16517 "This command enables swap to a labeled swap partition.  See "
16518 "C<guestfs_swapon_device> for other notes."
16519 msgstr ""
16520
16521 #. type: =head2
16522 #: ../src/guestfs-actions.pod:6556
16523 msgid "guestfs_swapon_uuid"
16524 msgstr ""
16525
16526 #. type: verbatim
16527 #: ../src/guestfs-actions.pod:6558
16528 #, no-wrap
16529 msgid ""
16530 " int\n"
16531 " guestfs_swapon_uuid (guestfs_h *g,\n"
16532 "                      const char *uuid);\n"
16533 "\n"
16534 msgstr ""
16535
16536 #. type: textblock
16537 #: ../src/guestfs-actions.pod:6562
16538 msgid ""
16539 "This command enables swap to a swap partition with the given UUID.  See "
16540 "C<guestfs_swapon_device> for other notes."
16541 msgstr ""
16542
16543 #. type: =head2
16544 #: ../src/guestfs-actions.pod:6569
16545 msgid "guestfs_sync"
16546 msgstr ""
16547
16548 #. type: verbatim
16549 #: ../src/guestfs-actions.pod:6571
16550 #, no-wrap
16551 msgid ""
16552 " int\n"
16553 " guestfs_sync (guestfs_h *g);\n"
16554 "\n"
16555 msgstr ""
16556
16557 #. type: textblock
16558 #: ../src/guestfs-actions.pod:6574 ../fish/guestfish-actions.pod:4444
16559 msgid ""
16560 "This syncs the disk, so that any writes are flushed through to the "
16561 "underlying disk image."
16562 msgstr ""
16563
16564 #. type: textblock
16565 #: ../src/guestfs-actions.pod:6577 ../fish/guestfish-actions.pod:4447
16566 msgid ""
16567 "You should always call this if you have modified a disk image, before "
16568 "closing the handle."
16569 msgstr ""
16570
16571 #. type: =head2
16572 #: ../src/guestfs-actions.pod:6584
16573 msgid "guestfs_tail"
16574 msgstr ""
16575
16576 #. type: verbatim
16577 #: ../src/guestfs-actions.pod:6586
16578 #, no-wrap
16579 msgid ""
16580 " char **\n"
16581 " guestfs_tail (guestfs_h *g,\n"
16582 "               const char *path);\n"
16583 "\n"
16584 msgstr ""
16585
16586 #. type: textblock
16587 #: ../src/guestfs-actions.pod:6590 ../fish/guestfish-actions.pod:4454
16588 msgid "This command returns up to the last 10 lines of a file as a list of strings."
16589 msgstr ""
16590
16591 #. type: =head2
16592 #: ../src/guestfs-actions.pod:6602
16593 msgid "guestfs_tail_n"
16594 msgstr ""
16595
16596 #. type: verbatim
16597 #: ../src/guestfs-actions.pod:6604
16598 #, no-wrap
16599 msgid ""
16600 " char **\n"
16601 " guestfs_tail_n (guestfs_h *g,\n"
16602 "                 int nrlines,\n"
16603 "                 const char *path);\n"
16604 "\n"
16605 msgstr ""
16606
16607 #. type: textblock
16608 #: ../src/guestfs-actions.pod:6609 ../fish/guestfish-actions.pod:4464
16609 msgid ""
16610 "If the parameter C<nrlines> is a positive number, this returns the last "
16611 "C<nrlines> lines of the file C<path>."
16612 msgstr ""
16613
16614 #. type: textblock
16615 #: ../src/guestfs-actions.pod:6612 ../fish/guestfish-actions.pod:4467
16616 msgid ""
16617 "If the parameter C<nrlines> is a negative number, this returns lines from "
16618 "the file C<path>, starting with the C<-nrlines>th line."
16619 msgstr ""
16620
16621 #. type: =head2
16622 #: ../src/guestfs-actions.pod:6626
16623 msgid "guestfs_tar_in"
16624 msgstr ""
16625
16626 #. type: verbatim
16627 #: ../src/guestfs-actions.pod:6628
16628 #, no-wrap
16629 msgid ""
16630 " int\n"
16631 " guestfs_tar_in (guestfs_h *g,\n"
16632 "                 const char *tarfile,\n"
16633 "                 const char *directory);\n"
16634 "\n"
16635 msgstr ""
16636
16637 #. type: textblock
16638 #: ../src/guestfs-actions.pod:6633 ../fish/guestfish-actions.pod:4479
16639 msgid ""
16640 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
16641 "tar file) into C<directory>."
16642 msgstr ""
16643
16644 #. type: textblock
16645 #: ../src/guestfs-actions.pod:6636
16646 msgid "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
16647 msgstr ""
16648
16649 #. type: textblock
16650 #: ../src/guestfs-actions.pod:6641 ../src/guestfs-actions.pod:6658 ../src/guestfs-actions.pod:6674 ../src/guestfs-actions.pod:6690
16651 msgid "(Added in 1.0.3)"
16652 msgstr ""
16653
16654 #. type: =head2
16655 #: ../src/guestfs-actions.pod:6643
16656 msgid "guestfs_tar_out"
16657 msgstr ""
16658
16659 #. type: verbatim
16660 #: ../src/guestfs-actions.pod:6645
16661 #, no-wrap
16662 msgid ""
16663 " int\n"
16664 " guestfs_tar_out (guestfs_h *g,\n"
16665 "                  const char *directory,\n"
16666 "                  const char *tarfile);\n"
16667 "\n"
16668 msgstr ""
16669
16670 #. type: textblock
16671 #: ../src/guestfs-actions.pod:6650 ../fish/guestfish-actions.pod:4491
16672 msgid ""
16673 "This command packs the contents of C<directory> and downloads it to local "
16674 "file C<tarfile>."
16675 msgstr ""
16676
16677 #. type: textblock
16678 #: ../src/guestfs-actions.pod:6653
16679 msgid ""
16680 "To download a compressed tarball, use C<guestfs_tgz_out> or "
16681 "C<guestfs_txz_out>."
16682 msgstr ""
16683
16684 #. type: =head2
16685 #: ../src/guestfs-actions.pod:6660
16686 msgid "guestfs_tgz_in"
16687 msgstr ""
16688
16689 #. type: verbatim
16690 #: ../src/guestfs-actions.pod:6662
16691 #, no-wrap
16692 msgid ""
16693 " int\n"
16694 " guestfs_tgz_in (guestfs_h *g,\n"
16695 "                 const char *tarball,\n"
16696 "                 const char *directory);\n"
16697 "\n"
16698 msgstr ""
16699
16700 #. type: textblock
16701 #: ../src/guestfs-actions.pod:6667 ../fish/guestfish-actions.pod:4503
16702 msgid ""
16703 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
16704 "tar file) into C<directory>."
16705 msgstr ""
16706
16707 #. type: textblock
16708 #: ../src/guestfs-actions.pod:6670
16709 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
16710 msgstr ""
16711
16712 #. type: =head2
16713 #: ../src/guestfs-actions.pod:6676
16714 msgid "guestfs_tgz_out"
16715 msgstr ""
16716
16717 #. type: verbatim
16718 #: ../src/guestfs-actions.pod:6678
16719 #, no-wrap
16720 msgid ""
16721 " int\n"
16722 " guestfs_tgz_out (guestfs_h *g,\n"
16723 "                  const char *directory,\n"
16724 "                  const char *tarball);\n"
16725 "\n"
16726 msgstr ""
16727
16728 #. type: textblock
16729 #: ../src/guestfs-actions.pod:6683 ../fish/guestfish-actions.pod:4514
16730 msgid ""
16731 "This command packs the contents of C<directory> and downloads it to local "
16732 "file C<tarball>."
16733 msgstr ""
16734
16735 #. type: textblock
16736 #: ../src/guestfs-actions.pod:6686
16737 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
16738 msgstr ""
16739
16740 #. type: =head2
16741 #: ../src/guestfs-actions.pod:6692
16742 msgid "guestfs_touch"
16743 msgstr ""
16744
16745 #. type: verbatim
16746 #: ../src/guestfs-actions.pod:6694
16747 #, no-wrap
16748 msgid ""
16749 " int\n"
16750 " guestfs_touch (guestfs_h *g,\n"
16751 "                const char *path);\n"
16752 "\n"
16753 msgstr ""
16754
16755 #. type: textblock
16756 #: ../src/guestfs-actions.pod:6698 ../fish/guestfish-actions.pod:4525
16757 msgid ""
16758 "Touch acts like the L<touch(1)> command.  It can be used to update the "
16759 "timestamps on a file, or, if the file does not exist, to create a new "
16760 "zero-length file."
16761 msgstr ""
16762
16763 #. type: textblock
16764 #: ../src/guestfs-actions.pod:6702 ../fish/guestfish-actions.pod:4529
16765 msgid ""
16766 "This command only works on regular files, and will fail on other file types "
16767 "such as directories, symbolic links, block special etc."
16768 msgstr ""
16769
16770 #. type: =head2
16771 #: ../src/guestfs-actions.pod:6709
16772 msgid "guestfs_truncate"
16773 msgstr ""
16774
16775 #. type: verbatim
16776 #: ../src/guestfs-actions.pod:6711
16777 #, no-wrap
16778 msgid ""
16779 " int\n"
16780 " guestfs_truncate (guestfs_h *g,\n"
16781 "                   const char *path);\n"
16782 "\n"
16783 msgstr ""
16784
16785 #. type: textblock
16786 #: ../src/guestfs-actions.pod:6715 ../fish/guestfish-actions.pod:4536
16787 msgid ""
16788 "This command truncates C<path> to a zero-length file.  The file must exist "
16789 "already."
16790 msgstr ""
16791
16792 #. type: =head2
16793 #: ../src/guestfs-actions.pod:6722
16794 msgid "guestfs_truncate_size"
16795 msgstr ""
16796
16797 #. type: verbatim
16798 #: ../src/guestfs-actions.pod:6724
16799 #, no-wrap
16800 msgid ""
16801 " int\n"
16802 " guestfs_truncate_size (guestfs_h *g,\n"
16803 "                        const char *path,\n"
16804 "                        int64_t size);\n"
16805 "\n"
16806 msgstr ""
16807
16808 #. type: textblock
16809 #: ../src/guestfs-actions.pod:6729 ../fish/guestfish-actions.pod:4543
16810 msgid ""
16811 "This command truncates C<path> to size C<size> bytes.  The file must exist "
16812 "already."
16813 msgstr ""
16814
16815 #. type: textblock
16816 #: ../src/guestfs-actions.pod:6732
16817 msgid ""
16818 "If the current file size is less than C<size> then the file is extended to "
16819 "the required size with zero bytes.  This creates a sparse file (ie. disk "
16820 "blocks are not allocated for the file until you write to it).  To create a "
16821 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
16822 msgstr ""
16823
16824 #. type: =head2
16825 #: ../src/guestfs-actions.pod:6742
16826 msgid "guestfs_tune2fs_l"
16827 msgstr ""
16828
16829 #. type: verbatim
16830 #: ../src/guestfs-actions.pod:6744
16831 #, no-wrap
16832 msgid ""
16833 " char **\n"
16834 " guestfs_tune2fs_l (guestfs_h *g,\n"
16835 "                    const char *device);\n"
16836 "\n"
16837 msgstr ""
16838
16839 #. type: textblock
16840 #: ../src/guestfs-actions.pod:6748 ../fish/guestfish-actions.pod:4556
16841 msgid ""
16842 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
16843 "C<device>."
16844 msgstr ""
16845
16846 #. type: textblock
16847 #: ../src/guestfs-actions.pod:6751 ../fish/guestfish-actions.pod:4559
16848 msgid ""
16849 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
16850 "for more details.  The list of fields returned isn't clearly defined, and "
16851 "depends on both the version of C<tune2fs> that libguestfs was built against, "
16852 "and the filesystem itself."
16853 msgstr ""
16854
16855 #. type: =head2
16856 #: ../src/guestfs-actions.pod:6764
16857 msgid "guestfs_txz_in"
16858 msgstr ""
16859
16860 #. type: verbatim
16861 #: ../src/guestfs-actions.pod:6766
16862 #, no-wrap
16863 msgid ""
16864 " int\n"
16865 " guestfs_txz_in (guestfs_h *g,\n"
16866 "                 const char *tarball,\n"
16867 "                 const char *directory);\n"
16868 "\n"
16869 msgstr ""
16870
16871 #. type: textblock
16872 #: ../src/guestfs-actions.pod:6771 ../fish/guestfish-actions.pod:4568
16873 msgid ""
16874 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
16875 "tar file) into C<directory>."
16876 msgstr ""
16877
16878 #. type: =head2
16879 #: ../src/guestfs-actions.pod:6778
16880 msgid "guestfs_txz_out"
16881 msgstr ""
16882
16883 #. type: verbatim
16884 #: ../src/guestfs-actions.pod:6780
16885 #, no-wrap
16886 msgid ""
16887 " int\n"
16888 " guestfs_txz_out (guestfs_h *g,\n"
16889 "                  const char *directory,\n"
16890 "                  const char *tarball);\n"
16891 "\n"
16892 msgstr ""
16893
16894 #. type: textblock
16895 #: ../src/guestfs-actions.pod:6785 ../fish/guestfish-actions.pod:4577
16896 msgid ""
16897 "This command packs the contents of C<directory> and downloads it to local "
16898 "file C<tarball> (as an xz compressed tar archive)."
16899 msgstr ""
16900
16901 #. type: =head2
16902 #: ../src/guestfs-actions.pod:6792
16903 msgid "guestfs_umask"
16904 msgstr ""
16905
16906 #. type: verbatim
16907 #: ../src/guestfs-actions.pod:6794
16908 #, no-wrap
16909 msgid ""
16910 " int\n"
16911 " guestfs_umask (guestfs_h *g,\n"
16912 "                int mask);\n"
16913 "\n"
16914 msgstr ""
16915
16916 #. type: textblock
16917 #: ../src/guestfs-actions.pod:6798 ../fish/guestfish-actions.pod:4586
16918 msgid ""
16919 "This function sets the mask used for creating new files and device nodes to "
16920 "C<mask & 0777>."
16921 msgstr ""
16922
16923 #. type: textblock
16924 #: ../src/guestfs-actions.pod:6801 ../fish/guestfish-actions.pod:4589
16925 msgid ""
16926 "Typical umask values would be C<022> which creates new files with "
16927 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
16928 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
16929 msgstr ""
16930
16931 #. type: textblock
16932 #: ../src/guestfs-actions.pod:6806 ../fish/guestfish-actions.pod:4594
16933 msgid ""
16934 "The default umask is C<022>.  This is important because it means that "
16935 "directories and device nodes will be created with C<0644> or C<0755> mode "
16936 "even if you specify C<0777>."
16937 msgstr ""
16938
16939 #. type: textblock
16940 #: ../src/guestfs-actions.pod:6810
16941 msgid ""
16942 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
16943 "C<guestfs_mkdir>."
16944 msgstr ""
16945
16946 #. type: textblock
16947 #: ../src/guestfs-actions.pod:6813 ../fish/guestfish-actions.pod:4601
16948 msgid "This call returns the previous umask."
16949 msgstr ""
16950
16951 #. type: =head2
16952 #: ../src/guestfs-actions.pod:6819
16953 msgid "guestfs_umount"
16954 msgstr ""
16955
16956 #. type: verbatim
16957 #: ../src/guestfs-actions.pod:6821
16958 #, no-wrap
16959 msgid ""
16960 " int\n"
16961 " guestfs_umount (guestfs_h *g,\n"
16962 "                 const char *pathordevice);\n"
16963 "\n"
16964 msgstr ""
16965
16966 #. type: textblock
16967 #: ../src/guestfs-actions.pod:6825 ../fish/guestfish-actions.pod:4609
16968 msgid ""
16969 "This unmounts the given filesystem.  The filesystem may be specified either "
16970 "by its mountpoint (path) or the device which contains the filesystem."
16971 msgstr ""
16972
16973 #. type: =head2
16974 #: ../src/guestfs-actions.pod:6833
16975 msgid "guestfs_umount_all"
16976 msgstr ""
16977
16978 #. type: verbatim
16979 #: ../src/guestfs-actions.pod:6835
16980 #, no-wrap
16981 msgid ""
16982 " int\n"
16983 " guestfs_umount_all (guestfs_h *g);\n"
16984 "\n"
16985 msgstr ""
16986
16987 #. type: textblock
16988 #: ../src/guestfs-actions.pod:6838 ../fish/guestfish-actions.pod:4619
16989 msgid "This unmounts all mounted filesystems."
16990 msgstr ""
16991
16992 #. type: textblock
16993 #: ../src/guestfs-actions.pod:6840 ../fish/guestfish-actions.pod:4621
16994 msgid "Some internal mounts are not unmounted by this call."
16995 msgstr ""
16996
16997 #. type: =head2
16998 #: ../src/guestfs-actions.pod:6846
16999 msgid "guestfs_upload"
17000 msgstr ""
17001
17002 #. type: verbatim
17003 #: ../src/guestfs-actions.pod:6848
17004 #, no-wrap
17005 msgid ""
17006 " int\n"
17007 " guestfs_upload (guestfs_h *g,\n"
17008 "                 const char *filename,\n"
17009 "                 const char *remotefilename);\n"
17010 "\n"
17011 msgstr ""
17012
17013 #. type: textblock
17014 #: ../src/guestfs-actions.pod:6853 ../src/guestfs-actions.pod:6877 ../fish/guestfish-actions.pod:4627 ../fish/guestfish-actions.pod:4640
17015 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
17016 msgstr ""
17017
17018 #. type: textblock
17019 #: ../src/guestfs-actions.pod:6858
17020 msgid "See also C<guestfs_download>."
17021 msgstr ""
17022
17023 #. type: =head2
17024 #: ../src/guestfs-actions.pod:6869
17025 msgid "guestfs_upload_offset"
17026 msgstr ""
17027
17028 #. type: verbatim
17029 #: ../src/guestfs-actions.pod:6871
17030 #, no-wrap
17031 msgid ""
17032 " int\n"
17033 " guestfs_upload_offset (guestfs_h *g,\n"
17034 "                        const char *filename,\n"
17035 "                        const char *remotefilename,\n"
17036 "                        int64_t offset);\n"
17037 "\n"
17038 msgstr ""
17039
17040 #. type: textblock
17041 #: ../src/guestfs-actions.pod:6880 ../fish/guestfish-actions.pod:4643
17042 msgid ""
17043 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
17044 "The intention is to overwrite parts of existing files or devices, although "
17045 "if a non-existant file is specified then it is created with a \"hole\" "
17046 "before C<offset>.  The size of the data written is implicit in the size of "
17047 "the source C<filename>."
17048 msgstr ""
17049
17050 #. type: textblock
17051 #: ../src/guestfs-actions.pod:6887
17052 msgid ""
17053 "Note that there is no limit on the amount of data that can be uploaded with "
17054 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
17055 "full amount unless an error occurs."
17056 msgstr ""
17057
17058 #. type: textblock
17059 #: ../src/guestfs-actions.pod:6892
17060 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
17061 msgstr ""
17062
17063 #. type: =head2
17064 #: ../src/guestfs-actions.pod:6903
17065 msgid "guestfs_utimens"
17066 msgstr ""
17067
17068 #. type: verbatim
17069 #: ../src/guestfs-actions.pod:6905
17070 #, no-wrap
17071 msgid ""
17072 " int\n"
17073 " guestfs_utimens (guestfs_h *g,\n"
17074 "                  const char *path,\n"
17075 "                  int64_t atsecs,\n"
17076 "                  int64_t atnsecs,\n"
17077 "                  int64_t mtsecs,\n"
17078 "                  int64_t mtnsecs);\n"
17079 "\n"
17080 msgstr ""
17081
17082 #. type: textblock
17083 #: ../src/guestfs-actions.pod:6913 ../fish/guestfish-actions.pod:4663
17084 msgid "This command sets the timestamps of a file with nanosecond precision."
17085 msgstr ""
17086
17087 #. type: textblock
17088 #: ../src/guestfs-actions.pod:6916 ../fish/guestfish-actions.pod:4666
17089 msgid ""
17090 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
17091 "from the epoch."
17092 msgstr ""
17093
17094 #. type: textblock
17095 #: ../src/guestfs-actions.pod:6919 ../fish/guestfish-actions.pod:4669
17096 msgid ""
17097 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
17098 "nanoseconds from the epoch."
17099 msgstr ""
17100
17101 #. type: textblock
17102 #: ../src/guestfs-actions.pod:6922 ../fish/guestfish-actions.pod:4672
17103 msgid ""
17104 "If the C<*nsecs> field contains the special value C<-1> then the "
17105 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
17106 "ignored in this case)."
17107 msgstr ""
17108
17109 #. type: textblock
17110 #: ../src/guestfs-actions.pod:6926 ../fish/guestfish-actions.pod:4676
17111 msgid ""
17112 "If the C<*nsecs> field contains the special value C<-2> then the "
17113 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
17114 "in this case)."
17115 msgstr ""
17116
17117 #. type: =head2
17118 #: ../src/guestfs-actions.pod:6934 ../src/guestfs-structs.pod:175
17119 msgid "guestfs_version"
17120 msgstr ""
17121
17122 #. type: verbatim
17123 #: ../src/guestfs-actions.pod:6936
17124 #, no-wrap
17125 msgid ""
17126 " struct guestfs_version *\n"
17127 " guestfs_version (guestfs_h *g);\n"
17128 "\n"
17129 msgstr ""
17130
17131 #. type: textblock
17132 #: ../src/guestfs-actions.pod:6939 ../fish/guestfish-actions.pod:4684
17133 msgid "Return the libguestfs version number that the program is linked against."
17134 msgstr ""
17135
17136 #. type: textblock
17137 #: ../src/guestfs-actions.pod:6942 ../fish/guestfish-actions.pod:4687
17138 msgid ""
17139 "Note that because of dynamic linking this is not necessarily the version of "
17140 "libguestfs that you compiled against.  You can compile the program, and then "
17141 "at runtime dynamically link against a completely different C<libguestfs.so> "
17142 "library."
17143 msgstr ""
17144
17145 #. type: textblock
17146 #: ../src/guestfs-actions.pod:6947 ../fish/guestfish-actions.pod:4692
17147 msgid ""
17148 "This call was added in version C<1.0.58>.  In previous versions of "
17149 "libguestfs there was no way to get the version number.  From C code you can "
17150 "use dynamic linker functions to find out if this symbol exists (if it "
17151 "doesn't, then it's an earlier version)."
17152 msgstr ""
17153
17154 #. type: textblock
17155 #: ../src/guestfs-actions.pod:6953 ../fish/guestfish-actions.pod:4698
17156 msgid ""
17157 "The call returns a structure with four elements.  The first three (C<major>, "
17158 "C<minor> and C<release>) are numbers and correspond to the usual version "
17159 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
17160 "but may be used for distro-specific information."
17161 msgstr ""
17162
17163 #. type: textblock
17164 #: ../src/guestfs-actions.pod:6959 ../fish/guestfish-actions.pod:4704
17165 msgid "To construct the original version string: C<$major.$minor.$release$extra>"
17166 msgstr ""
17167
17168 #. type: textblock
17169 #: ../src/guestfs-actions.pod:6962 ../fish/guestfish-actions.pod:4707
17170 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
17171 msgstr ""
17172
17173 #. type: textblock
17174 #: ../src/guestfs-actions.pod:6964
17175 msgid ""
17176 "I<Note:> Don't use this call to test for availability of features.  In "
17177 "enterprise distributions we backport features from later versions into "
17178 "earlier versions, making this an unreliable way to test for features.  Use "
17179 "C<guestfs_available> instead."
17180 msgstr ""
17181
17182 #. type: textblock
17183 #: ../src/guestfs-actions.pod:6970
17184 msgid ""
17185 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
17186 "error.  I<The caller must call C<guestfs_free_version> after use>."
17187 msgstr ""
17188
17189 #. type: textblock
17190 #: ../src/guestfs-actions.pod:6974
17191 msgid "(Added in 1.0.58)"
17192 msgstr ""
17193
17194 #. type: =head2
17195 #: ../src/guestfs-actions.pod:6976
17196 msgid "guestfs_vfs_label"
17197 msgstr ""
17198
17199 #. type: verbatim
17200 #: ../src/guestfs-actions.pod:6978
17201 #, no-wrap
17202 msgid ""
17203 " char *\n"
17204 " guestfs_vfs_label (guestfs_h *g,\n"
17205 "                    const char *device);\n"
17206 "\n"
17207 msgstr ""
17208
17209 #. type: textblock
17210 #: ../src/guestfs-actions.pod:6982 ../fish/guestfish-actions.pod:4719
17211 msgid "This returns the filesystem label of the filesystem on C<device>."
17212 msgstr ""
17213
17214 #. type: textblock
17215 #: ../src/guestfs-actions.pod:6985 ../fish/guestfish-actions.pod:4722
17216 msgid "If the filesystem is unlabeled, this returns the empty string."
17217 msgstr ""
17218
17219 #. type: textblock
17220 #: ../src/guestfs-actions.pod:6987
17221 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
17222 msgstr ""
17223
17224 #. type: textblock
17225 #: ../src/guestfs-actions.pod:6992 ../src/guestfs-actions.pod:7029
17226 msgid "(Added in 1.3.18)"
17227 msgstr ""
17228
17229 #. type: =head2
17230 #: ../src/guestfs-actions.pod:6994
17231 msgid "guestfs_vfs_type"
17232 msgstr ""
17233
17234 #. type: verbatim
17235 #: ../src/guestfs-actions.pod:6996
17236 #, no-wrap
17237 msgid ""
17238 " char *\n"
17239 " guestfs_vfs_type (guestfs_h *g,\n"
17240 "                   const char *device);\n"
17241 "\n"
17242 msgstr ""
17243
17244 #. type: textblock
17245 #: ../src/guestfs-actions.pod:7000 ../fish/guestfish-actions.pod:4730
17246 msgid ""
17247 "This command gets the filesystem type corresponding to the filesystem on "
17248 "C<device>."
17249 msgstr ""
17250
17251 #. type: textblock
17252 #: ../src/guestfs-actions.pod:7003 ../fish/guestfish-actions.pod:4733
17253 msgid ""
17254 "For most filesystems, the result is the name of the Linux VFS module which "
17255 "would be used to mount this filesystem if you mounted it without specifying "
17256 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
17257 msgstr ""
17258
17259 #. type: =head2
17260 #: ../src/guestfs-actions.pod:7013
17261 msgid "guestfs_vfs_uuid"
17262 msgstr ""
17263
17264 #. type: verbatim
17265 #: ../src/guestfs-actions.pod:7015
17266 #, no-wrap
17267 msgid ""
17268 " char *\n"
17269 " guestfs_vfs_uuid (guestfs_h *g,\n"
17270 "                   const char *device);\n"
17271 "\n"
17272 msgstr ""
17273
17274 #. type: textblock
17275 #: ../src/guestfs-actions.pod:7019 ../fish/guestfish-actions.pod:4742
17276 msgid "This returns the filesystem UUID of the filesystem on C<device>."
17277 msgstr ""
17278
17279 #. type: textblock
17280 #: ../src/guestfs-actions.pod:7022 ../fish/guestfish-actions.pod:4745
17281 msgid "If the filesystem does not have a UUID, this returns the empty string."
17282 msgstr ""
17283
17284 #. type: textblock
17285 #: ../src/guestfs-actions.pod:7024
17286 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
17287 msgstr ""
17288
17289 #. type: =head2
17290 #: ../src/guestfs-actions.pod:7031
17291 msgid "guestfs_vg_activate"
17292 msgstr ""
17293
17294 #. type: verbatim
17295 #: ../src/guestfs-actions.pod:7033
17296 #, no-wrap
17297 msgid ""
17298 " int\n"
17299 " guestfs_vg_activate (guestfs_h *g,\n"
17300 "                      int activate,\n"
17301 "                      char *const *volgroups);\n"
17302 "\n"
17303 msgstr ""
17304
17305 #. type: textblock
17306 #: ../src/guestfs-actions.pod:7038 ../fish/guestfish-actions.pod:4753
17307 msgid ""
17308 "This command activates or (if C<activate> is false) deactivates all logical "
17309 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
17310 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
17311 "deactivated, then those devices disappear."
17312 msgstr ""
17313
17314 #. type: textblock
17315 #: ../src/guestfs-actions.pod:7044 ../fish/guestfish-actions.pod:4759
17316 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
17317 msgstr ""
17318
17319 #. type: textblock
17320 #: ../src/guestfs-actions.pod:7046 ../fish/guestfish-actions.pod:4761
17321 msgid ""
17322 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
17323 "activated or deactivated."
17324 msgstr ""
17325
17326 #. type: =head2
17327 #: ../src/guestfs-actions.pod:7053
17328 msgid "guestfs_vg_activate_all"
17329 msgstr ""
17330
17331 #. type: verbatim
17332 #: ../src/guestfs-actions.pod:7055
17333 #, no-wrap
17334 msgid ""
17335 " int\n"
17336 " guestfs_vg_activate_all (guestfs_h *g,\n"
17337 "                          int activate);\n"
17338 "\n"
17339 msgstr ""
17340
17341 #. type: textblock
17342 #: ../src/guestfs-actions.pod:7059 ../fish/guestfish-actions.pod:4768
17343 msgid ""
17344 "This command activates or (if C<activate> is false) deactivates all logical "
17345 "volumes in all volume groups.  If activated, then they are made known to the "
17346 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
17347 "those devices disappear."
17348 msgstr ""
17349
17350 #. type: textblock
17351 #: ../src/guestfs-actions.pod:7065 ../fish/guestfish-actions.pod:4774
17352 msgid "This command is the same as running C<vgchange -a y|n>"
17353 msgstr ""
17354
17355 #. type: =head2
17356 #: ../src/guestfs-actions.pod:7071
17357 msgid "guestfs_vgcreate"
17358 msgstr ""
17359
17360 #. type: verbatim
17361 #: ../src/guestfs-actions.pod:7073
17362 #, no-wrap
17363 msgid ""
17364 " int\n"
17365 " guestfs_vgcreate (guestfs_h *g,\n"
17366 "                   const char *volgroup,\n"
17367 "                   char *const *physvols);\n"
17368 "\n"
17369 msgstr ""
17370
17371 #. type: textblock
17372 #: ../src/guestfs-actions.pod:7078 ../fish/guestfish-actions.pod:4780
17373 msgid ""
17374 "This creates an LVM volume group called C<volgroup> from the non-empty list "
17375 "of physical volumes C<physvols>."
17376 msgstr ""
17377
17378 #. type: =head2
17379 #: ../src/guestfs-actions.pod:7085
17380 msgid "guestfs_vglvuuids"
17381 msgstr ""
17382
17383 #. type: verbatim
17384 #: ../src/guestfs-actions.pod:7087
17385 #, no-wrap
17386 msgid ""
17387 " char **\n"
17388 " guestfs_vglvuuids (guestfs_h *g,\n"
17389 "                    const char *vgname);\n"
17390 "\n"
17391 msgstr ""
17392
17393 #. type: textblock
17394 #: ../src/guestfs-actions.pod:7091 ../fish/guestfish-actions.pod:4787
17395 msgid ""
17396 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
17397 "volumes created in this volume group."
17398 msgstr ""
17399
17400 #. type: textblock
17401 #: ../src/guestfs-actions.pod:7094
17402 msgid ""
17403 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
17404 "associate logical volumes and volume groups."
17405 msgstr ""
17406
17407 #. type: textblock
17408 #: ../src/guestfs-actions.pod:7097
17409 msgid "See also C<guestfs_vgpvuuids>."
17410 msgstr ""
17411
17412 #. type: =head2
17413 #: ../src/guestfs-actions.pod:7105
17414 msgid "guestfs_vgpvuuids"
17415 msgstr ""
17416
17417 #. type: verbatim
17418 #: ../src/guestfs-actions.pod:7107
17419 #, no-wrap
17420 msgid ""
17421 " char **\n"
17422 " guestfs_vgpvuuids (guestfs_h *g,\n"
17423 "                    const char *vgname);\n"
17424 "\n"
17425 msgstr ""
17426
17427 #. type: textblock
17428 #: ../src/guestfs-actions.pod:7111 ../fish/guestfish-actions.pod:4799
17429 msgid ""
17430 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
17431 "volumes that this volume group resides on."
17432 msgstr ""
17433
17434 #. type: textblock
17435 #: ../src/guestfs-actions.pod:7114
17436 msgid ""
17437 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
17438 "associate physical volumes and volume groups."
17439 msgstr ""
17440
17441 #. type: textblock
17442 #: ../src/guestfs-actions.pod:7117
17443 msgid "See also C<guestfs_vglvuuids>."
17444 msgstr ""
17445
17446 #. type: =head2
17447 #: ../src/guestfs-actions.pod:7125
17448 msgid "guestfs_vgremove"
17449 msgstr ""
17450
17451 #. type: verbatim
17452 #: ../src/guestfs-actions.pod:7127
17453 #, no-wrap
17454 msgid ""
17455 " int\n"
17456 " guestfs_vgremove (guestfs_h *g,\n"
17457 "                   const char *vgname);\n"
17458 "\n"
17459 msgstr ""
17460
17461 #. type: textblock
17462 #: ../src/guestfs-actions.pod:7131 ../fish/guestfish-actions.pod:4811
17463 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
17464 msgstr ""
17465
17466 #. type: textblock
17467 #: ../src/guestfs-actions.pod:7133 ../fish/guestfish-actions.pod:4813
17468 msgid "This also forcibly removes all logical volumes in the volume group (if any)."
17469 msgstr ""
17470
17471 #. type: =head2
17472 #: ../src/guestfs-actions.pod:7140
17473 msgid "guestfs_vgrename"
17474 msgstr ""
17475
17476 #. type: verbatim
17477 #: ../src/guestfs-actions.pod:7142
17478 #, no-wrap
17479 msgid ""
17480 " int\n"
17481 " guestfs_vgrename (guestfs_h *g,\n"
17482 "                   const char *volgroup,\n"
17483 "                   const char *newvolgroup);\n"
17484 "\n"
17485 msgstr ""
17486
17487 #. type: textblock
17488 #: ../src/guestfs-actions.pod:7147 ../fish/guestfish-actions.pod:4820
17489 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
17490 msgstr ""
17491
17492 #. type: =head2
17493 #: ../src/guestfs-actions.pod:7153
17494 msgid "guestfs_vgs"
17495 msgstr ""
17496
17497 #. type: verbatim
17498 #: ../src/guestfs-actions.pod:7155
17499 #, no-wrap
17500 msgid ""
17501 " char **\n"
17502 " guestfs_vgs (guestfs_h *g);\n"
17503 "\n"
17504 msgstr ""
17505
17506 #. type: textblock
17507 #: ../src/guestfs-actions.pod:7158 ../fish/guestfish-actions.pod:4826
17508 msgid ""
17509 "List all the volumes groups detected.  This is the equivalent of the "
17510 "L<vgs(8)> command."
17511 msgstr ""
17512
17513 #. type: textblock
17514 #: ../src/guestfs-actions.pod:7161 ../fish/guestfish-actions.pod:4829
17515 msgid ""
17516 "This returns a list of just the volume group names that were detected "
17517 "(eg. C<VolGroup00>)."
17518 msgstr ""
17519
17520 #. type: textblock
17521 #: ../src/guestfs-actions.pod:7164
17522 msgid "See also C<guestfs_vgs_full>."
17523 msgstr ""
17524
17525 #. type: =head2
17526 #: ../src/guestfs-actions.pod:7172
17527 msgid "guestfs_vgs_full"
17528 msgstr ""
17529
17530 #. type: verbatim
17531 #: ../src/guestfs-actions.pod:7174
17532 #, no-wrap
17533 msgid ""
17534 " struct guestfs_lvm_vg_list *\n"
17535 " guestfs_vgs_full (guestfs_h *g);\n"
17536 "\n"
17537 msgstr ""
17538
17539 #. type: textblock
17540 #: ../src/guestfs-actions.pod:7177 ../fish/guestfish-actions.pod:4838
17541 msgid ""
17542 "List all the volumes groups detected.  This is the equivalent of the "
17543 "L<vgs(8)> command.  The \"full\" version includes all fields."
17544 msgstr ""
17545
17546 #. type: textblock
17547 #: ../src/guestfs-actions.pod:7180
17548 msgid ""
17549 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
17550 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after "
17551 "use>."
17552 msgstr ""
17553
17554 #. type: =head2
17555 #: ../src/guestfs-actions.pod:7186
17556 msgid "guestfs_vgscan"
17557 msgstr ""
17558
17559 #. type: verbatim
17560 #: ../src/guestfs-actions.pod:7188
17561 #, no-wrap
17562 msgid ""
17563 " int\n"
17564 " guestfs_vgscan (guestfs_h *g);\n"
17565 "\n"
17566 msgstr ""
17567
17568 #. type: textblock
17569 #: ../src/guestfs-actions.pod:7191 ../fish/guestfish-actions.pod:4845
17570 msgid ""
17571 "This rescans all block devices and rebuilds the list of LVM physical "
17572 "volumes, volume groups and logical volumes."
17573 msgstr ""
17574
17575 #. type: =head2
17576 #: ../src/guestfs-actions.pod:7198
17577 msgid "guestfs_vguuid"
17578 msgstr ""
17579
17580 #. type: verbatim
17581 #: ../src/guestfs-actions.pod:7200
17582 #, no-wrap
17583 msgid ""
17584 " char *\n"
17585 " guestfs_vguuid (guestfs_h *g,\n"
17586 "                 const char *vgname);\n"
17587 "\n"
17588 msgstr ""
17589
17590 #. type: textblock
17591 #: ../src/guestfs-actions.pod:7204 ../fish/guestfish-actions.pod:4852
17592 msgid "This command returns the UUID of the LVM VG named C<vgname>."
17593 msgstr ""
17594
17595 #. type: =head2
17596 #: ../src/guestfs-actions.pod:7211
17597 msgid "guestfs_wait_ready"
17598 msgstr ""
17599
17600 #. type: verbatim
17601 #: ../src/guestfs-actions.pod:7213
17602 #, no-wrap
17603 msgid ""
17604 " int\n"
17605 " guestfs_wait_ready (guestfs_h *g);\n"
17606 "\n"
17607 msgstr ""
17608
17609 #. type: textblock
17610 #: ../src/guestfs-actions.pod:7216
17611 msgid "This function is a no op."
17612 msgstr ""
17613
17614 #. type: textblock
17615 #: ../src/guestfs-actions.pod:7218
17616 msgid ""
17617 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
17618 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
17619 "is no longer necessary because C<guestfs_launch> now does the waiting."
17620 msgstr ""
17621
17622 #. type: textblock
17623 #: ../src/guestfs-actions.pod:7223
17624 msgid ""
17625 "If you see any calls to this function in code then you can just remove them, "
17626 "unless you want to retain compatibility with older versions of the API."
17627 msgstr ""
17628
17629 #. type: textblock
17630 #: ../src/guestfs-actions.pod:7229
17631 msgid "This function is deprecated.  In new code, use the C<launch> call instead."
17632 msgstr ""
17633
17634 #. type: =head2
17635 #: ../src/guestfs-actions.pod:7238
17636 msgid "guestfs_wc_c"
17637 msgstr ""
17638
17639 #. type: verbatim
17640 #: ../src/guestfs-actions.pod:7240
17641 #, no-wrap
17642 msgid ""
17643 " int\n"
17644 " guestfs_wc_c (guestfs_h *g,\n"
17645 "               const char *path);\n"
17646 "\n"
17647 msgstr ""
17648
17649 #. type: textblock
17650 #: ../src/guestfs-actions.pod:7244 ../fish/guestfish-actions.pod:4858
17651 msgid ""
17652 "This command counts the characters in a file, using the C<wc -c> external "
17653 "command."
17654 msgstr ""
17655
17656 #. type: =head2
17657 #: ../src/guestfs-actions.pod:7251
17658 msgid "guestfs_wc_l"
17659 msgstr ""
17660
17661 #. type: verbatim
17662 #: ../src/guestfs-actions.pod:7253
17663 #, no-wrap
17664 msgid ""
17665 " int\n"
17666 " guestfs_wc_l (guestfs_h *g,\n"
17667 "               const char *path);\n"
17668 "\n"
17669 msgstr ""
17670
17671 #. type: textblock
17672 #: ../src/guestfs-actions.pod:7257 ../fish/guestfish-actions.pod:4865
17673 msgid ""
17674 "This command counts the lines in a file, using the C<wc -l> external "
17675 "command."
17676 msgstr ""
17677
17678 #. type: =head2
17679 #: ../src/guestfs-actions.pod:7264
17680 msgid "guestfs_wc_w"
17681 msgstr ""
17682
17683 #. type: verbatim
17684 #: ../src/guestfs-actions.pod:7266
17685 #, no-wrap
17686 msgid ""
17687 " int\n"
17688 " guestfs_wc_w (guestfs_h *g,\n"
17689 "               const char *path);\n"
17690 "\n"
17691 msgstr ""
17692
17693 #. type: textblock
17694 #: ../src/guestfs-actions.pod:7270 ../fish/guestfish-actions.pod:4872
17695 msgid ""
17696 "This command counts the words in a file, using the C<wc -w> external "
17697 "command."
17698 msgstr ""
17699
17700 #. type: =head2
17701 #: ../src/guestfs-actions.pod:7277
17702 msgid "guestfs_write"
17703 msgstr ""
17704
17705 #. type: verbatim
17706 #: ../src/guestfs-actions.pod:7279
17707 #, no-wrap
17708 msgid ""
17709 " int\n"
17710 " guestfs_write (guestfs_h *g,\n"
17711 "                const char *path,\n"
17712 "                const char *content,\n"
17713 "                size_t content_size);\n"
17714 "\n"
17715 msgstr ""
17716
17717 #. type: textblock
17718 #: ../src/guestfs-actions.pod:7285 ../fish/guestfish-actions.pod:4879
17719 msgid ""
17720 "This call creates a file called C<path>.  The content of the file is the "
17721 "string C<content> (which can contain any 8 bit data)."
17722 msgstr ""
17723
17724 #. type: =head2
17725 #: ../src/guestfs-actions.pod:7295
17726 msgid "guestfs_write_file"
17727 msgstr ""
17728
17729 #. type: verbatim
17730 #: ../src/guestfs-actions.pod:7297
17731 #, no-wrap
17732 msgid ""
17733 " int\n"
17734 " guestfs_write_file (guestfs_h *g,\n"
17735 "                     const char *path,\n"
17736 "                     const char *content,\n"
17737 "                     int size);\n"
17738 "\n"
17739 msgstr ""
17740
17741 #. type: textblock
17742 #: ../src/guestfs-actions.pod:7303 ../fish/guestfish-actions.pod:4889
17743 msgid ""
17744 "This call creates a file called C<path>.  The contents of the file is the "
17745 "string C<content> (which can contain any 8 bit data), with length C<size>."
17746 msgstr ""
17747
17748 #. type: textblock
17749 #: ../src/guestfs-actions.pod:7307 ../fish/guestfish-actions.pod:4893
17750 msgid ""
17751 "As a special case, if C<size> is C<0> then the length is calculated using "
17752 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
17753 msgstr ""
17754
17755 #. type: textblock
17756 #: ../src/guestfs-actions.pod:7311 ../fish/guestfish-actions.pod:4897
17757 msgid ""
17758 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
17759 "I<not> work, even if the length is specified."
17760 msgstr ""
17761
17762 #. type: textblock
17763 #: ../src/guestfs-actions.pod:7319 ../fish/guestfish-actions.pod:4903
17764 msgid "This function is deprecated.  In new code, use the C<write> call instead."
17765 msgstr ""
17766
17767 #. type: =head2
17768 #: ../src/guestfs-actions.pod:7328
17769 msgid "guestfs_zegrep"
17770 msgstr ""
17771
17772 #. type: verbatim
17773 #: ../src/guestfs-actions.pod:7330
17774 #, no-wrap
17775 msgid ""
17776 " char **\n"
17777 " guestfs_zegrep (guestfs_h *g,\n"
17778 "                 const char *regex,\n"
17779 "                 const char *path);\n"
17780 "\n"
17781 msgstr ""
17782
17783 #. type: textblock
17784 #: ../src/guestfs-actions.pod:7335 ../fish/guestfish-actions.pod:4914
17785 msgid "This calls the external C<zegrep> program and returns the matching lines."
17786 msgstr ""
17787
17788 #. type: =head2
17789 #: ../src/guestfs-actions.pod:7347
17790 msgid "guestfs_zegrepi"
17791 msgstr ""
17792
17793 #. type: verbatim
17794 #: ../src/guestfs-actions.pod:7349
17795 #, no-wrap
17796 msgid ""
17797 " char **\n"
17798 " guestfs_zegrepi (guestfs_h *g,\n"
17799 "                  const char *regex,\n"
17800 "                  const char *path);\n"
17801 "\n"
17802 msgstr ""
17803
17804 #. type: textblock
17805 #: ../src/guestfs-actions.pod:7354 ../fish/guestfish-actions.pod:4924
17806 msgid "This calls the external C<zegrep -i> program and returns the matching lines."
17807 msgstr ""
17808
17809 #. type: =head2
17810 #: ../src/guestfs-actions.pod:7366
17811 msgid "guestfs_zero"
17812 msgstr ""
17813
17814 #. type: verbatim
17815 #: ../src/guestfs-actions.pod:7368
17816 #, no-wrap
17817 msgid ""
17818 " int\n"
17819 " guestfs_zero (guestfs_h *g,\n"
17820 "               const char *device);\n"
17821 "\n"
17822 msgstr ""
17823
17824 #. type: textblock
17825 #: ../src/guestfs-actions.pod:7372 ../fish/guestfish-actions.pod:4934
17826 msgid "This command writes zeroes over the first few blocks of C<device>."
17827 msgstr ""
17828
17829 #. type: textblock
17830 #: ../src/guestfs-actions.pod:7374 ../fish/guestfish-actions.pod:4936
17831 msgid ""
17832 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
17833 "securely wipe the device).  It should be sufficient to remove any partition "
17834 "tables, filesystem superblocks and so on."
17835 msgstr ""
17836
17837 #. type: textblock
17838 #: ../src/guestfs-actions.pod:7378
17839 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
17840 msgstr ""
17841
17842 #. type: =head2
17843 #: ../src/guestfs-actions.pod:7389
17844 msgid "guestfs_zero_device"
17845 msgstr ""
17846
17847 #. type: verbatim
17848 #: ../src/guestfs-actions.pod:7391
17849 #, no-wrap
17850 msgid ""
17851 " int\n"
17852 " guestfs_zero_device (guestfs_h *g,\n"
17853 "                      const char *device);\n"
17854 "\n"
17855 msgstr ""
17856
17857 #. type: textblock
17858 #: ../src/guestfs-actions.pod:7395
17859 msgid ""
17860 "This command writes zeroes over the entire C<device>.  Compare with "
17861 "C<guestfs_zero> which just zeroes the first few blocks of a device."
17862 msgstr ""
17863
17864 #. type: textblock
17865 #: ../src/guestfs-actions.pod:7409
17866 msgid "(Added in 1.3.1)"
17867 msgstr ""
17868
17869 #. type: =head2
17870 #: ../src/guestfs-actions.pod:7411
17871 msgid "guestfs_zerofree"
17872 msgstr ""
17873
17874 #. type: verbatim
17875 #: ../src/guestfs-actions.pod:7413
17876 #, no-wrap
17877 msgid ""
17878 " int\n"
17879 " guestfs_zerofree (guestfs_h *g,\n"
17880 "                   const char *device);\n"
17881 "\n"
17882 msgstr ""
17883
17884 #. type: textblock
17885 #: ../src/guestfs-actions.pod:7417 ../fish/guestfish-actions.pod:4957
17886 msgid ""
17887 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
17888 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
17889 "possible to compress the filesystem more effectively."
17890 msgstr ""
17891
17892 #. type: textblock
17893 #: ../src/guestfs-actions.pod:7422 ../fish/guestfish-actions.pod:4962
17894 msgid "You should B<not> run this program if the filesystem is mounted."
17895 msgstr ""
17896
17897 #. type: textblock
17898 #: ../src/guestfs-actions.pod:7425 ../fish/guestfish-actions.pod:4965
17899 msgid ""
17900 "It is possible that using this program can damage the filesystem or data on "
17901 "the filesystem."
17902 msgstr ""
17903
17904 #. type: =head2
17905 #: ../src/guestfs-actions.pod:7432
17906 msgid "guestfs_zfgrep"
17907 msgstr ""
17908
17909 #. type: verbatim
17910 #: ../src/guestfs-actions.pod:7434
17911 #, no-wrap
17912 msgid ""
17913 " char **\n"
17914 " guestfs_zfgrep (guestfs_h *g,\n"
17915 "                 const char *pattern,\n"
17916 "                 const char *path);\n"
17917 "\n"
17918 msgstr ""
17919
17920 #. type: textblock
17921 #: ../src/guestfs-actions.pod:7439 ../fish/guestfish-actions.pod:4972
17922 msgid "This calls the external C<zfgrep> program and returns the matching lines."
17923 msgstr ""
17924
17925 #. type: =head2
17926 #: ../src/guestfs-actions.pod:7451
17927 msgid "guestfs_zfgrepi"
17928 msgstr ""
17929
17930 #. type: verbatim
17931 #: ../src/guestfs-actions.pod:7453
17932 #, no-wrap
17933 msgid ""
17934 " char **\n"
17935 " guestfs_zfgrepi (guestfs_h *g,\n"
17936 "                  const char *pattern,\n"
17937 "                  const char *path);\n"
17938 "\n"
17939 msgstr ""
17940
17941 #. type: textblock
17942 #: ../src/guestfs-actions.pod:7458 ../fish/guestfish-actions.pod:4982
17943 msgid "This calls the external C<zfgrep -i> program and returns the matching lines."
17944 msgstr ""
17945
17946 #. type: =head2
17947 #: ../src/guestfs-actions.pod:7470
17948 msgid "guestfs_zfile"
17949 msgstr ""
17950
17951 #. type: verbatim
17952 #: ../src/guestfs-actions.pod:7472
17953 #, no-wrap
17954 msgid ""
17955 " char *\n"
17956 " guestfs_zfile (guestfs_h *g,\n"
17957 "                const char *meth,\n"
17958 "                const char *path);\n"
17959 "\n"
17960 msgstr ""
17961
17962 #. type: textblock
17963 #: ../src/guestfs-actions.pod:7477 ../fish/guestfish-actions.pod:4992
17964 msgid "This command runs C<file> after first decompressing C<path> using C<method>."
17965 msgstr ""
17966
17967 #. type: textblock
17968 #: ../src/guestfs-actions.pod:7480 ../fish/guestfish-actions.pod:4995
17969 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
17970 msgstr ""
17971
17972 #. type: textblock
17973 #: ../src/guestfs-actions.pod:7482
17974 msgid ""
17975 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
17976 "files."
17977 msgstr ""
17978
17979 #. type: textblock
17980 #: ../src/guestfs-actions.pod:7488 ../fish/guestfish-actions.pod:5000
17981 msgid "This function is deprecated.  In new code, use the C<file> call instead."
17982 msgstr ""
17983
17984 #. type: =head2
17985 #: ../src/guestfs-actions.pod:7497
17986 msgid "guestfs_zgrep"
17987 msgstr ""
17988
17989 #. type: verbatim
17990 #: ../src/guestfs-actions.pod:7499
17991 #, no-wrap
17992 msgid ""
17993 " char **\n"
17994 " guestfs_zgrep (guestfs_h *g,\n"
17995 "                const char *regex,\n"
17996 "                const char *path);\n"
17997 "\n"
17998 msgstr ""
17999
18000 #. type: textblock
18001 #: ../src/guestfs-actions.pod:7504 ../fish/guestfish-actions.pod:5011
18002 msgid "This calls the external C<zgrep> program and returns the matching lines."
18003 msgstr ""
18004
18005 #. type: =head2
18006 #: ../src/guestfs-actions.pod:7516
18007 msgid "guestfs_zgrepi"
18008 msgstr ""
18009
18010 #. type: verbatim
18011 #: ../src/guestfs-actions.pod:7518
18012 #, no-wrap
18013 msgid ""
18014 " char **\n"
18015 " guestfs_zgrepi (guestfs_h *g,\n"
18016 "                 const char *regex,\n"
18017 "                 const char *path);\n"
18018 "\n"
18019 msgstr ""
18020
18021 #. type: textblock
18022 #: ../src/guestfs-actions.pod:7523 ../fish/guestfish-actions.pod:5021
18023 msgid "This calls the external C<zgrep -i> program and returns the matching lines."
18024 msgstr ""
18025
18026 #. type: =item
18027 #: ../src/guestfs-availability.pod:3
18028 msgid "B<augeas>"
18029 msgstr ""
18030
18031 #. type: textblock
18032 #: ../src/guestfs-availability.pod:5
18033 msgid ""
18034 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> "
18035 "L</guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> "
18036 "L</guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> "
18037 "L</guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> "
18038 "L</guestfs_aug_rm> L</guestfs_aug_save> L</guestfs_aug_set>"
18039 msgstr ""
18040
18041 #. type: =item
18042 #: ../src/guestfs-availability.pod:21
18043 msgid "B<inotify>"
18044 msgstr ""
18045
18046 #. type: textblock
18047 #: ../src/guestfs-availability.pod:23
18048 msgid ""
18049 "The following functions: L</guestfs_inotify_add_watch> "
18050 "L</guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> "
18051 "L</guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
18052 msgstr ""
18053
18054 #. type: =item
18055 #: ../src/guestfs-availability.pod:31
18056 msgid "B<linuxfsuuid>"
18057 msgstr ""
18058
18059 #. type: textblock
18060 #: ../src/guestfs-availability.pod:33
18061 msgid ""
18062 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> "
18063 "L</guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
18064 msgstr ""
18065
18066 #. type: =item
18067 #: ../src/guestfs-availability.pod:40
18068 msgid "B<linuxmodules>"
18069 msgstr ""
18070
18071 #. type: textblock
18072 #: ../src/guestfs-availability.pod:42
18073 msgid "The following functions: L</guestfs_modprobe>"
18074 msgstr ""
18075
18076 #. type: =item
18077 #: ../src/guestfs-availability.pod:45
18078 msgid "B<linuxxattrs>"
18079 msgstr ""
18080
18081 #. type: textblock
18082 #: ../src/guestfs-availability.pod:47
18083 msgid ""
18084 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> "
18085 "L</guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> "
18086 "L</guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> "
18087 "L</guestfs_setxattr>"
18088 msgstr ""
18089
18090 #. type: =item
18091 #: ../src/guestfs-availability.pod:58
18092 msgid "B<luks>"
18093 msgstr ""
18094
18095 #. type: textblock
18096 #: ../src/guestfs-availability.pod:60
18097 msgid ""
18098 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> "
18099 "L</guestfs_luks_format> L</guestfs_luks_format_cipher> "
18100 "L</guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
18101 msgstr ""
18102
18103 #. type: =item
18104 #: ../src/guestfs-availability.pod:69
18105 msgid "B<lvm2>"
18106 msgstr ""
18107
18108 #. type: textblock
18109 #: ../src/guestfs-availability.pod:71
18110 msgid ""
18111 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> "
18112 "L</guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> "
18113 "L</guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> "
18114 "L</guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> "
18115 "L</guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> "
18116 "L</guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> "
18117 "L</guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> "
18118 "L</guestfs_vgs_full>"
18119 msgstr ""
18120
18121 #. type: =item
18122 #: ../src/guestfs-availability.pod:94
18123 msgid "B<mknod>"
18124 msgstr ""
18125
18126 #. type: textblock
18127 #: ../src/guestfs-availability.pod:96
18128 msgid ""
18129 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> "
18130 "L</guestfs_mknod_b> L</guestfs_mknod_c>"
18131 msgstr ""
18132
18133 #. type: =item
18134 #: ../src/guestfs-availability.pod:102
18135 msgid "B<ntfs3g>"
18136 msgstr ""
18137
18138 #. type: textblock
18139 #: ../src/guestfs-availability.pod:104
18140 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
18141 msgstr ""
18142
18143 #. type: =item
18144 #: ../src/guestfs-availability.pod:107
18145 msgid "B<ntfsprogs>"
18146 msgstr ""
18147
18148 #. type: textblock
18149 #: ../src/guestfs-availability.pod:109
18150 msgid "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
18151 msgstr ""
18152
18153 #. type: =item
18154 #: ../src/guestfs-availability.pod:113
18155 msgid "B<realpath>"
18156 msgstr ""
18157
18158 #. type: textblock
18159 #: ../src/guestfs-availability.pod:115
18160 msgid "The following functions: L</guestfs_realpath>"
18161 msgstr ""
18162
18163 #. type: =item
18164 #: ../src/guestfs-availability.pod:118
18165 msgid "B<scrub>"
18166 msgstr ""
18167
18168 #. type: textblock
18169 #: ../src/guestfs-availability.pod:120
18170 msgid ""
18171 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> "
18172 "L</guestfs_scrub_freespace>"
18173 msgstr ""
18174
18175 #. type: =item
18176 #: ../src/guestfs-availability.pod:125
18177 msgid "B<selinux>"
18178 msgstr ""
18179
18180 #. type: textblock
18181 #: ../src/guestfs-availability.pod:127
18182 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
18183 msgstr ""
18184
18185 #. type: =item
18186 #: ../src/guestfs-availability.pod:131
18187 msgid "B<xz>"
18188 msgstr ""
18189
18190 #. type: textblock
18191 #: ../src/guestfs-availability.pod:133
18192 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
18193 msgstr ""
18194
18195 #. type: =item
18196 #: ../src/guestfs-availability.pod:137
18197 msgid "B<zerofree>"
18198 msgstr ""
18199
18200 #. type: textblock
18201 #: ../src/guestfs-availability.pod:139
18202 msgid "The following functions: L</guestfs_zerofree>"
18203 msgstr ""
18204
18205 #. type: =head2
18206 #: ../src/guestfs-structs.pod:1
18207 msgid "guestfs_int_bool"
18208 msgstr ""
18209
18210 #. type: verbatim
18211 #: ../src/guestfs-structs.pod:3
18212 #, no-wrap
18213 msgid ""
18214 " struct guestfs_int_bool {\n"
18215 "   int32_t i;\n"
18216 "   int32_t b;\n"
18217 " };\n"
18218 " \n"
18219 msgstr ""
18220
18221 #. type: verbatim
18222 #: ../src/guestfs-structs.pod:8
18223 #, no-wrap
18224 msgid ""
18225 " struct guestfs_int_bool_list {\n"
18226 "   uint32_t len; /* Number of elements in list. */\n"
18227 "   struct guestfs_int_bool *val; /* Elements. */\n"
18228 " };\n"
18229 " \n"
18230 msgstr ""
18231
18232 #. type: verbatim
18233 #: ../src/guestfs-structs.pod:13
18234 #, no-wrap
18235 msgid ""
18236 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
18237 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
18238 "\n"
18239 msgstr ""
18240
18241 #. type: =head2
18242 #: ../src/guestfs-structs.pod:16
18243 msgid "guestfs_lvm_pv"
18244 msgstr ""
18245
18246 #. type: verbatim
18247 #: ../src/guestfs-structs.pod:18
18248 #, no-wrap
18249 msgid ""
18250 " struct guestfs_lvm_pv {\n"
18251 "   char *pv_name;\n"
18252 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18253 "*/\n"
18254 "   char pv_uuid[32];\n"
18255 "   char *pv_fmt;\n"
18256 "   uint64_t pv_size;\n"
18257 "   uint64_t dev_size;\n"
18258 "   uint64_t pv_free;\n"
18259 "   uint64_t pv_used;\n"
18260 "   char *pv_attr;\n"
18261 "   int64_t pv_pe_count;\n"
18262 "   int64_t pv_pe_alloc_count;\n"
18263 "   char *pv_tags;\n"
18264 "   uint64_t pe_start;\n"
18265 "   int64_t pv_mda_count;\n"
18266 "   uint64_t pv_mda_free;\n"
18267 " };\n"
18268 " \n"
18269 msgstr ""
18270
18271 #. type: verbatim
18272 #: ../src/guestfs-structs.pod:36
18273 #, no-wrap
18274 msgid ""
18275 " struct guestfs_lvm_pv_list {\n"
18276 "   uint32_t len; /* Number of elements in list. */\n"
18277 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
18278 " };\n"
18279 " \n"
18280 msgstr ""
18281
18282 #. type: verbatim
18283 #: ../src/guestfs-structs.pod:41
18284 #, no-wrap
18285 msgid ""
18286 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
18287 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
18288 "\n"
18289 msgstr ""
18290
18291 #. type: =head2
18292 #: ../src/guestfs-structs.pod:44
18293 msgid "guestfs_lvm_vg"
18294 msgstr ""
18295
18296 #. type: verbatim
18297 #: ../src/guestfs-structs.pod:46
18298 #, no-wrap
18299 msgid ""
18300 " struct guestfs_lvm_vg {\n"
18301 "   char *vg_name;\n"
18302 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18303 "*/\n"
18304 "   char vg_uuid[32];\n"
18305 "   char *vg_fmt;\n"
18306 "   char *vg_attr;\n"
18307 "   uint64_t vg_size;\n"
18308 "   uint64_t vg_free;\n"
18309 "   char *vg_sysid;\n"
18310 "   uint64_t vg_extent_size;\n"
18311 "   int64_t vg_extent_count;\n"
18312 "   int64_t vg_free_count;\n"
18313 "   int64_t max_lv;\n"
18314 "   int64_t max_pv;\n"
18315 "   int64_t pv_count;\n"
18316 "   int64_t lv_count;\n"
18317 "   int64_t snap_count;\n"
18318 "   int64_t vg_seqno;\n"
18319 "   char *vg_tags;\n"
18320 "   int64_t vg_mda_count;\n"
18321 "   uint64_t vg_mda_free;\n"
18322 " };\n"
18323 " \n"
18324 msgstr ""
18325
18326 #. type: verbatim
18327 #: ../src/guestfs-structs.pod:69
18328 #, no-wrap
18329 msgid ""
18330 " struct guestfs_lvm_vg_list {\n"
18331 "   uint32_t len; /* Number of elements in list. */\n"
18332 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
18333 " };\n"
18334 " \n"
18335 msgstr ""
18336
18337 #. type: verbatim
18338 #: ../src/guestfs-structs.pod:74
18339 #, no-wrap
18340 msgid ""
18341 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
18342 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
18343 "\n"
18344 msgstr ""
18345
18346 #. type: =head2
18347 #: ../src/guestfs-structs.pod:77
18348 msgid "guestfs_lvm_lv"
18349 msgstr ""
18350
18351 #. type: verbatim
18352 #: ../src/guestfs-structs.pod:79
18353 #, no-wrap
18354 msgid ""
18355 " struct guestfs_lvm_lv {\n"
18356 "   char *lv_name;\n"
18357 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18358 "*/\n"
18359 "   char lv_uuid[32];\n"
18360 "   char *lv_attr;\n"
18361 "   int64_t lv_major;\n"
18362 "   int64_t lv_minor;\n"
18363 "   int64_t lv_kernel_major;\n"
18364 "   int64_t lv_kernel_minor;\n"
18365 "   uint64_t lv_size;\n"
18366 "   int64_t seg_count;\n"
18367 "   char *origin;\n"
18368 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18369 "   float snap_percent;\n"
18370 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18371 "   float copy_percent;\n"
18372 "   char *move_pv;\n"
18373 "   char *lv_tags;\n"
18374 "   char *mirror_log;\n"
18375 "   char *modules;\n"
18376 " };\n"
18377 " \n"
18378 msgstr ""
18379
18380 #. type: verbatim
18381 #: ../src/guestfs-structs.pod:101
18382 #, no-wrap
18383 msgid ""
18384 " struct guestfs_lvm_lv_list {\n"
18385 "   uint32_t len; /* Number of elements in list. */\n"
18386 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
18387 " };\n"
18388 " \n"
18389 msgstr ""
18390
18391 #. type: verbatim
18392 #: ../src/guestfs-structs.pod:106
18393 #, no-wrap
18394 msgid ""
18395 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
18396 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
18397 "\n"
18398 msgstr ""
18399
18400 #. type: verbatim
18401 #: ../src/guestfs-structs.pod:111
18402 #, no-wrap
18403 msgid ""
18404 " struct guestfs_stat {\n"
18405 "   int64_t dev;\n"
18406 "   int64_t ino;\n"
18407 "   int64_t mode;\n"
18408 "   int64_t nlink;\n"
18409 "   int64_t uid;\n"
18410 "   int64_t gid;\n"
18411 "   int64_t rdev;\n"
18412 "   int64_t size;\n"
18413 "   int64_t blksize;\n"
18414 "   int64_t blocks;\n"
18415 "   int64_t atime;\n"
18416 "   int64_t mtime;\n"
18417 "   int64_t ctime;\n"
18418 " };\n"
18419 " \n"
18420 msgstr ""
18421
18422 #. type: verbatim
18423 #: ../src/guestfs-structs.pod:127
18424 #, no-wrap
18425 msgid ""
18426 " struct guestfs_stat_list {\n"
18427 "   uint32_t len; /* Number of elements in list. */\n"
18428 "   struct guestfs_stat *val; /* Elements. */\n"
18429 " };\n"
18430 " \n"
18431 msgstr ""
18432
18433 #. type: verbatim
18434 #: ../src/guestfs-structs.pod:132
18435 #, no-wrap
18436 msgid ""
18437 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
18438 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
18439 "\n"
18440 msgstr ""
18441
18442 #. type: verbatim
18443 #: ../src/guestfs-structs.pod:137
18444 #, no-wrap
18445 msgid ""
18446 " struct guestfs_statvfs {\n"
18447 "   int64_t bsize;\n"
18448 "   int64_t frsize;\n"
18449 "   int64_t blocks;\n"
18450 "   int64_t bfree;\n"
18451 "   int64_t bavail;\n"
18452 "   int64_t files;\n"
18453 "   int64_t ffree;\n"
18454 "   int64_t favail;\n"
18455 "   int64_t fsid;\n"
18456 "   int64_t flag;\n"
18457 "   int64_t namemax;\n"
18458 " };\n"
18459 " \n"
18460 msgstr ""
18461
18462 #. type: verbatim
18463 #: ../src/guestfs-structs.pod:151
18464 #, no-wrap
18465 msgid ""
18466 " struct guestfs_statvfs_list {\n"
18467 "   uint32_t len; /* Number of elements in list. */\n"
18468 "   struct guestfs_statvfs *val; /* Elements. */\n"
18469 " };\n"
18470 " \n"
18471 msgstr ""
18472
18473 #. type: verbatim
18474 #: ../src/guestfs-structs.pod:156
18475 #, no-wrap
18476 msgid ""
18477 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
18478 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
18479 "\n"
18480 msgstr ""
18481
18482 #. type: =head2
18483 #: ../src/guestfs-structs.pod:159
18484 msgid "guestfs_dirent"
18485 msgstr ""
18486
18487 #. type: verbatim
18488 #: ../src/guestfs-structs.pod:161
18489 #, no-wrap
18490 msgid ""
18491 " struct guestfs_dirent {\n"
18492 "   int64_t ino;\n"
18493 "   char ftyp;\n"
18494 "   char *name;\n"
18495 " };\n"
18496 " \n"
18497 msgstr ""
18498
18499 #. type: verbatim
18500 #: ../src/guestfs-structs.pod:167
18501 #, no-wrap
18502 msgid ""
18503 " struct guestfs_dirent_list {\n"
18504 "   uint32_t len; /* Number of elements in list. */\n"
18505 "   struct guestfs_dirent *val; /* Elements. */\n"
18506 " };\n"
18507 " \n"
18508 msgstr ""
18509
18510 #. type: verbatim
18511 #: ../src/guestfs-structs.pod:172
18512 #, no-wrap
18513 msgid ""
18514 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
18515 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
18516 "\n"
18517 msgstr ""
18518
18519 #. type: verbatim
18520 #: ../src/guestfs-structs.pod:177
18521 #, no-wrap
18522 msgid ""
18523 " struct guestfs_version {\n"
18524 "   int64_t major;\n"
18525 "   int64_t minor;\n"
18526 "   int64_t release;\n"
18527 "   char *extra;\n"
18528 " };\n"
18529 " \n"
18530 msgstr ""
18531
18532 #. type: verbatim
18533 #: ../src/guestfs-structs.pod:184
18534 #, no-wrap
18535 msgid ""
18536 " struct guestfs_version_list {\n"
18537 "   uint32_t len; /* Number of elements in list. */\n"
18538 "   struct guestfs_version *val; /* Elements. */\n"
18539 " };\n"
18540 " \n"
18541 msgstr ""
18542
18543 #. type: verbatim
18544 #: ../src/guestfs-structs.pod:189
18545 #, no-wrap
18546 msgid ""
18547 " void guestfs_free_version (struct guestfs_free_version *);\n"
18548 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
18549 "\n"
18550 msgstr ""
18551
18552 #. type: =head2
18553 #: ../src/guestfs-structs.pod:192
18554 msgid "guestfs_xattr"
18555 msgstr ""
18556
18557 #. type: verbatim
18558 #: ../src/guestfs-structs.pod:194
18559 #, no-wrap
18560 msgid ""
18561 " struct guestfs_xattr {\n"
18562 "   char *attrname;\n"
18563 "   /* The next two fields describe a byte array. */\n"
18564 "   uint32_t attrval_len;\n"
18565 "   char *attrval;\n"
18566 " };\n"
18567 " \n"
18568 msgstr ""
18569
18570 #. type: verbatim
18571 #: ../src/guestfs-structs.pod:201
18572 #, no-wrap
18573 msgid ""
18574 " struct guestfs_xattr_list {\n"
18575 "   uint32_t len; /* Number of elements in list. */\n"
18576 "   struct guestfs_xattr *val; /* Elements. */\n"
18577 " };\n"
18578 " \n"
18579 msgstr ""
18580
18581 #. type: verbatim
18582 #: ../src/guestfs-structs.pod:206
18583 #, no-wrap
18584 msgid ""
18585 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
18586 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
18587 "\n"
18588 msgstr ""
18589
18590 #. type: =head2
18591 #: ../src/guestfs-structs.pod:209
18592 msgid "guestfs_inotify_event"
18593 msgstr ""
18594
18595 #. type: verbatim
18596 #: ../src/guestfs-structs.pod:211
18597 #, no-wrap
18598 msgid ""
18599 " struct guestfs_inotify_event {\n"
18600 "   int64_t in_wd;\n"
18601 "   uint32_t in_mask;\n"
18602 "   uint32_t in_cookie;\n"
18603 "   char *in_name;\n"
18604 " };\n"
18605 " \n"
18606 msgstr ""
18607
18608 #. type: verbatim
18609 #: ../src/guestfs-structs.pod:218
18610 #, no-wrap
18611 msgid ""
18612 " struct guestfs_inotify_event_list {\n"
18613 "   uint32_t len; /* Number of elements in list. */\n"
18614 "   struct guestfs_inotify_event *val; /* Elements. */\n"
18615 " };\n"
18616 " \n"
18617 msgstr ""
18618
18619 #. type: verbatim
18620 #: ../src/guestfs-structs.pod:223
18621 #, no-wrap
18622 msgid ""
18623 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
18624 " void guestfs_free_inotify_event_list (struct "
18625 "guestfs_free_inotify_event_list *);\n"
18626 "\n"
18627 msgstr ""
18628
18629 #. type: =head2
18630 #: ../src/guestfs-structs.pod:226
18631 msgid "guestfs_partition"
18632 msgstr ""
18633
18634 #. type: verbatim
18635 #: ../src/guestfs-structs.pod:228
18636 #, no-wrap
18637 msgid ""
18638 " struct guestfs_partition {\n"
18639 "   int32_t part_num;\n"
18640 "   uint64_t part_start;\n"
18641 "   uint64_t part_end;\n"
18642 "   uint64_t part_size;\n"
18643 " };\n"
18644 " \n"
18645 msgstr ""
18646
18647 #. type: verbatim
18648 #: ../src/guestfs-structs.pod:235
18649 #, no-wrap
18650 msgid ""
18651 " struct guestfs_partition_list {\n"
18652 "   uint32_t len; /* Number of elements in list. */\n"
18653 "   struct guestfs_partition *val; /* Elements. */\n"
18654 " };\n"
18655 " \n"
18656 msgstr ""
18657
18658 #. type: verbatim
18659 #: ../src/guestfs-structs.pod:240
18660 #, no-wrap
18661 msgid ""
18662 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
18663 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
18664 "\n"
18665 msgstr ""
18666
18667 #. type: =head2
18668 #: ../src/guestfs-structs.pod:243
18669 msgid "guestfs_application"
18670 msgstr ""
18671
18672 #. type: verbatim
18673 #: ../src/guestfs-structs.pod:245
18674 #, no-wrap
18675 msgid ""
18676 " struct guestfs_application {\n"
18677 "   char *app_name;\n"
18678 "   char *app_display_name;\n"
18679 "   int32_t app_epoch;\n"
18680 "   char *app_version;\n"
18681 "   char *app_release;\n"
18682 "   char *app_install_path;\n"
18683 "   char *app_trans_path;\n"
18684 "   char *app_publisher;\n"
18685 "   char *app_url;\n"
18686 "   char *app_source_package;\n"
18687 "   char *app_summary;\n"
18688 "   char *app_description;\n"
18689 " };\n"
18690 " \n"
18691 msgstr ""
18692
18693 #. type: verbatim
18694 #: ../src/guestfs-structs.pod:260
18695 #, no-wrap
18696 msgid ""
18697 " struct guestfs_application_list {\n"
18698 "   uint32_t len; /* Number of elements in list. */\n"
18699 "   struct guestfs_application *val; /* Elements. */\n"
18700 " };\n"
18701 " \n"
18702 msgstr ""
18703
18704 #. type: verbatim
18705 #: ../src/guestfs-structs.pod:265
18706 #, no-wrap
18707 msgid ""
18708 " void guestfs_free_application (struct guestfs_free_application *);\n"
18709 " void guestfs_free_application_list (struct guestfs_free_application_list "
18710 "*);\n"
18711 "\n"
18712 msgstr ""
18713
18714 #. type: textblock
18715 #: ../fish/guestfish.pod:5
18716 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
18717 msgstr ""
18718
18719 #. type: verbatim
18720 #: ../fish/guestfish.pod:9
18721 #, no-wrap
18722 msgid ""
18723 " guestfish [--options] [commands]\n"
18724 "\n"
18725 msgstr ""
18726
18727 #. type: verbatim
18728 #: ../fish/guestfish.pod:11
18729 #, no-wrap
18730 msgid ""
18731 " guestfish\n"
18732 "\n"
18733 msgstr ""
18734
18735 #. type: verbatim
18736 #: ../fish/guestfish.pod:13
18737 #, no-wrap
18738 msgid ""
18739 " guestfish [--ro|--rw] -a disk.img\n"
18740 "\n"
18741 msgstr ""
18742
18743 #. type: verbatim
18744 #: ../fish/guestfish.pod:15
18745 #, no-wrap
18746 msgid ""
18747 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
18748 "\n"
18749 msgstr ""
18750
18751 #. type: verbatim
18752 #: ../fish/guestfish.pod:17
18753 #, no-wrap
18754 msgid ""
18755 " guestfish -d libvirt-domain\n"
18756 "\n"
18757 msgstr ""
18758
18759 #. type: verbatim
18760 #: ../fish/guestfish.pod:19
18761 #, no-wrap
18762 msgid ""
18763 " guestfish [--ro|--rw] -a disk.img -i\n"
18764 "\n"
18765 msgstr ""
18766
18767 #. type: verbatim
18768 #: ../fish/guestfish.pod:21
18769 #, no-wrap
18770 msgid ""
18771 " guestfish -d libvirt-domain -i\n"
18772 "\n"
18773 msgstr ""
18774
18775 #. type: =head1
18776 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
18777 msgid "WARNING"
18778 msgstr ""
18779
18780 #. type: textblock
18781 #: ../fish/guestfish.pod:25
18782 msgid ""
18783 "Using guestfish in read/write mode on live virtual machines can be "
18784 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
18785 "option to use guestfish safely if the disk image or virtual machine might be "
18786 "live."
18787 msgstr ""
18788
18789 #. type: textblock
18790 #: ../fish/guestfish.pod:32
18791 msgid ""
18792 "Guestfish is a shell and command-line tool for examining and modifying "
18793 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
18794 "functionality of the guestfs API, see L<guestfs(3)>."
18795 msgstr ""
18796
18797 #. type: textblock
18798 #: ../fish/guestfish.pod:36
18799 msgid ""
18800 "Guestfish gives you structured access to the libguestfs API, from shell "
18801 "scripts or the command line or interactively.  If you want to rescue a "
18802 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
18803 "command."
18804 msgstr ""
18805
18806 #. type: =head1
18807 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:949 ../fuse/guestmount.pod:39 ../tools/virt-tar.pl:50
18808 msgid "EXAMPLES"
18809 msgstr ""
18810
18811 #. type: =head2
18812 #: ../fish/guestfish.pod:43
18813 msgid "As an interactive shell"
18814 msgstr ""
18815
18816 #. type: verbatim
18817 #: ../fish/guestfish.pod:45
18818 #, no-wrap
18819 msgid ""
18820 " $ guestfish\n"
18821 " \n"
18822 msgstr ""
18823
18824 #. type: verbatim
18825 #: ../fish/guestfish.pod:47
18826 #, no-wrap
18827 msgid ""
18828 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
18829 " editing virtual machine filesystems.\n"
18830 " \n"
18831 msgstr ""
18832
18833 #. type: verbatim
18834 #: ../fish/guestfish.pod:50
18835 #, no-wrap
18836 msgid ""
18837 " Type: 'help' for a list of commands\n"
18838 "       'man' to read the manual\n"
18839 "       'quit' to quit the shell\n"
18840 " \n"
18841 msgstr ""
18842
18843 #. type: verbatim
18844 #: ../fish/guestfish.pod:54
18845 #, no-wrap
18846 msgid ""
18847 " ><fs> add-ro disk.img\n"
18848 " ><fs> run\n"
18849 " ><fs> list-filesystems\n"
18850 " /dev/sda1: ext4\n"
18851 " /dev/vg_guest/lv_root: ext4\n"
18852 " /dev/vg_guest/lv_swap: swap\n"
18853 " ><fs> mount /dev/vg_guest/lv_root /\n"
18854 " ><fs> cat /etc/fstab\n"
18855 " # /etc/fstab\n"
18856 " # Created by anaconda\n"
18857 " [...]\n"
18858 " ><fs> exit\n"
18859 "\n"
18860 msgstr ""
18861
18862 #. type: =head2
18863 #: ../fish/guestfish.pod:67
18864 msgid "From shell scripts"
18865 msgstr ""
18866
18867 #. type: textblock
18868 #: ../fish/guestfish.pod:69
18869 msgid "Create a new C</etc/motd> file in a guest or disk image:"
18870 msgstr ""
18871
18872 #. type: verbatim
18873 #: ../fish/guestfish.pod:71
18874 #, no-wrap
18875 msgid ""
18876 " guestfish <<_EOF_\n"
18877 " add disk.img\n"
18878 " run\n"
18879 " mount /dev/vg_guest/lv_root /\n"
18880 " write /etc/motd \"Welcome, new users\"\n"
18881 " _EOF_\n"
18882 "\n"
18883 msgstr ""
18884
18885 #. type: textblock
18886 #: ../fish/guestfish.pod:78
18887 msgid "List the LVM logical volumes in a disk image:"
18888 msgstr ""
18889
18890 #. type: verbatim
18891 #: ../fish/guestfish.pod:80
18892 #, no-wrap
18893 msgid ""
18894 " guestfish -a disk.img --ro <<_EOF_\n"
18895 " run\n"
18896 " lvs\n"
18897 " _EOF_\n"
18898 "\n"
18899 msgstr ""
18900
18901 #. type: textblock
18902 #: ../fish/guestfish.pod:85
18903 msgid "List all the filesystems in a disk image:"
18904 msgstr ""
18905
18906 #. type: verbatim
18907 #: ../fish/guestfish.pod:87
18908 #, no-wrap
18909 msgid ""
18910 " guestfish -a disk.img --ro <<_EOF_\n"
18911 " run\n"
18912 " list-filesystems\n"
18913 " _EOF_\n"
18914 "\n"
18915 msgstr ""
18916
18917 #. type: =head2
18918 #: ../fish/guestfish.pod:92
18919 msgid "On one command line"
18920 msgstr ""
18921
18922 #. type: textblock
18923 #: ../fish/guestfish.pod:94
18924 msgid "Update C</etc/resolv.conf> in a guest:"
18925 msgstr ""
18926
18927 #. type: verbatim
18928 #: ../fish/guestfish.pod:96
18929 #, no-wrap
18930 msgid ""
18931 " guestfish \\\n"
18932 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
18933 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
18934 "\n"
18935 msgstr ""
18936
18937 #. type: textblock
18938 #: ../fish/guestfish.pod:100
18939 msgid "Edit C</boot/grub/grub.conf> interactively:"
18940 msgstr ""
18941
18942 #. type: verbatim
18943 #: ../fish/guestfish.pod:102
18944 #, no-wrap
18945 msgid ""
18946 " guestfish --rw --add disk.img \\\n"
18947 "   --mount /dev/vg_guest/lv_root \\\n"
18948 "   --mount /dev/sda1:/boot \\\n"
18949 "   edit /boot/grub/grub.conf\n"
18950 "\n"
18951 msgstr ""
18952
18953 #. type: =head2
18954 #: ../fish/guestfish.pod:107
18955 msgid "Mount disks automatically"
18956 msgstr ""
18957
18958 #. type: textblock
18959 #: ../fish/guestfish.pod:109
18960 msgid ""
18961 "Use the I<-i> option to automatically mount the disks from a virtual "
18962 "machine:"
18963 msgstr ""
18964
18965 #. type: verbatim
18966 #: ../fish/guestfish.pod:112
18967 #, no-wrap
18968 msgid ""
18969 " guestfish --ro -a disk.img -i cat /etc/group\n"
18970 "\n"
18971 msgstr ""
18972
18973 #. type: verbatim
18974 #: ../fish/guestfish.pod:114
18975 #, no-wrap
18976 msgid ""
18977 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
18978 "\n"
18979 msgstr ""
18980
18981 #. type: textblock
18982 #: ../fish/guestfish.pod:116
18983 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
18984 msgstr ""
18985
18986 #. type: verbatim
18987 #: ../fish/guestfish.pod:118
18988 #, no-wrap
18989 msgid ""
18990 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
18991 "\n"
18992 msgstr ""
18993
18994 #. type: =head2
18995 #: ../fish/guestfish.pod:120
18996 msgid "As a script interpreter"
18997 msgstr ""
18998
18999 #. type: textblock
19000 #: ../fish/guestfish.pod:122
19001 msgid "Create a 100MB disk containing an ext2-formatted partition:"
19002 msgstr ""
19003
19004 #. type: verbatim
19005 #: ../fish/guestfish.pod:124
19006 #, no-wrap
19007 msgid ""
19008 " #!/usr/bin/guestfish -f\n"
19009 " sparse test1.img 100M\n"
19010 " run\n"
19011 " part-disk /dev/sda mbr\n"
19012 " mkfs ext2 /dev/sda1\n"
19013 "\n"
19014 msgstr ""
19015
19016 #. type: =head2
19017 #: ../fish/guestfish.pod:130
19018 msgid "Start with a prepared disk"
19019 msgstr ""
19020
19021 #. type: textblock
19022 #: ../fish/guestfish.pod:132
19023 msgid ""
19024 "An alternate way to create a 100MB disk called C<test1.img> containing a "
19025 "single ext2-formatted partition:"
19026 msgstr ""
19027
19028 #. type: verbatim
19029 #: ../fish/guestfish.pod:135
19030 #, no-wrap
19031 msgid ""
19032 " guestfish -N fs\n"
19033 "\n"
19034 msgstr ""
19035
19036 #. type: textblock
19037 #: ../fish/guestfish.pod:137
19038 msgid "To list what is available do:"
19039 msgstr ""
19040
19041 #. type: verbatim
19042 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:940
19043 #, no-wrap
19044 msgid ""
19045 " guestfish -N help | less\n"
19046 "\n"
19047 msgstr ""
19048
19049 #. type: =head2
19050 #: ../fish/guestfish.pod:141
19051 msgid "Remote control"
19052 msgstr ""
19053
19054 #. type: verbatim
19055 #: ../fish/guestfish.pod:143
19056 #, no-wrap
19057 msgid ""
19058 " eval \"`guestfish --listen`\"\n"
19059 " guestfish --remote add-ro disk.img\n"
19060 " guestfish --remote run\n"
19061 " guestfish --remote lvs\n"
19062 "\n"
19063 msgstr ""
19064
19065 #. type: =head1
19066 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37 ../fuse/guestmount.pod:73 ../tools/virt-win-reg.pl:96 ../tools/virt-list-filesystems.pl:53 ../tools/virt-tar.pl:103 ../tools/virt-make-fs.pl:153 ../tools/virt-list-partitions.pl:54
19067 msgid "OPTIONS"
19068 msgstr ""
19069
19070 #. type: =item
19071 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:133 ../tools/virt-win-reg.pl:104 ../tools/virt-list-filesystems.pl:61 ../tools/virt-tar.pl:111 ../tools/virt-make-fs.pl:161 ../tools/virt-list-partitions.pl:62
19072 msgid "B<--help>"
19073 msgstr ""
19074
19075 #. type: textblock
19076 #: ../fish/guestfish.pod:154
19077 msgid "Displays general help on options."
19078 msgstr ""
19079
19080 #. type: =item
19081 #: ../fish/guestfish.pod:156
19082 msgid "B<-h>"
19083 msgstr ""
19084
19085 #. type: =item
19086 #: ../fish/guestfish.pod:158
19087 msgid "B<--cmd-help>"
19088 msgstr ""
19089
19090 #. type: textblock
19091 #: ../fish/guestfish.pod:160
19092 msgid "Lists all available guestfish commands."
19093 msgstr ""
19094
19095 #. type: =item
19096 #: ../fish/guestfish.pod:162
19097 msgid "B<-h cmd>"
19098 msgstr ""
19099
19100 #. type: =item
19101 #: ../fish/guestfish.pod:164
19102 msgid "B<--cmd-help cmd>"
19103 msgstr ""
19104
19105 #. type: textblock
19106 #: ../fish/guestfish.pod:166
19107 msgid "Displays detailed help on a single command C<cmd>."
19108 msgstr ""
19109
19110 #. type: =item
19111 #: ../fish/guestfish.pod:168
19112 msgid "B<-a image>"
19113 msgstr ""
19114
19115 #. type: =item
19116 #: ../fish/guestfish.pod:170
19117 msgid "B<--add image>"
19118 msgstr ""
19119
19120 #. type: textblock
19121 #: ../fish/guestfish.pod:172
19122 msgid "Add a block device or virtual machine image to the shell."
19123 msgstr ""
19124
19125 #. type: textblock
19126 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:81
19127 msgid ""
19128 "The format of the disk image is auto-detected.  To override this and force a "
19129 "particular format use the I<--format=..> option."
19130 msgstr ""
19131
19132 #. type: textblock
19133 #: ../fish/guestfish.pod:177
19134 msgid ""
19135 "Using this flag is mostly equivalent to using the C<add> command, with "
19136 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
19137 "the I<--format=...> flag was given."
19138 msgstr ""
19139
19140 #. type: =item
19141 #: ../fish/guestfish.pod:181
19142 msgid "B<-c URI>"
19143 msgstr ""
19144
19145 #. type: =item
19146 #: ../fish/guestfish.pod:183
19147 msgid "B<--connect URI>"
19148 msgstr ""
19149
19150 #. type: textblock
19151 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:86
19152 msgid ""
19153 "When used in conjunction with the I<-d> option, this specifies the libvirt "
19154 "URI to use.  The default is to use the default libvirt connection."
19155 msgstr ""
19156
19157 #. type: =item
19158 #: ../fish/guestfish.pod:189
19159 msgid "B<--csh>"
19160 msgstr ""
19161
19162 #. type: textblock
19163 #: ../fish/guestfish.pod:191
19164 msgid ""
19165 "If using the I<--listen> option and a csh-like shell, use this option.  See "
19166 "section L</REMOTE CONTROL AND CSH> below."
19167 msgstr ""
19168
19169 #. type: =item
19170 #: ../fish/guestfish.pod:194
19171 msgid "B<-d libvirt-domain>"
19172 msgstr ""
19173
19174 #. type: =item
19175 #: ../fish/guestfish.pod:196
19176 msgid "B<--domain libvirt-domain>"
19177 msgstr ""
19178
19179 #. type: textblock
19180 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:92
19181 msgid ""
19182 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
19183 "used, then any libvirt domain can be used.  However in write mode, only "
19184 "libvirt domains which are shut down can be named here."
19185 msgstr ""
19186
19187 #. type: textblock
19188 #: ../fish/guestfish.pod:202 ../fuse/guestmount.pod:96
19189 msgid "Domain UUIDs can be used instead of names."
19190 msgstr ""
19191
19192 #. type: textblock
19193 #: ../fish/guestfish.pod:204
19194 msgid ""
19195 "Using this flag is mostly equivalent to using the C<add-domain> command, "
19196 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
19197 "if the I<--format:...> flag was given."
19198 msgstr ""
19199
19200 #. type: =item
19201 #: ../fish/guestfish.pod:208
19202 msgid "B<-D>"
19203 msgstr ""
19204
19205 #. type: =item
19206 #: ../fish/guestfish.pod:210
19207 msgid "B<--no-dest-paths>"
19208 msgstr ""
19209
19210 #. type: textblock
19211 #: ../fish/guestfish.pod:212
19212 msgid ""
19213 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
19214 "to hit the tab key to complete paths on the guest filesystem, but this "
19215 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
19216 "allow this feature to be disabled."
19217 msgstr ""
19218
19219 #. type: =item
19220 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:110
19221 msgid "B<--echo-keys>"
19222 msgstr ""
19223
19224 #. type: textblock
19225 #: ../fish/guestfish.pod:219 ../fuse/guestmount.pod:112
19226 msgid ""
19227 "When prompting for keys and passphrases, guestfish normally turns echoing "
19228 "off so you cannot see what you are typing.  If you are not worried about "
19229 "Tempest attacks and there is no one else in the room you can specify this "
19230 "flag to see what you are typing."
19231 msgstr ""
19232
19233 #. type: =item
19234 #: ../fish/guestfish.pod:224
19235 msgid "B<-f file>"
19236 msgstr ""
19237
19238 #. type: =item
19239 #: ../fish/guestfish.pod:226
19240 msgid "B<--file file>"
19241 msgstr ""
19242
19243 #. type: textblock
19244 #: ../fish/guestfish.pod:228
19245 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
19246 msgstr ""
19247
19248 #. type: verbatim
19249 #: ../fish/guestfish.pod:231
19250 #, no-wrap
19251 msgid ""
19252 " #!/usr/bin/guestfish -f\n"
19253 "\n"
19254 msgstr ""
19255
19256 #. type: =item
19257 #: ../fish/guestfish.pod:233
19258 msgid "B<--format=raw|qcow2|..>"
19259 msgstr ""
19260
19261 #. type: =item
19262 #: ../fish/guestfish.pod:235
19263 msgid "B<--format>"
19264 msgstr ""
19265
19266 #. type: textblock
19267 #: ../fish/guestfish.pod:237 ../fuse/guestmount.pod:119
19268 msgid ""
19269 "The default for the I<-a> option is to auto-detect the format of the disk "
19270 "image.  Using this forces the disk format for I<-a> options which follow on "
19271 "the command line.  Using I<--format> with no argument switches back to "
19272 "auto-detection for subsequent I<-a> options."
19273 msgstr ""
19274
19275 #. type: verbatim
19276 #: ../fish/guestfish.pod:244
19277 #, no-wrap
19278 msgid ""
19279 " guestfish --format=raw -a disk.img\n"
19280 "\n"
19281 msgstr ""
19282
19283 #. type: textblock
19284 #: ../fish/guestfish.pod:246
19285 msgid "forces raw format (no auto-detection) for C<disk.img>."
19286 msgstr ""
19287
19288 #. type: verbatim
19289 #: ../fish/guestfish.pod:248
19290 #, no-wrap
19291 msgid ""
19292 " guestfish --format=raw -a disk.img --format -a another.img\n"
19293 "\n"
19294 msgstr ""
19295
19296 #. type: textblock
19297 #: ../fish/guestfish.pod:250
19298 msgid ""
19299 "forces raw format (no auto-detection) for C<disk.img> and reverts to "
19300 "auto-detection for C<another.img>."
19301 msgstr ""
19302
19303 #. type: textblock
19304 #: ../fish/guestfish.pod:253
19305 msgid ""
19306 "If you have untrusted raw-format guest disk images, you should use this "
19307 "option to specify the disk format.  This avoids a possible security problem "
19308 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
19309 msgstr ""
19310
19311 #. type: =item
19312 #: ../fish/guestfish.pod:258
19313 msgid "B<-i>"
19314 msgstr ""
19315
19316 #. type: =item
19317 #: ../fish/guestfish.pod:260
19318 msgid "B<--inspector>"
19319 msgstr ""
19320
19321 #. type: textblock
19322 #: ../fish/guestfish.pod:262 ../fuse/guestmount.pod:139
19323 msgid ""
19324 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
19325 "system and mount filesystems as they would be mounted on the real virtual "
19326 "machine."
19327 msgstr ""
19328
19329 #. type: textblock
19330 #: ../fish/guestfish.pod:266
19331 msgid "Typical usage is either:"
19332 msgstr ""
19333
19334 #. type: verbatim
19335 #: ../fish/guestfish.pod:268
19336 #, no-wrap
19337 msgid ""
19338 " guestfish -d myguest -i\n"
19339 "\n"
19340 msgstr ""
19341
19342 #. type: textblock
19343 #: ../fish/guestfish.pod:270
19344 msgid "(for an inactive libvirt domain called I<myguest>), or:"
19345 msgstr ""
19346
19347 #. type: verbatim
19348 #: ../fish/guestfish.pod:272
19349 #, no-wrap
19350 msgid ""
19351 " guestfish --ro -d myguest -i\n"
19352 "\n"
19353 msgstr ""
19354
19355 #. type: textblock
19356 #: ../fish/guestfish.pod:274
19357 msgid "(for active domains, readonly), or specify the block device directly:"
19358 msgstr ""
19359
19360 #. type: verbatim
19361 #: ../fish/guestfish.pod:276
19362 #, no-wrap
19363 msgid ""
19364 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
19365 "\n"
19366 msgstr ""
19367
19368 #. type: textblock
19369 #: ../fish/guestfish.pod:278
19370 msgid ""
19371 "Note that the command line syntax changed slightly over older versions of "
19372 "guestfish.  You can still use the old syntax:"
19373 msgstr ""
19374
19375 #. type: verbatim
19376 #: ../fish/guestfish.pod:281
19377 #, no-wrap
19378 msgid ""
19379 " guestfish [--ro] -i disk.img\n"
19380 "\n"
19381 msgstr ""
19382
19383 #. type: verbatim
19384 #: ../fish/guestfish.pod:283
19385 #, no-wrap
19386 msgid ""
19387 " guestfish [--ro] -i libvirt-domain\n"
19388 "\n"
19389 msgstr ""
19390
19391 #. type: textblock
19392 #: ../fish/guestfish.pod:285
19393 msgid ""
19394 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
19395 "then using other commands to mount the filesystems that were found."
19396 msgstr ""
19397
19398 #. type: =item
19399 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:143
19400 msgid "B<--keys-from-stdin>"
19401 msgstr ""
19402
19403 #. type: textblock
19404 #: ../fish/guestfish.pod:291 ../fuse/guestmount.pod:145
19405 msgid ""
19406 "Read key or passphrase parameters from stdin.  The default is to try to read "
19407 "passphrases from the user by opening C</dev/tty>."
19408 msgstr ""
19409
19410 #. type: =item
19411 #: ../fish/guestfish.pod:294
19412 msgid "B<--listen>"
19413 msgstr ""
19414
19415 #. type: textblock
19416 #: ../fish/guestfish.pod:296
19417 msgid ""
19418 "Fork into the background and listen for remote commands.  See section "
19419 "L</REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
19420 msgstr ""
19421
19422 #. type: =item
19423 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:148
19424 msgid "B<--live>"
19425 msgstr ""
19426
19427 #. type: textblock
19428 #: ../fish/guestfish.pod:301 ../fuse/guestmount.pod:150
19429 msgid ""
19430 "Connect to a live virtual machine.  (Experimental, see "
19431 "L<guestfs(3)/ATTACHING TO RUNNING DAEMONS>)."
19432 msgstr ""
19433
19434 #. type: =item
19435 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:153
19436 msgid "B<-m dev[:mountpoint[:options]]>"
19437 msgstr ""
19438
19439 #. type: =item
19440 #: ../fish/guestfish.pod:306 ../fuse/guestmount.pod:155
19441 msgid "B<--mount dev[:mountpoint[:options]]>"
19442 msgstr ""
19443
19444 #. type: textblock
19445 #: ../fish/guestfish.pod:308
19446 msgid "Mount the named partition or logical volume on the given mountpoint."
19447 msgstr ""
19448
19449 #. type: textblock
19450 #: ../fish/guestfish.pod:310
19451 msgid "If the mountpoint is omitted, it defaults to C</>."
19452 msgstr ""
19453
19454 #. type: textblock
19455 #: ../fish/guestfish.pod:312
19456 msgid "You have to mount something on C</> before most commands will work."
19457 msgstr ""
19458
19459 #. type: textblock
19460 #: ../fish/guestfish.pod:314
19461 msgid ""
19462 "If any I<-m> or I<--mount> options are given, the guest is automatically "
19463 "launched."
19464 msgstr ""
19465
19466 #. type: textblock
19467 #: ../fish/guestfish.pod:317
19468 msgid ""
19469 "If you don't know what filesystems a disk image contains, you can either run "
19470 "guestfish without this option, then list the partitions, filesystems and LVs "
19471 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
19472 "commands), or you can use the L<virt-filesystems(1)> program."
19473 msgstr ""
19474
19475 #. type: textblock
19476 #: ../fish/guestfish.pod:323 ../fuse/guestmount.pod:163
19477 msgid ""
19478 "The third (and rarely used) part of the mount parameter is the list of mount "
19479 "options used to mount the underlying filesystem.  If this is not given, then "
19480 "the mount options are either the empty string or C<ro> (the latter if the "
19481 "I<--ro> flag is used).  By specifying the mount options, you override this "
19482 "default choice.  Probably the only time you would use this is to enable ACLs "
19483 "and/or extended attributes if the filesystem can support them:"
19484 msgstr ""
19485
19486 #. type: verbatim
19487 #: ../fish/guestfish.pod:331 ../fuse/guestmount.pod:171
19488 #, no-wrap
19489 msgid ""
19490 " -m /dev/sda1:/:acl,user_xattr\n"
19491 "\n"
19492 msgstr ""
19493
19494 #. type: textblock
19495 #: ../fish/guestfish.pod:333
19496 msgid "Using this flag is equivalent to using the C<mount-options> command."
19497 msgstr ""
19498
19499 #. type: =item
19500 #: ../fish/guestfish.pod:335
19501 msgid "B<-n>"
19502 msgstr ""
19503
19504 #. type: =item
19505 #: ../fish/guestfish.pod:337
19506 msgid "B<--no-sync>"
19507 msgstr ""
19508
19509 #. type: textblock
19510 #: ../fish/guestfish.pod:339
19511 msgid ""
19512 "Disable autosync.  This is enabled by default.  See the discussion of "
19513 "autosync in the L<guestfs(3)> manpage."
19514 msgstr ""
19515
19516 #. type: =item
19517 #: ../fish/guestfish.pod:342
19518 msgid "B<-N type>"
19519 msgstr ""
19520
19521 #. type: =item
19522 #: ../fish/guestfish.pod:344
19523 msgid "B<--new type>"
19524 msgstr ""
19525
19526 #. type: =item
19527 #: ../fish/guestfish.pod:346
19528 msgid "B<-N help>"
19529 msgstr ""
19530
19531 #. type: textblock
19532 #: ../fish/guestfish.pod:348
19533 msgid ""
19534 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
19535 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
19536 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
19537 "IMAGES> below."
19538 msgstr ""
19539
19540 #. type: =item
19541 #: ../fish/guestfish.pod:353
19542 msgid "B<--progress-bars>"
19543 msgstr ""
19544
19545 #. type: textblock
19546 #: ../fish/guestfish.pod:355
19547 msgid "Enable progress bars, even when guestfish is used non-interactively."
19548 msgstr ""
19549
19550 #. type: textblock
19551 #: ../fish/guestfish.pod:357
19552 msgid ""
19553 "Progress bars are enabled by default when guestfish is used as an "
19554 "interactive shell."
19555 msgstr ""
19556
19557 #. type: =item
19558 #: ../fish/guestfish.pod:360
19559 msgid "B<--no-progress-bars>"
19560 msgstr ""
19561
19562 #. type: textblock
19563 #: ../fish/guestfish.pod:362
19564 msgid "Disable progress bars."
19565 msgstr ""
19566
19567 #. type: =item
19568 #: ../fish/guestfish.pod:364
19569 msgid "B<--remote[=pid]>"
19570 msgstr ""
19571
19572 #. type: textblock
19573 #: ../fish/guestfish.pod:366
19574 msgid ""
19575 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
19576 "CONTROL GUESTFISH OVER A SOCKET> below."
19577 msgstr ""
19578
19579 #. type: =item
19580 #: ../fish/guestfish.pod:369
19581 msgid "B<-r>"
19582 msgstr ""
19583
19584 #. type: =item
19585 #: ../fish/guestfish.pod:371
19586 msgid "B<--ro>"
19587 msgstr ""
19588
19589 #. type: textblock
19590 #: ../fish/guestfish.pod:373
19591 msgid ""
19592 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
19593 "mounts are done read-only."
19594 msgstr ""
19595
19596 #. type: textblock
19597 #: ../fish/guestfish.pod:376
19598 msgid ""
19599 "The option must always be used if the disk image or virtual machine might be "
19600 "running, and is generally recommended in cases where you don't need write "
19601 "access to the disk."
19602 msgstr ""
19603
19604 #. type: textblock
19605 #: ../fish/guestfish.pod:380
19606 msgid ""
19607 "Note that prepared disk images created with I<-N> are not affected by this "
19608 "option.  Also commands like C<add> are not affected - you have to specify "
19609 "the C<readonly:true> option explicitly if you need it."
19610 msgstr ""
19611
19612 #. type: textblock
19613 #: ../fish/guestfish.pod:384
19614 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
19615 msgstr ""
19616
19617 #. type: =item
19618 #: ../fish/guestfish.pod:386 ../fuse/guestmount.pod:227
19619 msgid "B<--selinux>"
19620 msgstr ""
19621
19622 #. type: textblock
19623 #: ../fish/guestfish.pod:388
19624 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
19625 msgstr ""
19626
19627 #. type: =item
19628 #: ../fish/guestfish.pod:390
19629 msgid "B<-v>"
19630 msgstr ""
19631
19632 #. type: =item
19633 #: ../fish/guestfish.pod:392
19634 msgid "B<--verbose>"
19635 msgstr ""
19636
19637 #. type: textblock
19638 #: ../fish/guestfish.pod:394
19639 msgid ""
19640 "Enable very verbose messages.  This is particularly useful if you find a "
19641 "bug."
19642 msgstr ""
19643
19644 #. type: =item
19645 #: ../fish/guestfish.pod:397
19646 msgid "B<-V>"
19647 msgstr ""
19648
19649 #. type: =item
19650 #: ../fish/guestfish.pod:399 ../tools/virt-win-reg.pl:112 ../tools/virt-list-filesystems.pl:69 ../tools/virt-tar.pl:119 ../tools/virt-make-fs.pl:169 ../tools/virt-list-partitions.pl:70
19651 msgid "B<--version>"
19652 msgstr ""
19653
19654 #. type: textblock
19655 #: ../fish/guestfish.pod:401
19656 msgid "Display the guestfish / libguestfs version number and exit."
19657 msgstr ""
19658
19659 #. type: =item
19660 #: ../fish/guestfish.pod:403
19661 msgid "B<-w>"
19662 msgstr ""
19663
19664 #. type: =item
19665 #: ../fish/guestfish.pod:405
19666 msgid "B<--rw>"
19667 msgstr ""
19668
19669 #. type: textblock
19670 #: ../fish/guestfish.pod:407 ../fuse/guestmount.pod:241
19671 msgid ""
19672 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
19673 "mounts are done read-write."
19674 msgstr ""
19675
19676 #. type: textblock
19677 #: ../fish/guestfish.pod:410
19678 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
19679 msgstr ""
19680
19681 #. type: =item
19682 #: ../fish/guestfish.pod:412
19683 msgid "B<-x>"
19684 msgstr ""
19685
19686 #. type: textblock
19687 #: ../fish/guestfish.pod:414
19688 msgid "Echo each command before executing it."
19689 msgstr ""
19690
19691 #. type: =head1
19692 #: ../fish/guestfish.pod:418
19693 msgid "COMMANDS ON COMMAND LINE"
19694 msgstr ""
19695
19696 #. type: textblock
19697 #: ../fish/guestfish.pod:420
19698 msgid "Any additional (non-option) arguments are treated as commands to execute."
19699 msgstr ""
19700
19701 #. type: textblock
19702 #: ../fish/guestfish.pod:423
19703 msgid ""
19704 "Commands to execute should be separated by a colon (C<:>), where the colon "
19705 "is a separate parameter.  Thus:"
19706 msgstr ""
19707
19708 #. type: verbatim
19709 #: ../fish/guestfish.pod:426
19710 #, no-wrap
19711 msgid ""
19712 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
19713 "\n"
19714 msgstr ""
19715
19716 #. type: textblock
19717 #: ../fish/guestfish.pod:428
19718 msgid ""
19719 "If there are no additional arguments, then we enter a shell, either an "
19720 "interactive shell with a prompt (if the input is a terminal) or a "
19721 "non-interactive shell."
19722 msgstr ""
19723
19724 #. type: textblock
19725 #: ../fish/guestfish.pod:432
19726 msgid ""
19727 "In either command line mode or non-interactive shell, the first command that "
19728 "gives an error causes the whole shell to exit.  In interactive mode (with a "
19729 "prompt) if a command fails, you can continue to enter commands."
19730 msgstr ""
19731
19732 #. type: =head1
19733 #: ../fish/guestfish.pod:437
19734 msgid "USING launch (OR run)"
19735 msgstr ""
19736
19737 #. type: textblock
19738 #: ../fish/guestfish.pod:439
19739 msgid ""
19740 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
19741 "then launch it, then mount any disks you need, and finally issue "
19742 "actions/commands.  So the general order of the day is:"
19743 msgstr ""
19744
19745 #. type: textblock
19746 #: ../fish/guestfish.pod:447
19747 msgid "add or -a/--add"
19748 msgstr ""
19749
19750 #. type: textblock
19751 #: ../fish/guestfish.pod:451
19752 msgid "launch (aka run)"
19753 msgstr ""
19754
19755 #. type: textblock
19756 #: ../fish/guestfish.pod:455
19757 msgid "mount or -m/--mount"
19758 msgstr ""
19759
19760 #. type: textblock
19761 #: ../fish/guestfish.pod:459
19762 msgid "any other commands"
19763 msgstr ""
19764
19765 #. type: textblock
19766 #: ../fish/guestfish.pod:463
19767 msgid ""
19768 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
19769 "guest before mounting or performing any other commands."
19770 msgstr ""
19771
19772 #. type: textblock
19773 #: ../fish/guestfish.pod:466
19774 msgid ""
19775 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
19776 "I<--new> options were given then C<run> is done automatically, simply "
19777 "because guestfish can't perform the action you asked for without doing this."
19778 msgstr ""
19779
19780 #. type: =head1
19781 #: ../fish/guestfish.pod:471
19782 msgid "OPENING DISKS FOR READ AND WRITE"
19783 msgstr ""
19784
19785 #. type: textblock
19786 #: ../fish/guestfish.pod:473
19787 msgid ""
19788 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
19789 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
19790 "I<-i> and I<-m> open disk images read-only or for writing."
19791 msgstr ""
19792
19793 #. type: textblock
19794 #: ../fish/guestfish.pod:478
19795 msgid ""
19796 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
19797 "opening disk images supplied on the command line for write.  To open a disk "
19798 "image read-only you have to do I<-a image --ro>."
19799 msgstr ""
19800
19801 #. type: textblock
19802 #: ../fish/guestfish.pod:482
19803 msgid ""
19804 "This matters: If you accidentally open a live VM disk image writable then "
19805 "you will cause irreversible disk corruption."
19806 msgstr ""
19807
19808 #. type: textblock
19809 #: ../fish/guestfish.pod:485
19810 msgid ""
19811 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
19812 "images will be opened read-only.  You will have to either specify "
19813 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
19814 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
19815 "access for disk images specified by those other command line options."
19816 msgstr ""
19817
19818 #. type: textblock
19819 #: ../fish/guestfish.pod:492
19820 msgid ""
19821 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
19822 "which does nothing (it is already the default).  However it is highly "
19823 "recommended that you use this option to indicate that you need write access, "
19824 "and prepare your scripts for the day when this option will be required for "
19825 "write access."
19826 msgstr ""
19827
19828 #. type: textblock
19829 #: ../fish/guestfish.pod:498
19830 msgid ""
19831 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
19832 "other libguestfs program apart from guestfish and guestmount."
19833 msgstr ""
19834
19835 #. type: =head1
19836 #: ../fish/guestfish.pod:501
19837 msgid "QUOTING"
19838 msgstr ""
19839
19840 #. type: textblock
19841 #: ../fish/guestfish.pod:503
19842 msgid ""
19843 "You can quote ordinary parameters using either single or double quotes.  For "
19844 "example:"
19845 msgstr ""
19846
19847 #. type: verbatim
19848 #: ../fish/guestfish.pod:506
19849 #, no-wrap
19850 msgid ""
19851 " add \"file with a space.img\"\n"
19852 "\n"
19853 msgstr ""
19854
19855 #. type: verbatim
19856 #: ../fish/guestfish.pod:508
19857 #, no-wrap
19858 msgid ""
19859 " rm '/file name'\n"
19860 "\n"
19861 msgstr ""
19862
19863 #. type: verbatim
19864 #: ../fish/guestfish.pod:510
19865 #, no-wrap
19866 msgid ""
19867 " rm '/\"'\n"
19868 "\n"
19869 msgstr ""
19870
19871 #. type: textblock
19872 #: ../fish/guestfish.pod:512
19873 msgid ""
19874 "A few commands require a list of strings to be passed.  For these, use a "
19875 "whitespace-separated list, enclosed in quotes.  Strings containing "
19876 "whitespace to be passed through must be enclosed in single quotes.  A "
19877 "literal single quote must be escaped with a backslash."
19878 msgstr ""
19879
19880 #. type: verbatim
19881 #: ../fish/guestfish.pod:517
19882 #, no-wrap
19883 msgid ""
19884 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
19885 " command \"/bin/echo 'foo      bar'\"\n"
19886 " command \"/bin/echo \\'foo\\'\"\n"
19887 "\n"
19888 msgstr ""
19889
19890 #. type: =head1
19891 #: ../fish/guestfish.pod:521
19892 msgid "OPTIONAL ARGUMENTS"
19893 msgstr ""
19894
19895 #. type: textblock
19896 #: ../fish/guestfish.pod:523
19897 msgid ""
19898 "Some commands take optional arguments.  These arguments appear in this "
19899 "documentation as C<[argname:..]>.  You can use them as in these examples:"
19900 msgstr ""
19901
19902 #. type: verbatim
19903 #: ../fish/guestfish.pod:527
19904 #, no-wrap
19905 msgid ""
19906 " add-drive-opts filename\n"
19907 "\n"
19908 msgstr ""
19909
19910 #. type: verbatim
19911 #: ../fish/guestfish.pod:529
19912 #, no-wrap
19913 msgid ""
19914 " add-drive-opts filename readonly:true\n"
19915 "\n"
19916 msgstr ""
19917
19918 #. type: verbatim
19919 #: ../fish/guestfish.pod:531
19920 #, no-wrap
19921 msgid ""
19922 " add-drive-opts filename format:qcow2 readonly:false\n"
19923 "\n"
19924 msgstr ""
19925
19926 #. type: textblock
19927 #: ../fish/guestfish.pod:533
19928 msgid ""
19929 "Each optional argument can appear at most once.  All optional arguments must "
19930 "appear after the required ones."
19931 msgstr ""
19932
19933 #. type: =head1
19934 #: ../fish/guestfish.pod:536
19935 msgid "NUMBERS"
19936 msgstr ""
19937
19938 #. type: textblock
19939 #: ../fish/guestfish.pod:538
19940 msgid "This section applies to all commands which can take integers as parameters."
19941 msgstr ""
19942
19943 #. type: =head2
19944 #: ../fish/guestfish.pod:541
19945 msgid "SIZE SUFFIX"
19946 msgstr ""
19947
19948 #. type: textblock
19949 #: ../fish/guestfish.pod:543
19950 msgid ""
19951 "When the command takes a parameter measured in bytes, you can use one of the "
19952 "following suffixes to specify kilobytes, megabytes and larger sizes:"
19953 msgstr ""
19954
19955 #. type: =item
19956 #: ../fish/guestfish.pod:549
19957 msgid "B<k> or B<K> or B<KiB>"
19958 msgstr ""
19959
19960 #. type: textblock
19961 #: ../fish/guestfish.pod:551
19962 msgid "The size in kilobytes (multiplied by 1024)."
19963 msgstr ""
19964
19965 #. type: =item
19966 #: ../fish/guestfish.pod:553
19967 msgid "B<KB>"
19968 msgstr ""
19969
19970 #. type: textblock
19971 #: ../fish/guestfish.pod:555
19972 msgid "The size in SI 1000 byte units."
19973 msgstr ""
19974
19975 #. type: =item
19976 #: ../fish/guestfish.pod:557
19977 msgid "B<M> or B<MiB>"
19978 msgstr ""
19979
19980 #. type: textblock
19981 #: ../fish/guestfish.pod:559
19982 msgid "The size in megabytes (multiplied by 1048576)."
19983 msgstr ""
19984
19985 #. type: =item
19986 #: ../fish/guestfish.pod:561
19987 msgid "B<MB>"
19988 msgstr ""
19989
19990 #. type: textblock
19991 #: ../fish/guestfish.pod:563
19992 msgid "The size in SI 1000000 byte units."
19993 msgstr ""
19994
19995 #. type: =item
19996 #: ../fish/guestfish.pod:565
19997 msgid "B<G> or B<GiB>"
19998 msgstr ""
19999
20000 #. type: textblock
20001 #: ../fish/guestfish.pod:567
20002 msgid "The size in gigabytes (multiplied by 2**30)."
20003 msgstr ""
20004
20005 #. type: =item
20006 #: ../fish/guestfish.pod:569
20007 msgid "B<GB>"
20008 msgstr ""
20009
20010 #. type: textblock
20011 #: ../fish/guestfish.pod:571
20012 msgid "The size in SI 10**9 byte units."
20013 msgstr ""
20014
20015 #. type: =item
20016 #: ../fish/guestfish.pod:573
20017 msgid "B<T> or B<TiB>"
20018 msgstr ""
20019
20020 #. type: textblock
20021 #: ../fish/guestfish.pod:575
20022 msgid "The size in terabytes (multiplied by 2**40)."
20023 msgstr ""
20024
20025 #. type: =item
20026 #: ../fish/guestfish.pod:577
20027 msgid "B<TB>"
20028 msgstr ""
20029
20030 #. type: textblock
20031 #: ../fish/guestfish.pod:579
20032 msgid "The size in SI 10**12 byte units."
20033 msgstr ""
20034
20035 #. type: =item
20036 #: ../fish/guestfish.pod:581
20037 msgid "B<P> or B<PiB>"
20038 msgstr ""
20039
20040 #. type: textblock
20041 #: ../fish/guestfish.pod:583
20042 msgid "The size in petabytes (multiplied by 2**50)."
20043 msgstr ""
20044
20045 #. type: =item
20046 #: ../fish/guestfish.pod:585
20047 msgid "B<PB>"
20048 msgstr ""
20049
20050 #. type: textblock
20051 #: ../fish/guestfish.pod:587
20052 msgid "The size in SI 10**15 byte units."
20053 msgstr ""
20054
20055 #. type: =item
20056 #: ../fish/guestfish.pod:589
20057 msgid "B<E> or B<EiB>"
20058 msgstr ""
20059
20060 #. type: textblock
20061 #: ../fish/guestfish.pod:591
20062 msgid "The size in exabytes (multiplied by 2**60)."
20063 msgstr ""
20064
20065 #. type: =item
20066 #: ../fish/guestfish.pod:593
20067 msgid "B<EB>"
20068 msgstr ""
20069
20070 #. type: textblock
20071 #: ../fish/guestfish.pod:595
20072 msgid "The size in SI 10**18 byte units."
20073 msgstr ""
20074
20075 #. type: =item
20076 #: ../fish/guestfish.pod:597
20077 msgid "B<Z> or B<ZiB>"
20078 msgstr ""
20079
20080 #. type: textblock
20081 #: ../fish/guestfish.pod:599
20082 msgid "The size in zettabytes (multiplied by 2**70)."
20083 msgstr ""
20084
20085 #. type: =item
20086 #: ../fish/guestfish.pod:601
20087 msgid "B<ZB>"
20088 msgstr ""
20089
20090 #. type: textblock
20091 #: ../fish/guestfish.pod:603
20092 msgid "The size in SI 10**21 byte units."
20093 msgstr ""
20094
20095 #. type: =item
20096 #: ../fish/guestfish.pod:605
20097 msgid "B<Y> or B<YiB>"
20098 msgstr ""
20099
20100 #. type: textblock
20101 #: ../fish/guestfish.pod:607
20102 msgid "The size in yottabytes (multiplied by 2**80)."
20103 msgstr ""
20104
20105 #. type: =item
20106 #: ../fish/guestfish.pod:609
20107 msgid "B<YB>"
20108 msgstr ""
20109
20110 #. type: textblock
20111 #: ../fish/guestfish.pod:611
20112 msgid "The size in SI 10**24 byte units."
20113 msgstr ""
20114
20115 #. type: verbatim
20116 #: ../fish/guestfish.pod:617
20117 #, no-wrap
20118 msgid ""
20119 " truncate-size /file 1G\n"
20120 "\n"
20121 msgstr ""
20122
20123 #. type: textblock
20124 #: ../fish/guestfish.pod:619
20125 msgid "would truncate the file to 1 gigabyte."
20126 msgstr ""
20127
20128 #. type: textblock
20129 #: ../fish/guestfish.pod:621
20130 msgid ""
20131 "Be careful because a few commands take sizes in kilobytes or megabytes "
20132 "(eg. the parameter to L</memsize> is specified in megabytes already).  "
20133 "Adding a suffix will probably not do what you expect."
20134 msgstr ""
20135
20136 #. type: =head2
20137 #: ../fish/guestfish.pod:625
20138 msgid "OCTAL AND HEXADECIMAL NUMBERS"
20139 msgstr ""
20140
20141 #. type: textblock
20142 #: ../fish/guestfish.pod:627
20143 msgid ""
20144 "For specifying the radix (base) use the C convention: C<0> to prefix an "
20145 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
20146 msgstr ""
20147
20148 #. type: verbatim
20149 #: ../fish/guestfish.pod:630
20150 #, no-wrap
20151 msgid ""
20152 " 1234      decimal number 1234\n"
20153 " 02322     octal number, equivalent to decimal 1234\n"
20154 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
20155 "\n"
20156 msgstr ""
20157
20158 #. type: textblock
20159 #: ../fish/guestfish.pod:634
20160 msgid ""
20161 "When using the C<chmod> command, you almost always want to specify an octal "
20162 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
20163 "L<chmod(1)> program):"
20164 msgstr ""
20165
20166 #. type: verbatim
20167 #: ../fish/guestfish.pod:638
20168 #, no-wrap
20169 msgid ""
20170 " chmod 0777 /public  # OK\n"
20171 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
20172 "\n"
20173 msgstr ""
20174
20175 #. type: textblock
20176 #: ../fish/guestfish.pod:641
20177 msgid ""
20178 "Commands that return numbers usually print them in decimal, but some "
20179 "commands print numbers in other radices (eg. C<umask> prints the mode in "
20180 "octal, preceeded by C<0>)."
20181 msgstr ""
20182
20183 #. type: =head1
20184 #: ../fish/guestfish.pod:645
20185 msgid "WILDCARDS AND GLOBBING"
20186 msgstr ""
20187
20188 #. type: textblock
20189 #: ../fish/guestfish.pod:647
20190 msgid ""
20191 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
20192 "(globbing) by default.  So for example the following will not do what you "
20193 "expect:"
20194 msgstr ""
20195
20196 #. type: verbatim
20197 #: ../fish/guestfish.pod:651
20198 #, no-wrap
20199 msgid ""
20200 " rm-rf /home/*\n"
20201 "\n"
20202 msgstr ""
20203
20204 #. type: textblock
20205 #: ../fish/guestfish.pod:653
20206 msgid ""
20207 "Assuming you don't have a directory called literally C</home/*> then the "
20208 "above command will return an error."
20209 msgstr ""
20210
20211 #. type: textblock
20212 #: ../fish/guestfish.pod:656
20213 msgid "To perform wildcard expansion, use the C<glob> command."
20214 msgstr ""
20215
20216 #. type: verbatim
20217 #: ../fish/guestfish.pod:658
20218 #, no-wrap
20219 msgid ""
20220 " glob rm-rf /home/*\n"
20221 "\n"
20222 msgstr ""
20223
20224 #. type: textblock
20225 #: ../fish/guestfish.pod:660
20226 msgid ""
20227 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
20228 "many times), equivalent to:"
20229 msgstr ""
20230
20231 #. type: verbatim
20232 #: ../fish/guestfish.pod:663
20233 #, no-wrap
20234 msgid ""
20235 " rm-rf /home/jim\n"
20236 " rm-rf /home/joe\n"
20237 " rm-rf /home/mary\n"
20238 "\n"
20239 msgstr ""
20240
20241 #. type: textblock
20242 #: ../fish/guestfish.pod:667
20243 msgid "C<glob> only works on simple guest paths and not on device names."
20244 msgstr ""
20245
20246 #. type: textblock
20247 #: ../fish/guestfish.pod:669
20248 msgid ""
20249 "If you have several parameters, each containing a wildcard, then glob will "
20250 "perform a Cartesian product."
20251 msgstr ""
20252
20253 #. type: =head1
20254 #: ../fish/guestfish.pod:672
20255 msgid "COMMENTS"
20256 msgstr ""
20257
20258 #. type: textblock
20259 #: ../fish/guestfish.pod:674
20260 msgid ""
20261 "Any line which starts with a I<#> character is treated as a comment and "
20262 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
20263 "a command.  For example:"
20264 msgstr ""
20265
20266 #. type: verbatim
20267 #: ../fish/guestfish.pod:678
20268 #, no-wrap
20269 msgid ""
20270 " # this is a comment\n"
20271 "         # this is a comment\n"
20272 " foo # NOT a comment\n"
20273 "\n"
20274 msgstr ""
20275
20276 #. type: textblock
20277 #: ../fish/guestfish.pod:682
20278 msgid "Blank lines are also ignored."
20279 msgstr ""
20280
20281 #. type: =head1
20282 #: ../fish/guestfish.pod:684
20283 msgid "RUNNING COMMANDS LOCALLY"
20284 msgstr ""
20285
20286 #. type: textblock
20287 #: ../fish/guestfish.pod:686
20288 msgid ""
20289 "Any line which starts with a I<!> character is treated as a command sent to "
20290 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
20291 msgstr ""
20292
20293 #. type: verbatim
20294 #: ../fish/guestfish.pod:690
20295 #, no-wrap
20296 msgid ""
20297 " !mkdir local\n"
20298 " tgz-out /remote local/remote-data.tar.gz\n"
20299 "\n"
20300 msgstr ""
20301
20302 #. type: textblock
20303 #: ../fish/guestfish.pod:693
20304 msgid ""
20305 "will create a directory C<local> on the host, and then export the contents "
20306 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
20307 "(See C<tgz-out>)."
20308 msgstr ""
20309
20310 #. type: textblock
20311 #: ../fish/guestfish.pod:697
20312 msgid ""
20313 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
20314 "effect, due to the way that subprocesses work in Unix."
20315 msgstr ""
20316
20317 #. type: =head2
20318 #: ../fish/guestfish.pod:700
20319 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
20320 msgstr ""
20321
20322 #. type: textblock
20323 #: ../fish/guestfish.pod:702
20324 msgid ""
20325 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
20326 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
20327 "and executed as guestfish commands."
20328 msgstr ""
20329
20330 #. type: textblock
20331 #: ../fish/guestfish.pod:706
20332 msgid ""
20333 "Thus you can use shell script to construct arbitrary guestfish commands "
20334 "which are then parsed by guestfish."
20335 msgstr ""
20336
20337 #. type: textblock
20338 #: ../fish/guestfish.pod:709
20339 msgid ""
20340 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
20341 "through C</foo.100>) using guestfish commands alone.  However this is simple "
20342 "if we use a shell script to create the guestfish commands for us:"
20343 msgstr ""
20344
20345 #. type: verbatim
20346 #: ../fish/guestfish.pod:714
20347 #, no-wrap
20348 msgid ""
20349 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
20350 "\n"
20351 msgstr ""
20352
20353 #. type: textblock
20354 #: ../fish/guestfish.pod:716
20355 msgid "or with names like C</foo.001>:"
20356 msgstr ""
20357
20358 #. type: verbatim
20359 #: ../fish/guestfish.pod:718
20360 #, no-wrap
20361 msgid ""
20362 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
20363 "\n"
20364 msgstr ""
20365
20366 #. type: textblock
20367 #: ../fish/guestfish.pod:720
20368 msgid ""
20369 "When using guestfish interactively it can be helpful to just run the shell "
20370 "script first (ie. remove the initial C<E<lt>> character so it is just an "
20371 "ordinary I<!> local command), see what guestfish commands it would run, and "
20372 "when you are happy with those prepend the C<E<lt>> character to run the "
20373 "guestfish commands for real."
20374 msgstr ""
20375
20376 #. type: =head1
20377 #: ../fish/guestfish.pod:726
20378 msgid "PIPES"
20379 msgstr ""
20380
20381 #. type: textblock
20382 #: ../fish/guestfish.pod:728
20383 msgid ""
20384 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
20385 "command (a guestfish command) to the second command (any host command).  For "
20386 "example:"
20387 msgstr ""
20388
20389 #. type: verbatim
20390 #: ../fish/guestfish.pod:732
20391 #, no-wrap
20392 msgid ""
20393 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
20394 "\n"
20395 msgstr ""
20396
20397 #. type: textblock
20398 #: ../fish/guestfish.pod:734
20399 msgid ""
20400 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
20401 "program).  The above command would list all accounts in the guest filesystem "
20402 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
20403 msgstr ""
20404
20405 #. type: verbatim
20406 #: ../fish/guestfish.pod:739
20407 #, no-wrap
20408 msgid ""
20409 " hexdump /bin/ls | head\n"
20410 " list-devices | tail -1\n"
20411 " tgz-out / - | tar ztf -\n"
20412 "\n"
20413 msgstr ""
20414
20415 #. type: textblock
20416 #: ../fish/guestfish.pod:743
20417 msgid ""
20418 "The space before the pipe symbol is required, any space after the pipe "
20419 "symbol is optional.  Everything after the pipe symbol is just passed "
20420 "straight to the host shell, so it can contain redirections, globs and "
20421 "anything else that makes sense on the host side."
20422 msgstr ""
20423
20424 #. type: textblock
20425 #: ../fish/guestfish.pod:748
20426 msgid ""
20427 "To use a literal argument which begins with a pipe symbol, you have to quote "
20428 "it, eg:"
20429 msgstr ""
20430
20431 #. type: verbatim
20432 #: ../fish/guestfish.pod:751
20433 #, no-wrap
20434 msgid ""
20435 " echo \"|\"\n"
20436 "\n"
20437 msgstr ""
20438
20439 #. type: =head1
20440 #: ../fish/guestfish.pod:753
20441 msgid "HOME DIRECTORIES"
20442 msgstr ""
20443
20444 #. type: textblock
20445 #: ../fish/guestfish.pod:755
20446 msgid ""
20447 "If a parameter starts with the character C<~> then the tilde may be expanded "
20448 "as a home directory path (either C<~> for the current user's home directory, "
20449 "or C<~user> for another user)."
20450 msgstr ""
20451
20452 #. type: textblock
20453 #: ../fish/guestfish.pod:759
20454 msgid ""
20455 "Note that home directory expansion happens for users known I<on the host>, "
20456 "not in the guest filesystem."
20457 msgstr ""
20458
20459 #. type: textblock
20460 #: ../fish/guestfish.pod:762
20461 msgid ""
20462 "To use a literal argument which begins with a tilde, you have to quote it, "
20463 "eg:"
20464 msgstr ""
20465
20466 #. type: verbatim
20467 #: ../fish/guestfish.pod:765
20468 #, no-wrap
20469 msgid ""
20470 " echo \"~\"\n"
20471 "\n"
20472 msgstr ""
20473
20474 #. type: textblock
20475 #: ../fish/guestfish.pod:769
20476 msgid ""
20477 "Libguestfs has some support for Linux guests encrypted according to the "
20478 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
20479 "disk encryption systems used by modern Linux guests.  Currently only "
20480 "LVM-on-LUKS is supported."
20481 msgstr ""
20482
20483 #. type: textblock
20484 #: ../fish/guestfish.pod:774
20485 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
20486 msgstr ""
20487
20488 #. type: verbatim
20489 #: ../fish/guestfish.pod:776
20490 #, no-wrap
20491 msgid ""
20492 " ><fs> vfs-type /dev/sda2\n"
20493 " crypto_LUKS\n"
20494 "\n"
20495 msgstr ""
20496
20497 #. type: textblock
20498 #: ../fish/guestfish.pod:779
20499 msgid ""
20500 "Then open those devices using L</luks-open>.  This creates a device-mapper "
20501 "device called C</dev/mapper/luksdev>."
20502 msgstr ""
20503
20504 #. type: verbatim
20505 #: ../fish/guestfish.pod:782
20506 #, no-wrap
20507 msgid ""
20508 " ><fs> luks-open /dev/sda2 luksdev\n"
20509 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
20510 "\n"
20511 msgstr ""
20512
20513 #. type: textblock
20514 #: ../fish/guestfish.pod:785
20515 msgid ""
20516 "Finally you have to tell LVM to scan for volume groups on the newly created "
20517 "mapper device:"
20518 msgstr ""
20519
20520 #. type: verbatim
20521 #: ../fish/guestfish.pod:788
20522 #, no-wrap
20523 msgid ""
20524 " vgscan\n"
20525 " vg-activate-all true\n"
20526 "\n"
20527 msgstr ""
20528
20529 #. type: textblock
20530 #: ../fish/guestfish.pod:791
20531 msgid "The logical volume(s) can now be mounted in the usual way."
20532 msgstr ""
20533
20534 #. type: textblock
20535 #: ../fish/guestfish.pod:793
20536 msgid ""
20537 "Before closing a LUKS device you must unmount any logical volumes on it and "
20538 "deactivate the volume groups by calling C<vg-activate false VG> on each "
20539 "one.  Then you can close the mapper device:"
20540 msgstr ""
20541
20542 #. type: verbatim
20543 #: ../fish/guestfish.pod:797
20544 #, no-wrap
20545 msgid ""
20546 " vg-activate false /dev/VG\n"
20547 " luks-close /dev/mapper/luksdev\n"
20548 "\n"
20549 msgstr ""
20550
20551 #. type: =head1
20552 #: ../fish/guestfish.pod:800
20553 msgid "WINDOWS PATHS"
20554 msgstr ""
20555
20556 #. type: textblock
20557 #: ../fish/guestfish.pod:802
20558 msgid ""
20559 "If a path is prefixed with C<win:> then you can use Windows-style drive "
20560 "letters and paths (with some limitations).  The following commands are "
20561 "equivalent:"
20562 msgstr ""
20563
20564 #. type: verbatim
20565 #: ../fish/guestfish.pod:806
20566 #, no-wrap
20567 msgid ""
20568 " file /WINDOWS/system32/config/system.LOG\n"
20569 "\n"
20570 msgstr ""
20571
20572 #. type: verbatim
20573 #: ../fish/guestfish.pod:808
20574 #, no-wrap
20575 msgid ""
20576 " file win:\\windows\\system32\\config\\system.log\n"
20577 "\n"
20578 msgstr ""
20579
20580 #. type: verbatim
20581 #: ../fish/guestfish.pod:810
20582 #, no-wrap
20583 msgid ""
20584 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
20585 "\n"
20586 msgstr ""
20587
20588 #. type: textblock
20589 #: ../fish/guestfish.pod:812
20590 msgid ""
20591 "The parameter is rewritten \"behind the scenes\" by looking up the position "
20592 "where the drive is mounted, prepending that to the path, changing all "
20593 "backslash characters to forward slash, then resolving the result using "
20594 "L</case-sensitive-path>.  For example if the E: drive was mounted on C</e> "
20595 "then the parameter might be rewritten like this:"
20596 msgstr ""
20597
20598 #. type: verbatim
20599 #: ../fish/guestfish.pod:818
20600 #, no-wrap
20601 msgid ""
20602 " win:e:\\foo\\bar => /e/FOO/bar\n"
20603 "\n"
20604 msgstr ""
20605
20606 #. type: textblock
20607 #: ../fish/guestfish.pod:820
20608 msgid "This only works in argument positions that expect a path."
20609 msgstr ""
20610
20611 #. type: =head1
20612 #: ../fish/guestfish.pod:822
20613 msgid "UPLOADING AND DOWNLOADING FILES"
20614 msgstr ""
20615
20616 #. type: textblock
20617 #: ../fish/guestfish.pod:824
20618 msgid ""
20619 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
20620 "others which upload from or download to a local file, you can use the "
20621 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
20622 msgstr ""
20623
20624 #. type: verbatim
20625 #: ../fish/guestfish.pod:828
20626 #, no-wrap
20627 msgid ""
20628 " upload - /foo\n"
20629 "\n"
20630 msgstr ""
20631
20632 #. type: textblock
20633 #: ../fish/guestfish.pod:830
20634 msgid "reads stdin and creates from that a file C</foo> in the disk image, and:"
20635 msgstr ""
20636
20637 #. type: verbatim
20638 #: ../fish/guestfish.pod:833
20639 #, no-wrap
20640 msgid ""
20641 " tar-out /etc - | tar tf -\n"
20642 "\n"
20643 msgstr ""
20644
20645 #. type: textblock
20646 #: ../fish/guestfish.pod:835
20647 msgid ""
20648 "writes the tarball to stdout and then pipes that into the external \"tar\" "
20649 "command (see L</PIPES>)."
20650 msgstr ""
20651
20652 #. type: textblock
20653 #: ../fish/guestfish.pod:838
20654 msgid ""
20655 "When using C<-> to read from stdin, the input is read up to the end of "
20656 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
20657 "some arbitrary end marker:"
20658 msgstr ""
20659
20660 #. type: verbatim
20661 #: ../fish/guestfish.pod:842
20662 #, no-wrap
20663 msgid ""
20664 " upload -<<END /foo\n"
20665 " input line 1\n"
20666 " input line 2\n"
20667 " input line 3\n"
20668 " END\n"
20669 "\n"
20670 msgstr ""
20671
20672 #. type: textblock
20673 #: ../fish/guestfish.pod:848
20674 msgid ""
20675 "Any string of characters can be used instead of C<END>.  The end marker must "
20676 "appear on a line of its own, without any preceeding or following characters "
20677 "(not even spaces)."
20678 msgstr ""
20679
20680 #. type: textblock
20681 #: ../fish/guestfish.pod:852
20682 msgid ""
20683 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
20684 "upload local files (so-called \"FileIn\" parameters in the generator)."
20685 msgstr ""
20686
20687 #. type: =head1
20688 #: ../fish/guestfish.pod:855
20689 msgid "EXIT ON ERROR BEHAVIOUR"
20690 msgstr ""
20691
20692 #. type: textblock
20693 #: ../fish/guestfish.pod:857
20694 msgid ""
20695 "By default, guestfish will ignore any errors when in interactive mode "
20696 "(ie. taking commands from a human over a tty), and will exit on the first "
20697 "error in non-interactive mode (scripts, commands given on the command line)."
20698 msgstr ""
20699
20700 #. type: textblock
20701 #: ../fish/guestfish.pod:862
20702 msgid ""
20703 "If you prefix a command with a I<-> character, then that command will not "
20704 "cause guestfish to exit, even if that (one) command returns an error."
20705 msgstr ""
20706
20707 #. type: =head1
20708 #: ../fish/guestfish.pod:866
20709 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
20710 msgstr ""
20711
20712 #. type: textblock
20713 #: ../fish/guestfish.pod:868
20714 msgid ""
20715 "Guestfish can be remote-controlled over a socket.  This is useful "
20716 "particularly in shell scripts where you want to make several different "
20717 "changes to a filesystem, but you don't want the overhead of starting up a "
20718 "guestfish process each time."
20719 msgstr ""
20720
20721 #. type: textblock
20722 #: ../fish/guestfish.pod:873
20723 msgid "Start a guestfish server process using:"
20724 msgstr ""
20725
20726 #. type: verbatim
20727 #: ../fish/guestfish.pod:875
20728 #, no-wrap
20729 msgid ""
20730 " eval \"`guestfish --listen`\"\n"
20731 "\n"
20732 msgstr ""
20733
20734 #. type: textblock
20735 #: ../fish/guestfish.pod:877
20736 msgid "and then send it commands by doing:"
20737 msgstr ""
20738
20739 #. type: verbatim
20740 #: ../fish/guestfish.pod:879
20741 #, no-wrap
20742 msgid ""
20743 " guestfish --remote cmd [...]\n"
20744 "\n"
20745 msgstr ""
20746
20747 #. type: textblock
20748 #: ../fish/guestfish.pod:881
20749 msgid "To cause the server to exit, send it the exit command:"
20750 msgstr ""
20751
20752 #. type: verbatim
20753 #: ../fish/guestfish.pod:883
20754 #, no-wrap
20755 msgid ""
20756 " guestfish --remote exit\n"
20757 "\n"
20758 msgstr ""
20759
20760 #. type: textblock
20761 #: ../fish/guestfish.pod:885
20762 msgid ""
20763 "Note that the server will normally exit if there is an error in a command.  "
20764 "You can change this in the usual way.  See section L</EXIT ON ERROR "
20765 "BEHAVIOUR>."
20766 msgstr ""
20767
20768 #. type: =head2
20769 #: ../fish/guestfish.pod:889
20770 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
20771 msgstr ""
20772
20773 #. type: textblock
20774 #: ../fish/guestfish.pod:891
20775 msgid ""
20776 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
20777 "is how the I<--remote> option knows where to send the commands.  You can "
20778 "have several guestfish listener processes running using:"
20779 msgstr ""
20780
20781 #. type: verbatim
20782 #: ../fish/guestfish.pod:895
20783 #, no-wrap
20784 msgid ""
20785 " eval \"`guestfish --listen`\"\n"
20786 " pid1=$GUESTFISH_PID\n"
20787 " eval \"`guestfish --listen`\"\n"
20788 " pid2=$GUESTFISH_PID\n"
20789 " ...\n"
20790 " guestfish --remote=$pid1 cmd\n"
20791 " guestfish --remote=$pid2 cmd\n"
20792 "\n"
20793 msgstr ""
20794
20795 #. type: =head2
20796 #: ../fish/guestfish.pod:903
20797 msgid "REMOTE CONTROL AND CSH"
20798 msgstr ""
20799
20800 #. type: textblock
20801 #: ../fish/guestfish.pod:905
20802 msgid ""
20803 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
20804 "option:"
20805 msgstr ""
20806
20807 #. type: verbatim
20808 #: ../fish/guestfish.pod:908
20809 #, no-wrap
20810 msgid ""
20811 " eval \"`guestfish --listen --csh`\"\n"
20812 "\n"
20813 msgstr ""
20814
20815 #. type: =head2
20816 #: ../fish/guestfish.pod:910
20817 msgid "REMOTE CONTROL DETAILS"
20818 msgstr ""
20819
20820 #. type: textblock
20821 #: ../fish/guestfish.pod:912
20822 msgid ""
20823 "Remote control happens over a Unix domain socket called "
20824 "C</tmp/.guestfish-$UID/socket-$PID>, where C<$UID> is the effective user ID "
20825 "of the process, and C<$PID> is the process ID of the server."
20826 msgstr ""
20827
20828 #. type: textblock
20829 #: ../fish/guestfish.pod:916
20830 msgid "Guestfish client and server versions must match exactly."
20831 msgstr ""
20832
20833 #. type: =head1
20834 #: ../fish/guestfish.pod:918
20835 msgid "PREPARED DISK IMAGES"
20836 msgstr ""
20837
20838 #. type: textblock
20839 #: ../fish/guestfish.pod:920
20840 msgid ""
20841 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
20842 "preformatted disk images that guestfish can make for you to save typing.  "
20843 "This is particularly useful for testing purposes.  This option is used "
20844 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
20845 "can be mixed with I<-a>)."
20846 msgstr ""
20847
20848 #. type: textblock
20849 #: ../fish/guestfish.pod:926
20850 msgid ""
20851 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
20852 "the second and so on.  Existing files in the current directory are "
20853 "I<overwritten>."
20854 msgstr ""
20855
20856 #. type: textblock
20857 #: ../fish/guestfish.pod:930
20858 msgid ""
20859 "The type briefly describes how the disk should be sized, partitioned, how "
20860 "filesystem(s) should be created, and how content should be added.  "
20861 "Optionally the type can be followed by extra parameters, separated by C<:> "
20862 "(colon) characters.  For example, I<-N fs> creates a default 100MB, "
20863 "sparsely-allocated disk, containing a single partition, with the partition "
20864 "formatted as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem "
20865 "on a 1GB disk instead."
20866 msgstr ""
20867
20868 #. type: textblock
20869 #: ../fish/guestfish.pod:938
20870 msgid "To list the available types and any extra parameters they take, run:"
20871 msgstr ""
20872
20873 #. type: textblock
20874 #: ../fish/guestfish.pod:942
20875 msgid ""
20876 "Note that the prepared filesystem is not mounted.  You would usually have to "
20877 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
20878 msgstr ""
20879
20880 #. type: textblock
20881 #: ../fish/guestfish.pod:946
20882 msgid ""
20883 "If any I<-N> or I<--new> options are given, the guest is automatically "
20884 "launched."
20885 msgstr ""
20886
20887 #. type: textblock
20888 #: ../fish/guestfish.pod:951
20889 msgid "Create a 100MB disk with an ext4-formatted partition:"
20890 msgstr ""
20891
20892 #. type: verbatim
20893 #: ../fish/guestfish.pod:953
20894 #, no-wrap
20895 msgid ""
20896 " guestfish -N fs:ext4\n"
20897 "\n"
20898 msgstr ""
20899
20900 #. type: textblock
20901 #: ../fish/guestfish.pod:955
20902 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
20903 msgstr ""
20904
20905 #. type: verbatim
20906 #: ../fish/guestfish.pod:957
20907 #, no-wrap
20908 msgid ""
20909 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
20910 "\n"
20911 msgstr ""
20912
20913 #. type: textblock
20914 #: ../fish/guestfish.pod:959
20915 msgid "Create a blank 200MB disk:"
20916 msgstr ""
20917
20918 #. type: verbatim
20919 #: ../fish/guestfish.pod:961
20920 #, no-wrap
20921 msgid ""
20922 " guestfish -N disk:200M\n"
20923 "\n"
20924 msgstr ""
20925
20926 #. type: =head1
20927 #: ../fish/guestfish.pod:963
20928 msgid "PROGRESS BARS"
20929 msgstr ""
20930
20931 #. type: textblock
20932 #: ../fish/guestfish.pod:965
20933 msgid ""
20934 "Some (not all) long-running commands send progress notification messages as "
20935 "they are running.  Guestfish turns these messages into progress bars."
20936 msgstr ""
20937
20938 #. type: textblock
20939 #: ../fish/guestfish.pod:969
20940 msgid ""
20941 "When a command that supports progress bars takes longer than two seconds to "
20942 "run, and if progress bars are enabled, then you will see one appearing below "
20943 "the command:"
20944 msgstr ""
20945
20946 #. type: verbatim
20947 #: ../fish/guestfish.pod:973
20948 #, no-wrap
20949 msgid ""
20950 " ><fs> copy-size /large-file /another-file 2048M\n"
20951 " / 10% [#####-----------------------------------------] 00:30\n"
20952 "\n"
20953 msgstr ""
20954
20955 #. type: textblock
20956 #: ../fish/guestfish.pod:976
20957 msgid ""
20958 "The spinner on the left hand side moves round once for every progress "
20959 "notification received from the backend.  This is a (reasonably) golden "
20960 "assurance that the command is \"doing something\" even if the progress bar "
20961 "is not moving, because the command is able to send the progress "
20962 "notifications.  When the bar reaches 100% and the command finishes, the "
20963 "spinner disappears."
20964 msgstr ""
20965
20966 #. type: textblock
20967 #: ../fish/guestfish.pod:983
20968 msgid ""
20969 "Progress bars are enabled by default when guestfish is used interactively.  "
20970 "You can enable them even for non-interactive modes using I<--progress-bars>, "
20971 "and you can disable them completely using I<--no-progress-bars>."
20972 msgstr ""
20973
20974 #. type: =head1
20975 #: ../fish/guestfish.pod:988
20976 msgid "GUESTFISH COMMANDS"
20977 msgstr ""
20978
20979 #. type: textblock
20980 #: ../fish/guestfish.pod:990
20981 msgid ""
20982 "The commands in this section are guestfish convenience commands, in other "
20983 "words, they are not part of the L<guestfs(3)> API."
20984 msgstr ""
20985
20986 #. type: =head2
20987 #: ../fish/guestfish.pod:993
20988 msgid "help"
20989 msgstr ""
20990
20991 #. type: verbatim
20992 #: ../fish/guestfish.pod:995
20993 #, no-wrap
20994 msgid ""
20995 " help\n"
20996 " help cmd\n"
20997 "\n"
20998 msgstr ""
20999
21000 #. type: textblock
21001 #: ../fish/guestfish.pod:998
21002 msgid "Without any parameter, this provides general help."
21003 msgstr ""
21004
21005 #. type: textblock
21006 #: ../fish/guestfish.pod:1000
21007 msgid "With a C<cmd> parameter, this displays detailed help for that command."
21008 msgstr ""
21009
21010 #. type: =head2
21011 #: ../fish/guestfish.pod:1002
21012 msgid "quit | exit"
21013 msgstr ""
21014
21015 #. type: textblock
21016 #: ../fish/guestfish.pod:1004
21017 msgid "This exits guestfish.  You can also use C<^D> key."
21018 msgstr ""
21019
21020 #. type: textblock
21021 #: ../fish/guestfish.pod:1006
21022 msgid "@FISH_COMMANDS@"
21023 msgstr ""
21024
21025 #. type: =head1
21026 #: ../fish/guestfish.pod:1008
21027 msgid "COMMANDS"
21028 msgstr ""
21029
21030 #. type: =head1
21031 #: ../fish/guestfish.pod:1012 ../test-tool/libguestfs-test-tool.pod:77
21032 msgid "EXIT CODE"
21033 msgstr ""
21034
21035 #. type: textblock
21036 #: ../fish/guestfish.pod:1014
21037 msgid ""
21038 "guestfish returns 0 if the commands completed without error, or 1 if there "
21039 "was an error."
21040 msgstr ""
21041
21042 #. type: =item
21043 #: ../fish/guestfish.pod:1021
21044 msgid "EDITOR"
21045 msgstr ""
21046
21047 #. type: textblock
21048 #: ../fish/guestfish.pod:1023
21049 msgid ""
21050 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
21051 "C<vi>."
21052 msgstr ""
21053
21054 #. type: =item
21055 #: ../fish/guestfish.pod:1026
21056 msgid "GUESTFISH_PID"
21057 msgstr ""
21058
21059 #. type: textblock
21060 #: ../fish/guestfish.pod:1028
21061 msgid ""
21062 "Used with the I<--remote> option to specify the remote guestfish process to "
21063 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
21064 msgstr ""
21065
21066 #. type: =item
21067 #: ../fish/guestfish.pod:1032
21068 msgid "HEXEDITOR"
21069 msgstr ""
21070
21071 #. type: textblock
21072 #: ../fish/guestfish.pod:1034
21073 msgid ""
21074 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
21075 "not specified, the external L<hexedit(1)> program is used."
21076 msgstr ""
21077
21078 #. type: =item
21079 #: ../fish/guestfish.pod:1038
21080 msgid "HOME"
21081 msgstr ""
21082
21083 #. type: textblock
21084 #: ../fish/guestfish.pod:1040
21085 msgid ""
21086 "If compiled with GNU readline support, various files in the home directory "
21087 "can be used.  See L</FILES>."
21088 msgstr ""
21089
21090 #. type: textblock
21091 #: ../fish/guestfish.pod:1049
21092 msgid ""
21093 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
21094 "effect as using the B<-v> option."
21095 msgstr ""
21096
21097 #. type: textblock
21098 #: ../fish/guestfish.pod:1061
21099 msgid ""
21100 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
21101 "the discussion of paths in L<guestfs(3)>."
21102 msgstr ""
21103
21104 #. type: textblock
21105 #: ../fish/guestfish.pod:1072
21106 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
21107 msgstr ""
21108
21109 #. type: =item
21110 #: ../fish/guestfish.pod:1074
21111 msgid "PAGER"
21112 msgstr ""
21113
21114 #. type: textblock
21115 #: ../fish/guestfish.pod:1076
21116 msgid ""
21117 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
21118 "C<more>."
21119 msgstr ""
21120
21121 #. type: =head1
21122 #: ../fish/guestfish.pod:1092 ../fuse/guestmount.pod:254
21123 msgid "FILES"
21124 msgstr ""
21125
21126 #. type: =item
21127 #: ../fish/guestfish.pod:1096 ../fuse/guestmount.pod:258
21128 msgid "$HOME/.libguestfs-tools.rc"
21129 msgstr ""
21130
21131 #. type: =item
21132 #: ../fish/guestfish.pod:1098 ../fuse/guestmount.pod:260
21133 msgid "/etc/libguestfs-tools.conf"
21134 msgstr ""
21135
21136 #. type: textblock
21137 #: ../fish/guestfish.pod:1100 ../fuse/guestmount.pod:262
21138 msgid ""
21139 "This configuration file controls the default read-only or read-write mode "
21140 "(I<--ro> or I<--rw>)."
21141 msgstr ""
21142
21143 #. type: textblock
21144 #: ../fish/guestfish.pod:1103
21145 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
21146 msgstr ""
21147
21148 #. type: =item
21149 #: ../fish/guestfish.pod:1105
21150 msgid "$HOME/.guestfish"
21151 msgstr ""
21152
21153 #. type: textblock
21154 #: ../fish/guestfish.pod:1107
21155 msgid ""
21156 "If compiled with GNU readline support, then the command history is saved in "
21157 "this file."
21158 msgstr ""
21159
21160 #. type: =item
21161 #: ../fish/guestfish.pod:1110
21162 msgid "$HOME/.inputrc"
21163 msgstr ""
21164
21165 #. type: =item
21166 #: ../fish/guestfish.pod:1112
21167 msgid "/etc/inputrc"
21168 msgstr ""
21169
21170 #. type: textblock
21171 #: ../fish/guestfish.pod:1114
21172 msgid ""
21173 "If compiled with GNU readline support, then these files can be used to "
21174 "configure readline.  For further information, please see "
21175 "L<readline(3)/INITIALIZATION FILE>."
21176 msgstr ""
21177
21178 #. type: textblock
21179 #: ../fish/guestfish.pod:1118
21180 msgid "To write rules which only apply to guestfish, use:"
21181 msgstr ""
21182
21183 #. type: verbatim
21184 #: ../fish/guestfish.pod:1120
21185 #, no-wrap
21186 msgid ""
21187 " $if guestfish\n"
21188 " ...\n"
21189 " $endif\n"
21190 "\n"
21191 msgstr ""
21192
21193 #. type: textblock
21194 #: ../fish/guestfish.pod:1124
21195 msgid ""
21196 "Variables that you can set in inputrc that change the behaviour of guestfish "
21197 "in useful ways include:"
21198 msgstr ""
21199
21200 #. type: =item
21201 #: ../fish/guestfish.pod:1129
21202 msgid "completion-ignore-case (default: on)"
21203 msgstr ""
21204
21205 #. type: textblock
21206 #: ../fish/guestfish.pod:1131
21207 msgid ""
21208 "By default, guestfish will ignore case when tab-completing paths on the "
21209 "disk.  Use:"
21210 msgstr ""
21211
21212 #. type: verbatim
21213 #: ../fish/guestfish.pod:1134
21214 #, no-wrap
21215 msgid ""
21216 " set completion-ignore-case off\n"
21217 "\n"
21218 msgstr ""
21219
21220 #. type: textblock
21221 #: ../fish/guestfish.pod:1136
21222 msgid "to make guestfish case sensitive."
21223 msgstr ""
21224
21225 #. type: =item
21226 #: ../fish/guestfish.pod:1140
21227 msgid "test1.img"
21228 msgstr ""
21229
21230 #. type: =item
21231 #: ../fish/guestfish.pod:1142
21232 msgid "test2.img (etc)"
21233 msgstr ""
21234
21235 #. type: textblock
21236 #: ../fish/guestfish.pod:1144
21237 msgid ""
21238 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
21239 "will be created in the file C<test1.img> in the current directory.  The "
21240 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
21241 "the same name will be overwritten."
21242 msgstr ""
21243
21244 #. type: textblock
21245 #: ../fish/guestfish.pod:1153
21246 msgid ""
21247 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, "
21248 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, "
21249 "L<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, "
21250 "L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, "
21251 "L<virt-rescue(1)>, L<virt-resize(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, "
21252 "L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<hexedit(1)>."
21253 msgstr ""
21254
21255 #. type: textblock
21256 #: ../fish/guestfish.pod:1183 ../test-tool/libguestfs-test-tool.pod:102 ../fuse/guestmount.pod:289 ../tools/virt-win-reg.pl:777 ../tools/virt-list-filesystems.pl:210 ../tools/virt-tar.pl:309 ../tools/virt-make-fs.pl:572 ../tools/virt-list-partitions.pl:277
21257 msgid ""
21258 "This program is free software; you can redistribute it and/or modify it "
21259 "under the terms of the GNU General Public License as published by the Free "
21260 "Software Foundation; either version 2 of the License, or (at your option) "
21261 "any later version."
21262 msgstr ""
21263
21264 #. type: textblock
21265 #: ../fish/guestfish.pod:1188 ../test-tool/libguestfs-test-tool.pod:107 ../fuse/guestmount.pod:294 ../tools/virt-win-reg.pl:782 ../tools/virt-list-filesystems.pl:215 ../tools/virt-tar.pl:314 ../tools/virt-make-fs.pl:577 ../tools/virt-list-partitions.pl:282
21266 msgid ""
21267 "This program is distributed in the hope that it will be useful, but WITHOUT "
21268 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
21269 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
21270 "more details."
21271 msgstr ""
21272
21273 #. type: textblock
21274 #: ../fish/guestfish.pod:1193 ../test-tool/libguestfs-test-tool.pod:112 ../fuse/guestmount.pod:299 ../tools/virt-win-reg.pl:787 ../tools/virt-list-filesystems.pl:220 ../tools/virt-tar.pl:319 ../tools/virt-make-fs.pl:582 ../tools/virt-list-partitions.pl:287
21275 msgid ""
21276 "You should have received a copy of the GNU General Public License along with "
21277 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
21278 "Ave, Cambridge, MA 02139, USA."
21279 msgstr ""
21280
21281 #. type: =head2
21282 #: ../fish/guestfish-actions.pod:1
21283 msgid "add-cdrom"
21284 msgstr ""
21285
21286 #. type: verbatim
21287 #: ../fish/guestfish-actions.pod:3
21288 #, no-wrap
21289 msgid ""
21290 " add-cdrom filename\n"
21291 "\n"
21292 msgstr ""
21293
21294 #. type: textblock
21295 #: ../fish/guestfish-actions.pod:15
21296 msgid ""
21297 "This call checks for the existence of C<filename>.  This stops you from "
21298 "specifying other types of drive which are supported by qemu such as C<nbd:> "
21299 "and C<http:> URLs.  To specify those, use the general L</config> call "
21300 "instead."
21301 msgstr ""
21302
21303 #. type: textblock
21304 #: ../fish/guestfish-actions.pod:22
21305 msgid ""
21306 "If you just want to add an ISO file (often you use this as an efficient way "
21307 "to transfer large files into the guest), then you should probably use "
21308 "L</add-drive-ro> instead."
21309 msgstr ""
21310
21311 #. type: =head2
21312 #: ../fish/guestfish-actions.pod:35
21313 msgid "add-domain"
21314 msgstr ""
21315
21316 #. type: =head2
21317 #: ../fish/guestfish-actions.pod:37
21318 msgid "domain"
21319 msgstr ""
21320
21321 #. type: verbatim
21322 #: ../fish/guestfish-actions.pod:39
21323 #, no-wrap
21324 msgid ""
21325 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..] "
21326 "[allowuuid:..]\n"
21327 "\n"
21328 msgstr ""
21329
21330 #. type: textblock
21331 #: ../fish/guestfish-actions.pod:41
21332 msgid ""
21333 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
21334 "It works by connecting to libvirt, requesting the domain and domain XML from "
21335 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
21336 msgstr ""
21337
21338 #. type: textblock
21339 #: ../fish/guestfish-actions.pod:76
21340 msgid ""
21341 "The other optional parameters are passed directly through to "
21342 "L</add-drive-opts>."
21343 msgstr ""
21344
21345 #. type: textblock
21346 #: ../fish/guestfish-actions.pod:79 ../fish/guestfish-actions.pod:143 ../fish/guestfish-actions.pod:3052
21347 msgid ""
21348 "This command has one or more optional arguments.  See L</OPTIONAL "
21349 "ARGUMENTS>."
21350 msgstr ""
21351
21352 #. type: =head2
21353 #: ../fish/guestfish-actions.pod:81
21354 msgid "add-drive"
21355 msgstr ""
21356
21357 #. type: verbatim
21358 #: ../fish/guestfish-actions.pod:83
21359 #, no-wrap
21360 msgid ""
21361 " add-drive filename\n"
21362 "\n"
21363 msgstr ""
21364
21365 #. type: textblock
21366 #: ../fish/guestfish-actions.pod:85
21367 msgid ""
21368 "This function is the equivalent of calling L</add-drive-opts> with no "
21369 "optional parameters, so the disk is added writable, with the format being "
21370 "detected automatically."
21371 msgstr ""
21372
21373 #. type: textblock
21374 #: ../fish/guestfish-actions.pod:89
21375 msgid ""
21376 "Automatic detection of the format opens you up to a potential security hole "
21377 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
21378 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
21379 "you should think about replacing calls to this function with calls to "
21380 "L</add-drive-opts>, and specifying the format."
21381 msgstr ""
21382
21383 #. type: =head2
21384 #: ../fish/guestfish-actions.pod:96
21385 msgid "add-drive-opts"
21386 msgstr ""
21387
21388 #. type: =head2
21389 #: ../fish/guestfish-actions.pod:98
21390 msgid "add"
21391 msgstr ""
21392
21393 #. type: verbatim
21394 #: ../fish/guestfish-actions.pod:100
21395 #, no-wrap
21396 msgid ""
21397 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
21398 "\n"
21399 msgstr ""
21400
21401 #. type: textblock
21402 #: ../fish/guestfish-actions.pod:127
21403 msgid ""
21404 "This forces the image format.  If you omit this (or use L</add-drive> or "
21405 "L</add-drive-ro>) then the format is automatically detected.  Possible "
21406 "formats include C<raw> and C<qcow2>."
21407 msgstr ""
21408
21409 #. type: textblock
21410 #: ../fish/guestfish-actions.pod:138
21411 msgid ""
21412 "This rarely-used option lets you emulate the behaviour of the deprecated "
21413 "L</add-drive-with-if> call (q.v.)"
21414 msgstr ""
21415
21416 #. type: =head2
21417 #: ../fish/guestfish-actions.pod:145
21418 msgid "add-drive-ro"
21419 msgstr ""
21420
21421 #. type: =head2
21422 #: ../fish/guestfish-actions.pod:147
21423 msgid "add-ro"
21424 msgstr ""
21425
21426 #. type: verbatim
21427 #: ../fish/guestfish-actions.pod:149
21428 #, no-wrap
21429 msgid ""
21430 " add-drive-ro filename\n"
21431 "\n"
21432 msgstr ""
21433
21434 #. type: textblock
21435 #: ../fish/guestfish-actions.pod:151
21436 msgid ""
21437 "This function is the equivalent of calling L</add-drive-opts> with the "
21438 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
21439 "is added read-only, with the format being detected automatically."
21440 msgstr ""
21441
21442 #. type: =head2
21443 #: ../fish/guestfish-actions.pod:156
21444 msgid "add-drive-ro-with-if"
21445 msgstr ""
21446
21447 #. type: verbatim
21448 #: ../fish/guestfish-actions.pod:158
21449 #, no-wrap
21450 msgid ""
21451 " add-drive-ro-with-if filename iface\n"
21452 "\n"
21453 msgstr ""
21454
21455 #. type: textblock
21456 #: ../fish/guestfish-actions.pod:160
21457 msgid ""
21458 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
21459 "interface emulation to use at run time."
21460 msgstr ""
21461
21462 #. type: =head2
21463 #: ../fish/guestfish-actions.pod:170
21464 msgid "add-drive-with-if"
21465 msgstr ""
21466
21467 #. type: verbatim
21468 #: ../fish/guestfish-actions.pod:172
21469 #, no-wrap
21470 msgid ""
21471 " add-drive-with-if filename iface\n"
21472 "\n"
21473 msgstr ""
21474
21475 #. type: textblock
21476 #: ../fish/guestfish-actions.pod:174
21477 msgid ""
21478 "This is the same as L</add-drive> but it allows you to specify the QEMU "
21479 "interface emulation to use at run time."
21480 msgstr ""
21481
21482 #. type: =head2
21483 #: ../fish/guestfish-actions.pod:184
21484 msgid "aug-clear"
21485 msgstr ""
21486
21487 #. type: verbatim
21488 #: ../fish/guestfish-actions.pod:186
21489 #, no-wrap
21490 msgid ""
21491 " aug-clear augpath\n"
21492 "\n"
21493 msgstr ""
21494
21495 #. type: =head2
21496 #: ../fish/guestfish-actions.pod:191
21497 msgid "aug-close"
21498 msgstr ""
21499
21500 #. type: verbatim
21501 #: ../fish/guestfish-actions.pod:193
21502 #, no-wrap
21503 msgid ""
21504 " aug-close\n"
21505 "\n"
21506 msgstr ""
21507
21508 #. type: textblock
21509 #: ../fish/guestfish-actions.pod:195
21510 msgid ""
21511 "Close the current Augeas handle and free up any resources used by it.  After "
21512 "calling this, you have to call L</aug-init> again before you can use any "
21513 "other Augeas functions."
21514 msgstr ""
21515
21516 #. type: =head2
21517 #: ../fish/guestfish-actions.pod:200
21518 msgid "aug-defnode"
21519 msgstr ""
21520
21521 #. type: verbatim
21522 #: ../fish/guestfish-actions.pod:202
21523 #, no-wrap
21524 msgid ""
21525 " aug-defnode name expr val\n"
21526 "\n"
21527 msgstr ""
21528
21529 #. type: textblock
21530 #: ../fish/guestfish-actions.pod:207
21531 msgid ""
21532 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
21533 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
21534 "containing that single node."
21535 msgstr ""
21536
21537 #. type: =head2
21538 #: ../fish/guestfish-actions.pod:215
21539 msgid "aug-defvar"
21540 msgstr ""
21541
21542 #. type: verbatim
21543 #: ../fish/guestfish-actions.pod:217
21544 #, no-wrap
21545 msgid ""
21546 " aug-defvar name expr\n"
21547 "\n"
21548 msgstr ""
21549
21550 #. type: =head2
21551 #: ../fish/guestfish-actions.pod:226
21552 msgid "aug-get"
21553 msgstr ""
21554
21555 #. type: verbatim
21556 #: ../fish/guestfish-actions.pod:228
21557 #, no-wrap
21558 msgid ""
21559 " aug-get augpath\n"
21560 "\n"
21561 msgstr ""
21562
21563 #. type: =head2
21564 #: ../fish/guestfish-actions.pod:233
21565 msgid "aug-init"
21566 msgstr ""
21567
21568 #. type: verbatim
21569 #: ../fish/guestfish-actions.pod:235
21570 #, no-wrap
21571 msgid ""
21572 " aug-init root flags\n"
21573 "\n"
21574 msgstr ""
21575
21576 #. type: textblock
21577 #: ../fish/guestfish-actions.pod:241
21578 msgid "You must call this before using any other L</aug-*> commands."
21579 msgstr ""
21580
21581 #. type: textblock
21582 #: ../fish/guestfish-actions.pod:276
21583 msgid "Do not load the tree in L</aug-init>."
21584 msgstr ""
21585
21586 #. type: textblock
21587 #: ../fish/guestfish-actions.pod:280
21588 msgid "To close the handle, you can call L</aug-close>."
21589 msgstr ""
21590
21591 #. type: =head2
21592 #: ../fish/guestfish-actions.pod:284
21593 msgid "aug-insert"
21594 msgstr ""
21595
21596 #. type: verbatim
21597 #: ../fish/guestfish-actions.pod:286
21598 #, no-wrap
21599 msgid ""
21600 " aug-insert augpath label true|false\n"
21601 "\n"
21602 msgstr ""
21603
21604 #. type: =head2
21605 #: ../fish/guestfish-actions.pod:296
21606 msgid "aug-load"
21607 msgstr ""
21608
21609 #. type: verbatim
21610 #: ../fish/guestfish-actions.pod:298
21611 #, no-wrap
21612 msgid ""
21613 " aug-load\n"
21614 "\n"
21615 msgstr ""
21616
21617 #. type: =head2
21618 #: ../fish/guestfish-actions.pod:305
21619 msgid "aug-ls"
21620 msgstr ""
21621
21622 #. type: verbatim
21623 #: ../fish/guestfish-actions.pod:307
21624 #, no-wrap
21625 msgid ""
21626 " aug-ls augpath\n"
21627 "\n"
21628 msgstr ""
21629
21630 #. type: textblock
21631 #: ../fish/guestfish-actions.pod:309
21632 msgid ""
21633 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
21634 "resulting nodes into alphabetical order."
21635 msgstr ""
21636
21637 #. type: =head2
21638 #: ../fish/guestfish-actions.pod:312
21639 msgid "aug-match"
21640 msgstr ""
21641
21642 #. type: verbatim
21643 #: ../fish/guestfish-actions.pod:314
21644 #, no-wrap
21645 msgid ""
21646 " aug-match augpath\n"
21647 "\n"
21648 msgstr ""
21649
21650 #. type: =head2
21651 #: ../fish/guestfish-actions.pod:320
21652 msgid "aug-mv"
21653 msgstr ""
21654
21655 #. type: verbatim
21656 #: ../fish/guestfish-actions.pod:322
21657 #, no-wrap
21658 msgid ""
21659 " aug-mv src dest\n"
21660 "\n"
21661 msgstr ""
21662
21663 #. type: =head2
21664 #: ../fish/guestfish-actions.pod:327
21665 msgid "aug-rm"
21666 msgstr ""
21667
21668 #. type: verbatim
21669 #: ../fish/guestfish-actions.pod:329
21670 #, no-wrap
21671 msgid ""
21672 " aug-rm augpath\n"
21673 "\n"
21674 msgstr ""
21675
21676 #. type: =head2
21677 #: ../fish/guestfish-actions.pod:335
21678 msgid "aug-save"
21679 msgstr ""
21680
21681 #. type: verbatim
21682 #: ../fish/guestfish-actions.pod:337
21683 #, no-wrap
21684 msgid ""
21685 " aug-save\n"
21686 "\n"
21687 msgstr ""
21688
21689 #. type: textblock
21690 #: ../fish/guestfish-actions.pod:341
21691 msgid ""
21692 "The flags which were passed to L</aug-init> affect exactly how files are "
21693 "saved."
21694 msgstr ""
21695
21696 #. type: =head2
21697 #: ../fish/guestfish-actions.pod:344
21698 msgid "aug-set"
21699 msgstr ""
21700
21701 #. type: verbatim
21702 #: ../fish/guestfish-actions.pod:346
21703 #, no-wrap
21704 msgid ""
21705 " aug-set augpath val\n"
21706 "\n"
21707 msgstr ""
21708
21709 #. type: textblock
21710 #: ../fish/guestfish-actions.pod:350
21711 msgid ""
21712 "In the Augeas API, it is possible to clear a node by setting the value to "
21713 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
21714 "this call.  Instead you must use the L</aug-clear> call."
21715 msgstr ""
21716
21717 #. type: =head2
21718 #: ../fish/guestfish-actions.pod:355
21719 msgid "available"
21720 msgstr ""
21721
21722 #. type: verbatim
21723 #: ../fish/guestfish-actions.pod:357
21724 #, no-wrap
21725 msgid ""
21726 " available 'groups ...'\n"
21727 "\n"
21728 msgstr ""
21729
21730 #. type: textblock
21731 #: ../fish/guestfish-actions.pod:363
21732 msgid ""
21733 "The libguestfs groups, and the functions that those groups correspond to, "
21734 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
21735 "runtime by calling L</available-all-groups>."
21736 msgstr ""
21737
21738 #. type: textblock
21739 #: ../fish/guestfish-actions.pod:387
21740 msgid "You must call L</launch> before calling this function."
21741 msgstr ""
21742
21743 #. type: textblock
21744 #: ../fish/guestfish-actions.pod:409
21745 msgid ""
21746 "This call was added in version C<1.0.80>.  In previous versions of "
21747 "libguestfs all you could do would be to speculatively execute a command to "
21748 "find out if the daemon implemented it.  See also L</version>."
21749 msgstr ""
21750
21751 #. type: =head2
21752 #: ../fish/guestfish-actions.pod:416
21753 msgid "available-all-groups"
21754 msgstr ""
21755
21756 #. type: verbatim
21757 #: ../fish/guestfish-actions.pod:418
21758 #, no-wrap
21759 msgid ""
21760 " available-all-groups\n"
21761 "\n"
21762 msgstr ""
21763
21764 #. type: textblock
21765 #: ../fish/guestfish-actions.pod:420
21766 msgid ""
21767 "This command returns a list of all optional groups that this daemon knows "
21768 "about.  Note this returns both supported and unsupported groups.  To find "
21769 "out which ones the daemon can actually support you have to call "
21770 "L</available> on each member of the returned list."
21771 msgstr ""
21772
21773 #. type: textblock
21774 #: ../fish/guestfish-actions.pod:426
21775 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
21776 msgstr ""
21777
21778 #. type: =head2
21779 #: ../fish/guestfish-actions.pod:428
21780 msgid "base64-in"
21781 msgstr ""
21782
21783 #. type: verbatim
21784 #: ../fish/guestfish-actions.pod:430
21785 #, no-wrap
21786 msgid ""
21787 " base64-in (base64file|-) filename\n"
21788 "\n"
21789 msgstr ""
21790
21791 #. type: textblock
21792 #: ../fish/guestfish-actions.pod:435 ../fish/guestfish-actions.pod:444 ../fish/guestfish-actions.pod:668 ../fish/guestfish-actions.pod:837 ../fish/guestfish-actions.pod:856 ../fish/guestfish-actions.pod:1233 ../fish/guestfish-actions.pod:4485 ../fish/guestfish-actions.pod:4497 ../fish/guestfish-actions.pod:4508 ../fish/guestfish-actions.pod:4519 ../fish/guestfish-actions.pod:4571 ../fish/guestfish-actions.pod:4580 ../fish/guestfish-actions.pod:4634 ../fish/guestfish-actions.pod:4657
21793 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
21794 msgstr ""
21795
21796 #. type: =head2
21797 #: ../fish/guestfish-actions.pod:437
21798 msgid "base64-out"
21799 msgstr ""
21800
21801 #. type: verbatim
21802 #: ../fish/guestfish-actions.pod:439
21803 #, no-wrap
21804 msgid ""
21805 " base64-out filename (base64file|-)\n"
21806 "\n"
21807 msgstr ""
21808
21809 #. type: =head2
21810 #: ../fish/guestfish-actions.pod:446
21811 msgid "blockdev-flushbufs"
21812 msgstr ""
21813
21814 #. type: verbatim
21815 #: ../fish/guestfish-actions.pod:448
21816 #, no-wrap
21817 msgid ""
21818 " blockdev-flushbufs device\n"
21819 "\n"
21820 msgstr ""
21821
21822 #. type: =head2
21823 #: ../fish/guestfish-actions.pod:455
21824 msgid "blockdev-getbsz"
21825 msgstr ""
21826
21827 #. type: verbatim
21828 #: ../fish/guestfish-actions.pod:457
21829 #, no-wrap
21830 msgid ""
21831 " blockdev-getbsz device\n"
21832 "\n"
21833 msgstr ""
21834
21835 #. type: =head2
21836 #: ../fish/guestfish-actions.pod:466
21837 msgid "blockdev-getro"
21838 msgstr ""
21839
21840 #. type: verbatim
21841 #: ../fish/guestfish-actions.pod:468
21842 #, no-wrap
21843 msgid ""
21844 " blockdev-getro device\n"
21845 "\n"
21846 msgstr ""
21847
21848 #. type: =head2
21849 #: ../fish/guestfish-actions.pod:475
21850 msgid "blockdev-getsize64"
21851 msgstr ""
21852
21853 #. type: verbatim
21854 #: ../fish/guestfish-actions.pod:477
21855 #, no-wrap
21856 msgid ""
21857 " blockdev-getsize64 device\n"
21858 "\n"
21859 msgstr ""
21860
21861 #. type: textblock
21862 #: ../fish/guestfish-actions.pod:481
21863 msgid "See also L</blockdev-getsz>."
21864 msgstr ""
21865
21866 #. type: =head2
21867 #: ../fish/guestfish-actions.pod:485
21868 msgid "blockdev-getss"
21869 msgstr ""
21870
21871 #. type: verbatim
21872 #: ../fish/guestfish-actions.pod:487
21873 #, no-wrap
21874 msgid ""
21875 " blockdev-getss device\n"
21876 "\n"
21877 msgstr ""
21878
21879 #. type: textblock
21880 #: ../fish/guestfish-actions.pod:492
21881 msgid "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
21882 msgstr ""
21883
21884 #. type: =head2
21885 #: ../fish/guestfish-actions.pod:497
21886 msgid "blockdev-getsz"
21887 msgstr ""
21888
21889 #. type: verbatim
21890 #: ../fish/guestfish-actions.pod:499
21891 #, no-wrap
21892 msgid ""
21893 " blockdev-getsz device\n"
21894 "\n"
21895 msgstr ""
21896
21897 #. type: textblock
21898 #: ../fish/guestfish-actions.pod:504
21899 msgid ""
21900 "See also L</blockdev-getss> for the real sector size of the device, and "
21901 "L</blockdev-getsize64> for the more useful I<size in bytes>."
21902 msgstr ""
21903
21904 #. type: =head2
21905 #: ../fish/guestfish-actions.pod:510
21906 msgid "blockdev-rereadpt"
21907 msgstr ""
21908
21909 #. type: verbatim
21910 #: ../fish/guestfish-actions.pod:512
21911 #, no-wrap
21912 msgid ""
21913 " blockdev-rereadpt device\n"
21914 "\n"
21915 msgstr ""
21916
21917 #. type: =head2
21918 #: ../fish/guestfish-actions.pod:518
21919 msgid "blockdev-setbsz"
21920 msgstr ""
21921
21922 #. type: verbatim
21923 #: ../fish/guestfish-actions.pod:520
21924 #, no-wrap
21925 msgid ""
21926 " blockdev-setbsz device blocksize\n"
21927 "\n"
21928 msgstr ""
21929
21930 #. type: =head2
21931 #: ../fish/guestfish-actions.pod:529
21932 msgid "blockdev-setro"
21933 msgstr ""
21934
21935 #. type: verbatim
21936 #: ../fish/guestfish-actions.pod:531
21937 #, no-wrap
21938 msgid ""
21939 " blockdev-setro device\n"
21940 "\n"
21941 msgstr ""
21942
21943 #. type: =head2
21944 #: ../fish/guestfish-actions.pod:537
21945 msgid "blockdev-setrw"
21946 msgstr ""
21947
21948 #. type: verbatim
21949 #: ../fish/guestfish-actions.pod:539
21950 #, no-wrap
21951 msgid ""
21952 " blockdev-setrw device\n"
21953 "\n"
21954 msgstr ""
21955
21956 #. type: =head2
21957 #: ../fish/guestfish-actions.pod:545
21958 msgid "case-sensitive-path"
21959 msgstr ""
21960
21961 #. type: verbatim
21962 #: ../fish/guestfish-actions.pod:547
21963 #, no-wrap
21964 msgid ""
21965 " case-sensitive-path path\n"
21966 "\n"
21967 msgstr ""
21968
21969 #. type: textblock
21970 #: ../fish/guestfish-actions.pod:571
21971 msgid ""
21972 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return "
21973 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
21974 "how the directories were originally created under Windows)."
21975 msgstr ""
21976
21977 #. type: textblock
21978 #: ../fish/guestfish-actions.pod:579
21979 msgid "See also L</realpath>."
21980 msgstr ""
21981
21982 #. type: =head2
21983 #: ../fish/guestfish-actions.pod:581
21984 msgid "cat"
21985 msgstr ""
21986
21987 #. type: verbatim
21988 #: ../fish/guestfish-actions.pod:583
21989 #, no-wrap
21990 msgid ""
21991 " cat path\n"
21992 "\n"
21993 msgstr ""
21994
21995 #. type: textblock
21996 #: ../fish/guestfish-actions.pod:587
21997 msgid ""
21998 "Note that this function cannot correctly handle binary files (specifically, "
21999 "files containing C<\\0> character which is treated as end of string).  For "
22000 "those you need to use the L</read-file> or L</download> functions which have "
22001 "a more complex interface."
22002 msgstr ""
22003
22004 #. type: =head2
22005 #: ../fish/guestfish-actions.pod:595
22006 msgid "checksum"
22007 msgstr ""
22008
22009 #. type: verbatim
22010 #: ../fish/guestfish-actions.pod:597
22011 #, no-wrap
22012 msgid ""
22013 " checksum csumtype path\n"
22014 "\n"
22015 msgstr ""
22016
22017 #. type: textblock
22018 #: ../fish/guestfish-actions.pod:640
22019 msgid "To get the checksum for a device, use L</checksum-device>."
22020 msgstr ""
22021
22022 #. type: textblock
22023 #: ../fish/guestfish-actions.pod:642
22024 msgid "To get the checksums for many files, use L</checksums-out>."
22025 msgstr ""
22026
22027 #. type: =head2
22028 #: ../fish/guestfish-actions.pod:644
22029 msgid "checksum-device"
22030 msgstr ""
22031
22032 #. type: verbatim
22033 #: ../fish/guestfish-actions.pod:646
22034 #, no-wrap
22035 msgid ""
22036 " checksum-device csumtype device\n"
22037 "\n"
22038 msgstr ""
22039
22040 #. type: textblock
22041 #: ../fish/guestfish-actions.pod:648
22042 msgid ""
22043 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
22044 "device named C<device>.  For the types of checksums supported see the "
22045 "L</checksum> command."
22046 msgstr ""
22047
22048 #. type: =head2
22049 #: ../fish/guestfish-actions.pod:652
22050 msgid "checksums-out"
22051 msgstr ""
22052
22053 #. type: verbatim
22054 #: ../fish/guestfish-actions.pod:654
22055 #, no-wrap
22056 msgid ""
22057 " checksums-out csumtype directory (sumsfile|-)\n"
22058 "\n"
22059 msgstr ""
22060
22061 #. type: =head2
22062 #: ../fish/guestfish-actions.pod:670
22063 msgid "chmod"
22064 msgstr ""
22065
22066 #. type: verbatim
22067 #: ../fish/guestfish-actions.pod:672
22068 #, no-wrap
22069 msgid ""
22070 " chmod mode path\n"
22071 "\n"
22072 msgstr ""
22073
22074 #. type: =head2
22075 #: ../fish/guestfish-actions.pod:683
22076 msgid "chown"
22077 msgstr ""
22078
22079 #. type: verbatim
22080 #: ../fish/guestfish-actions.pod:685
22081 #, no-wrap
22082 msgid ""
22083 " chown owner group path\n"
22084 "\n"
22085 msgstr ""
22086
22087 #. type: =head2
22088 #: ../fish/guestfish-actions.pod:693
22089 msgid "command"
22090 msgstr ""
22091
22092 #. type: verbatim
22093 #: ../fish/guestfish-actions.pod:695
22094 #, no-wrap
22095 msgid ""
22096 " command 'arguments ...'\n"
22097 "\n"
22098 msgstr ""
22099
22100 #. type: textblock
22101 #: ../fish/guestfish-actions.pod:702
22102 msgid ""
22103 "The single parameter is an argv-style list of arguments.  The first element "
22104 "is the name of the program to run.  Subsequent elements are parameters.  The "
22105 "list must be non-empty (ie. must contain a program name).  Note that the "
22106 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
22107 msgstr ""
22108
22109 #. type: =head2
22110 #: ../fish/guestfish-actions.pod:730
22111 msgid "command-lines"
22112 msgstr ""
22113
22114 #. type: verbatim
22115 #: ../fish/guestfish-actions.pod:732
22116 #, no-wrap
22117 msgid ""
22118 " command-lines 'arguments ...'\n"
22119 "\n"
22120 msgstr ""
22121
22122 #. type: textblock
22123 #: ../fish/guestfish-actions.pod:734
22124 msgid "This is the same as L</command>, but splits the result into a list of lines."
22125 msgstr ""
22126
22127 #. type: textblock
22128 #: ../fish/guestfish-actions.pod:737
22129 msgid "See also: L</sh-lines>"
22130 msgstr ""
22131
22132 #. type: =head2
22133 #: ../fish/guestfish-actions.pod:742
22134 msgid "config"
22135 msgstr ""
22136
22137 #. type: verbatim
22138 #: ../fish/guestfish-actions.pod:744
22139 #, no-wrap
22140 msgid ""
22141 " config qemuparam qemuvalue\n"
22142 "\n"
22143 msgstr ""
22144
22145 #. type: =head2
22146 #: ../fish/guestfish-actions.pod:755
22147 msgid "copy-size"
22148 msgstr ""
22149
22150 #. type: verbatim
22151 #: ../fish/guestfish-actions.pod:757
22152 #, no-wrap
22153 msgid ""
22154 " copy-size src dest size\n"
22155 "\n"
22156 msgstr ""
22157
22158 #. type: =head2
22159 #: ../fish/guestfish-actions.pod:765
22160 msgid "cp"
22161 msgstr ""
22162
22163 #. type: verbatim
22164 #: ../fish/guestfish-actions.pod:767
22165 #, no-wrap
22166 msgid ""
22167 " cp src dest\n"
22168 "\n"
22169 msgstr ""
22170
22171 #. type: =head2
22172 #: ../fish/guestfish-actions.pod:772
22173 msgid "cp-a"
22174 msgstr ""
22175
22176 #. type: verbatim
22177 #: ../fish/guestfish-actions.pod:774
22178 #, no-wrap
22179 msgid ""
22180 " cp-a src dest\n"
22181 "\n"
22182 msgstr ""
22183
22184 #. type: =head2
22185 #: ../fish/guestfish-actions.pod:779
22186 msgid "dd"
22187 msgstr ""
22188
22189 #. type: verbatim
22190 #: ../fish/guestfish-actions.pod:781
22191 #, no-wrap
22192 msgid ""
22193 " dd src dest\n"
22194 "\n"
22195 msgstr ""
22196
22197 #. type: textblock
22198 #: ../fish/guestfish-actions.pod:788
22199 msgid ""
22200 "If the destination is a device, it must be as large or larger than the "
22201 "source file or device, otherwise the copy will fail.  This command cannot do "
22202 "partial copies (see L</copy-size>)."
22203 msgstr ""
22204
22205 #. type: =head2
22206 #: ../fish/guestfish-actions.pod:792
22207 msgid "df"
22208 msgstr ""
22209
22210 #. type: verbatim
22211 #: ../fish/guestfish-actions.pod:794
22212 #, no-wrap
22213 msgid ""
22214 " df\n"
22215 "\n"
22216 msgstr ""
22217
22218 #. type: textblock
22219 #: ../fish/guestfish-actions.pod:798 ../fish/guestfish-actions.pod:809
22220 msgid ""
22221 "This command is mostly useful for interactive sessions.  It is I<not> "
22222 "intended that you try to parse the output string.  Use L</statvfs> from "
22223 "programs."
22224 msgstr ""
22225
22226 #. type: =head2
22227 #: ../fish/guestfish-actions.pod:802
22228 msgid "df-h"
22229 msgstr ""
22230
22231 #. type: verbatim
22232 #: ../fish/guestfish-actions.pod:804
22233 #, no-wrap
22234 msgid ""
22235 " df-h\n"
22236 "\n"
22237 msgstr ""
22238
22239 #. type: =head2
22240 #: ../fish/guestfish-actions.pod:813
22241 msgid "dmesg"
22242 msgstr ""
22243
22244 #. type: verbatim
22245 #: ../fish/guestfish-actions.pod:815
22246 #, no-wrap
22247 msgid ""
22248 " dmesg\n"
22249 "\n"
22250 msgstr ""
22251
22252 #. type: textblock
22253 #: ../fish/guestfish-actions.pod:821
22254 msgid ""
22255 "Another way to get the same information is to enable verbose messages with "
22256 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
22257 "before running the program."
22258 msgstr ""
22259
22260 #. type: =head2
22261 #: ../fish/guestfish-actions.pod:826
22262 msgid "download"
22263 msgstr ""
22264
22265 #. type: verbatim
22266 #: ../fish/guestfish-actions.pod:828
22267 #, no-wrap
22268 msgid ""
22269 " download remotefilename (filename|-)\n"
22270 "\n"
22271 msgstr ""
22272
22273 #. type: textblock
22274 #: ../fish/guestfish-actions.pod:835
22275 msgid "See also L</upload>, L</cat>."
22276 msgstr ""
22277
22278 #. type: =head2
22279 #: ../fish/guestfish-actions.pod:839
22280 msgid "download-offset"
22281 msgstr ""
22282
22283 #. type: verbatim
22284 #: ../fish/guestfish-actions.pod:841
22285 #, no-wrap
22286 msgid ""
22287 " download-offset remotefilename (filename|-) offset size\n"
22288 "\n"
22289 msgstr ""
22290
22291 #. type: textblock
22292 #: ../fish/guestfish-actions.pod:849
22293 msgid ""
22294 "Note that there is no limit on the amount of data that can be downloaded "
22295 "with this call, unlike with L</pread>, and this call always reads the full "
22296 "amount unless an error occurs."
22297 msgstr ""
22298
22299 #. type: textblock
22300 #: ../fish/guestfish-actions.pod:854
22301 msgid "See also L</download>, L</pread>."
22302 msgstr ""
22303
22304 #. type: =head2
22305 #: ../fish/guestfish-actions.pod:858
22306 msgid "drop-caches"
22307 msgstr ""
22308
22309 #. type: verbatim
22310 #: ../fish/guestfish-actions.pod:860
22311 #, no-wrap
22312 msgid ""
22313 " drop-caches whattodrop\n"
22314 "\n"
22315 msgstr ""
22316
22317 #. type: =head2
22318 #: ../fish/guestfish-actions.pod:872
22319 msgid "du"
22320 msgstr ""
22321
22322 #. type: verbatim
22323 #: ../fish/guestfish-actions.pod:874
22324 #, no-wrap
22325 msgid ""
22326 " du path\n"
22327 "\n"
22328 msgstr ""
22329
22330 #. type: =head2
22331 #: ../fish/guestfish-actions.pod:886
22332 msgid "e2fsck-f"
22333 msgstr ""
22334
22335 #. type: verbatim
22336 #: ../fish/guestfish-actions.pod:888
22337 #, no-wrap
22338 msgid ""
22339 " e2fsck-f device\n"
22340 "\n"
22341 msgstr ""
22342
22343 #. type: textblock
22344 #: ../fish/guestfish-actions.pod:894
22345 msgid ""
22346 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
22347 "should use L</fsck>."
22348 msgstr ""
22349
22350 #. type: =head2
22351 #: ../fish/guestfish-actions.pod:897
22352 msgid "echo-daemon"
22353 msgstr ""
22354
22355 #. type: verbatim
22356 #: ../fish/guestfish-actions.pod:899
22357 #, no-wrap
22358 msgid ""
22359 " echo-daemon 'words ...'\n"
22360 "\n"
22361 msgstr ""
22362
22363 #. type: textblock
22364 #: ../fish/guestfish-actions.pod:906
22365 msgid "See also L</ping-daemon>."
22366 msgstr ""
22367
22368 #. type: =head2
22369 #: ../fish/guestfish-actions.pod:908
22370 msgid "egrep"
22371 msgstr ""
22372
22373 #. type: verbatim
22374 #: ../fish/guestfish-actions.pod:910
22375 #, no-wrap
22376 msgid ""
22377 " egrep regex path\n"
22378 "\n"
22379 msgstr ""
22380
22381 #. type: =head2
22382 #: ../fish/guestfish-actions.pod:918
22383 msgid "egrepi"
22384 msgstr ""
22385
22386 #. type: verbatim
22387 #: ../fish/guestfish-actions.pod:920
22388 #, no-wrap
22389 msgid ""
22390 " egrepi regex path\n"
22391 "\n"
22392 msgstr ""
22393
22394 #. type: =head2
22395 #: ../fish/guestfish-actions.pod:928
22396 msgid "equal"
22397 msgstr ""
22398
22399 #. type: verbatim
22400 #: ../fish/guestfish-actions.pod:930
22401 #, no-wrap
22402 msgid ""
22403 " equal file1 file2\n"
22404 "\n"
22405 msgstr ""
22406
22407 #. type: =head2
22408 #: ../fish/guestfish-actions.pod:937
22409 msgid "exists"
22410 msgstr ""
22411
22412 #. type: verbatim
22413 #: ../fish/guestfish-actions.pod:939
22414 #, no-wrap
22415 msgid ""
22416 " exists path\n"
22417 "\n"
22418 msgstr ""
22419
22420 #. type: textblock
22421 #: ../fish/guestfish-actions.pod:944
22422 msgid "See also L</is-file>, L</is-dir>, L</stat>."
22423 msgstr ""
22424
22425 #. type: =head2
22426 #: ../fish/guestfish-actions.pod:946
22427 msgid "fallocate"
22428 msgstr ""
22429
22430 #. type: verbatim
22431 #: ../fish/guestfish-actions.pod:948
22432 #, no-wrap
22433 msgid ""
22434 " fallocate path len\n"
22435 "\n"
22436 msgstr ""
22437
22438 #. type: =head2
22439 #: ../fish/guestfish-actions.pod:965
22440 msgid "fallocate64"
22441 msgstr ""
22442
22443 #. type: verbatim
22444 #: ../fish/guestfish-actions.pod:967
22445 #, no-wrap
22446 msgid ""
22447 " fallocate64 path len\n"
22448 "\n"
22449 msgstr ""
22450
22451 #. type: textblock
22452 #: ../fish/guestfish-actions.pod:973
22453 msgid ""
22454 "Note that this call allocates disk blocks for the file.  To create a sparse "
22455 "file use L</truncate-size> instead."
22456 msgstr ""
22457
22458 #. type: textblock
22459 #: ../fish/guestfish-actions.pod:976
22460 msgid ""
22461 "The deprecated call L</fallocate> does the same, but owing to an oversight "
22462 "it only allowed 30 bit lengths to be specified, effectively limiting the "
22463 "maximum size of files created through that call to 1GB."
22464 msgstr ""
22465
22466 #. type: =head2
22467 #: ../fish/guestfish-actions.pod:985
22468 msgid "fgrep"
22469 msgstr ""
22470
22471 #. type: verbatim
22472 #: ../fish/guestfish-actions.pod:987
22473 #, no-wrap
22474 msgid ""
22475 " fgrep pattern path\n"
22476 "\n"
22477 msgstr ""
22478
22479 #. type: =head2
22480 #: ../fish/guestfish-actions.pod:995
22481 msgid "fgrepi"
22482 msgstr ""
22483
22484 #. type: verbatim
22485 #: ../fish/guestfish-actions.pod:997
22486 #, no-wrap
22487 msgid ""
22488 " fgrepi pattern path\n"
22489 "\n"
22490 msgstr ""
22491
22492 #. type: =head2
22493 #: ../fish/guestfish-actions.pod:1005
22494 msgid "file"
22495 msgstr ""
22496
22497 #. type: verbatim
22498 #: ../fish/guestfish-actions.pod:1007
22499 #, no-wrap
22500 msgid ""
22501 " file path\n"
22502 "\n"
22503 msgstr ""
22504
22505 #. type: textblock
22506 #: ../fish/guestfish-actions.pod:1019
22507 msgid ""
22508 "This command can also be used on C</dev/> devices (and partitions, LV "
22509 "names).  You can for example use this to determine if a device contains a "
22510 "filesystem, although it's usually better to use L</vfs-type>."
22511 msgstr ""
22512
22513 #. type: =head2
22514 #: ../fish/guestfish-actions.pod:1029
22515 msgid "file-architecture"
22516 msgstr ""
22517
22518 #. type: verbatim
22519 #: ../fish/guestfish-actions.pod:1031
22520 #, no-wrap
22521 msgid ""
22522 " file-architecture filename\n"
22523 "\n"
22524 msgstr ""
22525
22526 #. type: =head2
22527 #: ../fish/guestfish-actions.pod:1134
22528 msgid "filesize"
22529 msgstr ""
22530
22531 #. type: verbatim
22532 #: ../fish/guestfish-actions.pod:1136
22533 #, no-wrap
22534 msgid ""
22535 " filesize file\n"
22536 "\n"
22537 msgstr ""
22538
22539 #. type: textblock
22540 #: ../fish/guestfish-actions.pod:1140
22541 msgid ""
22542 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, "
22543 "L</is-file> etc.  To get the size of block devices, use "
22544 "L</blockdev-getsize64>."
22545 msgstr ""
22546
22547 #. type: =head2
22548 #: ../fish/guestfish-actions.pod:1144
22549 msgid "fill"
22550 msgstr ""
22551
22552 #. type: verbatim
22553 #: ../fish/guestfish-actions.pod:1146
22554 #, no-wrap
22555 msgid ""
22556 " fill c len path\n"
22557 "\n"
22558 msgstr ""
22559
22560 #. type: textblock
22561 #: ../fish/guestfish-actions.pod:1152
22562 msgid ""
22563 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
22564 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
22565 "L</fill-pattern>."
22566 msgstr ""
22567
22568 #. type: =head2
22569 #: ../fish/guestfish-actions.pod:1157
22570 msgid "fill-pattern"
22571 msgstr ""
22572
22573 #. type: verbatim
22574 #: ../fish/guestfish-actions.pod:1159
22575 #, no-wrap
22576 msgid ""
22577 " fill-pattern pattern len path\n"
22578 "\n"
22579 msgstr ""
22580
22581 #. type: textblock
22582 #: ../fish/guestfish-actions.pod:1161
22583 msgid ""
22584 "This function is like L</fill> except that it creates a new file of length "
22585 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
22586 "is truncated if necessary to ensure the length of the file is exactly C<len> "
22587 "bytes."
22588 msgstr ""
22589
22590 #. type: =head2
22591 #: ../fish/guestfish-actions.pod:1166
22592 msgid "find"
22593 msgstr ""
22594
22595 #. type: verbatim
22596 #: ../fish/guestfish-actions.pod:1168
22597 #, no-wrap
22598 msgid ""
22599 " find directory\n"
22600 "\n"
22601 msgstr ""
22602
22603 #. type: textblock
22604 #: ../fish/guestfish-actions.pod:1182
22605 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
22606 msgstr ""
22607
22608 #. type: textblock
22609 #: ../fish/guestfish-actions.pod:1195
22610 msgid "See also L</find0>."
22611 msgstr ""
22612
22613 #. type: =head2
22614 #: ../fish/guestfish-actions.pod:1200
22615 msgid "find0"
22616 msgstr ""
22617
22618 #. type: verbatim
22619 #: ../fish/guestfish-actions.pod:1202
22620 #, no-wrap
22621 msgid ""
22622 " find0 directory (files|-)\n"
22623 "\n"
22624 msgstr ""
22625
22626 #. type: textblock
22627 #: ../fish/guestfish-actions.pod:1208
22628 msgid "This command works the same way as L</find> with the following exceptions:"
22629 msgstr ""
22630
22631 #. type: =head2
22632 #: ../fish/guestfish-actions.pod:1235
22633 msgid "findfs-label"
22634 msgstr ""
22635
22636 #. type: verbatim
22637 #: ../fish/guestfish-actions.pod:1237
22638 #, no-wrap
22639 msgid ""
22640 " findfs-label label\n"
22641 "\n"
22642 msgstr ""
22643
22644 #. type: textblock
22645 #: ../fish/guestfish-actions.pod:1243
22646 msgid "To find the label of a filesystem, use L</vfs-label>."
22647 msgstr ""
22648
22649 #. type: =head2
22650 #: ../fish/guestfish-actions.pod:1245
22651 msgid "findfs-uuid"
22652 msgstr ""
22653
22654 #. type: verbatim
22655 #: ../fish/guestfish-actions.pod:1247
22656 #, no-wrap
22657 msgid ""
22658 " findfs-uuid uuid\n"
22659 "\n"
22660 msgstr ""
22661
22662 #. type: textblock
22663 #: ../fish/guestfish-actions.pod:1253
22664 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
22665 msgstr ""
22666
22667 #. type: =head2
22668 #: ../fish/guestfish-actions.pod:1255
22669 msgid "fsck"
22670 msgstr ""
22671
22672 #. type: verbatim
22673 #: ../fish/guestfish-actions.pod:1257
22674 #, no-wrap
22675 msgid ""
22676 " fsck fstype device\n"
22677 "\n"
22678 msgstr ""
22679
22680 #. type: =head2
22681 #: ../fish/guestfish-actions.pod:1287
22682 msgid "get-append"
22683 msgstr ""
22684
22685 #. type: verbatim
22686 #: ../fish/guestfish-actions.pod:1289
22687 #, no-wrap
22688 msgid ""
22689 " get-append\n"
22690 "\n"
22691 msgstr ""
22692
22693 #. type: =head2
22694 #: ../fish/guestfish-actions.pod:1296
22695 msgid "get-attach-method"
22696 msgstr ""
22697
22698 #. type: verbatim
22699 #: ../fish/guestfish-actions.pod:1298
22700 #, no-wrap
22701 msgid ""
22702 " get-attach-method\n"
22703 "\n"
22704 msgstr ""
22705
22706 #. type: textblock
22707 #: ../fish/guestfish-actions.pod:1300
22708 msgid "Return the current attach method.  See L</set-attach-method>."
22709 msgstr ""
22710
22711 #. type: =head2
22712 #: ../fish/guestfish-actions.pod:1302
22713 msgid "get-autosync"
22714 msgstr ""
22715
22716 #. type: verbatim
22717 #: ../fish/guestfish-actions.pod:1304
22718 #, no-wrap
22719 msgid ""
22720 " get-autosync\n"
22721 "\n"
22722 msgstr ""
22723
22724 #. type: =head2
22725 #: ../fish/guestfish-actions.pod:1308
22726 msgid "get-direct"
22727 msgstr ""
22728
22729 #. type: verbatim
22730 #: ../fish/guestfish-actions.pod:1310
22731 #, no-wrap
22732 msgid ""
22733 " get-direct\n"
22734 "\n"
22735 msgstr ""
22736
22737 #. type: =head2
22738 #: ../fish/guestfish-actions.pod:1314
22739 msgid "get-e2label"
22740 msgstr ""
22741
22742 #. type: verbatim
22743 #: ../fish/guestfish-actions.pod:1316
22744 #, no-wrap
22745 msgid ""
22746 " get-e2label device\n"
22747 "\n"
22748 msgstr ""
22749
22750 #. type: =head2
22751 #: ../fish/guestfish-actions.pod:1328
22752 msgid "get-e2uuid"
22753 msgstr ""
22754
22755 #. type: verbatim
22756 #: ../fish/guestfish-actions.pod:1330
22757 #, no-wrap
22758 msgid ""
22759 " get-e2uuid device\n"
22760 "\n"
22761 msgstr ""
22762
22763 #. type: =head2
22764 #: ../fish/guestfish-actions.pod:1342
22765 msgid "get-memsize"
22766 msgstr ""
22767
22768 #. type: verbatim
22769 #: ../fish/guestfish-actions.pod:1344
22770 #, no-wrap
22771 msgid ""
22772 " get-memsize\n"
22773 "\n"
22774 msgstr ""
22775
22776 #. type: textblock
22777 #: ../fish/guestfish-actions.pod:1349
22778 msgid ""
22779 "If L</set-memsize> was not called on this handle, and if "
22780 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
22781 "value for memsize."
22782 msgstr ""
22783
22784 #. type: =head2
22785 #: ../fish/guestfish-actions.pod:1356
22786 msgid "get-network"
22787 msgstr ""
22788
22789 #. type: verbatim
22790 #: ../fish/guestfish-actions.pod:1358
22791 #, no-wrap
22792 msgid ""
22793 " get-network\n"
22794 "\n"
22795 msgstr ""
22796
22797 #. type: =head2
22798 #: ../fish/guestfish-actions.pod:1362
22799 msgid "get-path"
22800 msgstr ""
22801
22802 #. type: verbatim
22803 #: ../fish/guestfish-actions.pod:1364
22804 #, no-wrap
22805 msgid ""
22806 " get-path\n"
22807 "\n"
22808 msgstr ""
22809
22810 #. type: =head2
22811 #: ../fish/guestfish-actions.pod:1371
22812 msgid "get-pid"
22813 msgstr ""
22814
22815 #. type: =head2
22816 #: ../fish/guestfish-actions.pod:1373
22817 msgid "pid"
22818 msgstr ""
22819
22820 #. type: verbatim
22821 #: ../fish/guestfish-actions.pod:1375
22822 #, no-wrap
22823 msgid ""
22824 " get-pid\n"
22825 "\n"
22826 msgstr ""
22827
22828 #. type: =head2
22829 #: ../fish/guestfish-actions.pod:1382
22830 msgid "get-qemu"
22831 msgstr ""
22832
22833 #. type: verbatim
22834 #: ../fish/guestfish-actions.pod:1384
22835 #, no-wrap
22836 msgid ""
22837 " get-qemu\n"
22838 "\n"
22839 msgstr ""
22840
22841 #. type: =head2
22842 #: ../fish/guestfish-actions.pod:1391
22843 msgid "get-recovery-proc"
22844 msgstr ""
22845
22846 #. type: verbatim
22847 #: ../fish/guestfish-actions.pod:1393
22848 #, no-wrap
22849 msgid ""
22850 " get-recovery-proc\n"
22851 "\n"
22852 msgstr ""
22853
22854 #. type: =head2
22855 #: ../fish/guestfish-actions.pod:1397
22856 msgid "get-selinux"
22857 msgstr ""
22858
22859 #. type: verbatim
22860 #: ../fish/guestfish-actions.pod:1399
22861 #, no-wrap
22862 msgid ""
22863 " get-selinux\n"
22864 "\n"
22865 msgstr ""
22866
22867 #. type: textblock
22868 #: ../fish/guestfish-actions.pod:1401
22869 msgid ""
22870 "This returns the current setting of the selinux flag which is passed to the "
22871 "appliance at boot time.  See L</set-selinux>."
22872 msgstr ""
22873
22874 #. type: =head2
22875 #: ../fish/guestfish-actions.pod:1407
22876 msgid "get-state"
22877 msgstr ""
22878
22879 #. type: verbatim
22880 #: ../fish/guestfish-actions.pod:1409
22881 #, no-wrap
22882 msgid ""
22883 " get-state\n"
22884 "\n"
22885 msgstr ""
22886
22887 #. type: =head2
22888 #: ../fish/guestfish-actions.pod:1416
22889 msgid "get-trace"
22890 msgstr ""
22891
22892 #. type: verbatim
22893 #: ../fish/guestfish-actions.pod:1418
22894 #, no-wrap
22895 msgid ""
22896 " get-trace\n"
22897 "\n"
22898 msgstr ""
22899
22900 #. type: =head2
22901 #: ../fish/guestfish-actions.pod:1422
22902 msgid "get-umask"
22903 msgstr ""
22904
22905 #. type: verbatim
22906 #: ../fish/guestfish-actions.pod:1424
22907 #, no-wrap
22908 msgid ""
22909 " get-umask\n"
22910 "\n"
22911 msgstr ""
22912
22913 #. type: textblock
22914 #: ../fish/guestfish-actions.pod:1426
22915 msgid ""
22916 "Return the current umask.  By default the umask is C<022> unless it has been "
22917 "set by calling L</umask>."
22918 msgstr ""
22919
22920 #. type: =head2
22921 #: ../fish/guestfish-actions.pod:1429
22922 msgid "get-verbose"
22923 msgstr ""
22924
22925 #. type: verbatim
22926 #: ../fish/guestfish-actions.pod:1431
22927 #, no-wrap
22928 msgid ""
22929 " get-verbose\n"
22930 "\n"
22931 msgstr ""
22932
22933 #. type: =head2
22934 #: ../fish/guestfish-actions.pod:1435
22935 msgid "getcon"
22936 msgstr ""
22937
22938 #. type: verbatim
22939 #: ../fish/guestfish-actions.pod:1437
22940 #, no-wrap
22941 msgid ""
22942 " getcon\n"
22943 "\n"
22944 msgstr ""
22945
22946 #. type: textblock
22947 #: ../fish/guestfish-actions.pod:1441
22948 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
22949 msgstr ""
22950
22951 #. type: =head2
22952 #: ../fish/guestfish-actions.pod:1444
22953 msgid "getxattr"
22954 msgstr ""
22955
22956 #. type: verbatim
22957 #: ../fish/guestfish-actions.pod:1446
22958 #, no-wrap
22959 msgid ""
22960 " getxattr path name\n"
22961 "\n"
22962 msgstr ""
22963
22964 #. type: textblock
22965 #: ../fish/guestfish-actions.pod:1448
22966 msgid ""
22967 "Get a single extended attribute from file C<path> named C<name>.  This call "
22968 "follows symlinks.  If you want to lookup an extended attribute for the "
22969 "symlink itself, use L</lgetxattr>."
22970 msgstr ""
22971
22972 #. type: textblock
22973 #: ../fish/guestfish-actions.pod:1452 ../fish/guestfish-actions.pod:2458
22974 msgid ""
22975 "Normally it is better to get all extended attributes from a file in one go "
22976 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
22977 "buggy and do not provide a way to list out attributes.  For these "
22978 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
22979 "attributes you want in advance and call this function."
22980 msgstr ""
22981
22982 #. type: textblock
22983 #: ../fish/guestfish-actions.pod:1462
22984 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
22985 msgstr ""
22986
22987 #. type: =head2
22988 #: ../fish/guestfish-actions.pod:1464
22989 msgid "getxattrs"
22990 msgstr ""
22991
22992 #. type: verbatim
22993 #: ../fish/guestfish-actions.pod:1466
22994 #, no-wrap
22995 msgid ""
22996 " getxattrs path\n"
22997 "\n"
22998 msgstr ""
22999
23000 #. type: textblock
23001 #: ../fish/guestfish-actions.pod:1474
23002 msgid "See also: L</lgetxattrs>, L<attr(5)>."
23003 msgstr ""
23004
23005 #. type: =head2
23006 #: ../fish/guestfish-actions.pod:1476
23007 msgid "glob-expand"
23008 msgstr ""
23009
23010 #. type: verbatim
23011 #: ../fish/guestfish-actions.pod:1478
23012 #, no-wrap
23013 msgid ""
23014 " glob-expand pattern\n"
23015 "\n"
23016 msgstr ""
23017
23018 #. type: =head2
23019 #: ../fish/guestfish-actions.pod:1491
23020 msgid "grep"
23021 msgstr ""
23022
23023 #. type: verbatim
23024 #: ../fish/guestfish-actions.pod:1493
23025 #, no-wrap
23026 msgid ""
23027 " grep regex path\n"
23028 "\n"
23029 msgstr ""
23030
23031 #. type: =head2
23032 #: ../fish/guestfish-actions.pod:1501
23033 msgid "grepi"
23034 msgstr ""
23035
23036 #. type: verbatim
23037 #: ../fish/guestfish-actions.pod:1503
23038 #, no-wrap
23039 msgid ""
23040 " grepi regex path\n"
23041 "\n"
23042 msgstr ""
23043
23044 #. type: =head2
23045 #: ../fish/guestfish-actions.pod:1511
23046 msgid "grub-install"
23047 msgstr ""
23048
23049 #. type: verbatim
23050 #: ../fish/guestfish-actions.pod:1513
23051 #, no-wrap
23052 msgid ""
23053 " grub-install root device\n"
23054 "\n"
23055 msgstr ""
23056
23057 #. type: =head2
23058 #: ../fish/guestfish-actions.pod:1529
23059 msgid "head"
23060 msgstr ""
23061
23062 #. type: verbatim
23063 #: ../fish/guestfish-actions.pod:1531
23064 #, no-wrap
23065 msgid ""
23066 " head path\n"
23067 "\n"
23068 msgstr ""
23069
23070 #. type: =head2
23071 #: ../fish/guestfish-actions.pod:1539
23072 msgid "head-n"
23073 msgstr ""
23074
23075 #. type: verbatim
23076 #: ../fish/guestfish-actions.pod:1541
23077 #, no-wrap
23078 msgid ""
23079 " head-n nrlines path\n"
23080 "\n"
23081 msgstr ""
23082
23083 #. type: =head2
23084 #: ../fish/guestfish-actions.pod:1554
23085 msgid "hexdump"
23086 msgstr ""
23087
23088 #. type: verbatim
23089 #: ../fish/guestfish-actions.pod:1556
23090 #, no-wrap
23091 msgid ""
23092 " hexdump path\n"
23093 "\n"
23094 msgstr ""
23095
23096 #. type: =head2
23097 #: ../fish/guestfish-actions.pod:1564
23098 msgid "initrd-cat"
23099 msgstr ""
23100
23101 #. type: verbatim
23102 #: ../fish/guestfish-actions.pod:1566
23103 #, no-wrap
23104 msgid ""
23105 " initrd-cat initrdpath filename\n"
23106 "\n"
23107 msgstr ""
23108
23109 #. type: textblock
23110 #: ../fish/guestfish-actions.pod:1578
23111 msgid "See also L</initrd-list>."
23112 msgstr ""
23113
23114 #. type: =head2
23115 #: ../fish/guestfish-actions.pod:1583
23116 msgid "initrd-list"
23117 msgstr ""
23118
23119 #. type: verbatim
23120 #: ../fish/guestfish-actions.pod:1585
23121 #, no-wrap
23122 msgid ""
23123 " initrd-list path\n"
23124 "\n"
23125 msgstr ""
23126
23127 #. type: =head2
23128 #: ../fish/guestfish-actions.pod:1597
23129 msgid "inotify-add-watch"
23130 msgstr ""
23131
23132 #. type: verbatim
23133 #: ../fish/guestfish-actions.pod:1599
23134 #, no-wrap
23135 msgid ""
23136 " inotify-add-watch path mask\n"
23137 "\n"
23138 msgstr ""
23139
23140 #. type: =head2
23141 #: ../fish/guestfish-actions.pod:1611
23142 msgid "inotify-close"
23143 msgstr ""
23144
23145 #. type: verbatim
23146 #: ../fish/guestfish-actions.pod:1613
23147 #, no-wrap
23148 msgid ""
23149 " inotify-close\n"
23150 "\n"
23151 msgstr ""
23152
23153 #. type: =head2
23154 #: ../fish/guestfish-actions.pod:1619
23155 msgid "inotify-files"
23156 msgstr ""
23157
23158 #. type: verbatim
23159 #: ../fish/guestfish-actions.pod:1621
23160 #, no-wrap
23161 msgid ""
23162 " inotify-files\n"
23163 "\n"
23164 msgstr ""
23165
23166 #. type: textblock
23167 #: ../fish/guestfish-actions.pod:1623
23168 msgid ""
23169 "This function is a helpful wrapper around L</inotify-read> which just "
23170 "returns a list of pathnames of objects that were touched.  The returned "
23171 "pathnames are sorted and deduplicated."
23172 msgstr ""
23173
23174 #. type: =head2
23175 #: ../fish/guestfish-actions.pod:1627
23176 msgid "inotify-init"
23177 msgstr ""
23178
23179 #. type: verbatim
23180 #: ../fish/guestfish-actions.pod:1629
23181 #, no-wrap
23182 msgid ""
23183 " inotify-init maxevents\n"
23184 "\n"
23185 msgstr ""
23186
23187 #. type: textblock
23188 #: ../fish/guestfish-actions.pod:1635
23189 msgid ""
23190 "C<maxevents> is the maximum number of events which will be queued up between "
23191 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
23192 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
23193 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
23194 "but records the fact that it threw them away by setting a flag "
23195 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
23196 msgstr ""
23197
23198 #. type: textblock
23199 #: ../fish/guestfish-actions.pod:1645
23200 msgid ""
23201 "Before any events are generated, you have to add some watches to the "
23202 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
23203 "L</inotify-watch-all>."
23204 msgstr ""
23205
23206 #. type: textblock
23207 #: ../fish/guestfish-actions.pod:1651
23208 msgid ""
23209 "Queued up events should be read periodically by calling L</inotify-read> (or "
23210 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
23211 "If you don't read the events out often enough then you risk the internal "
23212 "queue overflowing."
23213 msgstr ""
23214
23215 #. type: textblock
23216 #: ../fish/guestfish-actions.pod:1658
23217 msgid ""
23218 "The handle should be closed after use by calling L</inotify-close>.  This "
23219 "also removes any watches automatically."
23220 msgstr ""
23221
23222 #. type: =head2
23223 #: ../fish/guestfish-actions.pod:1667
23224 msgid "inotify-read"
23225 msgstr ""
23226
23227 #. type: verbatim
23228 #: ../fish/guestfish-actions.pod:1669
23229 #, no-wrap
23230 msgid ""
23231 " inotify-read\n"
23232 "\n"
23233 msgstr ""
23234
23235 #. type: =head2
23236 #: ../fish/guestfish-actions.pod:1682
23237 msgid "inotify-rm-watch"
23238 msgstr ""
23239
23240 #. type: verbatim
23241 #: ../fish/guestfish-actions.pod:1684
23242 #, no-wrap
23243 msgid ""
23244 " inotify-rm-watch wd\n"
23245 "\n"
23246 msgstr ""
23247
23248 #. type: textblock
23249 #: ../fish/guestfish-actions.pod:1686
23250 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
23251 msgstr ""
23252
23253 #. type: =head2
23254 #: ../fish/guestfish-actions.pod:1689
23255 msgid "inspect-get-arch"
23256 msgstr ""
23257
23258 #. type: verbatim
23259 #: ../fish/guestfish-actions.pod:1691
23260 #, no-wrap
23261 msgid ""
23262 " inspect-get-arch root\n"
23263 "\n"
23264 msgstr ""
23265
23266 #. type: textblock
23267 #: ../fish/guestfish-actions.pod:1693 ../fish/guestfish-actions.pod:1709 ../fish/guestfish-actions.pod:1795 ../fish/guestfish-actions.pod:1831 ../fish/guestfish-actions.pod:1849 ../fish/guestfish-actions.pod:1883 ../fish/guestfish-actions.pod:1898 ../fish/guestfish-actions.pod:1919 ../fish/guestfish-actions.pod:1934 ../fish/guestfish-actions.pod:1967 ../fish/guestfish-actions.pod:1989 ../fish/guestfish-actions.pod:2013 ../fish/guestfish-actions.pod:2030 ../fish/guestfish-actions.pod:2073 ../fish/guestfish-actions.pod:2108 ../fish/guestfish-actions.pod:2124 ../fish/guestfish-actions.pod:2140 ../fish/guestfish-actions.pod:2153 ../fish/guestfish-actions.pod:2166 ../fish/guestfish-actions.pod:2181
23268 msgid ""
23269 "This function should only be called with a root device string as returned by "
23270 "L</inspect-os>."
23271 msgstr ""
23272
23273 #. type: textblock
23274 #: ../fish/guestfish-actions.pod:1696
23275 msgid ""
23276 "This returns the architecture of the inspected operating system.  The "
23277 "possible return values are listed under L</file-architecture>."
23278 msgstr ""
23279
23280 #. type: =head2
23281 #: ../fish/guestfish-actions.pod:1705
23282 msgid "inspect-get-distro"
23283 msgstr ""
23284
23285 #. type: verbatim
23286 #: ../fish/guestfish-actions.pod:1707
23287 #, no-wrap
23288 msgid ""
23289 " inspect-get-distro root\n"
23290 "\n"
23291 msgstr ""
23292
23293 #. type: =head2
23294 #: ../fish/guestfish-actions.pod:1791
23295 msgid "inspect-get-drive-mappings"
23296 msgstr ""
23297
23298 #. type: verbatim
23299 #: ../fish/guestfish-actions.pod:1793
23300 #, no-wrap
23301 msgid ""
23302 " inspect-get-drive-mappings root\n"
23303 "\n"
23304 msgstr ""
23305
23306 #. type: textblock
23307 #: ../fish/guestfish-actions.pod:1823
23308 msgid ""
23309 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23310 "L</inspect-get-mountpoints>, L</inspect-get-filesystems>."
23311 msgstr ""
23312
23313 #. type: =head2
23314 #: ../fish/guestfish-actions.pod:1827
23315 msgid "inspect-get-filesystems"
23316 msgstr ""
23317
23318 #. type: verbatim
23319 #: ../fish/guestfish-actions.pod:1829
23320 #, no-wrap
23321 msgid ""
23322 " inspect-get-filesystems root\n"
23323 "\n"
23324 msgstr ""
23325
23326 #. type: textblock
23327 #: ../fish/guestfish-actions.pod:1842
23328 msgid ""
23329 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23330 "L</inspect-get-mountpoints>."
23331 msgstr ""
23332
23333 #. type: =head2
23334 #: ../fish/guestfish-actions.pod:1845
23335 msgid "inspect-get-format"
23336 msgstr ""
23337
23338 #. type: verbatim
23339 #: ../fish/guestfish-actions.pod:1847
23340 #, no-wrap
23341 msgid ""
23342 " inspect-get-format root\n"
23343 "\n"
23344 msgstr ""
23345
23346 #. type: =head2
23347 #: ../fish/guestfish-actions.pod:1879
23348 msgid "inspect-get-hostname"
23349 msgstr ""
23350
23351 #. type: verbatim
23352 #: ../fish/guestfish-actions.pod:1881
23353 #, no-wrap
23354 msgid ""
23355 " inspect-get-hostname root\n"
23356 "\n"
23357 msgstr ""
23358
23359 #. type: =head2
23360 #: ../fish/guestfish-actions.pod:1894
23361 msgid "inspect-get-major-version"
23362 msgstr ""
23363
23364 #. type: verbatim
23365 #: ../fish/guestfish-actions.pod:1896
23366 #, no-wrap
23367 msgid ""
23368 " inspect-get-major-version root\n"
23369 "\n"
23370 msgstr ""
23371
23372 #. type: =head2
23373 #: ../fish/guestfish-actions.pod:1915
23374 msgid "inspect-get-minor-version"
23375 msgstr ""
23376
23377 #. type: verbatim
23378 #: ../fish/guestfish-actions.pod:1917
23379 #, no-wrap
23380 msgid ""
23381 " inspect-get-minor-version root\n"
23382 "\n"
23383 msgstr ""
23384
23385 #. type: textblock
23386 #: ../fish/guestfish-actions.pod:1927
23387 msgid ""
23388 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23389 "L</inspect-get-major-version>."
23390 msgstr ""
23391
23392 #. type: =head2
23393 #: ../fish/guestfish-actions.pod:1930
23394 msgid "inspect-get-mountpoints"
23395 msgstr ""
23396
23397 #. type: verbatim
23398 #: ../fish/guestfish-actions.pod:1932
23399 #, no-wrap
23400 msgid ""
23401 " inspect-get-mountpoints root\n"
23402 "\n"
23403 msgstr ""
23404
23405 #. type: textblock
23406 #: ../fish/guestfish-actions.pod:1954
23407 msgid ""
23408 "For operating systems like Windows which still use drive letters, this call "
23409 "will only return an entry for the first drive \"mounted on\" C</>.  For "
23410 "information about the mapping of drive letters to partitions, see "
23411 "L</inspect-get-drive-mappings>."
23412 msgstr ""
23413
23414 #. type: textblock
23415 #: ../fish/guestfish-actions.pod:1960
23416 msgid ""
23417 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23418 "L</inspect-get-filesystems>."
23419 msgstr ""
23420
23421 #. type: =head2
23422 #: ../fish/guestfish-actions.pod:1963
23423 msgid "inspect-get-package-format"
23424 msgstr ""
23425
23426 #. type: verbatim
23427 #: ../fish/guestfish-actions.pod:1965
23428 #, no-wrap
23429 msgid ""
23430 " inspect-get-package-format root\n"
23431 "\n"
23432 msgstr ""
23433
23434 #. type: textblock
23435 #: ../fish/guestfish-actions.pod:1970
23436 msgid ""
23437 "This function and L</inspect-get-package-management> return the package "
23438 "format and package management tool used by the inspected operating system.  "
23439 "For example for Fedora these functions would return C<rpm> (package format) "
23440 "and C<yum> (package management)."
23441 msgstr ""
23442
23443 #. type: =head2
23444 #: ../fish/guestfish-actions.pod:1985
23445 msgid "inspect-get-package-management"
23446 msgstr ""
23447
23448 #. type: verbatim
23449 #: ../fish/guestfish-actions.pod:1987
23450 #, no-wrap
23451 msgid ""
23452 " inspect-get-package-management root\n"
23453 "\n"
23454 msgstr ""
23455
23456 #. type: textblock
23457 #: ../fish/guestfish-actions.pod:1992
23458 msgid ""
23459 "L</inspect-get-package-format> and this function return the package format "
23460 "and package management tool used by the inspected operating system.  For "
23461 "example for Fedora these functions would return C<rpm> (package format) and "
23462 "C<yum> (package management)."
23463 msgstr ""
23464
23465 #. type: =head2
23466 #: ../fish/guestfish-actions.pod:2009
23467 msgid "inspect-get-product-name"
23468 msgstr ""
23469
23470 #. type: verbatim
23471 #: ../fish/guestfish-actions.pod:2011
23472 #, no-wrap
23473 msgid ""
23474 " inspect-get-product-name root\n"
23475 "\n"
23476 msgstr ""
23477
23478 #. type: =head2
23479 #: ../fish/guestfish-actions.pod:2026
23480 msgid "inspect-get-product-variant"
23481 msgstr ""
23482
23483 #. type: verbatim
23484 #: ../fish/guestfish-actions.pod:2028
23485 #, no-wrap
23486 msgid ""
23487 " inspect-get-product-variant root\n"
23488 "\n"
23489 msgstr ""
23490
23491 #. type: textblock
23492 #: ../fish/guestfish-actions.pod:2052
23493 msgid ""
23494 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23495 "L</inspect-get-product-name>, L</inspect-get-major-version>."
23496 msgstr ""
23497
23498 #. type: =head2
23499 #: ../fish/guestfish-actions.pod:2056
23500 msgid "inspect-get-roots"
23501 msgstr ""
23502
23503 #. type: verbatim
23504 #: ../fish/guestfish-actions.pod:2058
23505 #, no-wrap
23506 msgid ""
23507 " inspect-get-roots\n"
23508 "\n"
23509 msgstr ""
23510
23511 #. type: textblock
23512 #: ../fish/guestfish-actions.pod:2060
23513 msgid ""
23514 "This function is a convenient way to get the list of root devices, as "
23515 "returned from a previous call to L</inspect-os>, but without redoing the "
23516 "whole inspection process."
23517 msgstr ""
23518
23519 #. type: textblock
23520 #: ../fish/guestfish-actions.pod:2064
23521 msgid ""
23522 "This returns an empty list if either no root devices were found or the "
23523 "caller has not called L</inspect-os>."
23524 msgstr ""
23525
23526 #. type: =head2
23527 #: ../fish/guestfish-actions.pod:2069
23528 msgid "inspect-get-type"
23529 msgstr ""
23530
23531 #. type: verbatim
23532 #: ../fish/guestfish-actions.pod:2071
23533 #, no-wrap
23534 msgid ""
23535 " inspect-get-type root\n"
23536 "\n"
23537 msgstr ""
23538
23539 #. type: =head2
23540 #: ../fish/guestfish-actions.pod:2104
23541 msgid "inspect-get-windows-current-control-set"
23542 msgstr ""
23543
23544 #. type: verbatim
23545 #: ../fish/guestfish-actions.pod:2106
23546 #, no-wrap
23547 msgid ""
23548 " inspect-get-windows-current-control-set root\n"
23549 "\n"
23550 msgstr ""
23551
23552 #. type: =head2
23553 #: ../fish/guestfish-actions.pod:2120
23554 msgid "inspect-get-windows-systemroot"
23555 msgstr ""
23556
23557 #. type: verbatim
23558 #: ../fish/guestfish-actions.pod:2122
23559 #, no-wrap
23560 msgid ""
23561 " inspect-get-windows-systemroot root\n"
23562 "\n"
23563 msgstr ""
23564
23565 #. type: =head2
23566 #: ../fish/guestfish-actions.pod:2136
23567 msgid "inspect-is-live"
23568 msgstr ""
23569
23570 #. type: verbatim
23571 #: ../fish/guestfish-actions.pod:2138
23572 #, no-wrap
23573 msgid ""
23574 " inspect-is-live root\n"
23575 "\n"
23576 msgstr ""
23577
23578 #. type: textblock
23579 #: ../fish/guestfish-actions.pod:2143
23580 msgid ""
23581 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23582 "then this returns true if a live image was detected on the disk."
23583 msgstr ""
23584
23585 #. type: =head2
23586 #: ../fish/guestfish-actions.pod:2149
23587 msgid "inspect-is-multipart"
23588 msgstr ""
23589
23590 #. type: verbatim
23591 #: ../fish/guestfish-actions.pod:2151
23592 #, no-wrap
23593 msgid ""
23594 " inspect-is-multipart root\n"
23595 "\n"
23596 msgstr ""
23597
23598 #. type: textblock
23599 #: ../fish/guestfish-actions.pod:2156
23600 msgid ""
23601 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23602 "then this returns true if the disk is part of a set."
23603 msgstr ""
23604
23605 #. type: =head2
23606 #: ../fish/guestfish-actions.pod:2162
23607 msgid "inspect-is-netinst"
23608 msgstr ""
23609
23610 #. type: verbatim
23611 #: ../fish/guestfish-actions.pod:2164
23612 #, no-wrap
23613 msgid ""
23614 " inspect-is-netinst root\n"
23615 "\n"
23616 msgstr ""
23617
23618 #. type: textblock
23619 #: ../fish/guestfish-actions.pod:2169
23620 msgid ""
23621 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23622 "then this returns true if the disk is a network installer, ie. not a "
23623 "self-contained install CD but one which is likely to require network access "
23624 "to complete the install."
23625 msgstr ""
23626
23627 #. type: =head2
23628 #: ../fish/guestfish-actions.pod:2177
23629 msgid "inspect-list-applications"
23630 msgstr ""
23631
23632 #. type: verbatim
23633 #: ../fish/guestfish-actions.pod:2179
23634 #, no-wrap
23635 msgid ""
23636 " inspect-list-applications root\n"
23637 "\n"
23638 msgstr ""
23639
23640 #. type: textblock
23641 #: ../fish/guestfish-actions.pod:2186
23642 msgid ""
23643 "I<Note:> This call works differently from other parts of the inspection "
23644 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
23645 "then mount up the disks, before calling this.  Listing applications is a "
23646 "significantly more difficult operation which requires access to the full "
23647 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
23648 "are just returning data cached in the libguestfs handle, this call actually "
23649 "reads parts of the mounted filesystems during the call."
23650 msgstr ""
23651
23652 #. type: =head2
23653 #: ../fish/guestfish-actions.pod:2276
23654 msgid "inspect-os"
23655 msgstr ""
23656
23657 #. type: verbatim
23658 #: ../fish/guestfish-actions.pod:2278
23659 #, no-wrap
23660 msgid ""
23661 " inspect-os\n"
23662 "\n"
23663 msgstr ""
23664
23665 #. type: textblock
23666 #: ../fish/guestfish-actions.pod:2293
23667 msgid ""
23668 "You can pass the root string(s) returned to other L</inspect-get-*> "
23669 "functions in order to query further information about each operating system, "
23670 "such as the name and version."
23671 msgstr ""
23672
23673 #. type: textblock
23674 #: ../fish/guestfish-actions.pod:2298
23675 msgid ""
23676 "This function uses other libguestfs features such as L</mount-ro> and "
23677 "L</umount-all> in order to mount and unmount filesystems and look at the "
23678 "contents.  This should be called with no disks currently mounted.  The "
23679 "function may also use Augeas, so any existing Augeas handle will be closed."
23680 msgstr ""
23681
23682 #. type: textblock
23683 #: ../fish/guestfish-actions.pod:2310 ../fish/guestfish-actions.pod:2486 ../fish/guestfish-actions.pod:2532
23684 msgid "See also L</list-filesystems>."
23685 msgstr ""
23686
23687 #. type: =head2
23688 #: ../fish/guestfish-actions.pod:2312
23689 msgid "is-blockdev"
23690 msgstr ""
23691
23692 #. type: verbatim
23693 #: ../fish/guestfish-actions.pod:2314
23694 #, no-wrap
23695 msgid ""
23696 " is-blockdev path\n"
23697 "\n"
23698 msgstr ""
23699
23700 #. type: textblock
23701 #: ../fish/guestfish-actions.pod:2319 ../fish/guestfish-actions.pod:2337 ../fish/guestfish-actions.pod:2356 ../fish/guestfish-actions.pod:2365 ../fish/guestfish-actions.pod:2375 ../fish/guestfish-actions.pod:2409 ../fish/guestfish-actions.pod:2418
23702 msgid "See also L</stat>."
23703 msgstr ""
23704
23705 #. type: =head2
23706 #: ../fish/guestfish-actions.pod:2321
23707 msgid "is-busy"
23708 msgstr ""
23709
23710 #. type: verbatim
23711 #: ../fish/guestfish-actions.pod:2323
23712 #, no-wrap
23713 msgid ""
23714 " is-busy\n"
23715 "\n"
23716 msgstr ""
23717
23718 #. type: =head2
23719 #: ../fish/guestfish-actions.pod:2330
23720 msgid "is-chardev"
23721 msgstr ""
23722
23723 #. type: verbatim
23724 #: ../fish/guestfish-actions.pod:2332
23725 #, no-wrap
23726 msgid ""
23727 " is-chardev path\n"
23728 "\n"
23729 msgstr ""
23730
23731 #. type: =head2
23732 #: ../fish/guestfish-actions.pod:2339
23733 msgid "is-config"
23734 msgstr ""
23735
23736 #. type: verbatim
23737 #: ../fish/guestfish-actions.pod:2341
23738 #, no-wrap
23739 msgid ""
23740 " is-config\n"
23741 "\n"
23742 msgstr ""
23743
23744 #. type: =head2
23745 #: ../fish/guestfish-actions.pod:2348
23746 msgid "is-dir"
23747 msgstr ""
23748
23749 #. type: verbatim
23750 #: ../fish/guestfish-actions.pod:2350
23751 #, no-wrap
23752 msgid ""
23753 " is-dir path\n"
23754 "\n"
23755 msgstr ""
23756
23757 #. type: =head2
23758 #: ../fish/guestfish-actions.pod:2358
23759 msgid "is-fifo"
23760 msgstr ""
23761
23762 #. type: verbatim
23763 #: ../fish/guestfish-actions.pod:2360
23764 #, no-wrap
23765 msgid ""
23766 " is-fifo path\n"
23767 "\n"
23768 msgstr ""
23769
23770 #. type: =head2
23771 #: ../fish/guestfish-actions.pod:2367
23772 msgid "is-file"
23773 msgstr ""
23774
23775 #. type: verbatim
23776 #: ../fish/guestfish-actions.pod:2369
23777 #, no-wrap
23778 msgid ""
23779 " is-file path\n"
23780 "\n"
23781 msgstr ""
23782
23783 #. type: =head2
23784 #: ../fish/guestfish-actions.pod:2377
23785 msgid "is-launching"
23786 msgstr ""
23787
23788 #. type: verbatim
23789 #: ../fish/guestfish-actions.pod:2379
23790 #, no-wrap
23791 msgid ""
23792 " is-launching\n"
23793 "\n"
23794 msgstr ""
23795
23796 #. type: =head2
23797 #: ../fish/guestfish-actions.pod:2386
23798 msgid "is-lv"
23799 msgstr ""
23800
23801 #. type: verbatim
23802 #: ../fish/guestfish-actions.pod:2388
23803 #, no-wrap
23804 msgid ""
23805 " is-lv device\n"
23806 "\n"
23807 msgstr ""
23808
23809 #. type: =head2
23810 #: ../fish/guestfish-actions.pod:2393
23811 msgid "is-ready"
23812 msgstr ""
23813
23814 #. type: verbatim
23815 #: ../fish/guestfish-actions.pod:2395
23816 #, no-wrap
23817 msgid ""
23818 " is-ready\n"
23819 "\n"
23820 msgstr ""
23821
23822 #. type: =head2
23823 #: ../fish/guestfish-actions.pod:2402
23824 msgid "is-socket"
23825 msgstr ""
23826
23827 #. type: verbatim
23828 #: ../fish/guestfish-actions.pod:2404
23829 #, no-wrap
23830 msgid ""
23831 " is-socket path\n"
23832 "\n"
23833 msgstr ""
23834
23835 #. type: =head2
23836 #: ../fish/guestfish-actions.pod:2411
23837 msgid "is-symlink"
23838 msgstr ""
23839
23840 #. type: verbatim
23841 #: ../fish/guestfish-actions.pod:2413
23842 #, no-wrap
23843 msgid ""
23844 " is-symlink path\n"
23845 "\n"
23846 msgstr ""
23847
23848 #. type: =head2
23849 #: ../fish/guestfish-actions.pod:2420
23850 msgid "kill-subprocess"
23851 msgstr ""
23852
23853 #. type: verbatim
23854 #: ../fish/guestfish-actions.pod:2422
23855 #, no-wrap
23856 msgid ""
23857 " kill-subprocess\n"
23858 "\n"
23859 msgstr ""
23860
23861 #. type: =head2
23862 #: ../fish/guestfish-actions.pod:2426
23863 msgid "launch"
23864 msgstr ""
23865
23866 #. type: =head2
23867 #: ../fish/guestfish-actions.pod:2428
23868 msgid "run"
23869 msgstr ""
23870
23871 #. type: verbatim
23872 #: ../fish/guestfish-actions.pod:2430
23873 #, no-wrap
23874 msgid ""
23875 " launch\n"
23876 "\n"
23877 msgstr ""
23878
23879 #. type: =head2
23880 #: ../fish/guestfish-actions.pod:2438
23881 msgid "lchown"
23882 msgstr ""
23883
23884 #. type: verbatim
23885 #: ../fish/guestfish-actions.pod:2440
23886 #, no-wrap
23887 msgid ""
23888 " lchown owner group path\n"
23889 "\n"
23890 msgstr ""
23891
23892 #. type: textblock
23893 #: ../fish/guestfish-actions.pod:2442
23894 msgid ""
23895 "Change the file owner to C<owner> and group to C<group>.  This is like "
23896 "L</chown> but if C<path> is a symlink then the link itself is changed, not "
23897 "the target."
23898 msgstr ""
23899
23900 #. type: =head2
23901 #: ../fish/guestfish-actions.pod:2450
23902 msgid "lgetxattr"
23903 msgstr ""
23904
23905 #. type: verbatim
23906 #: ../fish/guestfish-actions.pod:2452
23907 #, no-wrap
23908 msgid ""
23909 " lgetxattr path name\n"
23910 "\n"
23911 msgstr ""
23912
23913 #. type: textblock
23914 #: ../fish/guestfish-actions.pod:2468
23915 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
23916 msgstr ""
23917
23918 #. type: =head2
23919 #: ../fish/guestfish-actions.pod:2470
23920 msgid "lgetxattrs"
23921 msgstr ""
23922
23923 #. type: verbatim
23924 #: ../fish/guestfish-actions.pod:2472
23925 #, no-wrap
23926 msgid ""
23927 " lgetxattrs path\n"
23928 "\n"
23929 msgstr ""
23930
23931 #. type: textblock
23932 #: ../fish/guestfish-actions.pod:2474
23933 msgid ""
23934 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
23935 "it returns the extended attributes of the link itself."
23936 msgstr ""
23937
23938 #. type: =head2
23939 #: ../fish/guestfish-actions.pod:2478
23940 msgid "list-devices"
23941 msgstr ""
23942
23943 #. type: verbatim
23944 #: ../fish/guestfish-actions.pod:2480
23945 #, no-wrap
23946 msgid ""
23947 " list-devices\n"
23948 "\n"
23949 msgstr ""
23950
23951 #. type: =head2
23952 #: ../fish/guestfish-actions.pod:2488
23953 msgid "list-filesystems"
23954 msgstr ""
23955
23956 #. type: verbatim
23957 #: ../fish/guestfish-actions.pod:2490
23958 #, no-wrap
23959 msgid ""
23960 " list-filesystems\n"
23961 "\n"
23962 msgstr ""
23963
23964 #. type: textblock
23965 #: ../fish/guestfish-actions.pod:2509
23966 msgid ""
23967 "This command runs other libguestfs commands, which might include L</mount> "
23968 "and L</umount>, and therefore you should use this soon after launch and only "
23969 "when nothing is mounted."
23970 msgstr ""
23971
23972 #. type: textblock
23973 #: ../fish/guestfish-actions.pod:2513
23974 msgid ""
23975 "Not all of the filesystems returned will be mountable.  In particular, swap "
23976 "partitions are returned in the list.  Also this command does not check that "
23977 "each filesystem found is valid and mountable, and some filesystems might be "
23978 "mountable but require special options.  Filesystems may not all belong to a "
23979 "single logical operating system (use L</inspect-os> to look for OSes)."
23980 msgstr ""
23981
23982 #. type: =head2
23983 #: ../fish/guestfish-actions.pod:2521
23984 msgid "list-partitions"
23985 msgstr ""
23986
23987 #. type: verbatim
23988 #: ../fish/guestfish-actions.pod:2523
23989 #, no-wrap
23990 msgid ""
23991 " list-partitions\n"
23992 "\n"
23993 msgstr ""
23994
23995 #. type: textblock
23996 #: ../fish/guestfish-actions.pod:2529
23997 msgid ""
23998 "This does not return logical volumes.  For that you will need to call "
23999 "L</lvs>."
24000 msgstr ""
24001
24002 #. type: =head2
24003 #: ../fish/guestfish-actions.pod:2534
24004 msgid "ll"
24005 msgstr ""
24006
24007 #. type: verbatim
24008 #: ../fish/guestfish-actions.pod:2536
24009 #, no-wrap
24010 msgid ""
24011 " ll directory\n"
24012 "\n"
24013 msgstr ""
24014
24015 #. type: =head2
24016 #: ../fish/guestfish-actions.pod:2544
24017 msgid "ln"
24018 msgstr ""
24019
24020 #. type: verbatim
24021 #: ../fish/guestfish-actions.pod:2546
24022 #, no-wrap
24023 msgid ""
24024 " ln target linkname\n"
24025 "\n"
24026 msgstr ""
24027
24028 #. type: =head2
24029 #: ../fish/guestfish-actions.pod:2550
24030 msgid "ln-f"
24031 msgstr ""
24032
24033 #. type: verbatim
24034 #: ../fish/guestfish-actions.pod:2552
24035 #, no-wrap
24036 msgid ""
24037 " ln-f target linkname\n"
24038 "\n"
24039 msgstr ""
24040
24041 #. type: =head2
24042 #: ../fish/guestfish-actions.pod:2557
24043 msgid "ln-s"
24044 msgstr ""
24045
24046 #. type: verbatim
24047 #: ../fish/guestfish-actions.pod:2559
24048 #, no-wrap
24049 msgid ""
24050 " ln-s target linkname\n"
24051 "\n"
24052 msgstr ""
24053
24054 #. type: =head2
24055 #: ../fish/guestfish-actions.pod:2563
24056 msgid "ln-sf"
24057 msgstr ""
24058
24059 #. type: verbatim
24060 #: ../fish/guestfish-actions.pod:2565
24061 #, no-wrap
24062 msgid ""
24063 " ln-sf target linkname\n"
24064 "\n"
24065 msgstr ""
24066
24067 #. type: =head2
24068 #: ../fish/guestfish-actions.pod:2570
24069 msgid "lremovexattr"
24070 msgstr ""
24071
24072 #. type: verbatim
24073 #: ../fish/guestfish-actions.pod:2572
24074 #, no-wrap
24075 msgid ""
24076 " lremovexattr xattr path\n"
24077 "\n"
24078 msgstr ""
24079
24080 #. type: textblock
24081 #: ../fish/guestfish-actions.pod:2574
24082 msgid ""
24083 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
24084 "it removes an extended attribute of the link itself."
24085 msgstr ""
24086
24087 #. type: =head2
24088 #: ../fish/guestfish-actions.pod:2578
24089 msgid "ls"
24090 msgstr ""
24091
24092 #. type: verbatim
24093 #: ../fish/guestfish-actions.pod:2580
24094 #, no-wrap
24095 msgid ""
24096 " ls directory\n"
24097 "\n"
24098 msgstr ""
24099
24100 #. type: textblock
24101 #: ../fish/guestfish-actions.pod:2586
24102 msgid ""
24103 "This command is mostly useful for interactive sessions.  Programs should "
24104 "probably use L</readdir> instead."
24105 msgstr ""
24106
24107 #. type: =head2
24108 #: ../fish/guestfish-actions.pod:2589
24109 msgid "lsetxattr"
24110 msgstr ""
24111
24112 #. type: verbatim
24113 #: ../fish/guestfish-actions.pod:2591
24114 #, no-wrap
24115 msgid ""
24116 " lsetxattr xattr val vallen path\n"
24117 "\n"
24118 msgstr ""
24119
24120 #. type: textblock
24121 #: ../fish/guestfish-actions.pod:2593
24122 msgid ""
24123 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
24124 "sets an extended attribute of the link itself."
24125 msgstr ""
24126
24127 #. type: =head2
24128 #: ../fish/guestfish-actions.pod:2597
24129 msgid "lstat"
24130 msgstr ""
24131
24132 #. type: verbatim
24133 #: ../fish/guestfish-actions.pod:2599
24134 #, no-wrap
24135 msgid ""
24136 " lstat path\n"
24137 "\n"
24138 msgstr ""
24139
24140 #. type: textblock
24141 #: ../fish/guestfish-actions.pod:2603
24142 msgid ""
24143 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
24144 "the link is stat-ed, not the file it refers to."
24145 msgstr ""
24146
24147 #. type: =head2
24148 #: ../fish/guestfish-actions.pod:2609
24149 msgid "lstatlist"
24150 msgstr ""
24151
24152 #. type: verbatim
24153 #: ../fish/guestfish-actions.pod:2611
24154 #, no-wrap
24155 msgid ""
24156 " lstatlist path 'names ...'\n"
24157 "\n"
24158 msgstr ""
24159
24160 #. type: textblock
24161 #: ../fish/guestfish-actions.pod:2613
24162 msgid ""
24163 "This call allows you to perform the L</lstat> operation on multiple files, "
24164 "where all files are in the directory C<path>.  C<names> is the list of files "
24165 "from this directory."
24166 msgstr ""
24167
24168 #. type: textblock
24169 #: ../fish/guestfish-actions.pod:2622
24170 msgid ""
24171 "This call is intended for programs that want to efficiently list a directory "
24172 "contents without making many round-trips.  See also L</lxattrlist> for a "
24173 "similarly efficient call for getting extended attributes.  Very long "
24174 "directory listings might cause the protocol message size to be exceeded, "
24175 "causing this call to fail.  The caller must split up such requests into "
24176 "smaller groups of names."
24177 msgstr ""
24178
24179 #. type: =head2
24180 #: ../fish/guestfish-actions.pod:2630
24181 msgid "luks-add-key"
24182 msgstr ""
24183
24184 #. type: verbatim
24185 #: ../fish/guestfish-actions.pod:2632
24186 #, no-wrap
24187 msgid ""
24188 " luks-add-key device keyslot\n"
24189 "\n"
24190 msgstr ""
24191
24192 #. type: textblock
24193 #: ../fish/guestfish-actions.pod:2639
24194 msgid ""
24195 "Note that if C<keyslot> already contains a key, then this command will "
24196 "fail.  You have to use L</luks-kill-slot> first to remove that key."
24197 msgstr ""
24198
24199 #. type: textblock
24200 #: ../fish/guestfish-actions.pod:2643 ../fish/guestfish-actions.pod:2665 ../fish/guestfish-actions.pod:2678 ../fish/guestfish-actions.pod:2692 ../fish/guestfish-actions.pod:2715 ../fish/guestfish-actions.pod:2725
24201 msgid ""
24202 "This command has one or more key or passphrase parameters.  Guestfish will "
24203 "prompt for these separately."
24204 msgstr ""
24205
24206 #. type: =head2
24207 #: ../fish/guestfish-actions.pod:2646
24208 msgid "luks-close"
24209 msgstr ""
24210
24211 #. type: verbatim
24212 #: ../fish/guestfish-actions.pod:2648
24213 #, no-wrap
24214 msgid ""
24215 " luks-close device\n"
24216 "\n"
24217 msgstr ""
24218
24219 #. type: textblock
24220 #: ../fish/guestfish-actions.pod:2650
24221 msgid ""
24222 "This closes a LUKS device that was created earlier by L</luks-open> or "
24223 "L</luks-open-ro>.  The C<device> parameter must be the name of the LUKS "
24224 "mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
24225 "underlying block device."
24226 msgstr ""
24227
24228 #. type: =head2
24229 #: ../fish/guestfish-actions.pod:2656
24230 msgid "luks-format"
24231 msgstr ""
24232
24233 #. type: verbatim
24234 #: ../fish/guestfish-actions.pod:2658
24235 #, no-wrap
24236 msgid ""
24237 " luks-format device keyslot\n"
24238 "\n"
24239 msgstr ""
24240
24241 #. type: =head2
24242 #: ../fish/guestfish-actions.pod:2671
24243 msgid "luks-format-cipher"
24244 msgstr ""
24245
24246 #. type: verbatim
24247 #: ../fish/guestfish-actions.pod:2673
24248 #, no-wrap
24249 msgid ""
24250 " luks-format-cipher device keyslot cipher\n"
24251 "\n"
24252 msgstr ""
24253
24254 #. type: textblock
24255 #: ../fish/guestfish-actions.pod:2675
24256 msgid ""
24257 "This command is the same as L</luks-format> but it also allows you to set "
24258 "the C<cipher> used."
24259 msgstr ""
24260
24261 #. type: =head2
24262 #: ../fish/guestfish-actions.pod:2684
24263 msgid "luks-kill-slot"
24264 msgstr ""
24265
24266 #. type: verbatim
24267 #: ../fish/guestfish-actions.pod:2686
24268 #, no-wrap
24269 msgid ""
24270 " luks-kill-slot device keyslot\n"
24271 "\n"
24272 msgstr ""
24273
24274 #. type: =head2
24275 #: ../fish/guestfish-actions.pod:2695
24276 msgid "luks-open"
24277 msgstr ""
24278
24279 #. type: verbatim
24280 #: ../fish/guestfish-actions.pod:2697
24281 #, no-wrap
24282 msgid ""
24283 " luks-open device mapname\n"
24284 "\n"
24285 msgstr ""
24286
24287 #. type: textblock
24288 #: ../fish/guestfish-actions.pod:2711
24289 msgid ""
24290 "If this block device contains LVM volume groups, then calling L</vgscan> "
24291 "followed by L</vg-activate-all> will make them visible."
24292 msgstr ""
24293
24294 #. type: =head2
24295 #: ../fish/guestfish-actions.pod:2718
24296 msgid "luks-open-ro"
24297 msgstr ""
24298
24299 #. type: verbatim
24300 #: ../fish/guestfish-actions.pod:2720
24301 #, no-wrap
24302 msgid ""
24303 " luks-open-ro device mapname\n"
24304 "\n"
24305 msgstr ""
24306
24307 #. type: textblock
24308 #: ../fish/guestfish-actions.pod:2722
24309 msgid ""
24310 "This is the same as L</luks-open> except that a read-only mapping is "
24311 "created."
24312 msgstr ""
24313
24314 #. type: =head2
24315 #: ../fish/guestfish-actions.pod:2728
24316 msgid "lvcreate"
24317 msgstr ""
24318
24319 #. type: verbatim
24320 #: ../fish/guestfish-actions.pod:2730
24321 #, no-wrap
24322 msgid ""
24323 " lvcreate logvol volgroup mbytes\n"
24324 "\n"
24325 msgstr ""
24326
24327 #. type: =head2
24328 #: ../fish/guestfish-actions.pod:2735
24329 msgid "lvm-canonical-lv-name"
24330 msgstr ""
24331
24332 #. type: verbatim
24333 #: ../fish/guestfish-actions.pod:2737
24334 #, no-wrap
24335 msgid ""
24336 " lvm-canonical-lv-name lvname\n"
24337 "\n"
24338 msgstr ""
24339
24340 #. type: textblock
24341 #: ../fish/guestfish-actions.pod:2746
24342 msgid "See also L</is-lv>."
24343 msgstr ""
24344
24345 #. type: =head2
24346 #: ../fish/guestfish-actions.pod:2748
24347 msgid "lvm-clear-filter"
24348 msgstr ""
24349
24350 #. type: verbatim
24351 #: ../fish/guestfish-actions.pod:2750
24352 #, no-wrap
24353 msgid ""
24354 " lvm-clear-filter\n"
24355 "\n"
24356 msgstr ""
24357
24358 #. type: textblock
24359 #: ../fish/guestfish-actions.pod:2752
24360 msgid ""
24361 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
24362 "block device."
24363 msgstr ""
24364
24365 #. type: =head2
24366 #: ../fish/guestfish-actions.pod:2758
24367 msgid "lvm-remove-all"
24368 msgstr ""
24369
24370 #. type: verbatim
24371 #: ../fish/guestfish-actions.pod:2760
24372 #, no-wrap
24373 msgid ""
24374 " lvm-remove-all\n"
24375 "\n"
24376 msgstr ""
24377
24378 #. type: =head2
24379 #: ../fish/guestfish-actions.pod:2768
24380 msgid "lvm-set-filter"
24381 msgstr ""
24382
24383 #. type: verbatim
24384 #: ../fish/guestfish-actions.pod:2770
24385 #, no-wrap
24386 msgid ""
24387 " lvm-set-filter 'devices ...'\n"
24388 "\n"
24389 msgstr ""
24390
24391 #. type: =head2
24392 #: ../fish/guestfish-actions.pod:2795
24393 msgid "lvremove"
24394 msgstr ""
24395
24396 #. type: verbatim
24397 #: ../fish/guestfish-actions.pod:2797
24398 #, no-wrap
24399 msgid ""
24400 " lvremove device\n"
24401 "\n"
24402 msgstr ""
24403
24404 #. type: =head2
24405 #: ../fish/guestfish-actions.pod:2805
24406 msgid "lvrename"
24407 msgstr ""
24408
24409 #. type: verbatim
24410 #: ../fish/guestfish-actions.pod:2807
24411 #, no-wrap
24412 msgid ""
24413 " lvrename logvol newlogvol\n"
24414 "\n"
24415 msgstr ""
24416
24417 #. type: =head2
24418 #: ../fish/guestfish-actions.pod:2811
24419 msgid "lvresize"
24420 msgstr ""
24421
24422 #. type: verbatim
24423 #: ../fish/guestfish-actions.pod:2813
24424 #, no-wrap
24425 msgid ""
24426 " lvresize device mbytes\n"
24427 "\n"
24428 msgstr ""
24429
24430 #. type: =head2
24431 #: ../fish/guestfish-actions.pod:2819
24432 msgid "lvresize-free"
24433 msgstr ""
24434
24435 #. type: verbatim
24436 #: ../fish/guestfish-actions.pod:2821
24437 #, no-wrap
24438 msgid ""
24439 " lvresize-free lv percent\n"
24440 "\n"
24441 msgstr ""
24442
24443 #. type: =head2
24444 #: ../fish/guestfish-actions.pod:2829
24445 msgid "lvs"
24446 msgstr ""
24447
24448 #. type: verbatim
24449 #: ../fish/guestfish-actions.pod:2831
24450 #, no-wrap
24451 msgid ""
24452 " lvs\n"
24453 "\n"
24454 msgstr ""
24455
24456 #. type: textblock
24457 #: ../fish/guestfish-actions.pod:2839
24458 msgid "See also L</lvs-full>, L</list-filesystems>."
24459 msgstr ""
24460
24461 #. type: =head2
24462 #: ../fish/guestfish-actions.pod:2841
24463 msgid "lvs-full"
24464 msgstr ""
24465
24466 #. type: verbatim
24467 #: ../fish/guestfish-actions.pod:2843
24468 #, no-wrap
24469 msgid ""
24470 " lvs-full\n"
24471 "\n"
24472 msgstr ""
24473
24474 #. type: =head2
24475 #: ../fish/guestfish-actions.pod:2848
24476 msgid "lvuuid"
24477 msgstr ""
24478
24479 #. type: verbatim
24480 #: ../fish/guestfish-actions.pod:2850
24481 #, no-wrap
24482 msgid ""
24483 " lvuuid device\n"
24484 "\n"
24485 msgstr ""
24486
24487 #. type: =head2
24488 #: ../fish/guestfish-actions.pod:2854
24489 msgid "lxattrlist"
24490 msgstr ""
24491
24492 #. type: verbatim
24493 #: ../fish/guestfish-actions.pod:2856
24494 #, no-wrap
24495 msgid ""
24496 " lxattrlist path 'names ...'\n"
24497 "\n"
24498 msgstr ""
24499
24500 #. type: textblock
24501 #: ../fish/guestfish-actions.pod:2872
24502 msgid ""
24503 "This call is intended for programs that want to efficiently list a directory "
24504 "contents without making many round-trips.  See also L</lstatlist> for a "
24505 "similarly efficient call for getting standard stats.  Very long directory "
24506 "listings might cause the protocol message size to be exceeded, causing this "
24507 "call to fail.  The caller must split up such requests into smaller groups of "
24508 "names."
24509 msgstr ""
24510
24511 #. type: =head2
24512 #: ../fish/guestfish-actions.pod:2880
24513 msgid "mkdir"
24514 msgstr ""
24515
24516 #. type: verbatim
24517 #: ../fish/guestfish-actions.pod:2882
24518 #, no-wrap
24519 msgid ""
24520 " mkdir path\n"
24521 "\n"
24522 msgstr ""
24523
24524 #. type: =head2
24525 #: ../fish/guestfish-actions.pod:2886
24526 msgid "mkdir-mode"
24527 msgstr ""
24528
24529 #. type: verbatim
24530 #: ../fish/guestfish-actions.pod:2888
24531 #, no-wrap
24532 msgid ""
24533 " mkdir-mode path mode\n"
24534 "\n"
24535 msgstr ""
24536
24537 #. type: textblock
24538 #: ../fish/guestfish-actions.pod:2897
24539 msgid "See also L</mkdir>, L</umask>"
24540 msgstr ""
24541
24542 #. type: =head2
24543 #: ../fish/guestfish-actions.pod:2899
24544 msgid "mkdir-p"
24545 msgstr ""
24546
24547 #. type: verbatim
24548 #: ../fish/guestfish-actions.pod:2901
24549 #, no-wrap
24550 msgid ""
24551 " mkdir-p path\n"
24552 "\n"
24553 msgstr ""
24554
24555 #. type: =head2
24556 #: ../fish/guestfish-actions.pod:2906
24557 msgid "mkdtemp"
24558 msgstr ""
24559
24560 #. type: verbatim
24561 #: ../fish/guestfish-actions.pod:2908
24562 #, no-wrap
24563 msgid ""
24564 " mkdtemp template\n"
24565 "\n"
24566 msgstr ""
24567
24568 #. type: =head2
24569 #: ../fish/guestfish-actions.pod:2929
24570 msgid "mke2fs-J"
24571 msgstr ""
24572
24573 #. type: verbatim
24574 #: ../fish/guestfish-actions.pod:2931
24575 #, no-wrap
24576 msgid ""
24577 " mke2fs-J fstype blocksize device journal\n"
24578 "\n"
24579 msgstr ""
24580
24581 #. type: textblock
24582 #: ../fish/guestfish-actions.pod:2939
24583 msgid "See also L</mke2journal>."
24584 msgstr ""
24585
24586 #. type: =head2
24587 #: ../fish/guestfish-actions.pod:2941
24588 msgid "mke2fs-JL"
24589 msgstr ""
24590
24591 #. type: verbatim
24592 #: ../fish/guestfish-actions.pod:2943
24593 #, no-wrap
24594 msgid ""
24595 " mke2fs-JL fstype blocksize device label\n"
24596 "\n"
24597 msgstr ""
24598
24599 #. type: textblock
24600 #: ../fish/guestfish-actions.pod:2948
24601 msgid "See also L</mke2journal-L>."
24602 msgstr ""
24603
24604 #. type: =head2
24605 #: ../fish/guestfish-actions.pod:2950
24606 msgid "mke2fs-JU"
24607 msgstr ""
24608
24609 #. type: verbatim
24610 #: ../fish/guestfish-actions.pod:2952
24611 #, no-wrap
24612 msgid ""
24613 " mke2fs-JU fstype blocksize device uuid\n"
24614 "\n"
24615 msgstr ""
24616
24617 #. type: textblock
24618 #: ../fish/guestfish-actions.pod:2957
24619 msgid "See also L</mke2journal-U>."
24620 msgstr ""
24621
24622 #. type: =head2
24623 #: ../fish/guestfish-actions.pod:2959
24624 msgid "mke2journal"
24625 msgstr ""
24626
24627 #. type: verbatim
24628 #: ../fish/guestfish-actions.pod:2961
24629 #, no-wrap
24630 msgid ""
24631 " mke2journal blocksize device\n"
24632 "\n"
24633 msgstr ""
24634
24635 #. type: =head2
24636 #: ../fish/guestfish-actions.pod:2968
24637 msgid "mke2journal-L"
24638 msgstr ""
24639
24640 #. type: verbatim
24641 #: ../fish/guestfish-actions.pod:2970
24642 #, no-wrap
24643 msgid ""
24644 " mke2journal-L blocksize label device\n"
24645 "\n"
24646 msgstr ""
24647
24648 #. type: =head2
24649 #: ../fish/guestfish-actions.pod:2974
24650 msgid "mke2journal-U"
24651 msgstr ""
24652
24653 #. type: verbatim
24654 #: ../fish/guestfish-actions.pod:2976
24655 #, no-wrap
24656 msgid ""
24657 " mke2journal-U blocksize uuid device\n"
24658 "\n"
24659 msgstr ""
24660
24661 #. type: =head2
24662 #: ../fish/guestfish-actions.pod:2980
24663 msgid "mkfifo"
24664 msgstr ""
24665
24666 #. type: verbatim
24667 #: ../fish/guestfish-actions.pod:2982
24668 #, no-wrap
24669 msgid ""
24670 " mkfifo mode path\n"
24671 "\n"
24672 msgstr ""
24673
24674 #. type: textblock
24675 #: ../fish/guestfish-actions.pod:2984
24676 msgid ""
24677 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
24678 "is just a convenient wrapper around L</mknod>."
24679 msgstr ""
24680
24681 #. type: =head2
24682 #: ../fish/guestfish-actions.pod:2990
24683 msgid "mkfs"
24684 msgstr ""
24685
24686 #. type: verbatim
24687 #: ../fish/guestfish-actions.pod:2992
24688 #, no-wrap
24689 msgid ""
24690 " mkfs fstype device\n"
24691 "\n"
24692 msgstr ""
24693
24694 #. type: =head2
24695 #: ../fish/guestfish-actions.pod:2998
24696 msgid "mkfs-b"
24697 msgstr ""
24698
24699 #. type: verbatim
24700 #: ../fish/guestfish-actions.pod:3000
24701 #, no-wrap
24702 msgid ""
24703 " mkfs-b fstype blocksize device\n"
24704 "\n"
24705 msgstr ""
24706
24707 #. type: textblock
24708 #: ../fish/guestfish-actions.pod:3002
24709 msgid ""
24710 "This call is similar to L</mkfs>, but it allows you to control the block "
24711 "size of the resulting filesystem.  Supported block sizes depend on the "
24712 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
24713 msgstr ""
24714
24715 #. type: =head2
24716 #: ../fish/guestfish-actions.pod:3017
24717 msgid "mkfs-opts"
24718 msgstr ""
24719
24720 #. type: verbatim
24721 #: ../fish/guestfish-actions.pod:3019
24722 #, no-wrap
24723 msgid ""
24724 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
24725 "\n"
24726 msgstr ""
24727
24728 #. type: =head2
24729 #: ../fish/guestfish-actions.pod:3054
24730 msgid "mkmountpoint"
24731 msgstr ""
24732
24733 #. type: verbatim
24734 #: ../fish/guestfish-actions.pod:3056
24735 #, no-wrap
24736 msgid ""
24737 " mkmountpoint exemptpath\n"
24738 "\n"
24739 msgstr ""
24740
24741 #. type: textblock
24742 #: ../fish/guestfish-actions.pod:3058
24743 msgid ""
24744 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
24745 "to create extra mountpoints before mounting the first filesystem."
24746 msgstr ""
24747
24748 #. type: textblock
24749 #: ../fish/guestfish-actions.pod:3082
24750 msgid ""
24751 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
24752 "unexpected errors if you try to mix these calls.  It is safest to manually "
24753 "unmount filesystems and remove mountpoints after use."
24754 msgstr ""
24755
24756 #. type: textblock
24757 #: ../fish/guestfish-actions.pod:3086
24758 msgid ""
24759 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
24760 "for this to work for manual mountpoints, you must ensure that the innermost "
24761 "mountpoints have the longest pathnames, as in the example code above."
24762 msgstr ""
24763
24764 #. type: textblock
24765 #: ../fish/guestfish-actions.pod:3093
24766 msgid ""
24767 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
24768 "L</umount-all> to be called when the handle is closed which can also trigger "
24769 "these issues."
24770 msgstr ""
24771
24772 #. type: =head2
24773 #: ../fish/guestfish-actions.pod:3097
24774 msgid "mknod"
24775 msgstr ""
24776
24777 #. type: verbatim
24778 #: ../fish/guestfish-actions.pod:3099
24779 #, no-wrap
24780 msgid ""
24781 " mknod mode devmajor devminor path\n"
24782 "\n"
24783 msgstr ""
24784
24785 #. type: textblock
24786 #: ../fish/guestfish-actions.pod:3109
24787 msgid ""
24788 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
24789 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
24790 "regular file).  These constants are available in the standard Linux header "
24791 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
24792 "wrappers around this command which bitwise OR in the appropriate constant "
24793 "for you."
24794 msgstr ""
24795
24796 #. type: =head2
24797 #: ../fish/guestfish-actions.pod:3119
24798 msgid "mknod-b"
24799 msgstr ""
24800
24801 #. type: verbatim
24802 #: ../fish/guestfish-actions.pod:3121
24803 #, no-wrap
24804 msgid ""
24805 " mknod-b mode devmajor devminor path\n"
24806 "\n"
24807 msgstr ""
24808
24809 #. type: textblock
24810 #: ../fish/guestfish-actions.pod:3123
24811 msgid ""
24812 "This call creates a block device node called C<path> with mode C<mode> and "
24813 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
24814 "wrapper around L</mknod>."
24815 msgstr ""
24816
24817 #. type: =head2
24818 #: ../fish/guestfish-actions.pod:3129
24819 msgid "mknod-c"
24820 msgstr ""
24821
24822 #. type: verbatim
24823 #: ../fish/guestfish-actions.pod:3131
24824 #, no-wrap
24825 msgid ""
24826 " mknod-c mode devmajor devminor path\n"
24827 "\n"
24828 msgstr ""
24829
24830 #. type: textblock
24831 #: ../fish/guestfish-actions.pod:3133
24832 msgid ""
24833 "This call creates a char device node called C<path> with mode C<mode> and "
24834 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
24835 "wrapper around L</mknod>."
24836 msgstr ""
24837
24838 #. type: =head2
24839 #: ../fish/guestfish-actions.pod:3139
24840 msgid "mkswap"
24841 msgstr ""
24842
24843 #. type: verbatim
24844 #: ../fish/guestfish-actions.pod:3141
24845 #, no-wrap
24846 msgid ""
24847 " mkswap device\n"
24848 "\n"
24849 msgstr ""
24850
24851 #. type: =head2
24852 #: ../fish/guestfish-actions.pod:3145
24853 msgid "mkswap-L"
24854 msgstr ""
24855
24856 #. type: verbatim
24857 #: ../fish/guestfish-actions.pod:3147
24858 #, no-wrap
24859 msgid ""
24860 " mkswap-L label device\n"
24861 "\n"
24862 msgstr ""
24863
24864 #. type: =head2
24865 #: ../fish/guestfish-actions.pod:3155
24866 msgid "mkswap-U"
24867 msgstr ""
24868
24869 #. type: verbatim
24870 #: ../fish/guestfish-actions.pod:3157
24871 #, no-wrap
24872 msgid ""
24873 " mkswap-U uuid device\n"
24874 "\n"
24875 msgstr ""
24876
24877 #. type: =head2
24878 #: ../fish/guestfish-actions.pod:3161
24879 msgid "mkswap-file"
24880 msgstr ""
24881
24882 #. type: verbatim
24883 #: ../fish/guestfish-actions.pod:3163
24884 #, no-wrap
24885 msgid ""
24886 " mkswap-file path\n"
24887 "\n"
24888 msgstr ""
24889
24890 #. type: textblock
24891 #: ../fish/guestfish-actions.pod:3167
24892 msgid ""
24893 "This command just writes a swap file signature to an existing file.  To "
24894 "create the file itself, use something like L</fallocate>."
24895 msgstr ""
24896
24897 #. type: =head2
24898 #: ../fish/guestfish-actions.pod:3170
24899 msgid "modprobe"
24900 msgstr ""
24901
24902 #. type: verbatim
24903 #: ../fish/guestfish-actions.pod:3172
24904 #, no-wrap
24905 msgid ""
24906 " modprobe modulename\n"
24907 "\n"
24908 msgstr ""
24909
24910 #. type: =head2
24911 #: ../fish/guestfish-actions.pod:3179
24912 msgid "mount"
24913 msgstr ""
24914
24915 #. type: verbatim
24916 #: ../fish/guestfish-actions.pod:3181
24917 #, no-wrap
24918 msgid ""
24919 " mount device mountpoint\n"
24920 "\n"
24921 msgstr ""
24922
24923 #. type: textblock
24924 #: ../fish/guestfish-actions.pod:3197
24925 msgid ""
24926 "B<Important note:> When you use this call, the filesystem options C<sync> "
24927 "and C<noatime> are set implicitly.  This was originally done because we "
24928 "thought it would improve reliability, but it turns out that I<-o sync> has a "
24929 "very large negative performance impact and negligible effect on "
24930 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
24931 "code that needs performance, and instead use L</mount-options> (use an empty "
24932 "string for the first parameter if you don't want any options)."
24933 msgstr ""
24934
24935 #. type: =head2
24936 #: ../fish/guestfish-actions.pod:3214
24937 msgid "mount-loop"
24938 msgstr ""
24939
24940 #. type: verbatim
24941 #: ../fish/guestfish-actions.pod:3216
24942 #, no-wrap
24943 msgid ""
24944 " mount-loop file mountpoint\n"
24945 "\n"
24946 msgstr ""
24947
24948 #. type: =head2
24949 #: ../fish/guestfish-actions.pod:3222
24950 msgid "mount-options"
24951 msgstr ""
24952
24953 #. type: verbatim
24954 #: ../fish/guestfish-actions.pod:3224
24955 #, no-wrap
24956 msgid ""
24957 " mount-options options device mountpoint\n"
24958 "\n"
24959 msgstr ""
24960
24961 #. type: textblock
24962 #: ../fish/guestfish-actions.pod:3226
24963 msgid ""
24964 "This is the same as the L</mount> command, but it allows you to set the "
24965 "mount options as for the L<mount(8)> I<-o> flag."
24966 msgstr ""
24967
24968 #. type: =head2
24969 #: ../fish/guestfish-actions.pod:3234
24970 msgid "mount-ro"
24971 msgstr ""
24972
24973 #. type: verbatim
24974 #: ../fish/guestfish-actions.pod:3236
24975 #, no-wrap
24976 msgid ""
24977 " mount-ro device mountpoint\n"
24978 "\n"
24979 msgstr ""
24980
24981 #. type: textblock
24982 #: ../fish/guestfish-actions.pod:3238
24983 msgid ""
24984 "This is the same as the L</mount> command, but it mounts the filesystem with "
24985 "the read-only (I<-o ro>) flag."
24986 msgstr ""
24987
24988 #. type: =head2
24989 #: ../fish/guestfish-actions.pod:3241
24990 msgid "mount-vfs"
24991 msgstr ""
24992
24993 #. type: verbatim
24994 #: ../fish/guestfish-actions.pod:3243
24995 #, no-wrap
24996 msgid ""
24997 " mount-vfs options vfstype device mountpoint\n"
24998 "\n"
24999 msgstr ""
25000
25001 #. type: textblock
25002 #: ../fish/guestfish-actions.pod:3245
25003 msgid ""
25004 "This is the same as the L</mount> command, but it allows you to set both the "
25005 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
25006 msgstr ""
25007
25008 #. type: =head2
25009 #: ../fish/guestfish-actions.pod:3249
25010 msgid "mountpoints"
25011 msgstr ""
25012
25013 #. type: verbatim
25014 #: ../fish/guestfish-actions.pod:3251
25015 #, no-wrap
25016 msgid ""
25017 " mountpoints\n"
25018 "\n"
25019 msgstr ""
25020
25021 #. type: textblock
25022 #: ../fish/guestfish-actions.pod:3253
25023 msgid ""
25024 "This call is similar to L</mounts>.  That call returns a list of devices.  "
25025 "This one returns a hash table (map) of device name to directory where the "
25026 "device is mounted."
25027 msgstr ""
25028
25029 #. type: =head2
25030 #: ../fish/guestfish-actions.pod:3257
25031 msgid "mounts"
25032 msgstr ""
25033
25034 #. type: verbatim
25035 #: ../fish/guestfish-actions.pod:3259
25036 #, no-wrap
25037 msgid ""
25038 " mounts\n"
25039 "\n"
25040 msgstr ""
25041
25042 #. type: textblock
25043 #: ../fish/guestfish-actions.pod:3266
25044 msgid "See also: L</mountpoints>"
25045 msgstr ""
25046
25047 #. type: =head2
25048 #: ../fish/guestfish-actions.pod:3268
25049 msgid "mv"
25050 msgstr ""
25051
25052 #. type: verbatim
25053 #: ../fish/guestfish-actions.pod:3270
25054 #, no-wrap
25055 msgid ""
25056 " mv src dest\n"
25057 "\n"
25058 msgstr ""
25059
25060 #. type: =head2
25061 #: ../fish/guestfish-actions.pod:3275
25062 msgid "ntfs-3g-probe"
25063 msgstr ""
25064
25065 #. type: verbatim
25066 #: ../fish/guestfish-actions.pod:3277
25067 #, no-wrap
25068 msgid ""
25069 " ntfs-3g-probe true|false device\n"
25070 "\n"
25071 msgstr ""
25072
25073 #. type: =head2
25074 #: ../fish/guestfish-actions.pod:3291
25075 msgid "ntfsresize"
25076 msgstr ""
25077
25078 #. type: verbatim
25079 #: ../fish/guestfish-actions.pod:3293
25080 #, no-wrap
25081 msgid ""
25082 " ntfsresize device\n"
25083 "\n"
25084 msgstr ""
25085
25086 #. type: =head2
25087 #: ../fish/guestfish-actions.pod:3299
25088 msgid "ntfsresize-size"
25089 msgstr ""
25090
25091 #. type: verbatim
25092 #: ../fish/guestfish-actions.pod:3301
25093 #, no-wrap
25094 msgid ""
25095 " ntfsresize-size device size\n"
25096 "\n"
25097 msgstr ""
25098
25099 #. type: textblock
25100 #: ../fish/guestfish-actions.pod:3303
25101 msgid ""
25102 "This command is the same as L</ntfsresize> except that it allows you to "
25103 "specify the new size (in bytes) explicitly."
25104 msgstr ""
25105
25106 #. type: =head2
25107 #: ../fish/guestfish-actions.pod:3306
25108 msgid "part-add"
25109 msgstr ""
25110
25111 #. type: verbatim
25112 #: ../fish/guestfish-actions.pod:3308
25113 #, no-wrap
25114 msgid ""
25115 " part-add device prlogex startsect endsect\n"
25116 "\n"
25117 msgstr ""
25118
25119 #. type: textblock
25120 #: ../fish/guestfish-actions.pod:3310
25121 msgid ""
25122 "This command adds a partition to C<device>.  If there is no partition table "
25123 "on the device, call L</part-init> first."
25124 msgstr ""
25125
25126 #. type: textblock
25127 #: ../fish/guestfish-actions.pod:3322
25128 msgid ""
25129 "Creating a partition which covers the whole disk is not so easy.  Use "
25130 "L</part-disk> to do that."
25131 msgstr ""
25132
25133 #. type: =head2
25134 #: ../fish/guestfish-actions.pod:3325
25135 msgid "part-del"
25136 msgstr ""
25137
25138 #. type: verbatim
25139 #: ../fish/guestfish-actions.pod:3327
25140 #, no-wrap
25141 msgid ""
25142 " part-del device partnum\n"
25143 "\n"
25144 msgstr ""
25145
25146 #. type: =head2
25147 #: ../fish/guestfish-actions.pod:3335
25148 msgid "part-disk"
25149 msgstr ""
25150
25151 #. type: verbatim
25152 #: ../fish/guestfish-actions.pod:3337
25153 #, no-wrap
25154 msgid ""
25155 " part-disk device parttype\n"
25156 "\n"
25157 msgstr ""
25158
25159 #. type: textblock
25160 #: ../fish/guestfish-actions.pod:3339
25161 msgid ""
25162 "This command is simply a combination of L</part-init> followed by "
25163 "L</part-add> to create a single primary partition covering the whole disk."
25164 msgstr ""
25165
25166 #. type: textblock
25167 #: ../fish/guestfish-actions.pod:3343
25168 msgid ""
25169 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
25170 "possible values are described in L</part-init>."
25171 msgstr ""
25172
25173 #. type: =head2
25174 #: ../fish/guestfish-actions.pod:3349
25175 msgid "part-get-bootable"
25176 msgstr ""
25177
25178 #. type: verbatim
25179 #: ../fish/guestfish-actions.pod:3351
25180 #, no-wrap
25181 msgid ""
25182 " part-get-bootable device partnum\n"
25183 "\n"
25184 msgstr ""
25185
25186 #. type: textblock
25187 #: ../fish/guestfish-actions.pod:3356
25188 msgid "See also L</part-set-bootable>."
25189 msgstr ""
25190
25191 #. type: =head2
25192 #: ../fish/guestfish-actions.pod:3358
25193 msgid "part-get-mbr-id"
25194 msgstr ""
25195
25196 #. type: verbatim
25197 #: ../fish/guestfish-actions.pod:3360
25198 #, no-wrap
25199 msgid ""
25200 " part-get-mbr-id device partnum\n"
25201 "\n"
25202 msgstr ""
25203
25204 #. type: textblock
25205 #: ../fish/guestfish-actions.pod:3365 ../fish/guestfish-actions.pod:3503
25206 msgid ""
25207 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
25208 "undefined results for other partition table types (see "
25209 "L</part-get-parttype>)."
25210 msgstr ""
25211
25212 #. type: =head2
25213 #: ../fish/guestfish-actions.pod:3369
25214 msgid "part-get-parttype"
25215 msgstr ""
25216
25217 #. type: verbatim
25218 #: ../fish/guestfish-actions.pod:3371
25219 #, no-wrap
25220 msgid ""
25221 " part-get-parttype device\n"
25222 "\n"
25223 msgstr ""
25224
25225 #. type: textblock
25226 #: ../fish/guestfish-actions.pod:3376
25227 msgid ""
25228 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
25229 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
25230 "possible, although unusual.  See L</part-init> for a full list."
25231 msgstr ""
25232
25233 #. type: =head2
25234 #: ../fish/guestfish-actions.pod:3381
25235 msgid "part-init"
25236 msgstr ""
25237
25238 #. type: verbatim
25239 #: ../fish/guestfish-actions.pod:3383
25240 #, no-wrap
25241 msgid ""
25242 " part-init device parttype\n"
25243 "\n"
25244 msgstr ""
25245
25246 #. type: textblock
25247 #: ../fish/guestfish-actions.pod:3389
25248 msgid ""
25249 "Initially there are no partitions.  Following this, you should call "
25250 "L</part-add> for each partition required."
25251 msgstr ""
25252
25253 #. type: =head2
25254 #: ../fish/guestfish-actions.pod:3452
25255 msgid "part-list"
25256 msgstr ""
25257
25258 #. type: verbatim
25259 #: ../fish/guestfish-actions.pod:3454
25260 #, no-wrap
25261 msgid ""
25262 " part-list device\n"
25263 "\n"
25264 msgstr ""
25265
25266 #. type: textblock
25267 #: ../fish/guestfish-actions.pod:3469
25268 msgid ""
25269 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
25270 "the device's sector size, see L</blockdev-getss>."
25271 msgstr ""
25272
25273 #. type: =head2
25274 #: ../fish/guestfish-actions.pod:3482
25275 msgid "part-set-bootable"
25276 msgstr ""
25277
25278 #. type: verbatim
25279 #: ../fish/guestfish-actions.pod:3484
25280 #, no-wrap
25281 msgid ""
25282 " part-set-bootable device partnum true|false\n"
25283 "\n"
25284 msgstr ""
25285
25286 #. type: =head2
25287 #: ../fish/guestfish-actions.pod:3493
25288 msgid "part-set-mbr-id"
25289 msgstr ""
25290
25291 #. type: verbatim
25292 #: ../fish/guestfish-actions.pod:3495
25293 #, no-wrap
25294 msgid ""
25295 " part-set-mbr-id device partnum idbyte\n"
25296 "\n"
25297 msgstr ""
25298
25299 #. type: =head2
25300 #: ../fish/guestfish-actions.pod:3507
25301 msgid "part-set-name"
25302 msgstr ""
25303
25304 #. type: verbatim
25305 #: ../fish/guestfish-actions.pod:3509
25306 #, no-wrap
25307 msgid ""
25308 " part-set-name device partnum name\n"
25309 "\n"
25310 msgstr ""
25311
25312 #. type: =head2
25313 #: ../fish/guestfish-actions.pod:3517
25314 msgid "part-to-dev"
25315 msgstr ""
25316
25317 #. type: verbatim
25318 #: ../fish/guestfish-actions.pod:3519
25319 #, no-wrap
25320 msgid ""
25321 " part-to-dev partition\n"
25322 "\n"
25323 msgstr ""
25324
25325 #. type: textblock
25326 #: ../fish/guestfish-actions.pod:3525
25327 msgid ""
25328 "The named partition must exist, for example as a string returned from "
25329 "L</list-partitions>."
25330 msgstr ""
25331
25332 #. type: =head2
25333 #: ../fish/guestfish-actions.pod:3528
25334 msgid "ping-daemon"
25335 msgstr ""
25336
25337 #. type: verbatim
25338 #: ../fish/guestfish-actions.pod:3530
25339 #, no-wrap
25340 msgid ""
25341 " ping-daemon\n"
25342 "\n"
25343 msgstr ""
25344
25345 #. type: =head2
25346 #: ../fish/guestfish-actions.pod:3537
25347 msgid "pread"
25348 msgstr ""
25349
25350 #. type: verbatim
25351 #: ../fish/guestfish-actions.pod:3539
25352 #, no-wrap
25353 msgid ""
25354 " pread path count offset\n"
25355 "\n"
25356 msgstr ""
25357
25358 #. type: textblock
25359 #: ../fish/guestfish-actions.pod:3547
25360 msgid "See also L</pwrite>, L</pread-device>."
25361 msgstr ""
25362
25363 #. type: =head2
25364 #: ../fish/guestfish-actions.pod:3552
25365 msgid "pread-device"
25366 msgstr ""
25367
25368 #. type: verbatim
25369 #: ../fish/guestfish-actions.pod:3554
25370 #, no-wrap
25371 msgid ""
25372 " pread-device device count offset\n"
25373 "\n"
25374 msgstr ""
25375
25376 #. type: textblock
25377 #: ../fish/guestfish-actions.pod:3562
25378 msgid "See also L</pread>."
25379 msgstr ""
25380
25381 #. type: =head2
25382 #: ../fish/guestfish-actions.pod:3567
25383 msgid "pvcreate"
25384 msgstr ""
25385
25386 #. type: verbatim
25387 #: ../fish/guestfish-actions.pod:3569
25388 #, no-wrap
25389 msgid ""
25390 " pvcreate device\n"
25391 "\n"
25392 msgstr ""
25393
25394 #. type: =head2
25395 #: ../fish/guestfish-actions.pod:3575
25396 msgid "pvremove"
25397 msgstr ""
25398
25399 #. type: verbatim
25400 #: ../fish/guestfish-actions.pod:3577
25401 #, no-wrap
25402 msgid ""
25403 " pvremove device\n"
25404 "\n"
25405 msgstr ""
25406
25407 #. type: =head2
25408 #: ../fish/guestfish-actions.pod:3586
25409 msgid "pvresize"
25410 msgstr ""
25411
25412 #. type: verbatim
25413 #: ../fish/guestfish-actions.pod:3588
25414 #, no-wrap
25415 msgid ""
25416 " pvresize device\n"
25417 "\n"
25418 msgstr ""
25419
25420 #. type: =head2
25421 #: ../fish/guestfish-actions.pod:3593
25422 msgid "pvresize-size"
25423 msgstr ""
25424
25425 #. type: verbatim
25426 #: ../fish/guestfish-actions.pod:3595
25427 #, no-wrap
25428 msgid ""
25429 " pvresize-size device size\n"
25430 "\n"
25431 msgstr ""
25432
25433 #. type: textblock
25434 #: ../fish/guestfish-actions.pod:3597
25435 msgid ""
25436 "This command is the same as L</pvresize> except that it allows you to "
25437 "specify the new size (in bytes) explicitly."
25438 msgstr ""
25439
25440 #. type: =head2
25441 #: ../fish/guestfish-actions.pod:3600
25442 msgid "pvs"
25443 msgstr ""
25444
25445 #. type: verbatim
25446 #: ../fish/guestfish-actions.pod:3602
25447 #, no-wrap
25448 msgid ""
25449 " pvs\n"
25450 "\n"
25451 msgstr ""
25452
25453 #. type: textblock
25454 #: ../fish/guestfish-actions.pod:3610
25455 msgid "See also L</pvs-full>."
25456 msgstr ""
25457
25458 #. type: =head2
25459 #: ../fish/guestfish-actions.pod:3612
25460 msgid "pvs-full"
25461 msgstr ""
25462
25463 #. type: verbatim
25464 #: ../fish/guestfish-actions.pod:3614
25465 #, no-wrap
25466 msgid ""
25467 " pvs-full\n"
25468 "\n"
25469 msgstr ""
25470
25471 #. type: =head2
25472 #: ../fish/guestfish-actions.pod:3619
25473 msgid "pvuuid"
25474 msgstr ""
25475
25476 #. type: verbatim
25477 #: ../fish/guestfish-actions.pod:3621
25478 #, no-wrap
25479 msgid ""
25480 " pvuuid device\n"
25481 "\n"
25482 msgstr ""
25483
25484 #. type: =head2
25485 #: ../fish/guestfish-actions.pod:3625
25486 msgid "pwrite"
25487 msgstr ""
25488
25489 #. type: verbatim
25490 #: ../fish/guestfish-actions.pod:3627
25491 #, no-wrap
25492 msgid ""
25493 " pwrite path content offset\n"
25494 "\n"
25495 msgstr ""
25496
25497 #. type: textblock
25498 #: ../fish/guestfish-actions.pod:3638
25499 msgid "See also L</pread>, L</pwrite-device>."
25500 msgstr ""
25501
25502 #. type: =head2
25503 #: ../fish/guestfish-actions.pod:3643
25504 msgid "pwrite-device"
25505 msgstr ""
25506
25507 #. type: verbatim
25508 #: ../fish/guestfish-actions.pod:3645
25509 #, no-wrap
25510 msgid ""
25511 " pwrite-device device content offset\n"
25512 "\n"
25513 msgstr ""
25514
25515 #. type: textblock
25516 #: ../fish/guestfish-actions.pod:3655
25517 msgid "See also L</pwrite>."
25518 msgstr ""
25519
25520 #. type: =head2
25521 #: ../fish/guestfish-actions.pod:3660
25522 msgid "read-file"
25523 msgstr ""
25524
25525 #. type: verbatim
25526 #: ../fish/guestfish-actions.pod:3662
25527 #, no-wrap
25528 msgid ""
25529 " read-file path\n"
25530 "\n"
25531 msgstr ""
25532
25533 #. type: textblock
25534 #: ../fish/guestfish-actions.pod:3667
25535 msgid ""
25536 "Unlike L</cat>, this function can correctly handle files that contain "
25537 "embedded ASCII NUL characters.  However unlike L</download>, this function "
25538 "is limited in the total size of file that can be handled."
25539 msgstr ""
25540
25541 #. type: =head2
25542 #: ../fish/guestfish-actions.pod:3675
25543 msgid "read-lines"
25544 msgstr ""
25545
25546 #. type: verbatim
25547 #: ../fish/guestfish-actions.pod:3677
25548 #, no-wrap
25549 msgid ""
25550 " read-lines path\n"
25551 "\n"
25552 msgstr ""
25553
25554 #. type: textblock
25555 #: ../fish/guestfish-actions.pod:3684
25556 msgid ""
25557 "Note that this function cannot correctly handle binary files (specifically, "
25558 "files containing C<\\0> character which is treated as end of line).  For "
25559 "those you need to use the L</read-file> function which has a more complex "
25560 "interface."
25561 msgstr ""
25562
25563 #. type: =head2
25564 #: ../fish/guestfish-actions.pod:3689
25565 msgid "readdir"
25566 msgstr ""
25567
25568 #. type: verbatim
25569 #: ../fish/guestfish-actions.pod:3691
25570 #, no-wrap
25571 msgid ""
25572 " readdir dir\n"
25573 "\n"
25574 msgstr ""
25575
25576 #. type: textblock
25577 #: ../fish/guestfish-actions.pod:3743
25578 msgid ""
25579 "This function is primarily intended for use by programs.  To get a simple "
25580 "list of names, use L</ls>.  To get a printable directory for human "
25581 "consumption, use L</ll>."
25582 msgstr ""
25583
25584 #. type: =head2
25585 #: ../fish/guestfish-actions.pod:3747
25586 msgid "readlink"
25587 msgstr ""
25588
25589 #. type: verbatim
25590 #: ../fish/guestfish-actions.pod:3749
25591 #, no-wrap
25592 msgid ""
25593 " readlink path\n"
25594 "\n"
25595 msgstr ""
25596
25597 #. type: =head2
25598 #: ../fish/guestfish-actions.pod:3753
25599 msgid "readlinklist"
25600 msgstr ""
25601
25602 #. type: verbatim
25603 #: ../fish/guestfish-actions.pod:3755
25604 #, no-wrap
25605 msgid ""
25606 " readlinklist path 'names ...'\n"
25607 "\n"
25608 msgstr ""
25609
25610 #. type: =head2
25611 #: ../fish/guestfish-actions.pod:3779
25612 msgid "realpath"
25613 msgstr ""
25614
25615 #. type: verbatim
25616 #: ../fish/guestfish-actions.pod:3781
25617 #, no-wrap
25618 msgid ""
25619 " realpath path\n"
25620 "\n"
25621 msgstr ""
25622
25623 #. type: =head2
25624 #: ../fish/guestfish-actions.pod:3786
25625 msgid "removexattr"
25626 msgstr ""
25627
25628 #. type: verbatim
25629 #: ../fish/guestfish-actions.pod:3788
25630 #, no-wrap
25631 msgid ""
25632 " removexattr xattr path\n"
25633 "\n"
25634 msgstr ""
25635
25636 #. type: textblock
25637 #: ../fish/guestfish-actions.pod:3793
25638 msgid "See also: L</lremovexattr>, L<attr(5)>."
25639 msgstr ""
25640
25641 #. type: =head2
25642 #: ../fish/guestfish-actions.pod:3795
25643 msgid "resize2fs"
25644 msgstr ""
25645
25646 #. type: verbatim
25647 #: ../fish/guestfish-actions.pod:3797
25648 #, no-wrap
25649 msgid ""
25650 " resize2fs device\n"
25651 "\n"
25652 msgstr ""
25653
25654 #. type: textblock
25655 #: ../fish/guestfish-actions.pod:3802
25656 msgid ""
25657 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
25658 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
25659 "gives an error about this and sometimes not.  In any case, it is always safe "
25660 "to call L</e2fsck-f> before calling this function."
25661 msgstr ""
25662
25663 #. type: =head2
25664 #: ../fish/guestfish-actions.pod:3808
25665 msgid "resize2fs-M"
25666 msgstr ""
25667
25668 #. type: verbatim
25669 #: ../fish/guestfish-actions.pod:3810
25670 #, no-wrap
25671 msgid ""
25672 " resize2fs-M device\n"
25673 "\n"
25674 msgstr ""
25675
25676 #. type: textblock
25677 #: ../fish/guestfish-actions.pod:3812
25678 msgid ""
25679 "This command is the same as L</resize2fs>, but the filesystem is resized to "
25680 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
25681 "command."
25682 msgstr ""
25683
25684 #. type: textblock
25685 #: ../fish/guestfish-actions.pod:3816
25686 msgid ""
25687 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
25688 "and read the C<Block size> and C<Block count> values.  These two numbers, "
25689 "multiplied together, give the resulting size of the minimal filesystem in "
25690 "bytes."
25691 msgstr ""
25692
25693 #. type: =head2
25694 #: ../fish/guestfish-actions.pod:3821
25695 msgid "resize2fs-size"
25696 msgstr ""
25697
25698 #. type: verbatim
25699 #: ../fish/guestfish-actions.pod:3823
25700 #, no-wrap
25701 msgid ""
25702 " resize2fs-size device size\n"
25703 "\n"
25704 msgstr ""
25705
25706 #. type: textblock
25707 #: ../fish/guestfish-actions.pod:3825
25708 msgid ""
25709 "This command is the same as L</resize2fs> except that it allows you to "
25710 "specify the new size (in bytes) explicitly."
25711 msgstr ""
25712
25713 #. type: =head2
25714 #: ../fish/guestfish-actions.pod:3828
25715 msgid "rm"
25716 msgstr ""
25717
25718 #. type: verbatim
25719 #: ../fish/guestfish-actions.pod:3830
25720 #, no-wrap
25721 msgid ""
25722 " rm path\n"
25723 "\n"
25724 msgstr ""
25725
25726 #. type: =head2
25727 #: ../fish/guestfish-actions.pod:3834
25728 msgid "rm-rf"
25729 msgstr ""
25730
25731 #. type: verbatim
25732 #: ../fish/guestfish-actions.pod:3836
25733 #, no-wrap
25734 msgid ""
25735 " rm-rf path\n"
25736 "\n"
25737 msgstr ""
25738
25739 #. type: =head2
25740 #: ../fish/guestfish-actions.pod:3842
25741 msgid "rmdir"
25742 msgstr ""
25743
25744 #. type: verbatim
25745 #: ../fish/guestfish-actions.pod:3844
25746 #, no-wrap
25747 msgid ""
25748 " rmdir path\n"
25749 "\n"
25750 msgstr ""
25751
25752 #. type: =head2
25753 #: ../fish/guestfish-actions.pod:3848
25754 msgid "rmmountpoint"
25755 msgstr ""
25756
25757 #. type: verbatim
25758 #: ../fish/guestfish-actions.pod:3850
25759 #, no-wrap
25760 msgid ""
25761 " rmmountpoint exemptpath\n"
25762 "\n"
25763 msgstr ""
25764
25765 #. type: textblock
25766 #: ../fish/guestfish-actions.pod:3852
25767 msgid ""
25768 "This calls removes a mountpoint that was previously created with "
25769 "L</mkmountpoint>.  See L</mkmountpoint> for full details."
25770 msgstr ""
25771
25772 #. type: =head2
25773 #: ../fish/guestfish-actions.pod:3856
25774 msgid "scrub-device"
25775 msgstr ""
25776
25777 #. type: verbatim
25778 #: ../fish/guestfish-actions.pod:3858
25779 #, no-wrap
25780 msgid ""
25781 " scrub-device device\n"
25782 "\n"
25783 msgstr ""
25784
25785 #. type: =head2
25786 #: ../fish/guestfish-actions.pod:3869
25787 msgid "scrub-file"
25788 msgstr ""
25789
25790 #. type: verbatim
25791 #: ../fish/guestfish-actions.pod:3871
25792 #, no-wrap
25793 msgid ""
25794 " scrub-file file\n"
25795 "\n"
25796 msgstr ""
25797
25798 #. type: =head2
25799 #: ../fish/guestfish-actions.pod:3881
25800 msgid "scrub-freespace"
25801 msgstr ""
25802
25803 #. type: verbatim
25804 #: ../fish/guestfish-actions.pod:3883
25805 #, no-wrap
25806 msgid ""
25807 " scrub-freespace dir\n"
25808 "\n"
25809 msgstr ""
25810
25811 #. type: textblock
25812 #: ../fish/guestfish-actions.pod:3885
25813 msgid ""
25814 "This command creates the directory C<dir> and then fills it with files until "
25815 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
25816 "deletes them.  The intention is to scrub any free space on the partition "
25817 "containing C<dir>."
25818 msgstr ""
25819
25820 #. type: =head2
25821 #: ../fish/guestfish-actions.pod:3894
25822 msgid "set-append"
25823 msgstr ""
25824
25825 #. type: =head2
25826 #: ../fish/guestfish-actions.pod:3896
25827 msgid "append"
25828 msgstr ""
25829
25830 #. type: verbatim
25831 #: ../fish/guestfish-actions.pod:3898
25832 #, no-wrap
25833 msgid ""
25834 " set-append append\n"
25835 "\n"
25836 msgstr ""
25837
25838 #. type: =head2
25839 #: ../fish/guestfish-actions.pod:3909
25840 msgid "set-attach-method"
25841 msgstr ""
25842
25843 #. type: =head2
25844 #: ../fish/guestfish-actions.pod:3911
25845 msgid "attach-method"
25846 msgstr ""
25847
25848 #. type: verbatim
25849 #: ../fish/guestfish-actions.pod:3913
25850 #, no-wrap
25851 msgid ""
25852 " set-attach-method attachmethod\n"
25853 "\n"
25854 msgstr ""
25855
25856 #. type: =head2
25857 #: ../fish/guestfish-actions.pod:3935
25858 msgid "set-autosync"
25859 msgstr ""
25860
25861 #. type: =head2
25862 #: ../fish/guestfish-actions.pod:3937
25863 msgid "autosync"
25864 msgstr ""
25865
25866 #. type: verbatim
25867 #: ../fish/guestfish-actions.pod:3939
25868 #, no-wrap
25869 msgid ""
25870 " set-autosync true|false\n"
25871 "\n"
25872 msgstr ""
25873
25874 #. type: =head2
25875 #: ../fish/guestfish-actions.pod:3949
25876 msgid "set-direct"
25877 msgstr ""
25878
25879 #. type: =head2
25880 #: ../fish/guestfish-actions.pod:3951
25881 msgid "direct"
25882 msgstr ""
25883
25884 #. type: verbatim
25885 #: ../fish/guestfish-actions.pod:3953
25886 #, no-wrap
25887 msgid ""
25888 " set-direct true|false\n"
25889 "\n"
25890 msgstr ""
25891
25892 #. type: textblock
25893 #: ../fish/guestfish-actions.pod:3959
25894 msgid ""
25895 "One consequence of this is that log messages aren't caught by the library "
25896 "and handled by L</set-log-message-callback>, but go straight to stdout."
25897 msgstr ""
25898
25899 #. type: =head2
25900 #: ../fish/guestfish-actions.pod:3968
25901 msgid "set-e2label"
25902 msgstr ""
25903
25904 #. type: verbatim
25905 #: ../fish/guestfish-actions.pod:3970
25906 #, no-wrap
25907 msgid ""
25908 " set-e2label device label\n"
25909 "\n"
25910 msgstr ""
25911
25912 #. type: textblock
25913 #: ../fish/guestfish-actions.pod:3976
25914 msgid ""
25915 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
25916 "label on a filesystem."
25917 msgstr ""
25918
25919 #. type: =head2
25920 #: ../fish/guestfish-actions.pod:3979
25921 msgid "set-e2uuid"
25922 msgstr ""
25923
25924 #. type: verbatim
25925 #: ../fish/guestfish-actions.pod:3981
25926 #, no-wrap
25927 msgid ""
25928 " set-e2uuid device uuid\n"
25929 "\n"
25930 msgstr ""
25931
25932 #. type: textblock
25933 #: ../fish/guestfish-actions.pod:3988
25934 msgid ""
25935 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
25936 "UUID of a filesystem."
25937 msgstr ""
25938
25939 #. type: =head2
25940 #: ../fish/guestfish-actions.pod:3991
25941 msgid "set-memsize"
25942 msgstr ""
25943
25944 #. type: =head2
25945 #: ../fish/guestfish-actions.pod:3993
25946 msgid "memsize"
25947 msgstr ""
25948
25949 #. type: verbatim
25950 #: ../fish/guestfish-actions.pod:3995
25951 #, no-wrap
25952 msgid ""
25953 " set-memsize memsize\n"
25954 "\n"
25955 msgstr ""
25956
25957 #. type: textblock
25958 #: ../fish/guestfish-actions.pod:3997
25959 msgid ""
25960 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
25961 "This only has any effect if called before L</launch>."
25962 msgstr ""
25963
25964 #. type: =head2
25965 #: ../fish/guestfish-actions.pod:4008
25966 msgid "set-network"
25967 msgstr ""
25968
25969 #. type: =head2
25970 #: ../fish/guestfish-actions.pod:4010
25971 msgid "network"
25972 msgstr ""
25973
25974 #. type: verbatim
25975 #: ../fish/guestfish-actions.pod:4012
25976 #, no-wrap
25977 msgid ""
25978 " set-network true|false\n"
25979 "\n"
25980 msgstr ""
25981
25982 #. type: textblock
25983 #: ../fish/guestfish-actions.pod:4020
25984 msgid "You must call this before calling L</launch>, otherwise it has no effect."
25985 msgstr ""
25986
25987 #. type: =head2
25988 #: ../fish/guestfish-actions.pod:4023
25989 msgid "set-path"
25990 msgstr ""
25991
25992 #. type: =head2
25993 #: ../fish/guestfish-actions.pod:4025
25994 msgid "path"
25995 msgstr ""
25996
25997 #. type: verbatim
25998 #: ../fish/guestfish-actions.pod:4027
25999 #, no-wrap
26000 msgid ""
26001 " set-path searchpath\n"
26002 "\n"
26003 msgstr ""
26004
26005 #. type: =head2
26006 #: ../fish/guestfish-actions.pod:4036
26007 msgid "set-qemu"
26008 msgstr ""
26009
26010 #. type: =head2
26011 #: ../fish/guestfish-actions.pod:4038
26012 msgid "qemu"
26013 msgstr ""
26014
26015 #. type: verbatim
26016 #: ../fish/guestfish-actions.pod:4040
26017 #, no-wrap
26018 msgid ""
26019 " set-qemu qemu\n"
26020 "\n"
26021 msgstr ""
26022
26023 #. type: =head2
26024 #: ../fish/guestfish-actions.pod:4060
26025 msgid "set-recovery-proc"
26026 msgstr ""
26027
26028 #. type: =head2
26029 #: ../fish/guestfish-actions.pod:4062
26030 msgid "recovery-proc"
26031 msgstr ""
26032
26033 #. type: verbatim
26034 #: ../fish/guestfish-actions.pod:4064
26035 #, no-wrap
26036 msgid ""
26037 " set-recovery-proc true|false\n"
26038 "\n"
26039 msgstr ""
26040
26041 #. type: textblock
26042 #: ../fish/guestfish-actions.pod:4066
26043 msgid ""
26044 "If this is called with the parameter C<false> then L</launch> does not "
26045 "create a recovery process.  The purpose of the recovery process is to stop "
26046 "runaway qemu processes in the case where the main program aborts abruptly."
26047 msgstr ""
26048
26049 #. type: textblock
26050 #: ../fish/guestfish-actions.pod:4071
26051 msgid ""
26052 "This only has any effect if called before L</launch>, and the default is "
26053 "true."
26054 msgstr ""
26055
26056 #. type: =head2
26057 #: ../fish/guestfish-actions.pod:4080
26058 msgid "set-selinux"
26059 msgstr ""
26060
26061 #. type: =head2
26062 #: ../fish/guestfish-actions.pod:4082
26063 msgid "selinux"
26064 msgstr ""
26065
26066 #. type: verbatim
26067 #: ../fish/guestfish-actions.pod:4084
26068 #, no-wrap
26069 msgid ""
26070 " set-selinux true|false\n"
26071 "\n"
26072 msgstr ""
26073
26074 #. type: =head2
26075 #: ../fish/guestfish-actions.pod:4095
26076 msgid "set-trace"
26077 msgstr ""
26078
26079 #. type: =head2
26080 #: ../fish/guestfish-actions.pod:4097
26081 msgid "trace"
26082 msgstr ""
26083
26084 #. type: verbatim
26085 #: ../fish/guestfish-actions.pod:4099
26086 #, no-wrap
26087 msgid ""
26088 " set-trace true|false\n"
26089 "\n"
26090 msgstr ""
26091
26092 #. type: textblock
26093 #: ../fish/guestfish-actions.pod:4111
26094 msgid ""
26095 "Trace messages are normally sent to C<stderr>, unless you register a "
26096 "callback to send them somewhere else (see L</set-event-callback>)."
26097 msgstr ""
26098
26099 #. type: =head2
26100 #: ../fish/guestfish-actions.pod:4115
26101 msgid "set-verbose"
26102 msgstr ""
26103
26104 #. type: =head2
26105 #: ../fish/guestfish-actions.pod:4117
26106 msgid "verbose"
26107 msgstr ""
26108
26109 #. type: verbatim
26110 #: ../fish/guestfish-actions.pod:4119
26111 #, no-wrap
26112 msgid ""
26113 " set-verbose true|false\n"
26114 "\n"
26115 msgstr ""
26116
26117 #. type: textblock
26118 #: ../fish/guestfish-actions.pod:4126
26119 msgid ""
26120 "Verbose messages are normally sent to C<stderr>, unless you register a "
26121 "callback to send them somewhere else (see L</set-event-callback>)."
26122 msgstr ""
26123
26124 #. type: =head2
26125 #: ../fish/guestfish-actions.pod:4130
26126 msgid "setcon"
26127 msgstr ""
26128
26129 #. type: verbatim
26130 #: ../fish/guestfish-actions.pod:4132
26131 #, no-wrap
26132 msgid ""
26133 " setcon context\n"
26134 "\n"
26135 msgstr ""
26136
26137 #. type: =head2
26138 #: ../fish/guestfish-actions.pod:4139
26139 msgid "setxattr"
26140 msgstr ""
26141
26142 #. type: verbatim
26143 #: ../fish/guestfish-actions.pod:4141
26144 #, no-wrap
26145 msgid ""
26146 " setxattr xattr val vallen path\n"
26147 "\n"
26148 msgstr ""
26149
26150 #. type: textblock
26151 #: ../fish/guestfish-actions.pod:4147
26152 msgid "See also: L</lsetxattr>, L<attr(5)>."
26153 msgstr ""
26154
26155 #. type: =head2
26156 #: ../fish/guestfish-actions.pod:4149
26157 msgid "sfdisk"
26158 msgstr ""
26159
26160 #. type: verbatim
26161 #: ../fish/guestfish-actions.pod:4151
26162 #, no-wrap
26163 msgid ""
26164 " sfdisk device cyls heads sectors 'lines ...'\n"
26165 "\n"
26166 msgstr ""
26167
26168 #. type: textblock
26169 #: ../fish/guestfish-actions.pod:4173
26170 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
26171 msgstr ""
26172
26173 #. type: =head2
26174 #: ../fish/guestfish-actions.pod:4186
26175 msgid "sfdiskM"
26176 msgstr ""
26177
26178 #. type: verbatim
26179 #: ../fish/guestfish-actions.pod:4188
26180 #, no-wrap
26181 msgid ""
26182 " sfdiskM device 'lines ...'\n"
26183 "\n"
26184 msgstr ""
26185
26186 #. type: textblock
26187 #: ../fish/guestfish-actions.pod:4190
26188 msgid ""
26189 "This is a simplified interface to the L</sfdisk> command, where partition "
26190 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
26191 "you don't need to specify the cyls, heads and sectors parameters which were "
26192 "rarely if ever used anyway."
26193 msgstr ""
26194
26195 #. type: textblock
26196 #: ../fish/guestfish-actions.pod:4196
26197 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
26198 msgstr ""
26199
26200 #. type: =head2
26201 #: ../fish/guestfish-actions.pod:4209
26202 msgid "sfdisk-N"
26203 msgstr ""
26204
26205 #. type: verbatim
26206 #: ../fish/guestfish-actions.pod:4211
26207 #, no-wrap
26208 msgid ""
26209 " sfdisk-N device partnum cyls heads sectors line\n"
26210 "\n"
26211 msgstr ""
26212
26213 #. type: textblock
26214 #: ../fish/guestfish-actions.pod:4216
26215 msgid ""
26216 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
26217 "cyls/heads/sectors parameters."
26218 msgstr ""
26219
26220 #. type: textblock
26221 #: ../fish/guestfish-actions.pod:4219
26222 msgid "See also: L</part-add>"
26223 msgstr ""
26224
26225 #. type: =head2
26226 #: ../fish/guestfish-actions.pod:4231
26227 msgid "sfdisk-disk-geometry"
26228 msgstr ""
26229
26230 #. type: verbatim
26231 #: ../fish/guestfish-actions.pod:4233
26232 #, no-wrap
26233 msgid ""
26234 " sfdisk-disk-geometry device\n"
26235 "\n"
26236 msgstr ""
26237
26238 #. type: textblock
26239 #: ../fish/guestfish-actions.pod:4235
26240 msgid ""
26241 "This displays the disk geometry of C<device> read from the partition table.  "
26242 "Especially in the case where the underlying block device has been resized, "
26243 "this can be different from the kernel's idea of the geometry (see "
26244 "L</sfdisk-kernel-geometry>)."
26245 msgstr ""
26246
26247 #. type: =head2
26248 #: ../fish/guestfish-actions.pod:4243
26249 msgid "sfdisk-kernel-geometry"
26250 msgstr ""
26251
26252 #. type: verbatim
26253 #: ../fish/guestfish-actions.pod:4245
26254 #, no-wrap
26255 msgid ""
26256 " sfdisk-kernel-geometry device\n"
26257 "\n"
26258 msgstr ""
26259
26260 #. type: =head2
26261 #: ../fish/guestfish-actions.pod:4252
26262 msgid "sfdisk-l"
26263 msgstr ""
26264
26265 #. type: verbatim
26266 #: ../fish/guestfish-actions.pod:4254
26267 #, no-wrap
26268 msgid ""
26269 " sfdisk-l device\n"
26270 "\n"
26271 msgstr ""
26272
26273 #. type: textblock
26274 #: ../fish/guestfish-actions.pod:4260
26275 msgid "See also: L</part-list>"
26276 msgstr ""
26277
26278 #. type: =head2
26279 #: ../fish/guestfish-actions.pod:4269
26280 msgid "sh"
26281 msgstr ""
26282
26283 #. type: verbatim
26284 #: ../fish/guestfish-actions.pod:4271
26285 #, no-wrap
26286 msgid ""
26287 " sh command\n"
26288 "\n"
26289 msgstr ""
26290
26291 #. type: textblock
26292 #: ../fish/guestfish-actions.pod:4276
26293 msgid "This is like L</command>, but passes the command to:"
26294 msgstr ""
26295
26296 #. type: textblock
26297 #: ../fish/guestfish-actions.pod:4284
26298 msgid "All the provisos about L</command> apply to this call."
26299 msgstr ""
26300
26301 #. type: =head2
26302 #: ../fish/guestfish-actions.pod:4286
26303 msgid "sh-lines"
26304 msgstr ""
26305
26306 #. type: verbatim
26307 #: ../fish/guestfish-actions.pod:4288
26308 #, no-wrap
26309 msgid ""
26310 " sh-lines command\n"
26311 "\n"
26312 msgstr ""
26313
26314 #. type: textblock
26315 #: ../fish/guestfish-actions.pod:4290
26316 msgid "This is the same as L</sh>, but splits the result into a list of lines."
26317 msgstr ""
26318
26319 #. type: textblock
26320 #: ../fish/guestfish-actions.pod:4293
26321 msgid "See also: L</command-lines>"
26322 msgstr ""
26323
26324 #. type: =head2
26325 #: ../fish/guestfish-actions.pod:4295
26326 msgid "sleep"
26327 msgstr ""
26328
26329 #. type: verbatim
26330 #: ../fish/guestfish-actions.pod:4297
26331 #, no-wrap
26332 msgid ""
26333 " sleep secs\n"
26334 "\n"
26335 msgstr ""
26336
26337 #. type: =head2
26338 #: ../fish/guestfish-actions.pod:4301
26339 msgid "stat"
26340 msgstr ""
26341
26342 #. type: verbatim
26343 #: ../fish/guestfish-actions.pod:4303
26344 #, no-wrap
26345 msgid ""
26346 " stat path\n"
26347 "\n"
26348 msgstr ""
26349
26350 #. type: =head2
26351 #: ../fish/guestfish-actions.pod:4309
26352 msgid "statvfs"
26353 msgstr ""
26354
26355 #. type: verbatim
26356 #: ../fish/guestfish-actions.pod:4311
26357 #, no-wrap
26358 msgid ""
26359 " statvfs path\n"
26360 "\n"
26361 msgstr ""
26362
26363 #. type: =head2
26364 #: ../fish/guestfish-actions.pod:4319
26365 msgid "strings"
26366 msgstr ""
26367
26368 #. type: verbatim
26369 #: ../fish/guestfish-actions.pod:4321
26370 #, no-wrap
26371 msgid ""
26372 " strings path\n"
26373 "\n"
26374 msgstr ""
26375
26376 #. type: =head2
26377 #: ../fish/guestfish-actions.pod:4329
26378 msgid "strings-e"
26379 msgstr ""
26380
26381 #. type: verbatim
26382 #: ../fish/guestfish-actions.pod:4331
26383 #, no-wrap
26384 msgid ""
26385 " strings-e encoding path\n"
26386 "\n"
26387 msgstr ""
26388
26389 #. type: textblock
26390 #: ../fish/guestfish-actions.pod:4333
26391 msgid ""
26392 "This is like the L</strings> command, but allows you to specify the encoding "
26393 "of strings that are looked for in the source file C<path>."
26394 msgstr ""
26395
26396 #. type: textblock
26397 #: ../fish/guestfish-actions.pod:4343
26398 msgid ""
26399 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
26400 "ISO-8859-X (this is what L</strings> uses)."
26401 msgstr ""
26402
26403 #. type: =head2
26404 #: ../fish/guestfish-actions.pod:4375
26405 msgid "swapoff-device"
26406 msgstr ""
26407
26408 #. type: verbatim
26409 #: ../fish/guestfish-actions.pod:4377
26410 #, no-wrap
26411 msgid ""
26412 " swapoff-device device\n"
26413 "\n"
26414 msgstr ""
26415
26416 #. type: textblock
26417 #: ../fish/guestfish-actions.pod:4379
26418 msgid ""
26419 "This command disables the libguestfs appliance swap device or partition "
26420 "named C<device>.  See L</swapon-device>."
26421 msgstr ""
26422
26423 #. type: =head2
26424 #: ../fish/guestfish-actions.pod:4383
26425 msgid "swapoff-file"
26426 msgstr ""
26427
26428 #. type: verbatim
26429 #: ../fish/guestfish-actions.pod:4385
26430 #, no-wrap
26431 msgid ""
26432 " swapoff-file file\n"
26433 "\n"
26434 msgstr ""
26435
26436 #. type: =head2
26437 #: ../fish/guestfish-actions.pod:4389
26438 msgid "swapoff-label"
26439 msgstr ""
26440
26441 #. type: verbatim
26442 #: ../fish/guestfish-actions.pod:4391
26443 #, no-wrap
26444 msgid ""
26445 " swapoff-label label\n"
26446 "\n"
26447 msgstr ""
26448
26449 #. type: =head2
26450 #: ../fish/guestfish-actions.pod:4396
26451 msgid "swapoff-uuid"
26452 msgstr ""
26453
26454 #. type: verbatim
26455 #: ../fish/guestfish-actions.pod:4398
26456 #, no-wrap
26457 msgid ""
26458 " swapoff-uuid uuid\n"
26459 "\n"
26460 msgstr ""
26461
26462 #. type: =head2
26463 #: ../fish/guestfish-actions.pod:4403
26464 msgid "swapon-device"
26465 msgstr ""
26466
26467 #. type: verbatim
26468 #: ../fish/guestfish-actions.pod:4405
26469 #, no-wrap
26470 msgid ""
26471 " swapon-device device\n"
26472 "\n"
26473 msgstr ""
26474
26475 #. type: textblock
26476 #: ../fish/guestfish-actions.pod:4407
26477 msgid ""
26478 "This command enables the libguestfs appliance to use the swap device or "
26479 "partition named C<device>.  The increased memory is made available for all "
26480 "commands, for example those run using L</command> or L</sh>."
26481 msgstr ""
26482
26483 #. type: =head2
26484 #: ../fish/guestfish-actions.pod:4419
26485 msgid "swapon-file"
26486 msgstr ""
26487
26488 #. type: verbatim
26489 #: ../fish/guestfish-actions.pod:4421
26490 #, no-wrap
26491 msgid ""
26492 " swapon-file file\n"
26493 "\n"
26494 msgstr ""
26495
26496 #. type: textblock
26497 #: ../fish/guestfish-actions.pod:4423
26498 msgid "This command enables swap to a file.  See L</swapon-device> for other notes."
26499 msgstr ""
26500
26501 #. type: =head2
26502 #: ../fish/guestfish-actions.pod:4426
26503 msgid "swapon-label"
26504 msgstr ""
26505
26506 #. type: verbatim
26507 #: ../fish/guestfish-actions.pod:4428
26508 #, no-wrap
26509 msgid ""
26510 " swapon-label label\n"
26511 "\n"
26512 msgstr ""
26513
26514 #. type: textblock
26515 #: ../fish/guestfish-actions.pod:4430
26516 msgid ""
26517 "This command enables swap to a labeled swap partition.  See "
26518 "L</swapon-device> for other notes."
26519 msgstr ""
26520
26521 #. type: =head2
26522 #: ../fish/guestfish-actions.pod:4433
26523 msgid "swapon-uuid"
26524 msgstr ""
26525
26526 #. type: verbatim
26527 #: ../fish/guestfish-actions.pod:4435
26528 #, no-wrap
26529 msgid ""
26530 " swapon-uuid uuid\n"
26531 "\n"
26532 msgstr ""
26533
26534 #. type: textblock
26535 #: ../fish/guestfish-actions.pod:4437
26536 msgid ""
26537 "This command enables swap to a swap partition with the given UUID.  See "
26538 "L</swapon-device> for other notes."
26539 msgstr ""
26540
26541 #. type: =head2
26542 #: ../fish/guestfish-actions.pod:4440
26543 msgid "sync"
26544 msgstr ""
26545
26546 #. type: verbatim
26547 #: ../fish/guestfish-actions.pod:4442
26548 #, no-wrap
26549 msgid ""
26550 " sync\n"
26551 "\n"
26552 msgstr ""
26553
26554 #. type: =head2
26555 #: ../fish/guestfish-actions.pod:4450
26556 msgid "tail"
26557 msgstr ""
26558
26559 #. type: verbatim
26560 #: ../fish/guestfish-actions.pod:4452
26561 #, no-wrap
26562 msgid ""
26563 " tail path\n"
26564 "\n"
26565 msgstr ""
26566
26567 #. type: =head2
26568 #: ../fish/guestfish-actions.pod:4460
26569 msgid "tail-n"
26570 msgstr ""
26571
26572 #. type: verbatim
26573 #: ../fish/guestfish-actions.pod:4462
26574 #, no-wrap
26575 msgid ""
26576 " tail-n nrlines path\n"
26577 "\n"
26578 msgstr ""
26579
26580 #. type: =head2
26581 #: ../fish/guestfish-actions.pod:4475
26582 msgid "tar-in"
26583 msgstr ""
26584
26585 #. type: verbatim
26586 #: ../fish/guestfish-actions.pod:4477
26587 #, no-wrap
26588 msgid ""
26589 " tar-in (tarfile|-) directory\n"
26590 "\n"
26591 msgstr ""
26592
26593 #. type: textblock
26594 #: ../fish/guestfish-actions.pod:4482
26595 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
26596 msgstr ""
26597
26598 #. type: =head2
26599 #: ../fish/guestfish-actions.pod:4487
26600 msgid "tar-out"
26601 msgstr ""
26602
26603 #. type: verbatim
26604 #: ../fish/guestfish-actions.pod:4489
26605 #, no-wrap
26606 msgid ""
26607 " tar-out directory (tarfile|-)\n"
26608 "\n"
26609 msgstr ""
26610
26611 #. type: textblock
26612 #: ../fish/guestfish-actions.pod:4494
26613 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
26614 msgstr ""
26615
26616 #. type: =head2
26617 #: ../fish/guestfish-actions.pod:4499
26618 msgid "tgz-in"
26619 msgstr ""
26620
26621 #. type: verbatim
26622 #: ../fish/guestfish-actions.pod:4501
26623 #, no-wrap
26624 msgid ""
26625 " tgz-in (tarball|-) directory\n"
26626 "\n"
26627 msgstr ""
26628
26629 #. type: textblock
26630 #: ../fish/guestfish-actions.pod:4506
26631 msgid "To upload an uncompressed tarball, use L</tar-in>."
26632 msgstr ""
26633
26634 #. type: =head2
26635 #: ../fish/guestfish-actions.pod:4510
26636 msgid "tgz-out"
26637 msgstr ""
26638
26639 #. type: verbatim
26640 #: ../fish/guestfish-actions.pod:4512
26641 #, no-wrap
26642 msgid ""
26643 " tgz-out directory (tarball|-)\n"
26644 "\n"
26645 msgstr ""
26646
26647 #. type: textblock
26648 #: ../fish/guestfish-actions.pod:4517
26649 msgid "To download an uncompressed tarball, use L</tar-out>."
26650 msgstr ""
26651
26652 #. type: =head2
26653 #: ../fish/guestfish-actions.pod:4521
26654 msgid "touch"
26655 msgstr ""
26656
26657 #. type: verbatim
26658 #: ../fish/guestfish-actions.pod:4523
26659 #, no-wrap
26660 msgid ""
26661 " touch path\n"
26662 "\n"
26663 msgstr ""
26664
26665 #. type: =head2
26666 #: ../fish/guestfish-actions.pod:4532
26667 msgid "truncate"
26668 msgstr ""
26669
26670 #. type: verbatim
26671 #: ../fish/guestfish-actions.pod:4534
26672 #, no-wrap
26673 msgid ""
26674 " truncate path\n"
26675 "\n"
26676 msgstr ""
26677
26678 #. type: =head2
26679 #: ../fish/guestfish-actions.pod:4539
26680 msgid "truncate-size"
26681 msgstr ""
26682
26683 #. type: verbatim
26684 #: ../fish/guestfish-actions.pod:4541
26685 #, no-wrap
26686 msgid ""
26687 " truncate-size path size\n"
26688 "\n"
26689 msgstr ""
26690
26691 #. type: textblock
26692 #: ../fish/guestfish-actions.pod:4546
26693 msgid ""
26694 "If the current file size is less than C<size> then the file is extended to "
26695 "the required size with zero bytes.  This creates a sparse file (ie. disk "
26696 "blocks are not allocated for the file until you write to it).  To create a "
26697 "non-sparse file of zeroes, use L</fallocate64> instead."
26698 msgstr ""
26699
26700 #. type: =head2
26701 #: ../fish/guestfish-actions.pod:4552
26702 msgid "tune2fs-l"
26703 msgstr ""
26704
26705 #. type: verbatim
26706 #: ../fish/guestfish-actions.pod:4554
26707 #, no-wrap
26708 msgid ""
26709 " tune2fs-l device\n"
26710 "\n"
26711 msgstr ""
26712
26713 #. type: =head2
26714 #: ../fish/guestfish-actions.pod:4564
26715 msgid "txz-in"
26716 msgstr ""
26717
26718 #. type: verbatim
26719 #: ../fish/guestfish-actions.pod:4566
26720 #, no-wrap
26721 msgid ""
26722 " txz-in (tarball|-) directory\n"
26723 "\n"
26724 msgstr ""
26725
26726 #. type: =head2
26727 #: ../fish/guestfish-actions.pod:4573
26728 msgid "txz-out"
26729 msgstr ""
26730
26731 #. type: verbatim
26732 #: ../fish/guestfish-actions.pod:4575
26733 #, no-wrap
26734 msgid ""
26735 " txz-out directory (tarball|-)\n"
26736 "\n"
26737 msgstr ""
26738
26739 #. type: =head2
26740 #: ../fish/guestfish-actions.pod:4582
26741 msgid "umask"
26742 msgstr ""
26743
26744 #. type: verbatim
26745 #: ../fish/guestfish-actions.pod:4584
26746 #, no-wrap
26747 msgid ""
26748 " umask mask\n"
26749 "\n"
26750 msgstr ""
26751
26752 #. type: textblock
26753 #: ../fish/guestfish-actions.pod:4598
26754 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
26755 msgstr ""
26756
26757 #. type: =head2
26758 #: ../fish/guestfish-actions.pod:4603
26759 msgid "umount"
26760 msgstr ""
26761
26762 #. type: =head2
26763 #: ../fish/guestfish-actions.pod:4605
26764 msgid "unmount"
26765 msgstr ""
26766
26767 #. type: verbatim
26768 #: ../fish/guestfish-actions.pod:4607
26769 #, no-wrap
26770 msgid ""
26771 " umount pathordevice\n"
26772 "\n"
26773 msgstr ""
26774
26775 #. type: =head2
26776 #: ../fish/guestfish-actions.pod:4613
26777 msgid "umount-all"
26778 msgstr ""
26779
26780 #. type: =head2
26781 #: ../fish/guestfish-actions.pod:4615
26782 msgid "unmount-all"
26783 msgstr ""
26784
26785 #. type: verbatim
26786 #: ../fish/guestfish-actions.pod:4617
26787 #, no-wrap
26788 msgid ""
26789 " umount-all\n"
26790 "\n"
26791 msgstr ""
26792
26793 #. type: =head2
26794 #: ../fish/guestfish-actions.pod:4623
26795 msgid "upload"
26796 msgstr ""
26797
26798 #. type: verbatim
26799 #: ../fish/guestfish-actions.pod:4625
26800 #, no-wrap
26801 msgid ""
26802 " upload (filename|-) remotefilename\n"
26803 "\n"
26804 msgstr ""
26805
26806 #. type: textblock
26807 #: ../fish/guestfish-actions.pod:4632
26808 msgid "See also L</download>."
26809 msgstr ""
26810
26811 #. type: =head2
26812 #: ../fish/guestfish-actions.pod:4636
26813 msgid "upload-offset"
26814 msgstr ""
26815
26816 #. type: verbatim
26817 #: ../fish/guestfish-actions.pod:4638
26818 #, no-wrap
26819 msgid ""
26820 " upload-offset (filename|-) remotefilename offset\n"
26821 "\n"
26822 msgstr ""
26823
26824 #. type: textblock
26825 #: ../fish/guestfish-actions.pod:4650
26826 msgid ""
26827 "Note that there is no limit on the amount of data that can be uploaded with "
26828 "this call, unlike with L</pwrite>, and this call always writes the full "
26829 "amount unless an error occurs."
26830 msgstr ""
26831
26832 #. type: textblock
26833 #: ../fish/guestfish-actions.pod:4655
26834 msgid "See also L</upload>, L</pwrite>."
26835 msgstr ""
26836
26837 #. type: =head2
26838 #: ../fish/guestfish-actions.pod:4659
26839 msgid "utimens"
26840 msgstr ""
26841
26842 #. type: verbatim
26843 #: ../fish/guestfish-actions.pod:4661
26844 #, no-wrap
26845 msgid ""
26846 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
26847 "\n"
26848 msgstr ""
26849
26850 #. type: =head2
26851 #: ../fish/guestfish-actions.pod:4680
26852 msgid "version"
26853 msgstr ""
26854
26855 #. type: verbatim
26856 #: ../fish/guestfish-actions.pod:4682
26857 #, no-wrap
26858 msgid ""
26859 " version\n"
26860 "\n"
26861 msgstr ""
26862
26863 #. type: textblock
26864 #: ../fish/guestfish-actions.pod:4709
26865 msgid ""
26866 "I<Note:> Don't use this call to test for availability of features.  In "
26867 "enterprise distributions we backport features from later versions into "
26868 "earlier versions, making this an unreliable way to test for features.  Use "
26869 "L</available> instead."
26870 msgstr ""
26871
26872 #. type: =head2
26873 #: ../fish/guestfish-actions.pod:4715
26874 msgid "vfs-label"
26875 msgstr ""
26876
26877 #. type: verbatim
26878 #: ../fish/guestfish-actions.pod:4717
26879 #, no-wrap
26880 msgid ""
26881 " vfs-label device\n"
26882 "\n"
26883 msgstr ""
26884
26885 #. type: textblock
26886 #: ../fish/guestfish-actions.pod:4724
26887 msgid "To find a filesystem from the label, use L</findfs-label>."
26888 msgstr ""
26889
26890 #. type: =head2
26891 #: ../fish/guestfish-actions.pod:4726
26892 msgid "vfs-type"
26893 msgstr ""
26894
26895 #. type: verbatim
26896 #: ../fish/guestfish-actions.pod:4728
26897 #, no-wrap
26898 msgid ""
26899 " vfs-type device\n"
26900 "\n"
26901 msgstr ""
26902
26903 #. type: =head2
26904 #: ../fish/guestfish-actions.pod:4738
26905 msgid "vfs-uuid"
26906 msgstr ""
26907
26908 #. type: verbatim
26909 #: ../fish/guestfish-actions.pod:4740
26910 #, no-wrap
26911 msgid ""
26912 " vfs-uuid device\n"
26913 "\n"
26914 msgstr ""
26915
26916 #. type: textblock
26917 #: ../fish/guestfish-actions.pod:4747
26918 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
26919 msgstr ""
26920
26921 #. type: =head2
26922 #: ../fish/guestfish-actions.pod:4749
26923 msgid "vg-activate"
26924 msgstr ""
26925
26926 #. type: verbatim
26927 #: ../fish/guestfish-actions.pod:4751
26928 #, no-wrap
26929 msgid ""
26930 " vg-activate true|false 'volgroups ...'\n"
26931 "\n"
26932 msgstr ""
26933
26934 #. type: =head2
26935 #: ../fish/guestfish-actions.pod:4764
26936 msgid "vg-activate-all"
26937 msgstr ""
26938
26939 #. type: verbatim
26940 #: ../fish/guestfish-actions.pod:4766
26941 #, no-wrap
26942 msgid ""
26943 " vg-activate-all true|false\n"
26944 "\n"
26945 msgstr ""
26946
26947 #. type: =head2
26948 #: ../fish/guestfish-actions.pod:4776
26949 msgid "vgcreate"
26950 msgstr ""
26951
26952 #. type: verbatim
26953 #: ../fish/guestfish-actions.pod:4778
26954 #, no-wrap
26955 msgid ""
26956 " vgcreate volgroup 'physvols ...'\n"
26957 "\n"
26958 msgstr ""
26959
26960 #. type: =head2
26961 #: ../fish/guestfish-actions.pod:4783
26962 msgid "vglvuuids"
26963 msgstr ""
26964
26965 #. type: verbatim
26966 #: ../fish/guestfish-actions.pod:4785
26967 #, no-wrap
26968 msgid ""
26969 " vglvuuids vgname\n"
26970 "\n"
26971 msgstr ""
26972
26973 #. type: textblock
26974 #: ../fish/guestfish-actions.pod:4790
26975 msgid ""
26976 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
26977 "logical volumes and volume groups."
26978 msgstr ""
26979
26980 #. type: textblock
26981 #: ../fish/guestfish-actions.pod:4793
26982 msgid "See also L</vgpvuuids>."
26983 msgstr ""
26984
26985 #. type: =head2
26986 #: ../fish/guestfish-actions.pod:4795
26987 msgid "vgpvuuids"
26988 msgstr ""
26989
26990 #. type: verbatim
26991 #: ../fish/guestfish-actions.pod:4797
26992 #, no-wrap
26993 msgid ""
26994 " vgpvuuids vgname\n"
26995 "\n"
26996 msgstr ""
26997
26998 #. type: textblock
26999 #: ../fish/guestfish-actions.pod:4802
27000 msgid ""
27001 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
27002 "physical volumes and volume groups."
27003 msgstr ""
27004
27005 #. type: textblock
27006 #: ../fish/guestfish-actions.pod:4805
27007 msgid "See also L</vglvuuids>."
27008 msgstr ""
27009
27010 #. type: =head2
27011 #: ../fish/guestfish-actions.pod:4807
27012 msgid "vgremove"
27013 msgstr ""
27014
27015 #. type: verbatim
27016 #: ../fish/guestfish-actions.pod:4809
27017 #, no-wrap
27018 msgid ""
27019 " vgremove vgname\n"
27020 "\n"
27021 msgstr ""
27022
27023 #. type: =head2
27024 #: ../fish/guestfish-actions.pod:4816
27025 msgid "vgrename"
27026 msgstr ""
27027
27028 #. type: verbatim
27029 #: ../fish/guestfish-actions.pod:4818
27030 #, no-wrap
27031 msgid ""
27032 " vgrename volgroup newvolgroup\n"
27033 "\n"
27034 msgstr ""
27035
27036 #. type: =head2
27037 #: ../fish/guestfish-actions.pod:4822
27038 msgid "vgs"
27039 msgstr ""
27040
27041 #. type: verbatim
27042 #: ../fish/guestfish-actions.pod:4824
27043 #, no-wrap
27044 msgid ""
27045 " vgs\n"
27046 "\n"
27047 msgstr ""
27048
27049 #. type: textblock
27050 #: ../fish/guestfish-actions.pod:4832
27051 msgid "See also L</vgs-full>."
27052 msgstr ""
27053
27054 #. type: =head2
27055 #: ../fish/guestfish-actions.pod:4834
27056 msgid "vgs-full"
27057 msgstr ""
27058
27059 #. type: verbatim
27060 #: ../fish/guestfish-actions.pod:4836
27061 #, no-wrap
27062 msgid ""
27063 " vgs-full\n"
27064 "\n"
27065 msgstr ""
27066
27067 #. type: =head2
27068 #: ../fish/guestfish-actions.pod:4841
27069 msgid "vgscan"
27070 msgstr ""
27071
27072 #. type: verbatim
27073 #: ../fish/guestfish-actions.pod:4843
27074 #, no-wrap
27075 msgid ""
27076 " vgscan\n"
27077 "\n"
27078 msgstr ""
27079
27080 #. type: =head2
27081 #: ../fish/guestfish-actions.pod:4848
27082 msgid "vguuid"
27083 msgstr ""
27084
27085 #. type: verbatim
27086 #: ../fish/guestfish-actions.pod:4850
27087 #, no-wrap
27088 msgid ""
27089 " vguuid vgname\n"
27090 "\n"
27091 msgstr ""
27092
27093 #. type: =head2
27094 #: ../fish/guestfish-actions.pod:4854
27095 msgid "wc-c"
27096 msgstr ""
27097
27098 #. type: verbatim
27099 #: ../fish/guestfish-actions.pod:4856
27100 #, no-wrap
27101 msgid ""
27102 " wc-c path\n"
27103 "\n"
27104 msgstr ""
27105
27106 #. type: =head2
27107 #: ../fish/guestfish-actions.pod:4861
27108 msgid "wc-l"
27109 msgstr ""
27110
27111 #. type: verbatim
27112 #: ../fish/guestfish-actions.pod:4863
27113 #, no-wrap
27114 msgid ""
27115 " wc-l path\n"
27116 "\n"
27117 msgstr ""
27118
27119 #. type: =head2
27120 #: ../fish/guestfish-actions.pod:4868
27121 msgid "wc-w"
27122 msgstr ""
27123
27124 #. type: verbatim
27125 #: ../fish/guestfish-actions.pod:4870
27126 #, no-wrap
27127 msgid ""
27128 " wc-w path\n"
27129 "\n"
27130 msgstr ""
27131
27132 #. type: =head2
27133 #: ../fish/guestfish-actions.pod:4875
27134 msgid "write"
27135 msgstr ""
27136
27137 #. type: verbatim
27138 #: ../fish/guestfish-actions.pod:4877
27139 #, no-wrap
27140 msgid ""
27141 " write path content\n"
27142 "\n"
27143 msgstr ""
27144
27145 #. type: =head2
27146 #: ../fish/guestfish-actions.pod:4885
27147 msgid "write-file"
27148 msgstr ""
27149
27150 #. type: verbatim
27151 #: ../fish/guestfish-actions.pod:4887
27152 #, no-wrap
27153 msgid ""
27154 " write-file path content size\n"
27155 "\n"
27156 msgstr ""
27157
27158 #. type: =head2
27159 #: ../fish/guestfish-actions.pod:4910
27160 msgid "zegrep"
27161 msgstr ""
27162
27163 #. type: verbatim
27164 #: ../fish/guestfish-actions.pod:4912
27165 #, no-wrap
27166 msgid ""
27167 " zegrep regex path\n"
27168 "\n"
27169 msgstr ""
27170
27171 #. type: =head2
27172 #: ../fish/guestfish-actions.pod:4920
27173 msgid "zegrepi"
27174 msgstr ""
27175
27176 #. type: verbatim
27177 #: ../fish/guestfish-actions.pod:4922
27178 #, no-wrap
27179 msgid ""
27180 " zegrepi regex path\n"
27181 "\n"
27182 msgstr ""
27183
27184 #. type: =head2
27185 #: ../fish/guestfish-actions.pod:4930
27186 msgid "zero"
27187 msgstr ""
27188
27189 #. type: verbatim
27190 #: ../fish/guestfish-actions.pod:4932
27191 #, no-wrap
27192 msgid ""
27193 " zero device\n"
27194 "\n"
27195 msgstr ""
27196
27197 #. type: textblock
27198 #: ../fish/guestfish-actions.pod:4940
27199 msgid "See also: L</zero-device>, L</scrub-device>."
27200 msgstr ""
27201
27202 #. type: =head2
27203 #: ../fish/guestfish-actions.pod:4942
27204 msgid "zero-device"
27205 msgstr ""
27206
27207 #. type: verbatim
27208 #: ../fish/guestfish-actions.pod:4944
27209 #, no-wrap
27210 msgid ""
27211 " zero-device device\n"
27212 "\n"
27213 msgstr ""
27214
27215 #. type: textblock
27216 #: ../fish/guestfish-actions.pod:4946
27217 msgid ""
27218 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
27219 "which just zeroes the first few blocks of a device."
27220 msgstr ""
27221
27222 #. type: =head2
27223 #: ../fish/guestfish-actions.pod:4953
27224 msgid "zerofree"
27225 msgstr ""
27226
27227 #. type: verbatim
27228 #: ../fish/guestfish-actions.pod:4955
27229 #, no-wrap
27230 msgid ""
27231 " zerofree device\n"
27232 "\n"
27233 msgstr ""
27234
27235 #. type: =head2
27236 #: ../fish/guestfish-actions.pod:4968
27237 msgid "zfgrep"
27238 msgstr ""
27239
27240 #. type: verbatim
27241 #: ../fish/guestfish-actions.pod:4970
27242 #, no-wrap
27243 msgid ""
27244 " zfgrep pattern path\n"
27245 "\n"
27246 msgstr ""
27247
27248 #. type: =head2
27249 #: ../fish/guestfish-actions.pod:4978
27250 msgid "zfgrepi"
27251 msgstr ""
27252
27253 #. type: verbatim
27254 #: ../fish/guestfish-actions.pod:4980
27255 #, no-wrap
27256 msgid ""
27257 " zfgrepi pattern path\n"
27258 "\n"
27259 msgstr ""
27260
27261 #. type: =head2
27262 #: ../fish/guestfish-actions.pod:4988
27263 msgid "zfile"
27264 msgstr ""
27265
27266 #. type: verbatim
27267 #: ../fish/guestfish-actions.pod:4990
27268 #, no-wrap
27269 msgid ""
27270 " zfile meth path\n"
27271 "\n"
27272 msgstr ""
27273
27274 #. type: textblock
27275 #: ../fish/guestfish-actions.pod:4997
27276 msgid "Since 1.0.63, use L</file> instead which can now process compressed files."
27277 msgstr ""
27278
27279 #. type: =head2
27280 #: ../fish/guestfish-actions.pod:5007
27281 msgid "zgrep"
27282 msgstr ""
27283
27284 #. type: verbatim
27285 #: ../fish/guestfish-actions.pod:5009
27286 #, no-wrap
27287 msgid ""
27288 " zgrep regex path\n"
27289 "\n"
27290 msgstr ""
27291
27292 #. type: =head2
27293 #: ../fish/guestfish-actions.pod:5017
27294 msgid "zgrepi"
27295 msgstr ""
27296
27297 #. type: verbatim
27298 #: ../fish/guestfish-actions.pod:5019
27299 #, no-wrap
27300 msgid ""
27301 " zgrepi regex path\n"
27302 "\n"
27303 msgstr ""
27304
27305 #. type: =head2
27306 #: ../fish/guestfish-commands.pod:1
27307 msgid "alloc"
27308 msgstr ""
27309
27310 #. type: =head2
27311 #: ../fish/guestfish-commands.pod:3
27312 msgid "allocate"
27313 msgstr ""
27314
27315 #. type: verbatim
27316 #: ../fish/guestfish-commands.pod:5
27317 #, no-wrap
27318 msgid ""
27319 " alloc filename size\n"
27320 "\n"
27321 msgstr ""
27322
27323 #. type: textblock
27324 #: ../fish/guestfish-commands.pod:7
27325 msgid ""
27326 "This creates an empty (zeroed) file of the given size, and then adds so it "
27327 "can be further examined."
27328 msgstr ""
27329
27330 #. type: textblock
27331 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
27332 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
27333 msgstr ""
27334
27335 #. type: textblock
27336 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
27337 msgid "Size can be specified using standard suffixes, eg. C<1M>."
27338 msgstr ""
27339
27340 #. type: textblock
27341 #: ../fish/guestfish-commands.pod:14
27342 msgid ""
27343 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
27344 "image, see L</PREPARED DISK IMAGES>."
27345 msgstr ""
27346
27347 #. type: =head2
27348 #: ../fish/guestfish-commands.pod:17
27349 msgid "copy-in"
27350 msgstr ""
27351
27352 #. type: verbatim
27353 #: ../fish/guestfish-commands.pod:19
27354 #, no-wrap
27355 msgid ""
27356 " copy-in local [local ...] /remotedir\n"
27357 "\n"
27358 msgstr ""
27359
27360 #. type: textblock
27361 #: ../fish/guestfish-commands.pod:21
27362 msgid ""
27363 "C<copy-in> copies local files or directories recursively into the disk "
27364 "image, placing them in the directory called C</remotedir> (which must "
27365 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
27366 "other commands as necessary."
27367 msgstr ""
27368
27369 #. type: textblock
27370 #: ../fish/guestfish-commands.pod:26
27371 msgid ""
27372 "Multiple local files and directories can be specified, but the last "
27373 "parameter must always be a remote directory.  Wildcards cannot be used."
27374 msgstr ""
27375
27376 #. type: =head2
27377 #: ../fish/guestfish-commands.pod:30
27378 msgid "copy-out"
27379 msgstr ""
27380
27381 #. type: verbatim
27382 #: ../fish/guestfish-commands.pod:32
27383 #, no-wrap
27384 msgid ""
27385 " copy-out remote [remote ...] localdir\n"
27386 "\n"
27387 msgstr ""
27388
27389 #. type: textblock
27390 #: ../fish/guestfish-commands.pod:34
27391 msgid ""
27392 "C<copy-out> copies remote files or directories recursively out of the disk "
27393 "image, placing them on the host disk in a local directory called C<localdir> "
27394 "(which must exist).  This guestfish meta-command turns into a sequence of "
27395 "L</download>, L</tar-out> and other commands as necessary."
27396 msgstr ""
27397
27398 #. type: textblock
27399 #: ../fish/guestfish-commands.pod:40
27400 msgid ""
27401 "Multiple remote files and directories can be specified, but the last "
27402 "parameter must always be a local directory.  To download to the current "
27403 "directory, use C<.> as in:"
27404 msgstr ""
27405
27406 #. type: verbatim
27407 #: ../fish/guestfish-commands.pod:44
27408 #, no-wrap
27409 msgid ""
27410 " copy-out /home .\n"
27411 "\n"
27412 msgstr ""
27413
27414 #. type: textblock
27415 #: ../fish/guestfish-commands.pod:46
27416 msgid ""
27417 "Wildcards cannot be used in the ordinary command, but you can use them with "
27418 "the help of L</glob> like this:"
27419 msgstr ""
27420
27421 #. type: verbatim
27422 #: ../fish/guestfish-commands.pod:49
27423 #, no-wrap
27424 msgid ""
27425 " glob copy-out /home/* .\n"
27426 "\n"
27427 msgstr ""
27428
27429 #. type: =head2
27430 #: ../fish/guestfish-commands.pod:51
27431 msgid "echo"
27432 msgstr ""
27433
27434 #. type: verbatim
27435 #: ../fish/guestfish-commands.pod:53
27436 #, no-wrap
27437 msgid ""
27438 " echo [params ...]\n"
27439 "\n"
27440 msgstr ""
27441
27442 #. type: textblock
27443 #: ../fish/guestfish-commands.pod:55
27444 msgid "This echos the parameters to the terminal."
27445 msgstr ""
27446
27447 #. type: =head2
27448 #: ../fish/guestfish-commands.pod:57
27449 msgid "edit"
27450 msgstr ""
27451
27452 #. type: =head2
27453 #: ../fish/guestfish-commands.pod:59
27454 msgid "vi"
27455 msgstr ""
27456
27457 #. type: =head2
27458 #: ../fish/guestfish-commands.pod:61
27459 msgid "emacs"
27460 msgstr ""
27461
27462 #. type: verbatim
27463 #: ../fish/guestfish-commands.pod:63
27464 #, no-wrap
27465 msgid ""
27466 " edit filename\n"
27467 "\n"
27468 msgstr ""
27469
27470 #. type: textblock
27471 #: ../fish/guestfish-commands.pod:65
27472 msgid ""
27473 "This is used to edit a file.  It downloads the file, edits it locally using "
27474 "your editor, then uploads the result."
27475 msgstr ""
27476
27477 #. type: textblock
27478 #: ../fish/guestfish-commands.pod:68
27479 msgid ""
27480 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
27481 "or C<emacs> you will get those corresponding editors."
27482 msgstr ""
27483
27484 #. type: =head2
27485 #: ../fish/guestfish-commands.pod:72
27486 msgid "glob"
27487 msgstr ""
27488
27489 #. type: verbatim
27490 #: ../fish/guestfish-commands.pod:74
27491 #, no-wrap
27492 msgid ""
27493 " glob command args...\n"
27494 "\n"
27495 msgstr ""
27496
27497 #. type: textblock
27498 #: ../fish/guestfish-commands.pod:76
27499 msgid ""
27500 "Expand wildcards in any paths in the args list, and run C<command> "
27501 "repeatedly on each matching path."
27502 msgstr ""
27503
27504 #. type: textblock
27505 #: ../fish/guestfish-commands.pod:79
27506 msgid "See L</WILDCARDS AND GLOBBING>."
27507 msgstr ""
27508
27509 #. type: =head2
27510 #: ../fish/guestfish-commands.pod:81
27511 msgid "hexedit"
27512 msgstr ""
27513
27514 #. type: verbatim
27515 #: ../fish/guestfish-commands.pod:83
27516 #, no-wrap
27517 msgid ""
27518 " hexedit <filename|device>\n"
27519 " hexedit <filename|device> <max>\n"
27520 " hexedit <filename|device> <start> <max>\n"
27521 "\n"
27522 msgstr ""
27523
27524 #. type: textblock
27525 #: ../fish/guestfish-commands.pod:87
27526 msgid ""
27527 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
27528 "device."
27529 msgstr ""
27530
27531 #. type: textblock
27532 #: ../fish/guestfish-commands.pod:90
27533 msgid ""
27534 "This command works by downloading potentially the whole file or device, "
27535 "editing it locally, then uploading it.  If the file or device is large, you "
27536 "have to specify which part you wish to edit by using C<max> and/or C<start> "
27537 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
27538 "usual modifiers allowed such as C<1M> (1 megabyte)."
27539 msgstr ""
27540
27541 #. type: textblock
27542 #: ../fish/guestfish-commands.pod:97
27543 msgid "For example to edit the first few sectors of a disk you might do:"
27544 msgstr ""
27545
27546 #. type: verbatim
27547 #: ../fish/guestfish-commands.pod:100
27548 #, no-wrap
27549 msgid ""
27550 " hexedit /dev/sda 1M\n"
27551 "\n"
27552 msgstr ""
27553
27554 #. type: textblock
27555 #: ../fish/guestfish-commands.pod:102
27556 msgid ""
27557 "which would allow you to edit anywhere within the first megabyte of the "
27558 "disk."
27559 msgstr ""
27560
27561 #. type: textblock
27562 #: ../fish/guestfish-commands.pod:105
27563 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
27564 msgstr ""
27565
27566 #. type: verbatim
27567 #: ../fish/guestfish-commands.pod:107
27568 #, no-wrap
27569 msgid ""
27570 " hexedit /dev/sda1 0x400 0x400\n"
27571 "\n"
27572 msgstr ""
27573
27574 #. type: textblock
27575 #: ../fish/guestfish-commands.pod:109
27576 msgid "(assuming the superblock is in the standard location)."
27577 msgstr ""
27578
27579 #. type: textblock
27580 #: ../fish/guestfish-commands.pod:111
27581 msgid ""
27582 "This command requires the external L<hexedit(1)> program.  You can specify "
27583 "another program to use by setting the C<HEXEDITOR> environment variable."
27584 msgstr ""
27585
27586 #. type: textblock
27587 #: ../fish/guestfish-commands.pod:115
27588 msgid "See also L</hexdump>."
27589 msgstr ""
27590
27591 #. type: =head2
27592 #: ../fish/guestfish-commands.pod:117
27593 msgid "lcd"
27594 msgstr ""
27595
27596 #. type: verbatim
27597 #: ../fish/guestfish-commands.pod:119
27598 #, no-wrap
27599 msgid ""
27600 " lcd directory\n"
27601 "\n"
27602 msgstr ""
27603
27604 #. type: textblock
27605 #: ../fish/guestfish-commands.pod:121
27606 msgid "Change the local directory, ie. the current directory of guestfish itself."
27607 msgstr ""
27608
27609 #. type: textblock
27610 #: ../fish/guestfish-commands.pod:124
27611 msgid "Note that C<!cd> won't do what you might expect."
27612 msgstr ""
27613
27614 #. type: =head2
27615 #: ../fish/guestfish-commands.pod:126
27616 msgid "man"
27617 msgstr ""
27618
27619 #. type: =head2
27620 #: ../fish/guestfish-commands.pod:128
27621 msgid "manual"
27622 msgstr ""
27623
27624 #. type: verbatim
27625 #: ../fish/guestfish-commands.pod:130
27626 #, no-wrap
27627 msgid ""
27628 "  man\n"
27629 "\n"
27630 msgstr ""
27631
27632 #. type: textblock
27633 #: ../fish/guestfish-commands.pod:132
27634 msgid "Opens the manual page for guestfish."
27635 msgstr ""
27636
27637 #. type: =head2
27638 #: ../fish/guestfish-commands.pod:134
27639 msgid "more"
27640 msgstr ""
27641
27642 #. type: =head2
27643 #: ../fish/guestfish-commands.pod:136
27644 msgid "less"
27645 msgstr ""
27646
27647 #. type: verbatim
27648 #: ../fish/guestfish-commands.pod:138
27649 #, no-wrap
27650 msgid ""
27651 " more filename\n"
27652 "\n"
27653 msgstr ""
27654
27655 #. type: verbatim
27656 #: ../fish/guestfish-commands.pod:140
27657 #, no-wrap
27658 msgid ""
27659 " less filename\n"
27660 "\n"
27661 msgstr ""
27662
27663 #. type: textblock
27664 #: ../fish/guestfish-commands.pod:142
27665 msgid "This is used to view a file."
27666 msgstr ""
27667
27668 #. type: textblock
27669 #: ../fish/guestfish-commands.pod:144
27670 msgid ""
27671 "The default viewer is C<$PAGER>.  However if you use the alternate command "
27672 "C<less> you will get the C<less> command specifically."
27673 msgstr ""
27674
27675 #. type: =head2
27676 #: ../fish/guestfish-commands.pod:147
27677 msgid "reopen"
27678 msgstr ""
27679
27680 #. type: verbatim
27681 #: ../fish/guestfish-commands.pod:149
27682 #, no-wrap
27683 msgid ""
27684 "  reopen\n"
27685 "\n"
27686 msgstr ""
27687
27688 #. type: textblock
27689 #: ../fish/guestfish-commands.pod:151
27690 msgid ""
27691 "Close and reopen the libguestfs handle.  It is not necessary to use this "
27692 "normally, because the handle is closed properly when guestfish exits.  "
27693 "However this is occasionally useful for testing."
27694 msgstr ""
27695
27696 #. type: =head2
27697 #: ../fish/guestfish-commands.pod:155
27698 msgid "sparse"
27699 msgstr ""
27700
27701 #. type: verbatim
27702 #: ../fish/guestfish-commands.pod:157
27703 #, no-wrap
27704 msgid ""
27705 " sparse filename size\n"
27706 "\n"
27707 msgstr ""
27708
27709 #. type: textblock
27710 #: ../fish/guestfish-commands.pod:159
27711 msgid ""
27712 "This creates an empty sparse file of the given size, and then adds so it can "
27713 "be further examined."
27714 msgstr ""
27715
27716 #. type: textblock
27717 #: ../fish/guestfish-commands.pod:162
27718 msgid ""
27719 "In all respects it works the same as the L</alloc> command, except that the "
27720 "image file is allocated sparsely, which means that disk blocks are not "
27721 "assigned to the file until they are needed.  Sparse disk files only use "
27722 "space when written to, but they are slower and there is a danger you could "
27723 "run out of real disk space during a write operation."
27724 msgstr ""
27725
27726 #. type: =head2
27727 #: ../fish/guestfish-commands.pod:172
27728 msgid "supported"
27729 msgstr ""
27730
27731 #. type: verbatim
27732 #: ../fish/guestfish-commands.pod:174
27733 #, no-wrap
27734 msgid ""
27735 " supported\n"
27736 "\n"
27737 msgstr ""
27738
27739 #. type: textblock
27740 #: ../fish/guestfish-commands.pod:176
27741 msgid ""
27742 "This command returns a list of the optional groups known to the daemon, and "
27743 "indicates which ones are supported by this build of the libguestfs "
27744 "appliance."
27745 msgstr ""
27746
27747 #. type: textblock
27748 #: ../fish/guestfish-commands.pod:180
27749 msgid "See also L<guestfs(3)/AVAILABILITY>."
27750 msgstr ""
27751
27752 #. type: =head2
27753 #: ../fish/guestfish-commands.pod:182
27754 msgid "time"
27755 msgstr ""
27756
27757 #. type: verbatim
27758 #: ../fish/guestfish-commands.pod:184
27759 #, no-wrap
27760 msgid ""
27761 " time command args...\n"
27762 "\n"
27763 msgstr ""
27764
27765 #. type: textblock
27766 #: ../fish/guestfish-commands.pod:186
27767 msgid ""
27768 "Run the command as usual, but print the elapsed time afterwards.  This can "
27769 "be useful for benchmarking operations."
27770 msgstr ""
27771
27772 #. type: textblock
27773 #: ../test-tool/libguestfs-test-tool.pod:5
27774 msgid "libguestfs-test-tool - End user tests for libguestfs"
27775 msgstr ""
27776
27777 #. type: verbatim
27778 #: ../test-tool/libguestfs-test-tool.pod:9
27779 #, no-wrap
27780 msgid ""
27781 " libguestfs-test-tool [--options]\n"
27782 "\n"
27783 msgstr ""
27784
27785 #. type: textblock
27786 #: ../test-tool/libguestfs-test-tool.pod:13
27787 msgid ""
27788 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
27789 "and developers, to allow them to check basic libguestfs functionality is "
27790 "working.  This is needed because libguestfs occasionally breaks for reasons "
27791 "beyond our control: usually because of changes in the underlying qemu or "
27792 "kernel packages, or the host environment."
27793 msgstr ""
27794
27795 #. type: textblock
27796 #: ../test-tool/libguestfs-test-tool.pod:20
27797 msgid "If you suspect a problem in libguestfs, then just run:"
27798 msgstr ""
27799
27800 #. type: verbatim
27801 #: ../test-tool/libguestfs-test-tool.pod:22
27802 #, no-wrap
27803 msgid ""
27804 " libguestfs-test-tool\n"
27805 "\n"
27806 msgstr ""
27807
27808 #. type: textblock
27809 #: ../test-tool/libguestfs-test-tool.pod:24
27810 msgid "It will print lots of diagnostic messages."
27811 msgstr ""
27812
27813 #. type: textblock
27814 #: ../test-tool/libguestfs-test-tool.pod:26
27815 msgid "If it runs to completion successfully, you will see this near the end:"
27816 msgstr ""
27817
27818 #. type: verbatim
27819 #: ../test-tool/libguestfs-test-tool.pod:28
27820 #, no-wrap
27821 msgid ""
27822 " ===== TEST FINISHED OK =====\n"
27823 "\n"
27824 msgstr ""
27825
27826 #. type: textblock
27827 #: ../test-tool/libguestfs-test-tool.pod:30
27828 msgid "and the test tool will exit with code 0."
27829 msgstr ""
27830
27831 #. type: textblock
27832 #: ../test-tool/libguestfs-test-tool.pod:32
27833 msgid ""
27834 "If it fails (and/or exits with non-zero error code), please paste the "
27835 "B<complete, unedited> output of the test tool into a bug report.  More "
27836 "information about reporting bugs can be found on the "
27837 "L<http://libguestfs.org/> website."
27838 msgstr ""
27839
27840 #. type: =item
27841 #: ../test-tool/libguestfs-test-tool.pod:41
27842 msgid "I<--help>"
27843 msgstr ""
27844
27845 #. type: textblock
27846 #: ../test-tool/libguestfs-test-tool.pod:43
27847 msgid "Display short usage information and exit."
27848 msgstr ""
27849
27850 #. type: =item
27851 #: ../test-tool/libguestfs-test-tool.pod:45
27852 msgid "I<--qemu qemu_binary>"
27853 msgstr ""
27854
27855 #. type: textblock
27856 #: ../test-tool/libguestfs-test-tool.pod:47
27857 msgid ""
27858 "If you have downloaded another qemu binary, point this option at the full "
27859 "path of the binary to try it."
27860 msgstr ""
27861
27862 #. type: =item
27863 #: ../test-tool/libguestfs-test-tool.pod:50
27864 msgid "I<--qemudir qemu_source_dir>"
27865 msgstr ""
27866
27867 #. type: textblock
27868 #: ../test-tool/libguestfs-test-tool.pod:52
27869 msgid ""
27870 "If you have compiled qemu from source, point this option at the source "
27871 "directory to try it."
27872 msgstr ""
27873
27874 #. type: =item
27875 #: ../test-tool/libguestfs-test-tool.pod:55
27876 msgid "I<--timeout N>"
27877 msgstr ""
27878
27879 #. type: textblock
27880 #: ../test-tool/libguestfs-test-tool.pod:57
27881 msgid ""
27882 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
27883 "does not usually need to be adjusted unless your machine is very slow."
27884 msgstr ""
27885
27886 #. type: =head1
27887 #: ../test-tool/libguestfs-test-tool.pod:63
27888 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
27889 msgstr ""
27890
27891 #. type: textblock
27892 #: ../test-tool/libguestfs-test-tool.pod:65
27893 msgid ""
27894 "If you have compiled another version of qemu from source and would like to "
27895 "try that, then you can use the I<--qemudir> option to point to the qemu "
27896 "source directory."
27897 msgstr ""
27898
27899 #. type: textblock
27900 #: ../test-tool/libguestfs-test-tool.pod:69
27901 msgid ""
27902 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
27903 "option to point to the binary."
27904 msgstr ""
27905
27906 #. type: textblock
27907 #: ../test-tool/libguestfs-test-tool.pod:72
27908 msgid ""
27909 "When using an alternate qemu with libguestfs, usually you would need to "
27910 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in "
27911 "L<guestfs(3)>).  libguestfs-test-tool writes a temporary qemu wrapper script "
27912 "when you use either of the I<--qemudir> or I<--qemu> options."
27913 msgstr ""
27914
27915 #. type: textblock
27916 #: ../test-tool/libguestfs-test-tool.pod:79
27917 msgid ""
27918 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
27919 "I<1> if there was an error."
27920 msgstr ""
27921
27922 #. type: textblock
27923 #: ../test-tool/libguestfs-test-tool.pod:84
27924 msgid ""
27925 "For the full list of environment variables which may affect libguestfs, "
27926 "please see the L<guestfs(3)> manual page."
27927 msgstr ""
27928
27929 #. type: textblock
27930 #: ../test-tool/libguestfs-test-tool.pod:89
27931 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
27932 msgstr ""
27933
27934 #. type: textblock
27935 #: ../fuse/guestmount.pod:5
27936 msgid "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
27937 msgstr ""
27938
27939 #. type: verbatim
27940 #: ../fuse/guestmount.pod:9
27941 #, no-wrap
27942 msgid ""
27943 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
27944 "\n"
27945 msgstr ""
27946
27947 #. type: verbatim
27948 #: ../fuse/guestmount.pod:11
27949 #, no-wrap
27950 msgid ""
27951 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
27952 "\n"
27953 msgstr ""
27954
27955 #. type: verbatim
27956 #: ../fuse/guestmount.pod:13
27957 #, no-wrap
27958 msgid ""
27959 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
27960 "\n"
27961 msgstr ""
27962
27963 #. type: textblock
27964 #: ../fuse/guestmount.pod:17
27965 msgid ""
27966 "You must I<not> use C<guestmount> in read-write mode on live virtual "
27967 "machines.  If you do this, you risk disk corruption in the VM."
27968 msgstr ""
27969
27970 #. type: textblock
27971 #: ../fuse/guestmount.pod:22
27972 msgid ""
27973 "The guestmount program can be used to mount virtual machine filesystems and "
27974 "other disk images on the host.  It uses libguestfs for access to the guest "
27975 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
27976 "a mountable device."
27977 msgstr ""
27978
27979 #. type: textblock
27980 #: ../fuse/guestmount.pod:27
27981 msgid ""
27982 "Along with other options, you have to give at least one device (I<-a> "
27983 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
27984 "option) or use the I<-i> inspection option.  How this works is better "
27985 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
27986 "below."
27987 msgstr ""
27988
27989 #. type: textblock
27990 #: ../fuse/guestmount.pod:33
27991 msgid ""
27992 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
27993 "by you, and the filesystem will not be visible to any other users unless you "
27994 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
27995 "the filesystem, use the C<fusermount -u> command."
27996 msgstr ""
27997
27998 #. type: textblock
27999 #: ../fuse/guestmount.pod:41
28000 msgid ""
28001 "For a typical Windows guest which has its main filesystem on the first "
28002 "partition:"
28003 msgstr ""
28004
28005 #. type: verbatim
28006 #: ../fuse/guestmount.pod:44
28007 #, no-wrap
28008 msgid ""
28009 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
28010 "\n"
28011 msgstr ""
28012
28013 #. type: textblock
28014 #: ../fuse/guestmount.pod:46
28015 msgid ""
28016 "For a typical Linux guest which has a /boot filesystem on the first "
28017 "partition, and the root filesystem on a logical volume:"
28018 msgstr ""
28019
28020 #. type: verbatim
28021 #: ../fuse/guestmount.pod:49
28022 #, no-wrap
28023 msgid ""
28024 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
28025 "\n"
28026 msgstr ""
28027
28028 #. type: textblock
28029 #: ../fuse/guestmount.pod:51
28030 msgid "To get libguestfs to detect guest mountpoints for you:"
28031 msgstr ""
28032
28033 #. type: verbatim
28034 #: ../fuse/guestmount.pod:53
28035 #, no-wrap
28036 msgid ""
28037 " guestmount -a guest.img -i --ro /mnt\n"
28038 "\n"
28039 msgstr ""
28040
28041 #. type: textblock
28042 #: ../fuse/guestmount.pod:55
28043 msgid "For a libvirt guest called \"Guest\" you could do:"
28044 msgstr ""
28045
28046 #. type: verbatim
28047 #: ../fuse/guestmount.pod:57
28048 #, no-wrap
28049 msgid ""
28050 " guestmount -d Guest -i --ro /mnt\n"
28051 "\n"
28052 msgstr ""
28053
28054 #. type: textblock
28055 #: ../fuse/guestmount.pod:59
28056 msgid ""
28057 "If you don't know what filesystems are contained in a guest or disk image, "
28058 "use L<virt-filesystems(1)> first:"
28059 msgstr ""
28060
28061 #. type: verbatim
28062 #: ../fuse/guestmount.pod:62
28063 #, no-wrap
28064 msgid ""
28065 " virt-filesystems MyGuest\n"
28066 "\n"
28067 msgstr ""
28068
28069 #. type: textblock
28070 #: ../fuse/guestmount.pod:64
28071 msgid ""
28072 "If you want to trace the libguestfs calls but without excessive debugging "
28073 "information, we recommend:"
28074 msgstr ""
28075
28076 #. type: verbatim
28077 #: ../fuse/guestmount.pod:67
28078 #, no-wrap
28079 msgid ""
28080 " guestmount [...] --trace /mnt\n"
28081 "\n"
28082 msgstr ""
28083
28084 #. type: textblock
28085 #: ../fuse/guestmount.pod:69
28086 msgid "If you want to debug the program, we recommend:"
28087 msgstr ""
28088
28089 #. type: verbatim
28090 #: ../fuse/guestmount.pod:71
28091 #, no-wrap
28092 msgid ""
28093 " guestmount [...] --trace --verbose /mnt\n"
28094 "\n"
28095 msgstr ""
28096
28097 #. type: =item
28098 #: ../fuse/guestmount.pod:77
28099 msgid "B<-a image> | B<--add image>"
28100 msgstr ""
28101
28102 #. type: textblock
28103 #: ../fuse/guestmount.pod:79
28104 msgid "Add a block device or virtual machine image."
28105 msgstr ""
28106
28107 #. type: =item
28108 #: ../fuse/guestmount.pod:84
28109 msgid "B<-c URI> | B<--connect URI>"
28110 msgstr ""
28111
28112 #. type: =item
28113 #: ../fuse/guestmount.pod:90
28114 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
28115 msgstr ""
28116
28117 #. type: =item
28118 #: ../fuse/guestmount.pod:98
28119 msgid "B<--dir-cache-timeout N>"
28120 msgstr ""
28121
28122 #. type: textblock
28123 #: ../fuse/guestmount.pod:100
28124 msgid ""
28125 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
28126 "seconds.  The readdir cache [actually, there are several semi-independent "
28127 "caches] is populated after a readdir(2) call with the stat and extended "
28128 "attributes of the files in the directory, in anticipation that they will be "
28129 "requested soon after."
28130 msgstr ""
28131
28132 #. type: textblock
28133 #: ../fuse/guestmount.pod:106
28134 msgid ""
28135 "There is also a different attribute cache implemented by FUSE (see the FUSE "
28136 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
28137 "requests, only cache existing ones."
28138 msgstr ""
28139
28140 #. type: =item
28141 #: ../fuse/guestmount.pod:117
28142 msgid "B<--format=raw|qcow2|..> | B<--format>"
28143 msgstr ""
28144
28145 #. type: textblock
28146 #: ../fuse/guestmount.pod:124
28147 msgid ""
28148 "If you have untrusted raw-format guest disk images, you should use this "
28149 "option to specify the disk format.  This avoids a possible security problem "
28150 "with malicious guests (CVE-2010-3851).  See also "
28151 "L<guestfs(3)/guestfs_add_drive_opts>."
28152 msgstr ""
28153
28154 #. type: =item
28155 #: ../fuse/guestmount.pod:129
28156 msgid "B<--fuse-help>"
28157 msgstr ""
28158
28159 #. type: textblock
28160 #: ../fuse/guestmount.pod:131
28161 msgid "Display help on special FUSE options (see I<-o> below)."
28162 msgstr ""
28163
28164 #. type: textblock
28165 #: ../fuse/guestmount.pod:135
28166 msgid "Display brief help and exit."
28167 msgstr ""
28168
28169 #. type: =item
28170 #: ../fuse/guestmount.pod:137
28171 msgid "B<-i> | B<--inspector>"
28172 msgstr ""
28173
28174 #. type: textblock
28175 #: ../fuse/guestmount.pod:157
28176 msgid ""
28177 "Mount the named partition or logical volume on the given mountpoint B<in the "
28178 "guest> (this has nothing to do with mountpoints in the host)."
28179 msgstr ""
28180
28181 #. type: textblock
28182 #: ../fuse/guestmount.pod:160
28183 msgid ""
28184 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
28185 "something on C</>."
28186 msgstr ""
28187
28188 #. type: =item
28189 #: ../fuse/guestmount.pod:173
28190 msgid "B<-n> | B<--no-sync>"
28191 msgstr ""
28192
28193 #. type: textblock
28194 #: ../fuse/guestmount.pod:175
28195 msgid ""
28196 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
28197 "unmounted.  If you specify this option, then we don't attempt to sync the "
28198 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
28199 msgstr ""
28200
28201 #. type: =item
28202 #: ../fuse/guestmount.pod:180
28203 msgid "B<-o option> | B<--option option>"
28204 msgstr ""
28205
28206 #. type: textblock
28207 #: ../fuse/guestmount.pod:182
28208 msgid "Pass extra options to FUSE."
28209 msgstr ""
28210
28211 #. type: textblock
28212 #: ../fuse/guestmount.pod:184
28213 msgid ""
28214 "To get a list of all the extra options supported by FUSE, use the command "
28215 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
28216 "of them are a good idea."
28217 msgstr ""
28218
28219 #. type: verbatim
28220 #: ../fuse/guestmount.pod:188
28221 #, no-wrap
28222 msgid ""
28223 " guestmount --fuse-help\n"
28224 "\n"
28225 msgstr ""
28226
28227 #. type: textblock
28228 #: ../fuse/guestmount.pod:190
28229 msgid "Some potentially useful FUSE options:"
28230 msgstr ""
28231
28232 #. type: =item
28233 #: ../fuse/guestmount.pod:194
28234 msgid "B<-o allow_other>"
28235 msgstr ""
28236
28237 #. type: textblock
28238 #: ../fuse/guestmount.pod:196
28239 msgid "Allow other users to see the filesystem."
28240 msgstr ""
28241
28242 #. type: =item
28243 #: ../fuse/guestmount.pod:198
28244 msgid "B<-o attr_timeout=N>"
28245 msgstr ""
28246
28247 #. type: textblock
28248 #: ../fuse/guestmount.pod:200
28249 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
28250 msgstr ""
28251
28252 #. type: =item
28253 #: ../fuse/guestmount.pod:202
28254 msgid "B<-o kernel_cache>"
28255 msgstr ""
28256
28257 #. type: textblock
28258 #: ../fuse/guestmount.pod:204
28259 msgid ""
28260 "Allow the kernel to cache files (reduces the number of reads that have to go "
28261 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
28262 "afford the extra memory usage."
28263 msgstr ""
28264
28265 #. type: =item
28266 #: ../fuse/guestmount.pod:208
28267 msgid "B<-o uid=N> B<-o gid=N>"
28268 msgstr ""
28269
28270 #. type: textblock
28271 #: ../fuse/guestmount.pod:210
28272 msgid ""
28273 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
28274 "the chosen values."
28275 msgstr ""
28276
28277 #. type: =item
28278 #: ../fuse/guestmount.pod:215
28279 msgid "B<-r> | B<--ro>"
28280 msgstr ""
28281
28282 #. type: textblock
28283 #: ../fuse/guestmount.pod:217
28284 msgid ""
28285 "Add devices and mount everything read-only.  Also disallow writes and make "
28286 "the disk appear read-only to FUSE."
28287 msgstr ""
28288
28289 #. type: textblock
28290 #: ../fuse/guestmount.pod:220
28291 msgid ""
28292 "This is highly recommended if you are not going to edit the guest disk.  If "
28293 "the guest is running and this option is I<not> supplied, then there is a "
28294 "strong risk of disk corruption in the guest.  We try to prevent this from "
28295 "happening, but it is not always possible."
28296 msgstr ""
28297
28298 #. type: textblock
28299 #: ../fuse/guestmount.pod:225
28300 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28301 msgstr ""
28302
28303 #. type: textblock
28304 #: ../fuse/guestmount.pod:229
28305 msgid "Enable SELinux support for the guest."
28306 msgstr ""
28307
28308 #. type: =item
28309 #: ../fuse/guestmount.pod:231
28310 msgid "B<-v> | B<--verbose>"
28311 msgstr ""
28312
28313 #. type: textblock
28314 #: ../fuse/guestmount.pod:233
28315 msgid "Enable verbose messages from underlying libguestfs."
28316 msgstr ""
28317
28318 #. type: =item
28319 #: ../fuse/guestmount.pod:235
28320 msgid "B<-V> | B<--version>"
28321 msgstr ""
28322
28323 #. type: textblock
28324 #: ../fuse/guestmount.pod:237
28325 msgid "Display the program version and exit."
28326 msgstr ""
28327
28328 #. type: =item
28329 #: ../fuse/guestmount.pod:239
28330 msgid "B<-w> | B<--rw>"
28331 msgstr ""
28332
28333 #. type: textblock
28334 #: ../fuse/guestmount.pod:244 ../fuse/guestmount.pod:265
28335 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28336 msgstr ""
28337
28338 #. type: =item
28339 #: ../fuse/guestmount.pod:246
28340 msgid "B<-x> | B<--trace>"
28341 msgstr ""
28342
28343 #. type: textblock
28344 #: ../fuse/guestmount.pod:248
28345 msgid "Trace libguestfs calls and entry into each FUSE function."
28346 msgstr ""
28347
28348 #. type: textblock
28349 #: ../fuse/guestmount.pod:250
28350 msgid "This also stops the daemon from forking into the background."
28351 msgstr ""
28352
28353 #. type: textblock
28354 #: ../fuse/guestmount.pod:271
28355 msgid ""
28356 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
28357 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, "
28358 "L<http://fuse.sf.net/>."
28359 msgstr ""
28360
28361 #. type: textblock
28362 #: ../fuse/guestmount.pod:286
28363 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
28364 msgstr ""
28365
28366 #. type: textblock
28367 #: ../tools/virt-win-reg.pl:37
28368 msgid ""
28369 "virt-win-reg - Export and merge Windows Registry entries from a Windows "
28370 "guest"
28371 msgstr ""
28372
28373 #. type: verbatim
28374 #: ../tools/virt-win-reg.pl:41
28375 #, no-wrap
28376 msgid ""
28377 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
28378 "\n"
28379 msgstr ""
28380
28381 #. type: verbatim
28382 #: ../tools/virt-win-reg.pl:43
28383 #, no-wrap
28384 msgid ""
28385 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
28386 "\n"
28387 msgstr ""
28388
28389 #. type: verbatim
28390 #: ../tools/virt-win-reg.pl:45
28391 #, no-wrap
28392 msgid ""
28393 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
28394 "\n"
28395 msgstr ""
28396
28397 #. type: verbatim
28398 #: ../tools/virt-win-reg.pl:47
28399 #, no-wrap
28400 msgid ""
28401 " virt-win-reg --merge domname [input.reg ...]\n"
28402 "\n"
28403 msgstr ""
28404
28405 #. type: verbatim
28406 #: ../tools/virt-win-reg.pl:49
28407 #, no-wrap
28408 msgid ""
28409 " virt-win-reg [--options] disk.img ... # instead of domname\n"
28410 "\n"
28411 msgstr ""
28412
28413 #. type: textblock
28414 #: ../tools/virt-win-reg.pl:53
28415 msgid ""
28416 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
28417 "virtual machines.  If you do this, you I<will> get irreversible disk "
28418 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
28419 "but doesn't catch all cases."
28420 msgstr ""
28421
28422 #. type: textblock
28423 #: ../tools/virt-win-reg.pl:58
28424 msgid ""
28425 "Modifying the Windows Registry is an inherently risky operation.  The format "
28426 "is deliberately obscure and undocumented, and Registry changes can leave the "
28427 "system unbootable.  Therefore when using the I<--merge> option, make sure "
28428 "you have a reliable backup first."
28429 msgstr ""
28430
28431 #. type: textblock
28432 #: ../tools/virt-win-reg.pl:65
28433 msgid ""
28434 "This program can export and merge Windows Registry entries from a Windows "
28435 "guest."
28436 msgstr ""
28437
28438 #. type: textblock
28439 #: ../tools/virt-win-reg.pl:68
28440 msgid ""
28441 "The first parameter is the libvirt guest name or the raw disk image of a "
28442 "Windows guest."
28443 msgstr ""
28444
28445 #. type: textblock
28446 #: ../tools/virt-win-reg.pl:71
28447 msgid ""
28448 "If I<--merge> is I<not> specified, then the chosen registry key is "
28449 "displayed/exported (recursively).  For example:"
28450 msgstr ""
28451
28452 #. type: verbatim
28453 #: ../tools/virt-win-reg.pl:74
28454 #, no-wrap
28455 msgid ""
28456 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
28457 "\n"
28458 msgstr ""
28459
28460 #. type: textblock
28461 #: ../tools/virt-win-reg.pl:76
28462 msgid "You can also display single values from within registry keys, for example:"
28463 msgstr ""
28464
28465 #. type: verbatim
28466 #: ../tools/virt-win-reg.pl:79
28467 #, no-wrap
28468 msgid ""
28469 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
28470 " $ virt-win-reg Windows7 $cvkey ProductName\n"
28471 " Windows 7 Enterprise\n"
28472 "\n"
28473 msgstr ""
28474
28475 #. type: textblock
28476 #: ../tools/virt-win-reg.pl:83
28477 msgid ""
28478 "With I<--merge>, you can merge a textual regedit file into the Windows "
28479 "Registry:"
28480 msgstr ""
28481
28482 #. type: verbatim
28483 #: ../tools/virt-win-reg.pl:86
28484 #, no-wrap
28485 msgid ""
28486 " $ virt-win-reg --merge Windows7 changes.reg\n"
28487 "\n"
28488 msgstr ""
28489
28490 #. type: =head1
28491 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
28492 msgid "NOTE"
28493 msgstr ""
28494
28495 #. type: textblock
28496 #: ../tools/virt-win-reg.pl:90
28497 msgid ""
28498 "This program is only meant for simple access to the registry.  If you want "
28499 "to do complicated things with the registry, we suggest you download the "
28500 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
28501 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
28502 "L<hivexregedit(1)>."
28503 msgstr ""
28504
28505 #. type: textblock
28506 #: ../tools/virt-win-reg.pl:106 ../tools/virt-list-filesystems.pl:63 ../tools/virt-tar.pl:113 ../tools/virt-make-fs.pl:163 ../tools/virt-list-partitions.pl:64
28507 msgid "Display brief help."
28508 msgstr ""
28509
28510 #. type: textblock
28511 #: ../tools/virt-win-reg.pl:114 ../tools/virt-list-filesystems.pl:71 ../tools/virt-tar.pl:121 ../tools/virt-make-fs.pl:171 ../tools/virt-list-partitions.pl:72
28512 msgid "Display version number and exit."
28513 msgstr ""
28514
28515 #. type: =item
28516 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
28517 msgid "B<--debug>"
28518 msgstr ""
28519
28520 #. type: textblock
28521 #: ../tools/virt-win-reg.pl:122
28522 msgid "Enable debugging messages."
28523 msgstr ""
28524
28525 #. type: =item
28526 #: ../tools/virt-win-reg.pl:128 ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127 ../tools/virt-list-partitions.pl:78
28527 msgid "B<--connect URI> | B<-c URI>"
28528 msgstr ""
28529
28530 #. type: textblock
28531 #: ../tools/virt-win-reg.pl:130 ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129 ../tools/virt-list-partitions.pl:80
28532 msgid ""
28533 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
28534 "to the default libvirt hypervisor."
28535 msgstr ""
28536
28537 #. type: textblock
28538 #: ../tools/virt-win-reg.pl:133 ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132 ../tools/virt-list-partitions.pl:83
28539 msgid ""
28540 "If you specify guest block devices directly, then libvirt is not used at "
28541 "all."
28542 msgstr ""
28543
28544 #. type: =item
28545 #: ../tools/virt-win-reg.pl:140 ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139 ../tools/virt-list-partitions.pl:90
28546 msgid "B<--format> raw"
28547 msgstr ""
28548
28549 #. type: textblock
28550 #: ../tools/virt-win-reg.pl:142 ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141 ../tools/virt-list-partitions.pl:92
28551 msgid ""
28552 "Specify the format of disk images given on the command line.  If this is "
28553 "omitted then the format is autodetected from the content of the disk image."
28554 msgstr ""
28555
28556 #. type: textblock
28557 #: ../tools/virt-win-reg.pl:146 ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145 ../tools/virt-list-partitions.pl:96
28558 msgid ""
28559 "If disk images are requested from libvirt, then this program asks libvirt "
28560 "for this information.  In this case, the value of the format parameter is "
28561 "ignored."
28562 msgstr ""
28563
28564 #. type: textblock
28565 #: ../tools/virt-win-reg.pl:150 ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149 ../tools/virt-list-partitions.pl:100
28566 msgid ""
28567 "If working with untrusted raw-format guest disk images, you should ensure "
28568 "the format is always specified."
28569 msgstr ""
28570
28571 #. type: =item
28572 #: ../tools/virt-win-reg.pl:157
28573 msgid "B<--merge>"
28574 msgstr ""
28575
28576 #. type: textblock
28577 #: ../tools/virt-win-reg.pl:159
28578 msgid ""
28579 "In merge mode, this merges a textual regedit file into the Windows Registry "
28580 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
28581 "displays or exports Registry entries instead."
28582 msgstr ""
28583
28584 #. type: textblock
28585 #: ../tools/virt-win-reg.pl:163
28586 msgid ""
28587 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
28588 "result in disk corruption.  However exporting (without this flag)  is always "
28589 "safe."
28590 msgstr ""
28591
28592 #. type: =item
28593 #: ../tools/virt-win-reg.pl:171
28594 msgid "B<--encoding> UTF-16LE|ASCII"
28595 msgstr ""
28596
28597 #. type: textblock
28598 #: ../tools/virt-win-reg.pl:173
28599 msgid ""
28600 "When merging (only), you may need to specify the encoding for strings to be "
28601 "used in the hive file.  This is explained in detail in "
28602 "L<Win::Hivex::Regedit(3)/ENCODING STRINGS>."
28603 msgstr ""
28604
28605 #. type: textblock
28606 #: ../tools/virt-win-reg.pl:177
28607 msgid ""
28608 "The default is to use UTF-16LE, which should work with recent versions of "
28609 "Windows."
28610 msgstr ""
28611
28612 #. type: =item
28613 #: ../tools/virt-win-reg.pl:184
28614 msgid "B<--unsafe-printable-strings>"
28615 msgstr ""
28616
28617 #. type: textblock
28618 #: ../tools/virt-win-reg.pl:186
28619 msgid ""
28620 "When exporting (only), assume strings are UTF-16LE and print them as strings "
28621 "instead of hex sequences.  Remove the final zero codepoint from strings if "
28622 "present."
28623 msgstr ""
28624
28625 #. type: textblock
28626 #: ../tools/virt-win-reg.pl:190
28627 msgid ""
28628 "This is unsafe and does not preserve the fidelity of strings in the original "
28629 "Registry for various reasons:"
28630 msgstr ""
28631
28632 #. type: textblock
28633 #: ../tools/virt-win-reg.pl:197
28634 msgid ""
28635 "Assumes the original encoding is UTF-16LE.  ASCII strings and strings in "
28636 "other encodings will be corrupted by this transformation."
28637 msgstr ""
28638
28639 #. type: textblock
28640 #: ../tools/virt-win-reg.pl:202
28641 msgid ""
28642 "Assumes that everything which has type 1 or 2 is really a string and that "
28643 "everything else is not a string, but the type field in real Registries is "
28644 "not reliable."
28645 msgstr ""
28646
28647 #. type: textblock
28648 #: ../tools/virt-win-reg.pl:208
28649 msgid ""
28650 "Loses information about whether a zero codepoint followed the string in the "
28651 "Registry or not."
28652 msgstr ""
28653
28654 #. type: textblock
28655 #: ../tools/virt-win-reg.pl:213
28656 msgid ""
28657 "This all happens because the Registry itself contains no information about "
28658 "how strings are encoded (see L<Win::Hivex::Regedit(3)/ENCODING STRINGS>)."
28659 msgstr ""
28660
28661 #. type: textblock
28662 #: ../tools/virt-win-reg.pl:217
28663 msgid ""
28664 "You should only use this option for quick hacking and debugging of the "
28665 "Registry contents, and I<never> use it if the output is going to be passed "
28666 "into another program or stored in another Registry."
28667 msgstr ""
28668
28669 #. type: =head1
28670 #: ../tools/virt-win-reg.pl:553
28671 msgid "SUPPORTED SYSTEMS"
28672 msgstr ""
28673
28674 #. type: textblock
28675 #: ../tools/virt-win-reg.pl:555
28676 msgid ""
28677 "The program currently supports Windows NT-derived guests starting with "
28678 "Windows XP through to at least Windows 7."
28679 msgstr ""
28680
28681 #. type: textblock
28682 #: ../tools/virt-win-reg.pl:558
28683 msgid "The following Registry keys are supported:"
28684 msgstr ""
28685
28686 #. type: =item
28687 #: ../tools/virt-win-reg.pl:562
28688 msgid "C<HKEY_LOCAL_MACHINE\\SAM>"
28689 msgstr ""
28690
28691 #. type: =item
28692 #: ../tools/virt-win-reg.pl:564
28693 msgid "C<HKEY_LOCAL_MACHINE\\SECURITY>"
28694 msgstr ""
28695
28696 #. type: =item
28697 #: ../tools/virt-win-reg.pl:566
28698 msgid "C<HKEY_LOCAL_MACHINE\\SOFTWARE>"
28699 msgstr ""
28700
28701 #. type: =item
28702 #: ../tools/virt-win-reg.pl:568
28703 msgid "C<HKEY_LOCAL_MACHINE\\SYSTEM>"
28704 msgstr ""
28705
28706 #. type: =item
28707 #: ../tools/virt-win-reg.pl:570
28708 msgid "C<HKEY_USERS\\.DEFAULT>"
28709 msgstr ""
28710
28711 #. type: =item
28712 #: ../tools/virt-win-reg.pl:572
28713 msgid "C<HKEY_USERS\\I<SID>>"
28714 msgstr ""
28715
28716 #. type: textblock
28717 #: ../tools/virt-win-reg.pl:574
28718 msgid "where I<SID> is a Windows User SID (eg. C<S-1-5-18>)."
28719 msgstr ""
28720
28721 #. type: =item
28722 #: ../tools/virt-win-reg.pl:576
28723 msgid "C<HKEY_USERS\\I<username>>"
28724 msgstr ""
28725
28726 #. type: textblock
28727 #: ../tools/virt-win-reg.pl:578
28728 msgid "where I<username> is a local user name (this is a libguestfs extension)."
28729 msgstr ""
28730
28731 #. type: textblock
28732 #: ../tools/virt-win-reg.pl:582
28733 msgid ""
28734 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
28735 "C<HKEY_USERS>."
28736 msgstr ""
28737
28738 #. type: textblock
28739 #: ../tools/virt-win-reg.pl:585
28740 msgid ""
28741 "The literal keys C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are not "
28742 "supported (there is no \"current user\")."
28743 msgstr ""
28744
28745 #. type: =head1
28746 #: ../tools/virt-win-reg.pl:588
28747 msgid "ENCODING"
28748 msgstr ""
28749
28750 #. type: textblock
28751 #: ../tools/virt-win-reg.pl:590
28752 msgid ""
28753 "C<virt-win-reg> expects that regedit files have already been reencoded in "
28754 "the local encoding.  Usually on Linux hosts, this means UTF-8 with "
28755 "Unix-style line endings.  Since Windows regedit files are often in UTF-16LE "
28756 "with Windows-style line endings, you may need to reencode the whole file "
28757 "before or after processing."
28758 msgstr ""
28759
28760 #. type: textblock
28761 #: ../tools/virt-win-reg.pl:596
28762 msgid ""
28763 "To reencode a file from Windows format to Linux (before processing it with "
28764 "the I<--merge> option), you would do something like this:"
28765 msgstr ""
28766
28767 #. type: verbatim
28768 #: ../tools/virt-win-reg.pl:599
28769 #, no-wrap
28770 msgid ""
28771 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
28772 "\n"
28773 msgstr ""
28774
28775 #. type: textblock
28776 #: ../tools/virt-win-reg.pl:601
28777 msgid ""
28778 "To go in the opposite direction, after exporting and before sending the file "
28779 "to a Windows user, do something like this:"
28780 msgstr ""
28781
28782 #. type: verbatim
28783 #: ../tools/virt-win-reg.pl:604
28784 #, no-wrap
28785 msgid ""
28786 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
28787 "\n"
28788 msgstr ""
28789
28790 #. type: textblock
28791 #: ../tools/virt-win-reg.pl:606
28792 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
28793 msgstr ""
28794
28795 #. type: textblock
28796 #: ../tools/virt-win-reg.pl:608
28797 msgid ""
28798 "If you are unsure about the current encoding, use the L<file(1)> command.  "
28799 "Recent versions of Windows regedit.exe produce a UTF-16LE file with "
28800 "Windows-style (CRLF) line endings, like this:"
28801 msgstr ""
28802
28803 #. type: verbatim
28804 #: ../tools/virt-win-reg.pl:612
28805 #, no-wrap
28806 msgid ""
28807 " $ file software.reg\n"
28808 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
28809 " with CRLF line terminators\n"
28810 "\n"
28811 msgstr ""
28812
28813 #. type: textblock
28814 #: ../tools/virt-win-reg.pl:616
28815 msgid "This file would need conversion before you could I<--merge> it."
28816 msgstr ""
28817
28818 #. type: =head1
28819 #: ../tools/virt-win-reg.pl:618
28820 msgid "CurrentControlSet etc."
28821 msgstr ""
28822
28823 #. type: textblock
28824 #: ../tools/virt-win-reg.pl:620
28825 msgid ""
28826 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
28827 "Registry at the level of the hive file, and therefore you cannot modify "
28828 "these."
28829 msgstr ""
28830
28831 #. type: textblock
28832 #: ../tools/virt-win-reg.pl:624
28833 msgid ""
28834 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
28835 "circumstances it might refer to another control set.  The way to find out is "
28836 "to look at the C<HKLM\\SYSTEM\\Select> key:"
28837 msgstr ""
28838
28839 #. type: verbatim
28840 #: ../tools/virt-win-reg.pl:628
28841 #, no-wrap
28842 msgid ""
28843 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
28844 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
28845 " \"Current\"=dword:00000001\n"
28846 " \"Default\"=dword:00000001\n"
28847 " \"Failed\"=dword:00000000\n"
28848 " \"LastKnownGood\"=dword:00000002\n"
28849 "\n"
28850 msgstr ""
28851
28852 #. type: textblock
28853 #: ../tools/virt-win-reg.pl:635
28854 msgid "\"Current\" is the one which Windows will choose when it boots."
28855 msgstr ""
28856
28857 #. type: textblock
28858 #: ../tools/virt-win-reg.pl:637
28859 msgid "Similarly, other C<Current...> keys in the path may need to be replaced."
28860 msgstr ""
28861
28862 #. type: =head1
28863 #: ../tools/virt-win-reg.pl:640
28864 msgid "WINDOWS TIPS"
28865 msgstr ""
28866
28867 #. type: textblock
28868 #: ../tools/virt-win-reg.pl:642
28869 msgid ""
28870 "Note that some of these tips modify the guest disk image.  The guest I<must> "
28871 "be shut off, else you will get disk corruption."
28872 msgstr ""
28873
28874 #. type: =head2
28875 #: ../tools/virt-win-reg.pl:645
28876 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
28877 msgstr ""
28878
28879 #. type: textblock
28880 #: ../tools/virt-win-reg.pl:647
28881 msgid ""
28882 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
28883 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
28884 "is uploaded into C<C:\\>:"
28885 msgstr ""
28886
28887 #. type: verbatim
28888 #: ../tools/virt-win-reg.pl:651
28889 #, no-wrap
28890 msgid ""
28891 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
28892 "\n"
28893 msgstr ""
28894
28895 #. type: textblock
28896 #: ../tools/virt-win-reg.pl:653
28897 msgid "Prepare a regedit file containing the registry change:"
28898 msgstr ""
28899
28900 #. type: verbatim
28901 #: ../tools/virt-win-reg.pl:655
28902 #, no-wrap
28903 msgid ""
28904 " cat > test.reg <<'EOF'\n"
28905 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
28906 " \"Test\"=\"c:\\\\test.bat\"\n"
28907 " EOF\n"
28908 "\n"
28909 msgstr ""
28910
28911 #. type: textblock
28912 #: ../tools/virt-win-reg.pl:660
28913 msgid ""
28914 "In this example we use the key C<RunOnce> which means that the script will "
28915 "run precisely once when the first user logs in.  If you want it to run every "
28916 "time a user logs in, replace C<RunOnce> with C<Run>."
28917 msgstr ""
28918
28919 #. type: textblock
28920 #: ../tools/virt-win-reg.pl:664
28921 msgid "Now update the registry:"
28922 msgstr ""
28923
28924 #. type: verbatim
28925 #: ../tools/virt-win-reg.pl:666
28926 #, no-wrap
28927 msgid ""
28928 " virt-win-reg --merge WindowsGuest test.reg\n"
28929 "\n"
28930 msgstr ""
28931
28932 #. type: =head2
28933 #: ../tools/virt-win-reg.pl:668
28934 msgid "INSTALLING A SERVICE"
28935 msgstr ""
28936
28937 #. type: textblock
28938 #: ../tools/virt-win-reg.pl:670
28939 msgid ""
28940 "This section assumes you are familiar with Windows services, and you either "
28941 "have a program which handles the Windows Service Control Protocol directly "
28942 "or you want to run any program using a service wrapper like SrvAny or the "
28943 "free RHSrvAny."
28944 msgstr ""
28945
28946 #. type: textblock
28947 #: ../tools/virt-win-reg.pl:675
28948 msgid ""
28949 "First upload the program and optionally the service wrapper.  In this case "
28950 "the test program is called C<test.exe> and we are using the RHSrvAny "
28951 "wrapper:"
28952 msgstr ""
28953
28954 #. type: verbatim
28955 #: ../tools/virt-win-reg.pl:679
28956 #, no-wrap
28957 msgid ""
28958 " guestfish -i -d WindowsGuest <<EOF\n"
28959 "   upload rhsrvany.exe /rhsrvany.exe\n"
28960 "   upload test.exe /test.exe\n"
28961 " EOF\n"
28962 "\n"
28963 msgstr ""
28964
28965 #. type: textblock
28966 #: ../tools/virt-win-reg.pl:684
28967 msgid ""
28968 "Prepare a regedit file containing the registry changes.  In this example, "
28969 "the first registry change is needed for the service itself or the service "
28970 "wrapper (if used).  The second registry change is only needed because I am "
28971 "using the RHSrvAny service wrapper."
28972 msgstr ""
28973
28974 #. type: verbatim
28975 #: ../tools/virt-win-reg.pl:689
28976 #, no-wrap
28977 msgid ""
28978 " cat > service.reg <<'EOF'\n"
28979 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
28980 " \"Type\"=dword:00000010\n"
28981 " \"Start\"=dword:00000002\n"
28982 " \"ErrorControl\"=dword:00000001\n"
28983 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
28984 " \"DisplayName\"=\"RHSrvAny\"\n"
28985 " \"ObjectName\"=\"NetworkService\"\n"
28986 " \n"
28987 msgstr ""
28988
28989 #. type: verbatim
28990 #: ../tools/virt-win-reg.pl:698
28991 #, no-wrap
28992 msgid ""
28993 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
28994 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
28995 " \"PWD\"=\"c:\\\\Temp\"\n"
28996 " EOF\n"
28997 "\n"
28998 msgstr ""
28999
29000 #. type: textblock
29001 #: ../tools/virt-win-reg.pl:709
29002 msgid ""
29003 "For use of C<ControlSet001> see the section above in this manual page.  You "
29004 "may need to adjust this according to the control set that is in use by the "
29005 "guest."
29006 msgstr ""
29007
29008 #. type: textblock
29009 #: ../tools/virt-win-reg.pl:715
29010 msgid ""
29011 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
29012 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
29013 "privileged account."
29014 msgstr ""
29015
29016 #. type: textblock
29017 #: ../tools/virt-win-reg.pl:721
29018 msgid ""
29019 "For the meaning of the magic numbers, see this Microsoft KB article: "
29020 "L<http://support.microsoft.com/kb/103000>."
29021 msgstr ""
29022
29023 #. type: textblock
29024 #: ../tools/virt-win-reg.pl:726
29025 msgid "Update the registry:"
29026 msgstr ""
29027
29028 #. type: verbatim
29029 #: ../tools/virt-win-reg.pl:728
29030 #, no-wrap
29031 msgid ""
29032 " virt-win-reg --merge WindowsGuest service.reg\n"
29033 "\n"
29034 msgstr ""
29035
29036 #. type: =head1
29037 #: ../tools/virt-win-reg.pl:730 ../tools/virt-list-filesystems.pl:182 ../tools/virt-tar.pl:279 ../tools/virt-make-fs.pl:532 ../tools/virt-list-partitions.pl:250
29038 msgid "SHELL QUOTING"
29039 msgstr ""
29040
29041 #. type: textblock
29042 #: ../tools/virt-win-reg.pl:732
29043 msgid ""
29044 "Be careful when passing parameters containing C<\\> (backslash) in the "
29045 "shell.  Usually you will have to use 'single quotes' or double backslashes "
29046 "(but not both) to protect them from the shell."
29047 msgstr ""
29048
29049 #. type: textblock
29050 #: ../tools/virt-win-reg.pl:736
29051 msgid "Paths and value names are case-insensitive."
29052 msgstr ""
29053
29054 #. type: textblock
29055 #: ../tools/virt-win-reg.pl:738 ../tools/virt-list-filesystems.pl:184 ../tools/virt-tar.pl:281 ../tools/virt-make-fs.pl:534 ../tools/virt-list-partitions.pl:252
29056 msgid ""
29057 "Libvirt guest names can contain arbitrary characters, some of which have "
29058 "meaning to the shell such as C<#> and space.  You may need to quote or "
29059 "escape these characters on the command line.  See the shell manual page "
29060 "L<sh(1)> for details."
29061 msgstr ""
29062
29063 #. type: textblock
29064 #: ../tools/virt-win-reg.pl:745
29065 msgid ""
29066 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, "
29067 "L<guestfish(1)>, L<virt-cat(1)>, L<Sys::Guestfs(3)>, "
29068 "L<Sys::Guestfs::Lib(3)>, L<Win::Hivex(3)>, L<Win::Hivex::Regedit(3)>, "
29069 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29070 msgstr ""
29071
29072 #. type: textblock
29073 #: ../tools/virt-win-reg.pl:760 ../tools/virt-make-fs.pl:555
29074 msgid ""
29075 "When reporting bugs, please enable debugging and capture the I<complete> "
29076 "output:"
29077 msgstr ""
29078
29079 #. type: verbatim
29080 #: ../tools/virt-win-reg.pl:763
29081 #, no-wrap
29082 msgid ""
29083 " export LIBGUESTFS_DEBUG=1\n"
29084 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
29085 "\n"
29086 msgstr ""
29087
29088 #. type: textblock
29089 #: ../tools/virt-win-reg.pl:766
29090 msgid ""
29091 "Attach /tmp/virt-win-reg.log to a new bug report at "
29092 "L<https://bugzilla.redhat.com/>"
29093 msgstr ""
29094
29095 #. type: =head1
29096 #: ../tools/virt-win-reg.pl:769 ../tools/virt-list-filesystems.pl:202 ../tools/virt-tar.pl:301 ../tools/virt-make-fs.pl:564 ../tools/virt-list-partitions.pl:269
29097 msgid "AUTHOR"
29098 msgstr ""
29099
29100 #. type: textblock
29101 #: ../tools/virt-win-reg.pl:771 ../tools/virt-list-filesystems.pl:204 ../tools/virt-tar.pl:303 ../tools/virt-make-fs.pl:566 ../tools/virt-list-partitions.pl:271
29102 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
29103 msgstr ""
29104
29105 #. type: textblock
29106 #: ../tools/virt-win-reg.pl:775 ../tools/virt-make-fs.pl:570
29107 msgid "Copyright (C) 2010 Red Hat Inc."
29108 msgstr ""
29109
29110 #. type: textblock
29111 #: ../tools/virt-list-filesystems.pl:32
29112 msgid "virt-list-filesystems - List filesystems in a virtual machine or disk image"
29113 msgstr ""
29114
29115 #. type: verbatim
29116 #: ../tools/virt-list-filesystems.pl:36
29117 #, no-wrap
29118 msgid ""
29119 " virt-list-filesystems [--options] domname\n"
29120 "\n"
29121 msgstr ""
29122
29123 #. type: verbatim
29124 #: ../tools/virt-list-filesystems.pl:38
29125 #, no-wrap
29126 msgid ""
29127 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
29128 "\n"
29129 msgstr ""
29130
29131 #. type: textblock
29132 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
29133 msgid ""
29134 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
29135 "replacement."
29136 msgstr ""
29137
29138 #. type: textblock
29139 #: ../tools/virt-list-filesystems.pl:45
29140 msgid ""
29141 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
29142 "are contained in a virtual machine or disk image."
29143 msgstr ""
29144
29145 #. type: textblock
29146 #: ../tools/virt-list-filesystems.pl:49
29147 msgid ""
29148 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
29149 "functionality.  For more complex cases you should look at the "
29150 "L<guestfish(1)> tool."
29151 msgstr ""
29152
29153 #. type: =item
29154 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
29155 msgid "B<-l> | B<--long>"
29156 msgstr ""
29157
29158 #. type: textblock
29159 #: ../tools/virt-list-filesystems.pl:108
29160 msgid ""
29161 "With this option, C<virt-list-filesystems> displays the type of each "
29162 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
29163 msgstr ""
29164
29165 #. type: =item
29166 #: ../tools/virt-list-filesystems.pl:115
29167 msgid "B<-a> | B<--all>"
29168 msgstr ""
29169
29170 #. type: textblock
29171 #: ../tools/virt-list-filesystems.pl:117
29172 msgid ""
29173 "Normally we only show mountable filesystems.  If this option is given then "
29174 "swap devices are shown too."
29175 msgstr ""
29176
29177 #. type: textblock
29178 #: ../tools/virt-list-filesystems.pl:191
29179 msgid ""
29180 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, "
29181 "L<virt-filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, "
29182 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29183 msgstr ""
29184
29185 #. type: textblock
29186 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
29187 msgid "Copyright (C) 2009 Red Hat Inc."
29188 msgstr ""
29189
29190 #. type: textblock
29191 #: ../tools/virt-tar.pl:33
29192 msgid "virt-tar - Extract or upload files to a virtual machine"
29193 msgstr ""
29194
29195 #. type: verbatim
29196 #: ../tools/virt-tar.pl:37
29197 #, no-wrap
29198 msgid ""
29199 " virt-tar [--options] -x domname directory tarball\n"
29200 "\n"
29201 msgstr ""
29202
29203 #. type: verbatim
29204 #: ../tools/virt-tar.pl:39
29205 #, no-wrap
29206 msgid ""
29207 " virt-tar [--options] -u domname tarball directory\n"
29208 "\n"
29209 msgstr ""
29210
29211 #. type: verbatim
29212 #: ../tools/virt-tar.pl:41
29213 #, no-wrap
29214 msgid ""
29215 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
29216 "\n"
29217 msgstr ""
29218
29219 #. type: verbatim
29220 #: ../tools/virt-tar.pl:43
29221 #, no-wrap
29222 msgid ""
29223 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
29224 "\n"
29225 msgstr ""
29226
29227 #. type: textblock
29228 #: ../tools/virt-tar.pl:47
29229 msgid ""
29230 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, "
29231 "L<virt-tar-in(1)>, L<virt-tar-out(1)> as replacements."
29232 msgstr ""
29233
29234 #. type: textblock
29235 #: ../tools/virt-tar.pl:52
29236 msgid "Download C</home> from the VM into a local tarball:"
29237 msgstr ""
29238
29239 #. type: verbatim
29240 #: ../tools/virt-tar.pl:54
29241 #, no-wrap
29242 msgid ""
29243 " virt-tar -x domname /home home.tar\n"
29244 "\n"
29245 msgstr ""
29246
29247 #. type: verbatim
29248 #: ../tools/virt-tar.pl:56
29249 #, no-wrap
29250 msgid ""
29251 " virt-tar -zx domname /home home.tar.gz\n"
29252 "\n"
29253 msgstr ""
29254
29255 #. type: textblock
29256 #: ../tools/virt-tar.pl:58
29257 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
29258 msgstr ""
29259
29260 #. type: verbatim
29261 #: ../tools/virt-tar.pl:60
29262 #, no-wrap
29263 msgid ""
29264 " virt-tar -u domname uploadstuff.tar /tmp\n"
29265 "\n"
29266 msgstr ""
29267
29268 #. type: verbatim
29269 #: ../tools/virt-tar.pl:62
29270 #, no-wrap
29271 msgid ""
29272 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
29273 "\n"
29274 msgstr ""
29275
29276 #. type: textblock
29277 #: ../tools/virt-tar.pl:66
29278 msgid ""
29279 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
29280 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
29281 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
29282 msgstr ""
29283
29284 #. type: textblock
29285 #: ../tools/virt-tar.pl:71
29286 msgid ""
29287 "You can use I<-x> (extract) on live virtual machines, but you might get "
29288 "inconsistent results or errors if there is filesystem activity inside the "
29289 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
29290 "work, but the only way to guarantee consistent results is if the virtual "
29291 "machine is shut down."
29292 msgstr ""
29293
29294 #. type: textblock
29295 #: ../tools/virt-tar.pl:79
29296 msgid ""
29297 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
29298 "parts of a guest filesystem.  There are many possibilities: making backups, "
29299 "uploading data files, snooping on guest activity, fixing or customizing "
29300 "guests, etc."
29301 msgstr ""
29302
29303 #. type: textblock
29304 #: ../tools/virt-tar.pl:84
29305 msgid ""
29306 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
29307 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
29308 "should look at the L<guestfish(1)> tool."
29309 msgstr ""
29310
29311 #. type: textblock
29312 #: ../tools/virt-tar.pl:88
29313 msgid ""
29314 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
29315 "its contents (recursively) from the virtual machine into a local tarball.  "
29316 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
29317 "virtual machine.  You cannot use these two options together."
29318 msgstr ""
29319
29320 #. type: textblock
29321 #: ../tools/virt-tar.pl:94
29322 msgid ""
29323 "In addition, you may need to use the I<-z> (gZip) option to enable "
29324 "compression.  When uploading, you have to specify I<-z> if the upload file "
29325 "is compressed because virt-tar won't detect this on its own."
29326 msgstr ""
29327
29328 #. type: textblock
29329 #: ../tools/virt-tar.pl:98
29330 msgid ""
29331 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
29332 "example it cannot do PKZip files or bzip2 compression.  If you want that "
29333 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
29334 "the L<libguestfs(3)> API)."
29335 msgstr ""
29336
29337 #. type: =item
29338 #: ../tools/virt-tar.pl:156
29339 msgid "B<-x> | B<--extract> | B<--download>"
29340 msgstr ""
29341
29342 #. type: =item
29343 #: ../tools/virt-tar.pl:158
29344 msgid "B<-u> | B<--upload>"
29345 msgstr ""
29346
29347 #. type: textblock
29348 #: ../tools/virt-tar.pl:160
29349 msgid ""
29350 "Use I<-x> to extract (download) a directory from a virtual machine to a "
29351 "local tarball."
29352 msgstr ""
29353
29354 #. type: textblock
29355 #: ../tools/virt-tar.pl:163
29356 msgid ""
29357 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
29358 "Please read the L</WARNING> section above before using this option."
29359 msgstr ""
29360
29361 #. type: textblock
29362 #: ../tools/virt-tar.pl:167
29363 msgid "You must specify exactly one of these options."
29364 msgstr ""
29365
29366 #. type: =item
29367 #: ../tools/virt-tar.pl:173
29368 msgid "B<-z> | B<--gzip>"
29369 msgstr ""
29370
29371 #. type: textblock
29372 #: ../tools/virt-tar.pl:175
29373 msgid "Specify that the input or output tarball is gzip-compressed."
29374 msgstr ""
29375
29376 #. type: textblock
29377 #: ../tools/virt-tar.pl:288
29378 msgid ""
29379 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29380 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
29381 "L<virt-tar-out(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, "
29382 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29383 msgstr ""
29384
29385 #. type: textblock
29386 #: ../tools/virt-make-fs.pl:37
29387 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
29388 msgstr ""
29389
29390 #. type: verbatim
29391 #: ../tools/virt-make-fs.pl:41
29392 #, no-wrap
29393 msgid ""
29394 " virt-make-fs [--options] input.tar output.img\n"
29395 "\n"
29396 msgstr ""
29397
29398 #. type: verbatim
29399 #: ../tools/virt-make-fs.pl:43
29400 #, no-wrap
29401 msgid ""
29402 " virt-make-fs [--options] input.tar.gz output.img\n"
29403 "\n"
29404 msgstr ""
29405
29406 #. type: verbatim
29407 #: ../tools/virt-make-fs.pl:45
29408 #, no-wrap
29409 msgid ""
29410 " virt-make-fs [--options] directory output.img\n"
29411 "\n"
29412 msgstr ""
29413
29414 #. type: textblock
29415 #: ../tools/virt-make-fs.pl:49
29416 msgid ""
29417 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
29418 "archive or some files in a directory.  It is similar to tools like "
29419 "L<mkisofs(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, "
29420 "it can create common filesystem types like ext2/3 or NTFS, which can be "
29421 "useful if you want to attach these filesystems to existing virtual machines "
29422 "(eg. to import large amounts of read-only data to a VM)."
29423 msgstr ""
29424
29425 #. type: textblock
29426 #: ../tools/virt-make-fs.pl:57
29427 msgid "Basic usage is:"
29428 msgstr ""
29429
29430 #. type: verbatim
29431 #: ../tools/virt-make-fs.pl:59
29432 #, no-wrap
29433 msgid ""
29434 " virt-make-fs input output\n"
29435 "\n"
29436 msgstr ""
29437
29438 #. type: textblock
29439 #: ../tools/virt-make-fs.pl:61
29440 msgid ""
29441 "where C<input> is either a directory containing files that you want to add, "
29442 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
29443 "C<output> is a disk image.  The input type is detected automatically.  The "
29444 "output disk image defaults to a raw ext2 image unless you specify extra "
29445 "flags (see L</OPTIONS> below)."
29446 msgstr ""
29447
29448 #. type: =head2
29449 #: ../tools/virt-make-fs.pl:67
29450 msgid "EXTRA SPACE"
29451 msgstr ""
29452
29453 #. type: textblock
29454 #: ../tools/virt-make-fs.pl:69
29455 msgid ""
29456 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
29457 "the files that it contains, but might have extra space.  Depending on how "
29458 "you are going to use the output, you might think this extra space is wasted "
29459 "and want to minimize it, or you might want to leave space so that more files "
29460 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
29461 "but you can use the I<--size> flag to leave space in the filesystem if you "
29462 "want it."
29463 msgstr ""
29464
29465 #. type: textblock
29466 #: ../tools/virt-make-fs.pl:77
29467 msgid ""
29468 "An alternative way to leave extra space but not make the output image any "
29469 "bigger is to use an alternative disk image format (instead of the default "
29470 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
29471 "image format (check your hypervisor supports this before using it).  This "
29472 "allows you to choose a large I<--size> but the extra space won't actually be "
29473 "allocated in the image until you try to store something in it."
29474 msgstr ""
29475
29476 #. type: textblock
29477 #: ../tools/virt-make-fs.pl:85
29478 msgid ""
29479 "Don't forget that you can also use local commands including L<resize2fs(8)> "
29480 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
29481 "to build another image from scratch."
29482 msgstr ""
29483
29484 #. type: =head3
29485 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123 ../tools/virt-make-fs.pl:142
29486 msgid "EXAMPLE"
29487 msgstr ""
29488
29489 #. type: verbatim
29490 #: ../tools/virt-make-fs.pl:91
29491 #, no-wrap
29492 msgid ""
29493 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
29494 "\n"
29495 msgstr ""
29496
29497 #. type: =head2
29498 #: ../tools/virt-make-fs.pl:93
29499 msgid "FILESYSTEM TYPE"
29500 msgstr ""
29501
29502 #. type: textblock
29503 #: ../tools/virt-make-fs.pl:95
29504 msgid ""
29505 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
29506 "libguestfs supports can be used (but I<not> read-only formats like "
29507 "ISO9660).  Here are some of the more common choices:"
29508 msgstr ""
29509
29510 #. type: =item
29511 #: ../tools/virt-make-fs.pl:101
29512 msgid "I<ext3>"
29513 msgstr ""
29514
29515 #. type: textblock
29516 #: ../tools/virt-make-fs.pl:103
29517 msgid ""
29518 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
29519 "you are not going to use the filesystem in a way that requires the journal, "
29520 "then this is just wasted overhead."
29521 msgstr ""
29522
29523 #. type: =item
29524 #: ../tools/virt-make-fs.pl:107
29525 msgid "I<ntfs> or I<vfat>"
29526 msgstr ""
29527
29528 #. type: textblock
29529 #: ../tools/virt-make-fs.pl:109
29530 msgid "Useful if exporting data to a Windows guest."
29531 msgstr ""
29532
29533 #. type: textblock
29534 #: ../tools/virt-make-fs.pl:111
29535 msgid ""
29536 "I<Note for vfat>: The tar archive or local directory must only contain files "
29537 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
29538 "program running within libguestfs is unable to change the ownership of "
29539 "non-root files, since vfat itself does not support this."
29540 msgstr ""
29541
29542 #. type: =item
29543 #: ../tools/virt-make-fs.pl:116
29544 msgid "I<minix>"
29545 msgstr ""
29546
29547 #. type: textblock
29548 #: ../tools/virt-make-fs.pl:118
29549 msgid ""
29550 "Lower overhead than C<ext2>, but certain limitations on filename length and "
29551 "total filesystem size."
29552 msgstr ""
29553
29554 #. type: verbatim
29555 #: ../tools/virt-make-fs.pl:125
29556 #, no-wrap
29557 msgid ""
29558 " virt-make-fs --type=minix input minixfs.img\n"
29559 "\n"
29560 msgstr ""
29561
29562 #. type: =head2
29563 #: ../tools/virt-make-fs.pl:127
29564 msgid "TO PARTITION OR NOT TO PARTITION"
29565 msgstr ""
29566
29567 #. type: textblock
29568 #: ../tools/virt-make-fs.pl:129
29569 msgid "Optionally virt-make-fs can add a partition table to the output disk."
29570 msgstr ""
29571
29572 #. type: textblock
29573 #: ../tools/virt-make-fs.pl:131
29574 msgid ""
29575 "Adding a partition can make the disk image more compatible with certain "
29576 "virtualized operating systems which don't expect to see a filesystem "
29577 "directly located on a block device (Linux doesn't care and will happily "
29578 "handle both types)."
29579 msgstr ""
29580
29581 #. type: textblock
29582 #: ../tools/virt-make-fs.pl:136
29583 msgid ""
29584 "On the other hand, if you have a partition table then the output image is no "
29585 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
29586 "directly on a partitioned disk image.  (However libguestfs tools such as "
29587 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
29588 msgstr ""
29589
29590 #. type: textblock
29591 #: ../tools/virt-make-fs.pl:144
29592 msgid "Add an MBR partition:"
29593 msgstr ""
29594
29595 #. type: verbatim
29596 #: ../tools/virt-make-fs.pl:146
29597 #, no-wrap
29598 msgid ""
29599 " virt-make-fs --partition -- input disk.img\n"
29600 "\n"
29601 msgstr ""
29602
29603 #. type: textblock
29604 #: ../tools/virt-make-fs.pl:148
29605 msgid ""
29606 "If the output disk image could be terabyte-sized or larger, it's better to "
29607 "use an EFI/GPT-compatible partition table:"
29608 msgstr ""
29609
29610 #. type: verbatim
29611 #: ../tools/virt-make-fs.pl:151
29612 #, no-wrap
29613 msgid ""
29614 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
29615 "\n"
29616 msgstr ""
29617
29618 #. type: textblock
29619 #: ../tools/virt-make-fs.pl:179
29620 msgid "Enable debugging information."
29621 msgstr ""
29622
29623 #. type: =item
29624 #: ../tools/virt-make-fs.pl:185
29625 msgid "B<--size=E<lt>NE<gt>>"
29626 msgstr ""
29627
29628 #. type: =item
29629 #: ../tools/virt-make-fs.pl:187
29630 msgid "B<--size=+E<lt>NE<gt>>"
29631 msgstr ""
29632
29633 #. type: =item
29634 #: ../tools/virt-make-fs.pl:189
29635 msgid "B<-s E<lt>NE<gt>>"
29636 msgstr ""
29637
29638 #. type: =item
29639 #: ../tools/virt-make-fs.pl:191
29640 msgid "B<-s +E<lt>NE<gt>>"
29641 msgstr ""
29642
29643 #. type: textblock
29644 #: ../tools/virt-make-fs.pl:193
29645 msgid "Use the I<--size> (or I<-s>) option to choose the size of the output image."
29646 msgstr ""
29647
29648 #. type: textblock
29649 #: ../tools/virt-make-fs.pl:196
29650 msgid ""
29651 "If this option is I<not> given, then the output image will be just large "
29652 "enough to contain all the files, with not much wasted space."
29653 msgstr ""
29654
29655 #. type: textblock
29656 #: ../tools/virt-make-fs.pl:199
29657 msgid ""
29658 "To choose a fixed size output disk, specify an absolute number followed by "
29659 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
29660 "Petabytes or Exabytes.  This must be large enough to contain all the input "
29661 "files, else you will get an error."
29662 msgstr ""
29663
29664 #. type: textblock
29665 #: ../tools/virt-make-fs.pl:204
29666 msgid ""
29667 "To leave extra space, specify C<+> (plus sign) and a number followed by "
29668 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
29669 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
29670 "the input files, and (approximately) an extra 200 MB free space."
29671 msgstr ""
29672
29673 #. type: textblock
29674 #: ../tools/virt-make-fs.pl:210
29675 msgid ""
29676 "Note that virt-make-fs estimates free space, and therefore will not produce "
29677 "filesystems containing precisely the free space requested.  (It is much more "
29678 "expensive and time-consuming to produce a filesystem which has precisely the "
29679 "desired free space)."
29680 msgstr ""
29681
29682 #. type: =item
29683 #: ../tools/virt-make-fs.pl:219
29684 msgid "B<--format=E<lt>fmtE<gt>>"
29685 msgstr ""
29686
29687 #. type: =item
29688 #: ../tools/virt-make-fs.pl:221
29689 msgid "B<-F E<lt>fmtE<gt>>"
29690 msgstr ""
29691
29692 #. type: textblock
29693 #: ../tools/virt-make-fs.pl:223
29694 msgid "Choose the output disk image format."
29695 msgstr ""
29696
29697 #. type: textblock
29698 #: ../tools/virt-make-fs.pl:225
29699 msgid "The default is C<raw> (raw disk image)."
29700 msgstr ""
29701
29702 #. type: textblock
29703 #: ../tools/virt-make-fs.pl:227
29704 msgid ""
29705 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
29706 "that would really make sense here is C<qcow2>."
29707 msgstr ""
29708
29709 #. type: =item
29710 #: ../tools/virt-make-fs.pl:234
29711 msgid "B<--type=E<lt>fsE<gt>>"
29712 msgstr ""
29713
29714 #. type: =item
29715 #: ../tools/virt-make-fs.pl:236
29716 msgid "B<-t E<lt>fsE<gt>>"
29717 msgstr ""
29718
29719 #. type: textblock
29720 #: ../tools/virt-make-fs.pl:238
29721 msgid "Choose the output filesystem type."
29722 msgstr ""
29723
29724 #. type: textblock
29725 #: ../tools/virt-make-fs.pl:240
29726 msgid "The default is C<ext2>."
29727 msgstr ""
29728
29729 #. type: textblock
29730 #: ../tools/virt-make-fs.pl:242
29731 msgid "Any filesystem which is supported read-write by libguestfs can be used here."
29732 msgstr ""
29733
29734 #. type: =item
29735 #: ../tools/virt-make-fs.pl:249
29736 msgid "B<--partition>"
29737 msgstr ""
29738
29739 #. type: =item
29740 #: ../tools/virt-make-fs.pl:251
29741 msgid "B<--partition=E<lt>parttypeE<gt>>"
29742 msgstr ""
29743
29744 #. type: textblock
29745 #: ../tools/virt-make-fs.pl:253
29746 msgid ""
29747 "If specified, this flag adds an MBR partition table to the output disk "
29748 "image."
29749 msgstr ""
29750
29751 #. type: textblock
29752 #: ../tools/virt-make-fs.pl:256
29753 msgid ""
29754 "You can change the partition table type, eg. I<--partition=gpt> for large "
29755 "disks."
29756 msgstr ""
29757
29758 #. type: textblock
29759 #: ../tools/virt-make-fs.pl:259
29760 msgid ""
29761 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
29762 "might consider the next parameter to be the partition type.  For example:"
29763 msgstr ""
29764
29765 #. type: verbatim
29766 #: ../tools/virt-make-fs.pl:263
29767 #, no-wrap
29768 msgid ""
29769 " virt-make-fs --partition input.tar ...\n"
29770 "\n"
29771 msgstr ""
29772
29773 #. type: textblock
29774 #: ../tools/virt-make-fs.pl:265
29775 msgid ""
29776 "would cause virt-make-fs to think you wanted to use a partition type of "
29777 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
29778 "dash) between options and the input file argument:"
29779 msgstr ""
29780
29781 #. type: verbatim
29782 #: ../tools/virt-make-fs.pl:269
29783 #, no-wrap
29784 msgid ""
29785 " virt-make-fs --partition -- input.tar ...\n"
29786 "\n"
29787 msgstr ""
29788
29789 #. type: textblock
29790 #: ../tools/virt-make-fs.pl:541
29791 msgid ""
29792 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
29793 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, "
29794 "L<guestfs(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
29795 msgstr ""
29796
29797 #. type: verbatim
29798 #: ../tools/virt-make-fs.pl:558
29799 #, no-wrap
29800 msgid ""
29801 " export LIBGUESTFS_DEBUG=1\n"
29802 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
29803 "\n"
29804 msgstr ""
29805
29806 #. type: textblock
29807 #: ../tools/virt-make-fs.pl:561
29808 msgid ""
29809 "Attach /tmp/virt-make-fs.log to a new bug report at "
29810 "L<https://bugzilla.redhat.com/>"
29811 msgstr ""
29812
29813 #. type: textblock
29814 #: ../tools/virt-list-partitions.pl:32
29815 msgid "virt-list-partitions - List partitions in a virtual machine or disk image"
29816 msgstr ""
29817
29818 #. type: verbatim
29819 #: ../tools/virt-list-partitions.pl:36
29820 #, no-wrap
29821 msgid ""
29822 " virt-list-partitions [--options] domname\n"
29823 "\n"
29824 msgstr ""
29825
29826 #. type: verbatim
29827 #: ../tools/virt-list-partitions.pl:38
29828 #, no-wrap
29829 msgid ""
29830 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
29831 "\n"
29832 msgstr ""
29833
29834 #. type: textblock
29835 #: ../tools/virt-list-partitions.pl:45
29836 msgid ""
29837 "C<virt-list-partitions> is a command line tool to list the partitions that "
29838 "are contained in a virtual machine or disk image.  It is mainly useful as a "
29839 "first step to using L<virt-resize(1)>."
29840 msgstr ""
29841
29842 #. type: textblock
29843 #: ../tools/virt-list-partitions.pl:50
29844 msgid ""
29845 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
29846 "functionality.  For more complex cases you should look at the "
29847 "L<guestfish(1)> tool."
29848 msgstr ""
29849
29850 #. type: =item
29851 #: ../tools/virt-list-partitions.pl:107
29852 msgid "B<-h> | B<--human-readable>"
29853 msgstr ""
29854
29855 #. type: textblock
29856 #: ../tools/virt-list-partitions.pl:109
29857 msgid "Show sizes in human-readable form (eg. \"1G\")."
29858 msgstr ""
29859
29860 #. type: textblock
29861 #: ../tools/virt-list-partitions.pl:117
29862 msgid ""
29863 "With this option, C<virt-list-partitions> displays the type and size of each "
29864 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
29865 msgstr ""
29866
29867 #. type: =item
29868 #: ../tools/virt-list-partitions.pl:124
29869 msgid "B<-t> | B<--total>"
29870 msgstr ""
29871
29872 #. type: textblock
29873 #: ../tools/virt-list-partitions.pl:126
29874 msgid "Display the total size of each block device (as a separate row or rows)."
29875 msgstr ""
29876
29877 #. type: textblock
29878 #: ../tools/virt-list-partitions.pl:259
29879 msgid ""
29880 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, "
29881 "L<virt-list-filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, "
29882 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29883 msgstr ""
29884
29885 #. type: textblock
29886 #: ../tools/virt-list-partitions.pl:275
29887 msgid "Copyright (C) 2009-2010 Red Hat Inc."
29888 msgstr ""