Version 1.11.6.
[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.6\n"
10 "Report-Msgid-Bugs-To: libguestfs@redhat.com\n"
11 "POT-Creation-Date: 2011-05-12 14:02+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:536 ../tools/virt-win-reg.pl:542 ../tools/virt-win-reg.pl:548
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:532
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:5820 ../fish/guestfish-actions.pod:3913
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:572 ../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:587 ../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:602 ../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:4752 ../src/guestfs-actions.pod:4772 ../src/guestfs-actions.pod:4786 ../src/guestfs-actions.pod:4803 ../src/guestfs-actions.pod:4852 ../src/guestfs-actions.pod:4889 ../src/guestfs-actions.pod:4903 ../src/guestfs-actions.pod:4931 ../src/guestfs-actions.pod:4948 ../src/guestfs-actions.pod:4966 ../src/guestfs-actions.pod:5100 ../src/guestfs-actions.pod:5157 ../src/guestfs-actions.pod:5179 ../src/guestfs-actions.pod:5197 ../src/guestfs-actions.pod:5229 ../src/guestfs-actions.pod:5295 ../src/guestfs-actions.pod:5312 ../src/guestfs-actions.pod:5325 ../src/guestfs-actions.pod:5339 ../src/guestfs-actions.pod:5628 ../src/guestfs-actions.pod:5647 ../src/guestfs-actions.pod:5666 ../src/guestfs-actions.pod:5678 ../src/guestfs-actions.pod:5690 ../src/guestfs-actions.pod:5704 ../src/guestfs-actions.pod:5716 ../src/guestfs-actions.pod:5730 ../src/guestfs-actions.pod:5746 ../src/guestfs-actions.pod:5767 ../src/guestfs-actions.pod:5786 ../src/guestfs-actions.pod:5805 ../src/guestfs-actions.pod:5835 ../src/guestfs-actions.pod:5851 ../src/guestfs-actions.pod:5874 ../src/guestfs-actions.pod:5892 ../src/guestfs-actions.pod:5911 ../src/guestfs-actions.pod:5932 ../src/guestfs-actions.pod:5951 ../src/guestfs-actions.pod:5968 ../src/guestfs-actions.pod:5996 ../src/guestfs-actions.pod:6020 ../src/guestfs-actions.pod:6039 ../src/guestfs-actions.pod:6063 ../src/guestfs-actions.pod:6082 ../src/guestfs-actions.pod:6097 ../src/guestfs-actions.pod:6116 ../src/guestfs-actions.pod:6153 ../src/guestfs-actions.pod:6176 ../src/guestfs-actions.pod:6202 ../src/guestfs-actions.pod:6310 ../src/guestfs-actions.pod:6431 ../src/guestfs-actions.pod:6443 ../src/guestfs-actions.pod:6456 ../src/guestfs-actions.pod:6469 ../src/guestfs-actions.pod:6491 ../src/guestfs-actions.pod:6504 ../src/guestfs-actions.pod:6517 ../src/guestfs-actions.pod:6530 ../src/guestfs-actions.pod:6545 ../src/guestfs-actions.pod:6604 ../src/guestfs-actions.pod:6621 ../src/guestfs-actions.pod:6637 ../src/guestfs-actions.pod:6653 ../src/guestfs-actions.pod:6670 ../src/guestfs-actions.pod:6683 ../src/guestfs-actions.pod:6703 ../src/guestfs-actions.pod:6739 ../src/guestfs-actions.pod:6753 ../src/guestfs-actions.pod:6794 ../src/guestfs-actions.pod:6807 ../src/guestfs-actions.pod:6825 ../src/guestfs-actions.pod:6859 ../src/guestfs-actions.pod:6895 ../src/guestfs-actions.pod:7014 ../src/guestfs-actions.pod:7032 ../src/guestfs-actions.pod:7046 ../src/guestfs-actions.pod:7101 ../src/guestfs-actions.pod:7114 ../src/guestfs-actions.pod:7159 ../src/guestfs-actions.pod:7192 ../src/guestfs-actions.pod:7246 ../src/guestfs-actions.pod:7272 ../src/guestfs-actions.pod:7338 ../src/guestfs-actions.pod:7357 ../src/guestfs-actions.pod:7386
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:7280 ../src/guestfs-actions.pod:7449 ../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:4871 ../fish/guestfish-actions.pod:4968
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:4739 ../src/guestfs-actions.pod:5853 ../src/guestfs-actions.pod:5970 ../src/guestfs-actions.pod:6084 ../src/guestfs-actions.pod:6547 ../src/guestfs-actions.pod:6672 ../src/guestfs-actions.pod:7194
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:4875 ../src/guestfs-actions.pod:5003 ../src/guestfs-actions.pod:5409 ../src/guestfs-actions.pod:5435 ../src/guestfs-actions.pod:6780 ../src/guestfs-actions.pod:7205 ../src/guestfs-actions.pod:7218 ../src/guestfs-actions.pod:7231
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:5486
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:5021 ../src/guestfs-actions.pod:5214 ../src/guestfs-actions.pod:5384 ../src/guestfs-actions.pod:5562 ../src/guestfs-actions.pod:5611 ../src/guestfs-actions.pod:6223 ../src/guestfs-actions.pod:6239 ../src/guestfs-actions.pod:6256 ../src/guestfs-actions.pod:6280 ../src/guestfs-actions.pod:6954 ../src/guestfs-actions.pod:6973 ../src/guestfs-actions.pod:6991 ../src/guestfs-actions.pod:7171 ../src/guestfs-actions.pod:7443
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:4836 ../src/guestfs-actions.pod:5356 ../src/guestfs-actions.pod:5482 ../src/guestfs-actions.pod:5596 ../src/guestfs-actions.pod:6296 ../src/guestfs-actions.pod:6357 ../src/guestfs-actions.pod:6412 ../src/guestfs-actions.pod:6558 ../src/guestfs-actions.pod:6582 ../src/guestfs-actions.pod:7064 ../src/guestfs-actions.pod:7084 ../src/guestfs-actions.pod:7131 ../src/guestfs-actions.pod:7296 ../src/guestfs-actions.pod:7315 ../src/guestfs-actions.pod:7400 ../src/guestfs-actions.pod:7419 ../src/guestfs-actions.pod:7465 ../src/guestfs-actions.pod:7484
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:4840 ../src/guestfs-actions.pod:5297 ../src/guestfs-actions.pod:5692 ../src/guestfs-actions.pod:5706 ../src/guestfs-actions.pod:5718 ../src/guestfs-actions.pod:6158 ../src/guestfs-actions.pod:6796 ../src/guestfs-actions.pod:6809 ../src/guestfs-actions.pod:7048 ../src/guestfs-actions.pod:7284
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:4985
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:6976
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:5472 ../fish/guestfish-actions.pod:585 ../fish/guestfish-actions.pod:3672
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:5254 ../src/guestfs-actions.pod:5280 ../src/guestfs-actions.pod:5411 ../src/guestfs-actions.pod:5437 ../src/guestfs-actions.pod:5461 ../src/guestfs-actions.pod:6361 ../src/guestfs-actions.pod:6416 ../src/guestfs-actions.pod:6562 ../src/guestfs-actions.pod:6586 ../src/guestfs-actions.pod:7248 ../src/guestfs-actions.pod:7274 ../src/guestfs-actions.pod:7300 ../src/guestfs-actions.pod:7319 ../src/guestfs-actions.pod:7404 ../src/guestfs-actions.pod:7423 ../src/guestfs-actions.pod:7469 ../src/guestfs-actions.pod:7488 ../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:3542 ../fish/guestfish-actions.pod:3557 ../fish/guestfish-actions.pod:3633 ../fish/guestfish-actions.pod:3650 ../fish/guestfish-actions.pod:3665 ../fish/guestfish-actions.pod:4291 ../fish/guestfish-actions.pod:4337 ../fish/guestfish-actions.pod:4422 ../fish/guestfish-actions.pod:4437 ../fish/guestfish-actions.pod:4847 ../fish/guestfish-actions.pod:4865 ../fish/guestfish-actions.pod:4882 ../fish/guestfish-actions.pod:4892 ../fish/guestfish-actions.pod:4940 ../fish/guestfish-actions.pod:4950 ../fish/guestfish-actions.pod:4979 ../fish/guestfish-actions.pod:4989
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:5360 ../src/guestfs-actions.pod:5374 ../src/guestfs-actions.pod:7135 ../src/guestfs-actions.pod:7149
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:6832
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:4891 ../src/guestfs-actions.pod:4950 ../src/guestfs-actions.pod:4987 ../src/guestfs-actions.pod:5005 ../src/guestfs-actions.pod:5181 ../src/guestfs-actions.pod:6741 ../src/guestfs-actions.pod:6755 ../src/guestfs-actions.pod:7161
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:6827 ../src/guestfs-actions.pod:6861 ../src/guestfs-actions.pod:7340 ../src/guestfs-actions.pod:7359
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:5387 ../src/guestfs-actions.pod:7068 ../src/guestfs-actions.pod:7088 ../src/guestfs-actions.pod:7174
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:4854 ../src/guestfs-actions.pod:5231
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:4754 ../src/guestfs-actions.pod:6565 ../src/guestfs-actions.pod:6589 ../src/guestfs-actions.pod:7207 ../src/guestfs-actions.pod:7220 ../src/guestfs-actions.pod:7233
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:6821 ../fish/guestfish-actions.pod:833 ../fish/guestfish-actions.pod:4595
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:6866
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:6065
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:5565 ../src/guestfs-actions.pod:5614 ../src/guestfs-actions.pod:6433 ../src/guestfs-actions.pod:6445 ../src/guestfs-actions.pod:6458 ../src/guestfs-actions.pod:6471 ../src/guestfs-actions.pod:6493 ../src/guestfs-actions.pod:6506 ../src/guestfs-actions.pod:6519 ../src/guestfs-actions.pod:6532 ../src/guestfs-actions.pod:7303 ../src/guestfs-actions.pod:7322 ../src/guestfs-actions.pod:7407 ../src/guestfs-actions.pod:7426 ../src/guestfs-actions.pod:7472 ../src/guestfs-actions.pod:7491
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:5649
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:7345
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:5327 ../src/guestfs-actions.pod:5807 ../src/guestfs-actions.pod:6207 ../src/guestfs-actions.pod:6226 ../src/guestfs-actions.pod:6242 ../src/guestfs-actions.pod:6259 ../src/guestfs-actions.pod:7016 ../src/guestfs-actions.pod:7034 ../src/guestfs-actions.pod:7388
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:5876
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:5894 ../src/guestfs-actions.pod:5913
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:5929 ../src/guestfs-actions.pod:6036 ../fish/guestfish-actions.pod:1353 ../fish/guestfish-actions.pod:1404 ../fish/guestfish-actions.pod:3998 ../fish/guestfish-actions.pod:4085
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:5552 ../src/guestfs-actions.pod:5934 ../src/guestfs-actions.pod:6181 ../src/guestfs-actions.pod:6782
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:5953
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:5998
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:5257 ../src/guestfs-actions.pod:5600 ../src/guestfs-actions.pod:6022 ../src/guestfs-actions.pod:6685 ../src/guestfs-actions.pod:6705 ../src/guestfs-actions.pod:6897
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:6041 ../src/guestfs-actions.pod:6099
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:5250 ../src/guestfs-actions.pod:5276 ../src/guestfs-actions.pod:5457
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:5630 ../src/guestfs-actions.pod:6118 ../src/guestfs-actions.pod:7453
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:6283 ../src/guestfs-actions.pod:6300
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:6580 ../fish/guestfish-actions.pod:1549 ../fish/guestfish-actions.pod:4435
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:6364 ../src/guestfs-actions.pod:6419
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:4816 ../src/guestfs-actions.pod:6721
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:5217
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:6320 ../fish/guestfish-actions.pod:2601 ../fish/guestfish-actions.pod:4270
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:6324
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:6328 ../src/guestfs-actions.pod:6346 ../src/guestfs-actions.pod:6727
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:4968 ../src/guestfs-actions.pod:5748 ../src/guestfs-actions.pod:6155 ../src/guestfs-actions.pod:6178 ../src/guestfs-actions.pod:6204 ../src/guestfs-actions.pod:7364 ../fish/guestfish-actions.pod:2668 ../fish/guestfish-actions.pod:2681 ../fish/guestfish-actions.pod:2765 ../fish/guestfish-actions.pod:3339 ../fish/guestfish-actions.pod:3859 ../fish/guestfish-actions.pod:4169 ../fish/guestfish-actions.pod:4185 ../fish/guestfish-actions.pod:4200 ../fish/guestfish-actions.pod:4915
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:5314 ../src/guestfs-actions.pod:7103
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:7116
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:4822 ../src/guestfs-actions.pod:5732
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: =head2
13533 #: ../src/guestfs-actions.pod:4741
13534 msgid "guestfs_mount_loop"
13535 msgstr ""
13536
13537 #. type: verbatim
13538 #: ../src/guestfs-actions.pod:4743
13539 #, no-wrap
13540 msgid ""
13541 " int\n"
13542 " guestfs_mount_loop (guestfs_h *g,\n"
13543 "                     const char *file,\n"
13544 "                     const char *mountpoint);\n"
13545 "\n"
13546 msgstr ""
13547
13548 #. type: textblock
13549 #: ../src/guestfs-actions.pod:4748 ../fish/guestfish-actions.pod:3211
13550 msgid ""
13551 "This command lets you mount C<file> (a filesystem image in a file) on a "
13552 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
13553 "mountpoint>."
13554 msgstr ""
13555
13556 #. type: =head2
13557 #: ../src/guestfs-actions.pod:4756
13558 msgid "guestfs_mount_options"
13559 msgstr ""
13560
13561 #. type: verbatim
13562 #: ../src/guestfs-actions.pod:4758
13563 #, no-wrap
13564 msgid ""
13565 " int\n"
13566 " guestfs_mount_options (guestfs_h *g,\n"
13567 "                        const char *options,\n"
13568 "                        const char *device,\n"
13569 "                        const char *mountpoint);\n"
13570 "\n"
13571 msgstr ""
13572
13573 #. type: textblock
13574 #: ../src/guestfs-actions.pod:4764
13575 msgid ""
13576 "This is the same as the C<guestfs_mount> command, but it allows you to set "
13577 "the mount options as for the L<mount(8)> I<-o> flag."
13578 msgstr ""
13579
13580 #. type: textblock
13581 #: ../src/guestfs-actions.pod:4768 ../fish/guestfish-actions.pod:3223
13582 msgid ""
13583 "If the C<options> parameter is an empty string, then no options are passed "
13584 "(all options default to whatever the filesystem uses)."
13585 msgstr ""
13586
13587 #. type: textblock
13588 #: ../src/guestfs-actions.pod:4774 ../src/guestfs-actions.pod:4788 ../src/guestfs-actions.pod:4805
13589 msgid "(Added in 1.0.10)"
13590 msgstr ""
13591
13592 #. type: =head2
13593 #: ../src/guestfs-actions.pod:4776
13594 msgid "guestfs_mount_ro"
13595 msgstr ""
13596
13597 #. type: verbatim
13598 #: ../src/guestfs-actions.pod:4778
13599 #, no-wrap
13600 msgid ""
13601 " int\n"
13602 " guestfs_mount_ro (guestfs_h *g,\n"
13603 "                   const char *device,\n"
13604 "                   const char *mountpoint);\n"
13605 "\n"
13606 msgstr ""
13607
13608 #. type: textblock
13609 #: ../src/guestfs-actions.pod:4783
13610 msgid ""
13611 "This is the same as the C<guestfs_mount> command, but it mounts the "
13612 "filesystem with the read-only (I<-o ro>) flag."
13613 msgstr ""
13614
13615 #. type: =head2
13616 #: ../src/guestfs-actions.pod:4790
13617 msgid "guestfs_mount_vfs"
13618 msgstr ""
13619
13620 #. type: verbatim
13621 #: ../src/guestfs-actions.pod:4792
13622 #, no-wrap
13623 msgid ""
13624 " int\n"
13625 " guestfs_mount_vfs (guestfs_h *g,\n"
13626 "                    const char *options,\n"
13627 "                    const char *vfstype,\n"
13628 "                    const char *device,\n"
13629 "                    const char *mountpoint);\n"
13630 "\n"
13631 msgstr ""
13632
13633 #. type: textblock
13634 #: ../src/guestfs-actions.pod:4799
13635 msgid ""
13636 "This is the same as the C<guestfs_mount> command, but it allows you to set "
13637 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and "
13638 "I<-t> flags."
13639 msgstr ""
13640
13641 #. type: =head2
13642 #: ../src/guestfs-actions.pod:4807
13643 msgid "guestfs_mountpoints"
13644 msgstr ""
13645
13646 #. type: verbatim
13647 #: ../src/guestfs-actions.pod:4809
13648 #, no-wrap
13649 msgid ""
13650 " char **\n"
13651 " guestfs_mountpoints (guestfs_h *g);\n"
13652 "\n"
13653 msgstr ""
13654
13655 #. type: textblock
13656 #: ../src/guestfs-actions.pod:4812
13657 msgid ""
13658 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
13659 "devices.  This one returns a hash table (map) of device name to directory "
13660 "where the device is mounted."
13661 msgstr ""
13662
13663 #. type: =head2
13664 #: ../src/guestfs-actions.pod:4824
13665 msgid "guestfs_mounts"
13666 msgstr ""
13667
13668 #. type: verbatim
13669 #: ../src/guestfs-actions.pod:4826
13670 #, no-wrap
13671 msgid ""
13672 " char **\n"
13673 " guestfs_mounts (guestfs_h *g);\n"
13674 "\n"
13675 msgstr ""
13676
13677 #. type: textblock
13678 #: ../src/guestfs-actions.pod:4829 ../fish/guestfish-actions.pod:3254
13679 msgid ""
13680 "This returns the list of currently mounted filesystems.  It returns the list "
13681 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
13682 msgstr ""
13683
13684 #. type: textblock
13685 #: ../src/guestfs-actions.pod:4832 ../fish/guestfish-actions.pod:3257
13686 msgid "Some internal mounts are not shown."
13687 msgstr ""
13688
13689 #. type: textblock
13690 #: ../src/guestfs-actions.pod:4834
13691 msgid "See also: C<guestfs_mountpoints>"
13692 msgstr ""
13693
13694 #. type: =head2
13695 #: ../src/guestfs-actions.pod:4842
13696 msgid "guestfs_mv"
13697 msgstr ""
13698
13699 #. type: verbatim
13700 #: ../src/guestfs-actions.pod:4844
13701 #, no-wrap
13702 msgid ""
13703 " int\n"
13704 " guestfs_mv (guestfs_h *g,\n"
13705 "             const char *src,\n"
13706 "             const char *dest);\n"
13707 "\n"
13708 msgstr ""
13709
13710 #. type: textblock
13711 #: ../src/guestfs-actions.pod:4849 ../fish/guestfish-actions.pod:3265
13712 msgid ""
13713 "This moves a file from C<src> to C<dest> where C<dest> is either a "
13714 "destination filename or destination directory."
13715 msgstr ""
13716
13717 #. type: =head2
13718 #: ../src/guestfs-actions.pod:4856
13719 msgid "guestfs_ntfs_3g_probe"
13720 msgstr ""
13721
13722 #. type: verbatim
13723 #: ../src/guestfs-actions.pod:4858
13724 #, no-wrap
13725 msgid ""
13726 " int\n"
13727 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
13728 "                        int rw,\n"
13729 "                        const char *device);\n"
13730 "\n"
13731 msgstr ""
13732
13733 #. type: textblock
13734 #: ../src/guestfs-actions.pod:4863 ../fish/guestfish-actions.pod:3272
13735 msgid ""
13736 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
13737 "C<device> for mountability.  (Not all NTFS volumes can be mounted "
13738 "read-write, and some cannot be mounted at all)."
13739 msgstr ""
13740
13741 #. type: textblock
13742 #: ../src/guestfs-actions.pod:4867 ../fish/guestfish-actions.pod:3276
13743 msgid ""
13744 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
13745 "can be mounted read-write.  Set it to false if you want to test if the "
13746 "volume can be mounted read-only."
13747 msgstr ""
13748
13749 #. type: textblock
13750 #: ../src/guestfs-actions.pod:4871 ../fish/guestfish-actions.pod:3280
13751 msgid ""
13752 "The return value is an integer which C<0> if the operation would succeed, or "
13753 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
13754 msgstr ""
13755
13756 #. type: textblock
13757 #: ../src/guestfs-actions.pod:4877
13758 msgid "(Added in 1.0.43)"
13759 msgstr ""
13760
13761 #. type: =head2
13762 #: ../src/guestfs-actions.pod:4879
13763 msgid "guestfs_ntfsresize"
13764 msgstr ""
13765
13766 #. type: verbatim
13767 #: ../src/guestfs-actions.pod:4881
13768 #, no-wrap
13769 msgid ""
13770 " int\n"
13771 " guestfs_ntfsresize (guestfs_h *g,\n"
13772 "                     const char *device);\n"
13773 "\n"
13774 msgstr ""
13775
13776 #. type: textblock
13777 #: ../src/guestfs-actions.pod:4885 ../fish/guestfish-actions.pod:3288
13778 msgid ""
13779 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
13780 "size of the underlying device.  See also L<ntfsresize(8)>."
13781 msgstr ""
13782
13783 #. type: =head2
13784 #: ../src/guestfs-actions.pod:4893
13785 msgid "guestfs_ntfsresize_size"
13786 msgstr ""
13787
13788 #. type: verbatim
13789 #: ../src/guestfs-actions.pod:4895
13790 #, no-wrap
13791 msgid ""
13792 " int\n"
13793 " guestfs_ntfsresize_size (guestfs_h *g,\n"
13794 "                          const char *device,\n"
13795 "                          int64_t size);\n"
13796 "\n"
13797 msgstr ""
13798
13799 #. type: textblock
13800 #: ../src/guestfs-actions.pod:4900
13801 msgid ""
13802 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
13803 "to specify the new size (in bytes) explicitly."
13804 msgstr ""
13805
13806 #. type: textblock
13807 #: ../src/guestfs-actions.pod:4905 ../src/guestfs-actions.pod:5341 ../src/guestfs-actions.pod:5414 ../src/guestfs-actions.pod:5680 ../src/guestfs-actions.pod:7251
13808 msgid "(Added in 1.3.14)"
13809 msgstr ""
13810
13811 #. type: =head2
13812 #: ../src/guestfs-actions.pod:4907
13813 msgid "guestfs_part_add"
13814 msgstr ""
13815
13816 #. type: verbatim
13817 #: ../src/guestfs-actions.pod:4909
13818 #, no-wrap
13819 msgid ""
13820 " int\n"
13821 " guestfs_part_add (guestfs_h *g,\n"
13822 "                   const char *device,\n"
13823 "                   const char *prlogex,\n"
13824 "                   int64_t startsect,\n"
13825 "                   int64_t endsect);\n"
13826 "\n"
13827 msgstr ""
13828
13829 #. type: textblock
13830 #: ../src/guestfs-actions.pod:4916
13831 msgid ""
13832 "This command adds a partition to C<device>.  If there is no partition table "
13833 "on the device, call C<guestfs_part_init> first."
13834 msgstr ""
13835
13836 #. type: textblock
13837 #: ../src/guestfs-actions.pod:4919 ../fish/guestfish-actions.pod:3306
13838 msgid ""
13839 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
13840 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
13841 "C<logical>) and C<e> (or C<extended>) partition types."
13842 msgstr ""
13843
13844 #. type: textblock
13845 #: ../src/guestfs-actions.pod:4924 ../fish/guestfish-actions.pod:3311
13846 msgid ""
13847 "C<startsect> and C<endsect> are the start and end of the partition in "
13848 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
13849 "from the end of the disk (C<-1> is the last sector)."
13850 msgstr ""
13851
13852 #. type: textblock
13853 #: ../src/guestfs-actions.pod:4928
13854 msgid ""
13855 "Creating a partition which covers the whole disk is not so easy.  Use "
13856 "C<guestfs_part_disk> to do that."
13857 msgstr ""
13858
13859 #. type: textblock
13860 #: ../src/guestfs-actions.pod:4933 ../src/guestfs-actions.pod:4971 ../src/guestfs-actions.pod:5024 ../src/guestfs-actions.pod:5102 ../src/guestfs-actions.pod:5140 ../src/guestfs-actions.pod:5159 ../src/guestfs-actions.pod:5199
13861 msgid "(Added in 1.0.78)"
13862 msgstr ""
13863
13864 #. type: =head2
13865 #: ../src/guestfs-actions.pod:4935
13866 msgid "guestfs_part_del"
13867 msgstr ""
13868
13869 #. type: verbatim
13870 #: ../src/guestfs-actions.pod:4937
13871 #, no-wrap
13872 msgid ""
13873 " int\n"
13874 " guestfs_part_del (guestfs_h *g,\n"
13875 "                   const char *device,\n"
13876 "                   int partnum);\n"
13877 "\n"
13878 msgstr ""
13879
13880 #. type: textblock
13881 #: ../src/guestfs-actions.pod:4942 ../fish/guestfish-actions.pod:3322
13882 msgid "This command deletes the partition numbered C<partnum> on C<device>."
13883 msgstr ""
13884
13885 #. type: textblock
13886 #: ../src/guestfs-actions.pod:4944 ../fish/guestfish-actions.pod:3324
13887 msgid ""
13888 "Note that in the case of MBR partitioning, deleting an extended partition "
13889 "also deletes any logical partitions it contains."
13890 msgstr ""
13891
13892 #. type: =head2
13893 #: ../src/guestfs-actions.pod:4952
13894 msgid "guestfs_part_disk"
13895 msgstr ""
13896
13897 #. type: verbatim
13898 #: ../src/guestfs-actions.pod:4954
13899 #, no-wrap
13900 msgid ""
13901 " int\n"
13902 " guestfs_part_disk (guestfs_h *g,\n"
13903 "                    const char *device,\n"
13904 "                    const char *parttype);\n"
13905 "\n"
13906 msgstr ""
13907
13908 #. type: textblock
13909 #: ../src/guestfs-actions.pod:4959
13910 msgid ""
13911 "This command is simply a combination of C<guestfs_part_init> followed by "
13912 "C<guestfs_part_add> to create a single primary partition covering the whole "
13913 "disk."
13914 msgstr ""
13915
13916 #. type: textblock
13917 #: ../src/guestfs-actions.pod:4963
13918 msgid ""
13919 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
13920 "possible values are described in C<guestfs_part_init>."
13921 msgstr ""
13922
13923 #. type: =head2
13924 #: ../src/guestfs-actions.pod:4973
13925 msgid "guestfs_part_get_bootable"
13926 msgstr ""
13927
13928 #. type: verbatim
13929 #: ../src/guestfs-actions.pod:4975
13930 #, no-wrap
13931 msgid ""
13932 " int\n"
13933 " guestfs_part_get_bootable (guestfs_h *g,\n"
13934 "                            const char *device,\n"
13935 "                            int partnum);\n"
13936 "\n"
13937 msgstr ""
13938
13939 #. type: textblock
13940 #: ../src/guestfs-actions.pod:4980 ../fish/guestfish-actions.pod:3346
13941 msgid ""
13942 "This command returns true if the partition C<partnum> on C<device> has the "
13943 "bootable flag set."
13944 msgstr ""
13945
13946 #. type: textblock
13947 #: ../src/guestfs-actions.pod:4983
13948 msgid "See also C<guestfs_part_set_bootable>."
13949 msgstr ""
13950
13951 #. type: =head2
13952 #: ../src/guestfs-actions.pod:4989
13953 msgid "guestfs_part_get_mbr_id"
13954 msgstr ""
13955
13956 #. type: verbatim
13957 #: ../src/guestfs-actions.pod:4991
13958 #, no-wrap
13959 msgid ""
13960 " int\n"
13961 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
13962 "                          const char *device,\n"
13963 "                          int partnum);\n"
13964 "\n"
13965 msgstr ""
13966
13967 #. type: textblock
13968 #: ../src/guestfs-actions.pod:4996 ../fish/guestfish-actions.pod:3355
13969 msgid ""
13970 "Returns the MBR type byte (also known as the ID byte) from the numbered "
13971 "partition C<partnum>."
13972 msgstr ""
13973
13974 #. type: textblock
13975 #: ../src/guestfs-actions.pod:4999 ../src/guestfs-actions.pod:5175
13976 msgid ""
13977 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
13978 "undefined results for other partition table types (see "
13979 "C<guestfs_part_get_parttype>)."
13980 msgstr ""
13981
13982 #. type: =head2
13983 #: ../src/guestfs-actions.pod:5007
13984 msgid "guestfs_part_get_parttype"
13985 msgstr ""
13986
13987 #. type: verbatim
13988 #: ../src/guestfs-actions.pod:5009
13989 #, no-wrap
13990 msgid ""
13991 " char *\n"
13992 " guestfs_part_get_parttype (guestfs_h *g,\n"
13993 "                            const char *device);\n"
13994 "\n"
13995 msgstr ""
13996
13997 #. type: textblock
13998 #: ../src/guestfs-actions.pod:5013 ../fish/guestfish-actions.pod:3366
13999 msgid ""
14000 "This command examines the partition table on C<device> and returns the "
14001 "partition table type (format) being used."
14002 msgstr ""
14003
14004 #. type: textblock
14005 #: ../src/guestfs-actions.pod:5016
14006 msgid ""
14007 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
14008 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
14009 "possible, although unusual.  See C<guestfs_part_init> for a full list."
14010 msgstr ""
14011
14012 #. type: =head2
14013 #: ../src/guestfs-actions.pod:5026
14014 msgid "guestfs_part_init"
14015 msgstr ""
14016
14017 #. type: verbatim
14018 #: ../src/guestfs-actions.pod:5028
14019 #, no-wrap
14020 msgid ""
14021 " int\n"
14022 " guestfs_part_init (guestfs_h *g,\n"
14023 "                    const char *device,\n"
14024 "                    const char *parttype);\n"
14025 "\n"
14026 msgstr ""
14027
14028 #. type: textblock
14029 #: ../src/guestfs-actions.pod:5033 ../fish/guestfish-actions.pod:3378
14030 msgid ""
14031 "This creates an empty partition table on C<device> of one of the partition "
14032 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
14033 "(for large disks)."
14034 msgstr ""
14035
14036 #. type: textblock
14037 #: ../src/guestfs-actions.pod:5037
14038 msgid ""
14039 "Initially there are no partitions.  Following this, you should call "
14040 "C<guestfs_part_add> for each partition required."
14041 msgstr ""
14042
14043 #. type: textblock
14044 #: ../src/guestfs-actions.pod:5040 ../fish/guestfish-actions.pod:3385
14045 msgid "Possible values for C<parttype> are:"
14046 msgstr ""
14047
14048 #. type: =item
14049 #: ../src/guestfs-actions.pod:5044 ../fish/guestfish-actions.pod:3389
14050 msgid "B<efi> | B<gpt>"
14051 msgstr ""
14052
14053 #. type: textblock
14054 #: ../src/guestfs-actions.pod:5046 ../fish/guestfish-actions.pod:3391
14055 msgid "Intel EFI / GPT partition table."
14056 msgstr ""
14057
14058 #. type: textblock
14059 #: ../src/guestfs-actions.pod:5048 ../fish/guestfish-actions.pod:3393
14060 msgid ""
14061 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
14062 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
14063 "the C<mbr> format."
14064 msgstr ""
14065
14066 #. type: =item
14067 #: ../src/guestfs-actions.pod:5052 ../fish/guestfish-actions.pod:3397
14068 msgid "B<mbr> | B<msdos>"
14069 msgstr ""
14070
14071 #. type: textblock
14072 #: ../src/guestfs-actions.pod:5054 ../fish/guestfish-actions.pod:3399
14073 msgid ""
14074 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
14075 "Windows.  This partition type will B<only> work for device sizes up to 2 "
14076 "TB.  For large disks we recommend using C<gpt>."
14077 msgstr ""
14078
14079 #. type: textblock
14080 #: ../src/guestfs-actions.pod:5061 ../fish/guestfish-actions.pod:3406
14081 msgid "Other partition table types that may work but are not supported include:"
14082 msgstr ""
14083
14084 #. type: =item
14085 #: ../src/guestfs-actions.pod:5066 ../fish/guestfish-actions.pod:3411
14086 msgid "B<aix>"
14087 msgstr ""
14088
14089 #. type: textblock
14090 #: ../src/guestfs-actions.pod:5068 ../fish/guestfish-actions.pod:3413
14091 msgid "AIX disk labels."
14092 msgstr ""
14093
14094 #. type: =item
14095 #: ../src/guestfs-actions.pod:5070 ../fish/guestfish-actions.pod:3415
14096 msgid "B<amiga> | B<rdb>"
14097 msgstr ""
14098
14099 #. type: textblock
14100 #: ../src/guestfs-actions.pod:5072 ../fish/guestfish-actions.pod:3417
14101 msgid "Amiga \"Rigid Disk Block\" format."
14102 msgstr ""
14103
14104 #. type: =item
14105 #: ../src/guestfs-actions.pod:5074 ../fish/guestfish-actions.pod:3419
14106 msgid "B<bsd>"
14107 msgstr ""
14108
14109 #. type: textblock
14110 #: ../src/guestfs-actions.pod:5076 ../fish/guestfish-actions.pod:3421
14111 msgid "BSD disk labels."
14112 msgstr ""
14113
14114 #. type: =item
14115 #: ../src/guestfs-actions.pod:5078 ../fish/guestfish-actions.pod:3423
14116 msgid "B<dasd>"
14117 msgstr ""
14118
14119 #. type: textblock
14120 #: ../src/guestfs-actions.pod:5080 ../fish/guestfish-actions.pod:3425
14121 msgid "DASD, used on IBM mainframes."
14122 msgstr ""
14123
14124 #. type: =item
14125 #: ../src/guestfs-actions.pod:5082 ../fish/guestfish-actions.pod:3427
14126 msgid "B<dvh>"
14127 msgstr ""
14128
14129 #. type: textblock
14130 #: ../src/guestfs-actions.pod:5084 ../fish/guestfish-actions.pod:3429
14131 msgid "MIPS/SGI volumes."
14132 msgstr ""
14133
14134 #. type: =item
14135 #: ../src/guestfs-actions.pod:5086 ../fish/guestfish-actions.pod:3431
14136 msgid "B<mac>"
14137 msgstr ""
14138
14139 #. type: textblock
14140 #: ../src/guestfs-actions.pod:5088 ../fish/guestfish-actions.pod:3433
14141 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
14142 msgstr ""
14143
14144 #. type: =item
14145 #: ../src/guestfs-actions.pod:5090 ../fish/guestfish-actions.pod:3435
14146 msgid "B<pc98>"
14147 msgstr ""
14148
14149 #. type: textblock
14150 #: ../src/guestfs-actions.pod:5092 ../fish/guestfish-actions.pod:3437
14151 msgid "NEC PC-98 format, common in Japan apparently."
14152 msgstr ""
14153
14154 #. type: =item
14155 #: ../src/guestfs-actions.pod:5094 ../fish/guestfish-actions.pod:3439
14156 msgid "B<sun>"
14157 msgstr ""
14158
14159 #. type: textblock
14160 #: ../src/guestfs-actions.pod:5096 ../fish/guestfish-actions.pod:3441
14161 msgid "Sun disk labels."
14162 msgstr ""
14163
14164 #. type: =head2
14165 #: ../src/guestfs-actions.pod:5104
14166 msgid "guestfs_part_list"
14167 msgstr ""
14168
14169 #. type: verbatim
14170 #: ../src/guestfs-actions.pod:5106
14171 #, no-wrap
14172 msgid ""
14173 " struct guestfs_partition_list *\n"
14174 " guestfs_part_list (guestfs_h *g,\n"
14175 "                    const char *device);\n"
14176 "\n"
14177 msgstr ""
14178
14179 #. type: textblock
14180 #: ../src/guestfs-actions.pod:5110 ../fish/guestfish-actions.pod:3449
14181 msgid ""
14182 "This command parses the partition table on C<device> and returns the list of "
14183 "partitions found."
14184 msgstr ""
14185
14186 #. type: textblock
14187 #: ../src/guestfs-actions.pod:5113 ../fish/guestfish-actions.pod:3452
14188 msgid "The fields in the returned structure are:"
14189 msgstr ""
14190
14191 #. type: =item
14192 #: ../src/guestfs-actions.pod:5117 ../fish/guestfish-actions.pod:3456
14193 msgid "B<part_num>"
14194 msgstr ""
14195
14196 #. type: textblock
14197 #: ../src/guestfs-actions.pod:5119 ../fish/guestfish-actions.pod:3458
14198 msgid "Partition number, counting from 1."
14199 msgstr ""
14200
14201 #. type: =item
14202 #: ../src/guestfs-actions.pod:5121 ../fish/guestfish-actions.pod:3460
14203 msgid "B<part_start>"
14204 msgstr ""
14205
14206 #. type: textblock
14207 #: ../src/guestfs-actions.pod:5123
14208 msgid ""
14209 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
14210 "the device's sector size, see C<guestfs_blockdev_getss>."
14211 msgstr ""
14212
14213 #. type: =item
14214 #: ../src/guestfs-actions.pod:5126 ../fish/guestfish-actions.pod:3465
14215 msgid "B<part_end>"
14216 msgstr ""
14217
14218 #. type: textblock
14219 #: ../src/guestfs-actions.pod:5128 ../fish/guestfish-actions.pod:3467
14220 msgid "End of the partition in bytes."
14221 msgstr ""
14222
14223 #. type: =item
14224 #: ../src/guestfs-actions.pod:5130 ../fish/guestfish-actions.pod:3469
14225 msgid "B<part_size>"
14226 msgstr ""
14227
14228 #. type: textblock
14229 #: ../src/guestfs-actions.pod:5132 ../fish/guestfish-actions.pod:3471
14230 msgid "Size of the partition in bytes."
14231 msgstr ""
14232
14233 #. type: textblock
14234 #: ../src/guestfs-actions.pod:5136
14235 msgid ""
14236 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
14237 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
14238 "use>."
14239 msgstr ""
14240
14241 #. type: =head2
14242 #: ../src/guestfs-actions.pod:5142
14243 msgid "guestfs_part_set_bootable"
14244 msgstr ""
14245
14246 #. type: verbatim
14247 #: ../src/guestfs-actions.pod:5144
14248 #, no-wrap
14249 msgid ""
14250 " int\n"
14251 " guestfs_part_set_bootable (guestfs_h *g,\n"
14252 "                            const char *device,\n"
14253 "                            int partnum,\n"
14254 "                            int bootable);\n"
14255 "\n"
14256 msgstr ""
14257
14258 #. type: textblock
14259 #: ../src/guestfs-actions.pod:5150 ../fish/guestfish-actions.pod:3479
14260 msgid ""
14261 "This sets the bootable flag on partition numbered C<partnum> on device "
14262 "C<device>.  Note that partitions are numbered from 1."
14263 msgstr ""
14264
14265 #. type: textblock
14266 #: ../src/guestfs-actions.pod:5153 ../fish/guestfish-actions.pod:3482
14267 msgid ""
14268 "The bootable flag is used by some operating systems (notably Windows) to "
14269 "determine which partition to boot from.  It is by no means universally "
14270 "recognized."
14271 msgstr ""
14272
14273 #. type: =head2
14274 #: ../src/guestfs-actions.pod:5161
14275 msgid "guestfs_part_set_mbr_id"
14276 msgstr ""
14277
14278 #. type: verbatim
14279 #: ../src/guestfs-actions.pod:5163
14280 #, no-wrap
14281 msgid ""
14282 " int\n"
14283 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
14284 "                          const char *device,\n"
14285 "                          int partnum,\n"
14286 "                          int idbyte);\n"
14287 "\n"
14288 msgstr ""
14289
14290 #. type: textblock
14291 #: ../src/guestfs-actions.pod:5169 ../fish/guestfish-actions.pod:3490
14292 msgid ""
14293 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
14294 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
14295 "documentation are in fact hexadecimal numbers, but usually documented "
14296 "without any leading \"0x\" which might be confusing."
14297 msgstr ""
14298
14299 #. type: =head2
14300 #: ../src/guestfs-actions.pod:5183
14301 msgid "guestfs_part_set_name"
14302 msgstr ""
14303
14304 #. type: verbatim
14305 #: ../src/guestfs-actions.pod:5185
14306 #, no-wrap
14307 msgid ""
14308 " int\n"
14309 " guestfs_part_set_name (guestfs_h *g,\n"
14310 "                        const char *device,\n"
14311 "                        int partnum,\n"
14312 "                        const char *name);\n"
14313 "\n"
14314 msgstr ""
14315
14316 #. type: textblock
14317 #: ../src/guestfs-actions.pod:5191 ../fish/guestfish-actions.pod:3504
14318 msgid ""
14319 "This sets the partition name on partition numbered C<partnum> on device "
14320 "C<device>.  Note that partitions are numbered from 1."
14321 msgstr ""
14322
14323 #. type: textblock
14324 #: ../src/guestfs-actions.pod:5194 ../fish/guestfish-actions.pod:3507
14325 msgid ""
14326 "The partition name can only be set on certain types of partition table.  "
14327 "This works on C<gpt> but not on C<mbr> partitions."
14328 msgstr ""
14329
14330 #. type: =head2
14331 #: ../src/guestfs-actions.pod:5201
14332 msgid "guestfs_part_to_dev"
14333 msgstr ""
14334
14335 #. type: verbatim
14336 #: ../src/guestfs-actions.pod:5203
14337 #, no-wrap
14338 msgid ""
14339 " char *\n"
14340 " guestfs_part_to_dev (guestfs_h *g,\n"
14341 "                      const char *partition);\n"
14342 "\n"
14343 msgstr ""
14344
14345 #. type: textblock
14346 #: ../src/guestfs-actions.pod:5207 ../fish/guestfish-actions.pod:3514
14347 msgid ""
14348 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
14349 "partition number, returning the device name (eg. \"/dev/sdb\")."
14350 msgstr ""
14351
14352 #. type: textblock
14353 #: ../src/guestfs-actions.pod:5211
14354 msgid ""
14355 "The named partition must exist, for example as a string returned from "
14356 "C<guestfs_list_partitions>."
14357 msgstr ""
14358
14359 #. type: =head2
14360 #: ../src/guestfs-actions.pod:5219
14361 msgid "guestfs_ping_daemon"
14362 msgstr ""
14363
14364 #. type: verbatim
14365 #: ../src/guestfs-actions.pod:5221
14366 #, no-wrap
14367 msgid ""
14368 " int\n"
14369 " guestfs_ping_daemon (guestfs_h *g);\n"
14370 "\n"
14371 msgstr ""
14372
14373 #. type: textblock
14374 #: ../src/guestfs-actions.pod:5224 ../fish/guestfish-actions.pod:3525
14375 msgid ""
14376 "This is a test probe into the guestfs daemon running inside the qemu "
14377 "subprocess.  Calling this function checks that the daemon responds to the "
14378 "ping message, without affecting the daemon or attached block device(s) in "
14379 "any other way."
14380 msgstr ""
14381
14382 #. type: =head2
14383 #: ../src/guestfs-actions.pod:5233
14384 msgid "guestfs_pread"
14385 msgstr ""
14386
14387 #. type: verbatim
14388 #: ../src/guestfs-actions.pod:5235
14389 #, no-wrap
14390 msgid ""
14391 " char *\n"
14392 " guestfs_pread (guestfs_h *g,\n"
14393 "                const char *path,\n"
14394 "                int count,\n"
14395 "                int64_t offset,\n"
14396 "                size_t *size_r);\n"
14397 "\n"
14398 msgstr ""
14399
14400 #. type: textblock
14401 #: ../src/guestfs-actions.pod:5242 ../fish/guestfish-actions.pod:3534
14402 msgid ""
14403 "This command lets you read part of a file.  It reads C<count> bytes of the "
14404 "file, starting at C<offset>, from file C<path>."
14405 msgstr ""
14406
14407 #. type: textblock
14408 #: ../src/guestfs-actions.pod:5245 ../src/guestfs-actions.pod:5271 ../fish/guestfish-actions.pod:3537 ../fish/guestfish-actions.pod:3552
14409 msgid ""
14410 "This may read fewer bytes than requested.  For further details see the "
14411 "L<pread(2)> system call."
14412 msgstr ""
14413
14414 #. type: textblock
14415 #: ../src/guestfs-actions.pod:5248
14416 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
14417 msgstr ""
14418
14419 #. type: =head2
14420 #: ../src/guestfs-actions.pod:5259
14421 msgid "guestfs_pread_device"
14422 msgstr ""
14423
14424 #. type: verbatim
14425 #: ../src/guestfs-actions.pod:5261
14426 #, no-wrap
14427 msgid ""
14428 " char *\n"
14429 " guestfs_pread_device (guestfs_h *g,\n"
14430 "                       const char *device,\n"
14431 "                       int count,\n"
14432 "                       int64_t offset,\n"
14433 "                       size_t *size_r);\n"
14434 "\n"
14435 msgstr ""
14436
14437 #. type: textblock
14438 #: ../src/guestfs-actions.pod:5268 ../fish/guestfish-actions.pod:3549
14439 msgid ""
14440 "This command lets you read part of a file.  It reads C<count> bytes of "
14441 "C<device>, starting at C<offset>."
14442 msgstr ""
14443
14444 #. type: textblock
14445 #: ../src/guestfs-actions.pod:5274
14446 msgid "See also C<guestfs_pread>."
14447 msgstr ""
14448
14449 #. type: textblock
14450 #: ../src/guestfs-actions.pod:5283
14451 msgid "(Added in 1.5.21)"
14452 msgstr ""
14453
14454 #. type: =head2
14455 #: ../src/guestfs-actions.pod:5285
14456 msgid "guestfs_pvcreate"
14457 msgstr ""
14458
14459 #. type: verbatim
14460 #: ../src/guestfs-actions.pod:5287
14461 #, no-wrap
14462 msgid ""
14463 " int\n"
14464 " guestfs_pvcreate (guestfs_h *g,\n"
14465 "                   const char *device);\n"
14466 "\n"
14467 msgstr ""
14468
14469 #. type: textblock
14470 #: ../src/guestfs-actions.pod:5291 ../fish/guestfish-actions.pod:3564
14471 msgid ""
14472 "This creates an LVM physical volume on the named C<device>, where C<device> "
14473 "should usually be a partition name such as C</dev/sda1>."
14474 msgstr ""
14475
14476 #. type: =head2
14477 #: ../src/guestfs-actions.pod:5299
14478 msgid "guestfs_pvremove"
14479 msgstr ""
14480
14481 #. type: verbatim
14482 #: ../src/guestfs-actions.pod:5301
14483 #, no-wrap
14484 msgid ""
14485 " int\n"
14486 " guestfs_pvremove (guestfs_h *g,\n"
14487 "                   const char *device);\n"
14488 "\n"
14489 msgstr ""
14490
14491 #. type: textblock
14492 #: ../src/guestfs-actions.pod:5305 ../fish/guestfish-actions.pod:3572
14493 msgid ""
14494 "This wipes a physical volume C<device> so that LVM will no longer recognise "
14495 "it."
14496 msgstr ""
14497
14498 #. type: textblock
14499 #: ../src/guestfs-actions.pod:5308 ../fish/guestfish-actions.pod:3575
14500 msgid ""
14501 "The implementation uses the C<pvremove> command which refuses to wipe "
14502 "physical volumes that contain any volume groups, so you have to remove those "
14503 "first."
14504 msgstr ""
14505
14506 #. type: =head2
14507 #: ../src/guestfs-actions.pod:5316
14508 msgid "guestfs_pvresize"
14509 msgstr ""
14510
14511 #. type: verbatim
14512 #: ../src/guestfs-actions.pod:5318
14513 #, no-wrap
14514 msgid ""
14515 " int\n"
14516 " guestfs_pvresize (guestfs_h *g,\n"
14517 "                   const char *device);\n"
14518 "\n"
14519 msgstr ""
14520
14521 #. type: textblock
14522 #: ../src/guestfs-actions.pod:5322 ../fish/guestfish-actions.pod:3583
14523 msgid ""
14524 "This resizes (expands or shrinks) an existing LVM physical volume to match "
14525 "the new size of the underlying device."
14526 msgstr ""
14527
14528 #. type: =head2
14529 #: ../src/guestfs-actions.pod:5329
14530 msgid "guestfs_pvresize_size"
14531 msgstr ""
14532
14533 #. type: verbatim
14534 #: ../src/guestfs-actions.pod:5331
14535 #, no-wrap
14536 msgid ""
14537 " int\n"
14538 " guestfs_pvresize_size (guestfs_h *g,\n"
14539 "                        const char *device,\n"
14540 "                        int64_t size);\n"
14541 "\n"
14542 msgstr ""
14543
14544 #. type: textblock
14545 #: ../src/guestfs-actions.pod:5336
14546 msgid ""
14547 "This command is the same as C<guestfs_pvresize> except that it allows you to "
14548 "specify the new size (in bytes) explicitly."
14549 msgstr ""
14550
14551 #. type: =head2
14552 #: ../src/guestfs-actions.pod:5343
14553 msgid "guestfs_pvs"
14554 msgstr ""
14555
14556 #. type: verbatim
14557 #: ../src/guestfs-actions.pod:5345
14558 #, no-wrap
14559 msgid ""
14560 " char **\n"
14561 " guestfs_pvs (guestfs_h *g);\n"
14562 "\n"
14563 msgstr ""
14564
14565 #. type: textblock
14566 #: ../src/guestfs-actions.pod:5348 ../fish/guestfish-actions.pod:3597
14567 msgid ""
14568 "List all the physical volumes detected.  This is the equivalent of the "
14569 "L<pvs(8)> command."
14570 msgstr ""
14571
14572 #. type: textblock
14573 #: ../src/guestfs-actions.pod:5351 ../fish/guestfish-actions.pod:3600
14574 msgid ""
14575 "This returns a list of just the device names that contain PVs "
14576 "(eg. C</dev/sda2>)."
14577 msgstr ""
14578
14579 #. type: textblock
14580 #: ../src/guestfs-actions.pod:5354
14581 msgid "See also C<guestfs_pvs_full>."
14582 msgstr ""
14583
14584 #. type: =head2
14585 #: ../src/guestfs-actions.pod:5362
14586 msgid "guestfs_pvs_full"
14587 msgstr ""
14588
14589 #. type: verbatim
14590 #: ../src/guestfs-actions.pod:5364
14591 #, no-wrap
14592 msgid ""
14593 " struct guestfs_lvm_pv_list *\n"
14594 " guestfs_pvs_full (guestfs_h *g);\n"
14595 "\n"
14596 msgstr ""
14597
14598 #. type: textblock
14599 #: ../src/guestfs-actions.pod:5367 ../fish/guestfish-actions.pod:3609
14600 msgid ""
14601 "List all the physical volumes detected.  This is the equivalent of the "
14602 "L<pvs(8)> command.  The \"full\" version includes all fields."
14603 msgstr ""
14604
14605 #. type: textblock
14606 #: ../src/guestfs-actions.pod:5370
14607 msgid ""
14608 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
14609 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after "
14610 "use>."
14611 msgstr ""
14612
14613 #. type: =head2
14614 #: ../src/guestfs-actions.pod:5376
14615 msgid "guestfs_pvuuid"
14616 msgstr ""
14617
14618 #. type: verbatim
14619 #: ../src/guestfs-actions.pod:5378
14620 #, no-wrap
14621 msgid ""
14622 " char *\n"
14623 " guestfs_pvuuid (guestfs_h *g,\n"
14624 "                 const char *device);\n"
14625 "\n"
14626 msgstr ""
14627
14628 #. type: textblock
14629 #: ../src/guestfs-actions.pod:5382 ../fish/guestfish-actions.pod:3616
14630 msgid "This command returns the UUID of the LVM PV C<device>."
14631 msgstr ""
14632
14633 #. type: =head2
14634 #: ../src/guestfs-actions.pod:5389
14635 msgid "guestfs_pwrite"
14636 msgstr ""
14637
14638 #. type: verbatim
14639 #: ../src/guestfs-actions.pod:5391
14640 #, no-wrap
14641 msgid ""
14642 " int\n"
14643 " guestfs_pwrite (guestfs_h *g,\n"
14644 "                 const char *path,\n"
14645 "                 const char *content,\n"
14646 "                 size_t content_size,\n"
14647 "                 int64_t offset);\n"
14648 "\n"
14649 msgstr ""
14650
14651 #. type: textblock
14652 #: ../src/guestfs-actions.pod:5398 ../fish/guestfish-actions.pod:3622
14653 msgid ""
14654 "This command writes to part of a file.  It writes the data buffer C<content> "
14655 "to the file C<path> starting at offset C<offset>."
14656 msgstr ""
14657
14658 #. type: textblock
14659 #: ../src/guestfs-actions.pod:5401 ../fish/guestfish-actions.pod:3625
14660 msgid ""
14661 "This command implements the L<pwrite(2)> system call, and like that system "
14662 "call it may not write the full data requested.  The return value is the "
14663 "number of bytes that were actually written to the file.  This could even be "
14664 "0, although short writes are unlikely for regular files in ordinary "
14665 "circumstances."
14666 msgstr ""
14667
14668 #. type: textblock
14669 #: ../src/guestfs-actions.pod:5407
14670 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
14671 msgstr ""
14672
14673 #. type: =head2
14674 #: ../src/guestfs-actions.pod:5416
14675 msgid "guestfs_pwrite_device"
14676 msgstr ""
14677
14678 #. type: verbatim
14679 #: ../src/guestfs-actions.pod:5418
14680 #, no-wrap
14681 msgid ""
14682 " int\n"
14683 " guestfs_pwrite_device (guestfs_h *g,\n"
14684 "                        const char *device,\n"
14685 "                        const char *content,\n"
14686 "                        size_t content_size,\n"
14687 "                        int64_t offset);\n"
14688 "\n"
14689 msgstr ""
14690
14691 #. type: textblock
14692 #: ../src/guestfs-actions.pod:5425 ../fish/guestfish-actions.pod:3640
14693 msgid ""
14694 "This command writes to part of a device.  It writes the data buffer "
14695 "C<content> to C<device> starting at offset C<offset>."
14696 msgstr ""
14697
14698 #. type: textblock
14699 #: ../src/guestfs-actions.pod:5428 ../fish/guestfish-actions.pod:3643
14700 msgid ""
14701 "This command implements the L<pwrite(2)> system call, and like that system "
14702 "call it may not write the full data requested (although short writes to disk "
14703 "devices and partitions are probably impossible with standard Linux kernels)."
14704 msgstr ""
14705
14706 #. type: textblock
14707 #: ../src/guestfs-actions.pod:5433
14708 msgid "See also C<guestfs_pwrite>."
14709 msgstr ""
14710
14711 #. type: textblock
14712 #: ../src/guestfs-actions.pod:5440
14713 msgid "(Added in 1.5.20)"
14714 msgstr ""
14715
14716 #. type: =head2
14717 #: ../src/guestfs-actions.pod:5442
14718 msgid "guestfs_read_file"
14719 msgstr ""
14720
14721 #. type: verbatim
14722 #: ../src/guestfs-actions.pod:5444
14723 #, no-wrap
14724 msgid ""
14725 " char *\n"
14726 " guestfs_read_file (guestfs_h *g,\n"
14727 "                    const char *path,\n"
14728 "                    size_t *size_r);\n"
14729 "\n"
14730 msgstr ""
14731
14732 #. type: textblock
14733 #: ../src/guestfs-actions.pod:5449 ../fish/guestfish-actions.pod:3657
14734 msgid "This calls returns the contents of the file C<path> as a buffer."
14735 msgstr ""
14736
14737 #. type: textblock
14738 #: ../src/guestfs-actions.pod:5452
14739 msgid ""
14740 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
14741 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
14742 "function is limited in the total size of file that can be handled."
14743 msgstr ""
14744
14745 #. type: textblock
14746 #: ../src/guestfs-actions.pod:5464
14747 msgid "(Added in 1.0.63)"
14748 msgstr ""
14749
14750 #. type: =head2
14751 #: ../src/guestfs-actions.pod:5466
14752 msgid "guestfs_read_lines"
14753 msgstr ""
14754
14755 #. type: verbatim
14756 #: ../src/guestfs-actions.pod:5468
14757 #, no-wrap
14758 msgid ""
14759 " char **\n"
14760 " guestfs_read_lines (guestfs_h *g,\n"
14761 "                     const char *path);\n"
14762 "\n"
14763 msgstr ""
14764
14765 #. type: textblock
14766 #: ../src/guestfs-actions.pod:5474 ../fish/guestfish-actions.pod:3674
14767 msgid ""
14768 "The file contents are returned as a list of lines.  Trailing C<LF> and "
14769 "C<CRLF> character sequences are I<not> returned."
14770 msgstr ""
14771
14772 #. type: textblock
14773 #: ../src/guestfs-actions.pod:5477
14774 msgid ""
14775 "Note that this function cannot correctly handle binary files (specifically, "
14776 "files containing C<\\0> character which is treated as end of line).  For "
14777 "those you need to use the C<guestfs_read_file> function which has a more "
14778 "complex interface."
14779 msgstr ""
14780
14781 #. type: =head2
14782 #: ../src/guestfs-actions.pod:5488
14783 msgid "guestfs_readdir"
14784 msgstr ""
14785
14786 #. type: verbatim
14787 #: ../src/guestfs-actions.pod:5490
14788 #, no-wrap
14789 msgid ""
14790 " struct guestfs_dirent_list *\n"
14791 " guestfs_readdir (guestfs_h *g,\n"
14792 "                  const char *dir);\n"
14793 "\n"
14794 msgstr ""
14795
14796 #. type: textblock
14797 #: ../src/guestfs-actions.pod:5494 ../fish/guestfish-actions.pod:3686
14798 msgid "This returns the list of directory entries in directory C<dir>."
14799 msgstr ""
14800
14801 #. type: textblock
14802 #: ../src/guestfs-actions.pod:5496 ../fish/guestfish-actions.pod:3688
14803 msgid ""
14804 "All entries in the directory are returned, including C<.> and C<..>.  The "
14805 "entries are I<not> sorted, but returned in the same order as the underlying "
14806 "filesystem."
14807 msgstr ""
14808
14809 #. type: textblock
14810 #: ../src/guestfs-actions.pod:5500 ../fish/guestfish-actions.pod:3692
14811 msgid ""
14812 "Also this call returns basic file type information about each file.  The "
14813 "C<ftyp> field will contain one of the following characters:"
14814 msgstr ""
14815
14816 #. type: =item
14817 #: ../src/guestfs-actions.pod:5505 ../fish/guestfish-actions.pod:3697
14818 msgid "'b'"
14819 msgstr ""
14820
14821 #. type: textblock
14822 #: ../src/guestfs-actions.pod:5507 ../fish/guestfish-actions.pod:3699
14823 msgid "Block special"
14824 msgstr ""
14825
14826 #. type: =item
14827 #: ../src/guestfs-actions.pod:5509 ../fish/guestfish-actions.pod:3701
14828 msgid "'c'"
14829 msgstr ""
14830
14831 #. type: textblock
14832 #: ../src/guestfs-actions.pod:5511 ../fish/guestfish-actions.pod:3703
14833 msgid "Char special"
14834 msgstr ""
14835
14836 #. type: =item
14837 #: ../src/guestfs-actions.pod:5513 ../fish/guestfish-actions.pod:3705
14838 msgid "'d'"
14839 msgstr ""
14840
14841 #. type: textblock
14842 #: ../src/guestfs-actions.pod:5515 ../fish/guestfish-actions.pod:3707
14843 msgid "Directory"
14844 msgstr ""
14845
14846 #. type: =item
14847 #: ../src/guestfs-actions.pod:5517 ../fish/guestfish-actions.pod:3709
14848 msgid "'f'"
14849 msgstr ""
14850
14851 #. type: textblock
14852 #: ../src/guestfs-actions.pod:5519 ../fish/guestfish-actions.pod:3711
14853 msgid "FIFO (named pipe)"
14854 msgstr ""
14855
14856 #. type: =item
14857 #: ../src/guestfs-actions.pod:5521 ../fish/guestfish-actions.pod:3713
14858 msgid "'l'"
14859 msgstr ""
14860
14861 #. type: textblock
14862 #: ../src/guestfs-actions.pod:5523 ../fish/guestfish-actions.pod:3715
14863 msgid "Symbolic link"
14864 msgstr ""
14865
14866 #. type: =item
14867 #: ../src/guestfs-actions.pod:5525 ../fish/guestfish-actions.pod:3717
14868 msgid "'r'"
14869 msgstr ""
14870
14871 #. type: textblock
14872 #: ../src/guestfs-actions.pod:5527 ../fish/guestfish-actions.pod:3719
14873 msgid "Regular file"
14874 msgstr ""
14875
14876 #. type: =item
14877 #: ../src/guestfs-actions.pod:5529 ../fish/guestfish-actions.pod:3721
14878 msgid "'s'"
14879 msgstr ""
14880
14881 #. type: textblock
14882 #: ../src/guestfs-actions.pod:5531 ../fish/guestfish-actions.pod:3723
14883 msgid "Socket"
14884 msgstr ""
14885
14886 #. type: =item
14887 #: ../src/guestfs-actions.pod:5533 ../fish/guestfish-actions.pod:3725
14888 msgid "'u'"
14889 msgstr ""
14890
14891 #. type: textblock
14892 #: ../src/guestfs-actions.pod:5535 ../fish/guestfish-actions.pod:3727
14893 msgid "Unknown file type"
14894 msgstr ""
14895
14896 #. type: =item
14897 #: ../src/guestfs-actions.pod:5537 ../fish/guestfish-actions.pod:3729
14898 msgid "'?'"
14899 msgstr ""
14900
14901 #. type: textblock
14902 #: ../src/guestfs-actions.pod:5539 ../fish/guestfish-actions.pod:3731
14903 msgid "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
14904 msgstr ""
14905
14906 #. type: textblock
14907 #: ../src/guestfs-actions.pod:5544
14908 msgid ""
14909 "This function is primarily intended for use by programs.  To get a simple "
14910 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
14911 "consumption, use C<guestfs_ll>."
14912 msgstr ""
14913
14914 #. type: textblock
14915 #: ../src/guestfs-actions.pod:5548
14916 msgid ""
14917 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
14918 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after "
14919 "use>."
14920 msgstr ""
14921
14922 #. type: =head2
14923 #: ../src/guestfs-actions.pod:5554
14924 msgid "guestfs_readlink"
14925 msgstr ""
14926
14927 #. type: verbatim
14928 #: ../src/guestfs-actions.pod:5556
14929 #, no-wrap
14930 msgid ""
14931 " char *\n"
14932 " guestfs_readlink (guestfs_h *g,\n"
14933 "                   const char *path);\n"
14934 "\n"
14935 msgstr ""
14936
14937 #. type: textblock
14938 #: ../src/guestfs-actions.pod:5560 ../fish/guestfish-actions.pod:3744
14939 msgid "This command reads the target of a symbolic link."
14940 msgstr ""
14941
14942 #. type: =head2
14943 #: ../src/guestfs-actions.pod:5567
14944 msgid "guestfs_readlinklist"
14945 msgstr ""
14946
14947 #. type: verbatim
14948 #: ../src/guestfs-actions.pod:5569
14949 #, no-wrap
14950 msgid ""
14951 " char **\n"
14952 " guestfs_readlinklist (guestfs_h *g,\n"
14953 "                       const char *path,\n"
14954 "                       char *const *names);\n"
14955 "\n"
14956 msgstr ""
14957
14958 #. type: textblock
14959 #: ../src/guestfs-actions.pod:5574 ../fish/guestfish-actions.pod:3750
14960 msgid ""
14961 "This call allows you to do a C<readlink> operation on multiple files, where "
14962 "all files are in the directory C<path>.  C<names> is the list of files from "
14963 "this directory."
14964 msgstr ""
14965
14966 #. type: textblock
14967 #: ../src/guestfs-actions.pod:5578 ../fish/guestfish-actions.pod:3754
14968 msgid ""
14969 "On return you get a list of strings, with a one-to-one correspondence to the "
14970 "C<names> list.  Each string is the value of the symbolic link."
14971 msgstr ""
14972
14973 #. type: textblock
14974 #: ../src/guestfs-actions.pod:5582 ../fish/guestfish-actions.pod:3758
14975 msgid ""
14976 "If the C<readlink(2)> operation fails on any name, then the corresponding "
14977 "result string is the empty string C<\"\">.  However the whole operation is "
14978 "completed even if there were C<readlink(2)> errors, and so you can call this "
14979 "function with names where you don't know if they are symbolic links already "
14980 "(albeit slightly less efficient)."
14981 msgstr ""
14982
14983 #. type: textblock
14984 #: ../src/guestfs-actions.pod:5589 ../fish/guestfish-actions.pod:3765
14985 msgid ""
14986 "This call is intended for programs that want to efficiently list a directory "
14987 "contents without making many round-trips.  Very long directory listings "
14988 "might cause the protocol message size to be exceeded, causing this call to "
14989 "fail.  The caller must split up such requests into smaller groups of names."
14990 msgstr ""
14991
14992 #. type: =head2
14993 #: ../src/guestfs-actions.pod:5602
14994 msgid "guestfs_realpath"
14995 msgstr ""
14996
14997 #. type: verbatim
14998 #: ../src/guestfs-actions.pod:5604
14999 #, no-wrap
15000 msgid ""
15001 " char *\n"
15002 " guestfs_realpath (guestfs_h *g,\n"
15003 "                   const char *path);\n"
15004 "\n"
15005 msgstr ""
15006
15007 #. type: textblock
15008 #: ../src/guestfs-actions.pod:5608 ../fish/guestfish-actions.pod:3776
15009 msgid ""
15010 "Return the canonicalized absolute pathname of C<path>.  The returned path "
15011 "has no C<.>, C<..> or symbolic link path elements."
15012 msgstr ""
15013
15014 #. type: =head2
15015 #: ../src/guestfs-actions.pod:5616
15016 msgid "guestfs_removexattr"
15017 msgstr ""
15018
15019 #. type: verbatim
15020 #: ../src/guestfs-actions.pod:5618
15021 #, no-wrap
15022 msgid ""
15023 " int\n"
15024 " guestfs_removexattr (guestfs_h *g,\n"
15025 "                      const char *xattr,\n"
15026 "                      const char *path);\n"
15027 "\n"
15028 msgstr ""
15029
15030 #. type: textblock
15031 #: ../src/guestfs-actions.pod:5623 ../fish/guestfish-actions.pod:3783
15032 msgid "This call removes the extended attribute named C<xattr> of the file C<path>."
15033 msgstr ""
15034
15035 #. type: textblock
15036 #: ../src/guestfs-actions.pod:5626
15037 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
15038 msgstr ""
15039
15040 #. type: =head2
15041 #: ../src/guestfs-actions.pod:5632
15042 msgid "guestfs_resize2fs"
15043 msgstr ""
15044
15045 #. type: verbatim
15046 #: ../src/guestfs-actions.pod:5634
15047 #, no-wrap
15048 msgid ""
15049 " int\n"
15050 " guestfs_resize2fs (guestfs_h *g,\n"
15051 "                    const char *device);\n"
15052 "\n"
15053 msgstr ""
15054
15055 #. type: textblock
15056 #: ../src/guestfs-actions.pod:5638 ../fish/guestfish-actions.pod:3792
15057 msgid ""
15058 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
15059 "underlying device."
15060 msgstr ""
15061
15062 #. type: textblock
15063 #: ../src/guestfs-actions.pod:5641
15064 msgid ""
15065 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
15066 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
15067 "sometimes gives an error about this and sometimes not.  In any case, it is "
15068 "always safe to call C<guestfs_e2fsck_f> before calling this function."
15069 msgstr ""
15070
15071 #. type: =head2
15072 #: ../src/guestfs-actions.pod:5651
15073 msgid "guestfs_resize2fs_M"
15074 msgstr ""
15075
15076 #. type: verbatim
15077 #: ../src/guestfs-actions.pod:5653
15078 #, no-wrap
15079 msgid ""
15080 " int\n"
15081 " guestfs_resize2fs_M (guestfs_h *g,\n"
15082 "                      const char *device);\n"
15083 "\n"
15084 msgstr ""
15085
15086 #. type: textblock
15087 #: ../src/guestfs-actions.pod:5657
15088 msgid ""
15089 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
15090 "resized to its minimum size.  This works like the I<-M> option to the "
15091 "C<resize2fs> command."
15092 msgstr ""
15093
15094 #. type: textblock
15095 #: ../src/guestfs-actions.pod:5661
15096 msgid ""
15097 "To get the resulting size of the filesystem you should call "
15098 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
15099 "These two numbers, multiplied together, give the resulting size of the "
15100 "minimal filesystem in bytes."
15101 msgstr ""
15102
15103 #. type: =head2
15104 #: ../src/guestfs-actions.pod:5668
15105 msgid "guestfs_resize2fs_size"
15106 msgstr ""
15107
15108 #. type: verbatim
15109 #: ../src/guestfs-actions.pod:5670
15110 #, no-wrap
15111 msgid ""
15112 " int\n"
15113 " guestfs_resize2fs_size (guestfs_h *g,\n"
15114 "                         const char *device,\n"
15115 "                         int64_t size);\n"
15116 "\n"
15117 msgstr ""
15118
15119 #. type: textblock
15120 #: ../src/guestfs-actions.pod:5675
15121 msgid ""
15122 "This command is the same as C<guestfs_resize2fs> except that it allows you "
15123 "to specify the new size (in bytes) explicitly."
15124 msgstr ""
15125
15126 #. type: =head2
15127 #: ../src/guestfs-actions.pod:5682
15128 msgid "guestfs_rm"
15129 msgstr ""
15130
15131 #. type: verbatim
15132 #: ../src/guestfs-actions.pod:5684
15133 #, no-wrap
15134 msgid ""
15135 " int\n"
15136 " guestfs_rm (guestfs_h *g,\n"
15137 "             const char *path);\n"
15138 "\n"
15139 msgstr ""
15140
15141 #. type: textblock
15142 #: ../src/guestfs-actions.pod:5688 ../fish/guestfish-actions.pod:3825
15143 msgid "Remove the single file C<path>."
15144 msgstr ""
15145
15146 #. type: =head2
15147 #: ../src/guestfs-actions.pod:5694
15148 msgid "guestfs_rm_rf"
15149 msgstr ""
15150
15151 #. type: verbatim
15152 #: ../src/guestfs-actions.pod:5696
15153 #, no-wrap
15154 msgid ""
15155 " int\n"
15156 " guestfs_rm_rf (guestfs_h *g,\n"
15157 "                const char *path);\n"
15158 "\n"
15159 msgstr ""
15160
15161 #. type: textblock
15162 #: ../src/guestfs-actions.pod:5700 ../fish/guestfish-actions.pod:3831
15163 msgid ""
15164 "Remove the file or directory C<path>, recursively removing the contents if "
15165 "its a directory.  This is like the C<rm -rf> shell command."
15166 msgstr ""
15167
15168 #. type: =head2
15169 #: ../src/guestfs-actions.pod:5708
15170 msgid "guestfs_rmdir"
15171 msgstr ""
15172
15173 #. type: verbatim
15174 #: ../src/guestfs-actions.pod:5710
15175 #, no-wrap
15176 msgid ""
15177 " int\n"
15178 " guestfs_rmdir (guestfs_h *g,\n"
15179 "                const char *path);\n"
15180 "\n"
15181 msgstr ""
15182
15183 #. type: textblock
15184 #: ../src/guestfs-actions.pod:5714 ../fish/guestfish-actions.pod:3839
15185 msgid "Remove the single directory C<path>."
15186 msgstr ""
15187
15188 #. type: =head2
15189 #: ../src/guestfs-actions.pod:5720
15190 msgid "guestfs_rmmountpoint"
15191 msgstr ""
15192
15193 #. type: verbatim
15194 #: ../src/guestfs-actions.pod:5722
15195 #, no-wrap
15196 msgid ""
15197 " int\n"
15198 " guestfs_rmmountpoint (guestfs_h *g,\n"
15199 "                       const char *exemptpath);\n"
15200 "\n"
15201 msgstr ""
15202
15203 #. type: textblock
15204 #: ../src/guestfs-actions.pod:5726
15205 msgid ""
15206 "This calls removes a mountpoint that was previously created with "
15207 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
15208 msgstr ""
15209
15210 #. type: =head2
15211 #: ../src/guestfs-actions.pod:5734
15212 msgid "guestfs_scrub_device"
15213 msgstr ""
15214
15215 #. type: verbatim
15216 #: ../src/guestfs-actions.pod:5736
15217 #, no-wrap
15218 msgid ""
15219 " int\n"
15220 " guestfs_scrub_device (guestfs_h *g,\n"
15221 "                       const char *device);\n"
15222 "\n"
15223 msgstr ""
15224
15225 #. type: textblock
15226 #: ../src/guestfs-actions.pod:5740 ../fish/guestfish-actions.pod:3853
15227 msgid ""
15228 "This command writes patterns over C<device> to make data retrieval more "
15229 "difficult."
15230 msgstr ""
15231
15232 #. type: textblock
15233 #: ../src/guestfs-actions.pod:5743 ../src/guestfs-actions.pod:5764 ../src/guestfs-actions.pod:5783 ../fish/guestfish-actions.pod:3856 ../fish/guestfish-actions.pod:3871 ../fish/guestfish-actions.pod:3884
15234 msgid ""
15235 "It is an interface to the L<scrub(1)> program.  See that manual page for "
15236 "more details."
15237 msgstr ""
15238
15239 #. type: textblock
15240 #: ../src/guestfs-actions.pod:5751 ../src/guestfs-actions.pod:5769 ../src/guestfs-actions.pod:5788
15241 msgid "(Added in 1.0.52)"
15242 msgstr ""
15243
15244 #. type: =head2
15245 #: ../src/guestfs-actions.pod:5753
15246 msgid "guestfs_scrub_file"
15247 msgstr ""
15248
15249 #. type: verbatim
15250 #: ../src/guestfs-actions.pod:5755
15251 #, no-wrap
15252 msgid ""
15253 " int\n"
15254 " guestfs_scrub_file (guestfs_h *g,\n"
15255 "                     const char *file);\n"
15256 "\n"
15257 msgstr ""
15258
15259 #. type: textblock
15260 #: ../src/guestfs-actions.pod:5759 ../fish/guestfish-actions.pod:3866
15261 msgid ""
15262 "This command writes patterns over a file to make data retrieval more "
15263 "difficult."
15264 msgstr ""
15265
15266 #. type: textblock
15267 #: ../src/guestfs-actions.pod:5762 ../fish/guestfish-actions.pod:3869
15268 msgid "The file is I<removed> after scrubbing."
15269 msgstr ""
15270
15271 #. type: =head2
15272 #: ../src/guestfs-actions.pod:5771
15273 msgid "guestfs_scrub_freespace"
15274 msgstr ""
15275
15276 #. type: verbatim
15277 #: ../src/guestfs-actions.pod:5773
15278 #, no-wrap
15279 msgid ""
15280 " int\n"
15281 " guestfs_scrub_freespace (guestfs_h *g,\n"
15282 "                          const char *dir);\n"
15283 "\n"
15284 msgstr ""
15285
15286 #. type: textblock
15287 #: ../src/guestfs-actions.pod:5777
15288 msgid ""
15289 "This command creates the directory C<dir> and then fills it with files until "
15290 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
15291 "and deletes them.  The intention is to scrub any free space on the partition "
15292 "containing C<dir>."
15293 msgstr ""
15294
15295 #. type: =head2
15296 #: ../src/guestfs-actions.pod:5790
15297 msgid "guestfs_set_append"
15298 msgstr ""
15299
15300 #. type: verbatim
15301 #: ../src/guestfs-actions.pod:5792
15302 #, no-wrap
15303 msgid ""
15304 " int\n"
15305 " guestfs_set_append (guestfs_h *g,\n"
15306 "                     const char *append);\n"
15307 "\n"
15308 msgstr ""
15309
15310 #. type: textblock
15311 #: ../src/guestfs-actions.pod:5796 ../fish/guestfish-actions.pod:3893
15312 msgid ""
15313 "This function is used to add additional options to the guest kernel command "
15314 "line."
15315 msgstr ""
15316
15317 #. type: textblock
15318 #: ../src/guestfs-actions.pod:5799 ../fish/guestfish-actions.pod:3896
15319 msgid ""
15320 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
15321 "environment variable."
15322 msgstr ""
15323
15324 #. type: textblock
15325 #: ../src/guestfs-actions.pod:5802 ../fish/guestfish-actions.pod:3899
15326 msgid ""
15327 "Setting C<append> to C<NULL> means I<no> additional options are passed "
15328 "(libguestfs always adds a few of its own)."
15329 msgstr ""
15330
15331 #. type: =head2
15332 #: ../src/guestfs-actions.pod:5809
15333 msgid "guestfs_set_attach_method"
15334 msgstr ""
15335
15336 #. type: verbatim
15337 #: ../src/guestfs-actions.pod:5811
15338 #, no-wrap
15339 msgid ""
15340 " int\n"
15341 " guestfs_set_attach_method (guestfs_h *g,\n"
15342 "                            const char *attachmethod);\n"
15343 "\n"
15344 msgstr ""
15345
15346 #. type: textblock
15347 #: ../src/guestfs-actions.pod:5815 ../fish/guestfish-actions.pod:3908
15348 msgid ""
15349 "Set the method that libguestfs uses to connect to the back end guestfsd "
15350 "daemon.  Possible methods are:"
15351 msgstr ""
15352
15353 #. type: textblock
15354 #: ../src/guestfs-actions.pod:5822 ../fish/guestfish-actions.pod:3915
15355 msgid ""
15356 "Launch an appliance and connect to it.  This is the ordinary method and the "
15357 "default."
15358 msgstr ""
15359
15360 #. type: =item
15361 #: ../src/guestfs-actions.pod:5825 ../fish/guestfish-actions.pod:3918
15362 msgid "C<unix:I<path>>"
15363 msgstr ""
15364
15365 #. type: textblock
15366 #: ../src/guestfs-actions.pod:5827 ../fish/guestfish-actions.pod:3920
15367 msgid "Connect to the Unix domain socket I<path>."
15368 msgstr ""
15369
15370 #. type: textblock
15371 #: ../src/guestfs-actions.pod:5829 ../fish/guestfish-actions.pod:3922
15372 msgid ""
15373 "This method lets you connect to an existing daemon or (using virtio-serial) "
15374 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
15375 "RUNNING DAEMONS>."
15376 msgstr ""
15377
15378 #. type: =head2
15379 #: ../src/guestfs-actions.pod:5837
15380 msgid "guestfs_set_autosync"
15381 msgstr ""
15382
15383 #. type: verbatim
15384 #: ../src/guestfs-actions.pod:5839
15385 #, no-wrap
15386 msgid ""
15387 " int\n"
15388 " guestfs_set_autosync (guestfs_h *g,\n"
15389 "                       int autosync);\n"
15390 "\n"
15391 msgstr ""
15392
15393 #. type: textblock
15394 #: ../src/guestfs-actions.pod:5843 ../fish/guestfish-actions.pod:3934
15395 msgid ""
15396 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
15397 "effort attempt to make filesystems consistent and synchronized when the "
15398 "handle is closed (also if the program exits without closing handles)."
15399 msgstr ""
15400
15401 #. type: textblock
15402 #: ../src/guestfs-actions.pod:5848 ../fish/guestfish-actions.pod:3939
15403 msgid ""
15404 "This is enabled by default (since libguestfs 1.5.24, previously it was "
15405 "disabled by default)."
15406 msgstr ""
15407
15408 #. type: =head2
15409 #: ../src/guestfs-actions.pod:5855
15410 msgid "guestfs_set_direct"
15411 msgstr ""
15412
15413 #. type: verbatim
15414 #: ../src/guestfs-actions.pod:5857
15415 #, no-wrap
15416 msgid ""
15417 " int\n"
15418 " guestfs_set_direct (guestfs_h *g,\n"
15419 "                     int direct);\n"
15420 "\n"
15421 msgstr ""
15422
15423 #. type: textblock
15424 #: ../src/guestfs-actions.pod:5861 ../fish/guestfish-actions.pod:3948
15425 msgid ""
15426 "If the direct appliance mode flag is enabled, then stdin and stdout are "
15427 "passed directly through to the appliance once it is launched."
15428 msgstr ""
15429
15430 #. type: textblock
15431 #: ../src/guestfs-actions.pod:5865
15432 msgid ""
15433 "One consequence of this is that log messages aren't caught by the library "
15434 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
15435 "stdout."
15436 msgstr ""
15437
15438 #. type: textblock
15439 #: ../src/guestfs-actions.pod:5869 ../fish/guestfish-actions.pod:3956
15440 msgid "You probably don't want to use this unless you know what you are doing."
15441 msgstr ""
15442
15443 #. type: textblock
15444 #: ../src/guestfs-actions.pod:5872 ../fish/guestfish-actions.pod:3959
15445 msgid "The default is disabled."
15446 msgstr ""
15447
15448 #. type: =head2
15449 #: ../src/guestfs-actions.pod:5878
15450 msgid "guestfs_set_e2label"
15451 msgstr ""
15452
15453 #. type: verbatim
15454 #: ../src/guestfs-actions.pod:5880
15455 #, no-wrap
15456 msgid ""
15457 " int\n"
15458 " guestfs_set_e2label (guestfs_h *g,\n"
15459 "                      const char *device,\n"
15460 "                      const char *label);\n"
15461 "\n"
15462 msgstr ""
15463
15464 #. type: textblock
15465 #: ../src/guestfs-actions.pod:5885 ../fish/guestfish-actions.pod:3965
15466 msgid ""
15467 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
15468 "C<label>.  Filesystem labels are limited to 16 characters."
15469 msgstr ""
15470
15471 #. type: textblock
15472 #: ../src/guestfs-actions.pod:5889
15473 msgid ""
15474 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
15475 "the existing label on a filesystem."
15476 msgstr ""
15477
15478 #. type: =head2
15479 #: ../src/guestfs-actions.pod:5896
15480 msgid "guestfs_set_e2uuid"
15481 msgstr ""
15482
15483 #. type: verbatim
15484 #: ../src/guestfs-actions.pod:5898
15485 #, no-wrap
15486 msgid ""
15487 " int\n"
15488 " guestfs_set_e2uuid (guestfs_h *g,\n"
15489 "                     const char *device,\n"
15490 "                     const char *uuid);\n"
15491 "\n"
15492 msgstr ""
15493
15494 #. type: textblock
15495 #: ../src/guestfs-actions.pod:5903 ../fish/guestfish-actions.pod:3976
15496 msgid ""
15497 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
15498 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
15499 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
15500 msgstr ""
15501
15502 #. type: textblock
15503 #: ../src/guestfs-actions.pod:5908
15504 msgid ""
15505 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
15506 "the existing UUID of a filesystem."
15507 msgstr ""
15508
15509 #. type: =head2
15510 #: ../src/guestfs-actions.pod:5915
15511 msgid "guestfs_set_memsize"
15512 msgstr ""
15513
15514 #. type: verbatim
15515 #: ../src/guestfs-actions.pod:5917
15516 #, no-wrap
15517 msgid ""
15518 " int\n"
15519 " guestfs_set_memsize (guestfs_h *g,\n"
15520 "                      int memsize);\n"
15521 "\n"
15522 msgstr ""
15523
15524 #. type: textblock
15525 #: ../src/guestfs-actions.pod:5921
15526 msgid ""
15527 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
15528 "This only has any effect if called before C<guestfs_launch>."
15529 msgstr ""
15530
15531 #. type: textblock
15532 #: ../src/guestfs-actions.pod:5925 ../fish/guestfish-actions.pod:3994
15533 msgid ""
15534 "You can also change this by setting the environment variable "
15535 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
15536 msgstr ""
15537
15538 #. type: =head2
15539 #: ../src/guestfs-actions.pod:5936
15540 msgid "guestfs_set_network"
15541 msgstr ""
15542
15543 #. type: verbatim
15544 #: ../src/guestfs-actions.pod:5938
15545 #, no-wrap
15546 msgid ""
15547 " int\n"
15548 " guestfs_set_network (guestfs_h *g,\n"
15549 "                      int network);\n"
15550 "\n"
15551 msgstr ""
15552
15553 #. type: textblock
15554 #: ../src/guestfs-actions.pod:5942 ../fish/guestfish-actions.pod:4007
15555 msgid ""
15556 "If C<network> is true, then the network is enabled in the libguestfs "
15557 "appliance.  The default is false."
15558 msgstr ""
15559
15560 #. type: textblock
15561 #: ../src/guestfs-actions.pod:5945 ../fish/guestfish-actions.pod:4010
15562 msgid ""
15563 "This affects whether commands are able to access the network (see "
15564 "L<guestfs(3)/RUNNING COMMANDS>)."
15565 msgstr ""
15566
15567 #. type: textblock
15568 #: ../src/guestfs-actions.pod:5948
15569 msgid ""
15570 "You must call this before calling C<guestfs_launch>, otherwise it has no "
15571 "effect."
15572 msgstr ""
15573
15574 #. type: =head2
15575 #: ../src/guestfs-actions.pod:5955
15576 msgid "guestfs_set_path"
15577 msgstr ""
15578
15579 #. type: verbatim
15580 #: ../src/guestfs-actions.pod:5957
15581 #, no-wrap
15582 msgid ""
15583 " int\n"
15584 " guestfs_set_path (guestfs_h *g,\n"
15585 "                   const char *searchpath);\n"
15586 "\n"
15587 msgstr ""
15588
15589 #. type: textblock
15590 #: ../src/guestfs-actions.pod:5961 ../fish/guestfish-actions.pod:4022
15591 msgid "Set the path that libguestfs searches for kernel and initrd.img."
15592 msgstr ""
15593
15594 #. type: textblock
15595 #: ../src/guestfs-actions.pod:5963 ../fish/guestfish-actions.pod:4024
15596 msgid ""
15597 "The default is C<$libdir/guestfs> unless overridden by setting "
15598 "C<LIBGUESTFS_PATH> environment variable."
15599 msgstr ""
15600
15601 #. type: textblock
15602 #: ../src/guestfs-actions.pod:5966 ../fish/guestfish-actions.pod:4027
15603 msgid "Setting C<path> to C<NULL> restores the default path."
15604 msgstr ""
15605
15606 #. type: =head2
15607 #: ../src/guestfs-actions.pod:5972
15608 msgid "guestfs_set_qemu"
15609 msgstr ""
15610
15611 #. type: verbatim
15612 #: ../src/guestfs-actions.pod:5974
15613 #, no-wrap
15614 msgid ""
15615 " int\n"
15616 " guestfs_set_qemu (guestfs_h *g,\n"
15617 "                   const char *qemu);\n"
15618 "\n"
15619 msgstr ""
15620
15621 #. type: textblock
15622 #: ../src/guestfs-actions.pod:5978 ../fish/guestfish-actions.pod:4035
15623 msgid "Set the qemu binary that we will use."
15624 msgstr ""
15625
15626 #. type: textblock
15627 #: ../src/guestfs-actions.pod:5980 ../fish/guestfish-actions.pod:4037
15628 msgid "The default is chosen when the library was compiled by the configure script."
15629 msgstr ""
15630
15631 #. type: textblock
15632 #: ../src/guestfs-actions.pod:5983 ../fish/guestfish-actions.pod:4040
15633 msgid ""
15634 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
15635 "variable."
15636 msgstr ""
15637
15638 #. type: textblock
15639 #: ../src/guestfs-actions.pod:5986 ../fish/guestfish-actions.pod:4043
15640 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
15641 msgstr ""
15642
15643 #. type: textblock
15644 #: ../src/guestfs-actions.pod:5988 ../fish/guestfish-actions.pod:4045
15645 msgid ""
15646 "Note that you should call this function as early as possible after creating "
15647 "the handle.  This is because some pre-launch operations depend on testing "
15648 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
15649 "don't retest features, and so you might see inconsistent results.  Using the "
15650 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
15651 "the qemu binary at the same time as the handle is created."
15652 msgstr ""
15653
15654 #. type: =head2
15655 #: ../src/guestfs-actions.pod:6000
15656 msgid "guestfs_set_recovery_proc"
15657 msgstr ""
15658
15659 #. type: verbatim
15660 #: ../src/guestfs-actions.pod:6002
15661 #, no-wrap
15662 msgid ""
15663 " int\n"
15664 " guestfs_set_recovery_proc (guestfs_h *g,\n"
15665 "                            int recoveryproc);\n"
15666 "\n"
15667 msgstr ""
15668
15669 #. type: textblock
15670 #: ../src/guestfs-actions.pod:6006
15671 msgid ""
15672 "If this is called with the parameter C<false> then C<guestfs_launch> does "
15673 "not create a recovery process.  The purpose of the recovery process is to "
15674 "stop runaway qemu processes in the case where the main program aborts "
15675 "abruptly."
15676 msgstr ""
15677
15678 #. type: textblock
15679 #: ../src/guestfs-actions.pod:6011
15680 msgid ""
15681 "This only has any effect if called before C<guestfs_launch>, and the default "
15682 "is true."
15683 msgstr ""
15684
15685 #. type: textblock
15686 #: ../src/guestfs-actions.pod:6014 ../fish/guestfish-actions.pod:4067
15687 msgid ""
15688 "About the only time when you would want to disable this is if the main "
15689 "process will fork itself into the background (\"daemonize\" itself).  In "
15690 "this case the recovery process thinks that the main program has disappeared "
15691 "and so kills qemu, which is not very helpful."
15692 msgstr ""
15693
15694 #. type: =head2
15695 #: ../src/guestfs-actions.pod:6024
15696 msgid "guestfs_set_selinux"
15697 msgstr ""
15698
15699 #. type: verbatim
15700 #: ../src/guestfs-actions.pod:6026
15701 #, no-wrap
15702 msgid ""
15703 " int\n"
15704 " guestfs_set_selinux (guestfs_h *g,\n"
15705 "                      int selinux);\n"
15706 "\n"
15707 msgstr ""
15708
15709 #. type: textblock
15710 #: ../src/guestfs-actions.pod:6030 ../fish/guestfish-actions.pod:4079
15711 msgid ""
15712 "This sets the selinux flag that is passed to the appliance at boot time.  "
15713 "The default is C<selinux=0> (disabled)."
15714 msgstr ""
15715
15716 #. type: textblock
15717 #: ../src/guestfs-actions.pod:6033 ../fish/guestfish-actions.pod:4082
15718 msgid ""
15719 "Note that if SELinux is enabled, it is always in Permissive mode "
15720 "(C<enforcing=0>)."
15721 msgstr ""
15722
15723 #. type: =head2
15724 #: ../src/guestfs-actions.pod:6043
15725 msgid "guestfs_set_trace"
15726 msgstr ""
15727
15728 #. type: verbatim
15729 #: ../src/guestfs-actions.pod:6045
15730 #, no-wrap
15731 msgid ""
15732 " int\n"
15733 " guestfs_set_trace (guestfs_h *g,\n"
15734 "                    int trace);\n"
15735 "\n"
15736 msgstr ""
15737
15738 #. type: textblock
15739 #: ../src/guestfs-actions.pod:6049 ../fish/guestfish-actions.pod:4094
15740 msgid ""
15741 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
15742 "return values are traced."
15743 msgstr ""
15744
15745 #. type: textblock
15746 #: ../src/guestfs-actions.pod:6052 ../fish/guestfish-actions.pod:4097
15747 msgid ""
15748 "If you want to trace C API calls into libguestfs (and other libraries) then "
15749 "possibly a better way is to use the external ltrace(1) command."
15750 msgstr ""
15751
15752 #. type: textblock
15753 #: ../src/guestfs-actions.pod:6056 ../fish/guestfish-actions.pod:4101
15754 msgid ""
15755 "Command traces are disabled unless the environment variable "
15756 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
15757 msgstr ""
15758
15759 #. type: textblock
15760 #: ../src/guestfs-actions.pod:6059
15761 msgid ""
15762 "Trace messages are normally sent to C<stderr>, unless you register a "
15763 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
15764 msgstr ""
15765
15766 #. type: =head2
15767 #: ../src/guestfs-actions.pod:6067
15768 msgid "guestfs_set_verbose"
15769 msgstr ""
15770
15771 #. type: verbatim
15772 #: ../src/guestfs-actions.pod:6069
15773 #, no-wrap
15774 msgid ""
15775 " int\n"
15776 " guestfs_set_verbose (guestfs_h *g,\n"
15777 "                      int verbose);\n"
15778 "\n"
15779 msgstr ""
15780
15781 #. type: textblock
15782 #: ../src/guestfs-actions.pod:6073 ../fish/guestfish-actions.pod:4114
15783 msgid "If C<verbose> is true, this turns on verbose messages."
15784 msgstr ""
15785
15786 #. type: textblock
15787 #: ../src/guestfs-actions.pod:6075 ../fish/guestfish-actions.pod:4116
15788 msgid ""
15789 "Verbose messages are disabled unless the environment variable "
15790 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
15791 msgstr ""
15792
15793 #. type: textblock
15794 #: ../src/guestfs-actions.pod:6078
15795 msgid ""
15796 "Verbose messages are normally sent to C<stderr>, unless you register a "
15797 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
15798 msgstr ""
15799
15800 #. type: =head2
15801 #: ../src/guestfs-actions.pod:6086
15802 msgid "guestfs_setcon"
15803 msgstr ""
15804
15805 #. type: verbatim
15806 #: ../src/guestfs-actions.pod:6088
15807 #, no-wrap
15808 msgid ""
15809 " int\n"
15810 " guestfs_setcon (guestfs_h *g,\n"
15811 "                 const char *context);\n"
15812 "\n"
15813 msgstr ""
15814
15815 #. type: textblock
15816 #: ../src/guestfs-actions.pod:6092 ../fish/guestfish-actions.pod:4127
15817 msgid ""
15818 "This sets the SELinux security context of the daemon to the string "
15819 "C<context>."
15820 msgstr ""
15821
15822 #. type: textblock
15823 #: ../src/guestfs-actions.pod:6095 ../fish/guestfish-actions.pod:4130
15824 msgid "See the documentation about SELINUX in L<guestfs(3)>."
15825 msgstr ""
15826
15827 #. type: =head2
15828 #: ../src/guestfs-actions.pod:6101
15829 msgid "guestfs_setxattr"
15830 msgstr ""
15831
15832 #. type: verbatim
15833 #: ../src/guestfs-actions.pod:6103
15834 #, no-wrap
15835 msgid ""
15836 " int\n"
15837 " guestfs_setxattr (guestfs_h *g,\n"
15838 "                   const char *xattr,\n"
15839 "                   const char *val,\n"
15840 "                   int vallen,\n"
15841 "                   const char *path);\n"
15842 "\n"
15843 msgstr ""
15844
15845 #. type: textblock
15846 #: ../src/guestfs-actions.pod:6110 ../fish/guestfish-actions.pod:4136
15847 msgid ""
15848 "This call sets the extended attribute named C<xattr> of the file C<path> to "
15849 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
15850 msgstr ""
15851
15852 #. type: textblock
15853 #: ../src/guestfs-actions.pod:6114
15854 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
15855 msgstr ""
15856
15857 #. type: =head2
15858 #: ../src/guestfs-actions.pod:6120
15859 msgid "guestfs_sfdisk"
15860 msgstr ""
15861
15862 #. type: verbatim
15863 #: ../src/guestfs-actions.pod:6122
15864 #, no-wrap
15865 msgid ""
15866 " int\n"
15867 " guestfs_sfdisk (guestfs_h *g,\n"
15868 "                 const char *device,\n"
15869 "                 int cyls,\n"
15870 "                 int heads,\n"
15871 "                 int sectors,\n"
15872 "                 char *const *lines);\n"
15873 "\n"
15874 msgstr ""
15875
15876 #. type: textblock
15877 #: ../src/guestfs-actions.pod:6130 ../fish/guestfish-actions.pod:4146
15878 msgid ""
15879 "This is a direct interface to the L<sfdisk(8)> program for creating "
15880 "partitions on block devices."
15881 msgstr ""
15882
15883 #. type: textblock
15884 #: ../src/guestfs-actions.pod:6133 ../fish/guestfish-actions.pod:4149
15885 msgid "C<device> should be a block device, for example C</dev/sda>."
15886 msgstr ""
15887
15888 #. type: textblock
15889 #: ../src/guestfs-actions.pod:6135 ../fish/guestfish-actions.pod:4151
15890 msgid ""
15891 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
15892 "sectors on the device, which are passed directly to sfdisk as the I<-C>, "
15893 "I<-H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
15894 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
15895 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
15896 "the kernel) cannot work out the right geometry and you will need to tell it."
15897 msgstr ""
15898
15899 #. type: textblock
15900 #: ../src/guestfs-actions.pod:6143 ../fish/guestfish-actions.pod:4159
15901 msgid ""
15902 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
15903 "refer to the L<sfdisk(8)> manpage."
15904 msgstr ""
15905
15906 #. type: textblock
15907 #: ../src/guestfs-actions.pod:6146 ../fish/guestfish-actions.pod:4162
15908 msgid ""
15909 "To create a single partition occupying the whole disk, you would pass "
15910 "C<lines> as a single element list, when the single element being the string "
15911 "C<,> (comma)."
15912 msgstr ""
15913
15914 #. type: textblock
15915 #: ../src/guestfs-actions.pod:6150
15916 msgid "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
15917 msgstr ""
15918
15919 #. type: =head2
15920 #: ../src/guestfs-actions.pod:6160
15921 msgid "guestfs_sfdiskM"
15922 msgstr ""
15923
15924 #. type: verbatim
15925 #: ../src/guestfs-actions.pod:6162
15926 #, no-wrap
15927 msgid ""
15928 " int\n"
15929 " guestfs_sfdiskM (guestfs_h *g,\n"
15930 "                  const char *device,\n"
15931 "                  char *const *lines);\n"
15932 "\n"
15933 msgstr ""
15934
15935 #. type: textblock
15936 #: ../src/guestfs-actions.pod:6167
15937 msgid ""
15938 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
15939 "partition sizes are specified in megabytes only (rounded to the nearest "
15940 "cylinder) and you don't need to specify the cyls, heads and sectors "
15941 "parameters which were rarely if ever used anyway."
15942 msgstr ""
15943
15944 #. type: textblock
15945 #: ../src/guestfs-actions.pod:6173
15946 msgid ""
15947 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
15948 "C<guestfs_part_disk>"
15949 msgstr ""
15950
15951 #. type: =head2
15952 #: ../src/guestfs-actions.pod:6183
15953 msgid "guestfs_sfdisk_N"
15954 msgstr ""
15955
15956 #. type: verbatim
15957 #: ../src/guestfs-actions.pod:6185
15958 #, no-wrap
15959 msgid ""
15960 " int\n"
15961 " guestfs_sfdisk_N (guestfs_h *g,\n"
15962 "                   const char *device,\n"
15963 "                   int partnum,\n"
15964 "                   int cyls,\n"
15965 "                   int heads,\n"
15966 "                   int sectors,\n"
15967 "                   const char *line);\n"
15968 "\n"
15969 msgstr ""
15970
15971 #. type: textblock
15972 #: ../src/guestfs-actions.pod:6194 ../fish/guestfish-actions.pod:4192
15973 msgid ""
15974 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
15975 "(note: C<n> counts from 1)."
15976 msgstr ""
15977
15978 #. type: textblock
15979 #: ../src/guestfs-actions.pod:6197
15980 msgid ""
15981 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
15982 "for the cyls/heads/sectors parameters."
15983 msgstr ""
15984
15985 #. type: textblock
15986 #: ../src/guestfs-actions.pod:6200
15987 msgid "See also: C<guestfs_part_add>"
15988 msgstr ""
15989
15990 #. type: =head2
15991 #: ../src/guestfs-actions.pod:6209
15992 msgid "guestfs_sfdisk_disk_geometry"
15993 msgstr ""
15994
15995 #. type: verbatim
15996 #: ../src/guestfs-actions.pod:6211
15997 #, no-wrap
15998 msgid ""
15999 " char *\n"
16000 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
16001 "                               const char *device);\n"
16002 "\n"
16003 msgstr ""
16004
16005 #. type: textblock
16006 #: ../src/guestfs-actions.pod:6215
16007 msgid ""
16008 "This displays the disk geometry of C<device> read from the partition table.  "
16009 "Especially in the case where the underlying block device has been resized, "
16010 "this can be different from the kernel's idea of the geometry (see "
16011 "C<guestfs_sfdisk_kernel_geometry>)."
16012 msgstr ""
16013
16014 #. type: textblock
16015 #: ../src/guestfs-actions.pod:6220 ../src/guestfs-actions.pod:6236 ../fish/guestfish-actions.pod:4212 ../fish/guestfish-actions.pod:4221
16016 msgid "The result is in human-readable format, and not designed to be parsed."
16017 msgstr ""
16018
16019 #. type: =head2
16020 #: ../src/guestfs-actions.pod:6228
16021 msgid "guestfs_sfdisk_kernel_geometry"
16022 msgstr ""
16023
16024 #. type: verbatim
16025 #: ../src/guestfs-actions.pod:6230
16026 #, no-wrap
16027 msgid ""
16028 " char *\n"
16029 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
16030 "                                 const char *device);\n"
16031 "\n"
16032 msgstr ""
16033
16034 #. type: textblock
16035 #: ../src/guestfs-actions.pod:6234 ../fish/guestfish-actions.pod:4219
16036 msgid "This displays the kernel's idea of the geometry of C<device>."
16037 msgstr ""
16038
16039 #. type: =head2
16040 #: ../src/guestfs-actions.pod:6244
16041 msgid "guestfs_sfdisk_l"
16042 msgstr ""
16043
16044 #. type: verbatim
16045 #: ../src/guestfs-actions.pod:6246
16046 #, no-wrap
16047 msgid ""
16048 " char *\n"
16049 " guestfs_sfdisk_l (guestfs_h *g,\n"
16050 "                   const char *device);\n"
16051 "\n"
16052 msgstr ""
16053
16054 #. type: textblock
16055 #: ../src/guestfs-actions.pod:6250 ../fish/guestfish-actions.pod:4228
16056 msgid ""
16057 "This displays the partition table on C<device>, in the human-readable output "
16058 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
16059 msgstr ""
16060
16061 #. type: textblock
16062 #: ../src/guestfs-actions.pod:6254
16063 msgid "See also: C<guestfs_part_list>"
16064 msgstr ""
16065
16066 #. type: =head2
16067 #: ../src/guestfs-actions.pod:6261
16068 msgid "guestfs_sh"
16069 msgstr ""
16070
16071 #. type: verbatim
16072 #: ../src/guestfs-actions.pod:6263
16073 #, no-wrap
16074 msgid ""
16075 " char *\n"
16076 " guestfs_sh (guestfs_h *g,\n"
16077 "             const char *command);\n"
16078 "\n"
16079 msgstr ""
16080
16081 #. type: textblock
16082 #: ../src/guestfs-actions.pod:6267 ../fish/guestfish-actions.pod:4238
16083 msgid ""
16084 "This call runs a command from the guest filesystem via the guest's "
16085 "C</bin/sh>."
16086 msgstr ""
16087
16088 #. type: textblock
16089 #: ../src/guestfs-actions.pod:6270
16090 msgid "This is like C<guestfs_command>, but passes the command to:"
16091 msgstr ""
16092
16093 #. type: verbatim
16094 #: ../src/guestfs-actions.pod:6272 ../fish/guestfish-actions.pod:4243
16095 #, no-wrap
16096 msgid ""
16097 " /bin/sh -c \"command\"\n"
16098 "\n"
16099 msgstr ""
16100
16101 #. type: textblock
16102 #: ../src/guestfs-actions.pod:6274 ../fish/guestfish-actions.pod:4245
16103 msgid ""
16104 "Depending on the guest's shell, this usually results in wildcards being "
16105 "expanded, shell expressions being interpolated and so on."
16106 msgstr ""
16107
16108 #. type: textblock
16109 #: ../src/guestfs-actions.pod:6278
16110 msgid "All the provisos about C<guestfs_command> apply to this call."
16111 msgstr ""
16112
16113 #. type: =head2
16114 #: ../src/guestfs-actions.pod:6285
16115 msgid "guestfs_sh_lines"
16116 msgstr ""
16117
16118 #. type: verbatim
16119 #: ../src/guestfs-actions.pod:6287
16120 #, no-wrap
16121 msgid ""
16122 " char **\n"
16123 " guestfs_sh_lines (guestfs_h *g,\n"
16124 "                   const char *command);\n"
16125 "\n"
16126 msgstr ""
16127
16128 #. type: textblock
16129 #: ../src/guestfs-actions.pod:6291
16130 msgid ""
16131 "This is the same as C<guestfs_sh>, but splits the result into a list of "
16132 "lines."
16133 msgstr ""
16134
16135 #. type: textblock
16136 #: ../src/guestfs-actions.pod:6294
16137 msgid "See also: C<guestfs_command_lines>"
16138 msgstr ""
16139
16140 #. type: =head2
16141 #: ../src/guestfs-actions.pod:6302
16142 msgid "guestfs_sleep"
16143 msgstr ""
16144
16145 #. type: verbatim
16146 #: ../src/guestfs-actions.pod:6304
16147 #, no-wrap
16148 msgid ""
16149 " int\n"
16150 " guestfs_sleep (guestfs_h *g,\n"
16151 "                int secs);\n"
16152 "\n"
16153 msgstr ""
16154
16155 #. type: textblock
16156 #: ../src/guestfs-actions.pod:6308 ../fish/guestfish-actions.pod:4264
16157 msgid "Sleep for C<secs> seconds."
16158 msgstr ""
16159
16160 #. type: textblock
16161 #: ../src/guestfs-actions.pod:6312
16162 msgid "(Added in 1.0.41)"
16163 msgstr ""
16164
16165 #. type: =head2
16166 #: ../src/guestfs-actions.pod:6314 ../src/guestfs-structs.pod:109
16167 msgid "guestfs_stat"
16168 msgstr ""
16169
16170 #. type: verbatim
16171 #: ../src/guestfs-actions.pod:6316
16172 #, no-wrap
16173 msgid ""
16174 " struct guestfs_stat *\n"
16175 " guestfs_stat (guestfs_h *g,\n"
16176 "               const char *path);\n"
16177 "\n"
16178 msgstr ""
16179
16180 #. type: textblock
16181 #: ../src/guestfs-actions.pod:6322 ../fish/guestfish-actions.pod:4272
16182 msgid "This is the same as the C<stat(2)> system call."
16183 msgstr ""
16184
16185 #. type: =head2
16186 #: ../src/guestfs-actions.pod:6330 ../src/guestfs-structs.pod:135
16187 msgid "guestfs_statvfs"
16188 msgstr ""
16189
16190 #. type: verbatim
16191 #: ../src/guestfs-actions.pod:6332
16192 #, no-wrap
16193 msgid ""
16194 " struct guestfs_statvfs *\n"
16195 " guestfs_statvfs (guestfs_h *g,\n"
16196 "                  const char *path);\n"
16197 "\n"
16198 msgstr ""
16199
16200 #. type: textblock
16201 #: ../src/guestfs-actions.pod:6336 ../fish/guestfish-actions.pod:4278
16202 msgid ""
16203 "Returns file system statistics for any mounted file system.  C<path> should "
16204 "be a file or directory in the mounted file system (typically it is the mount "
16205 "point itself, but it doesn't need to be)."
16206 msgstr ""
16207
16208 #. type: textblock
16209 #: ../src/guestfs-actions.pod:6340 ../fish/guestfish-actions.pod:4282
16210 msgid "This is the same as the C<statvfs(2)> system call."
16211 msgstr ""
16212
16213 #. type: textblock
16214 #: ../src/guestfs-actions.pod:6342
16215 msgid ""
16216 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
16217 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
16218 msgstr ""
16219
16220 #. type: =head2
16221 #: ../src/guestfs-actions.pod:6348
16222 msgid "guestfs_strings"
16223 msgstr ""
16224
16225 #. type: verbatim
16226 #: ../src/guestfs-actions.pod:6350
16227 #, no-wrap
16228 msgid ""
16229 " char **\n"
16230 " guestfs_strings (guestfs_h *g,\n"
16231 "                  const char *path);\n"
16232 "\n"
16233 msgstr ""
16234
16235 #. type: textblock
16236 #: ../src/guestfs-actions.pod:6354 ../fish/guestfish-actions.pod:4288
16237 msgid ""
16238 "This runs the L<strings(1)> command on a file and returns the list of "
16239 "printable strings found."
16240 msgstr ""
16241
16242 #. type: =head2
16243 #: ../src/guestfs-actions.pod:6366
16244 msgid "guestfs_strings_e"
16245 msgstr ""
16246
16247 #. type: verbatim
16248 #: ../src/guestfs-actions.pod:6368
16249 #, no-wrap
16250 msgid ""
16251 " char **\n"
16252 " guestfs_strings_e (guestfs_h *g,\n"
16253 "                    const char *encoding,\n"
16254 "                    const char *path);\n"
16255 "\n"
16256 msgstr ""
16257
16258 #. type: textblock
16259 #: ../src/guestfs-actions.pod:6373
16260 msgid ""
16261 "This is like the C<guestfs_strings> command, but allows you to specify the "
16262 "encoding of strings that are looked for in the source file C<path>."
16263 msgstr ""
16264
16265 #. type: textblock
16266 #: ../src/guestfs-actions.pod:6377 ../fish/guestfish-actions.pod:4302
16267 msgid "Allowed encodings are:"
16268 msgstr ""
16269
16270 #. type: =item
16271 #: ../src/guestfs-actions.pod:6381 ../fish/guestfish-actions.pod:4306
16272 msgid "s"
16273 msgstr ""
16274
16275 #. type: textblock
16276 #: ../src/guestfs-actions.pod:6383
16277 msgid ""
16278 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
16279 "ISO-8859-X (this is what C<guestfs_strings> uses)."
16280 msgstr ""
16281
16282 #. type: =item
16283 #: ../src/guestfs-actions.pod:6386 ../fish/guestfish-actions.pod:4311
16284 msgid "S"
16285 msgstr ""
16286
16287 #. type: textblock
16288 #: ../src/guestfs-actions.pod:6388 ../fish/guestfish-actions.pod:4313
16289 msgid "Single 8-bit-byte characters."
16290 msgstr ""
16291
16292 #. type: =item
16293 #: ../src/guestfs-actions.pod:6390 ../fish/guestfish-actions.pod:4315
16294 msgid "b"
16295 msgstr ""
16296
16297 #. type: textblock
16298 #: ../src/guestfs-actions.pod:6392 ../fish/guestfish-actions.pod:4317
16299 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
16300 msgstr ""
16301
16302 #. type: =item
16303 #: ../src/guestfs-actions.pod:6395 ../fish/guestfish-actions.pod:4320
16304 msgid "l (lower case letter L)"
16305 msgstr ""
16306
16307 #. type: textblock
16308 #: ../src/guestfs-actions.pod:6397 ../fish/guestfish-actions.pod:4322
16309 msgid ""
16310 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
16311 "examining binaries in Windows guests."
16312 msgstr ""
16313
16314 #. type: =item
16315 #: ../src/guestfs-actions.pod:6400 ../fish/guestfish-actions.pod:4325
16316 msgid "B"
16317 msgstr ""
16318
16319 #. type: textblock
16320 #: ../src/guestfs-actions.pod:6402 ../fish/guestfish-actions.pod:4327
16321 msgid "32-bit big endian such as UCS-4BE."
16322 msgstr ""
16323
16324 #. type: =item
16325 #: ../src/guestfs-actions.pod:6404 ../fish/guestfish-actions.pod:4329
16326 msgid "L"
16327 msgstr ""
16328
16329 #. type: textblock
16330 #: ../src/guestfs-actions.pod:6406 ../fish/guestfish-actions.pod:4331
16331 msgid "32-bit little endian such as UCS-4LE."
16332 msgstr ""
16333
16334 #. type: textblock
16335 #: ../src/guestfs-actions.pod:6410 ../fish/guestfish-actions.pod:4335
16336 msgid "The returned strings are transcoded to UTF-8."
16337 msgstr ""
16338
16339 #. type: =head2
16340 #: ../src/guestfs-actions.pod:6421
16341 msgid "guestfs_swapoff_device"
16342 msgstr ""
16343
16344 #. type: verbatim
16345 #: ../src/guestfs-actions.pod:6423
16346 #, no-wrap
16347 msgid ""
16348 " int\n"
16349 " guestfs_swapoff_device (guestfs_h *g,\n"
16350 "                         const char *device);\n"
16351 "\n"
16352 msgstr ""
16353
16354 #. type: textblock
16355 #: ../src/guestfs-actions.pod:6427
16356 msgid ""
16357 "This command disables the libguestfs appliance swap device or partition "
16358 "named C<device>.  See C<guestfs_swapon_device>."
16359 msgstr ""
16360
16361 #. type: =head2
16362 #: ../src/guestfs-actions.pod:6435
16363 msgid "guestfs_swapoff_file"
16364 msgstr ""
16365
16366 #. type: verbatim
16367 #: ../src/guestfs-actions.pod:6437
16368 #, no-wrap
16369 msgid ""
16370 " int\n"
16371 " guestfs_swapoff_file (guestfs_h *g,\n"
16372 "                       const char *file);\n"
16373 "\n"
16374 msgstr ""
16375
16376 #. type: textblock
16377 #: ../src/guestfs-actions.pod:6441 ../fish/guestfish-actions.pod:4352
16378 msgid "This command disables the libguestfs appliance swap on file."
16379 msgstr ""
16380
16381 #. type: =head2
16382 #: ../src/guestfs-actions.pod:6447
16383 msgid "guestfs_swapoff_label"
16384 msgstr ""
16385
16386 #. type: verbatim
16387 #: ../src/guestfs-actions.pod:6449
16388 #, no-wrap
16389 msgid ""
16390 " int\n"
16391 " guestfs_swapoff_label (guestfs_h *g,\n"
16392 "                        const char *label);\n"
16393 "\n"
16394 msgstr ""
16395
16396 #. type: textblock
16397 #: ../src/guestfs-actions.pod:6453 ../fish/guestfish-actions.pod:4358
16398 msgid ""
16399 "This command disables the libguestfs appliance swap on labeled swap "
16400 "partition."
16401 msgstr ""
16402
16403 #. type: =head2
16404 #: ../src/guestfs-actions.pod:6460
16405 msgid "guestfs_swapoff_uuid"
16406 msgstr ""
16407
16408 #. type: verbatim
16409 #: ../src/guestfs-actions.pod:6462
16410 #, no-wrap
16411 msgid ""
16412 " int\n"
16413 " guestfs_swapoff_uuid (guestfs_h *g,\n"
16414 "                       const char *uuid);\n"
16415 "\n"
16416 msgstr ""
16417
16418 #. type: textblock
16419 #: ../src/guestfs-actions.pod:6466 ../fish/guestfish-actions.pod:4365
16420 msgid ""
16421 "This command disables the libguestfs appliance swap partition with the given "
16422 "UUID."
16423 msgstr ""
16424
16425 #. type: =head2
16426 #: ../src/guestfs-actions.pod:6473
16427 msgid "guestfs_swapon_device"
16428 msgstr ""
16429
16430 #. type: verbatim
16431 #: ../src/guestfs-actions.pod:6475
16432 #, no-wrap
16433 msgid ""
16434 " int\n"
16435 " guestfs_swapon_device (guestfs_h *g,\n"
16436 "                        const char *device);\n"
16437 "\n"
16438 msgstr ""
16439
16440 #. type: textblock
16441 #: ../src/guestfs-actions.pod:6479
16442 msgid ""
16443 "This command enables the libguestfs appliance to use the swap device or "
16444 "partition named C<device>.  The increased memory is made available for all "
16445 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
16446 msgstr ""
16447
16448 #. type: textblock
16449 #: ../src/guestfs-actions.pod:6484 ../fish/guestfish-actions.pod:4377
16450 msgid ""
16451 "Note that you should not swap to existing guest swap partitions unless you "
16452 "know what you are doing.  They may contain hibernation information, or other "
16453 "information that the guest doesn't want you to trash.  You also risk leaking "
16454 "information about the host to the guest this way.  Instead, attach a new "
16455 "host device to the guest and swap on that."
16456 msgstr ""
16457
16458 #. type: =head2
16459 #: ../src/guestfs-actions.pod:6495
16460 msgid "guestfs_swapon_file"
16461 msgstr ""
16462
16463 #. type: verbatim
16464 #: ../src/guestfs-actions.pod:6497
16465 #, no-wrap
16466 msgid ""
16467 " int\n"
16468 " guestfs_swapon_file (guestfs_h *g,\n"
16469 "                      const char *file);\n"
16470 "\n"
16471 msgstr ""
16472
16473 #. type: textblock
16474 #: ../src/guestfs-actions.pod:6501
16475 msgid ""
16476 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
16477 "notes."
16478 msgstr ""
16479
16480 #. type: =head2
16481 #: ../src/guestfs-actions.pod:6508
16482 msgid "guestfs_swapon_label"
16483 msgstr ""
16484
16485 #. type: verbatim
16486 #: ../src/guestfs-actions.pod:6510
16487 #, no-wrap
16488 msgid ""
16489 " int\n"
16490 " guestfs_swapon_label (guestfs_h *g,\n"
16491 "                       const char *label);\n"
16492 "\n"
16493 msgstr ""
16494
16495 #. type: textblock
16496 #: ../src/guestfs-actions.pod:6514
16497 msgid ""
16498 "This command enables swap to a labeled swap partition.  See "
16499 "C<guestfs_swapon_device> for other notes."
16500 msgstr ""
16501
16502 #. type: =head2
16503 #: ../src/guestfs-actions.pod:6521
16504 msgid "guestfs_swapon_uuid"
16505 msgstr ""
16506
16507 #. type: verbatim
16508 #: ../src/guestfs-actions.pod:6523
16509 #, no-wrap
16510 msgid ""
16511 " int\n"
16512 " guestfs_swapon_uuid (guestfs_h *g,\n"
16513 "                      const char *uuid);\n"
16514 "\n"
16515 msgstr ""
16516
16517 #. type: textblock
16518 #: ../src/guestfs-actions.pod:6527
16519 msgid ""
16520 "This command enables swap to a swap partition with the given UUID.  See "
16521 "C<guestfs_swapon_device> for other notes."
16522 msgstr ""
16523
16524 #. type: =head2
16525 #: ../src/guestfs-actions.pod:6534
16526 msgid "guestfs_sync"
16527 msgstr ""
16528
16529 #. type: verbatim
16530 #: ../src/guestfs-actions.pod:6536
16531 #, no-wrap
16532 msgid ""
16533 " int\n"
16534 " guestfs_sync (guestfs_h *g);\n"
16535 "\n"
16536 msgstr ""
16537
16538 #. type: textblock
16539 #: ../src/guestfs-actions.pod:6539 ../fish/guestfish-actions.pod:4409
16540 msgid ""
16541 "This syncs the disk, so that any writes are flushed through to the "
16542 "underlying disk image."
16543 msgstr ""
16544
16545 #. type: textblock
16546 #: ../src/guestfs-actions.pod:6542 ../fish/guestfish-actions.pod:4412
16547 msgid ""
16548 "You should always call this if you have modified a disk image, before "
16549 "closing the handle."
16550 msgstr ""
16551
16552 #. type: =head2
16553 #: ../src/guestfs-actions.pod:6549
16554 msgid "guestfs_tail"
16555 msgstr ""
16556
16557 #. type: verbatim
16558 #: ../src/guestfs-actions.pod:6551
16559 #, no-wrap
16560 msgid ""
16561 " char **\n"
16562 " guestfs_tail (guestfs_h *g,\n"
16563 "               const char *path);\n"
16564 "\n"
16565 msgstr ""
16566
16567 #. type: textblock
16568 #: ../src/guestfs-actions.pod:6555 ../fish/guestfish-actions.pod:4419
16569 msgid "This command returns up to the last 10 lines of a file as a list of strings."
16570 msgstr ""
16571
16572 #. type: =head2
16573 #: ../src/guestfs-actions.pod:6567
16574 msgid "guestfs_tail_n"
16575 msgstr ""
16576
16577 #. type: verbatim
16578 #: ../src/guestfs-actions.pod:6569
16579 #, no-wrap
16580 msgid ""
16581 " char **\n"
16582 " guestfs_tail_n (guestfs_h *g,\n"
16583 "                 int nrlines,\n"
16584 "                 const char *path);\n"
16585 "\n"
16586 msgstr ""
16587
16588 #. type: textblock
16589 #: ../src/guestfs-actions.pod:6574 ../fish/guestfish-actions.pod:4429
16590 msgid ""
16591 "If the parameter C<nrlines> is a positive number, this returns the last "
16592 "C<nrlines> lines of the file C<path>."
16593 msgstr ""
16594
16595 #. type: textblock
16596 #: ../src/guestfs-actions.pod:6577 ../fish/guestfish-actions.pod:4432
16597 msgid ""
16598 "If the parameter C<nrlines> is a negative number, this returns lines from "
16599 "the file C<path>, starting with the C<-nrlines>th line."
16600 msgstr ""
16601
16602 #. type: =head2
16603 #: ../src/guestfs-actions.pod:6591
16604 msgid "guestfs_tar_in"
16605 msgstr ""
16606
16607 #. type: verbatim
16608 #: ../src/guestfs-actions.pod:6593
16609 #, no-wrap
16610 msgid ""
16611 " int\n"
16612 " guestfs_tar_in (guestfs_h *g,\n"
16613 "                 const char *tarfile,\n"
16614 "                 const char *directory);\n"
16615 "\n"
16616 msgstr ""
16617
16618 #. type: textblock
16619 #: ../src/guestfs-actions.pod:6598 ../fish/guestfish-actions.pod:4444
16620 msgid ""
16621 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
16622 "tar file) into C<directory>."
16623 msgstr ""
16624
16625 #. type: textblock
16626 #: ../src/guestfs-actions.pod:6601
16627 msgid "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
16628 msgstr ""
16629
16630 #. type: textblock
16631 #: ../src/guestfs-actions.pod:6606 ../src/guestfs-actions.pod:6623 ../src/guestfs-actions.pod:6639 ../src/guestfs-actions.pod:6655
16632 msgid "(Added in 1.0.3)"
16633 msgstr ""
16634
16635 #. type: =head2
16636 #: ../src/guestfs-actions.pod:6608
16637 msgid "guestfs_tar_out"
16638 msgstr ""
16639
16640 #. type: verbatim
16641 #: ../src/guestfs-actions.pod:6610
16642 #, no-wrap
16643 msgid ""
16644 " int\n"
16645 " guestfs_tar_out (guestfs_h *g,\n"
16646 "                  const char *directory,\n"
16647 "                  const char *tarfile);\n"
16648 "\n"
16649 msgstr ""
16650
16651 #. type: textblock
16652 #: ../src/guestfs-actions.pod:6615 ../fish/guestfish-actions.pod:4456
16653 msgid ""
16654 "This command packs the contents of C<directory> and downloads it to local "
16655 "file C<tarfile>."
16656 msgstr ""
16657
16658 #. type: textblock
16659 #: ../src/guestfs-actions.pod:6618
16660 msgid ""
16661 "To download a compressed tarball, use C<guestfs_tgz_out> or "
16662 "C<guestfs_txz_out>."
16663 msgstr ""
16664
16665 #. type: =head2
16666 #: ../src/guestfs-actions.pod:6625
16667 msgid "guestfs_tgz_in"
16668 msgstr ""
16669
16670 #. type: verbatim
16671 #: ../src/guestfs-actions.pod:6627
16672 #, no-wrap
16673 msgid ""
16674 " int\n"
16675 " guestfs_tgz_in (guestfs_h *g,\n"
16676 "                 const char *tarball,\n"
16677 "                 const char *directory);\n"
16678 "\n"
16679 msgstr ""
16680
16681 #. type: textblock
16682 #: ../src/guestfs-actions.pod:6632 ../fish/guestfish-actions.pod:4468
16683 msgid ""
16684 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
16685 "tar file) into C<directory>."
16686 msgstr ""
16687
16688 #. type: textblock
16689 #: ../src/guestfs-actions.pod:6635
16690 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
16691 msgstr ""
16692
16693 #. type: =head2
16694 #: ../src/guestfs-actions.pod:6641
16695 msgid "guestfs_tgz_out"
16696 msgstr ""
16697
16698 #. type: verbatim
16699 #: ../src/guestfs-actions.pod:6643
16700 #, no-wrap
16701 msgid ""
16702 " int\n"
16703 " guestfs_tgz_out (guestfs_h *g,\n"
16704 "                  const char *directory,\n"
16705 "                  const char *tarball);\n"
16706 "\n"
16707 msgstr ""
16708
16709 #. type: textblock
16710 #: ../src/guestfs-actions.pod:6648 ../fish/guestfish-actions.pod:4479
16711 msgid ""
16712 "This command packs the contents of C<directory> and downloads it to local "
16713 "file C<tarball>."
16714 msgstr ""
16715
16716 #. type: textblock
16717 #: ../src/guestfs-actions.pod:6651
16718 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
16719 msgstr ""
16720
16721 #. type: =head2
16722 #: ../src/guestfs-actions.pod:6657
16723 msgid "guestfs_touch"
16724 msgstr ""
16725
16726 #. type: verbatim
16727 #: ../src/guestfs-actions.pod:6659
16728 #, no-wrap
16729 msgid ""
16730 " int\n"
16731 " guestfs_touch (guestfs_h *g,\n"
16732 "                const char *path);\n"
16733 "\n"
16734 msgstr ""
16735
16736 #. type: textblock
16737 #: ../src/guestfs-actions.pod:6663 ../fish/guestfish-actions.pod:4490
16738 msgid ""
16739 "Touch acts like the L<touch(1)> command.  It can be used to update the "
16740 "timestamps on a file, or, if the file does not exist, to create a new "
16741 "zero-length file."
16742 msgstr ""
16743
16744 #. type: textblock
16745 #: ../src/guestfs-actions.pod:6667 ../fish/guestfish-actions.pod:4494
16746 msgid ""
16747 "This command only works on regular files, and will fail on other file types "
16748 "such as directories, symbolic links, block special etc."
16749 msgstr ""
16750
16751 #. type: =head2
16752 #: ../src/guestfs-actions.pod:6674
16753 msgid "guestfs_truncate"
16754 msgstr ""
16755
16756 #. type: verbatim
16757 #: ../src/guestfs-actions.pod:6676
16758 #, no-wrap
16759 msgid ""
16760 " int\n"
16761 " guestfs_truncate (guestfs_h *g,\n"
16762 "                   const char *path);\n"
16763 "\n"
16764 msgstr ""
16765
16766 #. type: textblock
16767 #: ../src/guestfs-actions.pod:6680 ../fish/guestfish-actions.pod:4501
16768 msgid ""
16769 "This command truncates C<path> to a zero-length file.  The file must exist "
16770 "already."
16771 msgstr ""
16772
16773 #. type: =head2
16774 #: ../src/guestfs-actions.pod:6687
16775 msgid "guestfs_truncate_size"
16776 msgstr ""
16777
16778 #. type: verbatim
16779 #: ../src/guestfs-actions.pod:6689
16780 #, no-wrap
16781 msgid ""
16782 " int\n"
16783 " guestfs_truncate_size (guestfs_h *g,\n"
16784 "                        const char *path,\n"
16785 "                        int64_t size);\n"
16786 "\n"
16787 msgstr ""
16788
16789 #. type: textblock
16790 #: ../src/guestfs-actions.pod:6694 ../fish/guestfish-actions.pod:4508
16791 msgid ""
16792 "This command truncates C<path> to size C<size> bytes.  The file must exist "
16793 "already."
16794 msgstr ""
16795
16796 #. type: textblock
16797 #: ../src/guestfs-actions.pod:6697
16798 msgid ""
16799 "If the current file size is less than C<size> then the file is extended to "
16800 "the required size with zero bytes.  This creates a sparse file (ie. disk "
16801 "blocks are not allocated for the file until you write to it).  To create a "
16802 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
16803 msgstr ""
16804
16805 #. type: =head2
16806 #: ../src/guestfs-actions.pod:6707
16807 msgid "guestfs_tune2fs_l"
16808 msgstr ""
16809
16810 #. type: verbatim
16811 #: ../src/guestfs-actions.pod:6709
16812 #, no-wrap
16813 msgid ""
16814 " char **\n"
16815 " guestfs_tune2fs_l (guestfs_h *g,\n"
16816 "                    const char *device);\n"
16817 "\n"
16818 msgstr ""
16819
16820 #. type: textblock
16821 #: ../src/guestfs-actions.pod:6713 ../fish/guestfish-actions.pod:4521
16822 msgid ""
16823 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
16824 "C<device>."
16825 msgstr ""
16826
16827 #. type: textblock
16828 #: ../src/guestfs-actions.pod:6716 ../fish/guestfish-actions.pod:4524
16829 msgid ""
16830 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
16831 "for more details.  The list of fields returned isn't clearly defined, and "
16832 "depends on both the version of C<tune2fs> that libguestfs was built against, "
16833 "and the filesystem itself."
16834 msgstr ""
16835
16836 #. type: =head2
16837 #: ../src/guestfs-actions.pod:6729
16838 msgid "guestfs_txz_in"
16839 msgstr ""
16840
16841 #. type: verbatim
16842 #: ../src/guestfs-actions.pod:6731
16843 #, no-wrap
16844 msgid ""
16845 " int\n"
16846 " guestfs_txz_in (guestfs_h *g,\n"
16847 "                 const char *tarball,\n"
16848 "                 const char *directory);\n"
16849 "\n"
16850 msgstr ""
16851
16852 #. type: textblock
16853 #: ../src/guestfs-actions.pod:6736 ../fish/guestfish-actions.pod:4533
16854 msgid ""
16855 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
16856 "tar file) into C<directory>."
16857 msgstr ""
16858
16859 #. type: =head2
16860 #: ../src/guestfs-actions.pod:6743
16861 msgid "guestfs_txz_out"
16862 msgstr ""
16863
16864 #. type: verbatim
16865 #: ../src/guestfs-actions.pod:6745
16866 #, no-wrap
16867 msgid ""
16868 " int\n"
16869 " guestfs_txz_out (guestfs_h *g,\n"
16870 "                  const char *directory,\n"
16871 "                  const char *tarball);\n"
16872 "\n"
16873 msgstr ""
16874
16875 #. type: textblock
16876 #: ../src/guestfs-actions.pod:6750 ../fish/guestfish-actions.pod:4542
16877 msgid ""
16878 "This command packs the contents of C<directory> and downloads it to local "
16879 "file C<tarball> (as an xz compressed tar archive)."
16880 msgstr ""
16881
16882 #. type: =head2
16883 #: ../src/guestfs-actions.pod:6757
16884 msgid "guestfs_umask"
16885 msgstr ""
16886
16887 #. type: verbatim
16888 #: ../src/guestfs-actions.pod:6759
16889 #, no-wrap
16890 msgid ""
16891 " int\n"
16892 " guestfs_umask (guestfs_h *g,\n"
16893 "                int mask);\n"
16894 "\n"
16895 msgstr ""
16896
16897 #. type: textblock
16898 #: ../src/guestfs-actions.pod:6763 ../fish/guestfish-actions.pod:4551
16899 msgid ""
16900 "This function sets the mask used for creating new files and device nodes to "
16901 "C<mask & 0777>."
16902 msgstr ""
16903
16904 #. type: textblock
16905 #: ../src/guestfs-actions.pod:6766 ../fish/guestfish-actions.pod:4554
16906 msgid ""
16907 "Typical umask values would be C<022> which creates new files with "
16908 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
16909 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
16910 msgstr ""
16911
16912 #. type: textblock
16913 #: ../src/guestfs-actions.pod:6771 ../fish/guestfish-actions.pod:4559
16914 msgid ""
16915 "The default umask is C<022>.  This is important because it means that "
16916 "directories and device nodes will be created with C<0644> or C<0755> mode "
16917 "even if you specify C<0777>."
16918 msgstr ""
16919
16920 #. type: textblock
16921 #: ../src/guestfs-actions.pod:6775
16922 msgid ""
16923 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
16924 "C<guestfs_mkdir>."
16925 msgstr ""
16926
16927 #. type: textblock
16928 #: ../src/guestfs-actions.pod:6778 ../fish/guestfish-actions.pod:4566
16929 msgid "This call returns the previous umask."
16930 msgstr ""
16931
16932 #. type: =head2
16933 #: ../src/guestfs-actions.pod:6784
16934 msgid "guestfs_umount"
16935 msgstr ""
16936
16937 #. type: verbatim
16938 #: ../src/guestfs-actions.pod:6786
16939 #, no-wrap
16940 msgid ""
16941 " int\n"
16942 " guestfs_umount (guestfs_h *g,\n"
16943 "                 const char *pathordevice);\n"
16944 "\n"
16945 msgstr ""
16946
16947 #. type: textblock
16948 #: ../src/guestfs-actions.pod:6790 ../fish/guestfish-actions.pod:4574
16949 msgid ""
16950 "This unmounts the given filesystem.  The filesystem may be specified either "
16951 "by its mountpoint (path) or the device which contains the filesystem."
16952 msgstr ""
16953
16954 #. type: =head2
16955 #: ../src/guestfs-actions.pod:6798
16956 msgid "guestfs_umount_all"
16957 msgstr ""
16958
16959 #. type: verbatim
16960 #: ../src/guestfs-actions.pod:6800
16961 #, no-wrap
16962 msgid ""
16963 " int\n"
16964 " guestfs_umount_all (guestfs_h *g);\n"
16965 "\n"
16966 msgstr ""
16967
16968 #. type: textblock
16969 #: ../src/guestfs-actions.pod:6803 ../fish/guestfish-actions.pod:4584
16970 msgid "This unmounts all mounted filesystems."
16971 msgstr ""
16972
16973 #. type: textblock
16974 #: ../src/guestfs-actions.pod:6805 ../fish/guestfish-actions.pod:4586
16975 msgid "Some internal mounts are not unmounted by this call."
16976 msgstr ""
16977
16978 #. type: =head2
16979 #: ../src/guestfs-actions.pod:6811
16980 msgid "guestfs_upload"
16981 msgstr ""
16982
16983 #. type: verbatim
16984 #: ../src/guestfs-actions.pod:6813
16985 #, no-wrap
16986 msgid ""
16987 " int\n"
16988 " guestfs_upload (guestfs_h *g,\n"
16989 "                 const char *filename,\n"
16990 "                 const char *remotefilename);\n"
16991 "\n"
16992 msgstr ""
16993
16994 #. type: textblock
16995 #: ../src/guestfs-actions.pod:6818 ../src/guestfs-actions.pod:6842 ../fish/guestfish-actions.pod:4592 ../fish/guestfish-actions.pod:4605
16996 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
16997 msgstr ""
16998
16999 #. type: textblock
17000 #: ../src/guestfs-actions.pod:6823
17001 msgid "See also C<guestfs_download>."
17002 msgstr ""
17003
17004 #. type: =head2
17005 #: ../src/guestfs-actions.pod:6834
17006 msgid "guestfs_upload_offset"
17007 msgstr ""
17008
17009 #. type: verbatim
17010 #: ../src/guestfs-actions.pod:6836
17011 #, no-wrap
17012 msgid ""
17013 " int\n"
17014 " guestfs_upload_offset (guestfs_h *g,\n"
17015 "                        const char *filename,\n"
17016 "                        const char *remotefilename,\n"
17017 "                        int64_t offset);\n"
17018 "\n"
17019 msgstr ""
17020
17021 #. type: textblock
17022 #: ../src/guestfs-actions.pod:6845 ../fish/guestfish-actions.pod:4608
17023 msgid ""
17024 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
17025 "The intention is to overwrite parts of existing files or devices, although "
17026 "if a non-existant file is specified then it is created with a \"hole\" "
17027 "before C<offset>.  The size of the data written is implicit in the size of "
17028 "the source C<filename>."
17029 msgstr ""
17030
17031 #. type: textblock
17032 #: ../src/guestfs-actions.pod:6852
17033 msgid ""
17034 "Note that there is no limit on the amount of data that can be uploaded with "
17035 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
17036 "full amount unless an error occurs."
17037 msgstr ""
17038
17039 #. type: textblock
17040 #: ../src/guestfs-actions.pod:6857
17041 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
17042 msgstr ""
17043
17044 #. type: =head2
17045 #: ../src/guestfs-actions.pod:6868
17046 msgid "guestfs_utimens"
17047 msgstr ""
17048
17049 #. type: verbatim
17050 #: ../src/guestfs-actions.pod:6870
17051 #, no-wrap
17052 msgid ""
17053 " int\n"
17054 " guestfs_utimens (guestfs_h *g,\n"
17055 "                  const char *path,\n"
17056 "                  int64_t atsecs,\n"
17057 "                  int64_t atnsecs,\n"
17058 "                  int64_t mtsecs,\n"
17059 "                  int64_t mtnsecs);\n"
17060 "\n"
17061 msgstr ""
17062
17063 #. type: textblock
17064 #: ../src/guestfs-actions.pod:6878 ../fish/guestfish-actions.pod:4628
17065 msgid "This command sets the timestamps of a file with nanosecond precision."
17066 msgstr ""
17067
17068 #. type: textblock
17069 #: ../src/guestfs-actions.pod:6881 ../fish/guestfish-actions.pod:4631
17070 msgid ""
17071 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
17072 "from the epoch."
17073 msgstr ""
17074
17075 #. type: textblock
17076 #: ../src/guestfs-actions.pod:6884 ../fish/guestfish-actions.pod:4634
17077 msgid ""
17078 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
17079 "nanoseconds from the epoch."
17080 msgstr ""
17081
17082 #. type: textblock
17083 #: ../src/guestfs-actions.pod:6887 ../fish/guestfish-actions.pod:4637
17084 msgid ""
17085 "If the C<*nsecs> field contains the special value C<-1> then the "
17086 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
17087 "ignored in this case)."
17088 msgstr ""
17089
17090 #. type: textblock
17091 #: ../src/guestfs-actions.pod:6891 ../fish/guestfish-actions.pod:4641
17092 msgid ""
17093 "If the C<*nsecs> field contains the special value C<-2> then the "
17094 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
17095 "in this case)."
17096 msgstr ""
17097
17098 #. type: =head2
17099 #: ../src/guestfs-actions.pod:6899 ../src/guestfs-structs.pod:175
17100 msgid "guestfs_version"
17101 msgstr ""
17102
17103 #. type: verbatim
17104 #: ../src/guestfs-actions.pod:6901
17105 #, no-wrap
17106 msgid ""
17107 " struct guestfs_version *\n"
17108 " guestfs_version (guestfs_h *g);\n"
17109 "\n"
17110 msgstr ""
17111
17112 #. type: textblock
17113 #: ../src/guestfs-actions.pod:6904 ../fish/guestfish-actions.pod:4649
17114 msgid "Return the libguestfs version number that the program is linked against."
17115 msgstr ""
17116
17117 #. type: textblock
17118 #: ../src/guestfs-actions.pod:6907 ../fish/guestfish-actions.pod:4652
17119 msgid ""
17120 "Note that because of dynamic linking this is not necessarily the version of "
17121 "libguestfs that you compiled against.  You can compile the program, and then "
17122 "at runtime dynamically link against a completely different C<libguestfs.so> "
17123 "library."
17124 msgstr ""
17125
17126 #. type: textblock
17127 #: ../src/guestfs-actions.pod:6912 ../fish/guestfish-actions.pod:4657
17128 msgid ""
17129 "This call was added in version C<1.0.58>.  In previous versions of "
17130 "libguestfs there was no way to get the version number.  From C code you can "
17131 "use dynamic linker functions to find out if this symbol exists (if it "
17132 "doesn't, then it's an earlier version)."
17133 msgstr ""
17134
17135 #. type: textblock
17136 #: ../src/guestfs-actions.pod:6918 ../fish/guestfish-actions.pod:4663
17137 msgid ""
17138 "The call returns a structure with four elements.  The first three (C<major>, "
17139 "C<minor> and C<release>) are numbers and correspond to the usual version "
17140 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
17141 "but may be used for distro-specific information."
17142 msgstr ""
17143
17144 #. type: textblock
17145 #: ../src/guestfs-actions.pod:6924 ../fish/guestfish-actions.pod:4669
17146 msgid "To construct the original version string: C<$major.$minor.$release$extra>"
17147 msgstr ""
17148
17149 #. type: textblock
17150 #: ../src/guestfs-actions.pod:6927 ../fish/guestfish-actions.pod:4672
17151 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
17152 msgstr ""
17153
17154 #. type: textblock
17155 #: ../src/guestfs-actions.pod:6929
17156 msgid ""
17157 "I<Note:> Don't use this call to test for availability of features.  In "
17158 "enterprise distributions we backport features from later versions into "
17159 "earlier versions, making this an unreliable way to test for features.  Use "
17160 "C<guestfs_available> instead."
17161 msgstr ""
17162
17163 #. type: textblock
17164 #: ../src/guestfs-actions.pod:6935
17165 msgid ""
17166 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
17167 "error.  I<The caller must call C<guestfs_free_version> after use>."
17168 msgstr ""
17169
17170 #. type: textblock
17171 #: ../src/guestfs-actions.pod:6939
17172 msgid "(Added in 1.0.58)"
17173 msgstr ""
17174
17175 #. type: =head2
17176 #: ../src/guestfs-actions.pod:6941
17177 msgid "guestfs_vfs_label"
17178 msgstr ""
17179
17180 #. type: verbatim
17181 #: ../src/guestfs-actions.pod:6943
17182 #, no-wrap
17183 msgid ""
17184 " char *\n"
17185 " guestfs_vfs_label (guestfs_h *g,\n"
17186 "                    const char *device);\n"
17187 "\n"
17188 msgstr ""
17189
17190 #. type: textblock
17191 #: ../src/guestfs-actions.pod:6947 ../fish/guestfish-actions.pod:4684
17192 msgid "This returns the filesystem label of the filesystem on C<device>."
17193 msgstr ""
17194
17195 #. type: textblock
17196 #: ../src/guestfs-actions.pod:6950 ../fish/guestfish-actions.pod:4687
17197 msgid "If the filesystem is unlabeled, this returns the empty string."
17198 msgstr ""
17199
17200 #. type: textblock
17201 #: ../src/guestfs-actions.pod:6952
17202 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
17203 msgstr ""
17204
17205 #. type: textblock
17206 #: ../src/guestfs-actions.pod:6957 ../src/guestfs-actions.pod:6994
17207 msgid "(Added in 1.3.18)"
17208 msgstr ""
17209
17210 #. type: =head2
17211 #: ../src/guestfs-actions.pod:6959
17212 msgid "guestfs_vfs_type"
17213 msgstr ""
17214
17215 #. type: verbatim
17216 #: ../src/guestfs-actions.pod:6961
17217 #, no-wrap
17218 msgid ""
17219 " char *\n"
17220 " guestfs_vfs_type (guestfs_h *g,\n"
17221 "                   const char *device);\n"
17222 "\n"
17223 msgstr ""
17224
17225 #. type: textblock
17226 #: ../src/guestfs-actions.pod:6965 ../fish/guestfish-actions.pod:4695
17227 msgid ""
17228 "This command gets the filesystem type corresponding to the filesystem on "
17229 "C<device>."
17230 msgstr ""
17231
17232 #. type: textblock
17233 #: ../src/guestfs-actions.pod:6968 ../fish/guestfish-actions.pod:4698
17234 msgid ""
17235 "For most filesystems, the result is the name of the Linux VFS module which "
17236 "would be used to mount this filesystem if you mounted it without specifying "
17237 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
17238 msgstr ""
17239
17240 #. type: =head2
17241 #: ../src/guestfs-actions.pod:6978
17242 msgid "guestfs_vfs_uuid"
17243 msgstr ""
17244
17245 #. type: verbatim
17246 #: ../src/guestfs-actions.pod:6980
17247 #, no-wrap
17248 msgid ""
17249 " char *\n"
17250 " guestfs_vfs_uuid (guestfs_h *g,\n"
17251 "                   const char *device);\n"
17252 "\n"
17253 msgstr ""
17254
17255 #. type: textblock
17256 #: ../src/guestfs-actions.pod:6984 ../fish/guestfish-actions.pod:4707
17257 msgid "This returns the filesystem UUID of the filesystem on C<device>."
17258 msgstr ""
17259
17260 #. type: textblock
17261 #: ../src/guestfs-actions.pod:6987 ../fish/guestfish-actions.pod:4710
17262 msgid "If the filesystem does not have a UUID, this returns the empty string."
17263 msgstr ""
17264
17265 #. type: textblock
17266 #: ../src/guestfs-actions.pod:6989
17267 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
17268 msgstr ""
17269
17270 #. type: =head2
17271 #: ../src/guestfs-actions.pod:6996
17272 msgid "guestfs_vg_activate"
17273 msgstr ""
17274
17275 #. type: verbatim
17276 #: ../src/guestfs-actions.pod:6998
17277 #, no-wrap
17278 msgid ""
17279 " int\n"
17280 " guestfs_vg_activate (guestfs_h *g,\n"
17281 "                      int activate,\n"
17282 "                      char *const *volgroups);\n"
17283 "\n"
17284 msgstr ""
17285
17286 #. type: textblock
17287 #: ../src/guestfs-actions.pod:7003 ../fish/guestfish-actions.pod:4718
17288 msgid ""
17289 "This command activates or (if C<activate> is false) deactivates all logical "
17290 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
17291 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
17292 "deactivated, then those devices disappear."
17293 msgstr ""
17294
17295 #. type: textblock
17296 #: ../src/guestfs-actions.pod:7009 ../fish/guestfish-actions.pod:4724
17297 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
17298 msgstr ""
17299
17300 #. type: textblock
17301 #: ../src/guestfs-actions.pod:7011 ../fish/guestfish-actions.pod:4726
17302 msgid ""
17303 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
17304 "activated or deactivated."
17305 msgstr ""
17306
17307 #. type: =head2
17308 #: ../src/guestfs-actions.pod:7018
17309 msgid "guestfs_vg_activate_all"
17310 msgstr ""
17311
17312 #. type: verbatim
17313 #: ../src/guestfs-actions.pod:7020
17314 #, no-wrap
17315 msgid ""
17316 " int\n"
17317 " guestfs_vg_activate_all (guestfs_h *g,\n"
17318 "                          int activate);\n"
17319 "\n"
17320 msgstr ""
17321
17322 #. type: textblock
17323 #: ../src/guestfs-actions.pod:7024 ../fish/guestfish-actions.pod:4733
17324 msgid ""
17325 "This command activates or (if C<activate> is false) deactivates all logical "
17326 "volumes in all volume groups.  If activated, then they are made known to the "
17327 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
17328 "those devices disappear."
17329 msgstr ""
17330
17331 #. type: textblock
17332 #: ../src/guestfs-actions.pod:7030 ../fish/guestfish-actions.pod:4739
17333 msgid "This command is the same as running C<vgchange -a y|n>"
17334 msgstr ""
17335
17336 #. type: =head2
17337 #: ../src/guestfs-actions.pod:7036
17338 msgid "guestfs_vgcreate"
17339 msgstr ""
17340
17341 #. type: verbatim
17342 #: ../src/guestfs-actions.pod:7038
17343 #, no-wrap
17344 msgid ""
17345 " int\n"
17346 " guestfs_vgcreate (guestfs_h *g,\n"
17347 "                   const char *volgroup,\n"
17348 "                   char *const *physvols);\n"
17349 "\n"
17350 msgstr ""
17351
17352 #. type: textblock
17353 #: ../src/guestfs-actions.pod:7043 ../fish/guestfish-actions.pod:4745
17354 msgid ""
17355 "This creates an LVM volume group called C<volgroup> from the non-empty list "
17356 "of physical volumes C<physvols>."
17357 msgstr ""
17358
17359 #. type: =head2
17360 #: ../src/guestfs-actions.pod:7050
17361 msgid "guestfs_vglvuuids"
17362 msgstr ""
17363
17364 #. type: verbatim
17365 #: ../src/guestfs-actions.pod:7052
17366 #, no-wrap
17367 msgid ""
17368 " char **\n"
17369 " guestfs_vglvuuids (guestfs_h *g,\n"
17370 "                    const char *vgname);\n"
17371 "\n"
17372 msgstr ""
17373
17374 #. type: textblock
17375 #: ../src/guestfs-actions.pod:7056 ../fish/guestfish-actions.pod:4752
17376 msgid ""
17377 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
17378 "volumes created in this volume group."
17379 msgstr ""
17380
17381 #. type: textblock
17382 #: ../src/guestfs-actions.pod:7059
17383 msgid ""
17384 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
17385 "associate logical volumes and volume groups."
17386 msgstr ""
17387
17388 #. type: textblock
17389 #: ../src/guestfs-actions.pod:7062
17390 msgid "See also C<guestfs_vgpvuuids>."
17391 msgstr ""
17392
17393 #. type: =head2
17394 #: ../src/guestfs-actions.pod:7070
17395 msgid "guestfs_vgpvuuids"
17396 msgstr ""
17397
17398 #. type: verbatim
17399 #: ../src/guestfs-actions.pod:7072
17400 #, no-wrap
17401 msgid ""
17402 " char **\n"
17403 " guestfs_vgpvuuids (guestfs_h *g,\n"
17404 "                    const char *vgname);\n"
17405 "\n"
17406 msgstr ""
17407
17408 #. type: textblock
17409 #: ../src/guestfs-actions.pod:7076 ../fish/guestfish-actions.pod:4764
17410 msgid ""
17411 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
17412 "volumes that this volume group resides on."
17413 msgstr ""
17414
17415 #. type: textblock
17416 #: ../src/guestfs-actions.pod:7079
17417 msgid ""
17418 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
17419 "associate physical volumes and volume groups."
17420 msgstr ""
17421
17422 #. type: textblock
17423 #: ../src/guestfs-actions.pod:7082
17424 msgid "See also C<guestfs_vglvuuids>."
17425 msgstr ""
17426
17427 #. type: =head2
17428 #: ../src/guestfs-actions.pod:7090
17429 msgid "guestfs_vgremove"
17430 msgstr ""
17431
17432 #. type: verbatim
17433 #: ../src/guestfs-actions.pod:7092
17434 #, no-wrap
17435 msgid ""
17436 " int\n"
17437 " guestfs_vgremove (guestfs_h *g,\n"
17438 "                   const char *vgname);\n"
17439 "\n"
17440 msgstr ""
17441
17442 #. type: textblock
17443 #: ../src/guestfs-actions.pod:7096 ../fish/guestfish-actions.pod:4776
17444 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
17445 msgstr ""
17446
17447 #. type: textblock
17448 #: ../src/guestfs-actions.pod:7098 ../fish/guestfish-actions.pod:4778
17449 msgid "This also forcibly removes all logical volumes in the volume group (if any)."
17450 msgstr ""
17451
17452 #. type: =head2
17453 #: ../src/guestfs-actions.pod:7105
17454 msgid "guestfs_vgrename"
17455 msgstr ""
17456
17457 #. type: verbatim
17458 #: ../src/guestfs-actions.pod:7107
17459 #, no-wrap
17460 msgid ""
17461 " int\n"
17462 " guestfs_vgrename (guestfs_h *g,\n"
17463 "                   const char *volgroup,\n"
17464 "                   const char *newvolgroup);\n"
17465 "\n"
17466 msgstr ""
17467
17468 #. type: textblock
17469 #: ../src/guestfs-actions.pod:7112 ../fish/guestfish-actions.pod:4785
17470 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
17471 msgstr ""
17472
17473 #. type: =head2
17474 #: ../src/guestfs-actions.pod:7118
17475 msgid "guestfs_vgs"
17476 msgstr ""
17477
17478 #. type: verbatim
17479 #: ../src/guestfs-actions.pod:7120
17480 #, no-wrap
17481 msgid ""
17482 " char **\n"
17483 " guestfs_vgs (guestfs_h *g);\n"
17484 "\n"
17485 msgstr ""
17486
17487 #. type: textblock
17488 #: ../src/guestfs-actions.pod:7123 ../fish/guestfish-actions.pod:4791
17489 msgid ""
17490 "List all the volumes groups detected.  This is the equivalent of the "
17491 "L<vgs(8)> command."
17492 msgstr ""
17493
17494 #. type: textblock
17495 #: ../src/guestfs-actions.pod:7126 ../fish/guestfish-actions.pod:4794
17496 msgid ""
17497 "This returns a list of just the volume group names that were detected "
17498 "(eg. C<VolGroup00>)."
17499 msgstr ""
17500
17501 #. type: textblock
17502 #: ../src/guestfs-actions.pod:7129
17503 msgid "See also C<guestfs_vgs_full>."
17504 msgstr ""
17505
17506 #. type: =head2
17507 #: ../src/guestfs-actions.pod:7137
17508 msgid "guestfs_vgs_full"
17509 msgstr ""
17510
17511 #. type: verbatim
17512 #: ../src/guestfs-actions.pod:7139
17513 #, no-wrap
17514 msgid ""
17515 " struct guestfs_lvm_vg_list *\n"
17516 " guestfs_vgs_full (guestfs_h *g);\n"
17517 "\n"
17518 msgstr ""
17519
17520 #. type: textblock
17521 #: ../src/guestfs-actions.pod:7142 ../fish/guestfish-actions.pod:4803
17522 msgid ""
17523 "List all the volumes groups detected.  This is the equivalent of the "
17524 "L<vgs(8)> command.  The \"full\" version includes all fields."
17525 msgstr ""
17526
17527 #. type: textblock
17528 #: ../src/guestfs-actions.pod:7145
17529 msgid ""
17530 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
17531 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after "
17532 "use>."
17533 msgstr ""
17534
17535 #. type: =head2
17536 #: ../src/guestfs-actions.pod:7151
17537 msgid "guestfs_vgscan"
17538 msgstr ""
17539
17540 #. type: verbatim
17541 #: ../src/guestfs-actions.pod:7153
17542 #, no-wrap
17543 msgid ""
17544 " int\n"
17545 " guestfs_vgscan (guestfs_h *g);\n"
17546 "\n"
17547 msgstr ""
17548
17549 #. type: textblock
17550 #: ../src/guestfs-actions.pod:7156 ../fish/guestfish-actions.pod:4810
17551 msgid ""
17552 "This rescans all block devices and rebuilds the list of LVM physical "
17553 "volumes, volume groups and logical volumes."
17554 msgstr ""
17555
17556 #. type: =head2
17557 #: ../src/guestfs-actions.pod:7163
17558 msgid "guestfs_vguuid"
17559 msgstr ""
17560
17561 #. type: verbatim
17562 #: ../src/guestfs-actions.pod:7165
17563 #, no-wrap
17564 msgid ""
17565 " char *\n"
17566 " guestfs_vguuid (guestfs_h *g,\n"
17567 "                 const char *vgname);\n"
17568 "\n"
17569 msgstr ""
17570
17571 #. type: textblock
17572 #: ../src/guestfs-actions.pod:7169 ../fish/guestfish-actions.pod:4817
17573 msgid "This command returns the UUID of the LVM VG named C<vgname>."
17574 msgstr ""
17575
17576 #. type: =head2
17577 #: ../src/guestfs-actions.pod:7176
17578 msgid "guestfs_wait_ready"
17579 msgstr ""
17580
17581 #. type: verbatim
17582 #: ../src/guestfs-actions.pod:7178
17583 #, no-wrap
17584 msgid ""
17585 " int\n"
17586 " guestfs_wait_ready (guestfs_h *g);\n"
17587 "\n"
17588 msgstr ""
17589
17590 #. type: textblock
17591 #: ../src/guestfs-actions.pod:7181
17592 msgid "This function is a no op."
17593 msgstr ""
17594
17595 #. type: textblock
17596 #: ../src/guestfs-actions.pod:7183
17597 msgid ""
17598 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
17599 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
17600 "is no longer necessary because C<guestfs_launch> now does the waiting."
17601 msgstr ""
17602
17603 #. type: textblock
17604 #: ../src/guestfs-actions.pod:7188
17605 msgid ""
17606 "If you see any calls to this function in code then you can just remove them, "
17607 "unless you want to retain compatibility with older versions of the API."
17608 msgstr ""
17609
17610 #. type: =head2
17611 #: ../src/guestfs-actions.pod:7196
17612 msgid "guestfs_wc_c"
17613 msgstr ""
17614
17615 #. type: verbatim
17616 #: ../src/guestfs-actions.pod:7198
17617 #, no-wrap
17618 msgid ""
17619 " int\n"
17620 " guestfs_wc_c (guestfs_h *g,\n"
17621 "               const char *path);\n"
17622 "\n"
17623 msgstr ""
17624
17625 #. type: textblock
17626 #: ../src/guestfs-actions.pod:7202 ../fish/guestfish-actions.pod:4823
17627 msgid ""
17628 "This command counts the characters in a file, using the C<wc -c> external "
17629 "command."
17630 msgstr ""
17631
17632 #. type: =head2
17633 #: ../src/guestfs-actions.pod:7209
17634 msgid "guestfs_wc_l"
17635 msgstr ""
17636
17637 #. type: verbatim
17638 #: ../src/guestfs-actions.pod:7211
17639 #, no-wrap
17640 msgid ""
17641 " int\n"
17642 " guestfs_wc_l (guestfs_h *g,\n"
17643 "               const char *path);\n"
17644 "\n"
17645 msgstr ""
17646
17647 #. type: textblock
17648 #: ../src/guestfs-actions.pod:7215 ../fish/guestfish-actions.pod:4830
17649 msgid ""
17650 "This command counts the lines in a file, using the C<wc -l> external "
17651 "command."
17652 msgstr ""
17653
17654 #. type: =head2
17655 #: ../src/guestfs-actions.pod:7222
17656 msgid "guestfs_wc_w"
17657 msgstr ""
17658
17659 #. type: verbatim
17660 #: ../src/guestfs-actions.pod:7224
17661 #, no-wrap
17662 msgid ""
17663 " int\n"
17664 " guestfs_wc_w (guestfs_h *g,\n"
17665 "               const char *path);\n"
17666 "\n"
17667 msgstr ""
17668
17669 #. type: textblock
17670 #: ../src/guestfs-actions.pod:7228 ../fish/guestfish-actions.pod:4837
17671 msgid ""
17672 "This command counts the words in a file, using the C<wc -w> external "
17673 "command."
17674 msgstr ""
17675
17676 #. type: =head2
17677 #: ../src/guestfs-actions.pod:7235
17678 msgid "guestfs_write"
17679 msgstr ""
17680
17681 #. type: verbatim
17682 #: ../src/guestfs-actions.pod:7237
17683 #, no-wrap
17684 msgid ""
17685 " int\n"
17686 " guestfs_write (guestfs_h *g,\n"
17687 "                const char *path,\n"
17688 "                const char *content,\n"
17689 "                size_t content_size);\n"
17690 "\n"
17691 msgstr ""
17692
17693 #. type: textblock
17694 #: ../src/guestfs-actions.pod:7243 ../fish/guestfish-actions.pod:4844
17695 msgid ""
17696 "This call creates a file called C<path>.  The content of the file is the "
17697 "string C<content> (which can contain any 8 bit data)."
17698 msgstr ""
17699
17700 #. type: =head2
17701 #: ../src/guestfs-actions.pod:7253
17702 msgid "guestfs_write_file"
17703 msgstr ""
17704
17705 #. type: verbatim
17706 #: ../src/guestfs-actions.pod:7255
17707 #, no-wrap
17708 msgid ""
17709 " int\n"
17710 " guestfs_write_file (guestfs_h *g,\n"
17711 "                     const char *path,\n"
17712 "                     const char *content,\n"
17713 "                     int size);\n"
17714 "\n"
17715 msgstr ""
17716
17717 #. type: textblock
17718 #: ../src/guestfs-actions.pod:7261 ../fish/guestfish-actions.pod:4854
17719 msgid ""
17720 "This call creates a file called C<path>.  The contents of the file is the "
17721 "string C<content> (which can contain any 8 bit data), with length C<size>."
17722 msgstr ""
17723
17724 #. type: textblock
17725 #: ../src/guestfs-actions.pod:7265 ../fish/guestfish-actions.pod:4858
17726 msgid ""
17727 "As a special case, if C<size> is C<0> then the length is calculated using "
17728 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
17729 msgstr ""
17730
17731 #. type: textblock
17732 #: ../src/guestfs-actions.pod:7269 ../fish/guestfish-actions.pod:4862
17733 msgid ""
17734 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
17735 "I<not> work, even if the length is specified."
17736 msgstr ""
17737
17738 #. type: textblock
17739 #: ../src/guestfs-actions.pod:7277 ../fish/guestfish-actions.pod:4868
17740 msgid "This function is deprecated.  In new code, use the C<write> call instead."
17741 msgstr ""
17742
17743 #. type: =head2
17744 #: ../src/guestfs-actions.pod:7286
17745 msgid "guestfs_zegrep"
17746 msgstr ""
17747
17748 #. type: verbatim
17749 #: ../src/guestfs-actions.pod:7288
17750 #, no-wrap
17751 msgid ""
17752 " char **\n"
17753 " guestfs_zegrep (guestfs_h *g,\n"
17754 "                 const char *regex,\n"
17755 "                 const char *path);\n"
17756 "\n"
17757 msgstr ""
17758
17759 #. type: textblock
17760 #: ../src/guestfs-actions.pod:7293 ../fish/guestfish-actions.pod:4879
17761 msgid "This calls the external C<zegrep> program and returns the matching lines."
17762 msgstr ""
17763
17764 #. type: =head2
17765 #: ../src/guestfs-actions.pod:7305
17766 msgid "guestfs_zegrepi"
17767 msgstr ""
17768
17769 #. type: verbatim
17770 #: ../src/guestfs-actions.pod:7307
17771 #, no-wrap
17772 msgid ""
17773 " char **\n"
17774 " guestfs_zegrepi (guestfs_h *g,\n"
17775 "                  const char *regex,\n"
17776 "                  const char *path);\n"
17777 "\n"
17778 msgstr ""
17779
17780 #. type: textblock
17781 #: ../src/guestfs-actions.pod:7312 ../fish/guestfish-actions.pod:4889
17782 msgid "This calls the external C<zegrep -i> program and returns the matching lines."
17783 msgstr ""
17784
17785 #. type: =head2
17786 #: ../src/guestfs-actions.pod:7324
17787 msgid "guestfs_zero"
17788 msgstr ""
17789
17790 #. type: verbatim
17791 #: ../src/guestfs-actions.pod:7326
17792 #, no-wrap
17793 msgid ""
17794 " int\n"
17795 " guestfs_zero (guestfs_h *g,\n"
17796 "               const char *device);\n"
17797 "\n"
17798 msgstr ""
17799
17800 #. type: textblock
17801 #: ../src/guestfs-actions.pod:7330 ../fish/guestfish-actions.pod:4899
17802 msgid "This command writes zeroes over the first few blocks of C<device>."
17803 msgstr ""
17804
17805 #. type: textblock
17806 #: ../src/guestfs-actions.pod:7332 ../fish/guestfish-actions.pod:4901
17807 msgid ""
17808 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
17809 "securely wipe the device).  It should be sufficient to remove any partition "
17810 "tables, filesystem superblocks and so on."
17811 msgstr ""
17812
17813 #. type: textblock
17814 #: ../src/guestfs-actions.pod:7336
17815 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
17816 msgstr ""
17817
17818 #. type: =head2
17819 #: ../src/guestfs-actions.pod:7347
17820 msgid "guestfs_zero_device"
17821 msgstr ""
17822
17823 #. type: verbatim
17824 #: ../src/guestfs-actions.pod:7349
17825 #, no-wrap
17826 msgid ""
17827 " int\n"
17828 " guestfs_zero_device (guestfs_h *g,\n"
17829 "                      const char *device);\n"
17830 "\n"
17831 msgstr ""
17832
17833 #. type: textblock
17834 #: ../src/guestfs-actions.pod:7353
17835 msgid ""
17836 "This command writes zeroes over the entire C<device>.  Compare with "
17837 "C<guestfs_zero> which just zeroes the first few blocks of a device."
17838 msgstr ""
17839
17840 #. type: textblock
17841 #: ../src/guestfs-actions.pod:7367
17842 msgid "(Added in 1.3.1)"
17843 msgstr ""
17844
17845 #. type: =head2
17846 #: ../src/guestfs-actions.pod:7369
17847 msgid "guestfs_zerofree"
17848 msgstr ""
17849
17850 #. type: verbatim
17851 #: ../src/guestfs-actions.pod:7371
17852 #, no-wrap
17853 msgid ""
17854 " int\n"
17855 " guestfs_zerofree (guestfs_h *g,\n"
17856 "                   const char *device);\n"
17857 "\n"
17858 msgstr ""
17859
17860 #. type: textblock
17861 #: ../src/guestfs-actions.pod:7375 ../fish/guestfish-actions.pod:4922
17862 msgid ""
17863 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
17864 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
17865 "possible to compress the filesystem more effectively."
17866 msgstr ""
17867
17868 #. type: textblock
17869 #: ../src/guestfs-actions.pod:7380 ../fish/guestfish-actions.pod:4927
17870 msgid "You should B<not> run this program if the filesystem is mounted."
17871 msgstr ""
17872
17873 #. type: textblock
17874 #: ../src/guestfs-actions.pod:7383 ../fish/guestfish-actions.pod:4930
17875 msgid ""
17876 "It is possible that using this program can damage the filesystem or data on "
17877 "the filesystem."
17878 msgstr ""
17879
17880 #. type: =head2
17881 #: ../src/guestfs-actions.pod:7390
17882 msgid "guestfs_zfgrep"
17883 msgstr ""
17884
17885 #. type: verbatim
17886 #: ../src/guestfs-actions.pod:7392
17887 #, no-wrap
17888 msgid ""
17889 " char **\n"
17890 " guestfs_zfgrep (guestfs_h *g,\n"
17891 "                 const char *pattern,\n"
17892 "                 const char *path);\n"
17893 "\n"
17894 msgstr ""
17895
17896 #. type: textblock
17897 #: ../src/guestfs-actions.pod:7397 ../fish/guestfish-actions.pod:4937
17898 msgid "This calls the external C<zfgrep> program and returns the matching lines."
17899 msgstr ""
17900
17901 #. type: =head2
17902 #: ../src/guestfs-actions.pod:7409
17903 msgid "guestfs_zfgrepi"
17904 msgstr ""
17905
17906 #. type: verbatim
17907 #: ../src/guestfs-actions.pod:7411
17908 #, no-wrap
17909 msgid ""
17910 " char **\n"
17911 " guestfs_zfgrepi (guestfs_h *g,\n"
17912 "                  const char *pattern,\n"
17913 "                  const char *path);\n"
17914 "\n"
17915 msgstr ""
17916
17917 #. type: textblock
17918 #: ../src/guestfs-actions.pod:7416 ../fish/guestfish-actions.pod:4947
17919 msgid "This calls the external C<zfgrep -i> program and returns the matching lines."
17920 msgstr ""
17921
17922 #. type: =head2
17923 #: ../src/guestfs-actions.pod:7428
17924 msgid "guestfs_zfile"
17925 msgstr ""
17926
17927 #. type: verbatim
17928 #: ../src/guestfs-actions.pod:7430
17929 #, no-wrap
17930 msgid ""
17931 " char *\n"
17932 " guestfs_zfile (guestfs_h *g,\n"
17933 "                const char *meth,\n"
17934 "                const char *path);\n"
17935 "\n"
17936 msgstr ""
17937
17938 #. type: textblock
17939 #: ../src/guestfs-actions.pod:7435 ../fish/guestfish-actions.pod:4957
17940 msgid "This command runs C<file> after first decompressing C<path> using C<method>."
17941 msgstr ""
17942
17943 #. type: textblock
17944 #: ../src/guestfs-actions.pod:7438 ../fish/guestfish-actions.pod:4960
17945 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
17946 msgstr ""
17947
17948 #. type: textblock
17949 #: ../src/guestfs-actions.pod:7440
17950 msgid ""
17951 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
17952 "files."
17953 msgstr ""
17954
17955 #. type: textblock
17956 #: ../src/guestfs-actions.pod:7446 ../fish/guestfish-actions.pod:4965
17957 msgid "This function is deprecated.  In new code, use the C<file> call instead."
17958 msgstr ""
17959
17960 #. type: =head2
17961 #: ../src/guestfs-actions.pod:7455
17962 msgid "guestfs_zgrep"
17963 msgstr ""
17964
17965 #. type: verbatim
17966 #: ../src/guestfs-actions.pod:7457
17967 #, no-wrap
17968 msgid ""
17969 " char **\n"
17970 " guestfs_zgrep (guestfs_h *g,\n"
17971 "                const char *regex,\n"
17972 "                const char *path);\n"
17973 "\n"
17974 msgstr ""
17975
17976 #. type: textblock
17977 #: ../src/guestfs-actions.pod:7462 ../fish/guestfish-actions.pod:4976
17978 msgid "This calls the external C<zgrep> program and returns the matching lines."
17979 msgstr ""
17980
17981 #. type: =head2
17982 #: ../src/guestfs-actions.pod:7474
17983 msgid "guestfs_zgrepi"
17984 msgstr ""
17985
17986 #. type: verbatim
17987 #: ../src/guestfs-actions.pod:7476
17988 #, no-wrap
17989 msgid ""
17990 " char **\n"
17991 " guestfs_zgrepi (guestfs_h *g,\n"
17992 "                 const char *regex,\n"
17993 "                 const char *path);\n"
17994 "\n"
17995 msgstr ""
17996
17997 #. type: textblock
17998 #: ../src/guestfs-actions.pod:7481 ../fish/guestfish-actions.pod:4986
17999 msgid "This calls the external C<zgrep -i> program and returns the matching lines."
18000 msgstr ""
18001
18002 #. type: =item
18003 #: ../src/guestfs-availability.pod:3
18004 msgid "B<augeas>"
18005 msgstr ""
18006
18007 #. type: textblock
18008 #: ../src/guestfs-availability.pod:5
18009 msgid ""
18010 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> "
18011 "L</guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> "
18012 "L</guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> "
18013 "L</guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> "
18014 "L</guestfs_aug_rm> L</guestfs_aug_save> L</guestfs_aug_set>"
18015 msgstr ""
18016
18017 #. type: =item
18018 #: ../src/guestfs-availability.pod:21
18019 msgid "B<inotify>"
18020 msgstr ""
18021
18022 #. type: textblock
18023 #: ../src/guestfs-availability.pod:23
18024 msgid ""
18025 "The following functions: L</guestfs_inotify_add_watch> "
18026 "L</guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> "
18027 "L</guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
18028 msgstr ""
18029
18030 #. type: =item
18031 #: ../src/guestfs-availability.pod:31
18032 msgid "B<linuxfsuuid>"
18033 msgstr ""
18034
18035 #. type: textblock
18036 #: ../src/guestfs-availability.pod:33
18037 msgid ""
18038 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> "
18039 "L</guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
18040 msgstr ""
18041
18042 #. type: =item
18043 #: ../src/guestfs-availability.pod:40
18044 msgid "B<linuxmodules>"
18045 msgstr ""
18046
18047 #. type: textblock
18048 #: ../src/guestfs-availability.pod:42
18049 msgid "The following functions: L</guestfs_modprobe>"
18050 msgstr ""
18051
18052 #. type: =item
18053 #: ../src/guestfs-availability.pod:45
18054 msgid "B<linuxxattrs>"
18055 msgstr ""
18056
18057 #. type: textblock
18058 #: ../src/guestfs-availability.pod:47
18059 msgid ""
18060 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> "
18061 "L</guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> "
18062 "L</guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> "
18063 "L</guestfs_setxattr>"
18064 msgstr ""
18065
18066 #. type: =item
18067 #: ../src/guestfs-availability.pod:58
18068 msgid "B<luks>"
18069 msgstr ""
18070
18071 #. type: textblock
18072 #: ../src/guestfs-availability.pod:60
18073 msgid ""
18074 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> "
18075 "L</guestfs_luks_format> L</guestfs_luks_format_cipher> "
18076 "L</guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
18077 msgstr ""
18078
18079 #. type: =item
18080 #: ../src/guestfs-availability.pod:69
18081 msgid "B<lvm2>"
18082 msgstr ""
18083
18084 #. type: textblock
18085 #: ../src/guestfs-availability.pod:71
18086 msgid ""
18087 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> "
18088 "L</guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> "
18089 "L</guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> "
18090 "L</guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> "
18091 "L</guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> "
18092 "L</guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> "
18093 "L</guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> "
18094 "L</guestfs_vgs_full>"
18095 msgstr ""
18096
18097 #. type: =item
18098 #: ../src/guestfs-availability.pod:94
18099 msgid "B<mknod>"
18100 msgstr ""
18101
18102 #. type: textblock
18103 #: ../src/guestfs-availability.pod:96
18104 msgid ""
18105 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> "
18106 "L</guestfs_mknod_b> L</guestfs_mknod_c>"
18107 msgstr ""
18108
18109 #. type: =item
18110 #: ../src/guestfs-availability.pod:102
18111 msgid "B<ntfs3g>"
18112 msgstr ""
18113
18114 #. type: textblock
18115 #: ../src/guestfs-availability.pod:104
18116 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
18117 msgstr ""
18118
18119 #. type: =item
18120 #: ../src/guestfs-availability.pod:107
18121 msgid "B<ntfsprogs>"
18122 msgstr ""
18123
18124 #. type: textblock
18125 #: ../src/guestfs-availability.pod:109
18126 msgid "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
18127 msgstr ""
18128
18129 #. type: =item
18130 #: ../src/guestfs-availability.pod:113
18131 msgid "B<realpath>"
18132 msgstr ""
18133
18134 #. type: textblock
18135 #: ../src/guestfs-availability.pod:115
18136 msgid "The following functions: L</guestfs_realpath>"
18137 msgstr ""
18138
18139 #. type: =item
18140 #: ../src/guestfs-availability.pod:118
18141 msgid "B<scrub>"
18142 msgstr ""
18143
18144 #. type: textblock
18145 #: ../src/guestfs-availability.pod:120
18146 msgid ""
18147 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> "
18148 "L</guestfs_scrub_freespace>"
18149 msgstr ""
18150
18151 #. type: =item
18152 #: ../src/guestfs-availability.pod:125
18153 msgid "B<selinux>"
18154 msgstr ""
18155
18156 #. type: textblock
18157 #: ../src/guestfs-availability.pod:127
18158 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
18159 msgstr ""
18160
18161 #. type: =item
18162 #: ../src/guestfs-availability.pod:131
18163 msgid "B<xz>"
18164 msgstr ""
18165
18166 #. type: textblock
18167 #: ../src/guestfs-availability.pod:133
18168 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
18169 msgstr ""
18170
18171 #. type: =item
18172 #: ../src/guestfs-availability.pod:137
18173 msgid "B<zerofree>"
18174 msgstr ""
18175
18176 #. type: textblock
18177 #: ../src/guestfs-availability.pod:139
18178 msgid "The following functions: L</guestfs_zerofree>"
18179 msgstr ""
18180
18181 #. type: =head2
18182 #: ../src/guestfs-structs.pod:1
18183 msgid "guestfs_int_bool"
18184 msgstr ""
18185
18186 #. type: verbatim
18187 #: ../src/guestfs-structs.pod:3
18188 #, no-wrap
18189 msgid ""
18190 " struct guestfs_int_bool {\n"
18191 "   int32_t i;\n"
18192 "   int32_t b;\n"
18193 " };\n"
18194 " \n"
18195 msgstr ""
18196
18197 #. type: verbatim
18198 #: ../src/guestfs-structs.pod:8
18199 #, no-wrap
18200 msgid ""
18201 " struct guestfs_int_bool_list {\n"
18202 "   uint32_t len; /* Number of elements in list. */\n"
18203 "   struct guestfs_int_bool *val; /* Elements. */\n"
18204 " };\n"
18205 " \n"
18206 msgstr ""
18207
18208 #. type: verbatim
18209 #: ../src/guestfs-structs.pod:13
18210 #, no-wrap
18211 msgid ""
18212 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
18213 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
18214 "\n"
18215 msgstr ""
18216
18217 #. type: =head2
18218 #: ../src/guestfs-structs.pod:16
18219 msgid "guestfs_lvm_pv"
18220 msgstr ""
18221
18222 #. type: verbatim
18223 #: ../src/guestfs-structs.pod:18
18224 #, no-wrap
18225 msgid ""
18226 " struct guestfs_lvm_pv {\n"
18227 "   char *pv_name;\n"
18228 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18229 "*/\n"
18230 "   char pv_uuid[32];\n"
18231 "   char *pv_fmt;\n"
18232 "   uint64_t pv_size;\n"
18233 "   uint64_t dev_size;\n"
18234 "   uint64_t pv_free;\n"
18235 "   uint64_t pv_used;\n"
18236 "   char *pv_attr;\n"
18237 "   int64_t pv_pe_count;\n"
18238 "   int64_t pv_pe_alloc_count;\n"
18239 "   char *pv_tags;\n"
18240 "   uint64_t pe_start;\n"
18241 "   int64_t pv_mda_count;\n"
18242 "   uint64_t pv_mda_free;\n"
18243 " };\n"
18244 " \n"
18245 msgstr ""
18246
18247 #. type: verbatim
18248 #: ../src/guestfs-structs.pod:36
18249 #, no-wrap
18250 msgid ""
18251 " struct guestfs_lvm_pv_list {\n"
18252 "   uint32_t len; /* Number of elements in list. */\n"
18253 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
18254 " };\n"
18255 " \n"
18256 msgstr ""
18257
18258 #. type: verbatim
18259 #: ../src/guestfs-structs.pod:41
18260 #, no-wrap
18261 msgid ""
18262 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
18263 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
18264 "\n"
18265 msgstr ""
18266
18267 #. type: =head2
18268 #: ../src/guestfs-structs.pod:44
18269 msgid "guestfs_lvm_vg"
18270 msgstr ""
18271
18272 #. type: verbatim
18273 #: ../src/guestfs-structs.pod:46
18274 #, no-wrap
18275 msgid ""
18276 " struct guestfs_lvm_vg {\n"
18277 "   char *vg_name;\n"
18278 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18279 "*/\n"
18280 "   char vg_uuid[32];\n"
18281 "   char *vg_fmt;\n"
18282 "   char *vg_attr;\n"
18283 "   uint64_t vg_size;\n"
18284 "   uint64_t vg_free;\n"
18285 "   char *vg_sysid;\n"
18286 "   uint64_t vg_extent_size;\n"
18287 "   int64_t vg_extent_count;\n"
18288 "   int64_t vg_free_count;\n"
18289 "   int64_t max_lv;\n"
18290 "   int64_t max_pv;\n"
18291 "   int64_t pv_count;\n"
18292 "   int64_t lv_count;\n"
18293 "   int64_t snap_count;\n"
18294 "   int64_t vg_seqno;\n"
18295 "   char *vg_tags;\n"
18296 "   int64_t vg_mda_count;\n"
18297 "   uint64_t vg_mda_free;\n"
18298 " };\n"
18299 " \n"
18300 msgstr ""
18301
18302 #. type: verbatim
18303 #: ../src/guestfs-structs.pod:69
18304 #, no-wrap
18305 msgid ""
18306 " struct guestfs_lvm_vg_list {\n"
18307 "   uint32_t len; /* Number of elements in list. */\n"
18308 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
18309 " };\n"
18310 " \n"
18311 msgstr ""
18312
18313 #. type: verbatim
18314 #: ../src/guestfs-structs.pod:74
18315 #, no-wrap
18316 msgid ""
18317 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
18318 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
18319 "\n"
18320 msgstr ""
18321
18322 #. type: =head2
18323 #: ../src/guestfs-structs.pod:77
18324 msgid "guestfs_lvm_lv"
18325 msgstr ""
18326
18327 #. type: verbatim
18328 #: ../src/guestfs-structs.pod:79
18329 #, no-wrap
18330 msgid ""
18331 " struct guestfs_lvm_lv {\n"
18332 "   char *lv_name;\n"
18333 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18334 "*/\n"
18335 "   char lv_uuid[32];\n"
18336 "   char *lv_attr;\n"
18337 "   int64_t lv_major;\n"
18338 "   int64_t lv_minor;\n"
18339 "   int64_t lv_kernel_major;\n"
18340 "   int64_t lv_kernel_minor;\n"
18341 "   uint64_t lv_size;\n"
18342 "   int64_t seg_count;\n"
18343 "   char *origin;\n"
18344 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18345 "   float snap_percent;\n"
18346 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18347 "   float copy_percent;\n"
18348 "   char *move_pv;\n"
18349 "   char *lv_tags;\n"
18350 "   char *mirror_log;\n"
18351 "   char *modules;\n"
18352 " };\n"
18353 " \n"
18354 msgstr ""
18355
18356 #. type: verbatim
18357 #: ../src/guestfs-structs.pod:101
18358 #, no-wrap
18359 msgid ""
18360 " struct guestfs_lvm_lv_list {\n"
18361 "   uint32_t len; /* Number of elements in list. */\n"
18362 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
18363 " };\n"
18364 " \n"
18365 msgstr ""
18366
18367 #. type: verbatim
18368 #: ../src/guestfs-structs.pod:106
18369 #, no-wrap
18370 msgid ""
18371 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
18372 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
18373 "\n"
18374 msgstr ""
18375
18376 #. type: verbatim
18377 #: ../src/guestfs-structs.pod:111
18378 #, no-wrap
18379 msgid ""
18380 " struct guestfs_stat {\n"
18381 "   int64_t dev;\n"
18382 "   int64_t ino;\n"
18383 "   int64_t mode;\n"
18384 "   int64_t nlink;\n"
18385 "   int64_t uid;\n"
18386 "   int64_t gid;\n"
18387 "   int64_t rdev;\n"
18388 "   int64_t size;\n"
18389 "   int64_t blksize;\n"
18390 "   int64_t blocks;\n"
18391 "   int64_t atime;\n"
18392 "   int64_t mtime;\n"
18393 "   int64_t ctime;\n"
18394 " };\n"
18395 " \n"
18396 msgstr ""
18397
18398 #. type: verbatim
18399 #: ../src/guestfs-structs.pod:127
18400 #, no-wrap
18401 msgid ""
18402 " struct guestfs_stat_list {\n"
18403 "   uint32_t len; /* Number of elements in list. */\n"
18404 "   struct guestfs_stat *val; /* Elements. */\n"
18405 " };\n"
18406 " \n"
18407 msgstr ""
18408
18409 #. type: verbatim
18410 #: ../src/guestfs-structs.pod:132
18411 #, no-wrap
18412 msgid ""
18413 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
18414 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
18415 "\n"
18416 msgstr ""
18417
18418 #. type: verbatim
18419 #: ../src/guestfs-structs.pod:137
18420 #, no-wrap
18421 msgid ""
18422 " struct guestfs_statvfs {\n"
18423 "   int64_t bsize;\n"
18424 "   int64_t frsize;\n"
18425 "   int64_t blocks;\n"
18426 "   int64_t bfree;\n"
18427 "   int64_t bavail;\n"
18428 "   int64_t files;\n"
18429 "   int64_t ffree;\n"
18430 "   int64_t favail;\n"
18431 "   int64_t fsid;\n"
18432 "   int64_t flag;\n"
18433 "   int64_t namemax;\n"
18434 " };\n"
18435 " \n"
18436 msgstr ""
18437
18438 #. type: verbatim
18439 #: ../src/guestfs-structs.pod:151
18440 #, no-wrap
18441 msgid ""
18442 " struct guestfs_statvfs_list {\n"
18443 "   uint32_t len; /* Number of elements in list. */\n"
18444 "   struct guestfs_statvfs *val; /* Elements. */\n"
18445 " };\n"
18446 " \n"
18447 msgstr ""
18448
18449 #. type: verbatim
18450 #: ../src/guestfs-structs.pod:156
18451 #, no-wrap
18452 msgid ""
18453 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
18454 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
18455 "\n"
18456 msgstr ""
18457
18458 #. type: =head2
18459 #: ../src/guestfs-structs.pod:159
18460 msgid "guestfs_dirent"
18461 msgstr ""
18462
18463 #. type: verbatim
18464 #: ../src/guestfs-structs.pod:161
18465 #, no-wrap
18466 msgid ""
18467 " struct guestfs_dirent {\n"
18468 "   int64_t ino;\n"
18469 "   char ftyp;\n"
18470 "   char *name;\n"
18471 " };\n"
18472 " \n"
18473 msgstr ""
18474
18475 #. type: verbatim
18476 #: ../src/guestfs-structs.pod:167
18477 #, no-wrap
18478 msgid ""
18479 " struct guestfs_dirent_list {\n"
18480 "   uint32_t len; /* Number of elements in list. */\n"
18481 "   struct guestfs_dirent *val; /* Elements. */\n"
18482 " };\n"
18483 " \n"
18484 msgstr ""
18485
18486 #. type: verbatim
18487 #: ../src/guestfs-structs.pod:172
18488 #, no-wrap
18489 msgid ""
18490 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
18491 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
18492 "\n"
18493 msgstr ""
18494
18495 #. type: verbatim
18496 #: ../src/guestfs-structs.pod:177
18497 #, no-wrap
18498 msgid ""
18499 " struct guestfs_version {\n"
18500 "   int64_t major;\n"
18501 "   int64_t minor;\n"
18502 "   int64_t release;\n"
18503 "   char *extra;\n"
18504 " };\n"
18505 " \n"
18506 msgstr ""
18507
18508 #. type: verbatim
18509 #: ../src/guestfs-structs.pod:184
18510 #, no-wrap
18511 msgid ""
18512 " struct guestfs_version_list {\n"
18513 "   uint32_t len; /* Number of elements in list. */\n"
18514 "   struct guestfs_version *val; /* Elements. */\n"
18515 " };\n"
18516 " \n"
18517 msgstr ""
18518
18519 #. type: verbatim
18520 #: ../src/guestfs-structs.pod:189
18521 #, no-wrap
18522 msgid ""
18523 " void guestfs_free_version (struct guestfs_free_version *);\n"
18524 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
18525 "\n"
18526 msgstr ""
18527
18528 #. type: =head2
18529 #: ../src/guestfs-structs.pod:192
18530 msgid "guestfs_xattr"
18531 msgstr ""
18532
18533 #. type: verbatim
18534 #: ../src/guestfs-structs.pod:194
18535 #, no-wrap
18536 msgid ""
18537 " struct guestfs_xattr {\n"
18538 "   char *attrname;\n"
18539 "   /* The next two fields describe a byte array. */\n"
18540 "   uint32_t attrval_len;\n"
18541 "   char *attrval;\n"
18542 " };\n"
18543 " \n"
18544 msgstr ""
18545
18546 #. type: verbatim
18547 #: ../src/guestfs-structs.pod:201
18548 #, no-wrap
18549 msgid ""
18550 " struct guestfs_xattr_list {\n"
18551 "   uint32_t len; /* Number of elements in list. */\n"
18552 "   struct guestfs_xattr *val; /* Elements. */\n"
18553 " };\n"
18554 " \n"
18555 msgstr ""
18556
18557 #. type: verbatim
18558 #: ../src/guestfs-structs.pod:206
18559 #, no-wrap
18560 msgid ""
18561 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
18562 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
18563 "\n"
18564 msgstr ""
18565
18566 #. type: =head2
18567 #: ../src/guestfs-structs.pod:209
18568 msgid "guestfs_inotify_event"
18569 msgstr ""
18570
18571 #. type: verbatim
18572 #: ../src/guestfs-structs.pod:211
18573 #, no-wrap
18574 msgid ""
18575 " struct guestfs_inotify_event {\n"
18576 "   int64_t in_wd;\n"
18577 "   uint32_t in_mask;\n"
18578 "   uint32_t in_cookie;\n"
18579 "   char *in_name;\n"
18580 " };\n"
18581 " \n"
18582 msgstr ""
18583
18584 #. type: verbatim
18585 #: ../src/guestfs-structs.pod:218
18586 #, no-wrap
18587 msgid ""
18588 " struct guestfs_inotify_event_list {\n"
18589 "   uint32_t len; /* Number of elements in list. */\n"
18590 "   struct guestfs_inotify_event *val; /* Elements. */\n"
18591 " };\n"
18592 " \n"
18593 msgstr ""
18594
18595 #. type: verbatim
18596 #: ../src/guestfs-structs.pod:223
18597 #, no-wrap
18598 msgid ""
18599 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
18600 " void guestfs_free_inotify_event_list (struct "
18601 "guestfs_free_inotify_event_list *);\n"
18602 "\n"
18603 msgstr ""
18604
18605 #. type: =head2
18606 #: ../src/guestfs-structs.pod:226
18607 msgid "guestfs_partition"
18608 msgstr ""
18609
18610 #. type: verbatim
18611 #: ../src/guestfs-structs.pod:228
18612 #, no-wrap
18613 msgid ""
18614 " struct guestfs_partition {\n"
18615 "   int32_t part_num;\n"
18616 "   uint64_t part_start;\n"
18617 "   uint64_t part_end;\n"
18618 "   uint64_t part_size;\n"
18619 " };\n"
18620 " \n"
18621 msgstr ""
18622
18623 #. type: verbatim
18624 #: ../src/guestfs-structs.pod:235
18625 #, no-wrap
18626 msgid ""
18627 " struct guestfs_partition_list {\n"
18628 "   uint32_t len; /* Number of elements in list. */\n"
18629 "   struct guestfs_partition *val; /* Elements. */\n"
18630 " };\n"
18631 " \n"
18632 msgstr ""
18633
18634 #. type: verbatim
18635 #: ../src/guestfs-structs.pod:240
18636 #, no-wrap
18637 msgid ""
18638 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
18639 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
18640 "\n"
18641 msgstr ""
18642
18643 #. type: =head2
18644 #: ../src/guestfs-structs.pod:243
18645 msgid "guestfs_application"
18646 msgstr ""
18647
18648 #. type: verbatim
18649 #: ../src/guestfs-structs.pod:245
18650 #, no-wrap
18651 msgid ""
18652 " struct guestfs_application {\n"
18653 "   char *app_name;\n"
18654 "   char *app_display_name;\n"
18655 "   int32_t app_epoch;\n"
18656 "   char *app_version;\n"
18657 "   char *app_release;\n"
18658 "   char *app_install_path;\n"
18659 "   char *app_trans_path;\n"
18660 "   char *app_publisher;\n"
18661 "   char *app_url;\n"
18662 "   char *app_source_package;\n"
18663 "   char *app_summary;\n"
18664 "   char *app_description;\n"
18665 " };\n"
18666 " \n"
18667 msgstr ""
18668
18669 #. type: verbatim
18670 #: ../src/guestfs-structs.pod:260
18671 #, no-wrap
18672 msgid ""
18673 " struct guestfs_application_list {\n"
18674 "   uint32_t len; /* Number of elements in list. */\n"
18675 "   struct guestfs_application *val; /* Elements. */\n"
18676 " };\n"
18677 " \n"
18678 msgstr ""
18679
18680 #. type: verbatim
18681 #: ../src/guestfs-structs.pod:265
18682 #, no-wrap
18683 msgid ""
18684 " void guestfs_free_application (struct guestfs_free_application *);\n"
18685 " void guestfs_free_application_list (struct guestfs_free_application_list "
18686 "*);\n"
18687 "\n"
18688 msgstr ""
18689
18690 #. type: textblock
18691 #: ../fish/guestfish.pod:5
18692 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
18693 msgstr ""
18694
18695 #. type: verbatim
18696 #: ../fish/guestfish.pod:9
18697 #, no-wrap
18698 msgid ""
18699 " guestfish [--options] [commands]\n"
18700 "\n"
18701 msgstr ""
18702
18703 #. type: verbatim
18704 #: ../fish/guestfish.pod:11
18705 #, no-wrap
18706 msgid ""
18707 " guestfish\n"
18708 "\n"
18709 msgstr ""
18710
18711 #. type: verbatim
18712 #: ../fish/guestfish.pod:13
18713 #, no-wrap
18714 msgid ""
18715 " guestfish [--ro|--rw] -a disk.img\n"
18716 "\n"
18717 msgstr ""
18718
18719 #. type: verbatim
18720 #: ../fish/guestfish.pod:15
18721 #, no-wrap
18722 msgid ""
18723 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
18724 "\n"
18725 msgstr ""
18726
18727 #. type: verbatim
18728 #: ../fish/guestfish.pod:17
18729 #, no-wrap
18730 msgid ""
18731 " guestfish -d libvirt-domain\n"
18732 "\n"
18733 msgstr ""
18734
18735 #. type: verbatim
18736 #: ../fish/guestfish.pod:19
18737 #, no-wrap
18738 msgid ""
18739 " guestfish [--ro|--rw] -a disk.img -i\n"
18740 "\n"
18741 msgstr ""
18742
18743 #. type: verbatim
18744 #: ../fish/guestfish.pod:21
18745 #, no-wrap
18746 msgid ""
18747 " guestfish -d libvirt-domain -i\n"
18748 "\n"
18749 msgstr ""
18750
18751 #. type: =head1
18752 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
18753 msgid "WARNING"
18754 msgstr ""
18755
18756 #. type: textblock
18757 #: ../fish/guestfish.pod:25
18758 msgid ""
18759 "Using guestfish in read/write mode on live virtual machines can be "
18760 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
18761 "option to use guestfish safely if the disk image or virtual machine might be "
18762 "live."
18763 msgstr ""
18764
18765 #. type: textblock
18766 #: ../fish/guestfish.pod:32
18767 msgid ""
18768 "Guestfish is a shell and command-line tool for examining and modifying "
18769 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
18770 "functionality of the guestfs API, see L<guestfs(3)>."
18771 msgstr ""
18772
18773 #. type: textblock
18774 #: ../fish/guestfish.pod:36
18775 msgid ""
18776 "Guestfish gives you structured access to the libguestfs API, from shell "
18777 "scripts or the command line or interactively.  If you want to rescue a "
18778 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
18779 "command."
18780 msgstr ""
18781
18782 #. type: =head1
18783 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:949 ../fuse/guestmount.pod:39 ../tools/virt-tar.pl:50
18784 msgid "EXAMPLES"
18785 msgstr ""
18786
18787 #. type: =head2
18788 #: ../fish/guestfish.pod:43
18789 msgid "As an interactive shell"
18790 msgstr ""
18791
18792 #. type: verbatim
18793 #: ../fish/guestfish.pod:45
18794 #, no-wrap
18795 msgid ""
18796 " $ guestfish\n"
18797 " \n"
18798 msgstr ""
18799
18800 #. type: verbatim
18801 #: ../fish/guestfish.pod:47
18802 #, no-wrap
18803 msgid ""
18804 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
18805 " editing virtual machine filesystems.\n"
18806 " \n"
18807 msgstr ""
18808
18809 #. type: verbatim
18810 #: ../fish/guestfish.pod:50
18811 #, no-wrap
18812 msgid ""
18813 " Type: 'help' for a list of commands\n"
18814 "       'man' to read the manual\n"
18815 "       'quit' to quit the shell\n"
18816 " \n"
18817 msgstr ""
18818
18819 #. type: verbatim
18820 #: ../fish/guestfish.pod:54
18821 #, no-wrap
18822 msgid ""
18823 " ><fs> add-ro disk.img\n"
18824 " ><fs> run\n"
18825 " ><fs> list-filesystems\n"
18826 " /dev/sda1: ext4\n"
18827 " /dev/vg_guest/lv_root: ext4\n"
18828 " /dev/vg_guest/lv_swap: swap\n"
18829 " ><fs> mount /dev/vg_guest/lv_root /\n"
18830 " ><fs> cat /etc/fstab\n"
18831 " # /etc/fstab\n"
18832 " # Created by anaconda\n"
18833 " [...]\n"
18834 " ><fs> exit\n"
18835 "\n"
18836 msgstr ""
18837
18838 #. type: =head2
18839 #: ../fish/guestfish.pod:67
18840 msgid "From shell scripts"
18841 msgstr ""
18842
18843 #. type: textblock
18844 #: ../fish/guestfish.pod:69
18845 msgid "Create a new C</etc/motd> file in a guest or disk image:"
18846 msgstr ""
18847
18848 #. type: verbatim
18849 #: ../fish/guestfish.pod:71
18850 #, no-wrap
18851 msgid ""
18852 " guestfish <<_EOF_\n"
18853 " add disk.img\n"
18854 " run\n"
18855 " mount /dev/vg_guest/lv_root /\n"
18856 " write /etc/motd \"Welcome, new users\"\n"
18857 " _EOF_\n"
18858 "\n"
18859 msgstr ""
18860
18861 #. type: textblock
18862 #: ../fish/guestfish.pod:78
18863 msgid "List the LVM logical volumes in a disk image:"
18864 msgstr ""
18865
18866 #. type: verbatim
18867 #: ../fish/guestfish.pod:80
18868 #, no-wrap
18869 msgid ""
18870 " guestfish -a disk.img --ro <<_EOF_\n"
18871 " run\n"
18872 " lvs\n"
18873 " _EOF_\n"
18874 "\n"
18875 msgstr ""
18876
18877 #. type: textblock
18878 #: ../fish/guestfish.pod:85
18879 msgid "List all the filesystems in a disk image:"
18880 msgstr ""
18881
18882 #. type: verbatim
18883 #: ../fish/guestfish.pod:87
18884 #, no-wrap
18885 msgid ""
18886 " guestfish -a disk.img --ro <<_EOF_\n"
18887 " run\n"
18888 " list-filesystems\n"
18889 " _EOF_\n"
18890 "\n"
18891 msgstr ""
18892
18893 #. type: =head2
18894 #: ../fish/guestfish.pod:92
18895 msgid "On one command line"
18896 msgstr ""
18897
18898 #. type: textblock
18899 #: ../fish/guestfish.pod:94
18900 msgid "Update C</etc/resolv.conf> in a guest:"
18901 msgstr ""
18902
18903 #. type: verbatim
18904 #: ../fish/guestfish.pod:96
18905 #, no-wrap
18906 msgid ""
18907 " guestfish \\\n"
18908 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
18909 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
18910 "\n"
18911 msgstr ""
18912
18913 #. type: textblock
18914 #: ../fish/guestfish.pod:100
18915 msgid "Edit C</boot/grub/grub.conf> interactively:"
18916 msgstr ""
18917
18918 #. type: verbatim
18919 #: ../fish/guestfish.pod:102
18920 #, no-wrap
18921 msgid ""
18922 " guestfish --rw --add disk.img \\\n"
18923 "   --mount /dev/vg_guest/lv_root \\\n"
18924 "   --mount /dev/sda1:/boot \\\n"
18925 "   edit /boot/grub/grub.conf\n"
18926 "\n"
18927 msgstr ""
18928
18929 #. type: =head2
18930 #: ../fish/guestfish.pod:107
18931 msgid "Mount disks automatically"
18932 msgstr ""
18933
18934 #. type: textblock
18935 #: ../fish/guestfish.pod:109
18936 msgid ""
18937 "Use the I<-i> option to automatically mount the disks from a virtual "
18938 "machine:"
18939 msgstr ""
18940
18941 #. type: verbatim
18942 #: ../fish/guestfish.pod:112
18943 #, no-wrap
18944 msgid ""
18945 " guestfish --ro -a disk.img -i cat /etc/group\n"
18946 "\n"
18947 msgstr ""
18948
18949 #. type: verbatim
18950 #: ../fish/guestfish.pod:114
18951 #, no-wrap
18952 msgid ""
18953 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
18954 "\n"
18955 msgstr ""
18956
18957 #. type: textblock
18958 #: ../fish/guestfish.pod:116
18959 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
18960 msgstr ""
18961
18962 #. type: verbatim
18963 #: ../fish/guestfish.pod:118
18964 #, no-wrap
18965 msgid ""
18966 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
18967 "\n"
18968 msgstr ""
18969
18970 #. type: =head2
18971 #: ../fish/guestfish.pod:120
18972 msgid "As a script interpreter"
18973 msgstr ""
18974
18975 #. type: textblock
18976 #: ../fish/guestfish.pod:122
18977 msgid "Create a 100MB disk containing an ext2-formatted partition:"
18978 msgstr ""
18979
18980 #. type: verbatim
18981 #: ../fish/guestfish.pod:124
18982 #, no-wrap
18983 msgid ""
18984 " #!/usr/bin/guestfish -f\n"
18985 " sparse test1.img 100M\n"
18986 " run\n"
18987 " part-disk /dev/sda mbr\n"
18988 " mkfs ext2 /dev/sda1\n"
18989 "\n"
18990 msgstr ""
18991
18992 #. type: =head2
18993 #: ../fish/guestfish.pod:130
18994 msgid "Start with a prepared disk"
18995 msgstr ""
18996
18997 #. type: textblock
18998 #: ../fish/guestfish.pod:132
18999 msgid ""
19000 "An alternate way to create a 100MB disk called C<test1.img> containing a "
19001 "single ext2-formatted partition:"
19002 msgstr ""
19003
19004 #. type: verbatim
19005 #: ../fish/guestfish.pod:135
19006 #, no-wrap
19007 msgid ""
19008 " guestfish -N fs\n"
19009 "\n"
19010 msgstr ""
19011
19012 #. type: textblock
19013 #: ../fish/guestfish.pod:137
19014 msgid "To list what is available do:"
19015 msgstr ""
19016
19017 #. type: verbatim
19018 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:940
19019 #, no-wrap
19020 msgid ""
19021 " guestfish -N help | less\n"
19022 "\n"
19023 msgstr ""
19024
19025 #. type: =head2
19026 #: ../fish/guestfish.pod:141
19027 msgid "Remote control"
19028 msgstr ""
19029
19030 #. type: verbatim
19031 #: ../fish/guestfish.pod:143
19032 #, no-wrap
19033 msgid ""
19034 " eval \"`guestfish --listen`\"\n"
19035 " guestfish --remote add-ro disk.img\n"
19036 " guestfish --remote run\n"
19037 " guestfish --remote lvs\n"
19038 "\n"
19039 msgstr ""
19040
19041 #. type: =head1
19042 #: ../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
19043 msgid "OPTIONS"
19044 msgstr ""
19045
19046 #. type: =item
19047 #: ../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
19048 msgid "B<--help>"
19049 msgstr ""
19050
19051 #. type: textblock
19052 #: ../fish/guestfish.pod:154
19053 msgid "Displays general help on options."
19054 msgstr ""
19055
19056 #. type: =item
19057 #: ../fish/guestfish.pod:156
19058 msgid "B<-h>"
19059 msgstr ""
19060
19061 #. type: =item
19062 #: ../fish/guestfish.pod:158
19063 msgid "B<--cmd-help>"
19064 msgstr ""
19065
19066 #. type: textblock
19067 #: ../fish/guestfish.pod:160
19068 msgid "Lists all available guestfish commands."
19069 msgstr ""
19070
19071 #. type: =item
19072 #: ../fish/guestfish.pod:162
19073 msgid "B<-h cmd>"
19074 msgstr ""
19075
19076 #. type: =item
19077 #: ../fish/guestfish.pod:164
19078 msgid "B<--cmd-help cmd>"
19079 msgstr ""
19080
19081 #. type: textblock
19082 #: ../fish/guestfish.pod:166
19083 msgid "Displays detailed help on a single command C<cmd>."
19084 msgstr ""
19085
19086 #. type: =item
19087 #: ../fish/guestfish.pod:168
19088 msgid "B<-a image>"
19089 msgstr ""
19090
19091 #. type: =item
19092 #: ../fish/guestfish.pod:170
19093 msgid "B<--add image>"
19094 msgstr ""
19095
19096 #. type: textblock
19097 #: ../fish/guestfish.pod:172
19098 msgid "Add a block device or virtual machine image to the shell."
19099 msgstr ""
19100
19101 #. type: textblock
19102 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:81
19103 msgid ""
19104 "The format of the disk image is auto-detected.  To override this and force a "
19105 "particular format use the I<--format=..> option."
19106 msgstr ""
19107
19108 #. type: textblock
19109 #: ../fish/guestfish.pod:177
19110 msgid ""
19111 "Using this flag is mostly equivalent to using the C<add> command, with "
19112 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
19113 "the I<--format=...> flag was given."
19114 msgstr ""
19115
19116 #. type: =item
19117 #: ../fish/guestfish.pod:181
19118 msgid "B<-c URI>"
19119 msgstr ""
19120
19121 #. type: =item
19122 #: ../fish/guestfish.pod:183
19123 msgid "B<--connect URI>"
19124 msgstr ""
19125
19126 #. type: textblock
19127 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:86
19128 msgid ""
19129 "When used in conjunction with the I<-d> option, this specifies the libvirt "
19130 "URI to use.  The default is to use the default libvirt connection."
19131 msgstr ""
19132
19133 #. type: =item
19134 #: ../fish/guestfish.pod:189
19135 msgid "B<--csh>"
19136 msgstr ""
19137
19138 #. type: textblock
19139 #: ../fish/guestfish.pod:191
19140 msgid ""
19141 "If using the I<--listen> option and a csh-like shell, use this option.  See "
19142 "section L</REMOTE CONTROL AND CSH> below."
19143 msgstr ""
19144
19145 #. type: =item
19146 #: ../fish/guestfish.pod:194
19147 msgid "B<-d libvirt-domain>"
19148 msgstr ""
19149
19150 #. type: =item
19151 #: ../fish/guestfish.pod:196
19152 msgid "B<--domain libvirt-domain>"
19153 msgstr ""
19154
19155 #. type: textblock
19156 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:92
19157 msgid ""
19158 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
19159 "used, then any libvirt domain can be used.  However in write mode, only "
19160 "libvirt domains which are shut down can be named here."
19161 msgstr ""
19162
19163 #. type: textblock
19164 #: ../fish/guestfish.pod:202 ../fuse/guestmount.pod:96
19165 msgid "Domain UUIDs can be used instead of names."
19166 msgstr ""
19167
19168 #. type: textblock
19169 #: ../fish/guestfish.pod:204
19170 msgid ""
19171 "Using this flag is mostly equivalent to using the C<add-domain> command, "
19172 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
19173 "if the I<--format:...> flag was given."
19174 msgstr ""
19175
19176 #. type: =item
19177 #: ../fish/guestfish.pod:208
19178 msgid "B<-D>"
19179 msgstr ""
19180
19181 #. type: =item
19182 #: ../fish/guestfish.pod:210
19183 msgid "B<--no-dest-paths>"
19184 msgstr ""
19185
19186 #. type: textblock
19187 #: ../fish/guestfish.pod:212
19188 msgid ""
19189 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
19190 "to hit the tab key to complete paths on the guest filesystem, but this "
19191 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
19192 "allow this feature to be disabled."
19193 msgstr ""
19194
19195 #. type: =item
19196 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:110
19197 msgid "B<--echo-keys>"
19198 msgstr ""
19199
19200 #. type: textblock
19201 #: ../fish/guestfish.pod:219 ../fuse/guestmount.pod:112
19202 msgid ""
19203 "When prompting for keys and passphrases, guestfish normally turns echoing "
19204 "off so you cannot see what you are typing.  If you are not worried about "
19205 "Tempest attacks and there is no one else in the room you can specify this "
19206 "flag to see what you are typing."
19207 msgstr ""
19208
19209 #. type: =item
19210 #: ../fish/guestfish.pod:224
19211 msgid "B<-f file>"
19212 msgstr ""
19213
19214 #. type: =item
19215 #: ../fish/guestfish.pod:226
19216 msgid "B<--file file>"
19217 msgstr ""
19218
19219 #. type: textblock
19220 #: ../fish/guestfish.pod:228
19221 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
19222 msgstr ""
19223
19224 #. type: verbatim
19225 #: ../fish/guestfish.pod:231
19226 #, no-wrap
19227 msgid ""
19228 " #!/usr/bin/guestfish -f\n"
19229 "\n"
19230 msgstr ""
19231
19232 #. type: =item
19233 #: ../fish/guestfish.pod:233
19234 msgid "B<--format=raw|qcow2|..>"
19235 msgstr ""
19236
19237 #. type: =item
19238 #: ../fish/guestfish.pod:235
19239 msgid "B<--format>"
19240 msgstr ""
19241
19242 #. type: textblock
19243 #: ../fish/guestfish.pod:237 ../fuse/guestmount.pod:119
19244 msgid ""
19245 "The default for the I<-a> option is to auto-detect the format of the disk "
19246 "image.  Using this forces the disk format for I<-a> options which follow on "
19247 "the command line.  Using I<--format> with no argument switches back to "
19248 "auto-detection for subsequent I<-a> options."
19249 msgstr ""
19250
19251 #. type: verbatim
19252 #: ../fish/guestfish.pod:244
19253 #, no-wrap
19254 msgid ""
19255 " guestfish --format=raw -a disk.img\n"
19256 "\n"
19257 msgstr ""
19258
19259 #. type: textblock
19260 #: ../fish/guestfish.pod:246
19261 msgid "forces raw format (no auto-detection) for C<disk.img>."
19262 msgstr ""
19263
19264 #. type: verbatim
19265 #: ../fish/guestfish.pod:248
19266 #, no-wrap
19267 msgid ""
19268 " guestfish --format=raw -a disk.img --format -a another.img\n"
19269 "\n"
19270 msgstr ""
19271
19272 #. type: textblock
19273 #: ../fish/guestfish.pod:250
19274 msgid ""
19275 "forces raw format (no auto-detection) for C<disk.img> and reverts to "
19276 "auto-detection for C<another.img>."
19277 msgstr ""
19278
19279 #. type: textblock
19280 #: ../fish/guestfish.pod:253
19281 msgid ""
19282 "If you have untrusted raw-format guest disk images, you should use this "
19283 "option to specify the disk format.  This avoids a possible security problem "
19284 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
19285 msgstr ""
19286
19287 #. type: =item
19288 #: ../fish/guestfish.pod:258
19289 msgid "B<-i>"
19290 msgstr ""
19291
19292 #. type: =item
19293 #: ../fish/guestfish.pod:260
19294 msgid "B<--inspector>"
19295 msgstr ""
19296
19297 #. type: textblock
19298 #: ../fish/guestfish.pod:262 ../fuse/guestmount.pod:139
19299 msgid ""
19300 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
19301 "system and mount filesystems as they would be mounted on the real virtual "
19302 "machine."
19303 msgstr ""
19304
19305 #. type: textblock
19306 #: ../fish/guestfish.pod:266
19307 msgid "Typical usage is either:"
19308 msgstr ""
19309
19310 #. type: verbatim
19311 #: ../fish/guestfish.pod:268
19312 #, no-wrap
19313 msgid ""
19314 " guestfish -d myguest -i\n"
19315 "\n"
19316 msgstr ""
19317
19318 #. type: textblock
19319 #: ../fish/guestfish.pod:270
19320 msgid "(for an inactive libvirt domain called I<myguest>), or:"
19321 msgstr ""
19322
19323 #. type: verbatim
19324 #: ../fish/guestfish.pod:272
19325 #, no-wrap
19326 msgid ""
19327 " guestfish --ro -d myguest -i\n"
19328 "\n"
19329 msgstr ""
19330
19331 #. type: textblock
19332 #: ../fish/guestfish.pod:274
19333 msgid "(for active domains, readonly), or specify the block device directly:"
19334 msgstr ""
19335
19336 #. type: verbatim
19337 #: ../fish/guestfish.pod:276
19338 #, no-wrap
19339 msgid ""
19340 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
19341 "\n"
19342 msgstr ""
19343
19344 #. type: textblock
19345 #: ../fish/guestfish.pod:278
19346 msgid ""
19347 "Note that the command line syntax changed slightly over older versions of "
19348 "guestfish.  You can still use the old syntax:"
19349 msgstr ""
19350
19351 #. type: verbatim
19352 #: ../fish/guestfish.pod:281
19353 #, no-wrap
19354 msgid ""
19355 " guestfish [--ro] -i disk.img\n"
19356 "\n"
19357 msgstr ""
19358
19359 #. type: verbatim
19360 #: ../fish/guestfish.pod:283
19361 #, no-wrap
19362 msgid ""
19363 " guestfish [--ro] -i libvirt-domain\n"
19364 "\n"
19365 msgstr ""
19366
19367 #. type: textblock
19368 #: ../fish/guestfish.pod:285
19369 msgid ""
19370 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
19371 "then using other commands to mount the filesystems that were found."
19372 msgstr ""
19373
19374 #. type: =item
19375 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:143
19376 msgid "B<--keys-from-stdin>"
19377 msgstr ""
19378
19379 #. type: textblock
19380 #: ../fish/guestfish.pod:291 ../fuse/guestmount.pod:145
19381 msgid ""
19382 "Read key or passphrase parameters from stdin.  The default is to try to read "
19383 "passphrases from the user by opening C</dev/tty>."
19384 msgstr ""
19385
19386 #. type: =item
19387 #: ../fish/guestfish.pod:294
19388 msgid "B<--listen>"
19389 msgstr ""
19390
19391 #. type: textblock
19392 #: ../fish/guestfish.pod:296
19393 msgid ""
19394 "Fork into the background and listen for remote commands.  See section "
19395 "L</REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
19396 msgstr ""
19397
19398 #. type: =item
19399 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:148
19400 msgid "B<--live>"
19401 msgstr ""
19402
19403 #. type: textblock
19404 #: ../fish/guestfish.pod:301 ../fuse/guestmount.pod:150
19405 msgid ""
19406 "Connect to a live virtual machine.  (Experimental, see "
19407 "L<guestfs(3)/ATTACHING TO RUNNING DAEMONS>)."
19408 msgstr ""
19409
19410 #. type: =item
19411 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:153
19412 msgid "B<-m dev[:mountpoint[:options]]>"
19413 msgstr ""
19414
19415 #. type: =item
19416 #: ../fish/guestfish.pod:306 ../fuse/guestmount.pod:155
19417 msgid "B<--mount dev[:mountpoint[:options]]>"
19418 msgstr ""
19419
19420 #. type: textblock
19421 #: ../fish/guestfish.pod:308
19422 msgid "Mount the named partition or logical volume on the given mountpoint."
19423 msgstr ""
19424
19425 #. type: textblock
19426 #: ../fish/guestfish.pod:310
19427 msgid "If the mountpoint is omitted, it defaults to C</>."
19428 msgstr ""
19429
19430 #. type: textblock
19431 #: ../fish/guestfish.pod:312
19432 msgid "You have to mount something on C</> before most commands will work."
19433 msgstr ""
19434
19435 #. type: textblock
19436 #: ../fish/guestfish.pod:314
19437 msgid ""
19438 "If any I<-m> or I<--mount> options are given, the guest is automatically "
19439 "launched."
19440 msgstr ""
19441
19442 #. type: textblock
19443 #: ../fish/guestfish.pod:317
19444 msgid ""
19445 "If you don't know what filesystems a disk image contains, you can either run "
19446 "guestfish without this option, then list the partitions, filesystems and LVs "
19447 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
19448 "commands), or you can use the L<virt-filesystems(1)> program."
19449 msgstr ""
19450
19451 #. type: textblock
19452 #: ../fish/guestfish.pod:323 ../fuse/guestmount.pod:163
19453 msgid ""
19454 "The third (and rarely used) part of the mount parameter is the list of mount "
19455 "options used to mount the underlying filesystem.  If this is not given, then "
19456 "the mount options are either the empty string or C<ro> (the latter if the "
19457 "I<--ro> flag is used).  By specifying the mount options, you override this "
19458 "default choice.  Probably the only time you would use this is to enable ACLs "
19459 "and/or extended attributes if the filesystem can support them:"
19460 msgstr ""
19461
19462 #. type: verbatim
19463 #: ../fish/guestfish.pod:331 ../fuse/guestmount.pod:171
19464 #, no-wrap
19465 msgid ""
19466 " -m /dev/sda1:/:acl,user_xattr\n"
19467 "\n"
19468 msgstr ""
19469
19470 #. type: textblock
19471 #: ../fish/guestfish.pod:333
19472 msgid "Using this flag is equivalent to using the C<mount-options> command."
19473 msgstr ""
19474
19475 #. type: =item
19476 #: ../fish/guestfish.pod:335
19477 msgid "B<-n>"
19478 msgstr ""
19479
19480 #. type: =item
19481 #: ../fish/guestfish.pod:337
19482 msgid "B<--no-sync>"
19483 msgstr ""
19484
19485 #. type: textblock
19486 #: ../fish/guestfish.pod:339
19487 msgid ""
19488 "Disable autosync.  This is enabled by default.  See the discussion of "
19489 "autosync in the L<guestfs(3)> manpage."
19490 msgstr ""
19491
19492 #. type: =item
19493 #: ../fish/guestfish.pod:342
19494 msgid "B<-N type>"
19495 msgstr ""
19496
19497 #. type: =item
19498 #: ../fish/guestfish.pod:344
19499 msgid "B<--new type>"
19500 msgstr ""
19501
19502 #. type: =item
19503 #: ../fish/guestfish.pod:346
19504 msgid "B<-N help>"
19505 msgstr ""
19506
19507 #. type: textblock
19508 #: ../fish/guestfish.pod:348
19509 msgid ""
19510 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
19511 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
19512 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
19513 "IMAGES> below."
19514 msgstr ""
19515
19516 #. type: =item
19517 #: ../fish/guestfish.pod:353
19518 msgid "B<--progress-bars>"
19519 msgstr ""
19520
19521 #. type: textblock
19522 #: ../fish/guestfish.pod:355
19523 msgid "Enable progress bars, even when guestfish is used non-interactively."
19524 msgstr ""
19525
19526 #. type: textblock
19527 #: ../fish/guestfish.pod:357
19528 msgid ""
19529 "Progress bars are enabled by default when guestfish is used as an "
19530 "interactive shell."
19531 msgstr ""
19532
19533 #. type: =item
19534 #: ../fish/guestfish.pod:360
19535 msgid "B<--no-progress-bars>"
19536 msgstr ""
19537
19538 #. type: textblock
19539 #: ../fish/guestfish.pod:362
19540 msgid "Disable progress bars."
19541 msgstr ""
19542
19543 #. type: =item
19544 #: ../fish/guestfish.pod:364
19545 msgid "B<--remote[=pid]>"
19546 msgstr ""
19547
19548 #. type: textblock
19549 #: ../fish/guestfish.pod:366
19550 msgid ""
19551 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
19552 "CONTROL GUESTFISH OVER A SOCKET> below."
19553 msgstr ""
19554
19555 #. type: =item
19556 #: ../fish/guestfish.pod:369
19557 msgid "B<-r>"
19558 msgstr ""
19559
19560 #. type: =item
19561 #: ../fish/guestfish.pod:371
19562 msgid "B<--ro>"
19563 msgstr ""
19564
19565 #. type: textblock
19566 #: ../fish/guestfish.pod:373
19567 msgid ""
19568 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
19569 "mounts are done read-only."
19570 msgstr ""
19571
19572 #. type: textblock
19573 #: ../fish/guestfish.pod:376
19574 msgid ""
19575 "The option must always be used if the disk image or virtual machine might be "
19576 "running, and is generally recommended in cases where you don't need write "
19577 "access to the disk."
19578 msgstr ""
19579
19580 #. type: textblock
19581 #: ../fish/guestfish.pod:380
19582 msgid ""
19583 "Note that prepared disk images created with I<-N> are not affected by this "
19584 "option.  Also commands like C<add> are not affected - you have to specify "
19585 "the C<readonly:true> option explicitly if you need it."
19586 msgstr ""
19587
19588 #. type: textblock
19589 #: ../fish/guestfish.pod:384
19590 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
19591 msgstr ""
19592
19593 #. type: =item
19594 #: ../fish/guestfish.pod:386 ../fuse/guestmount.pod:227
19595 msgid "B<--selinux>"
19596 msgstr ""
19597
19598 #. type: textblock
19599 #: ../fish/guestfish.pod:388
19600 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
19601 msgstr ""
19602
19603 #. type: =item
19604 #: ../fish/guestfish.pod:390
19605 msgid "B<-v>"
19606 msgstr ""
19607
19608 #. type: =item
19609 #: ../fish/guestfish.pod:392
19610 msgid "B<--verbose>"
19611 msgstr ""
19612
19613 #. type: textblock
19614 #: ../fish/guestfish.pod:394
19615 msgid ""
19616 "Enable very verbose messages.  This is particularly useful if you find a "
19617 "bug."
19618 msgstr ""
19619
19620 #. type: =item
19621 #: ../fish/guestfish.pod:397
19622 msgid "B<-V>"
19623 msgstr ""
19624
19625 #. type: =item
19626 #: ../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
19627 msgid "B<--version>"
19628 msgstr ""
19629
19630 #. type: textblock
19631 #: ../fish/guestfish.pod:401
19632 msgid "Display the guestfish / libguestfs version number and exit."
19633 msgstr ""
19634
19635 #. type: =item
19636 #: ../fish/guestfish.pod:403
19637 msgid "B<-w>"
19638 msgstr ""
19639
19640 #. type: =item
19641 #: ../fish/guestfish.pod:405
19642 msgid "B<--rw>"
19643 msgstr ""
19644
19645 #. type: textblock
19646 #: ../fish/guestfish.pod:407 ../fuse/guestmount.pod:241
19647 msgid ""
19648 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
19649 "mounts are done read-write."
19650 msgstr ""
19651
19652 #. type: textblock
19653 #: ../fish/guestfish.pod:410
19654 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
19655 msgstr ""
19656
19657 #. type: =item
19658 #: ../fish/guestfish.pod:412
19659 msgid "B<-x>"
19660 msgstr ""
19661
19662 #. type: textblock
19663 #: ../fish/guestfish.pod:414
19664 msgid "Echo each command before executing it."
19665 msgstr ""
19666
19667 #. type: =head1
19668 #: ../fish/guestfish.pod:418
19669 msgid "COMMANDS ON COMMAND LINE"
19670 msgstr ""
19671
19672 #. type: textblock
19673 #: ../fish/guestfish.pod:420
19674 msgid "Any additional (non-option) arguments are treated as commands to execute."
19675 msgstr ""
19676
19677 #. type: textblock
19678 #: ../fish/guestfish.pod:423
19679 msgid ""
19680 "Commands to execute should be separated by a colon (C<:>), where the colon "
19681 "is a separate parameter.  Thus:"
19682 msgstr ""
19683
19684 #. type: verbatim
19685 #: ../fish/guestfish.pod:426
19686 #, no-wrap
19687 msgid ""
19688 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
19689 "\n"
19690 msgstr ""
19691
19692 #. type: textblock
19693 #: ../fish/guestfish.pod:428
19694 msgid ""
19695 "If there are no additional arguments, then we enter a shell, either an "
19696 "interactive shell with a prompt (if the input is a terminal) or a "
19697 "non-interactive shell."
19698 msgstr ""
19699
19700 #. type: textblock
19701 #: ../fish/guestfish.pod:432
19702 msgid ""
19703 "In either command line mode or non-interactive shell, the first command that "
19704 "gives an error causes the whole shell to exit.  In interactive mode (with a "
19705 "prompt) if a command fails, you can continue to enter commands."
19706 msgstr ""
19707
19708 #. type: =head1
19709 #: ../fish/guestfish.pod:437
19710 msgid "USING launch (OR run)"
19711 msgstr ""
19712
19713 #. type: textblock
19714 #: ../fish/guestfish.pod:439
19715 msgid ""
19716 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
19717 "then launch it, then mount any disks you need, and finally issue "
19718 "actions/commands.  So the general order of the day is:"
19719 msgstr ""
19720
19721 #. type: textblock
19722 #: ../fish/guestfish.pod:447
19723 msgid "add or -a/--add"
19724 msgstr ""
19725
19726 #. type: textblock
19727 #: ../fish/guestfish.pod:451
19728 msgid "launch (aka run)"
19729 msgstr ""
19730
19731 #. type: textblock
19732 #: ../fish/guestfish.pod:455
19733 msgid "mount or -m/--mount"
19734 msgstr ""
19735
19736 #. type: textblock
19737 #: ../fish/guestfish.pod:459
19738 msgid "any other commands"
19739 msgstr ""
19740
19741 #. type: textblock
19742 #: ../fish/guestfish.pod:463
19743 msgid ""
19744 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
19745 "guest before mounting or performing any other commands."
19746 msgstr ""
19747
19748 #. type: textblock
19749 #: ../fish/guestfish.pod:466
19750 msgid ""
19751 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
19752 "I<--new> options were given then C<run> is done automatically, simply "
19753 "because guestfish can't perform the action you asked for without doing this."
19754 msgstr ""
19755
19756 #. type: =head1
19757 #: ../fish/guestfish.pod:471
19758 msgid "OPENING DISKS FOR READ AND WRITE"
19759 msgstr ""
19760
19761 #. type: textblock
19762 #: ../fish/guestfish.pod:473
19763 msgid ""
19764 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
19765 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
19766 "I<-i> and I<-m> open disk images read-only or for writing."
19767 msgstr ""
19768
19769 #. type: textblock
19770 #: ../fish/guestfish.pod:478
19771 msgid ""
19772 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
19773 "opening disk images supplied on the command line for write.  To open a disk "
19774 "image read-only you have to do I<-a image --ro>."
19775 msgstr ""
19776
19777 #. type: textblock
19778 #: ../fish/guestfish.pod:482
19779 msgid ""
19780 "This matters: If you accidentally open a live VM disk image writable then "
19781 "you will cause irreversible disk corruption."
19782 msgstr ""
19783
19784 #. type: textblock
19785 #: ../fish/guestfish.pod:485
19786 msgid ""
19787 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
19788 "images will be opened read-only.  You will have to either specify "
19789 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
19790 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
19791 "access for disk images specified by those other command line options."
19792 msgstr ""
19793
19794 #. type: textblock
19795 #: ../fish/guestfish.pod:492
19796 msgid ""
19797 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
19798 "which does nothing (it is already the default).  However it is highly "
19799 "recommended that you use this option to indicate that you need write access, "
19800 "and prepare your scripts for the day when this option will be required for "
19801 "write access."
19802 msgstr ""
19803
19804 #. type: textblock
19805 #: ../fish/guestfish.pod:498
19806 msgid ""
19807 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
19808 "other libguestfs program apart from guestfish and guestmount."
19809 msgstr ""
19810
19811 #. type: =head1
19812 #: ../fish/guestfish.pod:501
19813 msgid "QUOTING"
19814 msgstr ""
19815
19816 #. type: textblock
19817 #: ../fish/guestfish.pod:503
19818 msgid ""
19819 "You can quote ordinary parameters using either single or double quotes.  For "
19820 "example:"
19821 msgstr ""
19822
19823 #. type: verbatim
19824 #: ../fish/guestfish.pod:506
19825 #, no-wrap
19826 msgid ""
19827 " add \"file with a space.img\"\n"
19828 "\n"
19829 msgstr ""
19830
19831 #. type: verbatim
19832 #: ../fish/guestfish.pod:508
19833 #, no-wrap
19834 msgid ""
19835 " rm '/file name'\n"
19836 "\n"
19837 msgstr ""
19838
19839 #. type: verbatim
19840 #: ../fish/guestfish.pod:510
19841 #, no-wrap
19842 msgid ""
19843 " rm '/\"'\n"
19844 "\n"
19845 msgstr ""
19846
19847 #. type: textblock
19848 #: ../fish/guestfish.pod:512
19849 msgid ""
19850 "A few commands require a list of strings to be passed.  For these, use a "
19851 "whitespace-separated list, enclosed in quotes.  Strings containing "
19852 "whitespace to be passed through must be enclosed in single quotes.  A "
19853 "literal single quote must be escaped with a backslash."
19854 msgstr ""
19855
19856 #. type: verbatim
19857 #: ../fish/guestfish.pod:517
19858 #, no-wrap
19859 msgid ""
19860 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
19861 " command \"/bin/echo 'foo      bar'\"\n"
19862 " command \"/bin/echo \\'foo\\'\"\n"
19863 "\n"
19864 msgstr ""
19865
19866 #. type: =head1
19867 #: ../fish/guestfish.pod:521
19868 msgid "OPTIONAL ARGUMENTS"
19869 msgstr ""
19870
19871 #. type: textblock
19872 #: ../fish/guestfish.pod:523
19873 msgid ""
19874 "Some commands take optional arguments.  These arguments appear in this "
19875 "documentation as C<[argname:..]>.  You can use them as in these examples:"
19876 msgstr ""
19877
19878 #. type: verbatim
19879 #: ../fish/guestfish.pod:527
19880 #, no-wrap
19881 msgid ""
19882 " add-drive-opts filename\n"
19883 "\n"
19884 msgstr ""
19885
19886 #. type: verbatim
19887 #: ../fish/guestfish.pod:529
19888 #, no-wrap
19889 msgid ""
19890 " add-drive-opts filename readonly:true\n"
19891 "\n"
19892 msgstr ""
19893
19894 #. type: verbatim
19895 #: ../fish/guestfish.pod:531
19896 #, no-wrap
19897 msgid ""
19898 " add-drive-opts filename format:qcow2 readonly:false\n"
19899 "\n"
19900 msgstr ""
19901
19902 #. type: textblock
19903 #: ../fish/guestfish.pod:533
19904 msgid ""
19905 "Each optional argument can appear at most once.  All optional arguments must "
19906 "appear after the required ones."
19907 msgstr ""
19908
19909 #. type: =head1
19910 #: ../fish/guestfish.pod:536
19911 msgid "NUMBERS"
19912 msgstr ""
19913
19914 #. type: textblock
19915 #: ../fish/guestfish.pod:538
19916 msgid "This section applies to all commands which can take integers as parameters."
19917 msgstr ""
19918
19919 #. type: =head2
19920 #: ../fish/guestfish.pod:541
19921 msgid "SIZE SUFFIX"
19922 msgstr ""
19923
19924 #. type: textblock
19925 #: ../fish/guestfish.pod:543
19926 msgid ""
19927 "When the command takes a parameter measured in bytes, you can use one of the "
19928 "following suffixes to specify kilobytes, megabytes and larger sizes:"
19929 msgstr ""
19930
19931 #. type: =item
19932 #: ../fish/guestfish.pod:549
19933 msgid "B<k> or B<K> or B<KiB>"
19934 msgstr ""
19935
19936 #. type: textblock
19937 #: ../fish/guestfish.pod:551
19938 msgid "The size in kilobytes (multiplied by 1024)."
19939 msgstr ""
19940
19941 #. type: =item
19942 #: ../fish/guestfish.pod:553
19943 msgid "B<KB>"
19944 msgstr ""
19945
19946 #. type: textblock
19947 #: ../fish/guestfish.pod:555
19948 msgid "The size in SI 1000 byte units."
19949 msgstr ""
19950
19951 #. type: =item
19952 #: ../fish/guestfish.pod:557
19953 msgid "B<M> or B<MiB>"
19954 msgstr ""
19955
19956 #. type: textblock
19957 #: ../fish/guestfish.pod:559
19958 msgid "The size in megabytes (multiplied by 1048576)."
19959 msgstr ""
19960
19961 #. type: =item
19962 #: ../fish/guestfish.pod:561
19963 msgid "B<MB>"
19964 msgstr ""
19965
19966 #. type: textblock
19967 #: ../fish/guestfish.pod:563
19968 msgid "The size in SI 1000000 byte units."
19969 msgstr ""
19970
19971 #. type: =item
19972 #: ../fish/guestfish.pod:565
19973 msgid "B<G> or B<GiB>"
19974 msgstr ""
19975
19976 #. type: textblock
19977 #: ../fish/guestfish.pod:567
19978 msgid "The size in gigabytes (multiplied by 2**30)."
19979 msgstr ""
19980
19981 #. type: =item
19982 #: ../fish/guestfish.pod:569
19983 msgid "B<GB>"
19984 msgstr ""
19985
19986 #. type: textblock
19987 #: ../fish/guestfish.pod:571
19988 msgid "The size in SI 10**9 byte units."
19989 msgstr ""
19990
19991 #. type: =item
19992 #: ../fish/guestfish.pod:573
19993 msgid "B<T> or B<TiB>"
19994 msgstr ""
19995
19996 #. type: textblock
19997 #: ../fish/guestfish.pod:575
19998 msgid "The size in terabytes (multiplied by 2**40)."
19999 msgstr ""
20000
20001 #. type: =item
20002 #: ../fish/guestfish.pod:577
20003 msgid "B<TB>"
20004 msgstr ""
20005
20006 #. type: textblock
20007 #: ../fish/guestfish.pod:579
20008 msgid "The size in SI 10**12 byte units."
20009 msgstr ""
20010
20011 #. type: =item
20012 #: ../fish/guestfish.pod:581
20013 msgid "B<P> or B<PiB>"
20014 msgstr ""
20015
20016 #. type: textblock
20017 #: ../fish/guestfish.pod:583
20018 msgid "The size in petabytes (multiplied by 2**50)."
20019 msgstr ""
20020
20021 #. type: =item
20022 #: ../fish/guestfish.pod:585
20023 msgid "B<PB>"
20024 msgstr ""
20025
20026 #. type: textblock
20027 #: ../fish/guestfish.pod:587
20028 msgid "The size in SI 10**15 byte units."
20029 msgstr ""
20030
20031 #. type: =item
20032 #: ../fish/guestfish.pod:589
20033 msgid "B<E> or B<EiB>"
20034 msgstr ""
20035
20036 #. type: textblock
20037 #: ../fish/guestfish.pod:591
20038 msgid "The size in exabytes (multiplied by 2**60)."
20039 msgstr ""
20040
20041 #. type: =item
20042 #: ../fish/guestfish.pod:593
20043 msgid "B<EB>"
20044 msgstr ""
20045
20046 #. type: textblock
20047 #: ../fish/guestfish.pod:595
20048 msgid "The size in SI 10**18 byte units."
20049 msgstr ""
20050
20051 #. type: =item
20052 #: ../fish/guestfish.pod:597
20053 msgid "B<Z> or B<ZiB>"
20054 msgstr ""
20055
20056 #. type: textblock
20057 #: ../fish/guestfish.pod:599
20058 msgid "The size in zettabytes (multiplied by 2**70)."
20059 msgstr ""
20060
20061 #. type: =item
20062 #: ../fish/guestfish.pod:601
20063 msgid "B<ZB>"
20064 msgstr ""
20065
20066 #. type: textblock
20067 #: ../fish/guestfish.pod:603
20068 msgid "The size in SI 10**21 byte units."
20069 msgstr ""
20070
20071 #. type: =item
20072 #: ../fish/guestfish.pod:605
20073 msgid "B<Y> or B<YiB>"
20074 msgstr ""
20075
20076 #. type: textblock
20077 #: ../fish/guestfish.pod:607
20078 msgid "The size in yottabytes (multiplied by 2**80)."
20079 msgstr ""
20080
20081 #. type: =item
20082 #: ../fish/guestfish.pod:609
20083 msgid "B<YB>"
20084 msgstr ""
20085
20086 #. type: textblock
20087 #: ../fish/guestfish.pod:611
20088 msgid "The size in SI 10**24 byte units."
20089 msgstr ""
20090
20091 #. type: verbatim
20092 #: ../fish/guestfish.pod:617
20093 #, no-wrap
20094 msgid ""
20095 " truncate-size /file 1G\n"
20096 "\n"
20097 msgstr ""
20098
20099 #. type: textblock
20100 #: ../fish/guestfish.pod:619
20101 msgid "would truncate the file to 1 gigabyte."
20102 msgstr ""
20103
20104 #. type: textblock
20105 #: ../fish/guestfish.pod:621
20106 msgid ""
20107 "Be careful because a few commands take sizes in kilobytes or megabytes "
20108 "(eg. the parameter to L</memsize> is specified in megabytes already).  "
20109 "Adding a suffix will probably not do what you expect."
20110 msgstr ""
20111
20112 #. type: =head2
20113 #: ../fish/guestfish.pod:625
20114 msgid "OCTAL AND HEXADECIMAL NUMBERS"
20115 msgstr ""
20116
20117 #. type: textblock
20118 #: ../fish/guestfish.pod:627
20119 msgid ""
20120 "For specifying the radix (base) use the C convention: C<0> to prefix an "
20121 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
20122 msgstr ""
20123
20124 #. type: verbatim
20125 #: ../fish/guestfish.pod:630
20126 #, no-wrap
20127 msgid ""
20128 " 1234      decimal number 1234\n"
20129 " 02322     octal number, equivalent to decimal 1234\n"
20130 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
20131 "\n"
20132 msgstr ""
20133
20134 #. type: textblock
20135 #: ../fish/guestfish.pod:634
20136 msgid ""
20137 "When using the C<chmod> command, you almost always want to specify an octal "
20138 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
20139 "L<chmod(1)> program):"
20140 msgstr ""
20141
20142 #. type: verbatim
20143 #: ../fish/guestfish.pod:638
20144 #, no-wrap
20145 msgid ""
20146 " chmod 0777 /public  # OK\n"
20147 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
20148 "\n"
20149 msgstr ""
20150
20151 #. type: textblock
20152 #: ../fish/guestfish.pod:641
20153 msgid ""
20154 "Commands that return numbers usually print them in decimal, but some "
20155 "commands print numbers in other radices (eg. C<umask> prints the mode in "
20156 "octal, preceeded by C<0>)."
20157 msgstr ""
20158
20159 #. type: =head1
20160 #: ../fish/guestfish.pod:645
20161 msgid "WILDCARDS AND GLOBBING"
20162 msgstr ""
20163
20164 #. type: textblock
20165 #: ../fish/guestfish.pod:647
20166 msgid ""
20167 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
20168 "(globbing) by default.  So for example the following will not do what you "
20169 "expect:"
20170 msgstr ""
20171
20172 #. type: verbatim
20173 #: ../fish/guestfish.pod:651
20174 #, no-wrap
20175 msgid ""
20176 " rm-rf /home/*\n"
20177 "\n"
20178 msgstr ""
20179
20180 #. type: textblock
20181 #: ../fish/guestfish.pod:653
20182 msgid ""
20183 "Assuming you don't have a directory called literally C</home/*> then the "
20184 "above command will return an error."
20185 msgstr ""
20186
20187 #. type: textblock
20188 #: ../fish/guestfish.pod:656
20189 msgid "To perform wildcard expansion, use the C<glob> command."
20190 msgstr ""
20191
20192 #. type: verbatim
20193 #: ../fish/guestfish.pod:658
20194 #, no-wrap
20195 msgid ""
20196 " glob rm-rf /home/*\n"
20197 "\n"
20198 msgstr ""
20199
20200 #. type: textblock
20201 #: ../fish/guestfish.pod:660
20202 msgid ""
20203 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
20204 "many times), equivalent to:"
20205 msgstr ""
20206
20207 #. type: verbatim
20208 #: ../fish/guestfish.pod:663
20209 #, no-wrap
20210 msgid ""
20211 " rm-rf /home/jim\n"
20212 " rm-rf /home/joe\n"
20213 " rm-rf /home/mary\n"
20214 "\n"
20215 msgstr ""
20216
20217 #. type: textblock
20218 #: ../fish/guestfish.pod:667
20219 msgid "C<glob> only works on simple guest paths and not on device names."
20220 msgstr ""
20221
20222 #. type: textblock
20223 #: ../fish/guestfish.pod:669
20224 msgid ""
20225 "If you have several parameters, each containing a wildcard, then glob will "
20226 "perform a Cartesian product."
20227 msgstr ""
20228
20229 #. type: =head1
20230 #: ../fish/guestfish.pod:672
20231 msgid "COMMENTS"
20232 msgstr ""
20233
20234 #. type: textblock
20235 #: ../fish/guestfish.pod:674
20236 msgid ""
20237 "Any line which starts with a I<#> character is treated as a comment and "
20238 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
20239 "a command.  For example:"
20240 msgstr ""
20241
20242 #. type: verbatim
20243 #: ../fish/guestfish.pod:678
20244 #, no-wrap
20245 msgid ""
20246 " # this is a comment\n"
20247 "         # this is a comment\n"
20248 " foo # NOT a comment\n"
20249 "\n"
20250 msgstr ""
20251
20252 #. type: textblock
20253 #: ../fish/guestfish.pod:682
20254 msgid "Blank lines are also ignored."
20255 msgstr ""
20256
20257 #. type: =head1
20258 #: ../fish/guestfish.pod:684
20259 msgid "RUNNING COMMANDS LOCALLY"
20260 msgstr ""
20261
20262 #. type: textblock
20263 #: ../fish/guestfish.pod:686
20264 msgid ""
20265 "Any line which starts with a I<!> character is treated as a command sent to "
20266 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
20267 msgstr ""
20268
20269 #. type: verbatim
20270 #: ../fish/guestfish.pod:690
20271 #, no-wrap
20272 msgid ""
20273 " !mkdir local\n"
20274 " tgz-out /remote local/remote-data.tar.gz\n"
20275 "\n"
20276 msgstr ""
20277
20278 #. type: textblock
20279 #: ../fish/guestfish.pod:693
20280 msgid ""
20281 "will create a directory C<local> on the host, and then export the contents "
20282 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
20283 "(See C<tgz-out>)."
20284 msgstr ""
20285
20286 #. type: textblock
20287 #: ../fish/guestfish.pod:697
20288 msgid ""
20289 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
20290 "effect, due to the way that subprocesses work in Unix."
20291 msgstr ""
20292
20293 #. type: =head2
20294 #: ../fish/guestfish.pod:700
20295 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
20296 msgstr ""
20297
20298 #. type: textblock
20299 #: ../fish/guestfish.pod:702
20300 msgid ""
20301 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
20302 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
20303 "and executed as guestfish commands."
20304 msgstr ""
20305
20306 #. type: textblock
20307 #: ../fish/guestfish.pod:706
20308 msgid ""
20309 "Thus you can use shell script to construct arbitrary guestfish commands "
20310 "which are then parsed by guestfish."
20311 msgstr ""
20312
20313 #. type: textblock
20314 #: ../fish/guestfish.pod:709
20315 msgid ""
20316 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
20317 "through C</foo.100>) using guestfish commands alone.  However this is simple "
20318 "if we use a shell script to create the guestfish commands for us:"
20319 msgstr ""
20320
20321 #. type: verbatim
20322 #: ../fish/guestfish.pod:714
20323 #, no-wrap
20324 msgid ""
20325 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
20326 "\n"
20327 msgstr ""
20328
20329 #. type: textblock
20330 #: ../fish/guestfish.pod:716
20331 msgid "or with names like C</foo.001>:"
20332 msgstr ""
20333
20334 #. type: verbatim
20335 #: ../fish/guestfish.pod:718
20336 #, no-wrap
20337 msgid ""
20338 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
20339 "\n"
20340 msgstr ""
20341
20342 #. type: textblock
20343 #: ../fish/guestfish.pod:720
20344 msgid ""
20345 "When using guestfish interactively it can be helpful to just run the shell "
20346 "script first (ie. remove the initial C<E<lt>> character so it is just an "
20347 "ordinary I<!> local command), see what guestfish commands it would run, and "
20348 "when you are happy with those prepend the C<E<lt>> character to run the "
20349 "guestfish commands for real."
20350 msgstr ""
20351
20352 #. type: =head1
20353 #: ../fish/guestfish.pod:726
20354 msgid "PIPES"
20355 msgstr ""
20356
20357 #. type: textblock
20358 #: ../fish/guestfish.pod:728
20359 msgid ""
20360 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
20361 "command (a guestfish command) to the second command (any host command).  For "
20362 "example:"
20363 msgstr ""
20364
20365 #. type: verbatim
20366 #: ../fish/guestfish.pod:732
20367 #, no-wrap
20368 msgid ""
20369 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
20370 "\n"
20371 msgstr ""
20372
20373 #. type: textblock
20374 #: ../fish/guestfish.pod:734
20375 msgid ""
20376 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
20377 "program).  The above command would list all accounts in the guest filesystem "
20378 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
20379 msgstr ""
20380
20381 #. type: verbatim
20382 #: ../fish/guestfish.pod:739
20383 #, no-wrap
20384 msgid ""
20385 " hexdump /bin/ls | head\n"
20386 " list-devices | tail -1\n"
20387 " tgz-out / - | tar ztf -\n"
20388 "\n"
20389 msgstr ""
20390
20391 #. type: textblock
20392 #: ../fish/guestfish.pod:743
20393 msgid ""
20394 "The space before the pipe symbol is required, any space after the pipe "
20395 "symbol is optional.  Everything after the pipe symbol is just passed "
20396 "straight to the host shell, so it can contain redirections, globs and "
20397 "anything else that makes sense on the host side."
20398 msgstr ""
20399
20400 #. type: textblock
20401 #: ../fish/guestfish.pod:748
20402 msgid ""
20403 "To use a literal argument which begins with a pipe symbol, you have to quote "
20404 "it, eg:"
20405 msgstr ""
20406
20407 #. type: verbatim
20408 #: ../fish/guestfish.pod:751
20409 #, no-wrap
20410 msgid ""
20411 " echo \"|\"\n"
20412 "\n"
20413 msgstr ""
20414
20415 #. type: =head1
20416 #: ../fish/guestfish.pod:753
20417 msgid "HOME DIRECTORIES"
20418 msgstr ""
20419
20420 #. type: textblock
20421 #: ../fish/guestfish.pod:755
20422 msgid ""
20423 "If a parameter starts with the character C<~> then the tilde may be expanded "
20424 "as a home directory path (either C<~> for the current user's home directory, "
20425 "or C<~user> for another user)."
20426 msgstr ""
20427
20428 #. type: textblock
20429 #: ../fish/guestfish.pod:759
20430 msgid ""
20431 "Note that home directory expansion happens for users known I<on the host>, "
20432 "not in the guest filesystem."
20433 msgstr ""
20434
20435 #. type: textblock
20436 #: ../fish/guestfish.pod:762
20437 msgid ""
20438 "To use a literal argument which begins with a tilde, you have to quote it, "
20439 "eg:"
20440 msgstr ""
20441
20442 #. type: verbatim
20443 #: ../fish/guestfish.pod:765
20444 #, no-wrap
20445 msgid ""
20446 " echo \"~\"\n"
20447 "\n"
20448 msgstr ""
20449
20450 #. type: textblock
20451 #: ../fish/guestfish.pod:769
20452 msgid ""
20453 "Libguestfs has some support for Linux guests encrypted according to the "
20454 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
20455 "disk encryption systems used by modern Linux guests.  Currently only "
20456 "LVM-on-LUKS is supported."
20457 msgstr ""
20458
20459 #. type: textblock
20460 #: ../fish/guestfish.pod:774
20461 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
20462 msgstr ""
20463
20464 #. type: verbatim
20465 #: ../fish/guestfish.pod:776
20466 #, no-wrap
20467 msgid ""
20468 " ><fs> vfs-type /dev/sda2\n"
20469 " crypto_LUKS\n"
20470 "\n"
20471 msgstr ""
20472
20473 #. type: textblock
20474 #: ../fish/guestfish.pod:779
20475 msgid ""
20476 "Then open those devices using L</luks-open>.  This creates a device-mapper "
20477 "device called C</dev/mapper/luksdev>."
20478 msgstr ""
20479
20480 #. type: verbatim
20481 #: ../fish/guestfish.pod:782
20482 #, no-wrap
20483 msgid ""
20484 " ><fs> luks-open /dev/sda2 luksdev\n"
20485 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
20486 "\n"
20487 msgstr ""
20488
20489 #. type: textblock
20490 #: ../fish/guestfish.pod:785
20491 msgid ""
20492 "Finally you have to tell LVM to scan for volume groups on the newly created "
20493 "mapper device:"
20494 msgstr ""
20495
20496 #. type: verbatim
20497 #: ../fish/guestfish.pod:788
20498 #, no-wrap
20499 msgid ""
20500 " vgscan\n"
20501 " vg-activate-all true\n"
20502 "\n"
20503 msgstr ""
20504
20505 #. type: textblock
20506 #: ../fish/guestfish.pod:791
20507 msgid "The logical volume(s) can now be mounted in the usual way."
20508 msgstr ""
20509
20510 #. type: textblock
20511 #: ../fish/guestfish.pod:793
20512 msgid ""
20513 "Before closing a LUKS device you must unmount any logical volumes on it and "
20514 "deactivate the volume groups by calling C<vg-activate false VG> on each "
20515 "one.  Then you can close the mapper device:"
20516 msgstr ""
20517
20518 #. type: verbatim
20519 #: ../fish/guestfish.pod:797
20520 #, no-wrap
20521 msgid ""
20522 " vg-activate false /dev/VG\n"
20523 " luks-close /dev/mapper/luksdev\n"
20524 "\n"
20525 msgstr ""
20526
20527 #. type: =head1
20528 #: ../fish/guestfish.pod:800
20529 msgid "WINDOWS PATHS"
20530 msgstr ""
20531
20532 #. type: textblock
20533 #: ../fish/guestfish.pod:802
20534 msgid ""
20535 "If a path is prefixed with C<win:> then you can use Windows-style drive "
20536 "letters and paths (with some limitations).  The following commands are "
20537 "equivalent:"
20538 msgstr ""
20539
20540 #. type: verbatim
20541 #: ../fish/guestfish.pod:806
20542 #, no-wrap
20543 msgid ""
20544 " file /WINDOWS/system32/config/system.LOG\n"
20545 "\n"
20546 msgstr ""
20547
20548 #. type: verbatim
20549 #: ../fish/guestfish.pod:808
20550 #, no-wrap
20551 msgid ""
20552 " file win:\\windows\\system32\\config\\system.log\n"
20553 "\n"
20554 msgstr ""
20555
20556 #. type: verbatim
20557 #: ../fish/guestfish.pod:810
20558 #, no-wrap
20559 msgid ""
20560 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
20561 "\n"
20562 msgstr ""
20563
20564 #. type: textblock
20565 #: ../fish/guestfish.pod:812
20566 msgid ""
20567 "The parameter is rewritten \"behind the scenes\" by looking up the position "
20568 "where the drive is mounted, prepending that to the path, changing all "
20569 "backslash characters to forward slash, then resolving the result using "
20570 "L</case-sensitive-path>.  For example if the E: drive was mounted on C</e> "
20571 "then the parameter might be rewritten like this:"
20572 msgstr ""
20573
20574 #. type: verbatim
20575 #: ../fish/guestfish.pod:818
20576 #, no-wrap
20577 msgid ""
20578 " win:e:\\foo\\bar => /e/FOO/bar\n"
20579 "\n"
20580 msgstr ""
20581
20582 #. type: textblock
20583 #: ../fish/guestfish.pod:820
20584 msgid "This only works in argument positions that expect a path."
20585 msgstr ""
20586
20587 #. type: =head1
20588 #: ../fish/guestfish.pod:822
20589 msgid "UPLOADING AND DOWNLOADING FILES"
20590 msgstr ""
20591
20592 #. type: textblock
20593 #: ../fish/guestfish.pod:824
20594 msgid ""
20595 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
20596 "others which upload from or download to a local file, you can use the "
20597 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
20598 msgstr ""
20599
20600 #. type: verbatim
20601 #: ../fish/guestfish.pod:828
20602 #, no-wrap
20603 msgid ""
20604 " upload - /foo\n"
20605 "\n"
20606 msgstr ""
20607
20608 #. type: textblock
20609 #: ../fish/guestfish.pod:830
20610 msgid "reads stdin and creates from that a file C</foo> in the disk image, and:"
20611 msgstr ""
20612
20613 #. type: verbatim
20614 #: ../fish/guestfish.pod:833
20615 #, no-wrap
20616 msgid ""
20617 " tar-out /etc - | tar tf -\n"
20618 "\n"
20619 msgstr ""
20620
20621 #. type: textblock
20622 #: ../fish/guestfish.pod:835
20623 msgid ""
20624 "writes the tarball to stdout and then pipes that into the external \"tar\" "
20625 "command (see L</PIPES>)."
20626 msgstr ""
20627
20628 #. type: textblock
20629 #: ../fish/guestfish.pod:838
20630 msgid ""
20631 "When using C<-> to read from stdin, the input is read up to the end of "
20632 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
20633 "some arbitrary end marker:"
20634 msgstr ""
20635
20636 #. type: verbatim
20637 #: ../fish/guestfish.pod:842
20638 #, no-wrap
20639 msgid ""
20640 " upload -<<END /foo\n"
20641 " input line 1\n"
20642 " input line 2\n"
20643 " input line 3\n"
20644 " END\n"
20645 "\n"
20646 msgstr ""
20647
20648 #. type: textblock
20649 #: ../fish/guestfish.pod:848
20650 msgid ""
20651 "Any string of characters can be used instead of C<END>.  The end marker must "
20652 "appear on a line of its own, without any preceeding or following characters "
20653 "(not even spaces)."
20654 msgstr ""
20655
20656 #. type: textblock
20657 #: ../fish/guestfish.pod:852
20658 msgid ""
20659 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
20660 "upload local files (so-called \"FileIn\" parameters in the generator)."
20661 msgstr ""
20662
20663 #. type: =head1
20664 #: ../fish/guestfish.pod:855
20665 msgid "EXIT ON ERROR BEHAVIOUR"
20666 msgstr ""
20667
20668 #. type: textblock
20669 #: ../fish/guestfish.pod:857
20670 msgid ""
20671 "By default, guestfish will ignore any errors when in interactive mode "
20672 "(ie. taking commands from a human over a tty), and will exit on the first "
20673 "error in non-interactive mode (scripts, commands given on the command line)."
20674 msgstr ""
20675
20676 #. type: textblock
20677 #: ../fish/guestfish.pod:862
20678 msgid ""
20679 "If you prefix a command with a I<-> character, then that command will not "
20680 "cause guestfish to exit, even if that (one) command returns an error."
20681 msgstr ""
20682
20683 #. type: =head1
20684 #: ../fish/guestfish.pod:866
20685 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
20686 msgstr ""
20687
20688 #. type: textblock
20689 #: ../fish/guestfish.pod:868
20690 msgid ""
20691 "Guestfish can be remote-controlled over a socket.  This is useful "
20692 "particularly in shell scripts where you want to make several different "
20693 "changes to a filesystem, but you don't want the overhead of starting up a "
20694 "guestfish process each time."
20695 msgstr ""
20696
20697 #. type: textblock
20698 #: ../fish/guestfish.pod:873
20699 msgid "Start a guestfish server process using:"
20700 msgstr ""
20701
20702 #. type: verbatim
20703 #: ../fish/guestfish.pod:875
20704 #, no-wrap
20705 msgid ""
20706 " eval \"`guestfish --listen`\"\n"
20707 "\n"
20708 msgstr ""
20709
20710 #. type: textblock
20711 #: ../fish/guestfish.pod:877
20712 msgid "and then send it commands by doing:"
20713 msgstr ""
20714
20715 #. type: verbatim
20716 #: ../fish/guestfish.pod:879
20717 #, no-wrap
20718 msgid ""
20719 " guestfish --remote cmd [...]\n"
20720 "\n"
20721 msgstr ""
20722
20723 #. type: textblock
20724 #: ../fish/guestfish.pod:881
20725 msgid "To cause the server to exit, send it the exit command:"
20726 msgstr ""
20727
20728 #. type: verbatim
20729 #: ../fish/guestfish.pod:883
20730 #, no-wrap
20731 msgid ""
20732 " guestfish --remote exit\n"
20733 "\n"
20734 msgstr ""
20735
20736 #. type: textblock
20737 #: ../fish/guestfish.pod:885
20738 msgid ""
20739 "Note that the server will normally exit if there is an error in a command.  "
20740 "You can change this in the usual way.  See section L</EXIT ON ERROR "
20741 "BEHAVIOUR>."
20742 msgstr ""
20743
20744 #. type: =head2
20745 #: ../fish/guestfish.pod:889
20746 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
20747 msgstr ""
20748
20749 #. type: textblock
20750 #: ../fish/guestfish.pod:891
20751 msgid ""
20752 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
20753 "is how the I<--remote> option knows where to send the commands.  You can "
20754 "have several guestfish listener processes running using:"
20755 msgstr ""
20756
20757 #. type: verbatim
20758 #: ../fish/guestfish.pod:895
20759 #, no-wrap
20760 msgid ""
20761 " eval \"`guestfish --listen`\"\n"
20762 " pid1=$GUESTFISH_PID\n"
20763 " eval \"`guestfish --listen`\"\n"
20764 " pid2=$GUESTFISH_PID\n"
20765 " ...\n"
20766 " guestfish --remote=$pid1 cmd\n"
20767 " guestfish --remote=$pid2 cmd\n"
20768 "\n"
20769 msgstr ""
20770
20771 #. type: =head2
20772 #: ../fish/guestfish.pod:903
20773 msgid "REMOTE CONTROL AND CSH"
20774 msgstr ""
20775
20776 #. type: textblock
20777 #: ../fish/guestfish.pod:905
20778 msgid ""
20779 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
20780 "option:"
20781 msgstr ""
20782
20783 #. type: verbatim
20784 #: ../fish/guestfish.pod:908
20785 #, no-wrap
20786 msgid ""
20787 " eval \"`guestfish --listen --csh`\"\n"
20788 "\n"
20789 msgstr ""
20790
20791 #. type: =head2
20792 #: ../fish/guestfish.pod:910
20793 msgid "REMOTE CONTROL DETAILS"
20794 msgstr ""
20795
20796 #. type: textblock
20797 #: ../fish/guestfish.pod:912
20798 msgid ""
20799 "Remote control happens over a Unix domain socket called "
20800 "C</tmp/.guestfish-$UID/socket-$PID>, where C<$UID> is the effective user ID "
20801 "of the process, and C<$PID> is the process ID of the server."
20802 msgstr ""
20803
20804 #. type: textblock
20805 #: ../fish/guestfish.pod:916
20806 msgid "Guestfish client and server versions must match exactly."
20807 msgstr ""
20808
20809 #. type: =head1
20810 #: ../fish/guestfish.pod:918
20811 msgid "PREPARED DISK IMAGES"
20812 msgstr ""
20813
20814 #. type: textblock
20815 #: ../fish/guestfish.pod:920
20816 msgid ""
20817 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
20818 "preformatted disk images that guestfish can make for you to save typing.  "
20819 "This is particularly useful for testing purposes.  This option is used "
20820 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
20821 "can be mixed with I<-a>)."
20822 msgstr ""
20823
20824 #. type: textblock
20825 #: ../fish/guestfish.pod:926
20826 msgid ""
20827 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
20828 "the second and so on.  Existing files in the current directory are "
20829 "I<overwritten>."
20830 msgstr ""
20831
20832 #. type: textblock
20833 #: ../fish/guestfish.pod:930
20834 msgid ""
20835 "The type briefly describes how the disk should be sized, partitioned, how "
20836 "filesystem(s) should be created, and how content should be added.  "
20837 "Optionally the type can be followed by extra parameters, separated by C<:> "
20838 "(colon) characters.  For example, I<-N fs> creates a default 100MB, "
20839 "sparsely-allocated disk, containing a single partition, with the partition "
20840 "formatted as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem "
20841 "on a 1GB disk instead."
20842 msgstr ""
20843
20844 #. type: textblock
20845 #: ../fish/guestfish.pod:938
20846 msgid "To list the available types and any extra parameters they take, run:"
20847 msgstr ""
20848
20849 #. type: textblock
20850 #: ../fish/guestfish.pod:942
20851 msgid ""
20852 "Note that the prepared filesystem is not mounted.  You would usually have to "
20853 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
20854 msgstr ""
20855
20856 #. type: textblock
20857 #: ../fish/guestfish.pod:946
20858 msgid ""
20859 "If any I<-N> or I<--new> options are given, the guest is automatically "
20860 "launched."
20861 msgstr ""
20862
20863 #. type: textblock
20864 #: ../fish/guestfish.pod:951
20865 msgid "Create a 100MB disk with an ext4-formatted partition:"
20866 msgstr ""
20867
20868 #. type: verbatim
20869 #: ../fish/guestfish.pod:953
20870 #, no-wrap
20871 msgid ""
20872 " guestfish -N fs:ext4\n"
20873 "\n"
20874 msgstr ""
20875
20876 #. type: textblock
20877 #: ../fish/guestfish.pod:955
20878 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
20879 msgstr ""
20880
20881 #. type: verbatim
20882 #: ../fish/guestfish.pod:957
20883 #, no-wrap
20884 msgid ""
20885 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
20886 "\n"
20887 msgstr ""
20888
20889 #. type: textblock
20890 #: ../fish/guestfish.pod:959
20891 msgid "Create a blank 200MB disk:"
20892 msgstr ""
20893
20894 #. type: verbatim
20895 #: ../fish/guestfish.pod:961
20896 #, no-wrap
20897 msgid ""
20898 " guestfish -N disk:200M\n"
20899 "\n"
20900 msgstr ""
20901
20902 #. type: =head1
20903 #: ../fish/guestfish.pod:963
20904 msgid "PROGRESS BARS"
20905 msgstr ""
20906
20907 #. type: textblock
20908 #: ../fish/guestfish.pod:965
20909 msgid ""
20910 "Some (not all) long-running commands send progress notification messages as "
20911 "they are running.  Guestfish turns these messages into progress bars."
20912 msgstr ""
20913
20914 #. type: textblock
20915 #: ../fish/guestfish.pod:969
20916 msgid ""
20917 "When a command that supports progress bars takes longer than two seconds to "
20918 "run, and if progress bars are enabled, then you will see one appearing below "
20919 "the command:"
20920 msgstr ""
20921
20922 #. type: verbatim
20923 #: ../fish/guestfish.pod:973
20924 #, no-wrap
20925 msgid ""
20926 " ><fs> copy-size /large-file /another-file 2048M\n"
20927 " / 10% [#####-----------------------------------------] 00:30\n"
20928 "\n"
20929 msgstr ""
20930
20931 #. type: textblock
20932 #: ../fish/guestfish.pod:976
20933 msgid ""
20934 "The spinner on the left hand side moves round once for every progress "
20935 "notification received from the backend.  This is a (reasonably) golden "
20936 "assurance that the command is \"doing something\" even if the progress bar "
20937 "is not moving, because the command is able to send the progress "
20938 "notifications.  When the bar reaches 100% and the command finishes, the "
20939 "spinner disappears."
20940 msgstr ""
20941
20942 #. type: textblock
20943 #: ../fish/guestfish.pod:983
20944 msgid ""
20945 "Progress bars are enabled by default when guestfish is used interactively.  "
20946 "You can enable them even for non-interactive modes using I<--progress-bars>, "
20947 "and you can disable them completely using I<--no-progress-bars>."
20948 msgstr ""
20949
20950 #. type: =head1
20951 #: ../fish/guestfish.pod:988
20952 msgid "GUESTFISH COMMANDS"
20953 msgstr ""
20954
20955 #. type: textblock
20956 #: ../fish/guestfish.pod:990
20957 msgid ""
20958 "The commands in this section are guestfish convenience commands, in other "
20959 "words, they are not part of the L<guestfs(3)> API."
20960 msgstr ""
20961
20962 #. type: =head2
20963 #: ../fish/guestfish.pod:993
20964 msgid "help"
20965 msgstr ""
20966
20967 #. type: verbatim
20968 #: ../fish/guestfish.pod:995
20969 #, no-wrap
20970 msgid ""
20971 " help\n"
20972 " help cmd\n"
20973 "\n"
20974 msgstr ""
20975
20976 #. type: textblock
20977 #: ../fish/guestfish.pod:998
20978 msgid "Without any parameter, this provides general help."
20979 msgstr ""
20980
20981 #. type: textblock
20982 #: ../fish/guestfish.pod:1000
20983 msgid "With a C<cmd> parameter, this displays detailed help for that command."
20984 msgstr ""
20985
20986 #. type: =head2
20987 #: ../fish/guestfish.pod:1002
20988 msgid "quit | exit"
20989 msgstr ""
20990
20991 #. type: textblock
20992 #: ../fish/guestfish.pod:1004
20993 msgid "This exits guestfish.  You can also use C<^D> key."
20994 msgstr ""
20995
20996 #. type: textblock
20997 #: ../fish/guestfish.pod:1006
20998 msgid "@FISH_COMMANDS@"
20999 msgstr ""
21000
21001 #. type: =head1
21002 #: ../fish/guestfish.pod:1008
21003 msgid "COMMANDS"
21004 msgstr ""
21005
21006 #. type: =head1
21007 #: ../fish/guestfish.pod:1012 ../test-tool/libguestfs-test-tool.pod:77
21008 msgid "EXIT CODE"
21009 msgstr ""
21010
21011 #. type: textblock
21012 #: ../fish/guestfish.pod:1014
21013 msgid ""
21014 "guestfish returns 0 if the commands completed without error, or 1 if there "
21015 "was an error."
21016 msgstr ""
21017
21018 #. type: =item
21019 #: ../fish/guestfish.pod:1021
21020 msgid "EDITOR"
21021 msgstr ""
21022
21023 #. type: textblock
21024 #: ../fish/guestfish.pod:1023
21025 msgid ""
21026 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
21027 "C<vi>."
21028 msgstr ""
21029
21030 #. type: =item
21031 #: ../fish/guestfish.pod:1026
21032 msgid "GUESTFISH_PID"
21033 msgstr ""
21034
21035 #. type: textblock
21036 #: ../fish/guestfish.pod:1028
21037 msgid ""
21038 "Used with the I<--remote> option to specify the remote guestfish process to "
21039 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
21040 msgstr ""
21041
21042 #. type: =item
21043 #: ../fish/guestfish.pod:1032
21044 msgid "HEXEDITOR"
21045 msgstr ""
21046
21047 #. type: textblock
21048 #: ../fish/guestfish.pod:1034
21049 msgid ""
21050 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
21051 "not specified, the external L<hexedit(1)> program is used."
21052 msgstr ""
21053
21054 #. type: =item
21055 #: ../fish/guestfish.pod:1038
21056 msgid "HOME"
21057 msgstr ""
21058
21059 #. type: textblock
21060 #: ../fish/guestfish.pod:1040
21061 msgid ""
21062 "If compiled with GNU readline support, various files in the home directory "
21063 "can be used.  See L</FILES>."
21064 msgstr ""
21065
21066 #. type: textblock
21067 #: ../fish/guestfish.pod:1049
21068 msgid ""
21069 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
21070 "effect as using the B<-v> option."
21071 msgstr ""
21072
21073 #. type: textblock
21074 #: ../fish/guestfish.pod:1061
21075 msgid ""
21076 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
21077 "the discussion of paths in L<guestfs(3)>."
21078 msgstr ""
21079
21080 #. type: textblock
21081 #: ../fish/guestfish.pod:1072
21082 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
21083 msgstr ""
21084
21085 #. type: =item
21086 #: ../fish/guestfish.pod:1074
21087 msgid "PAGER"
21088 msgstr ""
21089
21090 #. type: textblock
21091 #: ../fish/guestfish.pod:1076
21092 msgid ""
21093 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
21094 "C<more>."
21095 msgstr ""
21096
21097 #. type: =head1
21098 #: ../fish/guestfish.pod:1092 ../fuse/guestmount.pod:254
21099 msgid "FILES"
21100 msgstr ""
21101
21102 #. type: =item
21103 #: ../fish/guestfish.pod:1096 ../fuse/guestmount.pod:258
21104 msgid "$HOME/.libguestfs-tools.rc"
21105 msgstr ""
21106
21107 #. type: =item
21108 #: ../fish/guestfish.pod:1098 ../fuse/guestmount.pod:260
21109 msgid "/etc/libguestfs-tools.conf"
21110 msgstr ""
21111
21112 #. type: textblock
21113 #: ../fish/guestfish.pod:1100 ../fuse/guestmount.pod:262
21114 msgid ""
21115 "This configuration file controls the default read-only or read-write mode "
21116 "(I<--ro> or I<--rw>)."
21117 msgstr ""
21118
21119 #. type: textblock
21120 #: ../fish/guestfish.pod:1103
21121 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
21122 msgstr ""
21123
21124 #. type: =item
21125 #: ../fish/guestfish.pod:1105
21126 msgid "$HOME/.guestfish"
21127 msgstr ""
21128
21129 #. type: textblock
21130 #: ../fish/guestfish.pod:1107
21131 msgid ""
21132 "If compiled with GNU readline support, then the command history is saved in "
21133 "this file."
21134 msgstr ""
21135
21136 #. type: =item
21137 #: ../fish/guestfish.pod:1110
21138 msgid "$HOME/.inputrc"
21139 msgstr ""
21140
21141 #. type: =item
21142 #: ../fish/guestfish.pod:1112
21143 msgid "/etc/inputrc"
21144 msgstr ""
21145
21146 #. type: textblock
21147 #: ../fish/guestfish.pod:1114
21148 msgid ""
21149 "If compiled with GNU readline support, then these files can be used to "
21150 "configure readline.  For further information, please see "
21151 "L<readline(3)/INITIALIZATION FILE>."
21152 msgstr ""
21153
21154 #. type: textblock
21155 #: ../fish/guestfish.pod:1118
21156 msgid "To write rules which only apply to guestfish, use:"
21157 msgstr ""
21158
21159 #. type: verbatim
21160 #: ../fish/guestfish.pod:1120
21161 #, no-wrap
21162 msgid ""
21163 " $if guestfish\n"
21164 " ...\n"
21165 " $endif\n"
21166 "\n"
21167 msgstr ""
21168
21169 #. type: textblock
21170 #: ../fish/guestfish.pod:1124
21171 msgid ""
21172 "Variables that you can set in inputrc that change the behaviour of guestfish "
21173 "in useful ways include:"
21174 msgstr ""
21175
21176 #. type: =item
21177 #: ../fish/guestfish.pod:1129
21178 msgid "completion-ignore-case (default: on)"
21179 msgstr ""
21180
21181 #. type: textblock
21182 #: ../fish/guestfish.pod:1131
21183 msgid ""
21184 "By default, guestfish will ignore case when tab-completing paths on the "
21185 "disk.  Use:"
21186 msgstr ""
21187
21188 #. type: verbatim
21189 #: ../fish/guestfish.pod:1134
21190 #, no-wrap
21191 msgid ""
21192 " set completion-ignore-case off\n"
21193 "\n"
21194 msgstr ""
21195
21196 #. type: textblock
21197 #: ../fish/guestfish.pod:1136
21198 msgid "to make guestfish case sensitive."
21199 msgstr ""
21200
21201 #. type: =item
21202 #: ../fish/guestfish.pod:1140
21203 msgid "test1.img"
21204 msgstr ""
21205
21206 #. type: =item
21207 #: ../fish/guestfish.pod:1142
21208 msgid "test2.img (etc)"
21209 msgstr ""
21210
21211 #. type: textblock
21212 #: ../fish/guestfish.pod:1144
21213 msgid ""
21214 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
21215 "will be created in the file C<test1.img> in the current directory.  The "
21216 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
21217 "the same name will be overwritten."
21218 msgstr ""
21219
21220 #. type: textblock
21221 #: ../fish/guestfish.pod:1153
21222 msgid ""
21223 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, "
21224 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, "
21225 "L<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, "
21226 "L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, "
21227 "L<virt-rescue(1)>, L<virt-resize(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, "
21228 "L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<hexedit(1)>."
21229 msgstr ""
21230
21231 #. type: textblock
21232 #: ../fish/guestfish.pod:1183 ../test-tool/libguestfs-test-tool.pod:102 ../fuse/guestmount.pod:289 ../tools/virt-win-reg.pl:606 ../tools/virt-list-filesystems.pl:210 ../tools/virt-tar.pl:309 ../tools/virt-make-fs.pl:572 ../tools/virt-list-partitions.pl:277
21233 msgid ""
21234 "This program is free software; you can redistribute it and/or modify it "
21235 "under the terms of the GNU General Public License as published by the Free "
21236 "Software Foundation; either version 2 of the License, or (at your option) "
21237 "any later version."
21238 msgstr ""
21239
21240 #. type: textblock
21241 #: ../fish/guestfish.pod:1188 ../test-tool/libguestfs-test-tool.pod:107 ../fuse/guestmount.pod:294 ../tools/virt-win-reg.pl:611 ../tools/virt-list-filesystems.pl:215 ../tools/virt-tar.pl:314 ../tools/virt-make-fs.pl:577 ../tools/virt-list-partitions.pl:282
21242 msgid ""
21243 "This program is distributed in the hope that it will be useful, but WITHOUT "
21244 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
21245 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
21246 "more details."
21247 msgstr ""
21248
21249 #. type: textblock
21250 #: ../fish/guestfish.pod:1193 ../test-tool/libguestfs-test-tool.pod:112 ../fuse/guestmount.pod:299 ../tools/virt-win-reg.pl:616 ../tools/virt-list-filesystems.pl:220 ../tools/virt-tar.pl:319 ../tools/virt-make-fs.pl:582 ../tools/virt-list-partitions.pl:287
21251 msgid ""
21252 "You should have received a copy of the GNU General Public License along with "
21253 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
21254 "Ave, Cambridge, MA 02139, USA."
21255 msgstr ""
21256
21257 #. type: =head2
21258 #: ../fish/guestfish-actions.pod:1
21259 msgid "add-cdrom"
21260 msgstr ""
21261
21262 #. type: verbatim
21263 #: ../fish/guestfish-actions.pod:3
21264 #, no-wrap
21265 msgid ""
21266 " add-cdrom filename\n"
21267 "\n"
21268 msgstr ""
21269
21270 #. type: textblock
21271 #: ../fish/guestfish-actions.pod:15
21272 msgid ""
21273 "This call checks for the existence of C<filename>.  This stops you from "
21274 "specifying other types of drive which are supported by qemu such as C<nbd:> "
21275 "and C<http:> URLs.  To specify those, use the general L</config> call "
21276 "instead."
21277 msgstr ""
21278
21279 #. type: textblock
21280 #: ../fish/guestfish-actions.pod:22
21281 msgid ""
21282 "If you just want to add an ISO file (often you use this as an efficient way "
21283 "to transfer large files into the guest), then you should probably use "
21284 "L</add-drive-ro> instead."
21285 msgstr ""
21286
21287 #. type: =head2
21288 #: ../fish/guestfish-actions.pod:35
21289 msgid "add-domain"
21290 msgstr ""
21291
21292 #. type: =head2
21293 #: ../fish/guestfish-actions.pod:37
21294 msgid "domain"
21295 msgstr ""
21296
21297 #. type: verbatim
21298 #: ../fish/guestfish-actions.pod:39
21299 #, no-wrap
21300 msgid ""
21301 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..] "
21302 "[allowuuid:..]\n"
21303 "\n"
21304 msgstr ""
21305
21306 #. type: textblock
21307 #: ../fish/guestfish-actions.pod:41
21308 msgid ""
21309 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
21310 "It works by connecting to libvirt, requesting the domain and domain XML from "
21311 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
21312 msgstr ""
21313
21314 #. type: textblock
21315 #: ../fish/guestfish-actions.pod:76
21316 msgid ""
21317 "The other optional parameters are passed directly through to "
21318 "L</add-drive-opts>."
21319 msgstr ""
21320
21321 #. type: textblock
21322 #: ../fish/guestfish-actions.pod:79 ../fish/guestfish-actions.pod:143 ../fish/guestfish-actions.pod:3052
21323 msgid ""
21324 "This command has one or more optional arguments.  See L</OPTIONAL "
21325 "ARGUMENTS>."
21326 msgstr ""
21327
21328 #. type: =head2
21329 #: ../fish/guestfish-actions.pod:81
21330 msgid "add-drive"
21331 msgstr ""
21332
21333 #. type: verbatim
21334 #: ../fish/guestfish-actions.pod:83
21335 #, no-wrap
21336 msgid ""
21337 " add-drive filename\n"
21338 "\n"
21339 msgstr ""
21340
21341 #. type: textblock
21342 #: ../fish/guestfish-actions.pod:85
21343 msgid ""
21344 "This function is the equivalent of calling L</add-drive-opts> with no "
21345 "optional parameters, so the disk is added writable, with the format being "
21346 "detected automatically."
21347 msgstr ""
21348
21349 #. type: textblock
21350 #: ../fish/guestfish-actions.pod:89
21351 msgid ""
21352 "Automatic detection of the format opens you up to a potential security hole "
21353 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
21354 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
21355 "you should think about replacing calls to this function with calls to "
21356 "L</add-drive-opts>, and specifying the format."
21357 msgstr ""
21358
21359 #. type: =head2
21360 #: ../fish/guestfish-actions.pod:96
21361 msgid "add-drive-opts"
21362 msgstr ""
21363
21364 #. type: =head2
21365 #: ../fish/guestfish-actions.pod:98
21366 msgid "add"
21367 msgstr ""
21368
21369 #. type: verbatim
21370 #: ../fish/guestfish-actions.pod:100
21371 #, no-wrap
21372 msgid ""
21373 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
21374 "\n"
21375 msgstr ""
21376
21377 #. type: textblock
21378 #: ../fish/guestfish-actions.pod:127
21379 msgid ""
21380 "This forces the image format.  If you omit this (or use L</add-drive> or "
21381 "L</add-drive-ro>) then the format is automatically detected.  Possible "
21382 "formats include C<raw> and C<qcow2>."
21383 msgstr ""
21384
21385 #. type: textblock
21386 #: ../fish/guestfish-actions.pod:138
21387 msgid ""
21388 "This rarely-used option lets you emulate the behaviour of the deprecated "
21389 "L</add-drive-with-if> call (q.v.)"
21390 msgstr ""
21391
21392 #. type: =head2
21393 #: ../fish/guestfish-actions.pod:145
21394 msgid "add-drive-ro"
21395 msgstr ""
21396
21397 #. type: =head2
21398 #: ../fish/guestfish-actions.pod:147
21399 msgid "add-ro"
21400 msgstr ""
21401
21402 #. type: verbatim
21403 #: ../fish/guestfish-actions.pod:149
21404 #, no-wrap
21405 msgid ""
21406 " add-drive-ro filename\n"
21407 "\n"
21408 msgstr ""
21409
21410 #. type: textblock
21411 #: ../fish/guestfish-actions.pod:151
21412 msgid ""
21413 "This function is the equivalent of calling L</add-drive-opts> with the "
21414 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
21415 "is added read-only, with the format being detected automatically."
21416 msgstr ""
21417
21418 #. type: =head2
21419 #: ../fish/guestfish-actions.pod:156
21420 msgid "add-drive-ro-with-if"
21421 msgstr ""
21422
21423 #. type: verbatim
21424 #: ../fish/guestfish-actions.pod:158
21425 #, no-wrap
21426 msgid ""
21427 " add-drive-ro-with-if filename iface\n"
21428 "\n"
21429 msgstr ""
21430
21431 #. type: textblock
21432 #: ../fish/guestfish-actions.pod:160
21433 msgid ""
21434 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
21435 "interface emulation to use at run time."
21436 msgstr ""
21437
21438 #. type: =head2
21439 #: ../fish/guestfish-actions.pod:170
21440 msgid "add-drive-with-if"
21441 msgstr ""
21442
21443 #. type: verbatim
21444 #: ../fish/guestfish-actions.pod:172
21445 #, no-wrap
21446 msgid ""
21447 " add-drive-with-if filename iface\n"
21448 "\n"
21449 msgstr ""
21450
21451 #. type: textblock
21452 #: ../fish/guestfish-actions.pod:174
21453 msgid ""
21454 "This is the same as L</add-drive> but it allows you to specify the QEMU "
21455 "interface emulation to use at run time."
21456 msgstr ""
21457
21458 #. type: =head2
21459 #: ../fish/guestfish-actions.pod:184
21460 msgid "aug-clear"
21461 msgstr ""
21462
21463 #. type: verbatim
21464 #: ../fish/guestfish-actions.pod:186
21465 #, no-wrap
21466 msgid ""
21467 " aug-clear augpath\n"
21468 "\n"
21469 msgstr ""
21470
21471 #. type: =head2
21472 #: ../fish/guestfish-actions.pod:191
21473 msgid "aug-close"
21474 msgstr ""
21475
21476 #. type: verbatim
21477 #: ../fish/guestfish-actions.pod:193
21478 #, no-wrap
21479 msgid ""
21480 " aug-close\n"
21481 "\n"
21482 msgstr ""
21483
21484 #. type: textblock
21485 #: ../fish/guestfish-actions.pod:195
21486 msgid ""
21487 "Close the current Augeas handle and free up any resources used by it.  After "
21488 "calling this, you have to call L</aug-init> again before you can use any "
21489 "other Augeas functions."
21490 msgstr ""
21491
21492 #. type: =head2
21493 #: ../fish/guestfish-actions.pod:200
21494 msgid "aug-defnode"
21495 msgstr ""
21496
21497 #. type: verbatim
21498 #: ../fish/guestfish-actions.pod:202
21499 #, no-wrap
21500 msgid ""
21501 " aug-defnode name expr val\n"
21502 "\n"
21503 msgstr ""
21504
21505 #. type: textblock
21506 #: ../fish/guestfish-actions.pod:207
21507 msgid ""
21508 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
21509 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
21510 "containing that single node."
21511 msgstr ""
21512
21513 #. type: =head2
21514 #: ../fish/guestfish-actions.pod:215
21515 msgid "aug-defvar"
21516 msgstr ""
21517
21518 #. type: verbatim
21519 #: ../fish/guestfish-actions.pod:217
21520 #, no-wrap
21521 msgid ""
21522 " aug-defvar name expr\n"
21523 "\n"
21524 msgstr ""
21525
21526 #. type: =head2
21527 #: ../fish/guestfish-actions.pod:226
21528 msgid "aug-get"
21529 msgstr ""
21530
21531 #. type: verbatim
21532 #: ../fish/guestfish-actions.pod:228
21533 #, no-wrap
21534 msgid ""
21535 " aug-get augpath\n"
21536 "\n"
21537 msgstr ""
21538
21539 #. type: =head2
21540 #: ../fish/guestfish-actions.pod:233
21541 msgid "aug-init"
21542 msgstr ""
21543
21544 #. type: verbatim
21545 #: ../fish/guestfish-actions.pod:235
21546 #, no-wrap
21547 msgid ""
21548 " aug-init root flags\n"
21549 "\n"
21550 msgstr ""
21551
21552 #. type: textblock
21553 #: ../fish/guestfish-actions.pod:241
21554 msgid "You must call this before using any other L</aug-*> commands."
21555 msgstr ""
21556
21557 #. type: textblock
21558 #: ../fish/guestfish-actions.pod:276
21559 msgid "Do not load the tree in L</aug-init>."
21560 msgstr ""
21561
21562 #. type: textblock
21563 #: ../fish/guestfish-actions.pod:280
21564 msgid "To close the handle, you can call L</aug-close>."
21565 msgstr ""
21566
21567 #. type: =head2
21568 #: ../fish/guestfish-actions.pod:284
21569 msgid "aug-insert"
21570 msgstr ""
21571
21572 #. type: verbatim
21573 #: ../fish/guestfish-actions.pod:286
21574 #, no-wrap
21575 msgid ""
21576 " aug-insert augpath label true|false\n"
21577 "\n"
21578 msgstr ""
21579
21580 #. type: =head2
21581 #: ../fish/guestfish-actions.pod:296
21582 msgid "aug-load"
21583 msgstr ""
21584
21585 #. type: verbatim
21586 #: ../fish/guestfish-actions.pod:298
21587 #, no-wrap
21588 msgid ""
21589 " aug-load\n"
21590 "\n"
21591 msgstr ""
21592
21593 #. type: =head2
21594 #: ../fish/guestfish-actions.pod:305
21595 msgid "aug-ls"
21596 msgstr ""
21597
21598 #. type: verbatim
21599 #: ../fish/guestfish-actions.pod:307
21600 #, no-wrap
21601 msgid ""
21602 " aug-ls augpath\n"
21603 "\n"
21604 msgstr ""
21605
21606 #. type: textblock
21607 #: ../fish/guestfish-actions.pod:309
21608 msgid ""
21609 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
21610 "resulting nodes into alphabetical order."
21611 msgstr ""
21612
21613 #. type: =head2
21614 #: ../fish/guestfish-actions.pod:312
21615 msgid "aug-match"
21616 msgstr ""
21617
21618 #. type: verbatim
21619 #: ../fish/guestfish-actions.pod:314
21620 #, no-wrap
21621 msgid ""
21622 " aug-match augpath\n"
21623 "\n"
21624 msgstr ""
21625
21626 #. type: =head2
21627 #: ../fish/guestfish-actions.pod:320
21628 msgid "aug-mv"
21629 msgstr ""
21630
21631 #. type: verbatim
21632 #: ../fish/guestfish-actions.pod:322
21633 #, no-wrap
21634 msgid ""
21635 " aug-mv src dest\n"
21636 "\n"
21637 msgstr ""
21638
21639 #. type: =head2
21640 #: ../fish/guestfish-actions.pod:327
21641 msgid "aug-rm"
21642 msgstr ""
21643
21644 #. type: verbatim
21645 #: ../fish/guestfish-actions.pod:329
21646 #, no-wrap
21647 msgid ""
21648 " aug-rm augpath\n"
21649 "\n"
21650 msgstr ""
21651
21652 #. type: =head2
21653 #: ../fish/guestfish-actions.pod:335
21654 msgid "aug-save"
21655 msgstr ""
21656
21657 #. type: verbatim
21658 #: ../fish/guestfish-actions.pod:337
21659 #, no-wrap
21660 msgid ""
21661 " aug-save\n"
21662 "\n"
21663 msgstr ""
21664
21665 #. type: textblock
21666 #: ../fish/guestfish-actions.pod:341
21667 msgid ""
21668 "The flags which were passed to L</aug-init> affect exactly how files are "
21669 "saved."
21670 msgstr ""
21671
21672 #. type: =head2
21673 #: ../fish/guestfish-actions.pod:344
21674 msgid "aug-set"
21675 msgstr ""
21676
21677 #. type: verbatim
21678 #: ../fish/guestfish-actions.pod:346
21679 #, no-wrap
21680 msgid ""
21681 " aug-set augpath val\n"
21682 "\n"
21683 msgstr ""
21684
21685 #. type: textblock
21686 #: ../fish/guestfish-actions.pod:350
21687 msgid ""
21688 "In the Augeas API, it is possible to clear a node by setting the value to "
21689 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
21690 "this call.  Instead you must use the L</aug-clear> call."
21691 msgstr ""
21692
21693 #. type: =head2
21694 #: ../fish/guestfish-actions.pod:355
21695 msgid "available"
21696 msgstr ""
21697
21698 #. type: verbatim
21699 #: ../fish/guestfish-actions.pod:357
21700 #, no-wrap
21701 msgid ""
21702 " available 'groups ...'\n"
21703 "\n"
21704 msgstr ""
21705
21706 #. type: textblock
21707 #: ../fish/guestfish-actions.pod:363
21708 msgid ""
21709 "The libguestfs groups, and the functions that those groups correspond to, "
21710 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
21711 "runtime by calling L</available-all-groups>."
21712 msgstr ""
21713
21714 #. type: textblock
21715 #: ../fish/guestfish-actions.pod:387
21716 msgid "You must call L</launch> before calling this function."
21717 msgstr ""
21718
21719 #. type: textblock
21720 #: ../fish/guestfish-actions.pod:409
21721 msgid ""
21722 "This call was added in version C<1.0.80>.  In previous versions of "
21723 "libguestfs all you could do would be to speculatively execute a command to "
21724 "find out if the daemon implemented it.  See also L</version>."
21725 msgstr ""
21726
21727 #. type: =head2
21728 #: ../fish/guestfish-actions.pod:416
21729 msgid "available-all-groups"
21730 msgstr ""
21731
21732 #. type: verbatim
21733 #: ../fish/guestfish-actions.pod:418
21734 #, no-wrap
21735 msgid ""
21736 " available-all-groups\n"
21737 "\n"
21738 msgstr ""
21739
21740 #. type: textblock
21741 #: ../fish/guestfish-actions.pod:420
21742 msgid ""
21743 "This command returns a list of all optional groups that this daemon knows "
21744 "about.  Note this returns both supported and unsupported groups.  To find "
21745 "out which ones the daemon can actually support you have to call "
21746 "L</available> on each member of the returned list."
21747 msgstr ""
21748
21749 #. type: textblock
21750 #: ../fish/guestfish-actions.pod:426
21751 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
21752 msgstr ""
21753
21754 #. type: =head2
21755 #: ../fish/guestfish-actions.pod:428
21756 msgid "base64-in"
21757 msgstr ""
21758
21759 #. type: verbatim
21760 #: ../fish/guestfish-actions.pod:430
21761 #, no-wrap
21762 msgid ""
21763 " base64-in (base64file|-) filename\n"
21764 "\n"
21765 msgstr ""
21766
21767 #. type: textblock
21768 #: ../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:4450 ../fish/guestfish-actions.pod:4462 ../fish/guestfish-actions.pod:4473 ../fish/guestfish-actions.pod:4484 ../fish/guestfish-actions.pod:4536 ../fish/guestfish-actions.pod:4545 ../fish/guestfish-actions.pod:4599 ../fish/guestfish-actions.pod:4622
21769 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
21770 msgstr ""
21771
21772 #. type: =head2
21773 #: ../fish/guestfish-actions.pod:437
21774 msgid "base64-out"
21775 msgstr ""
21776
21777 #. type: verbatim
21778 #: ../fish/guestfish-actions.pod:439
21779 #, no-wrap
21780 msgid ""
21781 " base64-out filename (base64file|-)\n"
21782 "\n"
21783 msgstr ""
21784
21785 #. type: =head2
21786 #: ../fish/guestfish-actions.pod:446
21787 msgid "blockdev-flushbufs"
21788 msgstr ""
21789
21790 #. type: verbatim
21791 #: ../fish/guestfish-actions.pod:448
21792 #, no-wrap
21793 msgid ""
21794 " blockdev-flushbufs device\n"
21795 "\n"
21796 msgstr ""
21797
21798 #. type: =head2
21799 #: ../fish/guestfish-actions.pod:455
21800 msgid "blockdev-getbsz"
21801 msgstr ""
21802
21803 #. type: verbatim
21804 #: ../fish/guestfish-actions.pod:457
21805 #, no-wrap
21806 msgid ""
21807 " blockdev-getbsz device\n"
21808 "\n"
21809 msgstr ""
21810
21811 #. type: =head2
21812 #: ../fish/guestfish-actions.pod:466
21813 msgid "blockdev-getro"
21814 msgstr ""
21815
21816 #. type: verbatim
21817 #: ../fish/guestfish-actions.pod:468
21818 #, no-wrap
21819 msgid ""
21820 " blockdev-getro device\n"
21821 "\n"
21822 msgstr ""
21823
21824 #. type: =head2
21825 #: ../fish/guestfish-actions.pod:475
21826 msgid "blockdev-getsize64"
21827 msgstr ""
21828
21829 #. type: verbatim
21830 #: ../fish/guestfish-actions.pod:477
21831 #, no-wrap
21832 msgid ""
21833 " blockdev-getsize64 device\n"
21834 "\n"
21835 msgstr ""
21836
21837 #. type: textblock
21838 #: ../fish/guestfish-actions.pod:481
21839 msgid "See also L</blockdev-getsz>."
21840 msgstr ""
21841
21842 #. type: =head2
21843 #: ../fish/guestfish-actions.pod:485
21844 msgid "blockdev-getss"
21845 msgstr ""
21846
21847 #. type: verbatim
21848 #: ../fish/guestfish-actions.pod:487
21849 #, no-wrap
21850 msgid ""
21851 " blockdev-getss device\n"
21852 "\n"
21853 msgstr ""
21854
21855 #. type: textblock
21856 #: ../fish/guestfish-actions.pod:492
21857 msgid "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
21858 msgstr ""
21859
21860 #. type: =head2
21861 #: ../fish/guestfish-actions.pod:497
21862 msgid "blockdev-getsz"
21863 msgstr ""
21864
21865 #. type: verbatim
21866 #: ../fish/guestfish-actions.pod:499
21867 #, no-wrap
21868 msgid ""
21869 " blockdev-getsz device\n"
21870 "\n"
21871 msgstr ""
21872
21873 #. type: textblock
21874 #: ../fish/guestfish-actions.pod:504
21875 msgid ""
21876 "See also L</blockdev-getss> for the real sector size of the device, and "
21877 "L</blockdev-getsize64> for the more useful I<size in bytes>."
21878 msgstr ""
21879
21880 #. type: =head2
21881 #: ../fish/guestfish-actions.pod:510
21882 msgid "blockdev-rereadpt"
21883 msgstr ""
21884
21885 #. type: verbatim
21886 #: ../fish/guestfish-actions.pod:512
21887 #, no-wrap
21888 msgid ""
21889 " blockdev-rereadpt device\n"
21890 "\n"
21891 msgstr ""
21892
21893 #. type: =head2
21894 #: ../fish/guestfish-actions.pod:518
21895 msgid "blockdev-setbsz"
21896 msgstr ""
21897
21898 #. type: verbatim
21899 #: ../fish/guestfish-actions.pod:520
21900 #, no-wrap
21901 msgid ""
21902 " blockdev-setbsz device blocksize\n"
21903 "\n"
21904 msgstr ""
21905
21906 #. type: =head2
21907 #: ../fish/guestfish-actions.pod:529
21908 msgid "blockdev-setro"
21909 msgstr ""
21910
21911 #. type: verbatim
21912 #: ../fish/guestfish-actions.pod:531
21913 #, no-wrap
21914 msgid ""
21915 " blockdev-setro device\n"
21916 "\n"
21917 msgstr ""
21918
21919 #. type: =head2
21920 #: ../fish/guestfish-actions.pod:537
21921 msgid "blockdev-setrw"
21922 msgstr ""
21923
21924 #. type: verbatim
21925 #: ../fish/guestfish-actions.pod:539
21926 #, no-wrap
21927 msgid ""
21928 " blockdev-setrw device\n"
21929 "\n"
21930 msgstr ""
21931
21932 #. type: =head2
21933 #: ../fish/guestfish-actions.pod:545
21934 msgid "case-sensitive-path"
21935 msgstr ""
21936
21937 #. type: verbatim
21938 #: ../fish/guestfish-actions.pod:547
21939 #, no-wrap
21940 msgid ""
21941 " case-sensitive-path path\n"
21942 "\n"
21943 msgstr ""
21944
21945 #. type: textblock
21946 #: ../fish/guestfish-actions.pod:571
21947 msgid ""
21948 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return "
21949 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
21950 "how the directories were originally created under Windows)."
21951 msgstr ""
21952
21953 #. type: textblock
21954 #: ../fish/guestfish-actions.pod:579
21955 msgid "See also L</realpath>."
21956 msgstr ""
21957
21958 #. type: =head2
21959 #: ../fish/guestfish-actions.pod:581
21960 msgid "cat"
21961 msgstr ""
21962
21963 #. type: verbatim
21964 #: ../fish/guestfish-actions.pod:583
21965 #, no-wrap
21966 msgid ""
21967 " cat path\n"
21968 "\n"
21969 msgstr ""
21970
21971 #. type: textblock
21972 #: ../fish/guestfish-actions.pod:587
21973 msgid ""
21974 "Note that this function cannot correctly handle binary files (specifically, "
21975 "files containing C<\\0> character which is treated as end of string).  For "
21976 "those you need to use the L</read-file> or L</download> functions which have "
21977 "a more complex interface."
21978 msgstr ""
21979
21980 #. type: =head2
21981 #: ../fish/guestfish-actions.pod:595
21982 msgid "checksum"
21983 msgstr ""
21984
21985 #. type: verbatim
21986 #: ../fish/guestfish-actions.pod:597
21987 #, no-wrap
21988 msgid ""
21989 " checksum csumtype path\n"
21990 "\n"
21991 msgstr ""
21992
21993 #. type: textblock
21994 #: ../fish/guestfish-actions.pod:640
21995 msgid "To get the checksum for a device, use L</checksum-device>."
21996 msgstr ""
21997
21998 #. type: textblock
21999 #: ../fish/guestfish-actions.pod:642
22000 msgid "To get the checksums for many files, use L</checksums-out>."
22001 msgstr ""
22002
22003 #. type: =head2
22004 #: ../fish/guestfish-actions.pod:644
22005 msgid "checksum-device"
22006 msgstr ""
22007
22008 #. type: verbatim
22009 #: ../fish/guestfish-actions.pod:646
22010 #, no-wrap
22011 msgid ""
22012 " checksum-device csumtype device\n"
22013 "\n"
22014 msgstr ""
22015
22016 #. type: textblock
22017 #: ../fish/guestfish-actions.pod:648
22018 msgid ""
22019 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
22020 "device named C<device>.  For the types of checksums supported see the "
22021 "L</checksum> command."
22022 msgstr ""
22023
22024 #. type: =head2
22025 #: ../fish/guestfish-actions.pod:652
22026 msgid "checksums-out"
22027 msgstr ""
22028
22029 #. type: verbatim
22030 #: ../fish/guestfish-actions.pod:654
22031 #, no-wrap
22032 msgid ""
22033 " checksums-out csumtype directory (sumsfile|-)\n"
22034 "\n"
22035 msgstr ""
22036
22037 #. type: =head2
22038 #: ../fish/guestfish-actions.pod:670
22039 msgid "chmod"
22040 msgstr ""
22041
22042 #. type: verbatim
22043 #: ../fish/guestfish-actions.pod:672
22044 #, no-wrap
22045 msgid ""
22046 " chmod mode path\n"
22047 "\n"
22048 msgstr ""
22049
22050 #. type: =head2
22051 #: ../fish/guestfish-actions.pod:683
22052 msgid "chown"
22053 msgstr ""
22054
22055 #. type: verbatim
22056 #: ../fish/guestfish-actions.pod:685
22057 #, no-wrap
22058 msgid ""
22059 " chown owner group path\n"
22060 "\n"
22061 msgstr ""
22062
22063 #. type: =head2
22064 #: ../fish/guestfish-actions.pod:693
22065 msgid "command"
22066 msgstr ""
22067
22068 #. type: verbatim
22069 #: ../fish/guestfish-actions.pod:695
22070 #, no-wrap
22071 msgid ""
22072 " command 'arguments ...'\n"
22073 "\n"
22074 msgstr ""
22075
22076 #. type: textblock
22077 #: ../fish/guestfish-actions.pod:702
22078 msgid ""
22079 "The single parameter is an argv-style list of arguments.  The first element "
22080 "is the name of the program to run.  Subsequent elements are parameters.  The "
22081 "list must be non-empty (ie. must contain a program name).  Note that the "
22082 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
22083 msgstr ""
22084
22085 #. type: =head2
22086 #: ../fish/guestfish-actions.pod:730
22087 msgid "command-lines"
22088 msgstr ""
22089
22090 #. type: verbatim
22091 #: ../fish/guestfish-actions.pod:732
22092 #, no-wrap
22093 msgid ""
22094 " command-lines 'arguments ...'\n"
22095 "\n"
22096 msgstr ""
22097
22098 #. type: textblock
22099 #: ../fish/guestfish-actions.pod:734
22100 msgid "This is the same as L</command>, but splits the result into a list of lines."
22101 msgstr ""
22102
22103 #. type: textblock
22104 #: ../fish/guestfish-actions.pod:737
22105 msgid "See also: L</sh-lines>"
22106 msgstr ""
22107
22108 #. type: =head2
22109 #: ../fish/guestfish-actions.pod:742
22110 msgid "config"
22111 msgstr ""
22112
22113 #. type: verbatim
22114 #: ../fish/guestfish-actions.pod:744
22115 #, no-wrap
22116 msgid ""
22117 " config qemuparam qemuvalue\n"
22118 "\n"
22119 msgstr ""
22120
22121 #. type: =head2
22122 #: ../fish/guestfish-actions.pod:755
22123 msgid "copy-size"
22124 msgstr ""
22125
22126 #. type: verbatim
22127 #: ../fish/guestfish-actions.pod:757
22128 #, no-wrap
22129 msgid ""
22130 " copy-size src dest size\n"
22131 "\n"
22132 msgstr ""
22133
22134 #. type: =head2
22135 #: ../fish/guestfish-actions.pod:765
22136 msgid "cp"
22137 msgstr ""
22138
22139 #. type: verbatim
22140 #: ../fish/guestfish-actions.pod:767
22141 #, no-wrap
22142 msgid ""
22143 " cp src dest\n"
22144 "\n"
22145 msgstr ""
22146
22147 #. type: =head2
22148 #: ../fish/guestfish-actions.pod:772
22149 msgid "cp-a"
22150 msgstr ""
22151
22152 #. type: verbatim
22153 #: ../fish/guestfish-actions.pod:774
22154 #, no-wrap
22155 msgid ""
22156 " cp-a src dest\n"
22157 "\n"
22158 msgstr ""
22159
22160 #. type: =head2
22161 #: ../fish/guestfish-actions.pod:779
22162 msgid "dd"
22163 msgstr ""
22164
22165 #. type: verbatim
22166 #: ../fish/guestfish-actions.pod:781
22167 #, no-wrap
22168 msgid ""
22169 " dd src dest\n"
22170 "\n"
22171 msgstr ""
22172
22173 #. type: textblock
22174 #: ../fish/guestfish-actions.pod:788
22175 msgid ""
22176 "If the destination is a device, it must be as large or larger than the "
22177 "source file or device, otherwise the copy will fail.  This command cannot do "
22178 "partial copies (see L</copy-size>)."
22179 msgstr ""
22180
22181 #. type: =head2
22182 #: ../fish/guestfish-actions.pod:792
22183 msgid "df"
22184 msgstr ""
22185
22186 #. type: verbatim
22187 #: ../fish/guestfish-actions.pod:794
22188 #, no-wrap
22189 msgid ""
22190 " df\n"
22191 "\n"
22192 msgstr ""
22193
22194 #. type: textblock
22195 #: ../fish/guestfish-actions.pod:798 ../fish/guestfish-actions.pod:809
22196 msgid ""
22197 "This command is mostly useful for interactive sessions.  It is I<not> "
22198 "intended that you try to parse the output string.  Use L</statvfs> from "
22199 "programs."
22200 msgstr ""
22201
22202 #. type: =head2
22203 #: ../fish/guestfish-actions.pod:802
22204 msgid "df-h"
22205 msgstr ""
22206
22207 #. type: verbatim
22208 #: ../fish/guestfish-actions.pod:804
22209 #, no-wrap
22210 msgid ""
22211 " df-h\n"
22212 "\n"
22213 msgstr ""
22214
22215 #. type: =head2
22216 #: ../fish/guestfish-actions.pod:813
22217 msgid "dmesg"
22218 msgstr ""
22219
22220 #. type: verbatim
22221 #: ../fish/guestfish-actions.pod:815
22222 #, no-wrap
22223 msgid ""
22224 " dmesg\n"
22225 "\n"
22226 msgstr ""
22227
22228 #. type: textblock
22229 #: ../fish/guestfish-actions.pod:821
22230 msgid ""
22231 "Another way to get the same information is to enable verbose messages with "
22232 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
22233 "before running the program."
22234 msgstr ""
22235
22236 #. type: =head2
22237 #: ../fish/guestfish-actions.pod:826
22238 msgid "download"
22239 msgstr ""
22240
22241 #. type: verbatim
22242 #: ../fish/guestfish-actions.pod:828
22243 #, no-wrap
22244 msgid ""
22245 " download remotefilename (filename|-)\n"
22246 "\n"
22247 msgstr ""
22248
22249 #. type: textblock
22250 #: ../fish/guestfish-actions.pod:835
22251 msgid "See also L</upload>, L</cat>."
22252 msgstr ""
22253
22254 #. type: =head2
22255 #: ../fish/guestfish-actions.pod:839
22256 msgid "download-offset"
22257 msgstr ""
22258
22259 #. type: verbatim
22260 #: ../fish/guestfish-actions.pod:841
22261 #, no-wrap
22262 msgid ""
22263 " download-offset remotefilename (filename|-) offset size\n"
22264 "\n"
22265 msgstr ""
22266
22267 #. type: textblock
22268 #: ../fish/guestfish-actions.pod:849
22269 msgid ""
22270 "Note that there is no limit on the amount of data that can be downloaded "
22271 "with this call, unlike with L</pread>, and this call always reads the full "
22272 "amount unless an error occurs."
22273 msgstr ""
22274
22275 #. type: textblock
22276 #: ../fish/guestfish-actions.pod:854
22277 msgid "See also L</download>, L</pread>."
22278 msgstr ""
22279
22280 #. type: =head2
22281 #: ../fish/guestfish-actions.pod:858
22282 msgid "drop-caches"
22283 msgstr ""
22284
22285 #. type: verbatim
22286 #: ../fish/guestfish-actions.pod:860
22287 #, no-wrap
22288 msgid ""
22289 " drop-caches whattodrop\n"
22290 "\n"
22291 msgstr ""
22292
22293 #. type: =head2
22294 #: ../fish/guestfish-actions.pod:872
22295 msgid "du"
22296 msgstr ""
22297
22298 #. type: verbatim
22299 #: ../fish/guestfish-actions.pod:874
22300 #, no-wrap
22301 msgid ""
22302 " du path\n"
22303 "\n"
22304 msgstr ""
22305
22306 #. type: =head2
22307 #: ../fish/guestfish-actions.pod:886
22308 msgid "e2fsck-f"
22309 msgstr ""
22310
22311 #. type: verbatim
22312 #: ../fish/guestfish-actions.pod:888
22313 #, no-wrap
22314 msgid ""
22315 " e2fsck-f device\n"
22316 "\n"
22317 msgstr ""
22318
22319 #. type: textblock
22320 #: ../fish/guestfish-actions.pod:894
22321 msgid ""
22322 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
22323 "should use L</fsck>."
22324 msgstr ""
22325
22326 #. type: =head2
22327 #: ../fish/guestfish-actions.pod:897
22328 msgid "echo-daemon"
22329 msgstr ""
22330
22331 #. type: verbatim
22332 #: ../fish/guestfish-actions.pod:899
22333 #, no-wrap
22334 msgid ""
22335 " echo-daemon 'words ...'\n"
22336 "\n"
22337 msgstr ""
22338
22339 #. type: textblock
22340 #: ../fish/guestfish-actions.pod:906
22341 msgid "See also L</ping-daemon>."
22342 msgstr ""
22343
22344 #. type: =head2
22345 #: ../fish/guestfish-actions.pod:908
22346 msgid "egrep"
22347 msgstr ""
22348
22349 #. type: verbatim
22350 #: ../fish/guestfish-actions.pod:910
22351 #, no-wrap
22352 msgid ""
22353 " egrep regex path\n"
22354 "\n"
22355 msgstr ""
22356
22357 #. type: =head2
22358 #: ../fish/guestfish-actions.pod:918
22359 msgid "egrepi"
22360 msgstr ""
22361
22362 #. type: verbatim
22363 #: ../fish/guestfish-actions.pod:920
22364 #, no-wrap
22365 msgid ""
22366 " egrepi regex path\n"
22367 "\n"
22368 msgstr ""
22369
22370 #. type: =head2
22371 #: ../fish/guestfish-actions.pod:928
22372 msgid "equal"
22373 msgstr ""
22374
22375 #. type: verbatim
22376 #: ../fish/guestfish-actions.pod:930
22377 #, no-wrap
22378 msgid ""
22379 " equal file1 file2\n"
22380 "\n"
22381 msgstr ""
22382
22383 #. type: =head2
22384 #: ../fish/guestfish-actions.pod:937
22385 msgid "exists"
22386 msgstr ""
22387
22388 #. type: verbatim
22389 #: ../fish/guestfish-actions.pod:939
22390 #, no-wrap
22391 msgid ""
22392 " exists path\n"
22393 "\n"
22394 msgstr ""
22395
22396 #. type: textblock
22397 #: ../fish/guestfish-actions.pod:944
22398 msgid "See also L</is-file>, L</is-dir>, L</stat>."
22399 msgstr ""
22400
22401 #. type: =head2
22402 #: ../fish/guestfish-actions.pod:946
22403 msgid "fallocate"
22404 msgstr ""
22405
22406 #. type: verbatim
22407 #: ../fish/guestfish-actions.pod:948
22408 #, no-wrap
22409 msgid ""
22410 " fallocate path len\n"
22411 "\n"
22412 msgstr ""
22413
22414 #. type: =head2
22415 #: ../fish/guestfish-actions.pod:965
22416 msgid "fallocate64"
22417 msgstr ""
22418
22419 #. type: verbatim
22420 #: ../fish/guestfish-actions.pod:967
22421 #, no-wrap
22422 msgid ""
22423 " fallocate64 path len\n"
22424 "\n"
22425 msgstr ""
22426
22427 #. type: textblock
22428 #: ../fish/guestfish-actions.pod:973
22429 msgid ""
22430 "Note that this call allocates disk blocks for the file.  To create a sparse "
22431 "file use L</truncate-size> instead."
22432 msgstr ""
22433
22434 #. type: textblock
22435 #: ../fish/guestfish-actions.pod:976
22436 msgid ""
22437 "The deprecated call L</fallocate> does the same, but owing to an oversight "
22438 "it only allowed 30 bit lengths to be specified, effectively limiting the "
22439 "maximum size of files created through that call to 1GB."
22440 msgstr ""
22441
22442 #. type: =head2
22443 #: ../fish/guestfish-actions.pod:985
22444 msgid "fgrep"
22445 msgstr ""
22446
22447 #. type: verbatim
22448 #: ../fish/guestfish-actions.pod:987
22449 #, no-wrap
22450 msgid ""
22451 " fgrep pattern path\n"
22452 "\n"
22453 msgstr ""
22454
22455 #. type: =head2
22456 #: ../fish/guestfish-actions.pod:995
22457 msgid "fgrepi"
22458 msgstr ""
22459
22460 #. type: verbatim
22461 #: ../fish/guestfish-actions.pod:997
22462 #, no-wrap
22463 msgid ""
22464 " fgrepi pattern path\n"
22465 "\n"
22466 msgstr ""
22467
22468 #. type: =head2
22469 #: ../fish/guestfish-actions.pod:1005
22470 msgid "file"
22471 msgstr ""
22472
22473 #. type: verbatim
22474 #: ../fish/guestfish-actions.pod:1007
22475 #, no-wrap
22476 msgid ""
22477 " file path\n"
22478 "\n"
22479 msgstr ""
22480
22481 #. type: textblock
22482 #: ../fish/guestfish-actions.pod:1019
22483 msgid ""
22484 "This command can also be used on C</dev/> devices (and partitions, LV "
22485 "names).  You can for example use this to determine if a device contains a "
22486 "filesystem, although it's usually better to use L</vfs-type>."
22487 msgstr ""
22488
22489 #. type: =head2
22490 #: ../fish/guestfish-actions.pod:1029
22491 msgid "file-architecture"
22492 msgstr ""
22493
22494 #. type: verbatim
22495 #: ../fish/guestfish-actions.pod:1031
22496 #, no-wrap
22497 msgid ""
22498 " file-architecture filename\n"
22499 "\n"
22500 msgstr ""
22501
22502 #. type: =head2
22503 #: ../fish/guestfish-actions.pod:1134
22504 msgid "filesize"
22505 msgstr ""
22506
22507 #. type: verbatim
22508 #: ../fish/guestfish-actions.pod:1136
22509 #, no-wrap
22510 msgid ""
22511 " filesize file\n"
22512 "\n"
22513 msgstr ""
22514
22515 #. type: textblock
22516 #: ../fish/guestfish-actions.pod:1140
22517 msgid ""
22518 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, "
22519 "L</is-file> etc.  To get the size of block devices, use "
22520 "L</blockdev-getsize64>."
22521 msgstr ""
22522
22523 #. type: =head2
22524 #: ../fish/guestfish-actions.pod:1144
22525 msgid "fill"
22526 msgstr ""
22527
22528 #. type: verbatim
22529 #: ../fish/guestfish-actions.pod:1146
22530 #, no-wrap
22531 msgid ""
22532 " fill c len path\n"
22533 "\n"
22534 msgstr ""
22535
22536 #. type: textblock
22537 #: ../fish/guestfish-actions.pod:1152
22538 msgid ""
22539 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
22540 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
22541 "L</fill-pattern>."
22542 msgstr ""
22543
22544 #. type: =head2
22545 #: ../fish/guestfish-actions.pod:1157
22546 msgid "fill-pattern"
22547 msgstr ""
22548
22549 #. type: verbatim
22550 #: ../fish/guestfish-actions.pod:1159
22551 #, no-wrap
22552 msgid ""
22553 " fill-pattern pattern len path\n"
22554 "\n"
22555 msgstr ""
22556
22557 #. type: textblock
22558 #: ../fish/guestfish-actions.pod:1161
22559 msgid ""
22560 "This function is like L</fill> except that it creates a new file of length "
22561 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
22562 "is truncated if necessary to ensure the length of the file is exactly C<len> "
22563 "bytes."
22564 msgstr ""
22565
22566 #. type: =head2
22567 #: ../fish/guestfish-actions.pod:1166
22568 msgid "find"
22569 msgstr ""
22570
22571 #. type: verbatim
22572 #: ../fish/guestfish-actions.pod:1168
22573 #, no-wrap
22574 msgid ""
22575 " find directory\n"
22576 "\n"
22577 msgstr ""
22578
22579 #. type: textblock
22580 #: ../fish/guestfish-actions.pod:1182
22581 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
22582 msgstr ""
22583
22584 #. type: textblock
22585 #: ../fish/guestfish-actions.pod:1195
22586 msgid "See also L</find0>."
22587 msgstr ""
22588
22589 #. type: =head2
22590 #: ../fish/guestfish-actions.pod:1200
22591 msgid "find0"
22592 msgstr ""
22593
22594 #. type: verbatim
22595 #: ../fish/guestfish-actions.pod:1202
22596 #, no-wrap
22597 msgid ""
22598 " find0 directory (files|-)\n"
22599 "\n"
22600 msgstr ""
22601
22602 #. type: textblock
22603 #: ../fish/guestfish-actions.pod:1208
22604 msgid "This command works the same way as L</find> with the following exceptions:"
22605 msgstr ""
22606
22607 #. type: =head2
22608 #: ../fish/guestfish-actions.pod:1235
22609 msgid "findfs-label"
22610 msgstr ""
22611
22612 #. type: verbatim
22613 #: ../fish/guestfish-actions.pod:1237
22614 #, no-wrap
22615 msgid ""
22616 " findfs-label label\n"
22617 "\n"
22618 msgstr ""
22619
22620 #. type: textblock
22621 #: ../fish/guestfish-actions.pod:1243
22622 msgid "To find the label of a filesystem, use L</vfs-label>."
22623 msgstr ""
22624
22625 #. type: =head2
22626 #: ../fish/guestfish-actions.pod:1245
22627 msgid "findfs-uuid"
22628 msgstr ""
22629
22630 #. type: verbatim
22631 #: ../fish/guestfish-actions.pod:1247
22632 #, no-wrap
22633 msgid ""
22634 " findfs-uuid uuid\n"
22635 "\n"
22636 msgstr ""
22637
22638 #. type: textblock
22639 #: ../fish/guestfish-actions.pod:1253
22640 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
22641 msgstr ""
22642
22643 #. type: =head2
22644 #: ../fish/guestfish-actions.pod:1255
22645 msgid "fsck"
22646 msgstr ""
22647
22648 #. type: verbatim
22649 #: ../fish/guestfish-actions.pod:1257
22650 #, no-wrap
22651 msgid ""
22652 " fsck fstype device\n"
22653 "\n"
22654 msgstr ""
22655
22656 #. type: =head2
22657 #: ../fish/guestfish-actions.pod:1287
22658 msgid "get-append"
22659 msgstr ""
22660
22661 #. type: verbatim
22662 #: ../fish/guestfish-actions.pod:1289
22663 #, no-wrap
22664 msgid ""
22665 " get-append\n"
22666 "\n"
22667 msgstr ""
22668
22669 #. type: =head2
22670 #: ../fish/guestfish-actions.pod:1296
22671 msgid "get-attach-method"
22672 msgstr ""
22673
22674 #. type: verbatim
22675 #: ../fish/guestfish-actions.pod:1298
22676 #, no-wrap
22677 msgid ""
22678 " get-attach-method\n"
22679 "\n"
22680 msgstr ""
22681
22682 #. type: textblock
22683 #: ../fish/guestfish-actions.pod:1300
22684 msgid "Return the current attach method.  See L</set-attach-method>."
22685 msgstr ""
22686
22687 #. type: =head2
22688 #: ../fish/guestfish-actions.pod:1302
22689 msgid "get-autosync"
22690 msgstr ""
22691
22692 #. type: verbatim
22693 #: ../fish/guestfish-actions.pod:1304
22694 #, no-wrap
22695 msgid ""
22696 " get-autosync\n"
22697 "\n"
22698 msgstr ""
22699
22700 #. type: =head2
22701 #: ../fish/guestfish-actions.pod:1308
22702 msgid "get-direct"
22703 msgstr ""
22704
22705 #. type: verbatim
22706 #: ../fish/guestfish-actions.pod:1310
22707 #, no-wrap
22708 msgid ""
22709 " get-direct\n"
22710 "\n"
22711 msgstr ""
22712
22713 #. type: =head2
22714 #: ../fish/guestfish-actions.pod:1314
22715 msgid "get-e2label"
22716 msgstr ""
22717
22718 #. type: verbatim
22719 #: ../fish/guestfish-actions.pod:1316
22720 #, no-wrap
22721 msgid ""
22722 " get-e2label device\n"
22723 "\n"
22724 msgstr ""
22725
22726 #. type: =head2
22727 #: ../fish/guestfish-actions.pod:1328
22728 msgid "get-e2uuid"
22729 msgstr ""
22730
22731 #. type: verbatim
22732 #: ../fish/guestfish-actions.pod:1330
22733 #, no-wrap
22734 msgid ""
22735 " get-e2uuid device\n"
22736 "\n"
22737 msgstr ""
22738
22739 #. type: =head2
22740 #: ../fish/guestfish-actions.pod:1342
22741 msgid "get-memsize"
22742 msgstr ""
22743
22744 #. type: verbatim
22745 #: ../fish/guestfish-actions.pod:1344
22746 #, no-wrap
22747 msgid ""
22748 " get-memsize\n"
22749 "\n"
22750 msgstr ""
22751
22752 #. type: textblock
22753 #: ../fish/guestfish-actions.pod:1349
22754 msgid ""
22755 "If L</set-memsize> was not called on this handle, and if "
22756 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
22757 "value for memsize."
22758 msgstr ""
22759
22760 #. type: =head2
22761 #: ../fish/guestfish-actions.pod:1356
22762 msgid "get-network"
22763 msgstr ""
22764
22765 #. type: verbatim
22766 #: ../fish/guestfish-actions.pod:1358
22767 #, no-wrap
22768 msgid ""
22769 " get-network\n"
22770 "\n"
22771 msgstr ""
22772
22773 #. type: =head2
22774 #: ../fish/guestfish-actions.pod:1362
22775 msgid "get-path"
22776 msgstr ""
22777
22778 #. type: verbatim
22779 #: ../fish/guestfish-actions.pod:1364
22780 #, no-wrap
22781 msgid ""
22782 " get-path\n"
22783 "\n"
22784 msgstr ""
22785
22786 #. type: =head2
22787 #: ../fish/guestfish-actions.pod:1371
22788 msgid "get-pid"
22789 msgstr ""
22790
22791 #. type: =head2
22792 #: ../fish/guestfish-actions.pod:1373
22793 msgid "pid"
22794 msgstr ""
22795
22796 #. type: verbatim
22797 #: ../fish/guestfish-actions.pod:1375
22798 #, no-wrap
22799 msgid ""
22800 " get-pid\n"
22801 "\n"
22802 msgstr ""
22803
22804 #. type: =head2
22805 #: ../fish/guestfish-actions.pod:1382
22806 msgid "get-qemu"
22807 msgstr ""
22808
22809 #. type: verbatim
22810 #: ../fish/guestfish-actions.pod:1384
22811 #, no-wrap
22812 msgid ""
22813 " get-qemu\n"
22814 "\n"
22815 msgstr ""
22816
22817 #. type: =head2
22818 #: ../fish/guestfish-actions.pod:1391
22819 msgid "get-recovery-proc"
22820 msgstr ""
22821
22822 #. type: verbatim
22823 #: ../fish/guestfish-actions.pod:1393
22824 #, no-wrap
22825 msgid ""
22826 " get-recovery-proc\n"
22827 "\n"
22828 msgstr ""
22829
22830 #. type: =head2
22831 #: ../fish/guestfish-actions.pod:1397
22832 msgid "get-selinux"
22833 msgstr ""
22834
22835 #. type: verbatim
22836 #: ../fish/guestfish-actions.pod:1399
22837 #, no-wrap
22838 msgid ""
22839 " get-selinux\n"
22840 "\n"
22841 msgstr ""
22842
22843 #. type: textblock
22844 #: ../fish/guestfish-actions.pod:1401
22845 msgid ""
22846 "This returns the current setting of the selinux flag which is passed to the "
22847 "appliance at boot time.  See L</set-selinux>."
22848 msgstr ""
22849
22850 #. type: =head2
22851 #: ../fish/guestfish-actions.pod:1407
22852 msgid "get-state"
22853 msgstr ""
22854
22855 #. type: verbatim
22856 #: ../fish/guestfish-actions.pod:1409
22857 #, no-wrap
22858 msgid ""
22859 " get-state\n"
22860 "\n"
22861 msgstr ""
22862
22863 #. type: =head2
22864 #: ../fish/guestfish-actions.pod:1416
22865 msgid "get-trace"
22866 msgstr ""
22867
22868 #. type: verbatim
22869 #: ../fish/guestfish-actions.pod:1418
22870 #, no-wrap
22871 msgid ""
22872 " get-trace\n"
22873 "\n"
22874 msgstr ""
22875
22876 #. type: =head2
22877 #: ../fish/guestfish-actions.pod:1422
22878 msgid "get-umask"
22879 msgstr ""
22880
22881 #. type: verbatim
22882 #: ../fish/guestfish-actions.pod:1424
22883 #, no-wrap
22884 msgid ""
22885 " get-umask\n"
22886 "\n"
22887 msgstr ""
22888
22889 #. type: textblock
22890 #: ../fish/guestfish-actions.pod:1426
22891 msgid ""
22892 "Return the current umask.  By default the umask is C<022> unless it has been "
22893 "set by calling L</umask>."
22894 msgstr ""
22895
22896 #. type: =head2
22897 #: ../fish/guestfish-actions.pod:1429
22898 msgid "get-verbose"
22899 msgstr ""
22900
22901 #. type: verbatim
22902 #: ../fish/guestfish-actions.pod:1431
22903 #, no-wrap
22904 msgid ""
22905 " get-verbose\n"
22906 "\n"
22907 msgstr ""
22908
22909 #. type: =head2
22910 #: ../fish/guestfish-actions.pod:1435
22911 msgid "getcon"
22912 msgstr ""
22913
22914 #. type: verbatim
22915 #: ../fish/guestfish-actions.pod:1437
22916 #, no-wrap
22917 msgid ""
22918 " getcon\n"
22919 "\n"
22920 msgstr ""
22921
22922 #. type: textblock
22923 #: ../fish/guestfish-actions.pod:1441
22924 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
22925 msgstr ""
22926
22927 #. type: =head2
22928 #: ../fish/guestfish-actions.pod:1444
22929 msgid "getxattr"
22930 msgstr ""
22931
22932 #. type: verbatim
22933 #: ../fish/guestfish-actions.pod:1446
22934 #, no-wrap
22935 msgid ""
22936 " getxattr path name\n"
22937 "\n"
22938 msgstr ""
22939
22940 #. type: textblock
22941 #: ../fish/guestfish-actions.pod:1448
22942 msgid ""
22943 "Get a single extended attribute from file C<path> named C<name>.  This call "
22944 "follows symlinks.  If you want to lookup an extended attribute for the "
22945 "symlink itself, use L</lgetxattr>."
22946 msgstr ""
22947
22948 #. type: textblock
22949 #: ../fish/guestfish-actions.pod:1452 ../fish/guestfish-actions.pod:2458
22950 msgid ""
22951 "Normally it is better to get all extended attributes from a file in one go "
22952 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
22953 "buggy and do not provide a way to list out attributes.  For these "
22954 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
22955 "attributes you want in advance and call this function."
22956 msgstr ""
22957
22958 #. type: textblock
22959 #: ../fish/guestfish-actions.pod:1462
22960 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
22961 msgstr ""
22962
22963 #. type: =head2
22964 #: ../fish/guestfish-actions.pod:1464
22965 msgid "getxattrs"
22966 msgstr ""
22967
22968 #. type: verbatim
22969 #: ../fish/guestfish-actions.pod:1466
22970 #, no-wrap
22971 msgid ""
22972 " getxattrs path\n"
22973 "\n"
22974 msgstr ""
22975
22976 #. type: textblock
22977 #: ../fish/guestfish-actions.pod:1474
22978 msgid "See also: L</lgetxattrs>, L<attr(5)>."
22979 msgstr ""
22980
22981 #. type: =head2
22982 #: ../fish/guestfish-actions.pod:1476
22983 msgid "glob-expand"
22984 msgstr ""
22985
22986 #. type: verbatim
22987 #: ../fish/guestfish-actions.pod:1478
22988 #, no-wrap
22989 msgid ""
22990 " glob-expand pattern\n"
22991 "\n"
22992 msgstr ""
22993
22994 #. type: =head2
22995 #: ../fish/guestfish-actions.pod:1491
22996 msgid "grep"
22997 msgstr ""
22998
22999 #. type: verbatim
23000 #: ../fish/guestfish-actions.pod:1493
23001 #, no-wrap
23002 msgid ""
23003 " grep regex path\n"
23004 "\n"
23005 msgstr ""
23006
23007 #. type: =head2
23008 #: ../fish/guestfish-actions.pod:1501
23009 msgid "grepi"
23010 msgstr ""
23011
23012 #. type: verbatim
23013 #: ../fish/guestfish-actions.pod:1503
23014 #, no-wrap
23015 msgid ""
23016 " grepi regex path\n"
23017 "\n"
23018 msgstr ""
23019
23020 #. type: =head2
23021 #: ../fish/guestfish-actions.pod:1511
23022 msgid "grub-install"
23023 msgstr ""
23024
23025 #. type: verbatim
23026 #: ../fish/guestfish-actions.pod:1513
23027 #, no-wrap
23028 msgid ""
23029 " grub-install root device\n"
23030 "\n"
23031 msgstr ""
23032
23033 #. type: =head2
23034 #: ../fish/guestfish-actions.pod:1529
23035 msgid "head"
23036 msgstr ""
23037
23038 #. type: verbatim
23039 #: ../fish/guestfish-actions.pod:1531
23040 #, no-wrap
23041 msgid ""
23042 " head path\n"
23043 "\n"
23044 msgstr ""
23045
23046 #. type: =head2
23047 #: ../fish/guestfish-actions.pod:1539
23048 msgid "head-n"
23049 msgstr ""
23050
23051 #. type: verbatim
23052 #: ../fish/guestfish-actions.pod:1541
23053 #, no-wrap
23054 msgid ""
23055 " head-n nrlines path\n"
23056 "\n"
23057 msgstr ""
23058
23059 #. type: =head2
23060 #: ../fish/guestfish-actions.pod:1554
23061 msgid "hexdump"
23062 msgstr ""
23063
23064 #. type: verbatim
23065 #: ../fish/guestfish-actions.pod:1556
23066 #, no-wrap
23067 msgid ""
23068 " hexdump path\n"
23069 "\n"
23070 msgstr ""
23071
23072 #. type: =head2
23073 #: ../fish/guestfish-actions.pod:1564
23074 msgid "initrd-cat"
23075 msgstr ""
23076
23077 #. type: verbatim
23078 #: ../fish/guestfish-actions.pod:1566
23079 #, no-wrap
23080 msgid ""
23081 " initrd-cat initrdpath filename\n"
23082 "\n"
23083 msgstr ""
23084
23085 #. type: textblock
23086 #: ../fish/guestfish-actions.pod:1578
23087 msgid "See also L</initrd-list>."
23088 msgstr ""
23089
23090 #. type: =head2
23091 #: ../fish/guestfish-actions.pod:1583
23092 msgid "initrd-list"
23093 msgstr ""
23094
23095 #. type: verbatim
23096 #: ../fish/guestfish-actions.pod:1585
23097 #, no-wrap
23098 msgid ""
23099 " initrd-list path\n"
23100 "\n"
23101 msgstr ""
23102
23103 #. type: =head2
23104 #: ../fish/guestfish-actions.pod:1597
23105 msgid "inotify-add-watch"
23106 msgstr ""
23107
23108 #. type: verbatim
23109 #: ../fish/guestfish-actions.pod:1599
23110 #, no-wrap
23111 msgid ""
23112 " inotify-add-watch path mask\n"
23113 "\n"
23114 msgstr ""
23115
23116 #. type: =head2
23117 #: ../fish/guestfish-actions.pod:1611
23118 msgid "inotify-close"
23119 msgstr ""
23120
23121 #. type: verbatim
23122 #: ../fish/guestfish-actions.pod:1613
23123 #, no-wrap
23124 msgid ""
23125 " inotify-close\n"
23126 "\n"
23127 msgstr ""
23128
23129 #. type: =head2
23130 #: ../fish/guestfish-actions.pod:1619
23131 msgid "inotify-files"
23132 msgstr ""
23133
23134 #. type: verbatim
23135 #: ../fish/guestfish-actions.pod:1621
23136 #, no-wrap
23137 msgid ""
23138 " inotify-files\n"
23139 "\n"
23140 msgstr ""
23141
23142 #. type: textblock
23143 #: ../fish/guestfish-actions.pod:1623
23144 msgid ""
23145 "This function is a helpful wrapper around L</inotify-read> which just "
23146 "returns a list of pathnames of objects that were touched.  The returned "
23147 "pathnames are sorted and deduplicated."
23148 msgstr ""
23149
23150 #. type: =head2
23151 #: ../fish/guestfish-actions.pod:1627
23152 msgid "inotify-init"
23153 msgstr ""
23154
23155 #. type: verbatim
23156 #: ../fish/guestfish-actions.pod:1629
23157 #, no-wrap
23158 msgid ""
23159 " inotify-init maxevents\n"
23160 "\n"
23161 msgstr ""
23162
23163 #. type: textblock
23164 #: ../fish/guestfish-actions.pod:1635
23165 msgid ""
23166 "C<maxevents> is the maximum number of events which will be queued up between "
23167 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
23168 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
23169 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
23170 "but records the fact that it threw them away by setting a flag "
23171 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
23172 msgstr ""
23173
23174 #. type: textblock
23175 #: ../fish/guestfish-actions.pod:1645
23176 msgid ""
23177 "Before any events are generated, you have to add some watches to the "
23178 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
23179 "L</inotify-watch-all>."
23180 msgstr ""
23181
23182 #. type: textblock
23183 #: ../fish/guestfish-actions.pod:1651
23184 msgid ""
23185 "Queued up events should be read periodically by calling L</inotify-read> (or "
23186 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
23187 "If you don't read the events out often enough then you risk the internal "
23188 "queue overflowing."
23189 msgstr ""
23190
23191 #. type: textblock
23192 #: ../fish/guestfish-actions.pod:1658
23193 msgid ""
23194 "The handle should be closed after use by calling L</inotify-close>.  This "
23195 "also removes any watches automatically."
23196 msgstr ""
23197
23198 #. type: =head2
23199 #: ../fish/guestfish-actions.pod:1667
23200 msgid "inotify-read"
23201 msgstr ""
23202
23203 #. type: verbatim
23204 #: ../fish/guestfish-actions.pod:1669
23205 #, no-wrap
23206 msgid ""
23207 " inotify-read\n"
23208 "\n"
23209 msgstr ""
23210
23211 #. type: =head2
23212 #: ../fish/guestfish-actions.pod:1682
23213 msgid "inotify-rm-watch"
23214 msgstr ""
23215
23216 #. type: verbatim
23217 #: ../fish/guestfish-actions.pod:1684
23218 #, no-wrap
23219 msgid ""
23220 " inotify-rm-watch wd\n"
23221 "\n"
23222 msgstr ""
23223
23224 #. type: textblock
23225 #: ../fish/guestfish-actions.pod:1686
23226 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
23227 msgstr ""
23228
23229 #. type: =head2
23230 #: ../fish/guestfish-actions.pod:1689
23231 msgid "inspect-get-arch"
23232 msgstr ""
23233
23234 #. type: verbatim
23235 #: ../fish/guestfish-actions.pod:1691
23236 #, no-wrap
23237 msgid ""
23238 " inspect-get-arch root\n"
23239 "\n"
23240 msgstr ""
23241
23242 #. type: textblock
23243 #: ../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
23244 msgid ""
23245 "This function should only be called with a root device string as returned by "
23246 "L</inspect-os>."
23247 msgstr ""
23248
23249 #. type: textblock
23250 #: ../fish/guestfish-actions.pod:1696
23251 msgid ""
23252 "This returns the architecture of the inspected operating system.  The "
23253 "possible return values are listed under L</file-architecture>."
23254 msgstr ""
23255
23256 #. type: =head2
23257 #: ../fish/guestfish-actions.pod:1705
23258 msgid "inspect-get-distro"
23259 msgstr ""
23260
23261 #. type: verbatim
23262 #: ../fish/guestfish-actions.pod:1707
23263 #, no-wrap
23264 msgid ""
23265 " inspect-get-distro root\n"
23266 "\n"
23267 msgstr ""
23268
23269 #. type: =head2
23270 #: ../fish/guestfish-actions.pod:1791
23271 msgid "inspect-get-drive-mappings"
23272 msgstr ""
23273
23274 #. type: verbatim
23275 #: ../fish/guestfish-actions.pod:1793
23276 #, no-wrap
23277 msgid ""
23278 " inspect-get-drive-mappings root\n"
23279 "\n"
23280 msgstr ""
23281
23282 #. type: textblock
23283 #: ../fish/guestfish-actions.pod:1823
23284 msgid ""
23285 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23286 "L</inspect-get-mountpoints>, L</inspect-get-filesystems>."
23287 msgstr ""
23288
23289 #. type: =head2
23290 #: ../fish/guestfish-actions.pod:1827
23291 msgid "inspect-get-filesystems"
23292 msgstr ""
23293
23294 #. type: verbatim
23295 #: ../fish/guestfish-actions.pod:1829
23296 #, no-wrap
23297 msgid ""
23298 " inspect-get-filesystems root\n"
23299 "\n"
23300 msgstr ""
23301
23302 #. type: textblock
23303 #: ../fish/guestfish-actions.pod:1842
23304 msgid ""
23305 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23306 "L</inspect-get-mountpoints>."
23307 msgstr ""
23308
23309 #. type: =head2
23310 #: ../fish/guestfish-actions.pod:1845
23311 msgid "inspect-get-format"
23312 msgstr ""
23313
23314 #. type: verbatim
23315 #: ../fish/guestfish-actions.pod:1847
23316 #, no-wrap
23317 msgid ""
23318 " inspect-get-format root\n"
23319 "\n"
23320 msgstr ""
23321
23322 #. type: =head2
23323 #: ../fish/guestfish-actions.pod:1879
23324 msgid "inspect-get-hostname"
23325 msgstr ""
23326
23327 #. type: verbatim
23328 #: ../fish/guestfish-actions.pod:1881
23329 #, no-wrap
23330 msgid ""
23331 " inspect-get-hostname root\n"
23332 "\n"
23333 msgstr ""
23334
23335 #. type: =head2
23336 #: ../fish/guestfish-actions.pod:1894
23337 msgid "inspect-get-major-version"
23338 msgstr ""
23339
23340 #. type: verbatim
23341 #: ../fish/guestfish-actions.pod:1896
23342 #, no-wrap
23343 msgid ""
23344 " inspect-get-major-version root\n"
23345 "\n"
23346 msgstr ""
23347
23348 #. type: =head2
23349 #: ../fish/guestfish-actions.pod:1915
23350 msgid "inspect-get-minor-version"
23351 msgstr ""
23352
23353 #. type: verbatim
23354 #: ../fish/guestfish-actions.pod:1917
23355 #, no-wrap
23356 msgid ""
23357 " inspect-get-minor-version root\n"
23358 "\n"
23359 msgstr ""
23360
23361 #. type: textblock
23362 #: ../fish/guestfish-actions.pod:1927
23363 msgid ""
23364 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23365 "L</inspect-get-major-version>."
23366 msgstr ""
23367
23368 #. type: =head2
23369 #: ../fish/guestfish-actions.pod:1930
23370 msgid "inspect-get-mountpoints"
23371 msgstr ""
23372
23373 #. type: verbatim
23374 #: ../fish/guestfish-actions.pod:1932
23375 #, no-wrap
23376 msgid ""
23377 " inspect-get-mountpoints root\n"
23378 "\n"
23379 msgstr ""
23380
23381 #. type: textblock
23382 #: ../fish/guestfish-actions.pod:1954
23383 msgid ""
23384 "For operating systems like Windows which still use drive letters, this call "
23385 "will only return an entry for the first drive \"mounted on\" C</>.  For "
23386 "information about the mapping of drive letters to partitions, see "
23387 "L</inspect-get-drive-mappings>."
23388 msgstr ""
23389
23390 #. type: textblock
23391 #: ../fish/guestfish-actions.pod:1960
23392 msgid ""
23393 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23394 "L</inspect-get-filesystems>."
23395 msgstr ""
23396
23397 #. type: =head2
23398 #: ../fish/guestfish-actions.pod:1963
23399 msgid "inspect-get-package-format"
23400 msgstr ""
23401
23402 #. type: verbatim
23403 #: ../fish/guestfish-actions.pod:1965
23404 #, no-wrap
23405 msgid ""
23406 " inspect-get-package-format root\n"
23407 "\n"
23408 msgstr ""
23409
23410 #. type: textblock
23411 #: ../fish/guestfish-actions.pod:1970
23412 msgid ""
23413 "This function and L</inspect-get-package-management> return the package "
23414 "format and package management tool used by the inspected operating system.  "
23415 "For example for Fedora these functions would return C<rpm> (package format) "
23416 "and C<yum> (package management)."
23417 msgstr ""
23418
23419 #. type: =head2
23420 #: ../fish/guestfish-actions.pod:1985
23421 msgid "inspect-get-package-management"
23422 msgstr ""
23423
23424 #. type: verbatim
23425 #: ../fish/guestfish-actions.pod:1987
23426 #, no-wrap
23427 msgid ""
23428 " inspect-get-package-management root\n"
23429 "\n"
23430 msgstr ""
23431
23432 #. type: textblock
23433 #: ../fish/guestfish-actions.pod:1992
23434 msgid ""
23435 "L</inspect-get-package-format> and this function return the package format "
23436 "and package management tool used by the inspected operating system.  For "
23437 "example for Fedora these functions would return C<rpm> (package format) and "
23438 "C<yum> (package management)."
23439 msgstr ""
23440
23441 #. type: =head2
23442 #: ../fish/guestfish-actions.pod:2009
23443 msgid "inspect-get-product-name"
23444 msgstr ""
23445
23446 #. type: verbatim
23447 #: ../fish/guestfish-actions.pod:2011
23448 #, no-wrap
23449 msgid ""
23450 " inspect-get-product-name root\n"
23451 "\n"
23452 msgstr ""
23453
23454 #. type: =head2
23455 #: ../fish/guestfish-actions.pod:2026
23456 msgid "inspect-get-product-variant"
23457 msgstr ""
23458
23459 #. type: verbatim
23460 #: ../fish/guestfish-actions.pod:2028
23461 #, no-wrap
23462 msgid ""
23463 " inspect-get-product-variant root\n"
23464 "\n"
23465 msgstr ""
23466
23467 #. type: textblock
23468 #: ../fish/guestfish-actions.pod:2052
23469 msgid ""
23470 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23471 "L</inspect-get-product-name>, L</inspect-get-major-version>."
23472 msgstr ""
23473
23474 #. type: =head2
23475 #: ../fish/guestfish-actions.pod:2056
23476 msgid "inspect-get-roots"
23477 msgstr ""
23478
23479 #. type: verbatim
23480 #: ../fish/guestfish-actions.pod:2058
23481 #, no-wrap
23482 msgid ""
23483 " inspect-get-roots\n"
23484 "\n"
23485 msgstr ""
23486
23487 #. type: textblock
23488 #: ../fish/guestfish-actions.pod:2060
23489 msgid ""
23490 "This function is a convenient way to get the list of root devices, as "
23491 "returned from a previous call to L</inspect-os>, but without redoing the "
23492 "whole inspection process."
23493 msgstr ""
23494
23495 #. type: textblock
23496 #: ../fish/guestfish-actions.pod:2064
23497 msgid ""
23498 "This returns an empty list if either no root devices were found or the "
23499 "caller has not called L</inspect-os>."
23500 msgstr ""
23501
23502 #. type: =head2
23503 #: ../fish/guestfish-actions.pod:2069
23504 msgid "inspect-get-type"
23505 msgstr ""
23506
23507 #. type: verbatim
23508 #: ../fish/guestfish-actions.pod:2071
23509 #, no-wrap
23510 msgid ""
23511 " inspect-get-type root\n"
23512 "\n"
23513 msgstr ""
23514
23515 #. type: =head2
23516 #: ../fish/guestfish-actions.pod:2104
23517 msgid "inspect-get-windows-current-control-set"
23518 msgstr ""
23519
23520 #. type: verbatim
23521 #: ../fish/guestfish-actions.pod:2106
23522 #, no-wrap
23523 msgid ""
23524 " inspect-get-windows-current-control-set root\n"
23525 "\n"
23526 msgstr ""
23527
23528 #. type: =head2
23529 #: ../fish/guestfish-actions.pod:2120
23530 msgid "inspect-get-windows-systemroot"
23531 msgstr ""
23532
23533 #. type: verbatim
23534 #: ../fish/guestfish-actions.pod:2122
23535 #, no-wrap
23536 msgid ""
23537 " inspect-get-windows-systemroot root\n"
23538 "\n"
23539 msgstr ""
23540
23541 #. type: =head2
23542 #: ../fish/guestfish-actions.pod:2136
23543 msgid "inspect-is-live"
23544 msgstr ""
23545
23546 #. type: verbatim
23547 #: ../fish/guestfish-actions.pod:2138
23548 #, no-wrap
23549 msgid ""
23550 " inspect-is-live root\n"
23551 "\n"
23552 msgstr ""
23553
23554 #. type: textblock
23555 #: ../fish/guestfish-actions.pod:2143
23556 msgid ""
23557 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23558 "then this returns true if a live image was detected on the disk."
23559 msgstr ""
23560
23561 #. type: =head2
23562 #: ../fish/guestfish-actions.pod:2149
23563 msgid "inspect-is-multipart"
23564 msgstr ""
23565
23566 #. type: verbatim
23567 #: ../fish/guestfish-actions.pod:2151
23568 #, no-wrap
23569 msgid ""
23570 " inspect-is-multipart root\n"
23571 "\n"
23572 msgstr ""
23573
23574 #. type: textblock
23575 #: ../fish/guestfish-actions.pod:2156
23576 msgid ""
23577 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23578 "then this returns true if the disk is part of a set."
23579 msgstr ""
23580
23581 #. type: =head2
23582 #: ../fish/guestfish-actions.pod:2162
23583 msgid "inspect-is-netinst"
23584 msgstr ""
23585
23586 #. type: verbatim
23587 #: ../fish/guestfish-actions.pod:2164
23588 #, no-wrap
23589 msgid ""
23590 " inspect-is-netinst root\n"
23591 "\n"
23592 msgstr ""
23593
23594 #. type: textblock
23595 #: ../fish/guestfish-actions.pod:2169
23596 msgid ""
23597 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23598 "then this returns true if the disk is a network installer, ie. not a "
23599 "self-contained install CD but one which is likely to require network access "
23600 "to complete the install."
23601 msgstr ""
23602
23603 #. type: =head2
23604 #: ../fish/guestfish-actions.pod:2177
23605 msgid "inspect-list-applications"
23606 msgstr ""
23607
23608 #. type: verbatim
23609 #: ../fish/guestfish-actions.pod:2179
23610 #, no-wrap
23611 msgid ""
23612 " inspect-list-applications root\n"
23613 "\n"
23614 msgstr ""
23615
23616 #. type: textblock
23617 #: ../fish/guestfish-actions.pod:2186
23618 msgid ""
23619 "I<Note:> This call works differently from other parts of the inspection "
23620 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
23621 "then mount up the disks, before calling this.  Listing applications is a "
23622 "significantly more difficult operation which requires access to the full "
23623 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
23624 "are just returning data cached in the libguestfs handle, this call actually "
23625 "reads parts of the mounted filesystems during the call."
23626 msgstr ""
23627
23628 #. type: =head2
23629 #: ../fish/guestfish-actions.pod:2276
23630 msgid "inspect-os"
23631 msgstr ""
23632
23633 #. type: verbatim
23634 #: ../fish/guestfish-actions.pod:2278
23635 #, no-wrap
23636 msgid ""
23637 " inspect-os\n"
23638 "\n"
23639 msgstr ""
23640
23641 #. type: textblock
23642 #: ../fish/guestfish-actions.pod:2293
23643 msgid ""
23644 "You can pass the root string(s) returned to other L</inspect-get-*> "
23645 "functions in order to query further information about each operating system, "
23646 "such as the name and version."
23647 msgstr ""
23648
23649 #. type: textblock
23650 #: ../fish/guestfish-actions.pod:2298
23651 msgid ""
23652 "This function uses other libguestfs features such as L</mount-ro> and "
23653 "L</umount-all> in order to mount and unmount filesystems and look at the "
23654 "contents.  This should be called with no disks currently mounted.  The "
23655 "function may also use Augeas, so any existing Augeas handle will be closed."
23656 msgstr ""
23657
23658 #. type: textblock
23659 #: ../fish/guestfish-actions.pod:2310 ../fish/guestfish-actions.pod:2486 ../fish/guestfish-actions.pod:2532
23660 msgid "See also L</list-filesystems>."
23661 msgstr ""
23662
23663 #. type: =head2
23664 #: ../fish/guestfish-actions.pod:2312
23665 msgid "is-blockdev"
23666 msgstr ""
23667
23668 #. type: verbatim
23669 #: ../fish/guestfish-actions.pod:2314
23670 #, no-wrap
23671 msgid ""
23672 " is-blockdev path\n"
23673 "\n"
23674 msgstr ""
23675
23676 #. type: textblock
23677 #: ../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
23678 msgid "See also L</stat>."
23679 msgstr ""
23680
23681 #. type: =head2
23682 #: ../fish/guestfish-actions.pod:2321
23683 msgid "is-busy"
23684 msgstr ""
23685
23686 #. type: verbatim
23687 #: ../fish/guestfish-actions.pod:2323
23688 #, no-wrap
23689 msgid ""
23690 " is-busy\n"
23691 "\n"
23692 msgstr ""
23693
23694 #. type: =head2
23695 #: ../fish/guestfish-actions.pod:2330
23696 msgid "is-chardev"
23697 msgstr ""
23698
23699 #. type: verbatim
23700 #: ../fish/guestfish-actions.pod:2332
23701 #, no-wrap
23702 msgid ""
23703 " is-chardev path\n"
23704 "\n"
23705 msgstr ""
23706
23707 #. type: =head2
23708 #: ../fish/guestfish-actions.pod:2339
23709 msgid "is-config"
23710 msgstr ""
23711
23712 #. type: verbatim
23713 #: ../fish/guestfish-actions.pod:2341
23714 #, no-wrap
23715 msgid ""
23716 " is-config\n"
23717 "\n"
23718 msgstr ""
23719
23720 #. type: =head2
23721 #: ../fish/guestfish-actions.pod:2348
23722 msgid "is-dir"
23723 msgstr ""
23724
23725 #. type: verbatim
23726 #: ../fish/guestfish-actions.pod:2350
23727 #, no-wrap
23728 msgid ""
23729 " is-dir path\n"
23730 "\n"
23731 msgstr ""
23732
23733 #. type: =head2
23734 #: ../fish/guestfish-actions.pod:2358
23735 msgid "is-fifo"
23736 msgstr ""
23737
23738 #. type: verbatim
23739 #: ../fish/guestfish-actions.pod:2360
23740 #, no-wrap
23741 msgid ""
23742 " is-fifo path\n"
23743 "\n"
23744 msgstr ""
23745
23746 #. type: =head2
23747 #: ../fish/guestfish-actions.pod:2367
23748 msgid "is-file"
23749 msgstr ""
23750
23751 #. type: verbatim
23752 #: ../fish/guestfish-actions.pod:2369
23753 #, no-wrap
23754 msgid ""
23755 " is-file path\n"
23756 "\n"
23757 msgstr ""
23758
23759 #. type: =head2
23760 #: ../fish/guestfish-actions.pod:2377
23761 msgid "is-launching"
23762 msgstr ""
23763
23764 #. type: verbatim
23765 #: ../fish/guestfish-actions.pod:2379
23766 #, no-wrap
23767 msgid ""
23768 " is-launching\n"
23769 "\n"
23770 msgstr ""
23771
23772 #. type: =head2
23773 #: ../fish/guestfish-actions.pod:2386
23774 msgid "is-lv"
23775 msgstr ""
23776
23777 #. type: verbatim
23778 #: ../fish/guestfish-actions.pod:2388
23779 #, no-wrap
23780 msgid ""
23781 " is-lv device\n"
23782 "\n"
23783 msgstr ""
23784
23785 #. type: =head2
23786 #: ../fish/guestfish-actions.pod:2393
23787 msgid "is-ready"
23788 msgstr ""
23789
23790 #. type: verbatim
23791 #: ../fish/guestfish-actions.pod:2395
23792 #, no-wrap
23793 msgid ""
23794 " is-ready\n"
23795 "\n"
23796 msgstr ""
23797
23798 #. type: =head2
23799 #: ../fish/guestfish-actions.pod:2402
23800 msgid "is-socket"
23801 msgstr ""
23802
23803 #. type: verbatim
23804 #: ../fish/guestfish-actions.pod:2404
23805 #, no-wrap
23806 msgid ""
23807 " is-socket path\n"
23808 "\n"
23809 msgstr ""
23810
23811 #. type: =head2
23812 #: ../fish/guestfish-actions.pod:2411
23813 msgid "is-symlink"
23814 msgstr ""
23815
23816 #. type: verbatim
23817 #: ../fish/guestfish-actions.pod:2413
23818 #, no-wrap
23819 msgid ""
23820 " is-symlink path\n"
23821 "\n"
23822 msgstr ""
23823
23824 #. type: =head2
23825 #: ../fish/guestfish-actions.pod:2420
23826 msgid "kill-subprocess"
23827 msgstr ""
23828
23829 #. type: verbatim
23830 #: ../fish/guestfish-actions.pod:2422
23831 #, no-wrap
23832 msgid ""
23833 " kill-subprocess\n"
23834 "\n"
23835 msgstr ""
23836
23837 #. type: =head2
23838 #: ../fish/guestfish-actions.pod:2426
23839 msgid "launch"
23840 msgstr ""
23841
23842 #. type: =head2
23843 #: ../fish/guestfish-actions.pod:2428
23844 msgid "run"
23845 msgstr ""
23846
23847 #. type: verbatim
23848 #: ../fish/guestfish-actions.pod:2430
23849 #, no-wrap
23850 msgid ""
23851 " launch\n"
23852 "\n"
23853 msgstr ""
23854
23855 #. type: =head2
23856 #: ../fish/guestfish-actions.pod:2438
23857 msgid "lchown"
23858 msgstr ""
23859
23860 #. type: verbatim
23861 #: ../fish/guestfish-actions.pod:2440
23862 #, no-wrap
23863 msgid ""
23864 " lchown owner group path\n"
23865 "\n"
23866 msgstr ""
23867
23868 #. type: textblock
23869 #: ../fish/guestfish-actions.pod:2442
23870 msgid ""
23871 "Change the file owner to C<owner> and group to C<group>.  This is like "
23872 "L</chown> but if C<path> is a symlink then the link itself is changed, not "
23873 "the target."
23874 msgstr ""
23875
23876 #. type: =head2
23877 #: ../fish/guestfish-actions.pod:2450
23878 msgid "lgetxattr"
23879 msgstr ""
23880
23881 #. type: verbatim
23882 #: ../fish/guestfish-actions.pod:2452
23883 #, no-wrap
23884 msgid ""
23885 " lgetxattr path name\n"
23886 "\n"
23887 msgstr ""
23888
23889 #. type: textblock
23890 #: ../fish/guestfish-actions.pod:2468
23891 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
23892 msgstr ""
23893
23894 #. type: =head2
23895 #: ../fish/guestfish-actions.pod:2470
23896 msgid "lgetxattrs"
23897 msgstr ""
23898
23899 #. type: verbatim
23900 #: ../fish/guestfish-actions.pod:2472
23901 #, no-wrap
23902 msgid ""
23903 " lgetxattrs path\n"
23904 "\n"
23905 msgstr ""
23906
23907 #. type: textblock
23908 #: ../fish/guestfish-actions.pod:2474
23909 msgid ""
23910 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
23911 "it returns the extended attributes of the link itself."
23912 msgstr ""
23913
23914 #. type: =head2
23915 #: ../fish/guestfish-actions.pod:2478
23916 msgid "list-devices"
23917 msgstr ""
23918
23919 #. type: verbatim
23920 #: ../fish/guestfish-actions.pod:2480
23921 #, no-wrap
23922 msgid ""
23923 " list-devices\n"
23924 "\n"
23925 msgstr ""
23926
23927 #. type: =head2
23928 #: ../fish/guestfish-actions.pod:2488
23929 msgid "list-filesystems"
23930 msgstr ""
23931
23932 #. type: verbatim
23933 #: ../fish/guestfish-actions.pod:2490
23934 #, no-wrap
23935 msgid ""
23936 " list-filesystems\n"
23937 "\n"
23938 msgstr ""
23939
23940 #. type: textblock
23941 #: ../fish/guestfish-actions.pod:2509
23942 msgid ""
23943 "This command runs other libguestfs commands, which might include L</mount> "
23944 "and L</umount>, and therefore you should use this soon after launch and only "
23945 "when nothing is mounted."
23946 msgstr ""
23947
23948 #. type: textblock
23949 #: ../fish/guestfish-actions.pod:2513
23950 msgid ""
23951 "Not all of the filesystems returned will be mountable.  In particular, swap "
23952 "partitions are returned in the list.  Also this command does not check that "
23953 "each filesystem found is valid and mountable, and some filesystems might be "
23954 "mountable but require special options.  Filesystems may not all belong to a "
23955 "single logical operating system (use L</inspect-os> to look for OSes)."
23956 msgstr ""
23957
23958 #. type: =head2
23959 #: ../fish/guestfish-actions.pod:2521
23960 msgid "list-partitions"
23961 msgstr ""
23962
23963 #. type: verbatim
23964 #: ../fish/guestfish-actions.pod:2523
23965 #, no-wrap
23966 msgid ""
23967 " list-partitions\n"
23968 "\n"
23969 msgstr ""
23970
23971 #. type: textblock
23972 #: ../fish/guestfish-actions.pod:2529
23973 msgid ""
23974 "This does not return logical volumes.  For that you will need to call "
23975 "L</lvs>."
23976 msgstr ""
23977
23978 #. type: =head2
23979 #: ../fish/guestfish-actions.pod:2534
23980 msgid "ll"
23981 msgstr ""
23982
23983 #. type: verbatim
23984 #: ../fish/guestfish-actions.pod:2536
23985 #, no-wrap
23986 msgid ""
23987 " ll directory\n"
23988 "\n"
23989 msgstr ""
23990
23991 #. type: =head2
23992 #: ../fish/guestfish-actions.pod:2544
23993 msgid "ln"
23994 msgstr ""
23995
23996 #. type: verbatim
23997 #: ../fish/guestfish-actions.pod:2546
23998 #, no-wrap
23999 msgid ""
24000 " ln target linkname\n"
24001 "\n"
24002 msgstr ""
24003
24004 #. type: =head2
24005 #: ../fish/guestfish-actions.pod:2550
24006 msgid "ln-f"
24007 msgstr ""
24008
24009 #. type: verbatim
24010 #: ../fish/guestfish-actions.pod:2552
24011 #, no-wrap
24012 msgid ""
24013 " ln-f target linkname\n"
24014 "\n"
24015 msgstr ""
24016
24017 #. type: =head2
24018 #: ../fish/guestfish-actions.pod:2557
24019 msgid "ln-s"
24020 msgstr ""
24021
24022 #. type: verbatim
24023 #: ../fish/guestfish-actions.pod:2559
24024 #, no-wrap
24025 msgid ""
24026 " ln-s target linkname\n"
24027 "\n"
24028 msgstr ""
24029
24030 #. type: =head2
24031 #: ../fish/guestfish-actions.pod:2563
24032 msgid "ln-sf"
24033 msgstr ""
24034
24035 #. type: verbatim
24036 #: ../fish/guestfish-actions.pod:2565
24037 #, no-wrap
24038 msgid ""
24039 " ln-sf target linkname\n"
24040 "\n"
24041 msgstr ""
24042
24043 #. type: =head2
24044 #: ../fish/guestfish-actions.pod:2570
24045 msgid "lremovexattr"
24046 msgstr ""
24047
24048 #. type: verbatim
24049 #: ../fish/guestfish-actions.pod:2572
24050 #, no-wrap
24051 msgid ""
24052 " lremovexattr xattr path\n"
24053 "\n"
24054 msgstr ""
24055
24056 #. type: textblock
24057 #: ../fish/guestfish-actions.pod:2574
24058 msgid ""
24059 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
24060 "it removes an extended attribute of the link itself."
24061 msgstr ""
24062
24063 #. type: =head2
24064 #: ../fish/guestfish-actions.pod:2578
24065 msgid "ls"
24066 msgstr ""
24067
24068 #. type: verbatim
24069 #: ../fish/guestfish-actions.pod:2580
24070 #, no-wrap
24071 msgid ""
24072 " ls directory\n"
24073 "\n"
24074 msgstr ""
24075
24076 #. type: textblock
24077 #: ../fish/guestfish-actions.pod:2586
24078 msgid ""
24079 "This command is mostly useful for interactive sessions.  Programs should "
24080 "probably use L</readdir> instead."
24081 msgstr ""
24082
24083 #. type: =head2
24084 #: ../fish/guestfish-actions.pod:2589
24085 msgid "lsetxattr"
24086 msgstr ""
24087
24088 #. type: verbatim
24089 #: ../fish/guestfish-actions.pod:2591
24090 #, no-wrap
24091 msgid ""
24092 " lsetxattr xattr val vallen path\n"
24093 "\n"
24094 msgstr ""
24095
24096 #. type: textblock
24097 #: ../fish/guestfish-actions.pod:2593
24098 msgid ""
24099 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
24100 "sets an extended attribute of the link itself."
24101 msgstr ""
24102
24103 #. type: =head2
24104 #: ../fish/guestfish-actions.pod:2597
24105 msgid "lstat"
24106 msgstr ""
24107
24108 #. type: verbatim
24109 #: ../fish/guestfish-actions.pod:2599
24110 #, no-wrap
24111 msgid ""
24112 " lstat path\n"
24113 "\n"
24114 msgstr ""
24115
24116 #. type: textblock
24117 #: ../fish/guestfish-actions.pod:2603
24118 msgid ""
24119 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
24120 "the link is stat-ed, not the file it refers to."
24121 msgstr ""
24122
24123 #. type: =head2
24124 #: ../fish/guestfish-actions.pod:2609
24125 msgid "lstatlist"
24126 msgstr ""
24127
24128 #. type: verbatim
24129 #: ../fish/guestfish-actions.pod:2611
24130 #, no-wrap
24131 msgid ""
24132 " lstatlist path 'names ...'\n"
24133 "\n"
24134 msgstr ""
24135
24136 #. type: textblock
24137 #: ../fish/guestfish-actions.pod:2613
24138 msgid ""
24139 "This call allows you to perform the L</lstat> operation on multiple files, "
24140 "where all files are in the directory C<path>.  C<names> is the list of files "
24141 "from this directory."
24142 msgstr ""
24143
24144 #. type: textblock
24145 #: ../fish/guestfish-actions.pod:2622
24146 msgid ""
24147 "This call is intended for programs that want to efficiently list a directory "
24148 "contents without making many round-trips.  See also L</lxattrlist> for a "
24149 "similarly efficient call for getting extended attributes.  Very long "
24150 "directory listings might cause the protocol message size to be exceeded, "
24151 "causing this call to fail.  The caller must split up such requests into "
24152 "smaller groups of names."
24153 msgstr ""
24154
24155 #. type: =head2
24156 #: ../fish/guestfish-actions.pod:2630
24157 msgid "luks-add-key"
24158 msgstr ""
24159
24160 #. type: verbatim
24161 #: ../fish/guestfish-actions.pod:2632
24162 #, no-wrap
24163 msgid ""
24164 " luks-add-key device keyslot\n"
24165 "\n"
24166 msgstr ""
24167
24168 #. type: textblock
24169 #: ../fish/guestfish-actions.pod:2639
24170 msgid ""
24171 "Note that if C<keyslot> already contains a key, then this command will "
24172 "fail.  You have to use L</luks-kill-slot> first to remove that key."
24173 msgstr ""
24174
24175 #. type: textblock
24176 #: ../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
24177 msgid ""
24178 "This command has one or more key or passphrase parameters.  Guestfish will "
24179 "prompt for these separately."
24180 msgstr ""
24181
24182 #. type: =head2
24183 #: ../fish/guestfish-actions.pod:2646
24184 msgid "luks-close"
24185 msgstr ""
24186
24187 #. type: verbatim
24188 #: ../fish/guestfish-actions.pod:2648
24189 #, no-wrap
24190 msgid ""
24191 " luks-close device\n"
24192 "\n"
24193 msgstr ""
24194
24195 #. type: textblock
24196 #: ../fish/guestfish-actions.pod:2650
24197 msgid ""
24198 "This closes a LUKS device that was created earlier by L</luks-open> or "
24199 "L</luks-open-ro>.  The C<device> parameter must be the name of the LUKS "
24200 "mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
24201 "underlying block device."
24202 msgstr ""
24203
24204 #. type: =head2
24205 #: ../fish/guestfish-actions.pod:2656
24206 msgid "luks-format"
24207 msgstr ""
24208
24209 #. type: verbatim
24210 #: ../fish/guestfish-actions.pod:2658
24211 #, no-wrap
24212 msgid ""
24213 " luks-format device keyslot\n"
24214 "\n"
24215 msgstr ""
24216
24217 #. type: =head2
24218 #: ../fish/guestfish-actions.pod:2671
24219 msgid "luks-format-cipher"
24220 msgstr ""
24221
24222 #. type: verbatim
24223 #: ../fish/guestfish-actions.pod:2673
24224 #, no-wrap
24225 msgid ""
24226 " luks-format-cipher device keyslot cipher\n"
24227 "\n"
24228 msgstr ""
24229
24230 #. type: textblock
24231 #: ../fish/guestfish-actions.pod:2675
24232 msgid ""
24233 "This command is the same as L</luks-format> but it also allows you to set "
24234 "the C<cipher> used."
24235 msgstr ""
24236
24237 #. type: =head2
24238 #: ../fish/guestfish-actions.pod:2684
24239 msgid "luks-kill-slot"
24240 msgstr ""
24241
24242 #. type: verbatim
24243 #: ../fish/guestfish-actions.pod:2686
24244 #, no-wrap
24245 msgid ""
24246 " luks-kill-slot device keyslot\n"
24247 "\n"
24248 msgstr ""
24249
24250 #. type: =head2
24251 #: ../fish/guestfish-actions.pod:2695
24252 msgid "luks-open"
24253 msgstr ""
24254
24255 #. type: verbatim
24256 #: ../fish/guestfish-actions.pod:2697
24257 #, no-wrap
24258 msgid ""
24259 " luks-open device mapname\n"
24260 "\n"
24261 msgstr ""
24262
24263 #. type: textblock
24264 #: ../fish/guestfish-actions.pod:2711
24265 msgid ""
24266 "If this block device contains LVM volume groups, then calling L</vgscan> "
24267 "followed by L</vg-activate-all> will make them visible."
24268 msgstr ""
24269
24270 #. type: =head2
24271 #: ../fish/guestfish-actions.pod:2718
24272 msgid "luks-open-ro"
24273 msgstr ""
24274
24275 #. type: verbatim
24276 #: ../fish/guestfish-actions.pod:2720
24277 #, no-wrap
24278 msgid ""
24279 " luks-open-ro device mapname\n"
24280 "\n"
24281 msgstr ""
24282
24283 #. type: textblock
24284 #: ../fish/guestfish-actions.pod:2722
24285 msgid ""
24286 "This is the same as L</luks-open> except that a read-only mapping is "
24287 "created."
24288 msgstr ""
24289
24290 #. type: =head2
24291 #: ../fish/guestfish-actions.pod:2728
24292 msgid "lvcreate"
24293 msgstr ""
24294
24295 #. type: verbatim
24296 #: ../fish/guestfish-actions.pod:2730
24297 #, no-wrap
24298 msgid ""
24299 " lvcreate logvol volgroup mbytes\n"
24300 "\n"
24301 msgstr ""
24302
24303 #. type: =head2
24304 #: ../fish/guestfish-actions.pod:2735
24305 msgid "lvm-canonical-lv-name"
24306 msgstr ""
24307
24308 #. type: verbatim
24309 #: ../fish/guestfish-actions.pod:2737
24310 #, no-wrap
24311 msgid ""
24312 " lvm-canonical-lv-name lvname\n"
24313 "\n"
24314 msgstr ""
24315
24316 #. type: textblock
24317 #: ../fish/guestfish-actions.pod:2746
24318 msgid "See also L</is-lv>."
24319 msgstr ""
24320
24321 #. type: =head2
24322 #: ../fish/guestfish-actions.pod:2748
24323 msgid "lvm-clear-filter"
24324 msgstr ""
24325
24326 #. type: verbatim
24327 #: ../fish/guestfish-actions.pod:2750
24328 #, no-wrap
24329 msgid ""
24330 " lvm-clear-filter\n"
24331 "\n"
24332 msgstr ""
24333
24334 #. type: textblock
24335 #: ../fish/guestfish-actions.pod:2752
24336 msgid ""
24337 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
24338 "block device."
24339 msgstr ""
24340
24341 #. type: =head2
24342 #: ../fish/guestfish-actions.pod:2758
24343 msgid "lvm-remove-all"
24344 msgstr ""
24345
24346 #. type: verbatim
24347 #: ../fish/guestfish-actions.pod:2760
24348 #, no-wrap
24349 msgid ""
24350 " lvm-remove-all\n"
24351 "\n"
24352 msgstr ""
24353
24354 #. type: =head2
24355 #: ../fish/guestfish-actions.pod:2768
24356 msgid "lvm-set-filter"
24357 msgstr ""
24358
24359 #. type: verbatim
24360 #: ../fish/guestfish-actions.pod:2770
24361 #, no-wrap
24362 msgid ""
24363 " lvm-set-filter 'devices ...'\n"
24364 "\n"
24365 msgstr ""
24366
24367 #. type: =head2
24368 #: ../fish/guestfish-actions.pod:2795
24369 msgid "lvremove"
24370 msgstr ""
24371
24372 #. type: verbatim
24373 #: ../fish/guestfish-actions.pod:2797
24374 #, no-wrap
24375 msgid ""
24376 " lvremove device\n"
24377 "\n"
24378 msgstr ""
24379
24380 #. type: =head2
24381 #: ../fish/guestfish-actions.pod:2805
24382 msgid "lvrename"
24383 msgstr ""
24384
24385 #. type: verbatim
24386 #: ../fish/guestfish-actions.pod:2807
24387 #, no-wrap
24388 msgid ""
24389 " lvrename logvol newlogvol\n"
24390 "\n"
24391 msgstr ""
24392
24393 #. type: =head2
24394 #: ../fish/guestfish-actions.pod:2811
24395 msgid "lvresize"
24396 msgstr ""
24397
24398 #. type: verbatim
24399 #: ../fish/guestfish-actions.pod:2813
24400 #, no-wrap
24401 msgid ""
24402 " lvresize device mbytes\n"
24403 "\n"
24404 msgstr ""
24405
24406 #. type: =head2
24407 #: ../fish/guestfish-actions.pod:2819
24408 msgid "lvresize-free"
24409 msgstr ""
24410
24411 #. type: verbatim
24412 #: ../fish/guestfish-actions.pod:2821
24413 #, no-wrap
24414 msgid ""
24415 " lvresize-free lv percent\n"
24416 "\n"
24417 msgstr ""
24418
24419 #. type: =head2
24420 #: ../fish/guestfish-actions.pod:2829
24421 msgid "lvs"
24422 msgstr ""
24423
24424 #. type: verbatim
24425 #: ../fish/guestfish-actions.pod:2831
24426 #, no-wrap
24427 msgid ""
24428 " lvs\n"
24429 "\n"
24430 msgstr ""
24431
24432 #. type: textblock
24433 #: ../fish/guestfish-actions.pod:2839
24434 msgid "See also L</lvs-full>, L</list-filesystems>."
24435 msgstr ""
24436
24437 #. type: =head2
24438 #: ../fish/guestfish-actions.pod:2841
24439 msgid "lvs-full"
24440 msgstr ""
24441
24442 #. type: verbatim
24443 #: ../fish/guestfish-actions.pod:2843
24444 #, no-wrap
24445 msgid ""
24446 " lvs-full\n"
24447 "\n"
24448 msgstr ""
24449
24450 #. type: =head2
24451 #: ../fish/guestfish-actions.pod:2848
24452 msgid "lvuuid"
24453 msgstr ""
24454
24455 #. type: verbatim
24456 #: ../fish/guestfish-actions.pod:2850
24457 #, no-wrap
24458 msgid ""
24459 " lvuuid device\n"
24460 "\n"
24461 msgstr ""
24462
24463 #. type: =head2
24464 #: ../fish/guestfish-actions.pod:2854
24465 msgid "lxattrlist"
24466 msgstr ""
24467
24468 #. type: verbatim
24469 #: ../fish/guestfish-actions.pod:2856
24470 #, no-wrap
24471 msgid ""
24472 " lxattrlist path 'names ...'\n"
24473 "\n"
24474 msgstr ""
24475
24476 #. type: textblock
24477 #: ../fish/guestfish-actions.pod:2872
24478 msgid ""
24479 "This call is intended for programs that want to efficiently list a directory "
24480 "contents without making many round-trips.  See also L</lstatlist> for a "
24481 "similarly efficient call for getting standard stats.  Very long directory "
24482 "listings might cause the protocol message size to be exceeded, causing this "
24483 "call to fail.  The caller must split up such requests into smaller groups of "
24484 "names."
24485 msgstr ""
24486
24487 #. type: =head2
24488 #: ../fish/guestfish-actions.pod:2880
24489 msgid "mkdir"
24490 msgstr ""
24491
24492 #. type: verbatim
24493 #: ../fish/guestfish-actions.pod:2882
24494 #, no-wrap
24495 msgid ""
24496 " mkdir path\n"
24497 "\n"
24498 msgstr ""
24499
24500 #. type: =head2
24501 #: ../fish/guestfish-actions.pod:2886
24502 msgid "mkdir-mode"
24503 msgstr ""
24504
24505 #. type: verbatim
24506 #: ../fish/guestfish-actions.pod:2888
24507 #, no-wrap
24508 msgid ""
24509 " mkdir-mode path mode\n"
24510 "\n"
24511 msgstr ""
24512
24513 #. type: textblock
24514 #: ../fish/guestfish-actions.pod:2897
24515 msgid "See also L</mkdir>, L</umask>"
24516 msgstr ""
24517
24518 #. type: =head2
24519 #: ../fish/guestfish-actions.pod:2899
24520 msgid "mkdir-p"
24521 msgstr ""
24522
24523 #. type: verbatim
24524 #: ../fish/guestfish-actions.pod:2901
24525 #, no-wrap
24526 msgid ""
24527 " mkdir-p path\n"
24528 "\n"
24529 msgstr ""
24530
24531 #. type: =head2
24532 #: ../fish/guestfish-actions.pod:2906
24533 msgid "mkdtemp"
24534 msgstr ""
24535
24536 #. type: verbatim
24537 #: ../fish/guestfish-actions.pod:2908
24538 #, no-wrap
24539 msgid ""
24540 " mkdtemp template\n"
24541 "\n"
24542 msgstr ""
24543
24544 #. type: =head2
24545 #: ../fish/guestfish-actions.pod:2929
24546 msgid "mke2fs-J"
24547 msgstr ""
24548
24549 #. type: verbatim
24550 #: ../fish/guestfish-actions.pod:2931
24551 #, no-wrap
24552 msgid ""
24553 " mke2fs-J fstype blocksize device journal\n"
24554 "\n"
24555 msgstr ""
24556
24557 #. type: textblock
24558 #: ../fish/guestfish-actions.pod:2939
24559 msgid "See also L</mke2journal>."
24560 msgstr ""
24561
24562 #. type: =head2
24563 #: ../fish/guestfish-actions.pod:2941
24564 msgid "mke2fs-JL"
24565 msgstr ""
24566
24567 #. type: verbatim
24568 #: ../fish/guestfish-actions.pod:2943
24569 #, no-wrap
24570 msgid ""
24571 " mke2fs-JL fstype blocksize device label\n"
24572 "\n"
24573 msgstr ""
24574
24575 #. type: textblock
24576 #: ../fish/guestfish-actions.pod:2948
24577 msgid "See also L</mke2journal-L>."
24578 msgstr ""
24579
24580 #. type: =head2
24581 #: ../fish/guestfish-actions.pod:2950
24582 msgid "mke2fs-JU"
24583 msgstr ""
24584
24585 #. type: verbatim
24586 #: ../fish/guestfish-actions.pod:2952
24587 #, no-wrap
24588 msgid ""
24589 " mke2fs-JU fstype blocksize device uuid\n"
24590 "\n"
24591 msgstr ""
24592
24593 #. type: textblock
24594 #: ../fish/guestfish-actions.pod:2957
24595 msgid "See also L</mke2journal-U>."
24596 msgstr ""
24597
24598 #. type: =head2
24599 #: ../fish/guestfish-actions.pod:2959
24600 msgid "mke2journal"
24601 msgstr ""
24602
24603 #. type: verbatim
24604 #: ../fish/guestfish-actions.pod:2961
24605 #, no-wrap
24606 msgid ""
24607 " mke2journal blocksize device\n"
24608 "\n"
24609 msgstr ""
24610
24611 #. type: =head2
24612 #: ../fish/guestfish-actions.pod:2968
24613 msgid "mke2journal-L"
24614 msgstr ""
24615
24616 #. type: verbatim
24617 #: ../fish/guestfish-actions.pod:2970
24618 #, no-wrap
24619 msgid ""
24620 " mke2journal-L blocksize label device\n"
24621 "\n"
24622 msgstr ""
24623
24624 #. type: =head2
24625 #: ../fish/guestfish-actions.pod:2974
24626 msgid "mke2journal-U"
24627 msgstr ""
24628
24629 #. type: verbatim
24630 #: ../fish/guestfish-actions.pod:2976
24631 #, no-wrap
24632 msgid ""
24633 " mke2journal-U blocksize uuid device\n"
24634 "\n"
24635 msgstr ""
24636
24637 #. type: =head2
24638 #: ../fish/guestfish-actions.pod:2980
24639 msgid "mkfifo"
24640 msgstr ""
24641
24642 #. type: verbatim
24643 #: ../fish/guestfish-actions.pod:2982
24644 #, no-wrap
24645 msgid ""
24646 " mkfifo mode path\n"
24647 "\n"
24648 msgstr ""
24649
24650 #. type: textblock
24651 #: ../fish/guestfish-actions.pod:2984
24652 msgid ""
24653 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
24654 "is just a convenient wrapper around L</mknod>."
24655 msgstr ""
24656
24657 #. type: =head2
24658 #: ../fish/guestfish-actions.pod:2990
24659 msgid "mkfs"
24660 msgstr ""
24661
24662 #. type: verbatim
24663 #: ../fish/guestfish-actions.pod:2992
24664 #, no-wrap
24665 msgid ""
24666 " mkfs fstype device\n"
24667 "\n"
24668 msgstr ""
24669
24670 #. type: =head2
24671 #: ../fish/guestfish-actions.pod:2998
24672 msgid "mkfs-b"
24673 msgstr ""
24674
24675 #. type: verbatim
24676 #: ../fish/guestfish-actions.pod:3000
24677 #, no-wrap
24678 msgid ""
24679 " mkfs-b fstype blocksize device\n"
24680 "\n"
24681 msgstr ""
24682
24683 #. type: textblock
24684 #: ../fish/guestfish-actions.pod:3002
24685 msgid ""
24686 "This call is similar to L</mkfs>, but it allows you to control the block "
24687 "size of the resulting filesystem.  Supported block sizes depend on the "
24688 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
24689 msgstr ""
24690
24691 #. type: =head2
24692 #: ../fish/guestfish-actions.pod:3017
24693 msgid "mkfs-opts"
24694 msgstr ""
24695
24696 #. type: verbatim
24697 #: ../fish/guestfish-actions.pod:3019
24698 #, no-wrap
24699 msgid ""
24700 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
24701 "\n"
24702 msgstr ""
24703
24704 #. type: =head2
24705 #: ../fish/guestfish-actions.pod:3054
24706 msgid "mkmountpoint"
24707 msgstr ""
24708
24709 #. type: verbatim
24710 #: ../fish/guestfish-actions.pod:3056
24711 #, no-wrap
24712 msgid ""
24713 " mkmountpoint exemptpath\n"
24714 "\n"
24715 msgstr ""
24716
24717 #. type: textblock
24718 #: ../fish/guestfish-actions.pod:3058
24719 msgid ""
24720 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
24721 "to create extra mountpoints before mounting the first filesystem."
24722 msgstr ""
24723
24724 #. type: textblock
24725 #: ../fish/guestfish-actions.pod:3082
24726 msgid ""
24727 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
24728 "unexpected errors if you try to mix these calls.  It is safest to manually "
24729 "unmount filesystems and remove mountpoints after use."
24730 msgstr ""
24731
24732 #. type: textblock
24733 #: ../fish/guestfish-actions.pod:3086
24734 msgid ""
24735 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
24736 "for this to work for manual mountpoints, you must ensure that the innermost "
24737 "mountpoints have the longest pathnames, as in the example code above."
24738 msgstr ""
24739
24740 #. type: textblock
24741 #: ../fish/guestfish-actions.pod:3093
24742 msgid ""
24743 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
24744 "L</umount-all> to be called when the handle is closed which can also trigger "
24745 "these issues."
24746 msgstr ""
24747
24748 #. type: =head2
24749 #: ../fish/guestfish-actions.pod:3097
24750 msgid "mknod"
24751 msgstr ""
24752
24753 #. type: verbatim
24754 #: ../fish/guestfish-actions.pod:3099
24755 #, no-wrap
24756 msgid ""
24757 " mknod mode devmajor devminor path\n"
24758 "\n"
24759 msgstr ""
24760
24761 #. type: textblock
24762 #: ../fish/guestfish-actions.pod:3109
24763 msgid ""
24764 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
24765 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
24766 "regular file).  These constants are available in the standard Linux header "
24767 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
24768 "wrappers around this command which bitwise OR in the appropriate constant "
24769 "for you."
24770 msgstr ""
24771
24772 #. type: =head2
24773 #: ../fish/guestfish-actions.pod:3119
24774 msgid "mknod-b"
24775 msgstr ""
24776
24777 #. type: verbatim
24778 #: ../fish/guestfish-actions.pod:3121
24779 #, no-wrap
24780 msgid ""
24781 " mknod-b mode devmajor devminor path\n"
24782 "\n"
24783 msgstr ""
24784
24785 #. type: textblock
24786 #: ../fish/guestfish-actions.pod:3123
24787 msgid ""
24788 "This call creates a block device node called C<path> with mode C<mode> and "
24789 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
24790 "wrapper around L</mknod>."
24791 msgstr ""
24792
24793 #. type: =head2
24794 #: ../fish/guestfish-actions.pod:3129
24795 msgid "mknod-c"
24796 msgstr ""
24797
24798 #. type: verbatim
24799 #: ../fish/guestfish-actions.pod:3131
24800 #, no-wrap
24801 msgid ""
24802 " mknod-c mode devmajor devminor path\n"
24803 "\n"
24804 msgstr ""
24805
24806 #. type: textblock
24807 #: ../fish/guestfish-actions.pod:3133
24808 msgid ""
24809 "This call creates a char device node called C<path> with mode C<mode> and "
24810 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
24811 "wrapper around L</mknod>."
24812 msgstr ""
24813
24814 #. type: =head2
24815 #: ../fish/guestfish-actions.pod:3139
24816 msgid "mkswap"
24817 msgstr ""
24818
24819 #. type: verbatim
24820 #: ../fish/guestfish-actions.pod:3141
24821 #, no-wrap
24822 msgid ""
24823 " mkswap device\n"
24824 "\n"
24825 msgstr ""
24826
24827 #. type: =head2
24828 #: ../fish/guestfish-actions.pod:3145
24829 msgid "mkswap-L"
24830 msgstr ""
24831
24832 #. type: verbatim
24833 #: ../fish/guestfish-actions.pod:3147
24834 #, no-wrap
24835 msgid ""
24836 " mkswap-L label device\n"
24837 "\n"
24838 msgstr ""
24839
24840 #. type: =head2
24841 #: ../fish/guestfish-actions.pod:3155
24842 msgid "mkswap-U"
24843 msgstr ""
24844
24845 #. type: verbatim
24846 #: ../fish/guestfish-actions.pod:3157
24847 #, no-wrap
24848 msgid ""
24849 " mkswap-U uuid device\n"
24850 "\n"
24851 msgstr ""
24852
24853 #. type: =head2
24854 #: ../fish/guestfish-actions.pod:3161
24855 msgid "mkswap-file"
24856 msgstr ""
24857
24858 #. type: verbatim
24859 #: ../fish/guestfish-actions.pod:3163
24860 #, no-wrap
24861 msgid ""
24862 " mkswap-file path\n"
24863 "\n"
24864 msgstr ""
24865
24866 #. type: textblock
24867 #: ../fish/guestfish-actions.pod:3167
24868 msgid ""
24869 "This command just writes a swap file signature to an existing file.  To "
24870 "create the file itself, use something like L</fallocate>."
24871 msgstr ""
24872
24873 #. type: =head2
24874 #: ../fish/guestfish-actions.pod:3170
24875 msgid "modprobe"
24876 msgstr ""
24877
24878 #. type: verbatim
24879 #: ../fish/guestfish-actions.pod:3172
24880 #, no-wrap
24881 msgid ""
24882 " modprobe modulename\n"
24883 "\n"
24884 msgstr ""
24885
24886 #. type: =head2
24887 #: ../fish/guestfish-actions.pod:3179
24888 msgid "mount"
24889 msgstr ""
24890
24891 #. type: verbatim
24892 #: ../fish/guestfish-actions.pod:3181
24893 #, no-wrap
24894 msgid ""
24895 " mount device mountpoint\n"
24896 "\n"
24897 msgstr ""
24898
24899 #. type: textblock
24900 #: ../fish/guestfish-actions.pod:3197
24901 msgid ""
24902 "B<Important note:> When you use this call, the filesystem options C<sync> "
24903 "and C<noatime> are set implicitly.  This was originally done because we "
24904 "thought it would improve reliability, but it turns out that I<-o sync> has a "
24905 "very large negative performance impact and negligible effect on "
24906 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
24907 "code that needs performance, and instead use L</mount-options> (use an empty "
24908 "string for the first parameter if you don't want any options)."
24909 msgstr ""
24910
24911 #. type: =head2
24912 #: ../fish/guestfish-actions.pod:3207
24913 msgid "mount-loop"
24914 msgstr ""
24915
24916 #. type: verbatim
24917 #: ../fish/guestfish-actions.pod:3209
24918 #, no-wrap
24919 msgid ""
24920 " mount-loop file mountpoint\n"
24921 "\n"
24922 msgstr ""
24923
24924 #. type: =head2
24925 #: ../fish/guestfish-actions.pod:3215
24926 msgid "mount-options"
24927 msgstr ""
24928
24929 #. type: verbatim
24930 #: ../fish/guestfish-actions.pod:3217
24931 #, no-wrap
24932 msgid ""
24933 " mount-options options device mountpoint\n"
24934 "\n"
24935 msgstr ""
24936
24937 #. type: textblock
24938 #: ../fish/guestfish-actions.pod:3219
24939 msgid ""
24940 "This is the same as the L</mount> command, but it allows you to set the "
24941 "mount options as for the L<mount(8)> I<-o> flag."
24942 msgstr ""
24943
24944 #. type: =head2
24945 #: ../fish/guestfish-actions.pod:3227
24946 msgid "mount-ro"
24947 msgstr ""
24948
24949 #. type: verbatim
24950 #: ../fish/guestfish-actions.pod:3229
24951 #, no-wrap
24952 msgid ""
24953 " mount-ro device mountpoint\n"
24954 "\n"
24955 msgstr ""
24956
24957 #. type: textblock
24958 #: ../fish/guestfish-actions.pod:3231
24959 msgid ""
24960 "This is the same as the L</mount> command, but it mounts the filesystem with "
24961 "the read-only (I<-o ro>) flag."
24962 msgstr ""
24963
24964 #. type: =head2
24965 #: ../fish/guestfish-actions.pod:3234
24966 msgid "mount-vfs"
24967 msgstr ""
24968
24969 #. type: verbatim
24970 #: ../fish/guestfish-actions.pod:3236
24971 #, no-wrap
24972 msgid ""
24973 " mount-vfs options vfstype device mountpoint\n"
24974 "\n"
24975 msgstr ""
24976
24977 #. type: textblock
24978 #: ../fish/guestfish-actions.pod:3238
24979 msgid ""
24980 "This is the same as the L</mount> command, but it allows you to set both the "
24981 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
24982 msgstr ""
24983
24984 #. type: =head2
24985 #: ../fish/guestfish-actions.pod:3242
24986 msgid "mountpoints"
24987 msgstr ""
24988
24989 #. type: verbatim
24990 #: ../fish/guestfish-actions.pod:3244
24991 #, no-wrap
24992 msgid ""
24993 " mountpoints\n"
24994 "\n"
24995 msgstr ""
24996
24997 #. type: textblock
24998 #: ../fish/guestfish-actions.pod:3246
24999 msgid ""
25000 "This call is similar to L</mounts>.  That call returns a list of devices.  "
25001 "This one returns a hash table (map) of device name to directory where the "
25002 "device is mounted."
25003 msgstr ""
25004
25005 #. type: =head2
25006 #: ../fish/guestfish-actions.pod:3250
25007 msgid "mounts"
25008 msgstr ""
25009
25010 #. type: verbatim
25011 #: ../fish/guestfish-actions.pod:3252
25012 #, no-wrap
25013 msgid ""
25014 " mounts\n"
25015 "\n"
25016 msgstr ""
25017
25018 #. type: textblock
25019 #: ../fish/guestfish-actions.pod:3259
25020 msgid "See also: L</mountpoints>"
25021 msgstr ""
25022
25023 #. type: =head2
25024 #: ../fish/guestfish-actions.pod:3261
25025 msgid "mv"
25026 msgstr ""
25027
25028 #. type: verbatim
25029 #: ../fish/guestfish-actions.pod:3263
25030 #, no-wrap
25031 msgid ""
25032 " mv src dest\n"
25033 "\n"
25034 msgstr ""
25035
25036 #. type: =head2
25037 #: ../fish/guestfish-actions.pod:3268
25038 msgid "ntfs-3g-probe"
25039 msgstr ""
25040
25041 #. type: verbatim
25042 #: ../fish/guestfish-actions.pod:3270
25043 #, no-wrap
25044 msgid ""
25045 " ntfs-3g-probe true|false device\n"
25046 "\n"
25047 msgstr ""
25048
25049 #. type: =head2
25050 #: ../fish/guestfish-actions.pod:3284
25051 msgid "ntfsresize"
25052 msgstr ""
25053
25054 #. type: verbatim
25055 #: ../fish/guestfish-actions.pod:3286
25056 #, no-wrap
25057 msgid ""
25058 " ntfsresize device\n"
25059 "\n"
25060 msgstr ""
25061
25062 #. type: =head2
25063 #: ../fish/guestfish-actions.pod:3292
25064 msgid "ntfsresize-size"
25065 msgstr ""
25066
25067 #. type: verbatim
25068 #: ../fish/guestfish-actions.pod:3294
25069 #, no-wrap
25070 msgid ""
25071 " ntfsresize-size device size\n"
25072 "\n"
25073 msgstr ""
25074
25075 #. type: textblock
25076 #: ../fish/guestfish-actions.pod:3296
25077 msgid ""
25078 "This command is the same as L</ntfsresize> except that it allows you to "
25079 "specify the new size (in bytes) explicitly."
25080 msgstr ""
25081
25082 #. type: =head2
25083 #: ../fish/guestfish-actions.pod:3299
25084 msgid "part-add"
25085 msgstr ""
25086
25087 #. type: verbatim
25088 #: ../fish/guestfish-actions.pod:3301
25089 #, no-wrap
25090 msgid ""
25091 " part-add device prlogex startsect endsect\n"
25092 "\n"
25093 msgstr ""
25094
25095 #. type: textblock
25096 #: ../fish/guestfish-actions.pod:3303
25097 msgid ""
25098 "This command adds a partition to C<device>.  If there is no partition table "
25099 "on the device, call L</part-init> first."
25100 msgstr ""
25101
25102 #. type: textblock
25103 #: ../fish/guestfish-actions.pod:3315
25104 msgid ""
25105 "Creating a partition which covers the whole disk is not so easy.  Use "
25106 "L</part-disk> to do that."
25107 msgstr ""
25108
25109 #. type: =head2
25110 #: ../fish/guestfish-actions.pod:3318
25111 msgid "part-del"
25112 msgstr ""
25113
25114 #. type: verbatim
25115 #: ../fish/guestfish-actions.pod:3320
25116 #, no-wrap
25117 msgid ""
25118 " part-del device partnum\n"
25119 "\n"
25120 msgstr ""
25121
25122 #. type: =head2
25123 #: ../fish/guestfish-actions.pod:3328
25124 msgid "part-disk"
25125 msgstr ""
25126
25127 #. type: verbatim
25128 #: ../fish/guestfish-actions.pod:3330
25129 #, no-wrap
25130 msgid ""
25131 " part-disk device parttype\n"
25132 "\n"
25133 msgstr ""
25134
25135 #. type: textblock
25136 #: ../fish/guestfish-actions.pod:3332
25137 msgid ""
25138 "This command is simply a combination of L</part-init> followed by "
25139 "L</part-add> to create a single primary partition covering the whole disk."
25140 msgstr ""
25141
25142 #. type: textblock
25143 #: ../fish/guestfish-actions.pod:3336
25144 msgid ""
25145 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
25146 "possible values are described in L</part-init>."
25147 msgstr ""
25148
25149 #. type: =head2
25150 #: ../fish/guestfish-actions.pod:3342
25151 msgid "part-get-bootable"
25152 msgstr ""
25153
25154 #. type: verbatim
25155 #: ../fish/guestfish-actions.pod:3344
25156 #, no-wrap
25157 msgid ""
25158 " part-get-bootable device partnum\n"
25159 "\n"
25160 msgstr ""
25161
25162 #. type: textblock
25163 #: ../fish/guestfish-actions.pod:3349
25164 msgid "See also L</part-set-bootable>."
25165 msgstr ""
25166
25167 #. type: =head2
25168 #: ../fish/guestfish-actions.pod:3351
25169 msgid "part-get-mbr-id"
25170 msgstr ""
25171
25172 #. type: verbatim
25173 #: ../fish/guestfish-actions.pod:3353
25174 #, no-wrap
25175 msgid ""
25176 " part-get-mbr-id device partnum\n"
25177 "\n"
25178 msgstr ""
25179
25180 #. type: textblock
25181 #: ../fish/guestfish-actions.pod:3358 ../fish/guestfish-actions.pod:3496
25182 msgid ""
25183 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
25184 "undefined results for other partition table types (see "
25185 "L</part-get-parttype>)."
25186 msgstr ""
25187
25188 #. type: =head2
25189 #: ../fish/guestfish-actions.pod:3362
25190 msgid "part-get-parttype"
25191 msgstr ""
25192
25193 #. type: verbatim
25194 #: ../fish/guestfish-actions.pod:3364
25195 #, no-wrap
25196 msgid ""
25197 " part-get-parttype device\n"
25198 "\n"
25199 msgstr ""
25200
25201 #. type: textblock
25202 #: ../fish/guestfish-actions.pod:3369
25203 msgid ""
25204 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
25205 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
25206 "possible, although unusual.  See L</part-init> for a full list."
25207 msgstr ""
25208
25209 #. type: =head2
25210 #: ../fish/guestfish-actions.pod:3374
25211 msgid "part-init"
25212 msgstr ""
25213
25214 #. type: verbatim
25215 #: ../fish/guestfish-actions.pod:3376
25216 #, no-wrap
25217 msgid ""
25218 " part-init device parttype\n"
25219 "\n"
25220 msgstr ""
25221
25222 #. type: textblock
25223 #: ../fish/guestfish-actions.pod:3382
25224 msgid ""
25225 "Initially there are no partitions.  Following this, you should call "
25226 "L</part-add> for each partition required."
25227 msgstr ""
25228
25229 #. type: =head2
25230 #: ../fish/guestfish-actions.pod:3445
25231 msgid "part-list"
25232 msgstr ""
25233
25234 #. type: verbatim
25235 #: ../fish/guestfish-actions.pod:3447
25236 #, no-wrap
25237 msgid ""
25238 " part-list device\n"
25239 "\n"
25240 msgstr ""
25241
25242 #. type: textblock
25243 #: ../fish/guestfish-actions.pod:3462
25244 msgid ""
25245 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
25246 "the device's sector size, see L</blockdev-getss>."
25247 msgstr ""
25248
25249 #. type: =head2
25250 #: ../fish/guestfish-actions.pod:3475
25251 msgid "part-set-bootable"
25252 msgstr ""
25253
25254 #. type: verbatim
25255 #: ../fish/guestfish-actions.pod:3477
25256 #, no-wrap
25257 msgid ""
25258 " part-set-bootable device partnum true|false\n"
25259 "\n"
25260 msgstr ""
25261
25262 #. type: =head2
25263 #: ../fish/guestfish-actions.pod:3486
25264 msgid "part-set-mbr-id"
25265 msgstr ""
25266
25267 #. type: verbatim
25268 #: ../fish/guestfish-actions.pod:3488
25269 #, no-wrap
25270 msgid ""
25271 " part-set-mbr-id device partnum idbyte\n"
25272 "\n"
25273 msgstr ""
25274
25275 #. type: =head2
25276 #: ../fish/guestfish-actions.pod:3500
25277 msgid "part-set-name"
25278 msgstr ""
25279
25280 #. type: verbatim
25281 #: ../fish/guestfish-actions.pod:3502
25282 #, no-wrap
25283 msgid ""
25284 " part-set-name device partnum name\n"
25285 "\n"
25286 msgstr ""
25287
25288 #. type: =head2
25289 #: ../fish/guestfish-actions.pod:3510
25290 msgid "part-to-dev"
25291 msgstr ""
25292
25293 #. type: verbatim
25294 #: ../fish/guestfish-actions.pod:3512
25295 #, no-wrap
25296 msgid ""
25297 " part-to-dev partition\n"
25298 "\n"
25299 msgstr ""
25300
25301 #. type: textblock
25302 #: ../fish/guestfish-actions.pod:3518
25303 msgid ""
25304 "The named partition must exist, for example as a string returned from "
25305 "L</list-partitions>."
25306 msgstr ""
25307
25308 #. type: =head2
25309 #: ../fish/guestfish-actions.pod:3521
25310 msgid "ping-daemon"
25311 msgstr ""
25312
25313 #. type: verbatim
25314 #: ../fish/guestfish-actions.pod:3523
25315 #, no-wrap
25316 msgid ""
25317 " ping-daemon\n"
25318 "\n"
25319 msgstr ""
25320
25321 #. type: =head2
25322 #: ../fish/guestfish-actions.pod:3530
25323 msgid "pread"
25324 msgstr ""
25325
25326 #. type: verbatim
25327 #: ../fish/guestfish-actions.pod:3532
25328 #, no-wrap
25329 msgid ""
25330 " pread path count offset\n"
25331 "\n"
25332 msgstr ""
25333
25334 #. type: textblock
25335 #: ../fish/guestfish-actions.pod:3540
25336 msgid "See also L</pwrite>, L</pread-device>."
25337 msgstr ""
25338
25339 #. type: =head2
25340 #: ../fish/guestfish-actions.pod:3545
25341 msgid "pread-device"
25342 msgstr ""
25343
25344 #. type: verbatim
25345 #: ../fish/guestfish-actions.pod:3547
25346 #, no-wrap
25347 msgid ""
25348 " pread-device device count offset\n"
25349 "\n"
25350 msgstr ""
25351
25352 #. type: textblock
25353 #: ../fish/guestfish-actions.pod:3555
25354 msgid "See also L</pread>."
25355 msgstr ""
25356
25357 #. type: =head2
25358 #: ../fish/guestfish-actions.pod:3560
25359 msgid "pvcreate"
25360 msgstr ""
25361
25362 #. type: verbatim
25363 #: ../fish/guestfish-actions.pod:3562
25364 #, no-wrap
25365 msgid ""
25366 " pvcreate device\n"
25367 "\n"
25368 msgstr ""
25369
25370 #. type: =head2
25371 #: ../fish/guestfish-actions.pod:3568
25372 msgid "pvremove"
25373 msgstr ""
25374
25375 #. type: verbatim
25376 #: ../fish/guestfish-actions.pod:3570
25377 #, no-wrap
25378 msgid ""
25379 " pvremove device\n"
25380 "\n"
25381 msgstr ""
25382
25383 #. type: =head2
25384 #: ../fish/guestfish-actions.pod:3579
25385 msgid "pvresize"
25386 msgstr ""
25387
25388 #. type: verbatim
25389 #: ../fish/guestfish-actions.pod:3581
25390 #, no-wrap
25391 msgid ""
25392 " pvresize device\n"
25393 "\n"
25394 msgstr ""
25395
25396 #. type: =head2
25397 #: ../fish/guestfish-actions.pod:3586
25398 msgid "pvresize-size"
25399 msgstr ""
25400
25401 #. type: verbatim
25402 #: ../fish/guestfish-actions.pod:3588
25403 #, no-wrap
25404 msgid ""
25405 " pvresize-size device size\n"
25406 "\n"
25407 msgstr ""
25408
25409 #. type: textblock
25410 #: ../fish/guestfish-actions.pod:3590
25411 msgid ""
25412 "This command is the same as L</pvresize> except that it allows you to "
25413 "specify the new size (in bytes) explicitly."
25414 msgstr ""
25415
25416 #. type: =head2
25417 #: ../fish/guestfish-actions.pod:3593
25418 msgid "pvs"
25419 msgstr ""
25420
25421 #. type: verbatim
25422 #: ../fish/guestfish-actions.pod:3595
25423 #, no-wrap
25424 msgid ""
25425 " pvs\n"
25426 "\n"
25427 msgstr ""
25428
25429 #. type: textblock
25430 #: ../fish/guestfish-actions.pod:3603
25431 msgid "See also L</pvs-full>."
25432 msgstr ""
25433
25434 #. type: =head2
25435 #: ../fish/guestfish-actions.pod:3605
25436 msgid "pvs-full"
25437 msgstr ""
25438
25439 #. type: verbatim
25440 #: ../fish/guestfish-actions.pod:3607
25441 #, no-wrap
25442 msgid ""
25443 " pvs-full\n"
25444 "\n"
25445 msgstr ""
25446
25447 #. type: =head2
25448 #: ../fish/guestfish-actions.pod:3612
25449 msgid "pvuuid"
25450 msgstr ""
25451
25452 #. type: verbatim
25453 #: ../fish/guestfish-actions.pod:3614
25454 #, no-wrap
25455 msgid ""
25456 " pvuuid device\n"
25457 "\n"
25458 msgstr ""
25459
25460 #. type: =head2
25461 #: ../fish/guestfish-actions.pod:3618
25462 msgid "pwrite"
25463 msgstr ""
25464
25465 #. type: verbatim
25466 #: ../fish/guestfish-actions.pod:3620
25467 #, no-wrap
25468 msgid ""
25469 " pwrite path content offset\n"
25470 "\n"
25471 msgstr ""
25472
25473 #. type: textblock
25474 #: ../fish/guestfish-actions.pod:3631
25475 msgid "See also L</pread>, L</pwrite-device>."
25476 msgstr ""
25477
25478 #. type: =head2
25479 #: ../fish/guestfish-actions.pod:3636
25480 msgid "pwrite-device"
25481 msgstr ""
25482
25483 #. type: verbatim
25484 #: ../fish/guestfish-actions.pod:3638
25485 #, no-wrap
25486 msgid ""
25487 " pwrite-device device content offset\n"
25488 "\n"
25489 msgstr ""
25490
25491 #. type: textblock
25492 #: ../fish/guestfish-actions.pod:3648
25493 msgid "See also L</pwrite>."
25494 msgstr ""
25495
25496 #. type: =head2
25497 #: ../fish/guestfish-actions.pod:3653
25498 msgid "read-file"
25499 msgstr ""
25500
25501 #. type: verbatim
25502 #: ../fish/guestfish-actions.pod:3655
25503 #, no-wrap
25504 msgid ""
25505 " read-file path\n"
25506 "\n"
25507 msgstr ""
25508
25509 #. type: textblock
25510 #: ../fish/guestfish-actions.pod:3660
25511 msgid ""
25512 "Unlike L</cat>, this function can correctly handle files that contain "
25513 "embedded ASCII NUL characters.  However unlike L</download>, this function "
25514 "is limited in the total size of file that can be handled."
25515 msgstr ""
25516
25517 #. type: =head2
25518 #: ../fish/guestfish-actions.pod:3668
25519 msgid "read-lines"
25520 msgstr ""
25521
25522 #. type: verbatim
25523 #: ../fish/guestfish-actions.pod:3670
25524 #, no-wrap
25525 msgid ""
25526 " read-lines path\n"
25527 "\n"
25528 msgstr ""
25529
25530 #. type: textblock
25531 #: ../fish/guestfish-actions.pod:3677
25532 msgid ""
25533 "Note that this function cannot correctly handle binary files (specifically, "
25534 "files containing C<\\0> character which is treated as end of line).  For "
25535 "those you need to use the L</read-file> function which has a more complex "
25536 "interface."
25537 msgstr ""
25538
25539 #. type: =head2
25540 #: ../fish/guestfish-actions.pod:3682
25541 msgid "readdir"
25542 msgstr ""
25543
25544 #. type: verbatim
25545 #: ../fish/guestfish-actions.pod:3684
25546 #, no-wrap
25547 msgid ""
25548 " readdir dir\n"
25549 "\n"
25550 msgstr ""
25551
25552 #. type: textblock
25553 #: ../fish/guestfish-actions.pod:3736
25554 msgid ""
25555 "This function is primarily intended for use by programs.  To get a simple "
25556 "list of names, use L</ls>.  To get a printable directory for human "
25557 "consumption, use L</ll>."
25558 msgstr ""
25559
25560 #. type: =head2
25561 #: ../fish/guestfish-actions.pod:3740
25562 msgid "readlink"
25563 msgstr ""
25564
25565 #. type: verbatim
25566 #: ../fish/guestfish-actions.pod:3742
25567 #, no-wrap
25568 msgid ""
25569 " readlink path\n"
25570 "\n"
25571 msgstr ""
25572
25573 #. type: =head2
25574 #: ../fish/guestfish-actions.pod:3746
25575 msgid "readlinklist"
25576 msgstr ""
25577
25578 #. type: verbatim
25579 #: ../fish/guestfish-actions.pod:3748
25580 #, no-wrap
25581 msgid ""
25582 " readlinklist path 'names ...'\n"
25583 "\n"
25584 msgstr ""
25585
25586 #. type: =head2
25587 #: ../fish/guestfish-actions.pod:3772
25588 msgid "realpath"
25589 msgstr ""
25590
25591 #. type: verbatim
25592 #: ../fish/guestfish-actions.pod:3774
25593 #, no-wrap
25594 msgid ""
25595 " realpath path\n"
25596 "\n"
25597 msgstr ""
25598
25599 #. type: =head2
25600 #: ../fish/guestfish-actions.pod:3779
25601 msgid "removexattr"
25602 msgstr ""
25603
25604 #. type: verbatim
25605 #: ../fish/guestfish-actions.pod:3781
25606 #, no-wrap
25607 msgid ""
25608 " removexattr xattr path\n"
25609 "\n"
25610 msgstr ""
25611
25612 #. type: textblock
25613 #: ../fish/guestfish-actions.pod:3786
25614 msgid "See also: L</lremovexattr>, L<attr(5)>."
25615 msgstr ""
25616
25617 #. type: =head2
25618 #: ../fish/guestfish-actions.pod:3788
25619 msgid "resize2fs"
25620 msgstr ""
25621
25622 #. type: verbatim
25623 #: ../fish/guestfish-actions.pod:3790
25624 #, no-wrap
25625 msgid ""
25626 " resize2fs device\n"
25627 "\n"
25628 msgstr ""
25629
25630 #. type: textblock
25631 #: ../fish/guestfish-actions.pod:3795
25632 msgid ""
25633 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
25634 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
25635 "gives an error about this and sometimes not.  In any case, it is always safe "
25636 "to call L</e2fsck-f> before calling this function."
25637 msgstr ""
25638
25639 #. type: =head2
25640 #: ../fish/guestfish-actions.pod:3801
25641 msgid "resize2fs-M"
25642 msgstr ""
25643
25644 #. type: verbatim
25645 #: ../fish/guestfish-actions.pod:3803
25646 #, no-wrap
25647 msgid ""
25648 " resize2fs-M device\n"
25649 "\n"
25650 msgstr ""
25651
25652 #. type: textblock
25653 #: ../fish/guestfish-actions.pod:3805
25654 msgid ""
25655 "This command is the same as L</resize2fs>, but the filesystem is resized to "
25656 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
25657 "command."
25658 msgstr ""
25659
25660 #. type: textblock
25661 #: ../fish/guestfish-actions.pod:3809
25662 msgid ""
25663 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
25664 "and read the C<Block size> and C<Block count> values.  These two numbers, "
25665 "multiplied together, give the resulting size of the minimal filesystem in "
25666 "bytes."
25667 msgstr ""
25668
25669 #. type: =head2
25670 #: ../fish/guestfish-actions.pod:3814
25671 msgid "resize2fs-size"
25672 msgstr ""
25673
25674 #. type: verbatim
25675 #: ../fish/guestfish-actions.pod:3816
25676 #, no-wrap
25677 msgid ""
25678 " resize2fs-size device size\n"
25679 "\n"
25680 msgstr ""
25681
25682 #. type: textblock
25683 #: ../fish/guestfish-actions.pod:3818
25684 msgid ""
25685 "This command is the same as L</resize2fs> except that it allows you to "
25686 "specify the new size (in bytes) explicitly."
25687 msgstr ""
25688
25689 #. type: =head2
25690 #: ../fish/guestfish-actions.pod:3821
25691 msgid "rm"
25692 msgstr ""
25693
25694 #. type: verbatim
25695 #: ../fish/guestfish-actions.pod:3823
25696 #, no-wrap
25697 msgid ""
25698 " rm path\n"
25699 "\n"
25700 msgstr ""
25701
25702 #. type: =head2
25703 #: ../fish/guestfish-actions.pod:3827
25704 msgid "rm-rf"
25705 msgstr ""
25706
25707 #. type: verbatim
25708 #: ../fish/guestfish-actions.pod:3829
25709 #, no-wrap
25710 msgid ""
25711 " rm-rf path\n"
25712 "\n"
25713 msgstr ""
25714
25715 #. type: =head2
25716 #: ../fish/guestfish-actions.pod:3835
25717 msgid "rmdir"
25718 msgstr ""
25719
25720 #. type: verbatim
25721 #: ../fish/guestfish-actions.pod:3837
25722 #, no-wrap
25723 msgid ""
25724 " rmdir path\n"
25725 "\n"
25726 msgstr ""
25727
25728 #. type: =head2
25729 #: ../fish/guestfish-actions.pod:3841
25730 msgid "rmmountpoint"
25731 msgstr ""
25732
25733 #. type: verbatim
25734 #: ../fish/guestfish-actions.pod:3843
25735 #, no-wrap
25736 msgid ""
25737 " rmmountpoint exemptpath\n"
25738 "\n"
25739 msgstr ""
25740
25741 #. type: textblock
25742 #: ../fish/guestfish-actions.pod:3845
25743 msgid ""
25744 "This calls removes a mountpoint that was previously created with "
25745 "L</mkmountpoint>.  See L</mkmountpoint> for full details."
25746 msgstr ""
25747
25748 #. type: =head2
25749 #: ../fish/guestfish-actions.pod:3849
25750 msgid "scrub-device"
25751 msgstr ""
25752
25753 #. type: verbatim
25754 #: ../fish/guestfish-actions.pod:3851
25755 #, no-wrap
25756 msgid ""
25757 " scrub-device device\n"
25758 "\n"
25759 msgstr ""
25760
25761 #. type: =head2
25762 #: ../fish/guestfish-actions.pod:3862
25763 msgid "scrub-file"
25764 msgstr ""
25765
25766 #. type: verbatim
25767 #: ../fish/guestfish-actions.pod:3864
25768 #, no-wrap
25769 msgid ""
25770 " scrub-file file\n"
25771 "\n"
25772 msgstr ""
25773
25774 #. type: =head2
25775 #: ../fish/guestfish-actions.pod:3874
25776 msgid "scrub-freespace"
25777 msgstr ""
25778
25779 #. type: verbatim
25780 #: ../fish/guestfish-actions.pod:3876
25781 #, no-wrap
25782 msgid ""
25783 " scrub-freespace dir\n"
25784 "\n"
25785 msgstr ""
25786
25787 #. type: textblock
25788 #: ../fish/guestfish-actions.pod:3878
25789 msgid ""
25790 "This command creates the directory C<dir> and then fills it with files until "
25791 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
25792 "deletes them.  The intention is to scrub any free space on the partition "
25793 "containing C<dir>."
25794 msgstr ""
25795
25796 #. type: =head2
25797 #: ../fish/guestfish-actions.pod:3887
25798 msgid "set-append"
25799 msgstr ""
25800
25801 #. type: =head2
25802 #: ../fish/guestfish-actions.pod:3889
25803 msgid "append"
25804 msgstr ""
25805
25806 #. type: verbatim
25807 #: ../fish/guestfish-actions.pod:3891
25808 #, no-wrap
25809 msgid ""
25810 " set-append append\n"
25811 "\n"
25812 msgstr ""
25813
25814 #. type: =head2
25815 #: ../fish/guestfish-actions.pod:3902
25816 msgid "set-attach-method"
25817 msgstr ""
25818
25819 #. type: =head2
25820 #: ../fish/guestfish-actions.pod:3904
25821 msgid "attach-method"
25822 msgstr ""
25823
25824 #. type: verbatim
25825 #: ../fish/guestfish-actions.pod:3906
25826 #, no-wrap
25827 msgid ""
25828 " set-attach-method attachmethod\n"
25829 "\n"
25830 msgstr ""
25831
25832 #. type: =head2
25833 #: ../fish/guestfish-actions.pod:3928
25834 msgid "set-autosync"
25835 msgstr ""
25836
25837 #. type: =head2
25838 #: ../fish/guestfish-actions.pod:3930
25839 msgid "autosync"
25840 msgstr ""
25841
25842 #. type: verbatim
25843 #: ../fish/guestfish-actions.pod:3932
25844 #, no-wrap
25845 msgid ""
25846 " set-autosync true|false\n"
25847 "\n"
25848 msgstr ""
25849
25850 #. type: =head2
25851 #: ../fish/guestfish-actions.pod:3942
25852 msgid "set-direct"
25853 msgstr ""
25854
25855 #. type: =head2
25856 #: ../fish/guestfish-actions.pod:3944
25857 msgid "direct"
25858 msgstr ""
25859
25860 #. type: verbatim
25861 #: ../fish/guestfish-actions.pod:3946
25862 #, no-wrap
25863 msgid ""
25864 " set-direct true|false\n"
25865 "\n"
25866 msgstr ""
25867
25868 #. type: textblock
25869 #: ../fish/guestfish-actions.pod:3952
25870 msgid ""
25871 "One consequence of this is that log messages aren't caught by the library "
25872 "and handled by L</set-log-message-callback>, but go straight to stdout."
25873 msgstr ""
25874
25875 #. type: =head2
25876 #: ../fish/guestfish-actions.pod:3961
25877 msgid "set-e2label"
25878 msgstr ""
25879
25880 #. type: verbatim
25881 #: ../fish/guestfish-actions.pod:3963
25882 #, no-wrap
25883 msgid ""
25884 " set-e2label device label\n"
25885 "\n"
25886 msgstr ""
25887
25888 #. type: textblock
25889 #: ../fish/guestfish-actions.pod:3969
25890 msgid ""
25891 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
25892 "label on a filesystem."
25893 msgstr ""
25894
25895 #. type: =head2
25896 #: ../fish/guestfish-actions.pod:3972
25897 msgid "set-e2uuid"
25898 msgstr ""
25899
25900 #. type: verbatim
25901 #: ../fish/guestfish-actions.pod:3974
25902 #, no-wrap
25903 msgid ""
25904 " set-e2uuid device uuid\n"
25905 "\n"
25906 msgstr ""
25907
25908 #. type: textblock
25909 #: ../fish/guestfish-actions.pod:3981
25910 msgid ""
25911 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
25912 "UUID of a filesystem."
25913 msgstr ""
25914
25915 #. type: =head2
25916 #: ../fish/guestfish-actions.pod:3984
25917 msgid "set-memsize"
25918 msgstr ""
25919
25920 #. type: =head2
25921 #: ../fish/guestfish-actions.pod:3986
25922 msgid "memsize"
25923 msgstr ""
25924
25925 #. type: verbatim
25926 #: ../fish/guestfish-actions.pod:3988
25927 #, no-wrap
25928 msgid ""
25929 " set-memsize memsize\n"
25930 "\n"
25931 msgstr ""
25932
25933 #. type: textblock
25934 #: ../fish/guestfish-actions.pod:3990
25935 msgid ""
25936 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
25937 "This only has any effect if called before L</launch>."
25938 msgstr ""
25939
25940 #. type: =head2
25941 #: ../fish/guestfish-actions.pod:4001
25942 msgid "set-network"
25943 msgstr ""
25944
25945 #. type: =head2
25946 #: ../fish/guestfish-actions.pod:4003
25947 msgid "network"
25948 msgstr ""
25949
25950 #. type: verbatim
25951 #: ../fish/guestfish-actions.pod:4005
25952 #, no-wrap
25953 msgid ""
25954 " set-network true|false\n"
25955 "\n"
25956 msgstr ""
25957
25958 #. type: textblock
25959 #: ../fish/guestfish-actions.pod:4013
25960 msgid "You must call this before calling L</launch>, otherwise it has no effect."
25961 msgstr ""
25962
25963 #. type: =head2
25964 #: ../fish/guestfish-actions.pod:4016
25965 msgid "set-path"
25966 msgstr ""
25967
25968 #. type: =head2
25969 #: ../fish/guestfish-actions.pod:4018
25970 msgid "path"
25971 msgstr ""
25972
25973 #. type: verbatim
25974 #: ../fish/guestfish-actions.pod:4020
25975 #, no-wrap
25976 msgid ""
25977 " set-path searchpath\n"
25978 "\n"
25979 msgstr ""
25980
25981 #. type: =head2
25982 #: ../fish/guestfish-actions.pod:4029
25983 msgid "set-qemu"
25984 msgstr ""
25985
25986 #. type: =head2
25987 #: ../fish/guestfish-actions.pod:4031
25988 msgid "qemu"
25989 msgstr ""
25990
25991 #. type: verbatim
25992 #: ../fish/guestfish-actions.pod:4033
25993 #, no-wrap
25994 msgid ""
25995 " set-qemu qemu\n"
25996 "\n"
25997 msgstr ""
25998
25999 #. type: =head2
26000 #: ../fish/guestfish-actions.pod:4053
26001 msgid "set-recovery-proc"
26002 msgstr ""
26003
26004 #. type: =head2
26005 #: ../fish/guestfish-actions.pod:4055
26006 msgid "recovery-proc"
26007 msgstr ""
26008
26009 #. type: verbatim
26010 #: ../fish/guestfish-actions.pod:4057
26011 #, no-wrap
26012 msgid ""
26013 " set-recovery-proc true|false\n"
26014 "\n"
26015 msgstr ""
26016
26017 #. type: textblock
26018 #: ../fish/guestfish-actions.pod:4059
26019 msgid ""
26020 "If this is called with the parameter C<false> then L</launch> does not "
26021 "create a recovery process.  The purpose of the recovery process is to stop "
26022 "runaway qemu processes in the case where the main program aborts abruptly."
26023 msgstr ""
26024
26025 #. type: textblock
26026 #: ../fish/guestfish-actions.pod:4064
26027 msgid ""
26028 "This only has any effect if called before L</launch>, and the default is "
26029 "true."
26030 msgstr ""
26031
26032 #. type: =head2
26033 #: ../fish/guestfish-actions.pod:4073
26034 msgid "set-selinux"
26035 msgstr ""
26036
26037 #. type: =head2
26038 #: ../fish/guestfish-actions.pod:4075
26039 msgid "selinux"
26040 msgstr ""
26041
26042 #. type: verbatim
26043 #: ../fish/guestfish-actions.pod:4077
26044 #, no-wrap
26045 msgid ""
26046 " set-selinux true|false\n"
26047 "\n"
26048 msgstr ""
26049
26050 #. type: =head2
26051 #: ../fish/guestfish-actions.pod:4088
26052 msgid "set-trace"
26053 msgstr ""
26054
26055 #. type: =head2
26056 #: ../fish/guestfish-actions.pod:4090
26057 msgid "trace"
26058 msgstr ""
26059
26060 #. type: verbatim
26061 #: ../fish/guestfish-actions.pod:4092
26062 #, no-wrap
26063 msgid ""
26064 " set-trace true|false\n"
26065 "\n"
26066 msgstr ""
26067
26068 #. type: textblock
26069 #: ../fish/guestfish-actions.pod:4104
26070 msgid ""
26071 "Trace messages are normally sent to C<stderr>, unless you register a "
26072 "callback to send them somewhere else (see L</set-event-callback>)."
26073 msgstr ""
26074
26075 #. type: =head2
26076 #: ../fish/guestfish-actions.pod:4108
26077 msgid "set-verbose"
26078 msgstr ""
26079
26080 #. type: =head2
26081 #: ../fish/guestfish-actions.pod:4110
26082 msgid "verbose"
26083 msgstr ""
26084
26085 #. type: verbatim
26086 #: ../fish/guestfish-actions.pod:4112
26087 #, no-wrap
26088 msgid ""
26089 " set-verbose true|false\n"
26090 "\n"
26091 msgstr ""
26092
26093 #. type: textblock
26094 #: ../fish/guestfish-actions.pod:4119
26095 msgid ""
26096 "Verbose messages are normally sent to C<stderr>, unless you register a "
26097 "callback to send them somewhere else (see L</set-event-callback>)."
26098 msgstr ""
26099
26100 #. type: =head2
26101 #: ../fish/guestfish-actions.pod:4123
26102 msgid "setcon"
26103 msgstr ""
26104
26105 #. type: verbatim
26106 #: ../fish/guestfish-actions.pod:4125
26107 #, no-wrap
26108 msgid ""
26109 " setcon context\n"
26110 "\n"
26111 msgstr ""
26112
26113 #. type: =head2
26114 #: ../fish/guestfish-actions.pod:4132
26115 msgid "setxattr"
26116 msgstr ""
26117
26118 #. type: verbatim
26119 #: ../fish/guestfish-actions.pod:4134
26120 #, no-wrap
26121 msgid ""
26122 " setxattr xattr val vallen path\n"
26123 "\n"
26124 msgstr ""
26125
26126 #. type: textblock
26127 #: ../fish/guestfish-actions.pod:4140
26128 msgid "See also: L</lsetxattr>, L<attr(5)>."
26129 msgstr ""
26130
26131 #. type: =head2
26132 #: ../fish/guestfish-actions.pod:4142
26133 msgid "sfdisk"
26134 msgstr ""
26135
26136 #. type: verbatim
26137 #: ../fish/guestfish-actions.pod:4144
26138 #, no-wrap
26139 msgid ""
26140 " sfdisk device cyls heads sectors 'lines ...'\n"
26141 "\n"
26142 msgstr ""
26143
26144 #. type: textblock
26145 #: ../fish/guestfish-actions.pod:4166
26146 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
26147 msgstr ""
26148
26149 #. type: =head2
26150 #: ../fish/guestfish-actions.pod:4172
26151 msgid "sfdiskM"
26152 msgstr ""
26153
26154 #. type: verbatim
26155 #: ../fish/guestfish-actions.pod:4174
26156 #, no-wrap
26157 msgid ""
26158 " sfdiskM device 'lines ...'\n"
26159 "\n"
26160 msgstr ""
26161
26162 #. type: textblock
26163 #: ../fish/guestfish-actions.pod:4176
26164 msgid ""
26165 "This is a simplified interface to the L</sfdisk> command, where partition "
26166 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
26167 "you don't need to specify the cyls, heads and sectors parameters which were "
26168 "rarely if ever used anyway."
26169 msgstr ""
26170
26171 #. type: textblock
26172 #: ../fish/guestfish-actions.pod:4182
26173 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
26174 msgstr ""
26175
26176 #. type: =head2
26177 #: ../fish/guestfish-actions.pod:4188
26178 msgid "sfdisk-N"
26179 msgstr ""
26180
26181 #. type: verbatim
26182 #: ../fish/guestfish-actions.pod:4190
26183 #, no-wrap
26184 msgid ""
26185 " sfdisk-N device partnum cyls heads sectors line\n"
26186 "\n"
26187 msgstr ""
26188
26189 #. type: textblock
26190 #: ../fish/guestfish-actions.pod:4195
26191 msgid ""
26192 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
26193 "cyls/heads/sectors parameters."
26194 msgstr ""
26195
26196 #. type: textblock
26197 #: ../fish/guestfish-actions.pod:4198
26198 msgid "See also: L</part-add>"
26199 msgstr ""
26200
26201 #. type: =head2
26202 #: ../fish/guestfish-actions.pod:4203
26203 msgid "sfdisk-disk-geometry"
26204 msgstr ""
26205
26206 #. type: verbatim
26207 #: ../fish/guestfish-actions.pod:4205
26208 #, no-wrap
26209 msgid ""
26210 " sfdisk-disk-geometry device\n"
26211 "\n"
26212 msgstr ""
26213
26214 #. type: textblock
26215 #: ../fish/guestfish-actions.pod:4207
26216 msgid ""
26217 "This displays the disk geometry of C<device> read from the partition table.  "
26218 "Especially in the case where the underlying block device has been resized, "
26219 "this can be different from the kernel's idea of the geometry (see "
26220 "L</sfdisk-kernel-geometry>)."
26221 msgstr ""
26222
26223 #. type: =head2
26224 #: ../fish/guestfish-actions.pod:4215
26225 msgid "sfdisk-kernel-geometry"
26226 msgstr ""
26227
26228 #. type: verbatim
26229 #: ../fish/guestfish-actions.pod:4217
26230 #, no-wrap
26231 msgid ""
26232 " sfdisk-kernel-geometry device\n"
26233 "\n"
26234 msgstr ""
26235
26236 #. type: =head2
26237 #: ../fish/guestfish-actions.pod:4224
26238 msgid "sfdisk-l"
26239 msgstr ""
26240
26241 #. type: verbatim
26242 #: ../fish/guestfish-actions.pod:4226
26243 #, no-wrap
26244 msgid ""
26245 " sfdisk-l device\n"
26246 "\n"
26247 msgstr ""
26248
26249 #. type: textblock
26250 #: ../fish/guestfish-actions.pod:4232
26251 msgid "See also: L</part-list>"
26252 msgstr ""
26253
26254 #. type: =head2
26255 #: ../fish/guestfish-actions.pod:4234
26256 msgid "sh"
26257 msgstr ""
26258
26259 #. type: verbatim
26260 #: ../fish/guestfish-actions.pod:4236
26261 #, no-wrap
26262 msgid ""
26263 " sh command\n"
26264 "\n"
26265 msgstr ""
26266
26267 #. type: textblock
26268 #: ../fish/guestfish-actions.pod:4241
26269 msgid "This is like L</command>, but passes the command to:"
26270 msgstr ""
26271
26272 #. type: textblock
26273 #: ../fish/guestfish-actions.pod:4249
26274 msgid "All the provisos about L</command> apply to this call."
26275 msgstr ""
26276
26277 #. type: =head2
26278 #: ../fish/guestfish-actions.pod:4251
26279 msgid "sh-lines"
26280 msgstr ""
26281
26282 #. type: verbatim
26283 #: ../fish/guestfish-actions.pod:4253
26284 #, no-wrap
26285 msgid ""
26286 " sh-lines command\n"
26287 "\n"
26288 msgstr ""
26289
26290 #. type: textblock
26291 #: ../fish/guestfish-actions.pod:4255
26292 msgid "This is the same as L</sh>, but splits the result into a list of lines."
26293 msgstr ""
26294
26295 #. type: textblock
26296 #: ../fish/guestfish-actions.pod:4258
26297 msgid "See also: L</command-lines>"
26298 msgstr ""
26299
26300 #. type: =head2
26301 #: ../fish/guestfish-actions.pod:4260
26302 msgid "sleep"
26303 msgstr ""
26304
26305 #. type: verbatim
26306 #: ../fish/guestfish-actions.pod:4262
26307 #, no-wrap
26308 msgid ""
26309 " sleep secs\n"
26310 "\n"
26311 msgstr ""
26312
26313 #. type: =head2
26314 #: ../fish/guestfish-actions.pod:4266
26315 msgid "stat"
26316 msgstr ""
26317
26318 #. type: verbatim
26319 #: ../fish/guestfish-actions.pod:4268
26320 #, no-wrap
26321 msgid ""
26322 " stat path\n"
26323 "\n"
26324 msgstr ""
26325
26326 #. type: =head2
26327 #: ../fish/guestfish-actions.pod:4274
26328 msgid "statvfs"
26329 msgstr ""
26330
26331 #. type: verbatim
26332 #: ../fish/guestfish-actions.pod:4276
26333 #, no-wrap
26334 msgid ""
26335 " statvfs path\n"
26336 "\n"
26337 msgstr ""
26338
26339 #. type: =head2
26340 #: ../fish/guestfish-actions.pod:4284
26341 msgid "strings"
26342 msgstr ""
26343
26344 #. type: verbatim
26345 #: ../fish/guestfish-actions.pod:4286
26346 #, no-wrap
26347 msgid ""
26348 " strings path\n"
26349 "\n"
26350 msgstr ""
26351
26352 #. type: =head2
26353 #: ../fish/guestfish-actions.pod:4294
26354 msgid "strings-e"
26355 msgstr ""
26356
26357 #. type: verbatim
26358 #: ../fish/guestfish-actions.pod:4296
26359 #, no-wrap
26360 msgid ""
26361 " strings-e encoding path\n"
26362 "\n"
26363 msgstr ""
26364
26365 #. type: textblock
26366 #: ../fish/guestfish-actions.pod:4298
26367 msgid ""
26368 "This is like the L</strings> command, but allows you to specify the encoding "
26369 "of strings that are looked for in the source file C<path>."
26370 msgstr ""
26371
26372 #. type: textblock
26373 #: ../fish/guestfish-actions.pod:4308
26374 msgid ""
26375 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
26376 "ISO-8859-X (this is what L</strings> uses)."
26377 msgstr ""
26378
26379 #. type: =head2
26380 #: ../fish/guestfish-actions.pod:4340
26381 msgid "swapoff-device"
26382 msgstr ""
26383
26384 #. type: verbatim
26385 #: ../fish/guestfish-actions.pod:4342
26386 #, no-wrap
26387 msgid ""
26388 " swapoff-device device\n"
26389 "\n"
26390 msgstr ""
26391
26392 #. type: textblock
26393 #: ../fish/guestfish-actions.pod:4344
26394 msgid ""
26395 "This command disables the libguestfs appliance swap device or partition "
26396 "named C<device>.  See L</swapon-device>."
26397 msgstr ""
26398
26399 #. type: =head2
26400 #: ../fish/guestfish-actions.pod:4348
26401 msgid "swapoff-file"
26402 msgstr ""
26403
26404 #. type: verbatim
26405 #: ../fish/guestfish-actions.pod:4350
26406 #, no-wrap
26407 msgid ""
26408 " swapoff-file file\n"
26409 "\n"
26410 msgstr ""
26411
26412 #. type: =head2
26413 #: ../fish/guestfish-actions.pod:4354
26414 msgid "swapoff-label"
26415 msgstr ""
26416
26417 #. type: verbatim
26418 #: ../fish/guestfish-actions.pod:4356
26419 #, no-wrap
26420 msgid ""
26421 " swapoff-label label\n"
26422 "\n"
26423 msgstr ""
26424
26425 #. type: =head2
26426 #: ../fish/guestfish-actions.pod:4361
26427 msgid "swapoff-uuid"
26428 msgstr ""
26429
26430 #. type: verbatim
26431 #: ../fish/guestfish-actions.pod:4363
26432 #, no-wrap
26433 msgid ""
26434 " swapoff-uuid uuid\n"
26435 "\n"
26436 msgstr ""
26437
26438 #. type: =head2
26439 #: ../fish/guestfish-actions.pod:4368
26440 msgid "swapon-device"
26441 msgstr ""
26442
26443 #. type: verbatim
26444 #: ../fish/guestfish-actions.pod:4370
26445 #, no-wrap
26446 msgid ""
26447 " swapon-device device\n"
26448 "\n"
26449 msgstr ""
26450
26451 #. type: textblock
26452 #: ../fish/guestfish-actions.pod:4372
26453 msgid ""
26454 "This command enables the libguestfs appliance to use the swap device or "
26455 "partition named C<device>.  The increased memory is made available for all "
26456 "commands, for example those run using L</command> or L</sh>."
26457 msgstr ""
26458
26459 #. type: =head2
26460 #: ../fish/guestfish-actions.pod:4384
26461 msgid "swapon-file"
26462 msgstr ""
26463
26464 #. type: verbatim
26465 #: ../fish/guestfish-actions.pod:4386
26466 #, no-wrap
26467 msgid ""
26468 " swapon-file file\n"
26469 "\n"
26470 msgstr ""
26471
26472 #. type: textblock
26473 #: ../fish/guestfish-actions.pod:4388
26474 msgid "This command enables swap to a file.  See L</swapon-device> for other notes."
26475 msgstr ""
26476
26477 #. type: =head2
26478 #: ../fish/guestfish-actions.pod:4391
26479 msgid "swapon-label"
26480 msgstr ""
26481
26482 #. type: verbatim
26483 #: ../fish/guestfish-actions.pod:4393
26484 #, no-wrap
26485 msgid ""
26486 " swapon-label label\n"
26487 "\n"
26488 msgstr ""
26489
26490 #. type: textblock
26491 #: ../fish/guestfish-actions.pod:4395
26492 msgid ""
26493 "This command enables swap to a labeled swap partition.  See "
26494 "L</swapon-device> for other notes."
26495 msgstr ""
26496
26497 #. type: =head2
26498 #: ../fish/guestfish-actions.pod:4398
26499 msgid "swapon-uuid"
26500 msgstr ""
26501
26502 #. type: verbatim
26503 #: ../fish/guestfish-actions.pod:4400
26504 #, no-wrap
26505 msgid ""
26506 " swapon-uuid uuid\n"
26507 "\n"
26508 msgstr ""
26509
26510 #. type: textblock
26511 #: ../fish/guestfish-actions.pod:4402
26512 msgid ""
26513 "This command enables swap to a swap partition with the given UUID.  See "
26514 "L</swapon-device> for other notes."
26515 msgstr ""
26516
26517 #. type: =head2
26518 #: ../fish/guestfish-actions.pod:4405
26519 msgid "sync"
26520 msgstr ""
26521
26522 #. type: verbatim
26523 #: ../fish/guestfish-actions.pod:4407
26524 #, no-wrap
26525 msgid ""
26526 " sync\n"
26527 "\n"
26528 msgstr ""
26529
26530 #. type: =head2
26531 #: ../fish/guestfish-actions.pod:4415
26532 msgid "tail"
26533 msgstr ""
26534
26535 #. type: verbatim
26536 #: ../fish/guestfish-actions.pod:4417
26537 #, no-wrap
26538 msgid ""
26539 " tail path\n"
26540 "\n"
26541 msgstr ""
26542
26543 #. type: =head2
26544 #: ../fish/guestfish-actions.pod:4425
26545 msgid "tail-n"
26546 msgstr ""
26547
26548 #. type: verbatim
26549 #: ../fish/guestfish-actions.pod:4427
26550 #, no-wrap
26551 msgid ""
26552 " tail-n nrlines path\n"
26553 "\n"
26554 msgstr ""
26555
26556 #. type: =head2
26557 #: ../fish/guestfish-actions.pod:4440
26558 msgid "tar-in"
26559 msgstr ""
26560
26561 #. type: verbatim
26562 #: ../fish/guestfish-actions.pod:4442
26563 #, no-wrap
26564 msgid ""
26565 " tar-in (tarfile|-) directory\n"
26566 "\n"
26567 msgstr ""
26568
26569 #. type: textblock
26570 #: ../fish/guestfish-actions.pod:4447
26571 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
26572 msgstr ""
26573
26574 #. type: =head2
26575 #: ../fish/guestfish-actions.pod:4452
26576 msgid "tar-out"
26577 msgstr ""
26578
26579 #. type: verbatim
26580 #: ../fish/guestfish-actions.pod:4454
26581 #, no-wrap
26582 msgid ""
26583 " tar-out directory (tarfile|-)\n"
26584 "\n"
26585 msgstr ""
26586
26587 #. type: textblock
26588 #: ../fish/guestfish-actions.pod:4459
26589 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
26590 msgstr ""
26591
26592 #. type: =head2
26593 #: ../fish/guestfish-actions.pod:4464
26594 msgid "tgz-in"
26595 msgstr ""
26596
26597 #. type: verbatim
26598 #: ../fish/guestfish-actions.pod:4466
26599 #, no-wrap
26600 msgid ""
26601 " tgz-in (tarball|-) directory\n"
26602 "\n"
26603 msgstr ""
26604
26605 #. type: textblock
26606 #: ../fish/guestfish-actions.pod:4471
26607 msgid "To upload an uncompressed tarball, use L</tar-in>."
26608 msgstr ""
26609
26610 #. type: =head2
26611 #: ../fish/guestfish-actions.pod:4475
26612 msgid "tgz-out"
26613 msgstr ""
26614
26615 #. type: verbatim
26616 #: ../fish/guestfish-actions.pod:4477
26617 #, no-wrap
26618 msgid ""
26619 " tgz-out directory (tarball|-)\n"
26620 "\n"
26621 msgstr ""
26622
26623 #. type: textblock
26624 #: ../fish/guestfish-actions.pod:4482
26625 msgid "To download an uncompressed tarball, use L</tar-out>."
26626 msgstr ""
26627
26628 #. type: =head2
26629 #: ../fish/guestfish-actions.pod:4486
26630 msgid "touch"
26631 msgstr ""
26632
26633 #. type: verbatim
26634 #: ../fish/guestfish-actions.pod:4488
26635 #, no-wrap
26636 msgid ""
26637 " touch path\n"
26638 "\n"
26639 msgstr ""
26640
26641 #. type: =head2
26642 #: ../fish/guestfish-actions.pod:4497
26643 msgid "truncate"
26644 msgstr ""
26645
26646 #. type: verbatim
26647 #: ../fish/guestfish-actions.pod:4499
26648 #, no-wrap
26649 msgid ""
26650 " truncate path\n"
26651 "\n"
26652 msgstr ""
26653
26654 #. type: =head2
26655 #: ../fish/guestfish-actions.pod:4504
26656 msgid "truncate-size"
26657 msgstr ""
26658
26659 #. type: verbatim
26660 #: ../fish/guestfish-actions.pod:4506
26661 #, no-wrap
26662 msgid ""
26663 " truncate-size path size\n"
26664 "\n"
26665 msgstr ""
26666
26667 #. type: textblock
26668 #: ../fish/guestfish-actions.pod:4511
26669 msgid ""
26670 "If the current file size is less than C<size> then the file is extended to "
26671 "the required size with zero bytes.  This creates a sparse file (ie. disk "
26672 "blocks are not allocated for the file until you write to it).  To create a "
26673 "non-sparse file of zeroes, use L</fallocate64> instead."
26674 msgstr ""
26675
26676 #. type: =head2
26677 #: ../fish/guestfish-actions.pod:4517
26678 msgid "tune2fs-l"
26679 msgstr ""
26680
26681 #. type: verbatim
26682 #: ../fish/guestfish-actions.pod:4519
26683 #, no-wrap
26684 msgid ""
26685 " tune2fs-l device\n"
26686 "\n"
26687 msgstr ""
26688
26689 #. type: =head2
26690 #: ../fish/guestfish-actions.pod:4529
26691 msgid "txz-in"
26692 msgstr ""
26693
26694 #. type: verbatim
26695 #: ../fish/guestfish-actions.pod:4531
26696 #, no-wrap
26697 msgid ""
26698 " txz-in (tarball|-) directory\n"
26699 "\n"
26700 msgstr ""
26701
26702 #. type: =head2
26703 #: ../fish/guestfish-actions.pod:4538
26704 msgid "txz-out"
26705 msgstr ""
26706
26707 #. type: verbatim
26708 #: ../fish/guestfish-actions.pod:4540
26709 #, no-wrap
26710 msgid ""
26711 " txz-out directory (tarball|-)\n"
26712 "\n"
26713 msgstr ""
26714
26715 #. type: =head2
26716 #: ../fish/guestfish-actions.pod:4547
26717 msgid "umask"
26718 msgstr ""
26719
26720 #. type: verbatim
26721 #: ../fish/guestfish-actions.pod:4549
26722 #, no-wrap
26723 msgid ""
26724 " umask mask\n"
26725 "\n"
26726 msgstr ""
26727
26728 #. type: textblock
26729 #: ../fish/guestfish-actions.pod:4563
26730 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
26731 msgstr ""
26732
26733 #. type: =head2
26734 #: ../fish/guestfish-actions.pod:4568
26735 msgid "umount"
26736 msgstr ""
26737
26738 #. type: =head2
26739 #: ../fish/guestfish-actions.pod:4570
26740 msgid "unmount"
26741 msgstr ""
26742
26743 #. type: verbatim
26744 #: ../fish/guestfish-actions.pod:4572
26745 #, no-wrap
26746 msgid ""
26747 " umount pathordevice\n"
26748 "\n"
26749 msgstr ""
26750
26751 #. type: =head2
26752 #: ../fish/guestfish-actions.pod:4578
26753 msgid "umount-all"
26754 msgstr ""
26755
26756 #. type: =head2
26757 #: ../fish/guestfish-actions.pod:4580
26758 msgid "unmount-all"
26759 msgstr ""
26760
26761 #. type: verbatim
26762 #: ../fish/guestfish-actions.pod:4582
26763 #, no-wrap
26764 msgid ""
26765 " umount-all\n"
26766 "\n"
26767 msgstr ""
26768
26769 #. type: =head2
26770 #: ../fish/guestfish-actions.pod:4588
26771 msgid "upload"
26772 msgstr ""
26773
26774 #. type: verbatim
26775 #: ../fish/guestfish-actions.pod:4590
26776 #, no-wrap
26777 msgid ""
26778 " upload (filename|-) remotefilename\n"
26779 "\n"
26780 msgstr ""
26781
26782 #. type: textblock
26783 #: ../fish/guestfish-actions.pod:4597
26784 msgid "See also L</download>."
26785 msgstr ""
26786
26787 #. type: =head2
26788 #: ../fish/guestfish-actions.pod:4601
26789 msgid "upload-offset"
26790 msgstr ""
26791
26792 #. type: verbatim
26793 #: ../fish/guestfish-actions.pod:4603
26794 #, no-wrap
26795 msgid ""
26796 " upload-offset (filename|-) remotefilename offset\n"
26797 "\n"
26798 msgstr ""
26799
26800 #. type: textblock
26801 #: ../fish/guestfish-actions.pod:4615
26802 msgid ""
26803 "Note that there is no limit on the amount of data that can be uploaded with "
26804 "this call, unlike with L</pwrite>, and this call always writes the full "
26805 "amount unless an error occurs."
26806 msgstr ""
26807
26808 #. type: textblock
26809 #: ../fish/guestfish-actions.pod:4620
26810 msgid "See also L</upload>, L</pwrite>."
26811 msgstr ""
26812
26813 #. type: =head2
26814 #: ../fish/guestfish-actions.pod:4624
26815 msgid "utimens"
26816 msgstr ""
26817
26818 #. type: verbatim
26819 #: ../fish/guestfish-actions.pod:4626
26820 #, no-wrap
26821 msgid ""
26822 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
26823 "\n"
26824 msgstr ""
26825
26826 #. type: =head2
26827 #: ../fish/guestfish-actions.pod:4645
26828 msgid "version"
26829 msgstr ""
26830
26831 #. type: verbatim
26832 #: ../fish/guestfish-actions.pod:4647
26833 #, no-wrap
26834 msgid ""
26835 " version\n"
26836 "\n"
26837 msgstr ""
26838
26839 #. type: textblock
26840 #: ../fish/guestfish-actions.pod:4674
26841 msgid ""
26842 "I<Note:> Don't use this call to test for availability of features.  In "
26843 "enterprise distributions we backport features from later versions into "
26844 "earlier versions, making this an unreliable way to test for features.  Use "
26845 "L</available> instead."
26846 msgstr ""
26847
26848 #. type: =head2
26849 #: ../fish/guestfish-actions.pod:4680
26850 msgid "vfs-label"
26851 msgstr ""
26852
26853 #. type: verbatim
26854 #: ../fish/guestfish-actions.pod:4682
26855 #, no-wrap
26856 msgid ""
26857 " vfs-label device\n"
26858 "\n"
26859 msgstr ""
26860
26861 #. type: textblock
26862 #: ../fish/guestfish-actions.pod:4689
26863 msgid "To find a filesystem from the label, use L</findfs-label>."
26864 msgstr ""
26865
26866 #. type: =head2
26867 #: ../fish/guestfish-actions.pod:4691
26868 msgid "vfs-type"
26869 msgstr ""
26870
26871 #. type: verbatim
26872 #: ../fish/guestfish-actions.pod:4693
26873 #, no-wrap
26874 msgid ""
26875 " vfs-type device\n"
26876 "\n"
26877 msgstr ""
26878
26879 #. type: =head2
26880 #: ../fish/guestfish-actions.pod:4703
26881 msgid "vfs-uuid"
26882 msgstr ""
26883
26884 #. type: verbatim
26885 #: ../fish/guestfish-actions.pod:4705
26886 #, no-wrap
26887 msgid ""
26888 " vfs-uuid device\n"
26889 "\n"
26890 msgstr ""
26891
26892 #. type: textblock
26893 #: ../fish/guestfish-actions.pod:4712
26894 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
26895 msgstr ""
26896
26897 #. type: =head2
26898 #: ../fish/guestfish-actions.pod:4714
26899 msgid "vg-activate"
26900 msgstr ""
26901
26902 #. type: verbatim
26903 #: ../fish/guestfish-actions.pod:4716
26904 #, no-wrap
26905 msgid ""
26906 " vg-activate true|false 'volgroups ...'\n"
26907 "\n"
26908 msgstr ""
26909
26910 #. type: =head2
26911 #: ../fish/guestfish-actions.pod:4729
26912 msgid "vg-activate-all"
26913 msgstr ""
26914
26915 #. type: verbatim
26916 #: ../fish/guestfish-actions.pod:4731
26917 #, no-wrap
26918 msgid ""
26919 " vg-activate-all true|false\n"
26920 "\n"
26921 msgstr ""
26922
26923 #. type: =head2
26924 #: ../fish/guestfish-actions.pod:4741
26925 msgid "vgcreate"
26926 msgstr ""
26927
26928 #. type: verbatim
26929 #: ../fish/guestfish-actions.pod:4743
26930 #, no-wrap
26931 msgid ""
26932 " vgcreate volgroup 'physvols ...'\n"
26933 "\n"
26934 msgstr ""
26935
26936 #. type: =head2
26937 #: ../fish/guestfish-actions.pod:4748
26938 msgid "vglvuuids"
26939 msgstr ""
26940
26941 #. type: verbatim
26942 #: ../fish/guestfish-actions.pod:4750
26943 #, no-wrap
26944 msgid ""
26945 " vglvuuids vgname\n"
26946 "\n"
26947 msgstr ""
26948
26949 #. type: textblock
26950 #: ../fish/guestfish-actions.pod:4755
26951 msgid ""
26952 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
26953 "logical volumes and volume groups."
26954 msgstr ""
26955
26956 #. type: textblock
26957 #: ../fish/guestfish-actions.pod:4758
26958 msgid "See also L</vgpvuuids>."
26959 msgstr ""
26960
26961 #. type: =head2
26962 #: ../fish/guestfish-actions.pod:4760
26963 msgid "vgpvuuids"
26964 msgstr ""
26965
26966 #. type: verbatim
26967 #: ../fish/guestfish-actions.pod:4762
26968 #, no-wrap
26969 msgid ""
26970 " vgpvuuids vgname\n"
26971 "\n"
26972 msgstr ""
26973
26974 #. type: textblock
26975 #: ../fish/guestfish-actions.pod:4767
26976 msgid ""
26977 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
26978 "physical volumes and volume groups."
26979 msgstr ""
26980
26981 #. type: textblock
26982 #: ../fish/guestfish-actions.pod:4770
26983 msgid "See also L</vglvuuids>."
26984 msgstr ""
26985
26986 #. type: =head2
26987 #: ../fish/guestfish-actions.pod:4772
26988 msgid "vgremove"
26989 msgstr ""
26990
26991 #. type: verbatim
26992 #: ../fish/guestfish-actions.pod:4774
26993 #, no-wrap
26994 msgid ""
26995 " vgremove vgname\n"
26996 "\n"
26997 msgstr ""
26998
26999 #. type: =head2
27000 #: ../fish/guestfish-actions.pod:4781
27001 msgid "vgrename"
27002 msgstr ""
27003
27004 #. type: verbatim
27005 #: ../fish/guestfish-actions.pod:4783
27006 #, no-wrap
27007 msgid ""
27008 " vgrename volgroup newvolgroup\n"
27009 "\n"
27010 msgstr ""
27011
27012 #. type: =head2
27013 #: ../fish/guestfish-actions.pod:4787
27014 msgid "vgs"
27015 msgstr ""
27016
27017 #. type: verbatim
27018 #: ../fish/guestfish-actions.pod:4789
27019 #, no-wrap
27020 msgid ""
27021 " vgs\n"
27022 "\n"
27023 msgstr ""
27024
27025 #. type: textblock
27026 #: ../fish/guestfish-actions.pod:4797
27027 msgid "See also L</vgs-full>."
27028 msgstr ""
27029
27030 #. type: =head2
27031 #: ../fish/guestfish-actions.pod:4799
27032 msgid "vgs-full"
27033 msgstr ""
27034
27035 #. type: verbatim
27036 #: ../fish/guestfish-actions.pod:4801
27037 #, no-wrap
27038 msgid ""
27039 " vgs-full\n"
27040 "\n"
27041 msgstr ""
27042
27043 #. type: =head2
27044 #: ../fish/guestfish-actions.pod:4806
27045 msgid "vgscan"
27046 msgstr ""
27047
27048 #. type: verbatim
27049 #: ../fish/guestfish-actions.pod:4808
27050 #, no-wrap
27051 msgid ""
27052 " vgscan\n"
27053 "\n"
27054 msgstr ""
27055
27056 #. type: =head2
27057 #: ../fish/guestfish-actions.pod:4813
27058 msgid "vguuid"
27059 msgstr ""
27060
27061 #. type: verbatim
27062 #: ../fish/guestfish-actions.pod:4815
27063 #, no-wrap
27064 msgid ""
27065 " vguuid vgname\n"
27066 "\n"
27067 msgstr ""
27068
27069 #. type: =head2
27070 #: ../fish/guestfish-actions.pod:4819
27071 msgid "wc-c"
27072 msgstr ""
27073
27074 #. type: verbatim
27075 #: ../fish/guestfish-actions.pod:4821
27076 #, no-wrap
27077 msgid ""
27078 " wc-c path\n"
27079 "\n"
27080 msgstr ""
27081
27082 #. type: =head2
27083 #: ../fish/guestfish-actions.pod:4826
27084 msgid "wc-l"
27085 msgstr ""
27086
27087 #. type: verbatim
27088 #: ../fish/guestfish-actions.pod:4828
27089 #, no-wrap
27090 msgid ""
27091 " wc-l path\n"
27092 "\n"
27093 msgstr ""
27094
27095 #. type: =head2
27096 #: ../fish/guestfish-actions.pod:4833
27097 msgid "wc-w"
27098 msgstr ""
27099
27100 #. type: verbatim
27101 #: ../fish/guestfish-actions.pod:4835
27102 #, no-wrap
27103 msgid ""
27104 " wc-w path\n"
27105 "\n"
27106 msgstr ""
27107
27108 #. type: =head2
27109 #: ../fish/guestfish-actions.pod:4840
27110 msgid "write"
27111 msgstr ""
27112
27113 #. type: verbatim
27114 #: ../fish/guestfish-actions.pod:4842
27115 #, no-wrap
27116 msgid ""
27117 " write path content\n"
27118 "\n"
27119 msgstr ""
27120
27121 #. type: =head2
27122 #: ../fish/guestfish-actions.pod:4850
27123 msgid "write-file"
27124 msgstr ""
27125
27126 #. type: verbatim
27127 #: ../fish/guestfish-actions.pod:4852
27128 #, no-wrap
27129 msgid ""
27130 " write-file path content size\n"
27131 "\n"
27132 msgstr ""
27133
27134 #. type: =head2
27135 #: ../fish/guestfish-actions.pod:4875
27136 msgid "zegrep"
27137 msgstr ""
27138
27139 #. type: verbatim
27140 #: ../fish/guestfish-actions.pod:4877
27141 #, no-wrap
27142 msgid ""
27143 " zegrep regex path\n"
27144 "\n"
27145 msgstr ""
27146
27147 #. type: =head2
27148 #: ../fish/guestfish-actions.pod:4885
27149 msgid "zegrepi"
27150 msgstr ""
27151
27152 #. type: verbatim
27153 #: ../fish/guestfish-actions.pod:4887
27154 #, no-wrap
27155 msgid ""
27156 " zegrepi regex path\n"
27157 "\n"
27158 msgstr ""
27159
27160 #. type: =head2
27161 #: ../fish/guestfish-actions.pod:4895
27162 msgid "zero"
27163 msgstr ""
27164
27165 #. type: verbatim
27166 #: ../fish/guestfish-actions.pod:4897
27167 #, no-wrap
27168 msgid ""
27169 " zero device\n"
27170 "\n"
27171 msgstr ""
27172
27173 #. type: textblock
27174 #: ../fish/guestfish-actions.pod:4905
27175 msgid "See also: L</zero-device>, L</scrub-device>."
27176 msgstr ""
27177
27178 #. type: =head2
27179 #: ../fish/guestfish-actions.pod:4907
27180 msgid "zero-device"
27181 msgstr ""
27182
27183 #. type: verbatim
27184 #: ../fish/guestfish-actions.pod:4909
27185 #, no-wrap
27186 msgid ""
27187 " zero-device device\n"
27188 "\n"
27189 msgstr ""
27190
27191 #. type: textblock
27192 #: ../fish/guestfish-actions.pod:4911
27193 msgid ""
27194 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
27195 "which just zeroes the first few blocks of a device."
27196 msgstr ""
27197
27198 #. type: =head2
27199 #: ../fish/guestfish-actions.pod:4918
27200 msgid "zerofree"
27201 msgstr ""
27202
27203 #. type: verbatim
27204 #: ../fish/guestfish-actions.pod:4920
27205 #, no-wrap
27206 msgid ""
27207 " zerofree device\n"
27208 "\n"
27209 msgstr ""
27210
27211 #. type: =head2
27212 #: ../fish/guestfish-actions.pod:4933
27213 msgid "zfgrep"
27214 msgstr ""
27215
27216 #. type: verbatim
27217 #: ../fish/guestfish-actions.pod:4935
27218 #, no-wrap
27219 msgid ""
27220 " zfgrep pattern path\n"
27221 "\n"
27222 msgstr ""
27223
27224 #. type: =head2
27225 #: ../fish/guestfish-actions.pod:4943
27226 msgid "zfgrepi"
27227 msgstr ""
27228
27229 #. type: verbatim
27230 #: ../fish/guestfish-actions.pod:4945
27231 #, no-wrap
27232 msgid ""
27233 " zfgrepi pattern path\n"
27234 "\n"
27235 msgstr ""
27236
27237 #. type: =head2
27238 #: ../fish/guestfish-actions.pod:4953
27239 msgid "zfile"
27240 msgstr ""
27241
27242 #. type: verbatim
27243 #: ../fish/guestfish-actions.pod:4955
27244 #, no-wrap
27245 msgid ""
27246 " zfile meth path\n"
27247 "\n"
27248 msgstr ""
27249
27250 #. type: textblock
27251 #: ../fish/guestfish-actions.pod:4962
27252 msgid "Since 1.0.63, use L</file> instead which can now process compressed files."
27253 msgstr ""
27254
27255 #. type: =head2
27256 #: ../fish/guestfish-actions.pod:4972
27257 msgid "zgrep"
27258 msgstr ""
27259
27260 #. type: verbatim
27261 #: ../fish/guestfish-actions.pod:4974
27262 #, no-wrap
27263 msgid ""
27264 " zgrep regex path\n"
27265 "\n"
27266 msgstr ""
27267
27268 #. type: =head2
27269 #: ../fish/guestfish-actions.pod:4982
27270 msgid "zgrepi"
27271 msgstr ""
27272
27273 #. type: verbatim
27274 #: ../fish/guestfish-actions.pod:4984
27275 #, no-wrap
27276 msgid ""
27277 " zgrepi regex path\n"
27278 "\n"
27279 msgstr ""
27280
27281 #. type: =head2
27282 #: ../fish/guestfish-commands.pod:1
27283 msgid "alloc"
27284 msgstr ""
27285
27286 #. type: =head2
27287 #: ../fish/guestfish-commands.pod:3
27288 msgid "allocate"
27289 msgstr ""
27290
27291 #. type: verbatim
27292 #: ../fish/guestfish-commands.pod:5
27293 #, no-wrap
27294 msgid ""
27295 " alloc filename size\n"
27296 "\n"
27297 msgstr ""
27298
27299 #. type: textblock
27300 #: ../fish/guestfish-commands.pod:7
27301 msgid ""
27302 "This creates an empty (zeroed) file of the given size, and then adds so it "
27303 "can be further examined."
27304 msgstr ""
27305
27306 #. type: textblock
27307 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
27308 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
27309 msgstr ""
27310
27311 #. type: textblock
27312 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
27313 msgid "Size can be specified using standard suffixes, eg. C<1M>."
27314 msgstr ""
27315
27316 #. type: textblock
27317 #: ../fish/guestfish-commands.pod:14
27318 msgid ""
27319 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
27320 "image, see L</PREPARED DISK IMAGES>."
27321 msgstr ""
27322
27323 #. type: =head2
27324 #: ../fish/guestfish-commands.pod:17
27325 msgid "copy-in"
27326 msgstr ""
27327
27328 #. type: verbatim
27329 #: ../fish/guestfish-commands.pod:19
27330 #, no-wrap
27331 msgid ""
27332 " copy-in local [local ...] /remotedir\n"
27333 "\n"
27334 msgstr ""
27335
27336 #. type: textblock
27337 #: ../fish/guestfish-commands.pod:21
27338 msgid ""
27339 "C<copy-in> copies local files or directories recursively into the disk "
27340 "image, placing them in the directory called C</remotedir> (which must "
27341 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
27342 "other commands as necessary."
27343 msgstr ""
27344
27345 #. type: textblock
27346 #: ../fish/guestfish-commands.pod:26
27347 msgid ""
27348 "Multiple local files and directories can be specified, but the last "
27349 "parameter must always be a remote directory.  Wildcards cannot be used."
27350 msgstr ""
27351
27352 #. type: =head2
27353 #: ../fish/guestfish-commands.pod:30
27354 msgid "copy-out"
27355 msgstr ""
27356
27357 #. type: verbatim
27358 #: ../fish/guestfish-commands.pod:32
27359 #, no-wrap
27360 msgid ""
27361 " copy-out remote [remote ...] localdir\n"
27362 "\n"
27363 msgstr ""
27364
27365 #. type: textblock
27366 #: ../fish/guestfish-commands.pod:34
27367 msgid ""
27368 "C<copy-out> copies remote files or directories recursively out of the disk "
27369 "image, placing them on the host disk in a local directory called C<localdir> "
27370 "(which must exist).  This guestfish meta-command turns into a sequence of "
27371 "L</download>, L</tar-out> and other commands as necessary."
27372 msgstr ""
27373
27374 #. type: textblock
27375 #: ../fish/guestfish-commands.pod:40
27376 msgid ""
27377 "Multiple remote files and directories can be specified, but the last "
27378 "parameter must always be a local directory.  To download to the current "
27379 "directory, use C<.> as in:"
27380 msgstr ""
27381
27382 #. type: verbatim
27383 #: ../fish/guestfish-commands.pod:44
27384 #, no-wrap
27385 msgid ""
27386 " copy-out /home .\n"
27387 "\n"
27388 msgstr ""
27389
27390 #. type: textblock
27391 #: ../fish/guestfish-commands.pod:46
27392 msgid ""
27393 "Wildcards cannot be used in the ordinary command, but you can use them with "
27394 "the help of L</glob> like this:"
27395 msgstr ""
27396
27397 #. type: verbatim
27398 #: ../fish/guestfish-commands.pod:49
27399 #, no-wrap
27400 msgid ""
27401 " glob copy-out /home/* .\n"
27402 "\n"
27403 msgstr ""
27404
27405 #. type: =head2
27406 #: ../fish/guestfish-commands.pod:51
27407 msgid "echo"
27408 msgstr ""
27409
27410 #. type: verbatim
27411 #: ../fish/guestfish-commands.pod:53
27412 #, no-wrap
27413 msgid ""
27414 " echo [params ...]\n"
27415 "\n"
27416 msgstr ""
27417
27418 #. type: textblock
27419 #: ../fish/guestfish-commands.pod:55
27420 msgid "This echos the parameters to the terminal."
27421 msgstr ""
27422
27423 #. type: =head2
27424 #: ../fish/guestfish-commands.pod:57
27425 msgid "edit"
27426 msgstr ""
27427
27428 #. type: =head2
27429 #: ../fish/guestfish-commands.pod:59
27430 msgid "vi"
27431 msgstr ""
27432
27433 #. type: =head2
27434 #: ../fish/guestfish-commands.pod:61
27435 msgid "emacs"
27436 msgstr ""
27437
27438 #. type: verbatim
27439 #: ../fish/guestfish-commands.pod:63
27440 #, no-wrap
27441 msgid ""
27442 " edit filename\n"
27443 "\n"
27444 msgstr ""
27445
27446 #. type: textblock
27447 #: ../fish/guestfish-commands.pod:65
27448 msgid ""
27449 "This is used to edit a file.  It downloads the file, edits it locally using "
27450 "your editor, then uploads the result."
27451 msgstr ""
27452
27453 #. type: textblock
27454 #: ../fish/guestfish-commands.pod:68
27455 msgid ""
27456 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
27457 "or C<emacs> you will get those corresponding editors."
27458 msgstr ""
27459
27460 #. type: =head2
27461 #: ../fish/guestfish-commands.pod:72
27462 msgid "glob"
27463 msgstr ""
27464
27465 #. type: verbatim
27466 #: ../fish/guestfish-commands.pod:74
27467 #, no-wrap
27468 msgid ""
27469 " glob command args...\n"
27470 "\n"
27471 msgstr ""
27472
27473 #. type: textblock
27474 #: ../fish/guestfish-commands.pod:76
27475 msgid ""
27476 "Expand wildcards in any paths in the args list, and run C<command> "
27477 "repeatedly on each matching path."
27478 msgstr ""
27479
27480 #. type: textblock
27481 #: ../fish/guestfish-commands.pod:79
27482 msgid "See L</WILDCARDS AND GLOBBING>."
27483 msgstr ""
27484
27485 #. type: =head2
27486 #: ../fish/guestfish-commands.pod:81
27487 msgid "hexedit"
27488 msgstr ""
27489
27490 #. type: verbatim
27491 #: ../fish/guestfish-commands.pod:83
27492 #, no-wrap
27493 msgid ""
27494 " hexedit <filename|device>\n"
27495 " hexedit <filename|device> <max>\n"
27496 " hexedit <filename|device> <start> <max>\n"
27497 "\n"
27498 msgstr ""
27499
27500 #. type: textblock
27501 #: ../fish/guestfish-commands.pod:87
27502 msgid ""
27503 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
27504 "device."
27505 msgstr ""
27506
27507 #. type: textblock
27508 #: ../fish/guestfish-commands.pod:90
27509 msgid ""
27510 "This command works by downloading potentially the whole file or device, "
27511 "editing it locally, then uploading it.  If the file or device is large, you "
27512 "have to specify which part you wish to edit by using C<max> and/or C<start> "
27513 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
27514 "usual modifiers allowed such as C<1M> (1 megabyte)."
27515 msgstr ""
27516
27517 #. type: textblock
27518 #: ../fish/guestfish-commands.pod:97
27519 msgid "For example to edit the first few sectors of a disk you might do:"
27520 msgstr ""
27521
27522 #. type: verbatim
27523 #: ../fish/guestfish-commands.pod:100
27524 #, no-wrap
27525 msgid ""
27526 " hexedit /dev/sda 1M\n"
27527 "\n"
27528 msgstr ""
27529
27530 #. type: textblock
27531 #: ../fish/guestfish-commands.pod:102
27532 msgid ""
27533 "which would allow you to edit anywhere within the first megabyte of the "
27534 "disk."
27535 msgstr ""
27536
27537 #. type: textblock
27538 #: ../fish/guestfish-commands.pod:105
27539 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
27540 msgstr ""
27541
27542 #. type: verbatim
27543 #: ../fish/guestfish-commands.pod:107
27544 #, no-wrap
27545 msgid ""
27546 " hexedit /dev/sda1 0x400 0x400\n"
27547 "\n"
27548 msgstr ""
27549
27550 #. type: textblock
27551 #: ../fish/guestfish-commands.pod:109
27552 msgid "(assuming the superblock is in the standard location)."
27553 msgstr ""
27554
27555 #. type: textblock
27556 #: ../fish/guestfish-commands.pod:111
27557 msgid ""
27558 "This command requires the external L<hexedit(1)> program.  You can specify "
27559 "another program to use by setting the C<HEXEDITOR> environment variable."
27560 msgstr ""
27561
27562 #. type: textblock
27563 #: ../fish/guestfish-commands.pod:115
27564 msgid "See also L</hexdump>."
27565 msgstr ""
27566
27567 #. type: =head2
27568 #: ../fish/guestfish-commands.pod:117
27569 msgid "lcd"
27570 msgstr ""
27571
27572 #. type: verbatim
27573 #: ../fish/guestfish-commands.pod:119
27574 #, no-wrap
27575 msgid ""
27576 " lcd directory\n"
27577 "\n"
27578 msgstr ""
27579
27580 #. type: textblock
27581 #: ../fish/guestfish-commands.pod:121
27582 msgid "Change the local directory, ie. the current directory of guestfish itself."
27583 msgstr ""
27584
27585 #. type: textblock
27586 #: ../fish/guestfish-commands.pod:124
27587 msgid "Note that C<!cd> won't do what you might expect."
27588 msgstr ""
27589
27590 #. type: =head2
27591 #: ../fish/guestfish-commands.pod:126
27592 msgid "man"
27593 msgstr ""
27594
27595 #. type: =head2
27596 #: ../fish/guestfish-commands.pod:128
27597 msgid "manual"
27598 msgstr ""
27599
27600 #. type: verbatim
27601 #: ../fish/guestfish-commands.pod:130
27602 #, no-wrap
27603 msgid ""
27604 "  man\n"
27605 "\n"
27606 msgstr ""
27607
27608 #. type: textblock
27609 #: ../fish/guestfish-commands.pod:132
27610 msgid "Opens the manual page for guestfish."
27611 msgstr ""
27612
27613 #. type: =head2
27614 #: ../fish/guestfish-commands.pod:134
27615 msgid "more"
27616 msgstr ""
27617
27618 #. type: =head2
27619 #: ../fish/guestfish-commands.pod:136
27620 msgid "less"
27621 msgstr ""
27622
27623 #. type: verbatim
27624 #: ../fish/guestfish-commands.pod:138
27625 #, no-wrap
27626 msgid ""
27627 " more filename\n"
27628 "\n"
27629 msgstr ""
27630
27631 #. type: verbatim
27632 #: ../fish/guestfish-commands.pod:140
27633 #, no-wrap
27634 msgid ""
27635 " less filename\n"
27636 "\n"
27637 msgstr ""
27638
27639 #. type: textblock
27640 #: ../fish/guestfish-commands.pod:142
27641 msgid "This is used to view a file."
27642 msgstr ""
27643
27644 #. type: textblock
27645 #: ../fish/guestfish-commands.pod:144
27646 msgid ""
27647 "The default viewer is C<$PAGER>.  However if you use the alternate command "
27648 "C<less> you will get the C<less> command specifically."
27649 msgstr ""
27650
27651 #. type: =head2
27652 #: ../fish/guestfish-commands.pod:147
27653 msgid "reopen"
27654 msgstr ""
27655
27656 #. type: verbatim
27657 #: ../fish/guestfish-commands.pod:149
27658 #, no-wrap
27659 msgid ""
27660 "  reopen\n"
27661 "\n"
27662 msgstr ""
27663
27664 #. type: textblock
27665 #: ../fish/guestfish-commands.pod:151
27666 msgid ""
27667 "Close and reopen the libguestfs handle.  It is not necessary to use this "
27668 "normally, because the handle is closed properly when guestfish exits.  "
27669 "However this is occasionally useful for testing."
27670 msgstr ""
27671
27672 #. type: =head2
27673 #: ../fish/guestfish-commands.pod:155
27674 msgid "sparse"
27675 msgstr ""
27676
27677 #. type: verbatim
27678 #: ../fish/guestfish-commands.pod:157
27679 #, no-wrap
27680 msgid ""
27681 " sparse filename size\n"
27682 "\n"
27683 msgstr ""
27684
27685 #. type: textblock
27686 #: ../fish/guestfish-commands.pod:159
27687 msgid ""
27688 "This creates an empty sparse file of the given size, and then adds so it can "
27689 "be further examined."
27690 msgstr ""
27691
27692 #. type: textblock
27693 #: ../fish/guestfish-commands.pod:162
27694 msgid ""
27695 "In all respects it works the same as the L</alloc> command, except that the "
27696 "image file is allocated sparsely, which means that disk blocks are not "
27697 "assigned to the file until they are needed.  Sparse disk files only use "
27698 "space when written to, but they are slower and there is a danger you could "
27699 "run out of real disk space during a write operation."
27700 msgstr ""
27701
27702 #. type: =head2
27703 #: ../fish/guestfish-commands.pod:172
27704 msgid "supported"
27705 msgstr ""
27706
27707 #. type: verbatim
27708 #: ../fish/guestfish-commands.pod:174
27709 #, no-wrap
27710 msgid ""
27711 " supported\n"
27712 "\n"
27713 msgstr ""
27714
27715 #. type: textblock
27716 #: ../fish/guestfish-commands.pod:176
27717 msgid ""
27718 "This command returns a list of the optional groups known to the daemon, and "
27719 "indicates which ones are supported by this build of the libguestfs "
27720 "appliance."
27721 msgstr ""
27722
27723 #. type: textblock
27724 #: ../fish/guestfish-commands.pod:180
27725 msgid "See also L<guestfs(3)/AVAILABILITY>."
27726 msgstr ""
27727
27728 #. type: =head2
27729 #: ../fish/guestfish-commands.pod:182
27730 msgid "time"
27731 msgstr ""
27732
27733 #. type: verbatim
27734 #: ../fish/guestfish-commands.pod:184
27735 #, no-wrap
27736 msgid ""
27737 " time command args...\n"
27738 "\n"
27739 msgstr ""
27740
27741 #. type: textblock
27742 #: ../fish/guestfish-commands.pod:186
27743 msgid ""
27744 "Run the command as usual, but print the elapsed time afterwards.  This can "
27745 "be useful for benchmarking operations."
27746 msgstr ""
27747
27748 #. type: textblock
27749 #: ../test-tool/libguestfs-test-tool.pod:5
27750 msgid "libguestfs-test-tool - End user tests for libguestfs"
27751 msgstr ""
27752
27753 #. type: verbatim
27754 #: ../test-tool/libguestfs-test-tool.pod:9
27755 #, no-wrap
27756 msgid ""
27757 " libguestfs-test-tool [--options]\n"
27758 "\n"
27759 msgstr ""
27760
27761 #. type: textblock
27762 #: ../test-tool/libguestfs-test-tool.pod:13
27763 msgid ""
27764 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
27765 "and developers, to allow them to check basic libguestfs functionality is "
27766 "working.  This is needed because libguestfs occasionally breaks for reasons "
27767 "beyond our control: usually because of changes in the underlying qemu or "
27768 "kernel packages, or the host environment."
27769 msgstr ""
27770
27771 #. type: textblock
27772 #: ../test-tool/libguestfs-test-tool.pod:20
27773 msgid "If you suspect a problem in libguestfs, then just run:"
27774 msgstr ""
27775
27776 #. type: verbatim
27777 #: ../test-tool/libguestfs-test-tool.pod:22
27778 #, no-wrap
27779 msgid ""
27780 " libguestfs-test-tool\n"
27781 "\n"
27782 msgstr ""
27783
27784 #. type: textblock
27785 #: ../test-tool/libguestfs-test-tool.pod:24
27786 msgid "It will print lots of diagnostic messages."
27787 msgstr ""
27788
27789 #. type: textblock
27790 #: ../test-tool/libguestfs-test-tool.pod:26
27791 msgid "If it runs to completion successfully, you will see this near the end:"
27792 msgstr ""
27793
27794 #. type: verbatim
27795 #: ../test-tool/libguestfs-test-tool.pod:28
27796 #, no-wrap
27797 msgid ""
27798 " ===== TEST FINISHED OK =====\n"
27799 "\n"
27800 msgstr ""
27801
27802 #. type: textblock
27803 #: ../test-tool/libguestfs-test-tool.pod:30
27804 msgid "and the test tool will exit with code 0."
27805 msgstr ""
27806
27807 #. type: textblock
27808 #: ../test-tool/libguestfs-test-tool.pod:32
27809 msgid ""
27810 "If it fails (and/or exits with non-zero error code), please paste the "
27811 "B<complete, unedited> output of the test tool into a bug report.  More "
27812 "information about reporting bugs can be found on the "
27813 "L<http://libguestfs.org/> website."
27814 msgstr ""
27815
27816 #. type: =item
27817 #: ../test-tool/libguestfs-test-tool.pod:41
27818 msgid "I<--help>"
27819 msgstr ""
27820
27821 #. type: textblock
27822 #: ../test-tool/libguestfs-test-tool.pod:43
27823 msgid "Display short usage information and exit."
27824 msgstr ""
27825
27826 #. type: =item
27827 #: ../test-tool/libguestfs-test-tool.pod:45
27828 msgid "I<--qemu qemu_binary>"
27829 msgstr ""
27830
27831 #. type: textblock
27832 #: ../test-tool/libguestfs-test-tool.pod:47
27833 msgid ""
27834 "If you have downloaded another qemu binary, point this option at the full "
27835 "path of the binary to try it."
27836 msgstr ""
27837
27838 #. type: =item
27839 #: ../test-tool/libguestfs-test-tool.pod:50
27840 msgid "I<--qemudir qemu_source_dir>"
27841 msgstr ""
27842
27843 #. type: textblock
27844 #: ../test-tool/libguestfs-test-tool.pod:52
27845 msgid ""
27846 "If you have compiled qemu from source, point this option at the source "
27847 "directory to try it."
27848 msgstr ""
27849
27850 #. type: =item
27851 #: ../test-tool/libguestfs-test-tool.pod:55
27852 msgid "I<--timeout N>"
27853 msgstr ""
27854
27855 #. type: textblock
27856 #: ../test-tool/libguestfs-test-tool.pod:57
27857 msgid ""
27858 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
27859 "does not usually need to be adjusted unless your machine is very slow."
27860 msgstr ""
27861
27862 #. type: =head1
27863 #: ../test-tool/libguestfs-test-tool.pod:63
27864 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
27865 msgstr ""
27866
27867 #. type: textblock
27868 #: ../test-tool/libguestfs-test-tool.pod:65
27869 msgid ""
27870 "If you have compiled another version of qemu from source and would like to "
27871 "try that, then you can use the I<--qemudir> option to point to the qemu "
27872 "source directory."
27873 msgstr ""
27874
27875 #. type: textblock
27876 #: ../test-tool/libguestfs-test-tool.pod:69
27877 msgid ""
27878 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
27879 "option to point to the binary."
27880 msgstr ""
27881
27882 #. type: textblock
27883 #: ../test-tool/libguestfs-test-tool.pod:72
27884 msgid ""
27885 "When using an alternate qemu with libguestfs, usually you would need to "
27886 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in "
27887 "L<guestfs(3)>).  libguestfs-test-tool writes a temporary qemu wrapper script "
27888 "when you use either of the I<--qemudir> or I<--qemu> options."
27889 msgstr ""
27890
27891 #. type: textblock
27892 #: ../test-tool/libguestfs-test-tool.pod:79
27893 msgid ""
27894 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
27895 "I<1> if there was an error."
27896 msgstr ""
27897
27898 #. type: textblock
27899 #: ../test-tool/libguestfs-test-tool.pod:84
27900 msgid ""
27901 "For the full list of environment variables which may affect libguestfs, "
27902 "please see the L<guestfs(3)> manual page."
27903 msgstr ""
27904
27905 #. type: textblock
27906 #: ../test-tool/libguestfs-test-tool.pod:89
27907 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
27908 msgstr ""
27909
27910 #. type: textblock
27911 #: ../fuse/guestmount.pod:5
27912 msgid "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
27913 msgstr ""
27914
27915 #. type: verbatim
27916 #: ../fuse/guestmount.pod:9
27917 #, no-wrap
27918 msgid ""
27919 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
27920 "\n"
27921 msgstr ""
27922
27923 #. type: verbatim
27924 #: ../fuse/guestmount.pod:11
27925 #, no-wrap
27926 msgid ""
27927 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
27928 "\n"
27929 msgstr ""
27930
27931 #. type: verbatim
27932 #: ../fuse/guestmount.pod:13
27933 #, no-wrap
27934 msgid ""
27935 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
27936 "\n"
27937 msgstr ""
27938
27939 #. type: textblock
27940 #: ../fuse/guestmount.pod:17
27941 msgid ""
27942 "You must I<not> use C<guestmount> in read-write mode on live virtual "
27943 "machines.  If you do this, you risk disk corruption in the VM."
27944 msgstr ""
27945
27946 #. type: textblock
27947 #: ../fuse/guestmount.pod:22
27948 msgid ""
27949 "The guestmount program can be used to mount virtual machine filesystems and "
27950 "other disk images on the host.  It uses libguestfs for access to the guest "
27951 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
27952 "a mountable device."
27953 msgstr ""
27954
27955 #. type: textblock
27956 #: ../fuse/guestmount.pod:27
27957 msgid ""
27958 "Along with other options, you have to give at least one device (I<-a> "
27959 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
27960 "option) or use the I<-i> inspection option.  How this works is better "
27961 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
27962 "below."
27963 msgstr ""
27964
27965 #. type: textblock
27966 #: ../fuse/guestmount.pod:33
27967 msgid ""
27968 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
27969 "by you, and the filesystem will not be visible to any other users unless you "
27970 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
27971 "the filesystem, use the C<fusermount -u> command."
27972 msgstr ""
27973
27974 #. type: textblock
27975 #: ../fuse/guestmount.pod:41
27976 msgid ""
27977 "For a typical Windows guest which has its main filesystem on the first "
27978 "partition:"
27979 msgstr ""
27980
27981 #. type: verbatim
27982 #: ../fuse/guestmount.pod:44
27983 #, no-wrap
27984 msgid ""
27985 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
27986 "\n"
27987 msgstr ""
27988
27989 #. type: textblock
27990 #: ../fuse/guestmount.pod:46
27991 msgid ""
27992 "For a typical Linux guest which has a /boot filesystem on the first "
27993 "partition, and the root filesystem on a logical volume:"
27994 msgstr ""
27995
27996 #. type: verbatim
27997 #: ../fuse/guestmount.pod:49
27998 #, no-wrap
27999 msgid ""
28000 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
28001 "\n"
28002 msgstr ""
28003
28004 #. type: textblock
28005 #: ../fuse/guestmount.pod:51
28006 msgid "To get libguestfs to detect guest mountpoints for you:"
28007 msgstr ""
28008
28009 #. type: verbatim
28010 #: ../fuse/guestmount.pod:53
28011 #, no-wrap
28012 msgid ""
28013 " guestmount -a guest.img -i --ro /mnt\n"
28014 "\n"
28015 msgstr ""
28016
28017 #. type: textblock
28018 #: ../fuse/guestmount.pod:55
28019 msgid "For a libvirt guest called \"Guest\" you could do:"
28020 msgstr ""
28021
28022 #. type: verbatim
28023 #: ../fuse/guestmount.pod:57
28024 #, no-wrap
28025 msgid ""
28026 " guestmount -d Guest -i --ro /mnt\n"
28027 "\n"
28028 msgstr ""
28029
28030 #. type: textblock
28031 #: ../fuse/guestmount.pod:59
28032 msgid ""
28033 "If you don't know what filesystems are contained in a guest or disk image, "
28034 "use L<virt-filesystems(1)> first:"
28035 msgstr ""
28036
28037 #. type: verbatim
28038 #: ../fuse/guestmount.pod:62
28039 #, no-wrap
28040 msgid ""
28041 " virt-filesystems MyGuest\n"
28042 "\n"
28043 msgstr ""
28044
28045 #. type: textblock
28046 #: ../fuse/guestmount.pod:64
28047 msgid ""
28048 "If you want to trace the libguestfs calls but without excessive debugging "
28049 "information, we recommend:"
28050 msgstr ""
28051
28052 #. type: verbatim
28053 #: ../fuse/guestmount.pod:67
28054 #, no-wrap
28055 msgid ""
28056 " guestmount [...] --trace /mnt\n"
28057 "\n"
28058 msgstr ""
28059
28060 #. type: textblock
28061 #: ../fuse/guestmount.pod:69
28062 msgid "If you want to debug the program, we recommend:"
28063 msgstr ""
28064
28065 #. type: verbatim
28066 #: ../fuse/guestmount.pod:71
28067 #, no-wrap
28068 msgid ""
28069 " guestmount [...] --trace --verbose /mnt\n"
28070 "\n"
28071 msgstr ""
28072
28073 #. type: =item
28074 #: ../fuse/guestmount.pod:77
28075 msgid "B<-a image> | B<--add image>"
28076 msgstr ""
28077
28078 #. type: textblock
28079 #: ../fuse/guestmount.pod:79
28080 msgid "Add a block device or virtual machine image."
28081 msgstr ""
28082
28083 #. type: =item
28084 #: ../fuse/guestmount.pod:84
28085 msgid "B<-c URI> | B<--connect URI>"
28086 msgstr ""
28087
28088 #. type: =item
28089 #: ../fuse/guestmount.pod:90
28090 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
28091 msgstr ""
28092
28093 #. type: =item
28094 #: ../fuse/guestmount.pod:98
28095 msgid "B<--dir-cache-timeout N>"
28096 msgstr ""
28097
28098 #. type: textblock
28099 #: ../fuse/guestmount.pod:100
28100 msgid ""
28101 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
28102 "seconds.  The readdir cache [actually, there are several semi-independent "
28103 "caches] is populated after a readdir(2) call with the stat and extended "
28104 "attributes of the files in the directory, in anticipation that they will be "
28105 "requested soon after."
28106 msgstr ""
28107
28108 #. type: textblock
28109 #: ../fuse/guestmount.pod:106
28110 msgid ""
28111 "There is also a different attribute cache implemented by FUSE (see the FUSE "
28112 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
28113 "requests, only cache existing ones."
28114 msgstr ""
28115
28116 #. type: =item
28117 #: ../fuse/guestmount.pod:117
28118 msgid "B<--format=raw|qcow2|..> | B<--format>"
28119 msgstr ""
28120
28121 #. type: textblock
28122 #: ../fuse/guestmount.pod:124
28123 msgid ""
28124 "If you have untrusted raw-format guest disk images, you should use this "
28125 "option to specify the disk format.  This avoids a possible security problem "
28126 "with malicious guests (CVE-2010-3851).  See also "
28127 "L<guestfs(3)/guestfs_add_drive_opts>."
28128 msgstr ""
28129
28130 #. type: =item
28131 #: ../fuse/guestmount.pod:129
28132 msgid "B<--fuse-help>"
28133 msgstr ""
28134
28135 #. type: textblock
28136 #: ../fuse/guestmount.pod:131
28137 msgid "Display help on special FUSE options (see I<-o> below)."
28138 msgstr ""
28139
28140 #. type: textblock
28141 #: ../fuse/guestmount.pod:135
28142 msgid "Display brief help and exit."
28143 msgstr ""
28144
28145 #. type: =item
28146 #: ../fuse/guestmount.pod:137
28147 msgid "B<-i> | B<--inspector>"
28148 msgstr ""
28149
28150 #. type: textblock
28151 #: ../fuse/guestmount.pod:157
28152 msgid ""
28153 "Mount the named partition or logical volume on the given mountpoint B<in the "
28154 "guest> (this has nothing to do with mountpoints in the host)."
28155 msgstr ""
28156
28157 #. type: textblock
28158 #: ../fuse/guestmount.pod:160
28159 msgid ""
28160 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
28161 "something on C</>."
28162 msgstr ""
28163
28164 #. type: =item
28165 #: ../fuse/guestmount.pod:173
28166 msgid "B<-n> | B<--no-sync>"
28167 msgstr ""
28168
28169 #. type: textblock
28170 #: ../fuse/guestmount.pod:175
28171 msgid ""
28172 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
28173 "unmounted.  If you specify this option, then we don't attempt to sync the "
28174 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
28175 msgstr ""
28176
28177 #. type: =item
28178 #: ../fuse/guestmount.pod:180
28179 msgid "B<-o option> | B<--option option>"
28180 msgstr ""
28181
28182 #. type: textblock
28183 #: ../fuse/guestmount.pod:182
28184 msgid "Pass extra options to FUSE."
28185 msgstr ""
28186
28187 #. type: textblock
28188 #: ../fuse/guestmount.pod:184
28189 msgid ""
28190 "To get a list of all the extra options supported by FUSE, use the command "
28191 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
28192 "of them are a good idea."
28193 msgstr ""
28194
28195 #. type: verbatim
28196 #: ../fuse/guestmount.pod:188
28197 #, no-wrap
28198 msgid ""
28199 " guestmount --fuse-help\n"
28200 "\n"
28201 msgstr ""
28202
28203 #. type: textblock
28204 #: ../fuse/guestmount.pod:190
28205 msgid "Some potentially useful FUSE options:"
28206 msgstr ""
28207
28208 #. type: =item
28209 #: ../fuse/guestmount.pod:194
28210 msgid "B<-o allow_other>"
28211 msgstr ""
28212
28213 #. type: textblock
28214 #: ../fuse/guestmount.pod:196
28215 msgid "Allow other users to see the filesystem."
28216 msgstr ""
28217
28218 #. type: =item
28219 #: ../fuse/guestmount.pod:198
28220 msgid "B<-o attr_timeout=N>"
28221 msgstr ""
28222
28223 #. type: textblock
28224 #: ../fuse/guestmount.pod:200
28225 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
28226 msgstr ""
28227
28228 #. type: =item
28229 #: ../fuse/guestmount.pod:202
28230 msgid "B<-o kernel_cache>"
28231 msgstr ""
28232
28233 #. type: textblock
28234 #: ../fuse/guestmount.pod:204
28235 msgid ""
28236 "Allow the kernel to cache files (reduces the number of reads that have to go "
28237 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
28238 "afford the extra memory usage."
28239 msgstr ""
28240
28241 #. type: =item
28242 #: ../fuse/guestmount.pod:208
28243 msgid "B<-o uid=N> B<-o gid=N>"
28244 msgstr ""
28245
28246 #. type: textblock
28247 #: ../fuse/guestmount.pod:210
28248 msgid ""
28249 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
28250 "the chosen values."
28251 msgstr ""
28252
28253 #. type: =item
28254 #: ../fuse/guestmount.pod:215
28255 msgid "B<-r> | B<--ro>"
28256 msgstr ""
28257
28258 #. type: textblock
28259 #: ../fuse/guestmount.pod:217
28260 msgid ""
28261 "Add devices and mount everything read-only.  Also disallow writes and make "
28262 "the disk appear read-only to FUSE."
28263 msgstr ""
28264
28265 #. type: textblock
28266 #: ../fuse/guestmount.pod:220
28267 msgid ""
28268 "This is highly recommended if you are not going to edit the guest disk.  If "
28269 "the guest is running and this option is I<not> supplied, then there is a "
28270 "strong risk of disk corruption in the guest.  We try to prevent this from "
28271 "happening, but it is not always possible."
28272 msgstr ""
28273
28274 #. type: textblock
28275 #: ../fuse/guestmount.pod:225
28276 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28277 msgstr ""
28278
28279 #. type: textblock
28280 #: ../fuse/guestmount.pod:229
28281 msgid "Enable SELinux support for the guest."
28282 msgstr ""
28283
28284 #. type: =item
28285 #: ../fuse/guestmount.pod:231
28286 msgid "B<-v> | B<--verbose>"
28287 msgstr ""
28288
28289 #. type: textblock
28290 #: ../fuse/guestmount.pod:233
28291 msgid "Enable verbose messages from underlying libguestfs."
28292 msgstr ""
28293
28294 #. type: =item
28295 #: ../fuse/guestmount.pod:235
28296 msgid "B<-V> | B<--version>"
28297 msgstr ""
28298
28299 #. type: textblock
28300 #: ../fuse/guestmount.pod:237
28301 msgid "Display the program version and exit."
28302 msgstr ""
28303
28304 #. type: =item
28305 #: ../fuse/guestmount.pod:239
28306 msgid "B<-w> | B<--rw>"
28307 msgstr ""
28308
28309 #. type: textblock
28310 #: ../fuse/guestmount.pod:244 ../fuse/guestmount.pod:265
28311 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28312 msgstr ""
28313
28314 #. type: =item
28315 #: ../fuse/guestmount.pod:246
28316 msgid "B<-x> | B<--trace>"
28317 msgstr ""
28318
28319 #. type: textblock
28320 #: ../fuse/guestmount.pod:248
28321 msgid "Trace libguestfs calls and entry into each FUSE function."
28322 msgstr ""
28323
28324 #. type: textblock
28325 #: ../fuse/guestmount.pod:250
28326 msgid "This also stops the daemon from forking into the background."
28327 msgstr ""
28328
28329 #. type: textblock
28330 #: ../fuse/guestmount.pod:271
28331 msgid ""
28332 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
28333 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, "
28334 "L<http://fuse.sf.net/>."
28335 msgstr ""
28336
28337 #. type: textblock
28338 #: ../fuse/guestmount.pod:286
28339 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
28340 msgstr ""
28341
28342 #. type: textblock
28343 #: ../tools/virt-win-reg.pl:37
28344 msgid ""
28345 "virt-win-reg - Export and merge Windows Registry entries from a Windows "
28346 "guest"
28347 msgstr ""
28348
28349 #. type: verbatim
28350 #: ../tools/virt-win-reg.pl:41
28351 #, no-wrap
28352 msgid ""
28353 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
28354 "\n"
28355 msgstr ""
28356
28357 #. type: verbatim
28358 #: ../tools/virt-win-reg.pl:43
28359 #, no-wrap
28360 msgid ""
28361 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
28362 "\n"
28363 msgstr ""
28364
28365 #. type: verbatim
28366 #: ../tools/virt-win-reg.pl:45
28367 #, no-wrap
28368 msgid ""
28369 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
28370 "\n"
28371 msgstr ""
28372
28373 #. type: verbatim
28374 #: ../tools/virt-win-reg.pl:47
28375 #, no-wrap
28376 msgid ""
28377 " virt-win-reg --merge domname [input.reg ...]\n"
28378 "\n"
28379 msgstr ""
28380
28381 #. type: verbatim
28382 #: ../tools/virt-win-reg.pl:49
28383 #, no-wrap
28384 msgid ""
28385 " virt-win-reg [--options] disk.img ... # instead of domname\n"
28386 "\n"
28387 msgstr ""
28388
28389 #. type: textblock
28390 #: ../tools/virt-win-reg.pl:53
28391 msgid ""
28392 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
28393 "virtual machines.  If you do this, you I<will> get irreversible disk "
28394 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
28395 "but doesn't catch all cases."
28396 msgstr ""
28397
28398 #. type: textblock
28399 #: ../tools/virt-win-reg.pl:58
28400 msgid ""
28401 "Modifying the Windows Registry is an inherently risky operation.  The format "
28402 "is deliberately obscure and undocumented, and Registry changes can leave the "
28403 "system unbootable.  Therefore when using the I<--merge> option, make sure "
28404 "you have a reliable backup first."
28405 msgstr ""
28406
28407 #. type: textblock
28408 #: ../tools/virt-win-reg.pl:65
28409 msgid ""
28410 "This program can export and merge Windows Registry entries from a Windows "
28411 "guest."
28412 msgstr ""
28413
28414 #. type: textblock
28415 #: ../tools/virt-win-reg.pl:68
28416 msgid ""
28417 "The first parameter is the libvirt guest name or the raw disk image of a "
28418 "Windows guest."
28419 msgstr ""
28420
28421 #. type: textblock
28422 #: ../tools/virt-win-reg.pl:71
28423 msgid ""
28424 "If I<--merge> is I<not> specified, then the chosen registry key is "
28425 "displayed/exported (recursively).  For example:"
28426 msgstr ""
28427
28428 #. type: verbatim
28429 #: ../tools/virt-win-reg.pl:74
28430 #, no-wrap
28431 msgid ""
28432 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
28433 "\n"
28434 msgstr ""
28435
28436 #. type: textblock
28437 #: ../tools/virt-win-reg.pl:76
28438 msgid "You can also display single values from within registry keys, for example:"
28439 msgstr ""
28440
28441 #. type: verbatim
28442 #: ../tools/virt-win-reg.pl:79
28443 #, no-wrap
28444 msgid ""
28445 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
28446 " $ virt-win-reg Windows7 $cvkey ProductName\n"
28447 " Windows 7 Enterprise\n"
28448 "\n"
28449 msgstr ""
28450
28451 #. type: textblock
28452 #: ../tools/virt-win-reg.pl:83
28453 msgid ""
28454 "With I<--merge>, you can merge a textual regedit file into the Windows "
28455 "Registry:"
28456 msgstr ""
28457
28458 #. type: verbatim
28459 #: ../tools/virt-win-reg.pl:86
28460 #, no-wrap
28461 msgid ""
28462 " $ virt-win-reg --merge Windows7 changes.reg\n"
28463 "\n"
28464 msgstr ""
28465
28466 #. type: =head1
28467 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
28468 msgid "NOTE"
28469 msgstr ""
28470
28471 #. type: textblock
28472 #: ../tools/virt-win-reg.pl:90
28473 msgid ""
28474 "This program is only meant for simple access to the registry.  If you want "
28475 "to do complicated things with the registry, we suggest you download the "
28476 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
28477 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
28478 "L<hivexregedit(1)>."
28479 msgstr ""
28480
28481 #. type: textblock
28482 #: ../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
28483 msgid "Display brief help."
28484 msgstr ""
28485
28486 #. type: textblock
28487 #: ../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
28488 msgid "Display version number and exit."
28489 msgstr ""
28490
28491 #. type: =item
28492 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
28493 msgid "B<--debug>"
28494 msgstr ""
28495
28496 #. type: textblock
28497 #: ../tools/virt-win-reg.pl:122
28498 msgid "Enable debugging messages."
28499 msgstr ""
28500
28501 #. type: =item
28502 #: ../tools/virt-win-reg.pl:128 ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127 ../tools/virt-list-partitions.pl:78
28503 msgid "B<--connect URI> | B<-c URI>"
28504 msgstr ""
28505
28506 #. type: textblock
28507 #: ../tools/virt-win-reg.pl:130 ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129 ../tools/virt-list-partitions.pl:80
28508 msgid ""
28509 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
28510 "to the default libvirt hypervisor."
28511 msgstr ""
28512
28513 #. type: textblock
28514 #: ../tools/virt-win-reg.pl:133 ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132 ../tools/virt-list-partitions.pl:83
28515 msgid ""
28516 "If you specify guest block devices directly, then libvirt is not used at "
28517 "all."
28518 msgstr ""
28519
28520 #. type: =item
28521 #: ../tools/virt-win-reg.pl:140 ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139 ../tools/virt-list-partitions.pl:90
28522 msgid "B<--format> raw"
28523 msgstr ""
28524
28525 #. type: textblock
28526 #: ../tools/virt-win-reg.pl:142 ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141 ../tools/virt-list-partitions.pl:92
28527 msgid ""
28528 "Specify the format of disk images given on the command line.  If this is "
28529 "omitted then the format is autodetected from the content of the disk image."
28530 msgstr ""
28531
28532 #. type: textblock
28533 #: ../tools/virt-win-reg.pl:146 ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145 ../tools/virt-list-partitions.pl:96
28534 msgid ""
28535 "If disk images are requested from libvirt, then this program asks libvirt "
28536 "for this information.  In this case, the value of the format parameter is "
28537 "ignored."
28538 msgstr ""
28539
28540 #. type: textblock
28541 #: ../tools/virt-win-reg.pl:150 ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149 ../tools/virt-list-partitions.pl:100
28542 msgid ""
28543 "If working with untrusted raw-format guest disk images, you should ensure "
28544 "the format is always specified."
28545 msgstr ""
28546
28547 #. type: =item
28548 #: ../tools/virt-win-reg.pl:157
28549 msgid "B<--merge>"
28550 msgstr ""
28551
28552 #. type: textblock
28553 #: ../tools/virt-win-reg.pl:159
28554 msgid ""
28555 "In merge mode, this merges a textual regedit file into the Windows Registry "
28556 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
28557 "displays or exports Registry entries instead."
28558 msgstr ""
28559
28560 #. type: textblock
28561 #: ../tools/virt-win-reg.pl:163
28562 msgid ""
28563 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
28564 "result in disk corruption.  However exporting (without this flag)  is always "
28565 "safe."
28566 msgstr ""
28567
28568 #. type: =item
28569 #: ../tools/virt-win-reg.pl:171
28570 msgid "B<--encoding> UTF-16LE|ASCII"
28571 msgstr ""
28572
28573 #. type: textblock
28574 #: ../tools/virt-win-reg.pl:173
28575 msgid ""
28576 "When merging (only), you may need to specify the encoding for strings to be "
28577 "used in the hive file.  This is explained in detail in "
28578 "L<Win::Hivex::Regedit(3)/ENCODING STRINGS>."
28579 msgstr ""
28580
28581 #. type: textblock
28582 #: ../tools/virt-win-reg.pl:177
28583 msgid ""
28584 "The default is to use UTF-16LE, which should work with recent versions of "
28585 "Windows."
28586 msgstr ""
28587
28588 #. type: =head1
28589 #: ../tools/virt-win-reg.pl:402
28590 msgid "SUPPORTED SYSTEMS"
28591 msgstr ""
28592
28593 #. type: textblock
28594 #: ../tools/virt-win-reg.pl:404
28595 msgid ""
28596 "The program currently supports Windows NT-derived guests starting with "
28597 "Windows XP through to at least Windows 7."
28598 msgstr ""
28599
28600 #. type: textblock
28601 #: ../tools/virt-win-reg.pl:407
28602 msgid ""
28603 "Registry support is done for C<HKEY_LOCAL_MACHINE\\SAM>, "
28604 "C<HKEY_LOCAL_MACHINE\\SECURITY>, C<HKEY_LOCAL_MACHINE\\SOFTWARE>, "
28605 "C<HKEY_LOCAL_MACHINE\\SYSTEM> and C<HKEY_USERS\\.DEFAULT>."
28606 msgstr ""
28607
28608 #. type: textblock
28609 #: ../tools/virt-win-reg.pl:411
28610 msgid ""
28611 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
28612 "C<HKEY_USERS>."
28613 msgstr ""
28614
28615 #. type: textblock
28616 #: ../tools/virt-win-reg.pl:414
28617 msgid ""
28618 "C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are B<not> supported at this "
28619 "time."
28620 msgstr ""
28621
28622 #. type: =head1
28623 #: ../tools/virt-win-reg.pl:417
28624 msgid "ENCODING"
28625 msgstr ""
28626
28627 #. type: textblock
28628 #: ../tools/virt-win-reg.pl:419
28629 msgid ""
28630 "C<virt-win-reg> expects that regedit files have already been reencoded in "
28631 "the local encoding.  Usually on Linux hosts, this means UTF-8 with "
28632 "Unix-style line endings.  Since Windows regedit files are often in UTF-16LE "
28633 "with Windows-style line endings, you may need to reencode the whole file "
28634 "before or after processing."
28635 msgstr ""
28636
28637 #. type: textblock
28638 #: ../tools/virt-win-reg.pl:425
28639 msgid ""
28640 "To reencode a file from Windows format to Linux (before processing it with "
28641 "the I<--merge> option), you would do something like this:"
28642 msgstr ""
28643
28644 #. type: verbatim
28645 #: ../tools/virt-win-reg.pl:428
28646 #, no-wrap
28647 msgid ""
28648 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
28649 "\n"
28650 msgstr ""
28651
28652 #. type: textblock
28653 #: ../tools/virt-win-reg.pl:430
28654 msgid ""
28655 "To go in the opposite direction, after exporting and before sending the file "
28656 "to a Windows user, do something like this:"
28657 msgstr ""
28658
28659 #. type: verbatim
28660 #: ../tools/virt-win-reg.pl:433
28661 #, no-wrap
28662 msgid ""
28663 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
28664 "\n"
28665 msgstr ""
28666
28667 #. type: textblock
28668 #: ../tools/virt-win-reg.pl:435
28669 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
28670 msgstr ""
28671
28672 #. type: textblock
28673 #: ../tools/virt-win-reg.pl:437
28674 msgid ""
28675 "If you are unsure about the current encoding, use the L<file(1)> command.  "
28676 "Recent versions of Windows regedit.exe produce a UTF-16LE file with "
28677 "Windows-style (CRLF) line endings, like this:"
28678 msgstr ""
28679
28680 #. type: verbatim
28681 #: ../tools/virt-win-reg.pl:441
28682 #, no-wrap
28683 msgid ""
28684 " $ file software.reg\n"
28685 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
28686 " with CRLF line terminators\n"
28687 "\n"
28688 msgstr ""
28689
28690 #. type: textblock
28691 #: ../tools/virt-win-reg.pl:445
28692 msgid "This file would need conversion before you could I<--merge> it."
28693 msgstr ""
28694
28695 #. type: =head1
28696 #: ../tools/virt-win-reg.pl:447
28697 msgid "CurrentControlSet etc."
28698 msgstr ""
28699
28700 #. type: textblock
28701 #: ../tools/virt-win-reg.pl:449
28702 msgid ""
28703 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
28704 "Registry at the level of the hive file, and therefore you cannot modify "
28705 "these."
28706 msgstr ""
28707
28708 #. type: textblock
28709 #: ../tools/virt-win-reg.pl:453
28710 msgid ""
28711 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
28712 "circumstances it might refer to another control set.  The way to find out is "
28713 "to look at the C<HKLM\\SYSTEM\\Select> key:"
28714 msgstr ""
28715
28716 #. type: verbatim
28717 #: ../tools/virt-win-reg.pl:457
28718 #, no-wrap
28719 msgid ""
28720 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
28721 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
28722 " \"Current\"=dword:00000001\n"
28723 " \"Default\"=dword:00000001\n"
28724 " \"Failed\"=dword:00000000\n"
28725 " \"LastKnownGood\"=dword:00000002\n"
28726 "\n"
28727 msgstr ""
28728
28729 #. type: textblock
28730 #: ../tools/virt-win-reg.pl:464
28731 msgid "\"Current\" is the one which Windows will choose when it boots."
28732 msgstr ""
28733
28734 #. type: textblock
28735 #: ../tools/virt-win-reg.pl:466
28736 msgid "Similarly, other C<Current...> keys in the path may need to be replaced."
28737 msgstr ""
28738
28739 #. type: =head1
28740 #: ../tools/virt-win-reg.pl:469
28741 msgid "WINDOWS TIPS"
28742 msgstr ""
28743
28744 #. type: textblock
28745 #: ../tools/virt-win-reg.pl:471
28746 msgid ""
28747 "Note that some of these tips modify the guest disk image.  The guest I<must> "
28748 "be shut off, else you will get disk corruption."
28749 msgstr ""
28750
28751 #. type: =head2
28752 #: ../tools/virt-win-reg.pl:474
28753 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
28754 msgstr ""
28755
28756 #. type: textblock
28757 #: ../tools/virt-win-reg.pl:476
28758 msgid ""
28759 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
28760 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
28761 "is uploaded into C<C:\\>:"
28762 msgstr ""
28763
28764 #. type: verbatim
28765 #: ../tools/virt-win-reg.pl:480
28766 #, no-wrap
28767 msgid ""
28768 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
28769 "\n"
28770 msgstr ""
28771
28772 #. type: textblock
28773 #: ../tools/virt-win-reg.pl:482
28774 msgid "Prepare a regedit file containing the registry change:"
28775 msgstr ""
28776
28777 #. type: verbatim
28778 #: ../tools/virt-win-reg.pl:484
28779 #, no-wrap
28780 msgid ""
28781 " cat > test.reg <<'EOF'\n"
28782 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
28783 " \"Test\"=\"c:\\\\test.bat\"\n"
28784 " EOF\n"
28785 "\n"
28786 msgstr ""
28787
28788 #. type: textblock
28789 #: ../tools/virt-win-reg.pl:489
28790 msgid ""
28791 "In this example we use the key C<RunOnce> which means that the script will "
28792 "run precisely once when the first user logs in.  If you want it to run every "
28793 "time a user logs in, replace C<RunOnce> with C<Run>."
28794 msgstr ""
28795
28796 #. type: textblock
28797 #: ../tools/virt-win-reg.pl:493
28798 msgid "Now update the registry:"
28799 msgstr ""
28800
28801 #. type: verbatim
28802 #: ../tools/virt-win-reg.pl:495
28803 #, no-wrap
28804 msgid ""
28805 " virt-win-reg --merge WindowsGuest test.reg\n"
28806 "\n"
28807 msgstr ""
28808
28809 #. type: =head2
28810 #: ../tools/virt-win-reg.pl:497
28811 msgid "INSTALLING A SERVICE"
28812 msgstr ""
28813
28814 #. type: textblock
28815 #: ../tools/virt-win-reg.pl:499
28816 msgid ""
28817 "This section assumes you are familiar with Windows services, and you either "
28818 "have a program which handles the Windows Service Control Protocol directly "
28819 "or you want to run any program using a service wrapper like SrvAny or the "
28820 "free RHSrvAny."
28821 msgstr ""
28822
28823 #. type: textblock
28824 #: ../tools/virt-win-reg.pl:504
28825 msgid ""
28826 "First upload the program and optionally the service wrapper.  In this case "
28827 "the test program is called C<test.exe> and we are using the RHSrvAny "
28828 "wrapper:"
28829 msgstr ""
28830
28831 #. type: verbatim
28832 #: ../tools/virt-win-reg.pl:508
28833 #, no-wrap
28834 msgid ""
28835 " guestfish -i -d WindowsGuest <<EOF\n"
28836 "   upload rhsrvany.exe /rhsrvany.exe\n"
28837 "   upload test.exe /test.exe\n"
28838 " EOF\n"
28839 "\n"
28840 msgstr ""
28841
28842 #. type: textblock
28843 #: ../tools/virt-win-reg.pl:513
28844 msgid ""
28845 "Prepare a regedit file containing the registry changes.  In this example, "
28846 "the first registry change is needed for the service itself or the service "
28847 "wrapper (if used).  The second registry change is only needed because I am "
28848 "using the RHSrvAny service wrapper."
28849 msgstr ""
28850
28851 #. type: verbatim
28852 #: ../tools/virt-win-reg.pl:518
28853 #, no-wrap
28854 msgid ""
28855 " cat > service.reg <<'EOF'\n"
28856 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
28857 " \"Type\"=dword:00000010\n"
28858 " \"Start\"=dword:00000002\n"
28859 " \"ErrorControl\"=dword:00000001\n"
28860 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
28861 " \"DisplayName\"=\"RHSrvAny\"\n"
28862 " \"ObjectName\"=\"NetworkService\"\n"
28863 " \n"
28864 msgstr ""
28865
28866 #. type: verbatim
28867 #: ../tools/virt-win-reg.pl:527
28868 #, no-wrap
28869 msgid ""
28870 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
28871 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
28872 " \"PWD\"=\"c:\\\\Temp\"\n"
28873 " EOF\n"
28874 "\n"
28875 msgstr ""
28876
28877 #. type: textblock
28878 #: ../tools/virt-win-reg.pl:538
28879 msgid ""
28880 "For use of C<ControlSet001> see the section above in this manual page.  You "
28881 "may need to adjust this according to the control set that is in use by the "
28882 "guest."
28883 msgstr ""
28884
28885 #. type: textblock
28886 #: ../tools/virt-win-reg.pl:544
28887 msgid ""
28888 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
28889 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
28890 "privileged account."
28891 msgstr ""
28892
28893 #. type: textblock
28894 #: ../tools/virt-win-reg.pl:550
28895 msgid ""
28896 "For the meaning of the magic numbers, see this Microsoft KB article: "
28897 "L<http://support.microsoft.com/kb/103000>."
28898 msgstr ""
28899
28900 #. type: textblock
28901 #: ../tools/virt-win-reg.pl:555
28902 msgid "Update the registry:"
28903 msgstr ""
28904
28905 #. type: verbatim
28906 #: ../tools/virt-win-reg.pl:557
28907 #, no-wrap
28908 msgid ""
28909 " virt-win-reg --merge WindowsGuest service.reg\n"
28910 "\n"
28911 msgstr ""
28912
28913 #. type: =head1
28914 #: ../tools/virt-win-reg.pl:559 ../tools/virt-list-filesystems.pl:182 ../tools/virt-tar.pl:279 ../tools/virt-make-fs.pl:532 ../tools/virt-list-partitions.pl:250
28915 msgid "SHELL QUOTING"
28916 msgstr ""
28917
28918 #. type: textblock
28919 #: ../tools/virt-win-reg.pl:561
28920 msgid ""
28921 "Be careful when passing parameters containing C<\\> (backslash) in the "
28922 "shell.  Usually you will have to use 'single quotes' or double backslashes "
28923 "(but not both) to protect them from the shell."
28924 msgstr ""
28925
28926 #. type: textblock
28927 #: ../tools/virt-win-reg.pl:565
28928 msgid "Paths and value names are case-insensitive."
28929 msgstr ""
28930
28931 #. type: textblock
28932 #: ../tools/virt-win-reg.pl:567 ../tools/virt-list-filesystems.pl:184 ../tools/virt-tar.pl:281 ../tools/virt-make-fs.pl:534 ../tools/virt-list-partitions.pl:252
28933 msgid ""
28934 "Libvirt guest names can contain arbitrary characters, some of which have "
28935 "meaning to the shell such as C<#> and space.  You may need to quote or "
28936 "escape these characters on the command line.  See the shell manual page "
28937 "L<sh(1)> for details."
28938 msgstr ""
28939
28940 #. type: textblock
28941 #: ../tools/virt-win-reg.pl:574
28942 msgid ""
28943 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, "
28944 "L<guestfish(1)>, L<virt-cat(1)>, L<Sys::Guestfs(3)>, "
28945 "L<Sys::Guestfs::Lib(3)>, L<Win::Hivex(3)>, L<Win::Hivex::Regedit(3)>, "
28946 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
28947 msgstr ""
28948
28949 #. type: textblock
28950 #: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:555
28951 msgid ""
28952 "When reporting bugs, please enable debugging and capture the I<complete> "
28953 "output:"
28954 msgstr ""
28955
28956 #. type: verbatim
28957 #: ../tools/virt-win-reg.pl:592
28958 #, no-wrap
28959 msgid ""
28960 " export LIBGUESTFS_DEBUG=1\n"
28961 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
28962 "\n"
28963 msgstr ""
28964
28965 #. type: textblock
28966 #: ../tools/virt-win-reg.pl:595
28967 msgid ""
28968 "Attach /tmp/virt-win-reg.log to a new bug report at "
28969 "L<https://bugzilla.redhat.com/>"
28970 msgstr ""
28971
28972 #. type: =head1
28973 #: ../tools/virt-win-reg.pl:598 ../tools/virt-list-filesystems.pl:202 ../tools/virt-tar.pl:301 ../tools/virt-make-fs.pl:564 ../tools/virt-list-partitions.pl:269
28974 msgid "AUTHOR"
28975 msgstr ""
28976
28977 #. type: textblock
28978 #: ../tools/virt-win-reg.pl:600 ../tools/virt-list-filesystems.pl:204 ../tools/virt-tar.pl:303 ../tools/virt-make-fs.pl:566 ../tools/virt-list-partitions.pl:271
28979 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
28980 msgstr ""
28981
28982 #. type: textblock
28983 #: ../tools/virt-win-reg.pl:604 ../tools/virt-make-fs.pl:570
28984 msgid "Copyright (C) 2010 Red Hat Inc."
28985 msgstr ""
28986
28987 #. type: textblock
28988 #: ../tools/virt-list-filesystems.pl:32
28989 msgid "virt-list-filesystems - List filesystems in a virtual machine or disk image"
28990 msgstr ""
28991
28992 #. type: verbatim
28993 #: ../tools/virt-list-filesystems.pl:36
28994 #, no-wrap
28995 msgid ""
28996 " virt-list-filesystems [--options] domname\n"
28997 "\n"
28998 msgstr ""
28999
29000 #. type: verbatim
29001 #: ../tools/virt-list-filesystems.pl:38
29002 #, no-wrap
29003 msgid ""
29004 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
29005 "\n"
29006 msgstr ""
29007
29008 #. type: textblock
29009 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
29010 msgid ""
29011 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
29012 "replacement."
29013 msgstr ""
29014
29015 #. type: textblock
29016 #: ../tools/virt-list-filesystems.pl:45
29017 msgid ""
29018 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
29019 "are contained in a virtual machine or disk image."
29020 msgstr ""
29021
29022 #. type: textblock
29023 #: ../tools/virt-list-filesystems.pl:49
29024 msgid ""
29025 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
29026 "functionality.  For more complex cases you should look at the "
29027 "L<guestfish(1)> tool."
29028 msgstr ""
29029
29030 #. type: =item
29031 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
29032 msgid "B<-l> | B<--long>"
29033 msgstr ""
29034
29035 #. type: textblock
29036 #: ../tools/virt-list-filesystems.pl:108
29037 msgid ""
29038 "With this option, C<virt-list-filesystems> displays the type of each "
29039 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
29040 msgstr ""
29041
29042 #. type: =item
29043 #: ../tools/virt-list-filesystems.pl:115
29044 msgid "B<-a> | B<--all>"
29045 msgstr ""
29046
29047 #. type: textblock
29048 #: ../tools/virt-list-filesystems.pl:117
29049 msgid ""
29050 "Normally we only show mountable filesystems.  If this option is given then "
29051 "swap devices are shown too."
29052 msgstr ""
29053
29054 #. type: textblock
29055 #: ../tools/virt-list-filesystems.pl:191
29056 msgid ""
29057 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, "
29058 "L<virt-filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, "
29059 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29060 msgstr ""
29061
29062 #. type: textblock
29063 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
29064 msgid "Copyright (C) 2009 Red Hat Inc."
29065 msgstr ""
29066
29067 #. type: textblock
29068 #: ../tools/virt-tar.pl:33
29069 msgid "virt-tar - Extract or upload files to a virtual machine"
29070 msgstr ""
29071
29072 #. type: verbatim
29073 #: ../tools/virt-tar.pl:37
29074 #, no-wrap
29075 msgid ""
29076 " virt-tar [--options] -x domname directory tarball\n"
29077 "\n"
29078 msgstr ""
29079
29080 #. type: verbatim
29081 #: ../tools/virt-tar.pl:39
29082 #, no-wrap
29083 msgid ""
29084 " virt-tar [--options] -u domname tarball directory\n"
29085 "\n"
29086 msgstr ""
29087
29088 #. type: verbatim
29089 #: ../tools/virt-tar.pl:41
29090 #, no-wrap
29091 msgid ""
29092 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
29093 "\n"
29094 msgstr ""
29095
29096 #. type: verbatim
29097 #: ../tools/virt-tar.pl:43
29098 #, no-wrap
29099 msgid ""
29100 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
29101 "\n"
29102 msgstr ""
29103
29104 #. type: textblock
29105 #: ../tools/virt-tar.pl:47
29106 msgid ""
29107 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, "
29108 "L<virt-tar-in(1)>, L<virt-tar-out(1)> as replacements."
29109 msgstr ""
29110
29111 #. type: textblock
29112 #: ../tools/virt-tar.pl:52
29113 msgid "Download C</home> from the VM into a local tarball:"
29114 msgstr ""
29115
29116 #. type: verbatim
29117 #: ../tools/virt-tar.pl:54
29118 #, no-wrap
29119 msgid ""
29120 " virt-tar -x domname /home home.tar\n"
29121 "\n"
29122 msgstr ""
29123
29124 #. type: verbatim
29125 #: ../tools/virt-tar.pl:56
29126 #, no-wrap
29127 msgid ""
29128 " virt-tar -zx domname /home home.tar.gz\n"
29129 "\n"
29130 msgstr ""
29131
29132 #. type: textblock
29133 #: ../tools/virt-tar.pl:58
29134 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
29135 msgstr ""
29136
29137 #. type: verbatim
29138 #: ../tools/virt-tar.pl:60
29139 #, no-wrap
29140 msgid ""
29141 " virt-tar -u domname uploadstuff.tar /tmp\n"
29142 "\n"
29143 msgstr ""
29144
29145 #. type: verbatim
29146 #: ../tools/virt-tar.pl:62
29147 #, no-wrap
29148 msgid ""
29149 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
29150 "\n"
29151 msgstr ""
29152
29153 #. type: textblock
29154 #: ../tools/virt-tar.pl:66
29155 msgid ""
29156 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
29157 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
29158 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
29159 msgstr ""
29160
29161 #. type: textblock
29162 #: ../tools/virt-tar.pl:71
29163 msgid ""
29164 "You can use I<-x> (extract) on live virtual machines, but you might get "
29165 "inconsistent results or errors if there is filesystem activity inside the "
29166 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
29167 "work, but the only way to guarantee consistent results is if the virtual "
29168 "machine is shut down."
29169 msgstr ""
29170
29171 #. type: textblock
29172 #: ../tools/virt-tar.pl:79
29173 msgid ""
29174 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
29175 "parts of a guest filesystem.  There are many possibilities: making backups, "
29176 "uploading data files, snooping on guest activity, fixing or customizing "
29177 "guests, etc."
29178 msgstr ""
29179
29180 #. type: textblock
29181 #: ../tools/virt-tar.pl:84
29182 msgid ""
29183 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
29184 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
29185 "should look at the L<guestfish(1)> tool."
29186 msgstr ""
29187
29188 #. type: textblock
29189 #: ../tools/virt-tar.pl:88
29190 msgid ""
29191 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
29192 "its contents (recursively) from the virtual machine into a local tarball.  "
29193 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
29194 "virtual machine.  You cannot use these two options together."
29195 msgstr ""
29196
29197 #. type: textblock
29198 #: ../tools/virt-tar.pl:94
29199 msgid ""
29200 "In addition, you may need to use the I<-z> (gZip) option to enable "
29201 "compression.  When uploading, you have to specify I<-z> if the upload file "
29202 "is compressed because virt-tar won't detect this on its own."
29203 msgstr ""
29204
29205 #. type: textblock
29206 #: ../tools/virt-tar.pl:98
29207 msgid ""
29208 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
29209 "example it cannot do PKZip files or bzip2 compression.  If you want that "
29210 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
29211 "the L<libguestfs(3)> API)."
29212 msgstr ""
29213
29214 #. type: =item
29215 #: ../tools/virt-tar.pl:156
29216 msgid "B<-x> | B<--extract> | B<--download>"
29217 msgstr ""
29218
29219 #. type: =item
29220 #: ../tools/virt-tar.pl:158
29221 msgid "B<-u> | B<--upload>"
29222 msgstr ""
29223
29224 #. type: textblock
29225 #: ../tools/virt-tar.pl:160
29226 msgid ""
29227 "Use I<-x> to extract (download) a directory from a virtual machine to a "
29228 "local tarball."
29229 msgstr ""
29230
29231 #. type: textblock
29232 #: ../tools/virt-tar.pl:163
29233 msgid ""
29234 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
29235 "Please read the L</WARNING> section above before using this option."
29236 msgstr ""
29237
29238 #. type: textblock
29239 #: ../tools/virt-tar.pl:167
29240 msgid "You must specify exactly one of these options."
29241 msgstr ""
29242
29243 #. type: =item
29244 #: ../tools/virt-tar.pl:173
29245 msgid "B<-z> | B<--gzip>"
29246 msgstr ""
29247
29248 #. type: textblock
29249 #: ../tools/virt-tar.pl:175
29250 msgid "Specify that the input or output tarball is gzip-compressed."
29251 msgstr ""
29252
29253 #. type: textblock
29254 #: ../tools/virt-tar.pl:288
29255 msgid ""
29256 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29257 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
29258 "L<virt-tar-out(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, "
29259 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29260 msgstr ""
29261
29262 #. type: textblock
29263 #: ../tools/virt-make-fs.pl:37
29264 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
29265 msgstr ""
29266
29267 #. type: verbatim
29268 #: ../tools/virt-make-fs.pl:41
29269 #, no-wrap
29270 msgid ""
29271 " virt-make-fs [--options] input.tar output.img\n"
29272 "\n"
29273 msgstr ""
29274
29275 #. type: verbatim
29276 #: ../tools/virt-make-fs.pl:43
29277 #, no-wrap
29278 msgid ""
29279 " virt-make-fs [--options] input.tar.gz output.img\n"
29280 "\n"
29281 msgstr ""
29282
29283 #. type: verbatim
29284 #: ../tools/virt-make-fs.pl:45
29285 #, no-wrap
29286 msgid ""
29287 " virt-make-fs [--options] directory output.img\n"
29288 "\n"
29289 msgstr ""
29290
29291 #. type: textblock
29292 #: ../tools/virt-make-fs.pl:49
29293 msgid ""
29294 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
29295 "archive or some files in a directory.  It is similar to tools like "
29296 "L<mkisofs(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, "
29297 "it can create common filesystem types like ext2/3 or NTFS, which can be "
29298 "useful if you want to attach these filesystems to existing virtual machines "
29299 "(eg. to import large amounts of read-only data to a VM)."
29300 msgstr ""
29301
29302 #. type: textblock
29303 #: ../tools/virt-make-fs.pl:57
29304 msgid "Basic usage is:"
29305 msgstr ""
29306
29307 #. type: verbatim
29308 #: ../tools/virt-make-fs.pl:59
29309 #, no-wrap
29310 msgid ""
29311 " virt-make-fs input output\n"
29312 "\n"
29313 msgstr ""
29314
29315 #. type: textblock
29316 #: ../tools/virt-make-fs.pl:61
29317 msgid ""
29318 "where C<input> is either a directory containing files that you want to add, "
29319 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
29320 "C<output> is a disk image.  The input type is detected automatically.  The "
29321 "output disk image defaults to a raw ext2 image unless you specify extra "
29322 "flags (see L</OPTIONS> below)."
29323 msgstr ""
29324
29325 #. type: =head2
29326 #: ../tools/virt-make-fs.pl:67
29327 msgid "EXTRA SPACE"
29328 msgstr ""
29329
29330 #. type: textblock
29331 #: ../tools/virt-make-fs.pl:69
29332 msgid ""
29333 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
29334 "the files that it contains, but might have extra space.  Depending on how "
29335 "you are going to use the output, you might think this extra space is wasted "
29336 "and want to minimize it, or you might want to leave space so that more files "
29337 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
29338 "but you can use the I<--size> flag to leave space in the filesystem if you "
29339 "want it."
29340 msgstr ""
29341
29342 #. type: textblock
29343 #: ../tools/virt-make-fs.pl:77
29344 msgid ""
29345 "An alternative way to leave extra space but not make the output image any "
29346 "bigger is to use an alternative disk image format (instead of the default "
29347 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
29348 "image format (check your hypervisor supports this before using it).  This "
29349 "allows you to choose a large I<--size> but the extra space won't actually be "
29350 "allocated in the image until you try to store something in it."
29351 msgstr ""
29352
29353 #. type: textblock
29354 #: ../tools/virt-make-fs.pl:85
29355 msgid ""
29356 "Don't forget that you can also use local commands including L<resize2fs(8)> "
29357 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
29358 "to build another image from scratch."
29359 msgstr ""
29360
29361 #. type: =head3
29362 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123 ../tools/virt-make-fs.pl:142
29363 msgid "EXAMPLE"
29364 msgstr ""
29365
29366 #. type: verbatim
29367 #: ../tools/virt-make-fs.pl:91
29368 #, no-wrap
29369 msgid ""
29370 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
29371 "\n"
29372 msgstr ""
29373
29374 #. type: =head2
29375 #: ../tools/virt-make-fs.pl:93
29376 msgid "FILESYSTEM TYPE"
29377 msgstr ""
29378
29379 #. type: textblock
29380 #: ../tools/virt-make-fs.pl:95
29381 msgid ""
29382 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
29383 "libguestfs supports can be used (but I<not> read-only formats like "
29384 "ISO9660).  Here are some of the more common choices:"
29385 msgstr ""
29386
29387 #. type: =item
29388 #: ../tools/virt-make-fs.pl:101
29389 msgid "I<ext3>"
29390 msgstr ""
29391
29392 #. type: textblock
29393 #: ../tools/virt-make-fs.pl:103
29394 msgid ""
29395 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
29396 "you are not going to use the filesystem in a way that requires the journal, "
29397 "then this is just wasted overhead."
29398 msgstr ""
29399
29400 #. type: =item
29401 #: ../tools/virt-make-fs.pl:107
29402 msgid "I<ntfs> or I<vfat>"
29403 msgstr ""
29404
29405 #. type: textblock
29406 #: ../tools/virt-make-fs.pl:109
29407 msgid "Useful if exporting data to a Windows guest."
29408 msgstr ""
29409
29410 #. type: textblock
29411 #: ../tools/virt-make-fs.pl:111
29412 msgid ""
29413 "I<Note for vfat>: The tar archive or local directory must only contain files "
29414 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
29415 "program running within libguestfs is unable to change the ownership of "
29416 "non-root files, since vfat itself does not support this."
29417 msgstr ""
29418
29419 #. type: =item
29420 #: ../tools/virt-make-fs.pl:116
29421 msgid "I<minix>"
29422 msgstr ""
29423
29424 #. type: textblock
29425 #: ../tools/virt-make-fs.pl:118
29426 msgid ""
29427 "Lower overhead than C<ext2>, but certain limitations on filename length and "
29428 "total filesystem size."
29429 msgstr ""
29430
29431 #. type: verbatim
29432 #: ../tools/virt-make-fs.pl:125
29433 #, no-wrap
29434 msgid ""
29435 " virt-make-fs --type=minix input minixfs.img\n"
29436 "\n"
29437 msgstr ""
29438
29439 #. type: =head2
29440 #: ../tools/virt-make-fs.pl:127
29441 msgid "TO PARTITION OR NOT TO PARTITION"
29442 msgstr ""
29443
29444 #. type: textblock
29445 #: ../tools/virt-make-fs.pl:129
29446 msgid "Optionally virt-make-fs can add a partition table to the output disk."
29447 msgstr ""
29448
29449 #. type: textblock
29450 #: ../tools/virt-make-fs.pl:131
29451 msgid ""
29452 "Adding a partition can make the disk image more compatible with certain "
29453 "virtualized operating systems which don't expect to see a filesystem "
29454 "directly located on a block device (Linux doesn't care and will happily "
29455 "handle both types)."
29456 msgstr ""
29457
29458 #. type: textblock
29459 #: ../tools/virt-make-fs.pl:136
29460 msgid ""
29461 "On the other hand, if you have a partition table then the output image is no "
29462 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
29463 "directly on a partitioned disk image.  (However libguestfs tools such as "
29464 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
29465 msgstr ""
29466
29467 #. type: textblock
29468 #: ../tools/virt-make-fs.pl:144
29469 msgid "Add an MBR partition:"
29470 msgstr ""
29471
29472 #. type: verbatim
29473 #: ../tools/virt-make-fs.pl:146
29474 #, no-wrap
29475 msgid ""
29476 " virt-make-fs --partition -- input disk.img\n"
29477 "\n"
29478 msgstr ""
29479
29480 #. type: textblock
29481 #: ../tools/virt-make-fs.pl:148
29482 msgid ""
29483 "If the output disk image could be terabyte-sized or larger, it's better to "
29484 "use an EFI/GPT-compatible partition table:"
29485 msgstr ""
29486
29487 #. type: verbatim
29488 #: ../tools/virt-make-fs.pl:151
29489 #, no-wrap
29490 msgid ""
29491 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
29492 "\n"
29493 msgstr ""
29494
29495 #. type: textblock
29496 #: ../tools/virt-make-fs.pl:179
29497 msgid "Enable debugging information."
29498 msgstr ""
29499
29500 #. type: =item
29501 #: ../tools/virt-make-fs.pl:185
29502 msgid "B<--size=E<lt>NE<gt>>"
29503 msgstr ""
29504
29505 #. type: =item
29506 #: ../tools/virt-make-fs.pl:187
29507 msgid "B<--size=+E<lt>NE<gt>>"
29508 msgstr ""
29509
29510 #. type: =item
29511 #: ../tools/virt-make-fs.pl:189
29512 msgid "B<-s E<lt>NE<gt>>"
29513 msgstr ""
29514
29515 #. type: =item
29516 #: ../tools/virt-make-fs.pl:191
29517 msgid "B<-s +E<lt>NE<gt>>"
29518 msgstr ""
29519
29520 #. type: textblock
29521 #: ../tools/virt-make-fs.pl:193
29522 msgid "Use the I<--size> (or I<-s>) option to choose the size of the output image."
29523 msgstr ""
29524
29525 #. type: textblock
29526 #: ../tools/virt-make-fs.pl:196
29527 msgid ""
29528 "If this option is I<not> given, then the output image will be just large "
29529 "enough to contain all the files, with not much wasted space."
29530 msgstr ""
29531
29532 #. type: textblock
29533 #: ../tools/virt-make-fs.pl:199
29534 msgid ""
29535 "To choose a fixed size output disk, specify an absolute number followed by "
29536 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
29537 "Petabytes or Exabytes.  This must be large enough to contain all the input "
29538 "files, else you will get an error."
29539 msgstr ""
29540
29541 #. type: textblock
29542 #: ../tools/virt-make-fs.pl:204
29543 msgid ""
29544 "To leave extra space, specify C<+> (plus sign) and a number followed by "
29545 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
29546 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
29547 "the input files, and (approximately) an extra 200 MB free space."
29548 msgstr ""
29549
29550 #. type: textblock
29551 #: ../tools/virt-make-fs.pl:210
29552 msgid ""
29553 "Note that virt-make-fs estimates free space, and therefore will not produce "
29554 "filesystems containing precisely the free space requested.  (It is much more "
29555 "expensive and time-consuming to produce a filesystem which has precisely the "
29556 "desired free space)."
29557 msgstr ""
29558
29559 #. type: =item
29560 #: ../tools/virt-make-fs.pl:219
29561 msgid "B<--format=E<lt>fmtE<gt>>"
29562 msgstr ""
29563
29564 #. type: =item
29565 #: ../tools/virt-make-fs.pl:221
29566 msgid "B<-F E<lt>fmtE<gt>>"
29567 msgstr ""
29568
29569 #. type: textblock
29570 #: ../tools/virt-make-fs.pl:223
29571 msgid "Choose the output disk image format."
29572 msgstr ""
29573
29574 #. type: textblock
29575 #: ../tools/virt-make-fs.pl:225
29576 msgid "The default is C<raw> (raw disk image)."
29577 msgstr ""
29578
29579 #. type: textblock
29580 #: ../tools/virt-make-fs.pl:227
29581 msgid ""
29582 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
29583 "that would really make sense here is C<qcow2>."
29584 msgstr ""
29585
29586 #. type: =item
29587 #: ../tools/virt-make-fs.pl:234
29588 msgid "B<--type=E<lt>fsE<gt>>"
29589 msgstr ""
29590
29591 #. type: =item
29592 #: ../tools/virt-make-fs.pl:236
29593 msgid "B<-t E<lt>fsE<gt>>"
29594 msgstr ""
29595
29596 #. type: textblock
29597 #: ../tools/virt-make-fs.pl:238
29598 msgid "Choose the output filesystem type."
29599 msgstr ""
29600
29601 #. type: textblock
29602 #: ../tools/virt-make-fs.pl:240
29603 msgid "The default is C<ext2>."
29604 msgstr ""
29605
29606 #. type: textblock
29607 #: ../tools/virt-make-fs.pl:242
29608 msgid "Any filesystem which is supported read-write by libguestfs can be used here."
29609 msgstr ""
29610
29611 #. type: =item
29612 #: ../tools/virt-make-fs.pl:249
29613 msgid "B<--partition>"
29614 msgstr ""
29615
29616 #. type: =item
29617 #: ../tools/virt-make-fs.pl:251
29618 msgid "B<--partition=E<lt>parttypeE<gt>>"
29619 msgstr ""
29620
29621 #. type: textblock
29622 #: ../tools/virt-make-fs.pl:253
29623 msgid ""
29624 "If specified, this flag adds an MBR partition table to the output disk "
29625 "image."
29626 msgstr ""
29627
29628 #. type: textblock
29629 #: ../tools/virt-make-fs.pl:256
29630 msgid ""
29631 "You can change the partition table type, eg. I<--partition=gpt> for large "
29632 "disks."
29633 msgstr ""
29634
29635 #. type: textblock
29636 #: ../tools/virt-make-fs.pl:259
29637 msgid ""
29638 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
29639 "might consider the next parameter to be the partition type.  For example:"
29640 msgstr ""
29641
29642 #. type: verbatim
29643 #: ../tools/virt-make-fs.pl:263
29644 #, no-wrap
29645 msgid ""
29646 " virt-make-fs --partition input.tar ...\n"
29647 "\n"
29648 msgstr ""
29649
29650 #. type: textblock
29651 #: ../tools/virt-make-fs.pl:265
29652 msgid ""
29653 "would cause virt-make-fs to think you wanted to use a partition type of "
29654 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
29655 "dash) between options and the input file argument:"
29656 msgstr ""
29657
29658 #. type: verbatim
29659 #: ../tools/virt-make-fs.pl:269
29660 #, no-wrap
29661 msgid ""
29662 " virt-make-fs --partition -- input.tar ...\n"
29663 "\n"
29664 msgstr ""
29665
29666 #. type: textblock
29667 #: ../tools/virt-make-fs.pl:541
29668 msgid ""
29669 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
29670 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, "
29671 "L<guestfs(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
29672 msgstr ""
29673
29674 #. type: verbatim
29675 #: ../tools/virt-make-fs.pl:558
29676 #, no-wrap
29677 msgid ""
29678 " export LIBGUESTFS_DEBUG=1\n"
29679 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
29680 "\n"
29681 msgstr ""
29682
29683 #. type: textblock
29684 #: ../tools/virt-make-fs.pl:561
29685 msgid ""
29686 "Attach /tmp/virt-make-fs.log to a new bug report at "
29687 "L<https://bugzilla.redhat.com/>"
29688 msgstr ""
29689
29690 #. type: textblock
29691 #: ../tools/virt-list-partitions.pl:32
29692 msgid "virt-list-partitions - List partitions in a virtual machine or disk image"
29693 msgstr ""
29694
29695 #. type: verbatim
29696 #: ../tools/virt-list-partitions.pl:36
29697 #, no-wrap
29698 msgid ""
29699 " virt-list-partitions [--options] domname\n"
29700 "\n"
29701 msgstr ""
29702
29703 #. type: verbatim
29704 #: ../tools/virt-list-partitions.pl:38
29705 #, no-wrap
29706 msgid ""
29707 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
29708 "\n"
29709 msgstr ""
29710
29711 #. type: textblock
29712 #: ../tools/virt-list-partitions.pl:45
29713 msgid ""
29714 "C<virt-list-partitions> is a command line tool to list the partitions that "
29715 "are contained in a virtual machine or disk image.  It is mainly useful as a "
29716 "first step to using L<virt-resize(1)>."
29717 msgstr ""
29718
29719 #. type: textblock
29720 #: ../tools/virt-list-partitions.pl:50
29721 msgid ""
29722 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
29723 "functionality.  For more complex cases you should look at the "
29724 "L<guestfish(1)> tool."
29725 msgstr ""
29726
29727 #. type: =item
29728 #: ../tools/virt-list-partitions.pl:107
29729 msgid "B<-h> | B<--human-readable>"
29730 msgstr ""
29731
29732 #. type: textblock
29733 #: ../tools/virt-list-partitions.pl:109
29734 msgid "Show sizes in human-readable form (eg. \"1G\")."
29735 msgstr ""
29736
29737 #. type: textblock
29738 #: ../tools/virt-list-partitions.pl:117
29739 msgid ""
29740 "With this option, C<virt-list-partitions> displays the type and size of each "
29741 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
29742 msgstr ""
29743
29744 #. type: =item
29745 #: ../tools/virt-list-partitions.pl:124
29746 msgid "B<-t> | B<--total>"
29747 msgstr ""
29748
29749 #. type: textblock
29750 #: ../tools/virt-list-partitions.pl:126
29751 msgid "Display the total size of each block device (as a separate row or rows)."
29752 msgstr ""
29753
29754 #. type: textblock
29755 #: ../tools/virt-list-partitions.pl:259
29756 msgid ""
29757 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, "
29758 "L<virt-list-filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, "
29759 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29760 msgstr ""
29761
29762 #. type: textblock
29763 #: ../tools/virt-list-partitions.pl:275
29764 msgid "Copyright (C) 2009-2010 Red Hat Inc."
29765 msgstr ""