Version 1.10.6.
[libguestfs.git] / po-docs / ja.po
1 # SOME DESCRIPTIVE TITLE.
2 # Copyright (C) YEAR Free Software Foundation, Inc.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 #
5 #, fuzzy
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: PACKAGE VERSION\n"
9 "Report-Msgid-Bugs-To: libguestfs@redhat.com\n"
10 "POT-Creation-Date: 2011-07-27 15:55+0200\n"
11 "PO-Revision-Date: 2010-09-02 14:46+0100\n"
12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 "Language-Team: LANGUAGE <LL@li.org>\n"
14 "Language: \n"
15 "MIME-Version: 1.0\n"
16 "Content-Type: text/plain; charset=UTF-8\n"
17 "Content-Transfer-Encoding: 8bit\n"
18
19 # type: =head1
20 #. type: =head1
21 #: ../src/guestfs.pod:3 ../fish/guestfish.pod:3
22 #: ../test-tool/libguestfs-test-tool.pod:3 ../fuse/guestmount.pod:3
23 #: ../tools/virt-edit.pl:32 ../tools/virt-win-reg.pl:35
24 #: ../tools/virt-list-filesystems.pl:30 ../tools/virt-tar.pl:31
25 #: ../tools/virt-make-fs.pl:35 ../tools/virt-list-partitions.pl:30
26 msgid "NAME"
27 msgstr "名前"
28
29 # type: textblock
30 #. type: textblock
31 #: ../src/guestfs.pod:5
32 msgid "guestfs - Library for accessing and modifying virtual machine images"
33 msgstr ""
34
35 # type: =head1
36 #. type: =head1
37 #: ../src/guestfs.pod:7 ../fish/guestfish.pod:7
38 #: ../test-tool/libguestfs-test-tool.pod:7 ../fuse/guestmount.pod:7
39 #: ../tools/virt-edit.pl:36 ../tools/virt-win-reg.pl:39
40 #: ../tools/virt-list-filesystems.pl:34 ../tools/virt-tar.pl:35
41 #: ../tools/virt-make-fs.pl:39 ../tools/virt-list-partitions.pl:34
42 msgid "SYNOPSIS"
43 msgstr ""
44
45 # type: verbatim
46 #. type: verbatim
47 #: ../src/guestfs.pod:9
48 #, no-wrap
49 msgid ""
50 " #include <guestfs.h>\n"
51 " \n"
52 msgstr ""
53
54 # type: verbatim
55 #. type: verbatim
56 #: ../src/guestfs.pod:11
57 #, no-wrap
58 msgid ""
59 " guestfs_h *g = guestfs_create ();\n"
60 " guestfs_add_drive (g, \"guest.img\");\n"
61 " guestfs_launch (g);\n"
62 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
63 " guestfs_touch (g, \"/hello\");\n"
64 " guestfs_umount (g, \"/\");\n"
65 " guestfs_close (g);\n"
66 "\n"
67 msgstr ""
68
69 # type: verbatim
70 #. type: verbatim
71 #: ../src/guestfs.pod:19
72 #, no-wrap
73 msgid ""
74 " cc prog.c -o prog -lguestfs\n"
75 "or:\n"
76 " cc prog.c -o prog `pkg-config libguestfs --cflags --libs`\n"
77 "\n"
78 msgstr ""
79
80 # type: =head1
81 #. type: =head1
82 #: ../src/guestfs.pod:23 ../fish/guestfish.pod:30
83 #: ../test-tool/libguestfs-test-tool.pod:11 ../fuse/guestmount.pod:20
84 #: ../tools/virt-edit.pl:50 ../tools/virt-win-reg.pl:63
85 #: ../tools/virt-list-filesystems.pl:40 ../tools/virt-tar.pl:77
86 #: ../tools/virt-make-fs.pl:47 ../tools/virt-list-partitions.pl:40
87 msgid "DESCRIPTION"
88 msgstr ""
89
90 # type: textblock
91 #. type: textblock
92 #: ../src/guestfs.pod:25
93 msgid ""
94 "Libguestfs is a library for accessing and modifying guest disk images.  "
95 "Amongst the things this is good for: making batch configuration changes to "
96 "guests, getting disk used/free statistics (see also: virt-df), migrating "
97 "between virtualization systems (see also: virt-p2v), performing partial "
98 "backups, performing partial guest clones, cloning guests and changing "
99 "registry/UUID/hostname info, and much else besides."
100 msgstr ""
101
102 # type: textblock
103 #. type: textblock
104 #: ../src/guestfs.pod:33
105 msgid ""
106 "Libguestfs uses Linux kernel and qemu code, and can access any type of guest "
107 "filesystem that Linux and qemu can, including but not limited to: ext2/3/4, "
108 "btrfs, FAT and NTFS, LVM, many different disk partition schemes, qcow, "
109 "qcow2, vmdk."
110 msgstr ""
111
112 # type: textblock
113 #. type: textblock
114 #: ../src/guestfs.pod:38
115 msgid ""
116 "Libguestfs provides ways to enumerate guest storage (eg. partitions, LVs, "
117 "what filesystem is in each LV, etc.).  It can also run commands in the "
118 "context of the guest.  Also you can access filesystems over FUSE."
119 msgstr ""
120
121 # type: textblock
122 #. type: textblock
123 #: ../src/guestfs.pod:43
124 msgid ""
125 "Libguestfs is a library that can be linked with C and C++ management "
126 "programs (or management programs written in OCaml, Perl, Python, Ruby, Java, "
127 "PHP, Haskell or C#).  You can also use it from shell scripts or the command "
128 "line."
129 msgstr ""
130
131 # type: textblock
132 #. type: textblock
133 #: ../src/guestfs.pod:48
134 msgid ""
135 "You don't need to be root to use libguestfs, although obviously you do need "
136 "enough permissions to access the disk images."
137 msgstr ""
138
139 # type: textblock
140 #. type: textblock
141 #: ../src/guestfs.pod:51
142 msgid ""
143 "Libguestfs is a large API because it can do many things.  For a gentle "
144 "introduction, please read the L</API OVERVIEW> section next."
145 msgstr ""
146
147 # type: textblock
148 #. type: textblock
149 #: ../src/guestfs.pod:54
150 msgid ""
151 "There are also some example programs in the L<guestfs-examples(3)> manual "
152 "page."
153 msgstr ""
154
155 # type: =head1
156 #. type: =head1
157 #: ../src/guestfs.pod:57
158 msgid "API OVERVIEW"
159 msgstr ""
160
161 # type: textblock
162 #. type: textblock
163 #: ../src/guestfs.pod:59
164 msgid ""
165 "This section provides a gentler overview of the libguestfs API.  We also try "
166 "to group API calls together, where that may not be obvious from reading "
167 "about the individual calls in the main section of this manual."
168 msgstr ""
169
170 # type: =head2
171 #. type: =head2
172 #: ../src/guestfs.pod:64
173 msgid "HANDLES"
174 msgstr ""
175
176 # type: textblock
177 #. type: textblock
178 #: ../src/guestfs.pod:66
179 msgid ""
180 "Before you can use libguestfs calls, you have to create a handle.  Then you "
181 "must add at least one disk image to the handle, followed by launching the "
182 "handle, then performing whatever operations you want, and finally closing "
183 "the handle.  By convention we use the single letter C<g> for the name of the "
184 "handle variable, although of course you can use any name you want."
185 msgstr ""
186
187 # type: textblock
188 #. type: textblock
189 #: ../src/guestfs.pod:73
190 msgid "The general structure of all libguestfs-using programs looks like this:"
191 msgstr ""
192
193 # type: verbatim
194 #. type: verbatim
195 #: ../src/guestfs.pod:76
196 #, no-wrap
197 msgid ""
198 " guestfs_h *g = guestfs_create ();\n"
199 " \n"
200 msgstr ""
201
202 # type: verbatim
203 #. type: verbatim
204 #: ../src/guestfs.pod:78
205 #, no-wrap
206 msgid ""
207 " /* Call guestfs_add_drive additional times if there are\n"
208 "  * multiple disk images.\n"
209 "  */\n"
210 " guestfs_add_drive (g, \"guest.img\");\n"
211 " \n"
212 msgstr ""
213
214 # type: verbatim
215 #. type: verbatim
216 #: ../src/guestfs.pod:83
217 #, no-wrap
218 msgid ""
219 " /* Most manipulation calls won't work until you've launched\n"
220 "  * the handle 'g'.  You have to do this _after_ adding drives\n"
221 "  * and _before_ other commands.\n"
222 "  */\n"
223 " guestfs_launch (g);\n"
224 " \n"
225 msgstr ""
226
227 # type: verbatim
228 #. type: verbatim
229 #: ../src/guestfs.pod:89
230 #, no-wrap
231 msgid ""
232 " /* Now you can examine what partitions, LVs etc are available.\n"
233 "  */\n"
234 " char **partitions = guestfs_list_partitions (g);\n"
235 " char **logvols = guestfs_lvs (g);\n"
236 " \n"
237 msgstr ""
238
239 # type: verbatim
240 #. type: verbatim
241 #: ../src/guestfs.pod:94
242 #, no-wrap
243 msgid ""
244 " /* To access a filesystem in the image, you must mount it.\n"
245 "  */\n"
246 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
247 " \n"
248 msgstr ""
249
250 #. type: verbatim
251 #: ../src/guestfs.pod:98
252 #, no-wrap
253 msgid ""
254 " /* Now you can perform filesystem actions on the guest\n"
255 "  * disk image.\n"
256 "  */\n"
257 " guestfs_touch (g, \"/hello\");\n"
258 " \n"
259 msgstr ""
260
261 # type: verbatim
262 #. type: verbatim
263 #: ../src/guestfs.pod:103
264 #, no-wrap
265 msgid ""
266 " /* This is only needed for libguestfs < 1.5.24.  Since then\n"
267 "  * it is done automatically when you close the handle.  See\n"
268 "  * discussion of autosync in this page.\n"
269 "  */\n"
270 " guestfs_sync (g);\n"
271 " \n"
272 msgstr ""
273
274 # type: verbatim
275 #. type: verbatim
276 #: ../src/guestfs.pod:109
277 #, no-wrap
278 msgid ""
279 " /* Close the handle 'g'. */\n"
280 " guestfs_close (g);\n"
281 "\n"
282 msgstr ""
283
284 # type: textblock
285 #. type: textblock
286 #: ../src/guestfs.pod:112
287 msgid ""
288 "The code above doesn't include any error checking.  In real code you should "
289 "check return values carefully for errors.  In general all functions that "
290 "return integers return C<-1> on error, and all functions that return "
291 "pointers return C<NULL> on error.  See section L</ERROR HANDLING> below for "
292 "how to handle errors, and consult the documentation for each function call "
293 "below to see precisely how they return error indications.  See L<guestfs-"
294 "examples(3)> for fully worked examples."
295 msgstr ""
296
297 # type: =head2
298 #. type: =head2
299 #: ../src/guestfs.pod:121
300 msgid "DISK IMAGES"
301 msgstr ""
302
303 # type: textblock
304 #. type: textblock
305 #: ../src/guestfs.pod:123
306 msgid ""
307 "The image filename (C<\"guest.img\"> in the example above) could be a disk "
308 "image from a virtual machine, a L<dd(1)> copy of a physical hard disk, an "
309 "actual block device, or simply an empty file of zeroes that you have created "
310 "through L<posix_fallocate(3)>.  Libguestfs lets you do useful things to all "
311 "of these."
312 msgstr ""
313
314 # type: textblock
315 #. type: textblock
316 #: ../src/guestfs.pod:129
317 msgid ""
318 "The call you should use in modern code for adding drives is L</"
319 "guestfs_add_drive_opts>.  To add a disk image, allowing writes, and "
320 "specifying that the format is raw, do:"
321 msgstr ""
322
323 # type: verbatim
324 #. type: verbatim
325 #: ../src/guestfs.pod:133
326 #, no-wrap
327 msgid ""
328 " guestfs_add_drive_opts (g, filename,\n"
329 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
330 "                         -1);\n"
331 "\n"
332 msgstr ""
333
334 # type: textblock
335 #. type: textblock
336 #: ../src/guestfs.pod:137
337 msgid "You can add a disk read-only using:"
338 msgstr ""
339
340 # type: verbatim
341 #. type: verbatim
342 #: ../src/guestfs.pod:139
343 #, no-wrap
344 msgid ""
345 " guestfs_add_drive_opts (g, filename,\n"
346 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
347 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
348 "                         -1);\n"
349 "\n"
350 msgstr ""
351
352 # type: textblock
353 #. type: textblock
354 #: ../src/guestfs.pod:144
355 msgid ""
356 "or by calling the older function L</guestfs_add_drive_ro>.  In either case "
357 "libguestfs won't modify the file."
358 msgstr ""
359
360 # type: textblock
361 #. type: textblock
362 #: ../src/guestfs.pod:147
363 msgid ""
364 "Be extremely cautious if the disk image is in use, eg. if it is being used "
365 "by a virtual machine.  Adding it read-write will almost certainly cause disk "
366 "corruption, but adding it read-only is safe."
367 msgstr ""
368
369 # type: textblock
370 #. type: textblock
371 #: ../src/guestfs.pod:151
372 msgid ""
373 "You must add at least one disk image, and you may add multiple disk images.  "
374 "In the API, the disk images are usually referred to as C</dev/sda> (for the "
375 "first one you added), C</dev/sdb> (for the second one you added), etc."
376 msgstr ""
377
378 # type: textblock
379 #. type: textblock
380 #: ../src/guestfs.pod:156
381 msgid ""
382 "Once L</guestfs_launch> has been called you cannot add any more images.  You "
383 "can call L</guestfs_list_devices> to get a list of the device names, in the "
384 "order that you added them.  See also L</BLOCK DEVICE NAMING> below."
385 msgstr ""
386
387 # type: =head2
388 #. type: =head2
389 #: ../src/guestfs.pod:161
390 msgid "MOUNTING"
391 msgstr ""
392
393 #. type: textblock
394 #: ../src/guestfs.pod:163
395 msgid ""
396 "Before you can read or write files, create directories and so on in a disk "
397 "image that contains filesystems, you have to mount those filesystems using "
398 "L</guestfs_mount_options> or L</guestfs_mount_ro>.  If you already know that "
399 "a disk image contains (for example) one partition with a filesystem on that "
400 "partition, then you can mount it directly:"
401 msgstr ""
402
403 #. type: verbatim
404 #: ../src/guestfs.pod:170
405 #, no-wrap
406 msgid ""
407 " guestfs_mount_options (g, \"\", \"/dev/sda1\", \"/\");\n"
408 "\n"
409 msgstr ""
410
411 #. type: textblock
412 #: ../src/guestfs.pod:172
413 msgid ""
414 "where C</dev/sda1> means literally the first partition (C<1>) of the first "
415 "disk image that we added (C</dev/sda>).  If the disk contains Linux LVM2 "
416 "logical volumes you could refer to those instead (eg. C</dev/VG/LV>).  Note "
417 "that these are libguestfs virtual devices, and are nothing to do with host "
418 "devices."
419 msgstr ""
420
421 #. type: textblock
422 #: ../src/guestfs.pod:178
423 msgid ""
424 "If you are given a disk image and you don't know what it contains then you "
425 "have to find out.  Libguestfs can do that too: use L</"
426 "guestfs_list_partitions> and L</guestfs_lvs> to list possible partitions and "
427 "LVs, and either try mounting each to see what is mountable, or else examine "
428 "them with L</guestfs_vfs_type> or L</guestfs_file>.  To list just "
429 "filesystems, use L</guestfs_list_filesystems>."
430 msgstr ""
431
432 #. type: textblock
433 #: ../src/guestfs.pod:186
434 msgid ""
435 "Libguestfs also has a set of APIs for inspection of unknown disk images (see "
436 "L</INSPECTION> below).  But you might find it easier to look at higher level "
437 "programs built on top of libguestfs, in particular L<virt-inspector(1)>."
438 msgstr ""
439
440 #. type: textblock
441 #: ../src/guestfs.pod:191
442 msgid ""
443 "To mount a filesystem read-only, use L</guestfs_mount_ro>.  There are "
444 "several other variations of the C<guestfs_mount_*> call."
445 msgstr ""
446
447 # type: =head2
448 #. type: =head2
449 #: ../src/guestfs.pod:194
450 msgid "FILESYSTEM ACCESS AND MODIFICATION"
451 msgstr ""
452
453 # type: textblock
454 #. type: textblock
455 #: ../src/guestfs.pod:196
456 msgid ""
457 "The majority of the libguestfs API consists of fairly low-level calls for "
458 "accessing and modifying the files, directories, symlinks etc on mounted "
459 "filesystems.  There are over a hundred such calls which you can find listed "
460 "in detail below in this man page, and we don't even pretend to cover them "
461 "all in this overview."
462 msgstr ""
463
464 # type: textblock
465 #. type: textblock
466 #: ../src/guestfs.pod:202
467 msgid ""
468 "Specify filenames as full paths, starting with C<\"/\"> and including the "
469 "mount point."
470 msgstr ""
471
472 # type: textblock
473 #. type: textblock
474 #: ../src/guestfs.pod:205
475 msgid ""
476 "For example, if you mounted a filesystem at C<\"/\"> and you want to read "
477 "the file called C<\"etc/passwd\"> then you could do:"
478 msgstr ""
479
480 # type: verbatim
481 #. type: verbatim
482 #: ../src/guestfs.pod:208
483 #, no-wrap
484 msgid ""
485 " char *data = guestfs_cat (g, \"/etc/passwd\");\n"
486 "\n"
487 msgstr ""
488
489 # type: textblock
490 #. type: textblock
491 #: ../src/guestfs.pod:210
492 msgid ""
493 "This would return C<data> as a newly allocated buffer containing the full "
494 "content of that file (with some conditions: see also L</DOWNLOADING> below), "
495 "or C<NULL> if there was an error."
496 msgstr ""
497
498 # type: textblock
499 #. type: textblock
500 #: ../src/guestfs.pod:214
501 msgid ""
502 "As another example, to create a top-level directory on that filesystem "
503 "called C<\"var\"> you would do:"
504 msgstr ""
505
506 # type: verbatim
507 #. type: verbatim
508 #: ../src/guestfs.pod:217
509 #, no-wrap
510 msgid ""
511 " guestfs_mkdir (g, \"/var\");\n"
512 "\n"
513 msgstr ""
514
515 # type: textblock
516 #. type: textblock
517 #: ../src/guestfs.pod:219
518 msgid "To create a symlink you could do:"
519 msgstr ""
520
521 # type: verbatim
522 #. type: verbatim
523 #: ../src/guestfs.pod:221
524 #, no-wrap
525 msgid ""
526 " guestfs_ln_s (g, \"/etc/init.d/portmap\",\n"
527 "               \"/etc/rc3.d/S30portmap\");\n"
528 "\n"
529 msgstr ""
530
531 # type: textblock
532 #. type: textblock
533 #: ../src/guestfs.pod:224
534 msgid ""
535 "Libguestfs will reject attempts to use relative paths and there is no "
536 "concept of a current working directory."
537 msgstr ""
538
539 # type: textblock
540 #. type: textblock
541 #: ../src/guestfs.pod:227
542 msgid ""
543 "Libguestfs can return errors in many situations: for example if the "
544 "filesystem isn't writable, or if a file or directory that you requested "
545 "doesn't exist.  If you are using the C API (documented here)  you have to "
546 "check for those error conditions after each call.  (Other language bindings "
547 "turn these errors into exceptions)."
548 msgstr ""
549
550 # type: textblock
551 #. type: textblock
552 #: ../src/guestfs.pod:233
553 msgid ""
554 "File writes are affected by the per-handle umask, set by calling L</"
555 "guestfs_umask> and defaulting to 022.  See L</UMASK>."
556 msgstr ""
557
558 # type: =head2
559 #. type: =head2
560 #: ../src/guestfs.pod:236
561 msgid "PARTITIONING"
562 msgstr ""
563
564 # type: textblock
565 #. type: textblock
566 #: ../src/guestfs.pod:238
567 msgid ""
568 "Libguestfs contains API calls to read, create and modify partition tables on "
569 "disk images."
570 msgstr ""
571
572 # type: textblock
573 #. type: textblock
574 #: ../src/guestfs.pod:241
575 msgid ""
576 "In the common case where you want to create a single partition covering the "
577 "whole disk, you should use the L</guestfs_part_disk> call:"
578 msgstr ""
579
580 # type: verbatim
581 #. type: verbatim
582 #: ../src/guestfs.pod:245
583 #, no-wrap
584 msgid ""
585 " const char *parttype = \"mbr\";\n"
586 " if (disk_is_larger_than_2TB)\n"
587 "   parttype = \"gpt\";\n"
588 " guestfs_part_disk (g, \"/dev/sda\", parttype);\n"
589 "\n"
590 msgstr ""
591
592 # type: textblock
593 #. type: textblock
594 #: ../src/guestfs.pod:250
595 msgid ""
596 "Obviously this effectively wipes anything that was on that disk image before."
597 msgstr ""
598
599 # type: =head2
600 #. type: =head2
601 #: ../src/guestfs.pod:253
602 msgid "LVM2"
603 msgstr ""
604
605 # type: textblock
606 #. type: textblock
607 #: ../src/guestfs.pod:255
608 msgid ""
609 "Libguestfs provides access to a large part of the LVM2 API, such as L</"
610 "guestfs_lvcreate> and L</guestfs_vgremove>.  It won't make much sense unless "
611 "you familiarize yourself with the concepts of physical volumes, volume "
612 "groups and logical volumes."
613 msgstr ""
614
615 # type: textblock
616 #. type: textblock
617 #: ../src/guestfs.pod:260
618 msgid ""
619 "This author strongly recommends reading the LVM HOWTO, online at L<http://"
620 "tldp.org/HOWTO/LVM-HOWTO/>."
621 msgstr ""
622
623 # type: =head2
624 #. type: =head2
625 #: ../src/guestfs.pod:263
626 msgid "DOWNLOADING"
627 msgstr ""
628
629 #. type: textblock
630 #: ../src/guestfs.pod:265
631 msgid ""
632 "Use L</guestfs_cat> to download small, text only files.  This call is "
633 "limited to files which are less than 2 MB and which cannot contain any ASCII "
634 "NUL (C<\\0>) characters.  However the API is very simple to use."
635 msgstr ""
636
637 # type: textblock
638 #. type: textblock
639 #: ../src/guestfs.pod:269
640 msgid ""
641 "L</guestfs_read_file> can be used to read files which contain arbitrary 8 "
642 "bit data, since it returns a (pointer, size) pair.  However it is still "
643 "limited to \"small\" files, less than 2 MB."
644 msgstr ""
645
646 # type: textblock
647 #. type: textblock
648 #: ../src/guestfs.pod:273
649 msgid ""
650 "L</guestfs_download> can be used to download any file, with no limits on "
651 "content or size (even files larger than 4 GB)."
652 msgstr ""
653
654 # type: textblock
655 #. type: textblock
656 #: ../src/guestfs.pod:276
657 msgid ""
658 "To download multiple files, see L</guestfs_tar_out> and L</guestfs_tgz_out>."
659 msgstr ""
660
661 # type: =head2
662 #. type: =head2
663 #: ../src/guestfs.pod:279
664 msgid "UPLOADING"
665 msgstr ""
666
667 # type: textblock
668 #. type: textblock
669 #: ../src/guestfs.pod:281
670 msgid ""
671 "It's often the case that you want to write a file or files to the disk image."
672 msgstr ""
673
674 # type: textblock
675 #. type: textblock
676 #: ../src/guestfs.pod:284
677 msgid ""
678 "To write a small file with fixed content, use L</guestfs_write>.  To create "
679 "a file of all zeroes, use L</guestfs_truncate_size> (sparse) or L</"
680 "guestfs_fallocate64> (with all disk blocks allocated).  There are a variety "
681 "of other functions for creating test files, for example L</guestfs_fill> and "
682 "L</guestfs_fill_pattern>."
683 msgstr ""
684
685 # type: textblock
686 #. type: textblock
687 #: ../src/guestfs.pod:290
688 msgid ""
689 "To upload a single file, use L</guestfs_upload>.  This call has no limits on "
690 "file content or size (even files larger than 4 GB)."
691 msgstr ""
692
693 # type: textblock
694 #. type: textblock
695 #: ../src/guestfs.pod:293
696 msgid ""
697 "To upload multiple files, see L</guestfs_tar_in> and L</guestfs_tgz_in>."
698 msgstr ""
699
700 # type: textblock
701 #. type: textblock
702 #: ../src/guestfs.pod:295
703 msgid ""
704 "However the fastest way to upload I<large numbers of arbitrary files> is to "
705 "turn them into a squashfs or CD ISO (see L<mksquashfs(8)> and L<mkisofs(8)"
706 ">), then attach this using L</guestfs_add_drive_ro>.  If you add the drive "
707 "in a predictable way (eg. adding it last after all other drives) then you "
708 "can get the device name from L</guestfs_list_devices> and mount it directly "
709 "using L</guestfs_mount_ro>.  Note that squashfs images are sometimes non-"
710 "portable between kernel versions, and they don't support labels or UUIDs.  "
711 "If you want to pre-build an image or you need to mount it using a label or "
712 "UUID, use an ISO image instead."
713 msgstr ""
714
715 # type: =head2
716 #. type: =head2
717 #: ../src/guestfs.pod:306
718 msgid "COPYING"
719 msgstr ""
720
721 # type: textblock
722 #. type: textblock
723 #: ../src/guestfs.pod:308
724 msgid ""
725 "There are various different commands for copying between files and devices "
726 "and in and out of the guest filesystem.  These are summarised in the table "
727 "below."
728 msgstr ""
729
730 # type: =item
731 #. type: =item
732 #: ../src/guestfs.pod:314
733 msgid "B<file> to B<file>"
734 msgstr ""
735
736 # type: textblock
737 #. type: textblock
738 #: ../src/guestfs.pod:316
739 msgid ""
740 "Use L</guestfs_cp> to copy a single file, or L</guestfs_cp_a> to copy "
741 "directories recursively."
742 msgstr ""
743
744 # type: =item
745 #. type: =item
746 #: ../src/guestfs.pod:319
747 msgid "B<file or device> to B<file or device>"
748 msgstr ""
749
750 # type: textblock
751 #. type: textblock
752 #: ../src/guestfs.pod:321
753 msgid ""
754 "Use L</guestfs_dd> which efficiently uses L<dd(1)> to copy between files and "
755 "devices in the guest."
756 msgstr ""
757
758 # type: textblock
759 #. type: textblock
760 #: ../src/guestfs.pod:324
761 msgid "Example: duplicate the contents of an LV:"
762 msgstr ""
763
764 # type: verbatim
765 #. type: verbatim
766 #: ../src/guestfs.pod:326
767 #, no-wrap
768 msgid ""
769 " guestfs_dd (g, \"/dev/VG/Original\", \"/dev/VG/Copy\");\n"
770 "\n"
771 msgstr ""
772
773 # type: textblock
774 #. type: textblock
775 #: ../src/guestfs.pod:328
776 msgid ""
777 "The destination (C</dev/VG/Copy>) must be at least as large as the source "
778 "(C</dev/VG/Original>).  To copy less than the whole source device, use L</"
779 "guestfs_copy_size>."
780 msgstr ""
781
782 # type: =item
783 #. type: =item
784 #: ../src/guestfs.pod:332
785 msgid "B<file on the host> to B<file or device>"
786 msgstr ""
787
788 # type: textblock
789 #. type: textblock
790 #: ../src/guestfs.pod:334
791 msgid "Use L</guestfs_upload>.  See L</UPLOADING> above."
792 msgstr ""
793
794 # type: =item
795 #. type: =item
796 #: ../src/guestfs.pod:336
797 msgid "B<file or device> to B<file on the host>"
798 msgstr ""
799
800 # type: textblock
801 #. type: textblock
802 #: ../src/guestfs.pod:338
803 msgid "Use L</guestfs_download>.  See L</DOWNLOADING> above."
804 msgstr ""
805
806 # type: =head2
807 #. type: =head2
808 #: ../src/guestfs.pod:342
809 msgid "UPLOADING AND DOWNLOADING TO PIPES AND FILE DESCRIPTORS"
810 msgstr ""
811
812 # type: textblock
813 #. type: textblock
814 #: ../src/guestfs.pod:344
815 msgid ""
816 "Calls like L</guestfs_upload>, L</guestfs_download>, L</guestfs_tar_in>, L</"
817 "guestfs_tar_out> etc appear to only take filenames as arguments, so it "
818 "appears you can only upload and download to files.  However many Un*x-like "
819 "hosts let you use the special device files C</dev/stdin>, C</dev/stdout>, C</"
820 "dev/stderr> and C</dev/fd/N> to read and write from stdin, stdout, stderr, "
821 "and arbitrary file descriptor N."
822 msgstr ""
823
824 # type: textblock
825 #. type: textblock
826 #: ../src/guestfs.pod:352
827 msgid "For example, L<virt-cat(1)> writes its output to stdout by doing:"
828 msgstr ""
829
830 #. type: verbatim
831 #: ../src/guestfs.pod:355
832 #, no-wrap
833 msgid ""
834 " guestfs_download (g, filename, \"/dev/stdout\");\n"
835 "\n"
836 msgstr ""
837
838 #. type: textblock
839 #: ../src/guestfs.pod:357
840 msgid "and you can write tar output to a file descriptor C<fd> by doing:"
841 msgstr ""
842
843 #. type: verbatim
844 #: ../src/guestfs.pod:359
845 #, no-wrap
846 msgid ""
847 " char devfd[64];\n"
848 " snprintf (devfd, sizeof devfd, \"/dev/fd/%d\", fd);\n"
849 " guestfs_tar_out (g, \"/\", devfd);\n"
850 "\n"
851 msgstr ""
852
853 # type: =head2
854 #. type: =head2
855 #: ../src/guestfs.pod:363
856 msgid "LISTING FILES"
857 msgstr ""
858
859 # type: textblock
860 #. type: textblock
861 #: ../src/guestfs.pod:365
862 msgid ""
863 "L</guestfs_ll> is just designed for humans to read (mainly when using the "
864 "L<guestfish(1)>-equivalent command C<ll>)."
865 msgstr ""
866
867 # type: textblock
868 #. type: textblock
869 #: ../src/guestfs.pod:368
870 msgid ""
871 "L</guestfs_ls> is a quick way to get a list of files in a directory from "
872 "programs, as a flat list of strings."
873 msgstr ""
874
875 # type: textblock
876 #. type: textblock
877 #: ../src/guestfs.pod:371
878 msgid ""
879 "L</guestfs_readdir> is a programmatic way to get a list of files in a "
880 "directory, plus additional information about each one.  It is more "
881 "equivalent to using the L<readdir(3)> call on a local filesystem."
882 msgstr ""
883
884 # type: textblock
885 #. type: textblock
886 #: ../src/guestfs.pod:375
887 msgid ""
888 "L</guestfs_find> and L</guestfs_find0> can be used to recursively list files."
889 msgstr ""
890
891 # type: =head2
892 #. type: =head2
893 #: ../src/guestfs.pod:378
894 msgid "RUNNING COMMANDS"
895 msgstr ""
896
897 # type: textblock
898 #. type: textblock
899 #: ../src/guestfs.pod:380
900 msgid ""
901 "Although libguestfs is primarily an API for manipulating files inside guest "
902 "images, we also provide some limited facilities for running commands inside "
903 "guests."
904 msgstr ""
905
906 # type: textblock
907 #. type: textblock
908 #: ../src/guestfs.pod:384
909 msgid "There are many limitations to this:"
910 msgstr ""
911
912 # type: =item
913 #. type: =item
914 #: ../src/guestfs.pod:388 ../src/guestfs.pod:393 ../src/guestfs.pod:398
915 #: ../src/guestfs.pod:402 ../src/guestfs.pod:407 ../src/guestfs.pod:411
916 #: ../src/guestfs.pod:416 ../src/guestfs.pod:421 ../src/guestfs.pod:1064
917 #: ../src/guestfs.pod:1068 ../src/guestfs.pod:1072 ../src/guestfs.pod:1077
918 #: ../src/guestfs.pod:1085 ../src/guestfs.pod:1104 ../src/guestfs.pod:1112
919 #: ../src/guestfs.pod:1134 ../src/guestfs.pod:1138 ../src/guestfs.pod:1142
920 #: ../src/guestfs.pod:1146 ../src/guestfs.pod:1150 ../src/guestfs.pod:1154
921 #: ../src/guestfs.pod:1643 ../src/guestfs.pod:1648 ../src/guestfs.pod:1652
922 #: ../src/guestfs.pod:1753 ../src/guestfs.pod:1758 ../src/guestfs.pod:1762
923 #: ../src/guestfs.pod:1772 ../src/guestfs.pod:2007 ../src/guestfs.pod:2012
924 #: ../src/guestfs.pod:2018 ../src/guestfs.pod:2026 ../src/guestfs.pod:2380
925 #: ../src/guestfs.pod:2386 ../src/guestfs.pod:2391 ../src/guestfs.pod:2397
926 #: ../src/guestfs.pod:2968 ../src/guestfs.pod:2972 ../src/guestfs.pod:2976
927 #: ../src/guestfs.pod:2980 ../src/guestfs-actions.pod:15
928 #: ../src/guestfs-actions.pod:22 ../src/guestfs-actions.pod:577
929 #: ../src/guestfs-actions.pod:585 ../src/guestfs-actions.pod:592
930 #: ../src/guestfs-actions.pod:599 ../src/guestfs-actions.pod:1597
931 #: ../src/guestfs-actions.pod:1601 ../src/guestfs-actions.pod:1605
932 #: ../src/guestfs-actions.pod:1609 ../src/guestfs-actions.pod:1617
933 #: ../src/guestfs-actions.pod:1621 ../src/guestfs-actions.pod:1625
934 #: ../src/guestfs-actions.pod:1635 ../src/guestfs-actions.pod:1639
935 #: ../src/guestfs-actions.pod:1643 ../src/guestfs-actions.pod:1781
936 #: ../src/guestfs-actions.pod:1785 ../src/guestfs-actions.pod:1790
937 #: ../src/guestfs-actions.pod:1795 ../src/guestfs-actions.pod:1856
938 #: ../src/guestfs-actions.pod:1860 ../src/guestfs-actions.pod:1865
939 #: ../fish/guestfish.pod:443 ../fish/guestfish.pod:447
940 #: ../fish/guestfish.pod:451 ../fish/guestfish.pod:455
941 #: ../fish/guestfish-actions.pod:13 ../fish/guestfish-actions.pod:20
942 #: ../fish/guestfish-actions.pod:380 ../fish/guestfish-actions.pod:388
943 #: ../fish/guestfish-actions.pod:395 ../fish/guestfish-actions.pod:402
944 #: ../fish/guestfish-actions.pod:1069 ../fish/guestfish-actions.pod:1073
945 #: ../fish/guestfish-actions.pod:1077 ../fish/guestfish-actions.pod:1081
946 #: ../fish/guestfish-actions.pod:1089 ../fish/guestfish-actions.pod:1093
947 #: ../fish/guestfish-actions.pod:1097 ../fish/guestfish-actions.pod:1107
948 #: ../fish/guestfish-actions.pod:1111 ../fish/guestfish-actions.pod:1115
949 #: ../fish/guestfish-actions.pod:1205 ../fish/guestfish-actions.pod:1209
950 #: ../fish/guestfish-actions.pod:1214 ../fish/guestfish-actions.pod:1219
951 #: ../fish/guestfish-actions.pod:1261 ../fish/guestfish-actions.pod:1265
952 #: ../fish/guestfish-actions.pod:1270 ../tools/virt-edit.pl:351
953 #: ../tools/virt-edit.pl:356 ../tools/virt-edit.pl:361
954 #: ../tools/virt-edit.pl:372 ../tools/virt-edit.pl:376
955 #: ../tools/virt-win-reg.pl:536 ../tools/virt-win-reg.pl:542
956 #: ../tools/virt-win-reg.pl:548
957 msgid "*"
958 msgstr ""
959
960 # type: textblock
961 #. type: textblock
962 #: ../src/guestfs.pod:390
963 msgid ""
964 "The kernel version that the command runs under will be different from what "
965 "it expects."
966 msgstr ""
967
968 # type: textblock
969 #. type: textblock
970 #: ../src/guestfs.pod:395
971 msgid ""
972 "If the command needs to communicate with daemons, then most likely they "
973 "won't be running."
974 msgstr ""
975
976 # type: textblock
977 #. type: textblock
978 #: ../src/guestfs.pod:400
979 msgid "The command will be running in limited memory."
980 msgstr ""
981
982 # type: textblock
983 #. type: textblock
984 #: ../src/guestfs.pod:404
985 msgid ""
986 "The network may not be available unless you enable it (see L</"
987 "guestfs_set_network>)."
988 msgstr ""
989
990 # type: textblock
991 #. type: textblock
992 #: ../src/guestfs.pod:409
993 msgid "Only supports Linux guests (not Windows, BSD, etc)."
994 msgstr ""
995
996 # type: textblock
997 #. type: textblock
998 #: ../src/guestfs.pod:413
999 msgid ""
1000 "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
1001 msgstr ""
1002
1003 # type: textblock
1004 #. type: textblock
1005 #: ../src/guestfs.pod:418
1006 msgid ""
1007 "For SELinux guests, you may need to enable SELinux and load policy first.  "
1008 "See L</SELINUX> in this manpage."
1009 msgstr ""
1010
1011 # type: textblock
1012 #. type: textblock
1013 #: ../src/guestfs.pod:423
1014 msgid ""
1015 "I<Security:> It is not safe to run commands from untrusted, possibly "
1016 "malicious guests.  These commands may attempt to exploit your program by "
1017 "sending unexpected output.  They could also try to exploit the Linux kernel "
1018 "or qemu provided by the libguestfs appliance.  They could use the network "
1019 "provided by the libguestfs appliance to bypass ordinary network partitions "
1020 "and firewalls.  They could use the elevated privileges or different SELinux "
1021 "context of your program to their advantage."
1022 msgstr ""
1023
1024 # type: textblock
1025 #. type: textblock
1026 #: ../src/guestfs.pod:432
1027 msgid ""
1028 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
1029 "(a script which runs when the guest next boots normally), and to have this "
1030 "script run the commands you want in the normal context of the running guest, "
1031 "network security and so on.  For information about other security issues, "
1032 "see L</SECURITY>."
1033 msgstr ""
1034
1035 # type: textblock
1036 #. type: textblock
1037 #: ../src/guestfs.pod:440
1038 msgid ""
1039 "The two main API calls to run commands are L</guestfs_command> and L</"
1040 "guestfs_sh> (there are also variations)."
1041 msgstr ""
1042
1043 # type: textblock
1044 #. type: textblock
1045 #: ../src/guestfs.pod:443
1046 msgid ""
1047 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
1048 "shell globs, redirections, etc will work."
1049 msgstr ""
1050
1051 # type: =head2
1052 #. type: =head2
1053 #: ../src/guestfs.pod:446
1054 msgid "CONFIGURATION FILES"
1055 msgstr ""
1056
1057 # type: textblock
1058 #. type: textblock
1059 #: ../src/guestfs.pod:448
1060 msgid ""
1061 "To read and write configuration files in Linux guest filesystems, we "
1062 "strongly recommend using Augeas.  For example, Augeas understands how to "
1063 "read and write, say, a Linux shadow password file or X.org configuration "
1064 "file, and so avoids you having to write that code."
1065 msgstr ""
1066
1067 # type: textblock
1068 #. type: textblock
1069 #: ../src/guestfs.pod:453
1070 msgid ""
1071 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't "
1072 "document Augeas itself here because there is excellent documentation on the "
1073 "L<http://augeas.net/> website."
1074 msgstr ""
1075
1076 # type: textblock
1077 #. type: textblock
1078 #: ../src/guestfs.pod:457
1079 msgid ""
1080 "If you don't want to use Augeas (you fool!) then try calling L</"
1081 "guestfs_read_lines> to get the file as a list of lines which you can iterate "
1082 "over."
1083 msgstr ""
1084
1085 # type: =head2
1086 #. type: =head2
1087 #: ../src/guestfs.pod:461
1088 msgid "SELINUX"
1089 msgstr ""
1090
1091 # type: textblock
1092 #. type: textblock
1093 #: ../src/guestfs.pod:463
1094 msgid ""
1095 "We support SELinux guests.  To ensure that labeling happens correctly in "
1096 "SELinux guests, you need to enable SELinux and load the guest's policy:"
1097 msgstr ""
1098
1099 # type: =item
1100 #. type: =item
1101 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1257 ../src/guestfs.pod:1395
1102 #: ../src/guestfs.pod:2425
1103 msgid "1."
1104 msgstr ""
1105
1106 # type: textblock
1107 #. type: textblock
1108 #: ../src/guestfs.pod:471
1109 msgid "Before launching, do:"
1110 msgstr ""
1111
1112 # type: verbatim
1113 #. type: verbatim
1114 #: ../src/guestfs.pod:473
1115 #, no-wrap
1116 msgid ""
1117 " guestfs_set_selinux (g, 1);\n"
1118 "\n"
1119 msgstr ""
1120
1121 # type: =item
1122 #. type: =item
1123 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1261 ../src/guestfs.pod:1399
1124 #: ../src/guestfs.pod:2450
1125 msgid "2."
1126 msgstr ""
1127
1128 # type: textblock
1129 #. type: textblock
1130 #: ../src/guestfs.pod:477
1131 msgid ""
1132 "After mounting the guest's filesystem(s), load the policy.  This is best "
1133 "done by running the L<load_policy(8)> command in the guest itself:"
1134 msgstr ""
1135
1136 # type: verbatim
1137 #. type: verbatim
1138 #: ../src/guestfs.pod:481
1139 #, no-wrap
1140 msgid ""
1141 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
1142 "\n"
1143 msgstr ""
1144
1145 # type: textblock
1146 #. type: textblock
1147 #: ../src/guestfs.pod:483
1148 msgid ""
1149 "(Older versions of C<load_policy> require you to specify the name of the "
1150 "policy file)."
1151 msgstr ""
1152
1153 # type: =item
1154 #. type: =item
1155 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1405
1156 msgid "3."
1157 msgstr ""
1158
1159 # type: textblock
1160 #. type: textblock
1161 #: ../src/guestfs.pod:488
1162 msgid ""
1163 "Optionally, set the security context for the API.  The correct security "
1164 "context to use can only be known by inspecting the guest.  As an example:"
1165 msgstr ""
1166
1167 # type: verbatim
1168 #. type: verbatim
1169 #: ../src/guestfs.pod:492
1170 #, no-wrap
1171 msgid ""
1172 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
1173 "\n"
1174 msgstr ""
1175
1176 # type: textblock
1177 #. type: textblock
1178 #: ../src/guestfs.pod:496
1179 msgid "This will work for running commands and editing existing files."
1180 msgstr ""
1181
1182 # type: textblock
1183 #. type: textblock
1184 #: ../src/guestfs.pod:498
1185 msgid ""
1186 "When new files are created, you may need to label them explicitly, for "
1187 "example by running the external command C<restorecon pathname>."
1188 msgstr ""
1189
1190 # type: =head2
1191 #. type: =head2
1192 #: ../src/guestfs.pod:502
1193 msgid "UMASK"
1194 msgstr ""
1195
1196 # type: textblock
1197 #. type: textblock
1198 #: ../src/guestfs.pod:504
1199 msgid ""
1200 "Certain calls are affected by the current file mode creation mask (the "
1201 "\"umask\").  In particular ones which create files or directories, such as "
1202 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This affects "
1203 "either the default mode that the file is created with or modifies the mode "
1204 "that you supply."
1205 msgstr ""
1206
1207 # type: textblock
1208 #. type: textblock
1209 #: ../src/guestfs.pod:510
1210 msgid ""
1211 "The default umask is C<022>, so files are created with modes such as C<0644> "
1212 "and directories with C<0755>."
1213 msgstr ""
1214
1215 # type: textblock
1216 #. type: textblock
1217 #: ../src/guestfs.pod:513
1218 msgid ""
1219 "There are two ways to avoid being affected by umask.  Either set umask to 0 "
1220 "(call C<guestfs_umask (g, 0)> early after launching).  Or call L</"
1221 "guestfs_chmod> after creating each file or directory."
1222 msgstr ""
1223
1224 # type: textblock
1225 #. type: textblock
1226 #: ../src/guestfs.pod:517
1227 msgid "For more information about umask, see L<umask(2)>."
1228 msgstr ""
1229
1230 # type: =head1
1231 #. type: =head1
1232 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:765
1233 msgid "ENCRYPTED DISKS"
1234 msgstr ""
1235
1236 # type: textblock
1237 #. type: textblock
1238 #: ../src/guestfs.pod:521
1239 msgid ""
1240 "Libguestfs allows you to access Linux guests which have been encrypted using "
1241 "whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1242 "standard.  This includes nearly all whole disk encryption systems used by "
1243 "modern Linux guests."
1244 msgstr ""
1245
1246 # type: textblock
1247 #. type: textblock
1248 #: ../src/guestfs.pod:527
1249 msgid ""
1250 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1251 "returns the string C<crypto_LUKS>)."
1252 msgstr ""
1253
1254 # type: textblock
1255 #. type: textblock
1256 #: ../src/guestfs.pod:530
1257 msgid ""
1258 "Then open these devices by calling L</guestfs_luks_open>.  Obviously you "
1259 "will require the passphrase!"
1260 msgstr ""
1261
1262 # type: textblock
1263 #. type: textblock
1264 #: ../src/guestfs.pod:533
1265 msgid ""
1266 "Opening a LUKS device creates a new device mapper device called C</dev/"
1267 "mapper/mapname> (where C<mapname> is the string you supply to L</"
1268 "guestfs_luks_open>).  Reads and writes to this mapper device are decrypted "
1269 "from and encrypted to the underlying block device respectively."
1270 msgstr ""
1271
1272 # type: textblock
1273 #. type: textblock
1274 #: ../src/guestfs.pod:539
1275 msgid ""
1276 "LVM volume groups on the device can be made visible by calling L</"
1277 "guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical volume"
1278 "(s) can now be mounted in the usual way."
1279 msgstr ""
1280
1281 # type: textblock
1282 #. type: textblock
1283 #: ../src/guestfs.pod:543
1284 msgid ""
1285 "Use the reverse process to close a LUKS device.  Unmount any logical volumes "
1286 "on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1287 "[\"/dev/VG\"])>.  Then close the mapper device by calling L</"
1288 "guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1289 "underlying encrypted block device)."
1290 msgstr ""
1291
1292 # type: =head2
1293 #. type: =head2
1294 #: ../src/guestfs.pod:550
1295 msgid "INSPECTION"
1296 msgstr ""
1297
1298 #. type: textblock
1299 #: ../src/guestfs.pod:552
1300 msgid ""
1301 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1302 "contains operating systems, an install CD or a live CD.  (These APIs used to "
1303 "be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since "
1304 "version 1.5.3 the most frequently used part of this library has been "
1305 "rewritten in C and moved into the core code)."
1306 msgstr ""
1307
1308 # type: textblock
1309 #. type: textblock
1310 #: ../src/guestfs.pod:559
1311 msgid ""
1312 "Add all disks belonging to the unknown virtual machine and call L</"
1313 "guestfs_launch> in the usual way."
1314 msgstr ""
1315
1316 # type: textblock
1317 #. type: textblock
1318 #: ../src/guestfs.pod:562
1319 msgid ""
1320 "Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls "
1321 "and certain heuristics, and returns a list of operating systems that were "
1322 "found.  An empty list means none were found.  A single element is the root "
1323 "filesystem of the operating system.  For dual- or multi-boot guests, "
1324 "multiple roots can be returned, each one corresponding to a separate "
1325 "operating system.  (Multi-boot virtual machines are extremely rare in the "
1326 "world of virtualization, but since this scenario can happen, we have built "
1327 "libguestfs to deal with it.)"
1328 msgstr ""
1329
1330 # type: textblock
1331 #. type: textblock
1332 #: ../src/guestfs.pod:571
1333 msgid ""
1334 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1335 "to get additional details about that operating system.  For example, call L</"
1336 "guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
1337 "Windows and Linux-based operating systems respectively."
1338 msgstr ""
1339
1340 # type: textblock
1341 #. type: textblock
1342 #: ../src/guestfs.pod:577
1343 msgid ""
1344 "Un*x-like and Linux-based operating systems usually consist of several "
1345 "filesystems which are mounted at boot time (for example, a separate boot "
1346 "partition mounted on C</boot>).  The inspection rules are able to detect how "
1347 "filesystems correspond to mount points.  Call "
1348 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
1349 "hash table like this example:"
1350 msgstr ""
1351
1352 # type: verbatim
1353 #. type: verbatim
1354 #: ../src/guestfs.pod:584
1355 #, no-wrap
1356 msgid ""
1357 " /boot => /dev/sda1\n"
1358 " /     => /dev/vg_guest/lv_root\n"
1359 " /usr  => /dev/vg_guest/lv_usr\n"
1360 "\n"
1361 msgstr ""
1362
1363 # type: textblock
1364 #. type: textblock
1365 #: ../src/guestfs.pod:588
1366 msgid ""
1367 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1368 "filesystems as suggested."
1369 msgstr ""
1370
1371 # type: textblock
1372 #. type: textblock
1373 #: ../src/guestfs.pod:591
1374 msgid ""
1375 "Be careful to mount filesystems in the right order (eg. C</> before C</"
1376 "usr>).  Sorting the keys of the hash by length, shortest first, should work."
1377 msgstr ""
1378
1379 # type: textblock
1380 #. type: textblock
1381 #: ../src/guestfs.pod:595
1382 msgid ""
1383 "Inspection currently only works for some common operating systems.  "
1384 "Contributors are welcome to send patches for other operating systems that we "
1385 "currently cannot detect."
1386 msgstr ""
1387
1388 # type: textblock
1389 #. type: textblock
1390 #: ../src/guestfs.pod:599
1391 msgid ""
1392 "Encrypted disks must be opened before inspection.  See L</ENCRYPTED DISKS> "
1393 "for more details.  The L</guestfs_inspect_os> function just ignores any "
1394 "encrypted devices."
1395 msgstr ""
1396
1397 # type: textblock
1398 #. type: textblock
1399 #: ../src/guestfs.pod:603
1400 msgid ""
1401 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1402 "inspection and caches the results in the guest handle.  Subsequent calls to "
1403 "C<guestfs_inspect_get_*> return this cached information, but I<do not> re-"
1404 "read the disks.  If you change the content of the guest disks, you can redo "
1405 "inspection by calling L</guestfs_inspect_os> again.  (L</"
1406 "guestfs_inspect_list_applications> works a little differently from the other "
1407 "calls and does read the disks.  See documentation for that function for "
1408 "details)."
1409 msgstr ""
1410
1411 #. type: =head3
1412 #: ../src/guestfs.pod:612
1413 msgid "INSPECTING INSTALL DISKS"
1414 msgstr ""
1415
1416 #. type: textblock
1417 #: ../src/guestfs.pod:614
1418 msgid ""
1419 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1420 "CDs and more."
1421 msgstr ""
1422
1423 #. type: textblock
1424 #: ../src/guestfs.pod:617
1425 msgid ""
1426 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1427 "system, which currently can be C<installed> (a regular operating system) or "
1428 "C<installer> (some sort of install disk)."
1429 msgstr ""
1430
1431 #. type: textblock
1432 #: ../src/guestfs.pod:621
1433 msgid ""
1434 "Further information is available about the operating system that can be "
1435 "installed using the regular inspection APIs like L</"
1436 "guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> etc."
1437 msgstr ""
1438
1439 #. type: textblock
1440 #: ../src/guestfs.pod:626
1441 msgid ""
1442 "Some additional information specific to installer disks is also available "
1443 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and L</"
1444 "guestfs_inspect_is_multipart> calls."
1445 msgstr ""
1446
1447 # type: =head2
1448 #. type: =head2
1449 #: ../src/guestfs.pod:631
1450 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1451 msgstr ""
1452
1453 # type: textblock
1454 #. type: textblock
1455 #: ../src/guestfs.pod:633
1456 msgid ""
1457 "Libguestfs can mount NTFS partitions.  It does this using the L<http://www."
1458 "ntfs-3g.org/> driver."
1459 msgstr ""
1460
1461 # type: =head3
1462 #. type: =head3
1463 #: ../src/guestfs.pod:636
1464 msgid "DRIVE LETTERS AND PATHS"
1465 msgstr ""
1466
1467 # type: textblock
1468 #. type: textblock
1469 #: ../src/guestfs.pod:638
1470 msgid ""
1471 "DOS and Windows still use drive letters, and the filesystems are always "
1472 "treated as case insensitive by Windows itself, and therefore you might find "
1473 "a Windows configuration file referring to a path like C<c:\\windows"
1474 "\\system32>.  When the filesystem is mounted in libguestfs, that directory "
1475 "might be referred to as C</WINDOWS/System32>."
1476 msgstr ""
1477
1478 #. type: textblock
1479 #: ../src/guestfs.pod:644
1480 msgid ""
1481 "Drive letter mappings can be found using inspection (see L</INSPECTION> and "
1482 "L</guestfs_inspect_get_drive_mappings>)"
1483 msgstr ""
1484
1485 #. type: textblock
1486 #: ../src/guestfs.pod:647
1487 msgid ""
1488 "Dealing with separator characters (backslash vs forward slash) is outside "
1489 "the scope of libguestfs, but usually a simple character replacement will "
1490 "work."
1491 msgstr ""
1492
1493 #. type: textblock
1494 #: ../src/guestfs.pod:651
1495 msgid ""
1496 "To resolve the case insensitivity of paths, call L</"
1497 "guestfs_case_sensitive_path>."
1498 msgstr ""
1499
1500 # type: =head3
1501 #. type: =head3
1502 #: ../src/guestfs.pod:654
1503 msgid "ACCESSING THE WINDOWS REGISTRY"
1504 msgstr ""
1505
1506 # type: textblock
1507 #. type: textblock
1508 #: ../src/guestfs.pod:656
1509 msgid ""
1510 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1511 "files, through the library C<hivex> which is part of the libguestfs project "
1512 "although ships as a separate tarball.  You have to locate and download the "
1513 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
1514 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and L<virt-win-"
1515 "reg(1)> for more help on this issue."
1516 msgstr ""
1517
1518 # type: =head3
1519 #. type: =head3
1520 #: ../src/guestfs.pod:664
1521 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1522 msgstr ""
1523
1524 # type: textblock
1525 #. type: textblock
1526 #: ../src/guestfs.pod:666
1527 msgid ""
1528 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1529 "provide something which looks like a Linux symlink.  The way it tries to do "
1530 "the rewriting is described here:"
1531 msgstr ""
1532
1533 # type: textblock
1534 #. type: textblock
1535 #: ../src/guestfs.pod:670
1536 msgid ""
1537 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1538 "symbolic-links/>"
1539 msgstr ""
1540
1541 # type: textblock
1542 #. type: textblock
1543 #: ../src/guestfs.pod:672
1544 msgid ""
1545 "The essential problem is that ntfs-3g simply does not have enough "
1546 "information to do a correct job.  NTFS links can contain drive letters and "
1547 "references to external device GUIDs that ntfs-3g has no way of resolving.  "
1548 "It is almost certainly the case that libguestfs callers should ignore what "
1549 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1550 msgstr ""
1551
1552 # type: textblock
1553 #. type: textblock
1554 #: ../src/guestfs.pod:679
1555 msgid ""
1556 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use L</"
1557 "guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1558 "attribute, and read the raw reparse data from that (you can find the format "
1559 "documented in various places around the web)."
1560 msgstr ""
1561
1562 # type: =head3
1563 #. type: =head3
1564 #: ../src/guestfs.pod:684
1565 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1566 msgstr ""
1567
1568 # type: textblock
1569 #. type: textblock
1570 #: ../src/guestfs.pod:686
1571 msgid ""
1572 "There are other useful extended attributes that can be read from ntfs-3g "
1573 "filesystems (using L</guestfs_getxattr>).  See:"
1574 msgstr ""
1575
1576 # type: textblock
1577 #. type: textblock
1578 #: ../src/guestfs.pod:689
1579 msgid ""
1580 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1581 msgstr ""
1582
1583 # type: =head2
1584 #. type: =head2
1585 #: ../src/guestfs.pod:691
1586 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1587 msgstr ""
1588
1589 # type: textblock
1590 #. type: textblock
1591 #: ../src/guestfs.pod:693
1592 msgid ""
1593 "Although we don't want to discourage you from using the C API, we will "
1594 "mention here that the same API is also available in other languages."
1595 msgstr ""
1596
1597 #. type: textblock
1598 #: ../src/guestfs.pod:696
1599 msgid ""
1600 "The API is broadly identical in all supported languages.  This means that "
1601 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
1602 "in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1603 "OCaml.  In other words, a straightforward, predictable isomorphism between "
1604 "each language."
1605 msgstr ""
1606
1607 # type: textblock
1608 #. type: textblock
1609 #: ../src/guestfs.pod:702
1610 msgid ""
1611 "Error messages are automatically transformed into exceptions if the language "
1612 "supports it."
1613 msgstr ""
1614
1615 # type: textblock
1616 #. type: textblock
1617 #: ../src/guestfs.pod:705
1618 msgid ""
1619 "We don't try to \"object orientify\" parts of the API in OO languages, "
1620 "although contributors are welcome to write higher level APIs above what we "
1621 "provide in their favourite languages if they wish."
1622 msgstr ""
1623
1624 # type: =item
1625 #. type: =item
1626 #: ../src/guestfs.pod:711
1627 msgid "B<C++>"
1628 msgstr ""
1629
1630 # type: textblock
1631 #. type: textblock
1632 #: ../src/guestfs.pod:713
1633 msgid ""
1634 "You can use the I<guestfs.h> header file from C++ programs.  The C++ API is "
1635 "identical to the C API.  C++ classes and exceptions are not used."
1636 msgstr ""
1637
1638 # type: =item
1639 #. type: =item
1640 #: ../src/guestfs.pod:717
1641 msgid "B<C#>"
1642 msgstr ""
1643
1644 # type: textblock
1645 #. type: textblock
1646 #: ../src/guestfs.pod:719
1647 msgid ""
1648 "The C# bindings are highly experimental.  Please read the warnings at the "
1649 "top of C<csharp/Libguestfs.cs>."
1650 msgstr ""
1651
1652 # type: =item
1653 #. type: =item
1654 #: ../src/guestfs.pod:722
1655 msgid "B<Haskell>"
1656 msgstr ""
1657
1658 # type: textblock
1659 #. type: textblock
1660 #: ../src/guestfs.pod:724
1661 msgid ""
1662 "This is the only language binding that is working but incomplete.  Only "
1663 "calls which return simple integers have been bound in Haskell, and we are "
1664 "looking for help to complete this binding."
1665 msgstr ""
1666
1667 # type: =item
1668 #. type: =item
1669 #: ../src/guestfs.pod:728
1670 msgid "B<Java>"
1671 msgstr ""
1672
1673 # type: textblock
1674 #. type: textblock
1675 #: ../src/guestfs.pod:730
1676 msgid ""
1677 "Full documentation is contained in the Javadoc which is distributed with "
1678 "libguestfs."
1679 msgstr ""
1680
1681 # type: =item
1682 #. type: =item
1683 #: ../src/guestfs.pod:733
1684 msgid "B<OCaml>"
1685 msgstr ""
1686
1687 #. type: textblock
1688 #: ../src/guestfs.pod:735
1689 msgid "See L<guestfs-ocaml(3)>."
1690 msgstr ""
1691
1692 # type: =item
1693 #. type: =item
1694 #: ../src/guestfs.pod:737
1695 msgid "B<Perl>"
1696 msgstr ""
1697
1698 #. type: textblock
1699 #: ../src/guestfs.pod:739
1700 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1701 msgstr ""
1702
1703 # type: =item
1704 #. type: =item
1705 #: ../src/guestfs.pod:741
1706 msgid "B<PHP>"
1707 msgstr ""
1708
1709 # type: textblock
1710 #. type: textblock
1711 #: ../src/guestfs.pod:743
1712 msgid ""
1713 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1714 "the php-libguestfs package for your distribution."
1715 msgstr ""
1716
1717 # type: textblock
1718 #. type: textblock
1719 #: ../src/guestfs.pod:746
1720 msgid "The PHP binding only works correctly on 64 bit machines."
1721 msgstr ""
1722
1723 # type: =item
1724 #. type: =item
1725 #: ../src/guestfs.pod:748
1726 msgid "B<Python>"
1727 msgstr ""
1728
1729 #. type: textblock
1730 #: ../src/guestfs.pod:750
1731 msgid "See L<guestfs-python(3)>."
1732 msgstr ""
1733
1734 # type: =item
1735 #. type: =item
1736 #: ../src/guestfs.pod:752
1737 msgid "B<Ruby>"
1738 msgstr ""
1739
1740 #. type: textblock
1741 #: ../src/guestfs.pod:754
1742 msgid "See L<guestfs-ruby(3)>."
1743 msgstr ""
1744
1745 # type: =item
1746 #. type: =item
1747 #: ../src/guestfs.pod:756
1748 msgid "B<shell scripts>"
1749 msgstr ""
1750
1751 #. type: textblock
1752 #: ../src/guestfs.pod:758
1753 msgid "See L<guestfish(1)>."
1754 msgstr ""
1755
1756 # type: =head2
1757 #. type: =head2
1758 #: ../src/guestfs.pod:762
1759 msgid "LIBGUESTFS GOTCHAS"
1760 msgstr ""
1761
1762 # type: textblock
1763 #. type: textblock
1764 #: ../src/guestfs.pod:764
1765 msgid ""
1766 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1767 "system [...] that works in the way it is documented but is counterintuitive "
1768 "and almost invites mistakes.\""
1769 msgstr ""
1770
1771 # type: textblock
1772 #. type: textblock
1773 #: ../src/guestfs.pod:768
1774 msgid ""
1775 "Since we developed libguestfs and the associated tools, there are several "
1776 "things we would have designed differently, but are now stuck with for "
1777 "backwards compatibility or other reasons.  If there is ever a libguestfs 2.0 "
1778 "release, you can expect these to change.  Beware of them."
1779 msgstr ""
1780
1781 # type: =item
1782 #. type: =item
1783 #: ../src/guestfs.pod:776
1784 msgid "Autosync / forgetting to sync."
1785 msgstr ""
1786
1787 #. type: textblock
1788 #: ../src/guestfs.pod:778
1789 msgid ""
1790 "I<Update:> Autosync is enabled by default for all API users starting from "
1791 "libguestfs 1.5.24.  This section only applies to older versions."
1792 msgstr ""
1793
1794 # type: textblock
1795 #. type: textblock
1796 #: ../src/guestfs.pod:781
1797 msgid ""
1798 "When modifying a filesystem from C or another language, you B<must> unmount "
1799 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1800 "libguestfs handle.  You can also call:"
1801 msgstr ""
1802
1803 # type: verbatim
1804 #. type: verbatim
1805 #: ../src/guestfs.pod:785
1806 #, no-wrap
1807 msgid ""
1808 " guestfs_set_autosync (g, 1);\n"
1809 "\n"
1810 msgstr ""
1811
1812 # type: textblock
1813 #. type: textblock
1814 #: ../src/guestfs.pod:787
1815 msgid ""
1816 "to have the unmount/sync done automatically for you when the handle 'g' is "
1817 "closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> q.v.)"
1818 msgstr ""
1819
1820 # type: textblock
1821 #. type: textblock
1822 #: ../src/guestfs.pod:791
1823 msgid ""
1824 "If you forget to do this, then it is entirely possible that your changes "
1825 "won't be written out, or will be partially written, or (very rarely) that "
1826 "you'll get disk corruption."
1827 msgstr ""
1828
1829 # type: textblock
1830 #. type: textblock
1831 #: ../src/guestfs.pod:795
1832 msgid ""
1833 "Note that in L<guestfish(3)> autosync is the default.  So quick and dirty "
1834 "guestfish scripts that forget to sync will work just fine, which can make "
1835 "this very puzzling if you are trying to debug a problem."
1836 msgstr ""
1837
1838 # type: =item
1839 #. type: =item
1840 #: ../src/guestfs.pod:799
1841 msgid "Mount option C<-o sync> should not be the default."
1842 msgstr ""
1843
1844 # type: textblock
1845 #. type: textblock
1846 #: ../src/guestfs.pod:801
1847 msgid ""
1848 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly.  "
1849 "However C<-o sync> does not add any reliability benefit, but does have a "
1850 "very large performance impact."
1851 msgstr ""
1852
1853 # type: textblock
1854 #. type: textblock
1855 #: ../src/guestfs.pod:805
1856 msgid ""
1857 "The work around is to use L</guestfs_mount_options> and set the mount "
1858 "options that you actually want to use."
1859 msgstr ""
1860
1861 # type: =item
1862 #. type: =item
1863 #: ../src/guestfs.pod:808
1864 msgid "Read-only should be the default."
1865 msgstr ""
1866
1867 # type: textblock
1868 #. type: textblock
1869 #: ../src/guestfs.pod:810
1870 msgid ""
1871 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1872 "specify I<--rw> if you want to make changes to the image."
1873 msgstr ""
1874
1875 # type: textblock
1876 #. type: textblock
1877 #: ../src/guestfs.pod:813
1878 msgid "This would reduce the potential to corrupt live VM images."
1879 msgstr ""
1880
1881 # type: textblock
1882 #. type: textblock
1883 #: ../src/guestfs.pod:815
1884 msgid ""
1885 "Note that many filesystems change the disk when you just mount and unmount, "
1886 "even if you didn't perform any writes.  You need to use L</"
1887 "guestfs_add_drive_ro> to guarantee that the disk is not changed."
1888 msgstr ""
1889
1890 # type: =item
1891 #. type: =item
1892 #: ../src/guestfs.pod:819
1893 msgid "guestfish command line is hard to use."
1894 msgstr ""
1895
1896 # type: textblock
1897 #. type: textblock
1898 #: ../src/guestfs.pod:821
1899 msgid ""
1900 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1901 "examination).  It tries to run a guestfish command C<disk.img> which doesn't "
1902 "exist, so it fails.  In earlier versions of guestfish the error message was "
1903 "also unintuitive, but we have corrected this since.  Like the Bourne shell, "
1904 "we should have used C<guestfish -c command> to run commands."
1905 msgstr ""
1906
1907 # type: =item
1908 #. type: =item
1909 #: ../src/guestfs.pod:828
1910 msgid "guestfish megabyte modifiers don't work right on all commands"
1911 msgstr ""
1912
1913 # type: textblock
1914 #. type: textblock
1915 #: ../src/guestfs.pod:830
1916 msgid ""
1917 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1918 "other modifiers).  What guestfish actually does is to multiply the number "
1919 "part by the modifier part and pass the result to the C API.  However this "
1920 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1921 "expecting some other unit (eg. megabytes)."
1922 msgstr ""
1923
1924 # type: textblock
1925 #. type: textblock
1926 #: ../src/guestfs.pod:837
1927 msgid "The most common is L</guestfs_lvcreate>.  The guestfish command:"
1928 msgstr ""
1929
1930 # type: verbatim
1931 #. type: verbatim
1932 #: ../src/guestfs.pod:839
1933 #, no-wrap
1934 msgid ""
1935 " lvcreate LV VG 100M\n"
1936 "\n"
1937 msgstr ""
1938
1939 # type: textblock
1940 #. type: textblock
1941 #: ../src/guestfs.pod:841
1942 msgid ""
1943 "does not do what you might expect.  Instead because L</guestfs_lvcreate> is "
1944 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1945 "megabytes * megabytes) logical volume.  The error message you get from this "
1946 "is also a little obscure."
1947 msgstr ""
1948
1949 # type: textblock
1950 #. type: textblock
1951 #: ../src/guestfs.pod:846
1952 msgid ""
1953 "This could be fixed in the generator by specially marking parameters and "
1954 "return values which take bytes or other units."
1955 msgstr ""
1956
1957 # type: =item
1958 #. type: =item
1959 #: ../src/guestfs.pod:849
1960 msgid "Ambiguity between devices and paths"
1961 msgstr ""
1962
1963 # type: textblock
1964 #. type: textblock
1965 #: ../src/guestfs.pod:851
1966 msgid ""
1967 "There is a subtle ambiguity in the API between a device name (eg. C</dev/"
1968 "sdb2>) and a similar pathname.  A file might just happen to be called "
1969 "C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1970 msgstr ""
1971
1972 # type: textblock
1973 #. type: textblock
1974 #: ../src/guestfs.pod:856
1975 msgid ""
1976 "In the current API we usually resolve this ambiguity by having two separate "
1977 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>.  "
1978 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1979 "detecting if the path supplied begins with C</dev/>."
1980 msgstr ""
1981
1982 # type: textblock
1983 #. type: textblock
1984 #: ../src/guestfs.pod:862
1985 msgid ""
1986 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1987 "make paths/devices into structured names.  One way to do this would be to "
1988 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1989 "aspect of grub.  Another way would be to use a structured type, equivalent "
1990 "to this OCaml type:"
1991 msgstr ""
1992
1993 # type: verbatim
1994 #. type: verbatim
1995 #: ../src/guestfs.pod:868
1996 #, no-wrap
1997 msgid ""
1998 " type path = Path of string | Device of int | Partition of int * int\n"
1999 "\n"
2000 msgstr ""
2001
2002 # type: textblock
2003 #. type: textblock
2004 #: ../src/guestfs.pod:870
2005 msgid "which would allow you to pass arguments like:"
2006 msgstr ""
2007
2008 # type: verbatim
2009 #. type: verbatim
2010 #: ../src/guestfs.pod:872
2011 #, no-wrap
2012 msgid ""
2013 " Path \"/foo/bar\"\n"
2014 " Device 1            (* /dev/sdb, or perhaps /dev/sda *)\n"
2015 " Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
2016 " Path \"/dev/sdb2\"    (* not a device *)\n"
2017 "\n"
2018 msgstr ""
2019
2020 # type: textblock
2021 #. type: textblock
2022 #: ../src/guestfs.pod:877
2023 msgid ""
2024 "As you can see there are still problems to resolve even with this "
2025 "representation.  Also consider how it might work in guestfish."
2026 msgstr ""
2027
2028 # type: =head2
2029 #. type: =head2
2030 #: ../src/guestfs.pod:882
2031 msgid "KEYS AND PASSPHRASES"
2032 msgstr ""
2033
2034 # type: textblock
2035 #. type: textblock
2036 #: ../src/guestfs.pod:884
2037 msgid ""
2038 "Certain libguestfs calls take a parameter that contains sensitive key "
2039 "material, passed in as a C string."
2040 msgstr ""
2041
2042 # type: textblock
2043 #. type: textblock
2044 #: ../src/guestfs.pod:887
2045 msgid ""
2046 "In the future we would hope to change the libguestfs implementation so that "
2047 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
2048 "swap.  However this is I<not> done at the moment, because of the complexity "
2049 "of such an implementation."
2050 msgstr ""
2051
2052 # type: textblock
2053 #. type: textblock
2054 #: ../src/guestfs.pod:892
2055 msgid ""
2056 "Therefore you should be aware that any key parameter you pass to libguestfs "
2057 "might end up being written out to the swap partition.  If this is a concern, "
2058 "scrub the swap partition or don't use libguestfs on encrypted devices."
2059 msgstr ""
2060
2061 # type: =head1
2062 #. type: =head2
2063 #: ../src/guestfs.pod:897
2064 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
2065 msgstr ""
2066
2067 # type: textblock
2068 #. type: textblock
2069 #: ../src/guestfs.pod:899
2070 msgid ""
2071 "All high-level libguestfs actions are synchronous.  If you want to use "
2072 "libguestfs asynchronously then you must create a thread."
2073 msgstr ""
2074
2075 # type: textblock
2076 #. type: textblock
2077 #: ../src/guestfs.pod:902
2078 msgid ""
2079 "Only use the handle from a single thread.  Either use the handle exclusively "
2080 "from one thread, or provide your own mutex so that two threads cannot issue "
2081 "calls on the same handle at the same time."
2082 msgstr ""
2083
2084 # type: textblock
2085 #. type: textblock
2086 #: ../src/guestfs.pod:906
2087 msgid ""
2088 "See the graphical program guestfs-browser for one possible architecture for "
2089 "multithreaded programs using libvirt and libguestfs."
2090 msgstr ""
2091
2092 # type: =head1
2093 #. type: =head2
2094 #: ../src/guestfs.pod:909
2095 msgid "PATH"
2096 msgstr ""
2097
2098 #. type: textblock
2099 #: ../src/guestfs.pod:911
2100 msgid ""
2101 "Libguestfs needs a supermin appliance, which it finds by looking along an "
2102 "internal path."
2103 msgstr ""
2104
2105 # type: textblock
2106 #. type: textblock
2107 #: ../src/guestfs.pod:914
2108 msgid ""
2109 "By default it looks for these in the directory C<$libdir/guestfs> (eg. C</"
2110 "usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
2111 msgstr ""
2112
2113 # type: textblock
2114 #. type: textblock
2115 #: ../src/guestfs.pod:917
2116 msgid ""
2117 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
2118 "to change the directories that libguestfs will search in.  The value is a "
2119 "colon-separated list of paths.  The current directory is I<not> searched "
2120 "unless the path contains an empty element or C<.>.  For example "
2121 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
2122 "then C</usr/lib/guestfs>."
2123 msgstr ""
2124
2125 # type: =head1
2126 #. type: =head2
2127 #: ../src/guestfs.pod:924
2128 msgid "QEMU WRAPPERS"
2129 msgstr ""
2130
2131 # type: textblock
2132 #. type: textblock
2133 #: ../src/guestfs.pod:926
2134 msgid ""
2135 "If you want to compile your own qemu, run qemu from a non-standard location, "
2136 "or pass extra arguments to qemu, then you can write a shell-script wrapper "
2137 "around qemu."
2138 msgstr ""
2139
2140 # type: textblock
2141 #. type: textblock
2142 #: ../src/guestfs.pod:930
2143 msgid ""
2144 "There is one important rule to remember: you I<must C<exec qemu>> as the "
2145 "last command in the shell script (so that qemu replaces the shell and "
2146 "becomes the direct child of the libguestfs-using program).  If you don't do "
2147 "this, then the qemu process won't be cleaned up correctly."
2148 msgstr ""
2149
2150 # type: textblock
2151 #. type: textblock
2152 #: ../src/guestfs.pod:935
2153 msgid ""
2154 "Here is an example of a wrapper, where I have built my own copy of qemu from "
2155 "source:"
2156 msgstr ""
2157
2158 # type: verbatim
2159 #. type: verbatim
2160 #: ../src/guestfs.pod:938
2161 #, no-wrap
2162 msgid ""
2163 " #!/bin/sh -\n"
2164 " qemudir=/home/rjones/d/qemu\n"
2165 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios \"$@\"\n"
2166 "\n"
2167 msgstr ""
2168
2169 # type: textblock
2170 #. type: textblock
2171 #: ../src/guestfs.pod:942
2172 msgid ""
2173 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
2174 "then use it by setting the LIBGUESTFS_QEMU environment variable.  For "
2175 "example:"
2176 msgstr ""
2177
2178 # type: verbatim
2179 #. type: verbatim
2180 #: ../src/guestfs.pod:946
2181 #, no-wrap
2182 msgid ""
2183 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
2184 "\n"
2185 msgstr ""
2186
2187 # type: textblock
2188 #. type: textblock
2189 #: ../src/guestfs.pod:948
2190 msgid ""
2191 "Note that libguestfs also calls qemu with the -help and -version options in "
2192 "order to determine features."
2193 msgstr ""
2194
2195 #. type: =head2
2196 #: ../src/guestfs.pod:951
2197 msgid "ATTACHING TO RUNNING DAEMONS"
2198 msgstr ""
2199
2200 #. type: textblock
2201 #: ../src/guestfs.pod:953
2202 msgid ""
2203 "I<Note (1):> This is B<highly experimental> and has a tendency to eat "
2204 "babies.  Use with caution."
2205 msgstr ""
2206
2207 #. type: textblock
2208 #: ../src/guestfs.pod:956
2209 msgid ""
2210 "I<Note (2):> This section explains how to attach to a running daemon from a "
2211 "low level perspective.  For most users, simply using virt tools such as "
2212 "L<guestfish(1)> with the I<--live> option will \"just work\"."
2213 msgstr ""
2214
2215 #. type: =head3
2216 #: ../src/guestfs.pod:960
2217 msgid "Using guestfs_set_attach_method"
2218 msgstr ""
2219
2220 #. type: textblock
2221 #: ../src/guestfs.pod:962
2222 msgid ""
2223 "By calling L</guestfs_set_attach_method> you can change how the library "
2224 "connects to the C<guestfsd> daemon in L</guestfs_launch> (read L</"
2225 "ARCHITECTURE> for some background)."
2226 msgstr ""
2227
2228 #. type: textblock
2229 #: ../src/guestfs.pod:966
2230 msgid ""
2231 "The normal attach method is C<appliance>, where a small appliance is created "
2232 "containing the daemon, and then the library connects to this."
2233 msgstr ""
2234
2235 #. type: textblock
2236 #: ../src/guestfs.pod:969
2237 msgid ""
2238 "Setting attach method to C<unix:I<path>> (where I<path> is the path of a "
2239 "Unix domain socket) causes L</guestfs_launch> to connect to an existing "
2240 "daemon over the Unix domain socket."
2241 msgstr ""
2242
2243 #. type: textblock
2244 #: ../src/guestfs.pod:973
2245 msgid ""
2246 "The normal use for this is to connect to a running virtual machine that "
2247 "contains a C<guestfsd> daemon, and send commands so you can read and write "
2248 "files inside the live virtual machine."
2249 msgstr ""
2250
2251 #. type: =head3
2252 #: ../src/guestfs.pod:977
2253 msgid "Using guestfs_add_domain with live flag"
2254 msgstr ""
2255
2256 #. type: textblock
2257 #: ../src/guestfs.pod:979
2258 msgid ""
2259 "L</guestfs_add_domain> provides some help for getting the correct attach "
2260 "method.  If you pass the C<live> option to this function, then (if the "
2261 "virtual machine is running) it will examine the libvirt XML looking for a "
2262 "virtio-serial channel to connect to:"
2263 msgstr ""
2264
2265 #. type: verbatim
2266 #: ../src/guestfs.pod:985
2267 #, no-wrap
2268 msgid ""
2269 " <domain>\n"
2270 "   ...\n"
2271 "   <devices>\n"
2272 "     ...\n"
2273 "     <channel type='unix'>\n"
2274 "       <source mode='bind' path='/path/to/socket'/>\n"
2275 "       <target type='virtio' name='org.libguestfs.channel.0'/>\n"
2276 "     </channel>\n"
2277 "     ...\n"
2278 "   </devices>\n"
2279 " </domain>\n"
2280 "\n"
2281 msgstr ""
2282
2283 #. type: textblock
2284 #: ../src/guestfs.pod:997
2285 msgid ""
2286 "L</guestfs_add_domain> extracts C</path/to/socket> and sets the attach "
2287 "method to C<unix:/path/to/socket>."
2288 msgstr ""
2289
2290 #. type: textblock
2291 #: ../src/guestfs.pod:1000
2292 msgid ""
2293 "Some of the libguestfs tools (including guestfish) support a I<--live> "
2294 "option which is passed through to L</guestfs_add_domain> thus allowing you "
2295 "to attach to and modify live virtual machines."
2296 msgstr ""
2297
2298 #. type: textblock
2299 #: ../src/guestfs.pod:1004
2300 msgid ""
2301 "The virtual machine needs to have been set up beforehand so that it has the "
2302 "virtio-serial channel and so that guestfsd is running inside it."
2303 msgstr ""
2304
2305 # type: =head2
2306 #. type: =head2
2307 #: ../src/guestfs.pod:1008
2308 msgid "ABI GUARANTEE"
2309 msgstr ""
2310
2311 # type: textblock
2312 #. type: textblock
2313 #: ../src/guestfs.pod:1010
2314 msgid ""
2315 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
2316 "actions as outlined in this section.  Although we will deprecate some "
2317 "actions, for example if they get replaced by newer calls, we will keep the "
2318 "old actions forever.  This allows you the developer to program in confidence "
2319 "against the libguestfs API."
2320 msgstr ""
2321
2322 # type: =head1
2323 #. type: =head2
2324 #: ../src/guestfs.pod:1016
2325 msgid "BLOCK DEVICE NAMING"
2326 msgstr ""
2327
2328 # type: textblock
2329 #. type: textblock
2330 #: ../src/guestfs.pod:1018
2331 msgid ""
2332 "In the kernel there is now quite a profusion of schemata for naming block "
2333 "devices (in this context, by I<block device> I mean a physical or virtual "
2334 "hard drive).  The original Linux IDE driver used names starting with C</dev/"
2335 "hd*>.  SCSI devices have historically used a different naming scheme, C</dev/"
2336 "sd*>.  When the Linux kernel I<libata> driver became a popular replacement "
2337 "for the old IDE driver (particularly for SATA devices) those devices also "
2338 "used the C</dev/sd*> scheme.  Additionally we now have virtual machines with "
2339 "paravirtualized drivers.  This has created several different naming systems, "
2340 "such as C</dev/vd*> for virtio disks and C</dev/xvd*> for Xen PV disks."
2341 msgstr ""
2342
2343 # type: textblock
2344 #. type: textblock
2345 #: ../src/guestfs.pod:1030
2346 msgid ""
2347 "As discussed above, libguestfs uses a qemu appliance running an embedded "
2348 "Linux kernel to access block devices.  We can run a variety of appliances "
2349 "based on a variety of Linux kernels."
2350 msgstr ""
2351
2352 # type: textblock
2353 #. type: textblock
2354 #: ../src/guestfs.pod:1034
2355 msgid ""
2356 "This causes a problem for libguestfs because many API calls use device or "
2357 "partition names.  Working scripts and the recipe (example) scripts that we "
2358 "make available over the internet could fail if the naming scheme changes."
2359 msgstr ""
2360
2361 # type: textblock
2362 #. type: textblock
2363 #: ../src/guestfs.pod:1039
2364 msgid ""
2365 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
2366 "Internally C</dev/sd*> names are translated, if necessary, to other names as "
2367 "required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
2368 "device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2369 msgstr ""
2370
2371 # type: textblock
2372 #. type: textblock
2373 #: ../src/guestfs.pod:1045
2374 msgid ""
2375 "Note that this I<only> applies to parameters.  The L</guestfs_list_devices>, "
2376 "L</guestfs_list_partitions> and similar calls return the true names of the "
2377 "devices and partitions as known to the appliance."
2378 msgstr ""
2379
2380 # type: =head2
2381 #. type: =head3
2382 #: ../src/guestfs.pod:1050
2383 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2384 msgstr ""
2385
2386 # type: textblock
2387 #. type: textblock
2388 #: ../src/guestfs.pod:1052
2389 msgid ""
2390 "Usually this translation is transparent.  However in some (very rare)  cases "
2391 "you may need to know the exact algorithm.  Such cases include where you use "
2392 "L</guestfs_config> to add a mixture of virtio and IDE devices to the qemu-"
2393 "based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> devices."
2394 msgstr ""
2395
2396 # type: textblock
2397 #. type: textblock
2398 #: ../src/guestfs.pod:1058
2399 msgid ""
2400 "The algorithm is applied only to I<parameters> which are known to be either "
2401 "device or partition names.  Return values from functions such as L</"
2402 "guestfs_list_devices> are never changed."
2403 msgstr ""
2404
2405 # type: textblock
2406 #. type: textblock
2407 #: ../src/guestfs.pod:1066
2408 msgid "Is the string a parameter which is a device or partition name?"
2409 msgstr ""
2410
2411 # type: textblock
2412 #. type: textblock
2413 #: ../src/guestfs.pod:1070
2414 msgid "Does the string begin with C</dev/sd>?"
2415 msgstr ""
2416
2417 # type: textblock
2418 #. type: textblock
2419 #: ../src/guestfs.pod:1074
2420 msgid ""
2421 "Does the named device exist? If so, we use that device.  However if I<not> "
2422 "then we continue with this algorithm."
2423 msgstr ""
2424
2425 # type: textblock
2426 #. type: textblock
2427 #: ../src/guestfs.pod:1079
2428 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2429 msgstr ""
2430
2431 # type: textblock
2432 #. type: textblock
2433 #: ../src/guestfs.pod:1081
2434 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2435 msgstr ""
2436
2437 # type: textblock
2438 #. type: textblock
2439 #: ../src/guestfs.pod:1083
2440 msgid "If that named device exists, use it.  If not, continue."
2441 msgstr ""
2442
2443 # type: textblock
2444 #. type: textblock
2445 #: ../src/guestfs.pod:1087
2446 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2447 msgstr ""
2448
2449 # type: textblock
2450 #. type: textblock
2451 #: ../src/guestfs.pod:1089
2452 msgid "If that named device exists, use it.  If not, return an error."
2453 msgstr ""
2454
2455 # type: =head3
2456 #. type: =head3
2457 #: ../src/guestfs.pod:1093
2458 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2459 msgstr ""
2460
2461 # type: textblock
2462 #. type: textblock
2463 #: ../src/guestfs.pod:1095
2464 msgid ""
2465 "Although the standard naming scheme and automatic translation is useful for "
2466 "simple programs and guestfish scripts, for larger programs it is best not to "
2467 "rely on this mechanism."
2468 msgstr ""
2469
2470 # type: textblock
2471 #. type: textblock
2472 #: ../src/guestfs.pod:1099
2473 msgid ""
2474 "Where possible for maximum future portability programs using libguestfs "
2475 "should use these future-proof techniques:"
2476 msgstr ""
2477
2478 # type: textblock
2479 #. type: textblock
2480 #: ../src/guestfs.pod:1106
2481 msgid ""
2482 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2483 "device names, and then use those names directly."
2484 msgstr ""
2485
2486 # type: textblock
2487 #. type: textblock
2488 #: ../src/guestfs.pod:1109
2489 msgid ""
2490 "Since those device names exist by definition, they will never be translated."
2491 msgstr ""
2492
2493 # type: textblock
2494 #. type: textblock
2495 #: ../src/guestfs.pod:1114
2496 msgid ""
2497 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2498 "filesystem labels."
2499 msgstr ""
2500
2501 # type: =head1
2502 #. type: =head1
2503 #: ../src/guestfs.pod:1119
2504 msgid "SECURITY"
2505 msgstr ""
2506
2507 # type: textblock
2508 #. type: textblock
2509 #: ../src/guestfs.pod:1121
2510 msgid ""
2511 "This section discusses security implications of using libguestfs, "
2512 "particularly with untrusted or malicious guests or disk images."
2513 msgstr ""
2514
2515 # type: =head2
2516 #. type: =head2
2517 #: ../src/guestfs.pod:1124
2518 msgid "GENERAL SECURITY CONSIDERATIONS"
2519 msgstr ""
2520
2521 # type: textblock
2522 #. type: textblock
2523 #: ../src/guestfs.pod:1126
2524 msgid ""
2525 "Be careful with any files or data that you download from a guest (by "
2526 "\"download\" we mean not just the L</guestfs_download> command but any "
2527 "command that reads files, filenames, directories or anything else from a "
2528 "disk image).  An attacker could manipulate the data to fool your program "
2529 "into doing the wrong thing.  Consider cases such as:"
2530 msgstr ""
2531
2532 # type: textblock
2533 #. type: textblock
2534 #: ../src/guestfs.pod:1136
2535 msgid "the data (file etc) not being present"
2536 msgstr ""
2537
2538 # type: textblock
2539 #. type: textblock
2540 #: ../src/guestfs.pod:1140
2541 msgid "being present but empty"
2542 msgstr ""
2543
2544 # type: textblock
2545 #. type: textblock
2546 #: ../src/guestfs.pod:1144
2547 msgid "being much larger than normal"
2548 msgstr ""
2549
2550 # type: textblock
2551 #. type: textblock
2552 #: ../src/guestfs.pod:1148
2553 msgid "containing arbitrary 8 bit data"
2554 msgstr ""
2555
2556 # type: textblock
2557 #. type: textblock
2558 #: ../src/guestfs.pod:1152
2559 msgid "being in an unexpected character encoding"
2560 msgstr ""
2561
2562 # type: textblock
2563 #. type: textblock
2564 #: ../src/guestfs.pod:1156
2565 msgid "containing homoglyphs."
2566 msgstr ""
2567
2568 # type: =head2
2569 #. type: =head2
2570 #: ../src/guestfs.pod:1160
2571 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2572 msgstr ""
2573
2574 # type: textblock
2575 #. type: textblock
2576 #: ../src/guestfs.pod:1162
2577 msgid ""
2578 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2579 "(VFS) module can sometimes be escalated into exploits by deliberately "
2580 "creating a malicious, malformed filesystem.  These exploits are very severe "
2581 "for two reasons.  Firstly there are very many filesystem drivers in the "
2582 "kernel, and many of them are infrequently used and not much developer "
2583 "attention has been paid to the code.  Linux userspace helps potential "
2584 "crackers by detecting the filesystem type and automatically choosing the "
2585 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2586 "the administrator.  Secondly, a kernel-level exploit is like a local root "
2587 "exploit (worse in some ways), giving immediate and total access to the "
2588 "system right down to the hardware level."
2589 msgstr ""
2590
2591 # type: textblock
2592 #. type: textblock
2593 #: ../src/guestfs.pod:1175
2594 msgid ""
2595 "That explains why you should never mount a filesystem from an untrusted "
2596 "guest on your host kernel.  How about libguestfs? We run a Linux kernel "
2597 "inside a qemu virtual machine, usually running as a non-root user.  The "
2598 "attacker would need to write a filesystem which first exploited the kernel, "
2599 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2600 "the libguestfs protocol, and finally to be as serious as the host kernel "
2601 "exploit it would need to escalate its privileges to root.  This multi-step "
2602 "escalation, performed by a static piece of data, is thought to be extremely "
2603 "hard to do, although we never say 'never' about security issues."
2604 msgstr ""
2605
2606 # type: textblock
2607 #. type: textblock
2608 #: ../src/guestfs.pod:1186
2609 msgid ""
2610 "In any case callers can reduce the attack surface by forcing the filesystem "
2611 "type when mounting (use L</guestfs_mount_vfs>)."
2612 msgstr ""
2613
2614 # type: =head2
2615 #. type: =head2
2616 #: ../src/guestfs.pod:1189
2617 msgid "PROTOCOL SECURITY"
2618 msgstr ""
2619
2620 # type: textblock
2621 #. type: textblock
2622 #: ../src/guestfs.pod:1191
2623 msgid ""
2624 "The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a "
2625 "defined upper message size.  However a program that uses libguestfs must "
2626 "also take care - for example you can write a program that downloads a binary "
2627 "from a disk image and executes it locally, and no amount of protocol "
2628 "security will save you from the consequences."
2629 msgstr ""
2630
2631 # type: =head2
2632 #. type: =head2
2633 #: ../src/guestfs.pod:1197
2634 msgid "INSPECTION SECURITY"
2635 msgstr ""
2636
2637 # type: textblock
2638 #. type: textblock
2639 #: ../src/guestfs.pod:1199
2640 msgid ""
2641 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2642 "directly from the guest, and these could contain any 8 bit data.  Callers "
2643 "should be careful to escape these before printing them to a structured file "
2644 "(for example, use HTML escaping if creating a web page)."
2645 msgstr ""
2646
2647 # type: textblock
2648 #. type: textblock
2649 #: ../src/guestfs.pod:1205
2650 msgid ""
2651 "Guest configuration may be altered in unusual ways by the administrator of "
2652 "the virtual machine, and may not reflect reality (particularly for untrusted "
2653 "or actively malicious guests).  For example we parse the hostname from "
2654 "configuration files like C</etc/sysconfig/network> that we find in the "
2655 "guest, but the guest administrator can easily manipulate these files to "
2656 "provide the wrong hostname."
2657 msgstr ""
2658
2659 # type: textblock
2660 #. type: textblock
2661 #: ../src/guestfs.pod:1213
2662 msgid ""
2663 "The inspection API parses guest configuration using two external libraries: "
2664 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
2665 "designed to be robust in the face of malicious data, although denial of "
2666 "service attacks are still possible, for example with oversized configuration "
2667 "files."
2668 msgstr ""
2669
2670 # type: =head2
2671 #. type: =head2
2672 #: ../src/guestfs.pod:1219
2673 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2674 msgstr ""
2675
2676 # type: textblock
2677 #. type: textblock
2678 #: ../src/guestfs.pod:1221
2679 msgid ""
2680 "Be very cautious about running commands from the guest.  By running a "
2681 "command in the guest, you are giving CPU time to a binary that you do not "
2682 "control, under the same user account as the library, albeit wrapped in qemu "
2683 "virtualization.  More information and alternatives can be found in the "
2684 "section L</RUNNING COMMANDS>."
2685 msgstr ""
2686
2687 # type: =head2
2688 #. type: =head2
2689 #: ../src/guestfs.pod:1227
2690 msgid "CVE-2010-3851"
2691 msgstr ""
2692
2693 # type: textblock
2694 #. type: textblock
2695 #: ../src/guestfs.pod:1229
2696 msgid "https://bugzilla.redhat.com/642934"
2697 msgstr ""
2698
2699 # type: textblock
2700 #. type: textblock
2701 #: ../src/guestfs.pod:1231
2702 msgid ""
2703 "This security bug concerns the automatic disk format detection that qemu "
2704 "does on disk images."
2705 msgstr ""
2706
2707 # type: textblock
2708 #. type: textblock
2709 #: ../src/guestfs.pod:1234
2710 msgid ""
2711 "A raw disk image is just the raw bytes, there is no header.  Other disk "
2712 "images like qcow2 contain a special header.  Qemu deals with this by looking "
2713 "for one of the known headers, and if none is found then assuming the disk "
2714 "image must be raw."
2715 msgstr ""
2716
2717 # type: textblock
2718 #. type: textblock
2719 #: ../src/guestfs.pod:1239
2720 msgid ""
2721 "This allows a guest which has been given a raw disk image to write some "
2722 "other header.  At next boot (or when the disk image is accessed by "
2723 "libguestfs) qemu would do autodetection and think the disk image format was, "
2724 "say, qcow2 based on the header written by the guest."
2725 msgstr ""
2726
2727 # type: textblock
2728 #. type: textblock
2729 #: ../src/guestfs.pod:1244
2730 msgid ""
2731 "This in itself would not be a problem, but qcow2 offers many features, one "
2732 "of which is to allow a disk image to refer to another image (called the "
2733 "\"backing disk\").  It does this by placing the path to the backing disk "
2734 "into the qcow2 header.  This path is not validated and could point to any "
2735 "host file (eg. \"/etc/passwd\").  The backing disk is then exposed through "
2736 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2737 "control of the attacker."
2738 msgstr ""
2739
2740 # type: textblock
2741 #. type: textblock
2742 #: ../src/guestfs.pod:1252
2743 msgid ""
2744 "In libguestfs this is rather hard to exploit except under two circumstances:"
2745 msgstr ""
2746
2747 # type: textblock
2748 #. type: textblock
2749 #: ../src/guestfs.pod:1259
2750 msgid "You have enabled the network or have opened the disk in write mode."
2751 msgstr ""
2752
2753 # type: textblock
2754 #. type: textblock
2755 #: ../src/guestfs.pod:1263
2756 msgid ""
2757 "You are also running untrusted code from the guest (see L</RUNNING "
2758 "COMMANDS>)."
2759 msgstr ""
2760
2761 # type: textblock
2762 #. type: textblock
2763 #: ../src/guestfs.pod:1268
2764 msgid ""
2765 "The way to avoid this is to specify the expected disk format when adding "
2766 "disks (the optional C<format> option to L</guestfs_add_drive_opts>).  You "
2767 "should always do this if the disk is raw format, and it's a good idea for "
2768 "other cases too."
2769 msgstr ""
2770
2771 # type: textblock
2772 #. type: textblock
2773 #: ../src/guestfs.pod:1273
2774 msgid ""
2775 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2776 "format is fetched from libvirt and passed through."
2777 msgstr ""
2778
2779 # type: textblock
2780 #. type: textblock
2781 #: ../src/guestfs.pod:1276
2782 msgid ""
2783 "For libguestfs tools, use the I<--format> command line parameter as "
2784 "appropriate."
2785 msgstr ""
2786
2787 # type: =head1
2788 #. type: =head1
2789 #: ../src/guestfs.pod:1279
2790 msgid "CONNECTION MANAGEMENT"
2791 msgstr ""
2792
2793 # type: =head2
2794 #. type: =head2
2795 #: ../src/guestfs.pod:1281
2796 msgid "guestfs_h *"
2797 msgstr ""
2798
2799 # type: textblock
2800 #. type: textblock
2801 #: ../src/guestfs.pod:1283
2802 msgid ""
2803 "C<guestfs_h> is the opaque type representing a connection handle.  Create a "
2804 "handle by calling L</guestfs_create>.  Call L</guestfs_close> to free the "
2805 "handle and release all resources used."
2806 msgstr ""
2807
2808 #. type: textblock
2809 #: ../src/guestfs.pod:1287
2810 msgid ""
2811 "For information on using multiple handles and threads, see the section L</"
2812 "MULTIPLE HANDLES AND MULTIPLE THREADS> above."
2813 msgstr ""
2814
2815 # type: =head2
2816 #. type: =head2
2817 #: ../src/guestfs.pod:1290
2818 msgid "guestfs_create"
2819 msgstr ""
2820
2821 # type: verbatim
2822 #. type: verbatim
2823 #: ../src/guestfs.pod:1292
2824 #, no-wrap
2825 msgid ""
2826 " guestfs_h *guestfs_create (void);\n"
2827 "\n"
2828 msgstr ""
2829
2830 # type: textblock
2831 #. type: textblock
2832 #: ../src/guestfs.pod:1294
2833 msgid "Create a connection handle."
2834 msgstr ""
2835
2836 #. type: textblock
2837 #: ../src/guestfs.pod:1296
2838 msgid ""
2839 "On success this returns a non-NULL pointer to a handle.  On error it returns "
2840 "NULL."
2841 msgstr ""
2842
2843 #. type: textblock
2844 #: ../src/guestfs.pod:1299
2845 msgid ""
2846 "You have to \"configure\" the handle after creating it.  This includes "
2847 "calling L</guestfs_add_drive_opts> (or one of the equivalent calls) on the "
2848 "handle at least once."
2849 msgstr ""
2850
2851 # type: textblock
2852 #. type: textblock
2853 #: ../src/guestfs.pod:1303
2854 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2855 msgstr ""
2856
2857 #. type: textblock
2858 #: ../src/guestfs.pod:1305
2859 msgid ""
2860 "You may also want to configure error handling for the handle.  See the L</"
2861 "ERROR HANDLING> section below."
2862 msgstr ""
2863
2864 # type: =head2
2865 #. type: =head2
2866 #: ../src/guestfs.pod:1308
2867 msgid "guestfs_close"
2868 msgstr ""
2869
2870 # type: verbatim
2871 #. type: verbatim
2872 #: ../src/guestfs.pod:1310
2873 #, no-wrap
2874 msgid ""
2875 " void guestfs_close (guestfs_h *g);\n"
2876 "\n"
2877 msgstr ""
2878
2879 # type: textblock
2880 #. type: textblock
2881 #: ../src/guestfs.pod:1312
2882 msgid "This closes the connection handle and frees up all resources used."
2883 msgstr ""
2884
2885 #. type: textblock
2886 #: ../src/guestfs.pod:1314
2887 msgid ""
2888 "If autosync was set on the handle and the handle was launched, then this "
2889 "implicitly calls various functions to unmount filesystems and sync the "
2890 "disk.  See L</guestfs_set_autosync> for more details."
2891 msgstr ""
2892
2893 #. type: textblock
2894 #: ../src/guestfs.pod:1318
2895 msgid "If a close callback was set on the handle, then it is called."
2896 msgstr ""
2897
2898 # type: =head1
2899 #. type: =head1
2900 #: ../src/guestfs.pod:1320
2901 msgid "ERROR HANDLING"
2902 msgstr ""
2903
2904 # type: textblock
2905 #. type: textblock
2906 #: ../src/guestfs.pod:1322
2907 msgid ""
2908 "API functions can return errors.  For example, almost all functions that "
2909 "return C<int> will return C<-1> to indicate an error."
2910 msgstr ""
2911
2912 # type: textblock
2913 #. type: textblock
2914 #: ../src/guestfs.pod:1325
2915 msgid ""
2916 "Additional information is available for errors: an error message string and "
2917 "optionally an error number (errno) if the thing that failed was a system "
2918 "call."
2919 msgstr ""
2920
2921 # type: textblock
2922 #. type: textblock
2923 #: ../src/guestfs.pod:1329
2924 msgid ""
2925 "You can get at the additional information about the last error on the handle "
2926 "by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
2927 "up an error handler with L</guestfs_set_error_handler>."
2928 msgstr ""
2929
2930 # type: textblock
2931 #. type: textblock
2932 #: ../src/guestfs.pod:1334
2933 msgid ""
2934 "When the handle is created, a default error handler is installed which "
2935 "prints the error message string to C<stderr>.  For small short-running "
2936 "command line programs it is sufficient to do:"
2937 msgstr ""
2938
2939 # type: verbatim
2940 #. type: verbatim
2941 #: ../src/guestfs.pod:1338
2942 #, no-wrap
2943 msgid ""
2944 " if (guestfs_launch (g) == -1)\n"
2945 "   exit (EXIT_FAILURE);\n"
2946 "\n"
2947 msgstr ""
2948
2949 # type: textblock
2950 #. type: textblock
2951 #: ../src/guestfs.pod:1341
2952 msgid ""
2953 "since the default error handler will ensure that an error message has been "
2954 "printed to C<stderr> before the program exits."
2955 msgstr ""
2956
2957 # type: textblock
2958 #. type: textblock
2959 #: ../src/guestfs.pod:1344
2960 msgid ""
2961 "For other programs the caller will almost certainly want to install an "
2962 "alternate error handler or do error handling in-line like this:"
2963 msgstr ""
2964
2965 # type: verbatim
2966 #. type: verbatim
2967 #: ../src/guestfs.pod:1347
2968 #, no-wrap
2969 msgid ""
2970 " g = guestfs_create ();\n"
2971 " \n"
2972 msgstr ""
2973
2974 # type: verbatim
2975 #. type: verbatim
2976 #: ../src/guestfs.pod:1349
2977 #, no-wrap
2978 msgid ""
2979 " /* This disables the default behaviour of printing errors\n"
2980 "    on stderr. */\n"
2981 " guestfs_set_error_handler (g, NULL, NULL);\n"
2982 " \n"
2983 msgstr ""
2984
2985 # type: verbatim
2986 #. type: verbatim
2987 #: ../src/guestfs.pod:1353
2988 #, no-wrap
2989 msgid ""
2990 " if (guestfs_launch (g) == -1) {\n"
2991 "   /* Examine the error message and print it etc. */\n"
2992 "   char *msg = guestfs_last_error (g);\n"
2993 "   int errnum = guestfs_last_errno (g);\n"
2994 "   fprintf (stderr, \"%s\\n\", msg);\n"
2995 "   /* ... */\n"
2996 "  }\n"
2997 "\n"
2998 msgstr ""
2999
3000 # type: textblock
3001 #. type: textblock
3002 #: ../src/guestfs.pod:1361
3003 msgid ""
3004 "Out of memory errors are handled differently.  The default action is to call "
3005 "L<abort(3)>.  If this is undesirable, then you can set a handler using L</"
3006 "guestfs_set_out_of_memory_handler>."
3007 msgstr ""
3008
3009 # type: textblock
3010 #. type: textblock
3011 #: ../src/guestfs.pod:1365
3012 msgid ""
3013 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
3014 "because there is no handle if this happens there is no way to get additional "
3015 "error information.  However L</guestfs_create> is supposed to be a "
3016 "lightweight operation which can only fail because of insufficient memory (it "
3017 "returns NULL in this case)."
3018 msgstr ""
3019
3020 # type: =head2
3021 #. type: =head2
3022 #: ../src/guestfs.pod:1371
3023 msgid "guestfs_last_error"
3024 msgstr ""
3025
3026 # type: verbatim
3027 #. type: verbatim
3028 #: ../src/guestfs.pod:1373
3029 #, no-wrap
3030 msgid ""
3031 " const char *guestfs_last_error (guestfs_h *g);\n"
3032 "\n"
3033 msgstr ""
3034
3035 # type: textblock
3036 #. type: textblock
3037 #: ../src/guestfs.pod:1375
3038 msgid ""
3039 "This returns the last error message that happened on C<g>.  If there has not "
3040 "been an error since the handle was created, then this returns C<NULL>."
3041 msgstr ""
3042
3043 # type: textblock
3044 #. type: textblock
3045 #: ../src/guestfs.pod:1379
3046 msgid ""
3047 "The lifetime of the returned string is until the next error occurs, or L</"
3048 "guestfs_close> is called."
3049 msgstr ""
3050
3051 # type: =head2
3052 #. type: =head2
3053 #: ../src/guestfs.pod:1382
3054 msgid "guestfs_last_errno"
3055 msgstr ""
3056
3057 # type: verbatim
3058 #. type: verbatim
3059 #: ../src/guestfs.pod:1384
3060 #, no-wrap
3061 msgid ""
3062 " int guestfs_last_errno (guestfs_h *g);\n"
3063 "\n"
3064 msgstr ""
3065
3066 # type: textblock
3067 #. type: textblock
3068 #: ../src/guestfs.pod:1386
3069 msgid "This returns the last error number (errno) that happened on C<g>."
3070 msgstr ""
3071
3072 # type: textblock
3073 #. type: textblock
3074 #: ../src/guestfs.pod:1388
3075 msgid "If successful, an errno integer not equal to zero is returned."
3076 msgstr ""
3077
3078 # type: textblock
3079 #. type: textblock
3080 #: ../src/guestfs.pod:1390
3081 msgid ""
3082 "If no error, this returns 0.  This call can return 0 in three situations:"
3083 msgstr ""
3084
3085 # type: textblock
3086 #. type: textblock
3087 #: ../src/guestfs.pod:1397
3088 msgid "There has not been any error on the handle."
3089 msgstr ""
3090
3091 # type: textblock
3092 #. type: textblock
3093 #: ../src/guestfs.pod:1401
3094 msgid ""
3095 "There has been an error but the errno was meaningless.  This corresponds to "
3096 "the case where the error did not come from a failed system call, but for "
3097 "some other reason."
3098 msgstr ""
3099
3100 # type: textblock
3101 #. type: textblock
3102 #: ../src/guestfs.pod:1407
3103 msgid ""
3104 "There was an error from a failed system call, but for some reason the errno "
3105 "was not captured and returned.  This usually indicates a bug in libguestfs."
3106 msgstr ""
3107
3108 # type: textblock
3109 #. type: textblock
3110 #: ../src/guestfs.pod:1413
3111 msgid ""
3112 "Libguestfs tries to convert the errno from inside the applicance into a "
3113 "corresponding errno for the caller (not entirely trivial: the appliance "
3114 "might be running a completely different operating system from the library "
3115 "and error numbers are not standardized across Un*xen).  If this could not be "
3116 "done, then the error is translated to C<EINVAL>.  In practice this should "
3117 "only happen in very rare circumstances."
3118 msgstr ""
3119
3120 # type: =head2
3121 #. type: =head2
3122 #: ../src/guestfs.pod:1421
3123 msgid "guestfs_set_error_handler"
3124 msgstr ""
3125
3126 # type: verbatim
3127 #. type: verbatim
3128 #: ../src/guestfs.pod:1423
3129 #, no-wrap
3130 msgid ""
3131 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
3132 "                                           void *opaque,\n"
3133 "                                           const char *msg);\n"
3134 " void guestfs_set_error_handler (guestfs_h *g,\n"
3135 "                                 guestfs_error_handler_cb cb,\n"
3136 "                                 void *opaque);\n"
3137 "\n"
3138 msgstr ""
3139
3140 # type: textblock
3141 #. type: textblock
3142 #: ../src/guestfs.pod:1430
3143 msgid ""
3144 "The callback C<cb> will be called if there is an error.  The parameters "
3145 "passed to the callback are an opaque data pointer and the error message "
3146 "string."
3147 msgstr ""
3148
3149 # type: textblock
3150 #. type: textblock
3151 #: ../src/guestfs.pod:1434
3152 msgid ""
3153 "C<errno> is not passed to the callback.  To get that the callback must call "
3154 "L</guestfs_last_errno>."
3155 msgstr ""
3156
3157 # type: textblock
3158 #. type: textblock
3159 #: ../src/guestfs.pod:1437
3160 msgid ""
3161 "Note that the message string C<msg> is freed as soon as the callback "
3162 "function returns, so if you want to stash it somewhere you must make your "
3163 "own copy."
3164 msgstr ""
3165
3166 # type: textblock
3167 #. type: textblock
3168 #: ../src/guestfs.pod:1441
3169 msgid "The default handler prints messages on C<stderr>."
3170 msgstr ""
3171
3172 # type: textblock
3173 #. type: textblock
3174 #: ../src/guestfs.pod:1443
3175 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
3176 msgstr ""
3177
3178 # type: =head2
3179 #. type: =head2
3180 #: ../src/guestfs.pod:1445
3181 msgid "guestfs_get_error_handler"
3182 msgstr ""
3183
3184 # type: verbatim
3185 #. type: verbatim
3186 #: ../src/guestfs.pod:1447
3187 #, no-wrap
3188 msgid ""
3189 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
3190 "                                                     void **opaque_rtn);\n"
3191 "\n"
3192 msgstr ""
3193
3194 # type: textblock
3195 #. type: textblock
3196 #: ../src/guestfs.pod:1450
3197 msgid "Returns the current error handler callback."
3198 msgstr ""
3199
3200 # type: =head2
3201 #. type: =head2
3202 #: ../src/guestfs.pod:1452
3203 msgid "guestfs_set_out_of_memory_handler"
3204 msgstr ""
3205
3206 # type: verbatim
3207 #. type: verbatim
3208 #: ../src/guestfs.pod:1454
3209 #, no-wrap
3210 msgid ""
3211 " typedef void (*guestfs_abort_cb) (void);\n"
3212 " int guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
3213 "                                        guestfs_abort_cb);\n"
3214 "\n"
3215 msgstr ""
3216
3217 # type: textblock
3218 #. type: textblock
3219 #: ../src/guestfs.pod:1458
3220 msgid ""
3221 "The callback C<cb> will be called if there is an out of memory situation.  "
3222 "I<Note this callback must not return>."
3223 msgstr ""
3224
3225 # type: textblock
3226 #. type: textblock
3227 #: ../src/guestfs.pod:1461
3228 msgid "The default is to call L<abort(3)>."
3229 msgstr ""
3230
3231 # type: textblock
3232 #. type: textblock
3233 #: ../src/guestfs.pod:1463
3234 msgid ""
3235 "You cannot set C<cb> to C<NULL>.  You can't ignore out of memory situations."
3236 msgstr ""
3237
3238 # type: =head2
3239 #. type: =head2
3240 #: ../src/guestfs.pod:1466
3241 msgid "guestfs_get_out_of_memory_handler"
3242 msgstr ""
3243
3244 # type: verbatim
3245 #. type: verbatim
3246 #: ../src/guestfs.pod:1468
3247 #, no-wrap
3248 msgid ""
3249 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
3250 "\n"
3251 msgstr ""
3252
3253 # type: textblock
3254 #. type: textblock
3255 #: ../src/guestfs.pod:1470
3256 msgid "This returns the current out of memory handler."
3257 msgstr ""
3258
3259 # type: =head1
3260 #. type: =head1
3261 #: ../src/guestfs.pod:1472
3262 msgid "API CALLS"
3263 msgstr ""
3264
3265 # type: textblock
3266 #. type: textblock
3267 #: ../src/guestfs.pod:1474 ../fish/guestfish.pod:1008
3268 msgid "@ACTIONS@"
3269 msgstr ""
3270
3271 # type: =head1
3272 #. type: =head1
3273 #: ../src/guestfs.pod:1476
3274 msgid "STRUCTURES"
3275 msgstr ""
3276
3277 # type: textblock
3278 #. type: textblock
3279 #: ../src/guestfs.pod:1478
3280 msgid "@STRUCTS@"
3281 msgstr ""
3282
3283 # type: =head1
3284 #. type: =head1
3285 #: ../src/guestfs.pod:1480
3286 msgid "AVAILABILITY"
3287 msgstr ""
3288
3289 # type: =head2
3290 #. type: =head2
3291 #: ../src/guestfs.pod:1482
3292 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
3293 msgstr ""
3294
3295 # type: textblock
3296 #. type: textblock
3297 #: ../src/guestfs.pod:1484
3298 msgid ""
3299 "Using L</guestfs_available> you can test availability of the following "
3300 "groups of functions.  This test queries the appliance to see if the "
3301 "appliance you are currently using supports the functionality."
3302 msgstr ""
3303
3304 # type: textblock
3305 #. type: textblock
3306 #: ../src/guestfs.pod:1489
3307 msgid "@AVAILABILITY@"
3308 msgstr ""
3309
3310 # type: =head2
3311 #. type: =head2
3312 #: ../src/guestfs.pod:1491
3313 msgid "GUESTFISH supported COMMAND"
3314 msgstr ""
3315
3316 # type: textblock
3317 #. type: textblock
3318 #: ../src/guestfs.pod:1493
3319 msgid ""
3320 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
3321 "prints out the available groups and whether they are supported by this build "
3322 "of libguestfs.  Note however that you have to do C<run> first."
3323 msgstr ""
3324
3325 # type: =head2
3326 #. type: =head2
3327 #: ../src/guestfs.pod:1498
3328 msgid "SINGLE CALLS AT COMPILE TIME"
3329 msgstr ""
3330
3331 # type: textblock
3332 #. type: textblock
3333 #: ../src/guestfs.pod:1500
3334 msgid ""
3335 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
3336 "function, such as:"
3337 msgstr ""
3338
3339 # type: verbatim
3340 #. type: verbatim
3341 #: ../src/guestfs.pod:1503
3342 #, no-wrap
3343 msgid ""
3344 " #define LIBGUESTFS_HAVE_DD 1\n"
3345 "\n"
3346 msgstr ""
3347
3348 # type: textblock
3349 #. type: textblock
3350 #: ../src/guestfs.pod:1505
3351 msgid "if L</guestfs_dd> is available."
3352 msgstr ""
3353
3354 # type: textblock
3355 #. type: textblock
3356 #: ../src/guestfs.pod:1507
3357 msgid ""
3358 "Before version 1.5.8, if you needed to test whether a single libguestfs "
3359 "function is available at compile time, we recommended using build tools such "
3360 "as autoconf or cmake.  For example in autotools you could use:"
3361 msgstr ""
3362
3363 # type: verbatim
3364 #. type: verbatim
3365 #: ../src/guestfs.pod:1512
3366 #, no-wrap
3367 msgid ""
3368 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
3369 " AC_CHECK_FUNCS([guestfs_dd])\n"
3370 "\n"
3371 msgstr ""
3372
3373 # type: textblock
3374 #. type: textblock
3375 #: ../src/guestfs.pod:1515
3376 msgid ""
3377 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
3378 "in your program."
3379 msgstr ""
3380
3381 # type: =head2
3382 #. type: =head2
3383 #: ../src/guestfs.pod:1518
3384 msgid "SINGLE CALLS AT RUN TIME"
3385 msgstr ""
3386
3387 # type: textblock
3388 #. type: textblock
3389 #: ../src/guestfs.pod:1520
3390 msgid ""
3391 "Testing at compile time doesn't guarantee that a function really exists in "
3392 "the library.  The reason is that you might be dynamically linked against a "
3393 "previous I<libguestfs.so> (dynamic library)  which doesn't have the call.  "
3394 "This situation unfortunately results in a segmentation fault, which is a "
3395 "shortcoming of the C dynamic linking system itself."
3396 msgstr ""
3397
3398 # type: textblock
3399 #. type: textblock
3400 #: ../src/guestfs.pod:1527
3401 msgid ""
3402 "You can use L<dlopen(3)> to test if a function is available at run time, as "
3403 "in this example program (note that you still need the compile time check as "
3404 "well):"
3405 msgstr ""
3406
3407 # type: verbatim
3408 #. type: verbatim
3409 #: ../src/guestfs.pod:1531
3410 #, no-wrap
3411 msgid ""
3412 " #include <stdio.h>\n"
3413 " #include <stdlib.h>\n"
3414 " #include <unistd.h>\n"
3415 " #include <dlfcn.h>\n"
3416 " #include <guestfs.h>\n"
3417 " \n"
3418 msgstr ""
3419
3420 # type: verbatim
3421 #. type: verbatim
3422 #: ../src/guestfs.pod:1537
3423 #, no-wrap
3424 msgid ""
3425 " main ()\n"
3426 " {\n"
3427 " #ifdef LIBGUESTFS_HAVE_DD\n"
3428 "   void *dl;\n"
3429 "   int has_function;\n"
3430 " \n"
3431 msgstr ""
3432
3433 # type: verbatim
3434 #. type: verbatim
3435 #: ../src/guestfs.pod:1543
3436 #, no-wrap
3437 msgid ""
3438 "   /* Test if the function guestfs_dd is really available. */\n"
3439 "   dl = dlopen (NULL, RTLD_LAZY);\n"
3440 "   if (!dl) {\n"
3441 "     fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
3442 "     exit (EXIT_FAILURE);\n"
3443 "   }\n"
3444 "   has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
3445 "   dlclose (dl);\n"
3446 " \n"
3447 msgstr ""
3448
3449 # type: verbatim
3450 #. type: verbatim
3451 #: ../src/guestfs.pod:1552
3452 #, no-wrap
3453 msgid ""
3454 "   if (!has_function)\n"
3455 "     printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
3456 "   else {\n"
3457 "     printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
3458 "     /* Now it's safe to call\n"
3459 "     guestfs_dd (g, \"foo\", \"bar\");\n"
3460 "     */\n"
3461 "   }\n"
3462 " #else\n"
3463 "   printf (\"guestfs_dd function was not found at compile time\\n\");\n"
3464 " #endif\n"
3465 "  }\n"
3466 "\n"
3467 msgstr ""
3468
3469 # type: textblock
3470 #. type: textblock
3471 #: ../src/guestfs.pod:1565
3472 msgid ""
3473 "You may think the above is an awful lot of hassle, and it is.  There are "
3474 "other ways outside of the C linking system to ensure that this kind of "
3475 "incompatibility never arises, such as using package versioning:"
3476 msgstr ""
3477
3478 # type: verbatim
3479 #. type: verbatim
3480 #: ../src/guestfs.pod:1570
3481 #, no-wrap
3482 msgid ""
3483 " Requires: libguestfs >= 1.0.80\n"
3484 "\n"
3485 msgstr ""
3486
3487 # type: =head1
3488 #. type: =head1
3489 #: ../src/guestfs.pod:1572
3490 msgid "CALLS WITH OPTIONAL ARGUMENTS"
3491 msgstr ""
3492
3493 # type: textblock
3494 #. type: textblock
3495 #: ../src/guestfs.pod:1574
3496 msgid ""
3497 "A recent feature of the API is the introduction of calls which take optional "
3498 "arguments.  In C these are declared 3 ways.  The main way is as a call which "
3499 "takes variable arguments (ie. C<...>), as in this example:"
3500 msgstr ""
3501
3502 # type: verbatim
3503 #. type: verbatim
3504 #: ../src/guestfs.pod:1579
3505 #, no-wrap
3506 msgid ""
3507 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
3508 "\n"
3509 msgstr ""
3510
3511 # type: textblock
3512 #. type: textblock
3513 #: ../src/guestfs.pod:1581
3514 msgid ""
3515 "Call this with a list of optional arguments, terminated by C<-1>.  So to "
3516 "call with no optional arguments specified:"
3517 msgstr ""
3518
3519 # type: verbatim
3520 #. type: verbatim
3521 #: ../src/guestfs.pod:1584
3522 #, no-wrap
3523 msgid ""
3524 " guestfs_add_drive_opts (g, filename, -1);\n"
3525 "\n"
3526 msgstr ""
3527
3528 # type: textblock
3529 #. type: textblock
3530 #: ../src/guestfs.pod:1586
3531 msgid "With a single optional argument:"
3532 msgstr ""
3533
3534 # type: verbatim
3535 #. type: verbatim
3536 #: ../src/guestfs.pod:1588
3537 #, no-wrap
3538 msgid ""
3539 " guestfs_add_drive_opts (g, filename,\n"
3540 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3541 "                         -1);\n"
3542 "\n"
3543 msgstr ""
3544
3545 # type: textblock
3546 #. type: textblock
3547 #: ../src/guestfs.pod:1592
3548 msgid "With two:"
3549 msgstr ""
3550
3551 # type: verbatim
3552 #. type: verbatim
3553 #: ../src/guestfs.pod:1594
3554 #, no-wrap
3555 msgid ""
3556 " guestfs_add_drive_opts (g, filename,\n"
3557 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3558 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3559 "                         -1);\n"
3560 "\n"
3561 msgstr ""
3562
3563 # type: textblock
3564 #. type: textblock
3565 #: ../src/guestfs.pod:1599
3566 msgid ""
3567 "and so forth.  Don't forget the terminating C<-1> otherwise Bad Things will "
3568 "happen!"
3569 msgstr ""
3570
3571 # type: =head2
3572 #. type: =head2
3573 #: ../src/guestfs.pod:1602
3574 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3575 msgstr ""
3576
3577 # type: textblock
3578 #. type: textblock
3579 #: ../src/guestfs.pod:1604
3580 msgid ""
3581 "The second variant has the same name with the suffix C<_va>, which works the "
3582 "same way but takes a C<va_list>.  See the C manual for details.  For the "
3583 "example function, this is declared:"
3584 msgstr ""
3585
3586 # type: verbatim
3587 #. type: verbatim
3588 #: ../src/guestfs.pod:1608
3589 #, no-wrap
3590 msgid ""
3591 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3592 "                                va_list args);\n"
3593 "\n"
3594 msgstr ""
3595
3596 # type: =head2
3597 #. type: =head2
3598 #: ../src/guestfs.pod:1611
3599 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3600 msgstr ""
3601
3602 # type: textblock
3603 #. type: textblock
3604 #: ../src/guestfs.pod:1613
3605 msgid ""
3606 "The third variant is useful where you need to construct these calls.  You "
3607 "pass in a structure where you fill in the optional fields.  The structure "
3608 "has a bitmask as the first element which you must set to indicate which "
3609 "fields you have filled in.  For our example function the structure and call "
3610 "are declared:"
3611 msgstr ""
3612
3613 # type: verbatim
3614 #. type: verbatim
3615 #: ../src/guestfs.pod:1619
3616 #, no-wrap
3617 msgid ""
3618 " struct guestfs_add_drive_opts_argv {\n"
3619 "   uint64_t bitmask;\n"
3620 "   int readonly;\n"
3621 "   const char *format;\n"
3622 "   /* ... */\n"
3623 " };\n"
3624 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3625 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
3626 "\n"
3627 msgstr ""
3628
3629 # type: textblock
3630 #. type: textblock
3631 #: ../src/guestfs.pod:1628
3632 msgid "You could call it like this:"
3633 msgstr ""
3634
3635 # type: verbatim
3636 #. type: verbatim
3637 #: ../src/guestfs.pod:1630
3638 #, no-wrap
3639 msgid ""
3640 " struct guestfs_add_drive_opts_argv optargs = {\n"
3641 "   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3642 "              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3643 "   .readonly = 1,\n"
3644 "   .format = \"qcow2\"\n"
3645 " };\n"
3646 " \n"
3647 msgstr ""
3648
3649 # type: verbatim
3650 #. type: verbatim
3651 #: ../src/guestfs.pod:1637
3652 #, no-wrap
3653 msgid ""
3654 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3655 "\n"
3656 msgstr ""
3657
3658 # type: textblock
3659 #. type: textblock
3660 #: ../src/guestfs.pod:1639 ../src/guestfs-actions.pod:11
3661 #: ../src/guestfs-actions.pod:1852 ../fish/guestfish-actions.pod:9
3662 #: ../fish/guestfish-actions.pod:1257 ../tools/virt-win-reg.pl:532
3663 msgid "Notes:"
3664 msgstr ""
3665
3666 # type: textblock
3667 #. type: textblock
3668 #: ../src/guestfs.pod:1645
3669 msgid "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3670 msgstr ""
3671
3672 # type: textblock
3673 #. type: textblock
3674 #: ../src/guestfs.pod:1650
3675 msgid "You do not need to fill in all fields of the structure."
3676 msgstr ""
3677
3678 # type: textblock
3679 #. type: textblock
3680 #: ../src/guestfs.pod:1654
3681 msgid ""
3682 "There must be a one-to-one correspondence between fields of the structure "
3683 "that are filled in, and bits set in the bitmask."
3684 msgstr ""
3685
3686 # type: =head2
3687 #. type: =head2
3688 #: ../src/guestfs.pod:1659
3689 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3690 msgstr ""
3691
3692 # type: textblock
3693 #. type: textblock
3694 #: ../src/guestfs.pod:1661
3695 msgid ""
3696 "In other languages, optional arguments are expressed in the way that is "
3697 "natural for that language.  We refer you to the language-specific "
3698 "documentation for more details on that."
3699 msgstr ""
3700
3701 # type: textblock
3702 #. type: textblock
3703 #: ../src/guestfs.pod:1665
3704 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3705 msgstr ""
3706
3707 # type: =head2
3708 #. type: =head2
3709 #: ../src/guestfs.pod:1667
3710 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3711 msgstr ""
3712
3713 #. type: textblock
3714 #: ../src/guestfs.pod:1669
3715 msgid ""
3716 "B<Note:> This section documents the generic event mechanism introduced in "
3717 "libguestfs 1.10, which you should use in new code if possible.  The old "
3718 "functions C<guestfs_set_log_message_callback>, "
3719 "C<guestfs_set_subprocess_quit_callback>, "
3720 "C<guestfs_set_launch_done_callback>, C<guestfs_set_close_callback> and "
3721 "C<guestfs_set_progress_callback> are no longer documented in this manual "
3722 "page."
3723 msgstr ""
3724
3725 #. type: textblock
3726 #: ../src/guestfs.pod:1677
3727 msgid ""
3728 "Handles generate events when certain things happen, such as log messages "
3729 "being generated, progress messages during long-running operations, or the "
3730 "handle being closed.  The API calls described below let you register a "
3731 "callback to be called when events happen.  You can register multiple "
3732 "callbacks (for the same, different or overlapping sets of events), and "
3733 "individually remove callbacks.  If callbacks are not removed, then they "
3734 "remain in force until the handle is closed."
3735 msgstr ""
3736
3737 #. type: textblock
3738 #: ../src/guestfs.pod:1685
3739 msgid ""
3740 "In the current implementation, events are only generated synchronously: that "
3741 "means that events (and hence callbacks) can only happen while you are in the "
3742 "middle of making another libguestfs call.  The callback is called in the "
3743 "same thread."
3744 msgstr ""
3745
3746 #. type: textblock
3747 #: ../src/guestfs.pod:1690
3748 msgid ""
3749 "Events may contain a payload, usually nothing (void), an array of 64 bit "
3750 "unsigned integers, or a message buffer.  Payloads are discussed later on."
3751 msgstr ""
3752
3753 #. type: =head3
3754 #: ../src/guestfs.pod:1694
3755 msgid "CLASSES OF EVENTS"
3756 msgstr ""
3757
3758 #. type: =item
3759 #: ../src/guestfs.pod:1698
3760 msgid "GUESTFS_EVENT_CLOSE (payload type: void)"
3761 msgstr ""
3762
3763 #. type: textblock
3764 #: ../src/guestfs.pod:1701
3765 msgid ""
3766 "The callback function will be called while the handle is being closed "
3767 "(synchronously from L</guestfs_close>)."
3768 msgstr ""
3769
3770 # type: textblock
3771 #. type: textblock
3772 #: ../src/guestfs.pod:1704
3773 msgid ""
3774 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3775 "handles that are open when the program exits.  This means that this callback "
3776 "might be called indirectly from L<exit(3)>, which can cause unexpected "
3777 "problems in higher-level languages (eg. if your HLL interpreter has already "
3778 "been cleaned up by the time this is called, and if your callback then jumps "
3779 "into some HLL function)."
3780 msgstr ""
3781
3782 #. type: textblock
3783 #: ../src/guestfs.pod:1711
3784 msgid ""
3785 "If no callback is registered: the handle is closed without any callback "
3786 "being invoked."
3787 msgstr ""
3788
3789 #. type: =item
3790 #: ../src/guestfs.pod:1714
3791 msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)"
3792 msgstr ""
3793
3794 #. type: textblock
3795 #: ../src/guestfs.pod:1717
3796 msgid ""
3797 "The callback function will be called when the child process quits, either "
3798 "asynchronously or if killed by L</guestfs_kill_subprocess>.  (This "
3799 "corresponds to a transition from any state to the CONFIG state)."
3800 msgstr ""
3801
3802 #. type: textblock
3803 #: ../src/guestfs.pod:1721 ../src/guestfs.pod:1730
3804 msgid "If no callback is registered: the event is ignored."
3805 msgstr ""
3806
3807 #. type: =item
3808 #: ../src/guestfs.pod:1723
3809 msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)"
3810 msgstr ""
3811
3812 #. type: textblock
3813 #: ../src/guestfs.pod:1726
3814 msgid ""
3815 "The callback function will be called when the child process becomes ready "
3816 "first time after it has been launched.  (This corresponds to a transition "
3817 "from LAUNCHING to the READY state)."
3818 msgstr ""
3819
3820 #. type: =item
3821 #: ../src/guestfs.pod:1732
3822 msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)"
3823 msgstr ""
3824
3825 # type: textblock
3826 #. type: textblock
3827 #: ../src/guestfs.pod:1735
3828 msgid ""
3829 "Some long-running operations can generate progress messages.  If this "
3830 "callback is registered, then it will be called each time a progress message "
3831 "is generated (usually two seconds after the operation started, and three "
3832 "times per second thereafter until it completes, although the frequency may "
3833 "change in future versions)."
3834 msgstr ""
3835
3836 #. type: textblock
3837 #: ../src/guestfs.pod:1741
3838 msgid ""
3839 "The callback receives in the payload four unsigned 64 bit numbers which are "
3840 "(in order): C<proc_nr>, C<serial>, C<position>, C<total>."
3841 msgstr ""
3842
3843 #. type: textblock
3844 #: ../src/guestfs.pod:1744
3845 msgid ""
3846 "The units of C<total> are not defined, although for some operations C<total> "
3847 "may relate in some way to the amount of data to be transferred (eg. in bytes "
3848 "or megabytes), and C<position> may be the portion which has been transferred."
3849 msgstr ""
3850
3851 # type: textblock
3852 #. type: textblock
3853 #: ../src/guestfs.pod:1749
3854 msgid "The only defined and stable parts of the API are:"
3855 msgstr ""
3856
3857 # type: textblock
3858 #. type: textblock
3859 #: ../src/guestfs.pod:1755
3860 msgid ""
3861 "The callback can display to the user some type of progress bar or indicator "
3862 "which shows the ratio of C<position>:C<total>."
3863 msgstr ""
3864
3865 # type: textblock
3866 #. type: textblock
3867 #: ../src/guestfs.pod:1760
3868 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3869 msgstr ""
3870
3871 #. type: textblock
3872 #: ../src/guestfs.pod:1764
3873 msgid ""
3874 "If any progress notification is sent during a call, then a final progress "
3875 "notification is always sent when C<position> = C<total> (I<unless> the call "
3876 "fails with an error)."
3877 msgstr ""
3878
3879 # type: textblock
3880 #. type: textblock
3881 #: ../src/guestfs.pod:1768
3882 msgid ""
3883 "This is to simplify caller code, so callers can easily set the progress "
3884 "indicator to \"100%\" at the end of the operation, without requiring special "
3885 "code to detect this case."
3886 msgstr ""
3887
3888 #. type: textblock
3889 #: ../src/guestfs.pod:1774
3890 msgid ""
3891 "For some calls we are unable to estimate the progress of the call, but we "
3892 "can still generate progress messages to indicate activity.  This is known as "
3893 "\"pulse mode\", and is directly supported by certain progress bar "
3894 "implementations (eg. GtkProgressBar)."
3895 msgstr ""
3896
3897 #. type: textblock
3898 #: ../src/guestfs.pod:1779
3899 msgid ""
3900 "For these calls, zero or more progress messages are generated with "
3901 "C<position = 0> and C<total = 1>, followed by a final message with "
3902 "C<position = total = 1>."
3903 msgstr ""
3904
3905 #. type: textblock
3906 #: ../src/guestfs.pod:1783
3907 msgid ""
3908 "As noted above, if the call fails with an error then the final message may "
3909 "not be generated."
3910 msgstr ""
3911
3912 #. type: textblock
3913 #: ../src/guestfs.pod:1788
3914 msgid ""
3915 "The callback also receives the procedure number (C<proc_nr>) and serial "
3916 "number (C<serial>) of the call.  These are only useful for debugging "
3917 "protocol issues, and the callback can normally ignore them.  The callback "
3918 "may want to print these numbers in error messages or debugging messages."
3919 msgstr ""
3920
3921 #. type: textblock
3922 #: ../src/guestfs.pod:1794
3923 msgid "If no callback is registered: progress messages are discarded."
3924 msgstr ""
3925
3926 #. type: =item
3927 #: ../src/guestfs.pod:1796
3928 msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)"
3929 msgstr ""
3930
3931 #. type: textblock
3932 #: ../src/guestfs.pod:1799
3933 msgid ""
3934 "The callback function is called whenever a log message is generated by qemu, "
3935 "the appliance kernel, guestfsd (daemon), or utility programs."
3936 msgstr ""
3937
3938 #. type: textblock
3939 #: ../src/guestfs.pod:1802
3940 msgid ""
3941 "If the verbose flag (L</guestfs_set_verbose>) is set before launch (L</"
3942 "guestfs_launch>) then additional debug messages are generated."
3943 msgstr ""
3944
3945 #. type: textblock
3946 #: ../src/guestfs.pod:1805 ../src/guestfs.pod:1819
3947 msgid ""
3948 "If no callback is registered: the messages are discarded unless the verbose "
3949 "flag is set in which case they are sent to stderr.  You can override the "
3950 "printing of verbose messages to stderr by setting up a callback."
3951 msgstr ""
3952
3953 #. type: =item
3954 #: ../src/guestfs.pod:1810
3955 msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)"
3956 msgstr ""
3957
3958 #. type: textblock
3959 #: ../src/guestfs.pod:1813
3960 msgid ""
3961 "The callback function is called whenever a log message is generated by the "
3962 "library part of libguestfs."
3963 msgstr ""
3964
3965 #. type: textblock
3966 #: ../src/guestfs.pod:1816
3967 msgid ""
3968 "If the verbose flag (L</guestfs_set_verbose>) is set then additional debug "
3969 "messages are generated."
3970 msgstr ""
3971
3972 #. type: =item
3973 #: ../src/guestfs.pod:1824
3974 msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)"
3975 msgstr ""
3976
3977 #. type: textblock
3978 #: ../src/guestfs.pod:1827
3979 msgid ""
3980 "The callback function is called whenever a trace message is generated.  This "
3981 "only applies if the trace flag (L</guestfs_set_trace>) is set."
3982 msgstr ""
3983
3984 #. type: textblock
3985 #: ../src/guestfs.pod:1830
3986 msgid ""
3987 "If no callback is registered: the messages are sent to stderr.  You can "
3988 "override the printing of trace messages to stderr by setting up a callback."
3989 msgstr ""
3990
3991 #. type: =head3
3992 #: ../src/guestfs.pod:1836
3993 msgid "guestfs_set_event_callback"
3994 msgstr ""
3995
3996 #. type: verbatim
3997 #: ../src/guestfs.pod:1838
3998 #, no-wrap
3999 msgid ""
4000 " int guestfs_set_event_callback (guestfs_h *g,\n"
4001 "                                 guestfs_event_callback cb,\n"
4002 "                                 uint64_t event_bitmask,\n"
4003 "                                 int flags,\n"
4004 "                                 void *opaque);\n"
4005 "\n"
4006 msgstr ""
4007
4008 #. type: textblock
4009 #: ../src/guestfs.pod:1844
4010 msgid ""
4011 "This function registers a callback (C<cb>) for all event classes in the "
4012 "C<event_bitmask>."
4013 msgstr ""
4014
4015 #. type: textblock
4016 #: ../src/guestfs.pod:1847
4017 msgid ""
4018 "For example, to register for all log message events, you could call this "
4019 "function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>.  "
4020 "To register a single callback for all possible classes of events, use "
4021 "C<GUESTFS_EVENT_ALL>."
4022 msgstr ""
4023
4024 #. type: textblock
4025 #: ../src/guestfs.pod:1853
4026 msgid "C<flags> should always be passed as 0."
4027 msgstr ""
4028
4029 #. type: textblock
4030 #: ../src/guestfs.pod:1855
4031 msgid ""
4032 "C<opaque> is an opaque pointer which is passed to the callback.  You can use "
4033 "it for any purpose."
4034 msgstr ""
4035
4036 #. type: textblock
4037 #: ../src/guestfs.pod:1858
4038 msgid ""
4039 "The return value is the event handle (an integer) which you can use to "
4040 "delete the callback (see below)."
4041 msgstr ""
4042
4043 #. type: textblock
4044 #: ../src/guestfs.pod:1861
4045 msgid ""
4046 "If there is an error, this function returns C<-1>, and sets the error in the "
4047 "handle in the usual way (see L</guestfs_last_error> etc.)"
4048 msgstr ""
4049
4050 #. type: textblock
4051 #: ../src/guestfs.pod:1864
4052 msgid ""
4053 "Callbacks remain in effect until they are deleted, or until the handle is "
4054 "closed."
4055 msgstr ""
4056
4057 #. type: textblock
4058 #: ../src/guestfs.pod:1867
4059 msgid ""
4060 "In the case where multiple callbacks are registered for a particular event "
4061 "class, all of the callbacks are called.  The order in which multiple "
4062 "callbacks are called is not defined."
4063 msgstr ""
4064
4065 #. type: =head3
4066 #: ../src/guestfs.pod:1871
4067 msgid "guestfs_delete_event_callback"
4068 msgstr ""
4069
4070 #. type: verbatim
4071 #: ../src/guestfs.pod:1873
4072 #, no-wrap
4073 msgid ""
4074 " void guestfs_delete_event_callback (guestfs_h *g, int event_handle);\n"
4075 "\n"
4076 msgstr ""
4077
4078 #. type: textblock
4079 #: ../src/guestfs.pod:1875
4080 msgid ""
4081 "Delete a callback that was previously registered.  C<event_handle> should be "
4082 "the integer that was returned by a previous call to "
4083 "C<guestfs_set_event_callback> on the same handle."
4084 msgstr ""
4085
4086 #. type: =head3
4087 #: ../src/guestfs.pod:1879
4088 msgid "guestfs_event_callback"
4089 msgstr ""
4090
4091 #. type: verbatim
4092 #: ../src/guestfs.pod:1881
4093 #, no-wrap
4094 msgid ""
4095 " typedef void (*guestfs_event_callback) (\n"
4096 "                  guestfs_h *g,\n"
4097 "                  void *opaque,\n"
4098 "                  uint64_t event,\n"
4099 "                  int event_handle,\n"
4100 "                  int flags,\n"
4101 "                  const char *buf, size_t buf_len,\n"
4102 "                  const uint64_t *array, size_t array_len);\n"
4103 "\n"
4104 msgstr ""
4105
4106 #. type: textblock
4107 #: ../src/guestfs.pod:1890
4108 msgid ""
4109 "This is the type of the event callback function that you have to provide."
4110 msgstr ""
4111
4112 #. type: textblock
4113 #: ../src/guestfs.pod:1893
4114 msgid ""
4115 "The basic parameters are: the handle (C<g>), the opaque user pointer "
4116 "(C<opaque>), the event class (eg. C<GUESTFS_EVENT_PROGRESS>), the event "
4117 "handle, and C<flags> which in the current API you should ignore."
4118 msgstr ""
4119
4120 #. type: textblock
4121 #: ../src/guestfs.pod:1897
4122 msgid ""
4123 "The remaining parameters contain the event payload (if any).  Each event may "
4124 "contain a payload, which usually relates to the event class, but for future "
4125 "proofing your code should be written to handle any payload for any event "
4126 "class."
4127 msgstr ""
4128
4129 #. type: textblock
4130 #: ../src/guestfs.pod:1902
4131 msgid ""
4132 "C<buf> and C<buf_len> contain a message buffer (if C<buf_len == 0>, then "
4133 "there is no message buffer).  Note that this message buffer can contain "
4134 "arbitrary 8 bit data, including NUL bytes."
4135 msgstr ""
4136
4137 #. type: textblock
4138 #: ../src/guestfs.pod:1906
4139 msgid ""
4140 "C<array> and C<array_len> is an array of 64 bit unsigned integers.  At the "
4141 "moment this is only used for progress messages."
4142 msgstr ""
4143
4144 #. type: =head3
4145 #: ../src/guestfs.pod:1909
4146 msgid "EXAMPLE: CAPTURING LOG MESSAGES"
4147 msgstr ""
4148
4149 #. type: textblock
4150 #: ../src/guestfs.pod:1911
4151 msgid ""
4152 "One motivation for the generic event API was to allow GUI programs to "
4153 "capture debug and other messages.  In libguestfs E<le> 1.8 these were sent "
4154 "unconditionally to C<stderr>."
4155 msgstr ""
4156
4157 #. type: textblock
4158 #: ../src/guestfs.pod:1915
4159 msgid ""
4160 "Events associated with log messages are: C<GUESTFS_EVENT_LIBRARY>, "
4161 "C<GUESTFS_EVENT_APPLIANCE> and C<GUESTFS_EVENT_TRACE>.  (Note that error "
4162 "messages are not events; you must capture error messages separately)."
4163 msgstr ""
4164
4165 #. type: textblock
4166 #: ../src/guestfs.pod:1920
4167 msgid ""
4168 "Programs have to set up a callback to capture the classes of events of "
4169 "interest:"
4170 msgstr ""
4171
4172 #. type: verbatim
4173 #: ../src/guestfs.pod:1923
4174 #, no-wrap
4175 msgid ""
4176 " int eh =\n"
4177 "   guestfs_set_event_callback\n"
4178 "     (g, message_callback,\n"
4179 "      GUESTFS_EVENT_LIBRARY|GUESTFS_EVENT_APPLIANCE|\n"
4180 "      GUESTFS_EVENT_TRACE,\n"
4181 "      0, NULL) == -1)\n"
4182 " if (eh == -1) {\n"
4183 "   // handle error in the usual way\n"
4184 " }\n"
4185 "\n"
4186 msgstr ""
4187
4188 #. type: textblock
4189 #: ../src/guestfs.pod:1933
4190 msgid ""
4191 "The callback can then direct messages to the appropriate place.  In this "
4192 "example, messages are directed to syslog:"
4193 msgstr ""
4194
4195 #. type: verbatim
4196 #: ../src/guestfs.pod:1936
4197 #, no-wrap
4198 msgid ""
4199 " static void\n"
4200 " message_callback (\n"
4201 "         guestfs_h *g,\n"
4202 "         void *opaque,\n"
4203 "         uint64_t event,\n"
4204 "         int event_handle,\n"
4205 "         int flags,\n"
4206 "         const char *buf, size_t buf_len,\n"
4207 "         const uint64_t *array, size_t array_len)\n"
4208 " {\n"
4209 "   const int priority = LOG_USER|LOG_INFO;\n"
4210 "   if (buf_len > 0)\n"
4211 "     syslog (priority, \"event 0x%lx: %s\", event, buf);\n"
4212 " }\n"
4213 "\n"
4214 msgstr ""
4215
4216 # type: =head1
4217 #. type: =head1
4218 #: ../src/guestfs.pod:1951
4219 msgid "PRIVATE DATA AREA"
4220 msgstr ""
4221
4222 #. type: textblock
4223 #: ../src/guestfs.pod:1953
4224 msgid ""
4225 "You can attach named pieces of private data to the libguestfs handle, fetch "
4226 "them by name, and walk over them, for the lifetime of the handle.  This is "
4227 "called the private data area and is only available from the C API."
4228 msgstr ""
4229
4230 # type: textblock
4231 #. type: textblock
4232 #: ../src/guestfs.pod:1958
4233 msgid "To attach a named piece of data, use the following call:"
4234 msgstr ""
4235
4236 # type: verbatim
4237 #. type: verbatim
4238 #: ../src/guestfs.pod:1960
4239 #, no-wrap
4240 msgid ""
4241 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
4242 "\n"
4243 msgstr ""
4244
4245 #. type: textblock
4246 #: ../src/guestfs.pod:1962
4247 msgid ""
4248 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
4249 "pointer (which can be C<NULL>).  Any previous item with the same key is "
4250 "overwritten."
4251 msgstr ""
4252
4253 #. type: textblock
4254 #: ../src/guestfs.pod:1966
4255 msgid ""
4256 "You can use any C<key> you want, but your key should I<not> start with an "
4257 "underscore character.  Keys beginning with an underscore character are "
4258 "reserved for internal libguestfs purposes (eg. for implementing language "
4259 "bindings).  It is recommended that you prefix the key with some unique "
4260 "string to avoid collisions with other users."
4261 msgstr ""
4262
4263 # type: textblock
4264 #. type: textblock
4265 #: ../src/guestfs.pod:1972
4266 msgid "To retrieve the pointer, use:"
4267 msgstr ""
4268
4269 # type: verbatim
4270 #. type: verbatim
4271 #: ../src/guestfs.pod:1974
4272 #, no-wrap
4273 msgid ""
4274 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
4275 "\n"
4276 msgstr ""
4277
4278 # type: textblock
4279 #. type: textblock
4280 #: ../src/guestfs.pod:1976
4281 msgid ""
4282 "This function returns C<NULL> if either no data is found associated with "
4283 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
4284 "C<NULL>."
4285 msgstr ""
4286
4287 #. type: textblock
4288 #: ../src/guestfs.pod:1980
4289 msgid ""
4290 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
4291 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
4292 "all.  In particular, libguestfs does I<not> try to free the data when the "
4293 "handle is closed.  If the data must be freed, then the caller must either "
4294 "free it before calling L</guestfs_close> or must set up a close callback to "
4295 "do it (see L</GUESTFS_EVENT_CLOSE>)."
4296 msgstr ""
4297
4298 #. type: textblock
4299 #: ../src/guestfs.pod:1987
4300 msgid "To walk over all entries, use these two functions:"
4301 msgstr ""
4302
4303 #. type: verbatim
4304 #: ../src/guestfs.pod:1989
4305 #, no-wrap
4306 msgid ""
4307 " void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n"
4308 "\n"
4309 msgstr ""
4310
4311 #. type: verbatim
4312 #: ../src/guestfs.pod:1991
4313 #, no-wrap
4314 msgid ""
4315 " void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n"
4316 "\n"
4317 msgstr ""
4318
4319 #. type: textblock
4320 #: ../src/guestfs.pod:1993
4321 msgid ""
4322 "C<guestfs_first_private> returns the first key, pointer pair (\"first\" does "
4323 "not have any particular meaning -- keys are not returned in any defined "
4324 "order).  A pointer to the key is returned in C<*key_rtn> and the "
4325 "corresponding data pointer is returned from the function.  C<NULL> is "
4326 "returned if there are no keys stored in the handle."
4327 msgstr ""
4328
4329 #. type: textblock
4330 #: ../src/guestfs.pod:1999
4331 msgid ""
4332 "C<guestfs_next_private> returns the next key, pointer pair.  The return "
4333 "value of this function is also C<NULL> is there are no further entries to "
4334 "return."
4335 msgstr ""
4336
4337 #. type: textblock
4338 #: ../src/guestfs.pod:2003
4339 msgid "Notes about walking over entries:"
4340 msgstr ""
4341
4342 #. type: textblock
4343 #: ../src/guestfs.pod:2009
4344 msgid ""
4345 "You must not call C<guestfs_set_private> while walking over the entries."
4346 msgstr ""
4347
4348 #. type: textblock
4349 #: ../src/guestfs.pod:2014
4350 msgid ""
4351 "The handle maintains an internal iterator which is reset when you call "
4352 "C<guestfs_first_private>.  This internal iterator is invalidated when you "
4353 "call C<guestfs_set_private>."
4354 msgstr ""
4355
4356 #. type: textblock
4357 #: ../src/guestfs.pod:2020
4358 msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
4359 msgstr ""
4360
4361 #. type: verbatim
4362 #: ../src/guestfs.pod:2022
4363 #, no-wrap
4364 msgid ""
4365 " guestfs_set_private (g, key, NULL);\n"
4366 "\n"
4367 msgstr ""
4368
4369 #. type: textblock
4370 #: ../src/guestfs.pod:2024
4371 msgid "then that C<key> is not returned when walking."
4372 msgstr ""
4373
4374 #. type: textblock
4375 #: ../src/guestfs.pod:2028
4376 msgid ""
4377 "C<*key_rtn> is only valid until the next call to C<guestfs_first_private>, "
4378 "C<guestfs_next_private> or C<guestfs_set_private>."
4379 msgstr ""
4380
4381 #. type: textblock
4382 #: ../src/guestfs.pod:2034
4383 msgid ""
4384 "The following example code shows how to print all keys and data pointers "
4385 "that are associated with the handle C<g>:"
4386 msgstr ""
4387
4388 #. type: verbatim
4389 #: ../src/guestfs.pod:2037
4390 #, no-wrap
4391 msgid ""
4392 " const char *key;\n"
4393 " void *data = guestfs_first_private (g, &key);\n"
4394 " while (data != NULL)\n"
4395 "   {\n"
4396 "     printf (\"key = %s, data = %p\\n\", key, data);\n"
4397 "     data = guestfs_next_private (g, &key);\n"
4398 "   }\n"
4399 "\n"
4400 msgstr ""
4401
4402 #. type: textblock
4403 #: ../src/guestfs.pod:2045
4404 msgid ""
4405 "More commonly you are only interested in keys that begin with an application-"
4406 "specific prefix C<foo_>.  Modify the loop like so:"
4407 msgstr ""
4408
4409 #. type: verbatim
4410 #: ../src/guestfs.pod:2048
4411 #, no-wrap
4412 msgid ""
4413 " const char *key;\n"
4414 " void *data = guestfs_first_private (g, &key);\n"
4415 " while (data != NULL)\n"
4416 "   {\n"
4417 "     if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4418 "       printf (\"key = %s, data = %p\\n\", key, data);\n"
4419 "     data = guestfs_next_private (g, &key);\n"
4420 "   }\n"
4421 "\n"
4422 msgstr ""
4423
4424 #. type: textblock
4425 #: ../src/guestfs.pod:2057
4426 msgid ""
4427 "If you need to modify keys while walking, then you have to jump back to the "
4428 "beginning of the loop.  For example, to delete all keys prefixed with "
4429 "C<foo_>:"
4430 msgstr ""
4431
4432 #. type: verbatim
4433 #: ../src/guestfs.pod:2061
4434 #, no-wrap
4435 msgid ""
4436 "  const char *key;\n"
4437 "  void *data;\n"
4438 " again:\n"
4439 "  data = guestfs_first_private (g, &key);\n"
4440 "  while (data != NULL)\n"
4441 "    {\n"
4442 "      if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4443 "        {\n"
4444 "          guestfs_set_private (g, key, NULL);\n"
4445 "          /* note that 'key' pointer is now invalid, and so is\n"
4446 "             the internal iterator */\n"
4447 "          goto again;\n"
4448 "        }\n"
4449 "      data = guestfs_next_private (g, &key);\n"
4450 "    }\n"
4451 "\n"
4452 msgstr ""
4453
4454 #. type: textblock
4455 #: ../src/guestfs.pod:2077
4456 msgid ""
4457 "Note that the above loop is guaranteed to terminate because the keys are "
4458 "being deleted, but other manipulations of keys within the loop might not "
4459 "terminate unless you also maintain an indication of which keys have been "
4460 "visited."
4461 msgstr ""
4462
4463 # type: =end
4464 #. type: =end
4465 #: ../src/guestfs.pod:2082 ../src/guestfs.pod:2087
4466 msgid "html"
4467 msgstr ""
4468
4469 # type: textblock
4470 #. type: textblock
4471 #: ../src/guestfs.pod:2084
4472 msgid ""
4473 "<!-- old anchor for the next section --> <a name="
4474 "\"state_machine_and_low_level_event_api\"/>"
4475 msgstr ""
4476
4477 # type: =head1
4478 #. type: =head1
4479 #: ../src/guestfs.pod:2089
4480 msgid "ARCHITECTURE"
4481 msgstr ""
4482
4483 # type: textblock
4484 #. type: textblock
4485 #: ../src/guestfs.pod:2091
4486 msgid ""
4487 "Internally, libguestfs is implemented by running an appliance (a special "
4488 "type of small virtual machine) using L<qemu(1)>.  Qemu runs as a child "
4489 "process of the main program."
4490 msgstr ""
4491
4492 # type: verbatim
4493 #. type: verbatim
4494 #: ../src/guestfs.pod:2095
4495 #, no-wrap
4496 msgid ""
4497 "  ___________________\n"
4498 " /                   \\\n"
4499 " | main program      |\n"
4500 " |                   |\n"
4501 " |                   |           child process / appliance\n"
4502 " |                   |           __________________________\n"
4503 " |                   |          / qemu                     \\\n"
4504 " +-------------------+   RPC    |      +-----------------+ |\n"
4505 " | libguestfs     <--------------------> guestfsd        | |\n"
4506 " |                   |          |      +-----------------+ |\n"
4507 " \\___________________/          |      | Linux kernel    | |\n"
4508 "                                |      +--^--------------+ |\n"
4509 "                                \\_________|________________/\n"
4510 "                                          |\n"
4511 "                                   _______v______\n"
4512 "                                  /              \\\n"
4513 "                                  | Device or    |\n"
4514 "                                  | disk image   |\n"
4515 "                                  \\______________/\n"
4516 "\n"
4517 msgstr ""
4518
4519 # type: textblock
4520 #. type: textblock
4521 #: ../src/guestfs.pod:2115
4522 msgid ""
4523 "The library, linked to the main program, creates the child process and hence "
4524 "the appliance in the L</guestfs_launch> function."
4525 msgstr ""
4526
4527 # type: textblock
4528 #. type: textblock
4529 #: ../src/guestfs.pod:2118
4530 msgid ""
4531 "Inside the appliance is a Linux kernel and a complete stack of userspace "
4532 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
4533 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
4534 "calls (RPC).  There is a mostly one-to-one correspondence between libguestfs "
4535 "API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
4536 "attached to the qemu process which translates device access by the "
4537 "appliance's Linux kernel into accesses to the image."
4538 msgstr ""
4539
4540 # type: textblock
4541 #. type: textblock
4542 #: ../src/guestfs.pod:2127
4543 msgid ""
4544 "A common misunderstanding is that the appliance \"is\" the virtual machine.  "
4545 "Although the disk image you are attached to might also be used by some "
4546 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
4547 "care if both libguestfs's qemu process and your virtual machine are trying "
4548 "to update the disk image at the same time, since these usually results in "
4549 "massive disk corruption)."
4550 msgstr ""
4551
4552 # type: =head1
4553 #. type: =head1
4554 #: ../src/guestfs.pod:2134
4555 msgid "STATE MACHINE"
4556 msgstr ""
4557
4558 # type: textblock
4559 #. type: textblock
4560 #: ../src/guestfs.pod:2136
4561 msgid "libguestfs uses a state machine to model the child process:"
4562 msgstr ""
4563
4564 # type: verbatim
4565 #. type: verbatim
4566 #: ../src/guestfs.pod:2138
4567 #, no-wrap
4568 msgid ""
4569 "                         |\n"
4570 "                    guestfs_create\n"
4571 "                         |\n"
4572 "                         |\n"
4573 "                     ____V_____\n"
4574 "                    /          \\\n"
4575 "                    |  CONFIG  |\n"
4576 "                    \\__________/\n"
4577 "                     ^ ^   ^  \\\n"
4578 "                    /  |    \\  \\ guestfs_launch\n"
4579 "                   /   |    _\\__V______\n"
4580 "                  /    |   /           \\\n"
4581 "                 /     |   | LAUNCHING |\n"
4582 "                /      |   \\___________/\n"
4583 "               /       |       /\n"
4584 "              /        |  guestfs_launch\n"
4585 "             /         |     /\n"
4586 "    ______  /        __|____V\n"
4587 "   /      \\ ------> /        \\\n"
4588 "   | BUSY |         | READY  |\n"
4589 "   \\______/ <------ \\________/\n"
4590 "\n"
4591 msgstr ""
4592
4593 # type: textblock
4594 #. type: textblock
4595 #: ../src/guestfs.pod:2160
4596 msgid ""
4597 "The normal transitions are (1) CONFIG (when the handle is created, but there "
4598 "is no child process), (2) LAUNCHING (when the child process is booting up), "
4599 "(3) alternating between READY and BUSY as commands are issued to, and "
4600 "carried out by, the child process."
4601 msgstr ""
4602
4603 # type: textblock
4604 #. type: textblock
4605 #: ../src/guestfs.pod:2165
4606 msgid ""
4607 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
4608 "asynchronously at any time (eg. due to some internal error), and that causes "
4609 "the state to transition back to CONFIG."
4610 msgstr ""
4611
4612 # type: textblock
4613 #. type: textblock
4614 #: ../src/guestfs.pod:2169
4615 msgid ""
4616 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
4617 "issued when in the CONFIG state."
4618 msgstr ""
4619
4620 # type: textblock
4621 #. type: textblock
4622 #: ../src/guestfs.pod:2172
4623 msgid ""
4624 "The API offers one call that goes from CONFIG through LAUNCHING to READY.  "
4625 "L</guestfs_launch> blocks until the child process is READY to accept "
4626 "commands (or until some failure or timeout).  L</guestfs_launch> internally "
4627 "moves the state from CONFIG to LAUNCHING while it is running."
4628 msgstr ""
4629
4630 # type: textblock
4631 #. type: textblock
4632 #: ../src/guestfs.pod:2178
4633 msgid ""
4634 "API actions such as L</guestfs_mount> can only be issued when in the READY "
4635 "state.  These API calls block waiting for the command to be carried out (ie. "
4636 "the state to transition to BUSY and then back to READY).  There are no non-"
4637 "blocking versions, and no way to issue more than one command per handle at "
4638 "the same time."
4639 msgstr ""
4640
4641 # type: textblock
4642 #. type: textblock
4643 #: ../src/guestfs.pod:2184
4644 msgid ""
4645 "Finally, the child process sends asynchronous messages back to the main "
4646 "program, such as kernel log messages.  You can register a callback to "
4647 "receive these messages."
4648 msgstr ""
4649
4650 # type: =head1
4651 #. type: =head1
4652 #: ../src/guestfs.pod:2188
4653 msgid "INTERNALS"
4654 msgstr ""
4655
4656 # type: =head2
4657 #. type: =head2
4658 #: ../src/guestfs.pod:2190
4659 msgid "COMMUNICATION PROTOCOL"
4660 msgstr ""
4661
4662 # type: textblock
4663 #. type: textblock
4664 #: ../src/guestfs.pod:2192
4665 msgid ""
4666 "Don't rely on using this protocol directly.  This section documents how it "
4667 "currently works, but it may change at any time."
4668 msgstr ""
4669
4670 # type: textblock
4671 #. type: textblock
4672 #: ../src/guestfs.pod:2195
4673 msgid ""
4674 "The protocol used to talk between the library and the daemon running inside "
4675 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
4676 "1014, RFC 1832, RFC 4506)."
4677 msgstr ""
4678
4679 # type: textblock
4680 #. type: textblock
4681 #: ../src/guestfs.pod:2199
4682 msgid ""
4683 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
4684 "this file is automatically generated)."
4685 msgstr ""
4686
4687 # type: textblock
4688 #. type: textblock
4689 #: ../src/guestfs.pod:2202
4690 msgid ""
4691 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
4692 "and C<FileOut> parameters, which are handled with very simple request/reply "
4693 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
4694 "parameters, which use the same request and reply messages, but they may also "
4695 "be followed by files sent using a chunked encoding."
4696 msgstr ""
4697
4698 # type: =head3
4699 #. type: =head3
4700 #: ../src/guestfs.pod:2209
4701 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4702 msgstr ""
4703
4704 # type: textblock
4705 #. type: textblock
4706 #: ../src/guestfs.pod:2211
4707 msgid "For ordinary functions, the request message is:"
4708 msgstr ""
4709
4710 # type: verbatim
4711 #. type: verbatim
4712 #: ../src/guestfs.pod:2213
4713 #, no-wrap
4714 msgid ""
4715 " total length (header + arguments,\n"
4716 "      but not including the length word itself)\n"
4717 " struct guestfs_message_header (encoded as XDR)\n"
4718 " struct guestfs_<foo>_args (encoded as XDR)\n"
4719 "\n"
4720 msgstr ""
4721
4722 # type: textblock
4723 #. type: textblock
4724 #: ../src/guestfs.pod:2218
4725 msgid ""
4726 "The total length field allows the daemon to allocate a fixed size buffer "
4727 "into which it slurps the rest of the message.  As a result, the total length "
4728 "is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
4729 "effective size of any request is limited to somewhere under this size."
4730 msgstr ""
4731
4732 # type: textblock
4733 #. type: textblock
4734 #: ../src/guestfs.pod:2224
4735 msgid ""
4736 "Note also that many functions don't take any arguments, in which case the "
4737 "C<guestfs_I<foo>_args> is completely omitted."
4738 msgstr ""
4739
4740 # type: textblock
4741 #. type: textblock
4742 #: ../src/guestfs.pod:2227
4743 msgid ""
4744 "The header contains the procedure number (C<guestfs_proc>) which is how the "
4745 "receiver knows what type of args structure to expect, or none at all."
4746 msgstr ""
4747
4748 # type: textblock
4749 #. type: textblock
4750 #: ../src/guestfs.pod:2231
4751 msgid ""
4752 "For functions that take optional arguments, the optional arguments are "
4753 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
4754 "arguments.  A bitmask in the header indicates which optional arguments are "
4755 "meaningful.  The bitmask is also checked to see if it contains bits set "
4756 "which the daemon does not know about (eg. if more optional arguments were "
4757 "added in a later version of the library), and this causes the call to be "
4758 "rejected."
4759 msgstr ""
4760
4761 # type: textblock
4762 #. type: textblock
4763 #: ../src/guestfs.pod:2239
4764 msgid "The reply message for ordinary functions is:"
4765 msgstr ""
4766
4767 # type: verbatim
4768 #. type: verbatim
4769 #: ../src/guestfs.pod:2241
4770 #, no-wrap
4771 msgid ""
4772 " total length (header + ret,\n"
4773 "      but not including the length word itself)\n"
4774 " struct guestfs_message_header (encoded as XDR)\n"
4775 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4776 "\n"
4777 msgstr ""
4778
4779 # type: textblock
4780 #. type: textblock
4781 #: ../src/guestfs.pod:2246
4782 msgid ""
4783 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
4784 "functions that return no formal return values."
4785 msgstr ""
4786
4787 # type: textblock
4788 #. type: textblock
4789 #: ../src/guestfs.pod:2249
4790 msgid ""
4791 "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
4792 msgstr ""
4793
4794 # type: textblock
4795 #. type: textblock
4796 #: ../src/guestfs.pod:2252
4797 msgid ""
4798 "In the case of an error, a flag is set in the header, and the reply message "
4799 "is slightly changed:"
4800 msgstr ""
4801
4802 # type: verbatim
4803 #. type: verbatim
4804 #: ../src/guestfs.pod:2255
4805 #, no-wrap
4806 msgid ""
4807 " total length (header + error,\n"
4808 "      but not including the length word itself)\n"
4809 " struct guestfs_message_header (encoded as XDR)\n"
4810 " struct guestfs_message_error (encoded as XDR)\n"
4811 "\n"
4812 msgstr ""
4813
4814 # type: textblock
4815 #. type: textblock
4816 #: ../src/guestfs.pod:2260
4817 msgid ""
4818 "The C<guestfs_message_error> structure contains the error message as a "
4819 "string."
4820 msgstr ""
4821
4822 # type: =head3
4823 #. type: =head3
4824 #: ../src/guestfs.pod:2263
4825 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4826 msgstr ""
4827
4828 # type: textblock
4829 #. type: textblock
4830 #: ../src/guestfs.pod:2265
4831 msgid ""
4832 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
4833 "The normal request message is sent (see above).  However this is followed by "
4834 "a sequence of file chunks."
4835 msgstr ""
4836
4837 # type: verbatim
4838 #. type: verbatim
4839 #: ../src/guestfs.pod:2269
4840 #, no-wrap
4841 msgid ""
4842 " total length (header + arguments,\n"
4843 "      but not including the length word itself,\n"
4844 "      and not including the chunks)\n"
4845 " struct guestfs_message_header (encoded as XDR)\n"
4846 " struct guestfs_<foo>_args (encoded as XDR)\n"
4847 " sequence of chunks for FileIn param #0\n"
4848 " sequence of chunks for FileIn param #1 etc.\n"
4849 "\n"
4850 msgstr ""
4851
4852 # type: textblock
4853 #. type: textblock
4854 #: ../src/guestfs.pod:2277
4855 msgid "The \"sequence of chunks\" is:"
4856 msgstr ""
4857
4858 # type: verbatim
4859 #. type: verbatim
4860 #: ../src/guestfs.pod:2279
4861 #, no-wrap
4862 msgid ""
4863 " length of chunk (not including length word itself)\n"
4864 " struct guestfs_chunk (encoded as XDR)\n"
4865 " length of chunk\n"
4866 " struct guestfs_chunk (encoded as XDR)\n"
4867 "   ...\n"
4868 " length of chunk\n"
4869 " struct guestfs_chunk (with data.data_len == 0)\n"
4870 "\n"
4871 msgstr ""
4872
4873 # type: textblock
4874 #. type: textblock
4875 #: ../src/guestfs.pod:2287
4876 msgid ""
4877 "The final chunk has the C<data_len> field set to zero.  Additionally a flag "
4878 "is set in the final chunk to indicate either successful completion or early "
4879 "cancellation."
4880 msgstr ""
4881
4882 # type: textblock
4883 #. type: textblock
4884 #: ../src/guestfs.pod:2291
4885 msgid ""
4886 "At time of writing there are no functions that have more than one FileIn "
4887 "parameter.  However this is (theoretically) supported, by sending the "
4888 "sequence of chunks for each FileIn parameter one after another (from left to "
4889 "right)."
4890 msgstr ""
4891
4892 # type: textblock
4893 #. type: textblock
4894 #: ../src/guestfs.pod:2296
4895 msgid ""
4896 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
4897 "transfer.  The library does this by sending a chunk with a special flag set "
4898 "to indicate cancellation.  When the daemon sees this, it cancels the whole "
4899 "RPC, does I<not> send any reply, and goes back to reading the next request."
4900 msgstr ""
4901
4902 # type: textblock
4903 #. type: textblock
4904 #: ../src/guestfs.pod:2302
4905 msgid ""
4906 "The daemon may also cancel.  It does this by writing a special word "
4907 "C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this during "
4908 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
4909 "cancel chunk).  The special word is chosen so that even if cancellation "
4910 "happens right at the end of the transfer (after the library has finished "
4911 "writing and has started listening for the reply), the \"spurious\" cancel "
4912 "flag will not be confused with the reply message."
4913 msgstr ""
4914
4915 # type: textblock
4916 #. type: textblock
4917 #: ../src/guestfs.pod:2311
4918 msgid ""
4919 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
4920 "limit), and also files where the size is not known in advance (eg. from "
4921 "pipes or sockets).  However the chunks are rather small "
4922 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
4923 "to keep much in memory."
4924 msgstr ""
4925
4926 # type: =head3
4927 #. type: =head3
4928 #: ../src/guestfs.pod:2317
4929 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4930 msgstr ""
4931
4932 # type: textblock
4933 #. type: textblock
4934 #: ../src/guestfs.pod:2319
4935 msgid ""
4936 "The protocol for FileOut parameters is exactly the same as for FileIn "
4937 "parameters, but with the roles of daemon and library reversed."
4938 msgstr ""
4939
4940 # type: verbatim
4941 #. type: verbatim
4942 #: ../src/guestfs.pod:2322
4943 #, no-wrap
4944 msgid ""
4945 " total length (header + ret,\n"
4946 "      but not including the length word itself,\n"
4947 "      and not including the chunks)\n"
4948 " struct guestfs_message_header (encoded as XDR)\n"
4949 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4950 " sequence of chunks for FileOut param #0\n"
4951 " sequence of chunks for FileOut param #1 etc.\n"
4952 "\n"
4953 msgstr ""
4954
4955 # type: =head3
4956 #. type: =head3
4957 #: ../src/guestfs.pod:2330
4958 msgid "INITIAL MESSAGE"
4959 msgstr ""
4960
4961 # type: textblock
4962 #. type: textblock
4963 #: ../src/guestfs.pod:2332
4964 msgid ""
4965 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
4966 "which indicates that the guest and daemon is alive.  This is what L</"
4967 "guestfs_launch> waits for."
4968 msgstr ""
4969
4970 # type: =head3
4971 #. type: =head3
4972 #: ../src/guestfs.pod:2336
4973 msgid "PROGRESS NOTIFICATION MESSAGES"
4974 msgstr ""
4975
4976 # type: textblock
4977 #. type: textblock
4978 #: ../src/guestfs.pod:2338
4979 msgid ""
4980 "The daemon may send progress notification messages at any time.  These are "
4981 "distinguished by the normal length word being replaced by "
4982 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
4983 msgstr ""
4984
4985 #. type: textblock
4986 #: ../src/guestfs.pod:2342
4987 msgid ""
4988 "The library turns them into progress callbacks (see L</"
4989 "GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards them "
4990 "if not."
4991 msgstr ""
4992
4993 # type: textblock
4994 #. type: textblock
4995 #: ../src/guestfs.pod:2346
4996 msgid ""
4997 "The daemon self-limits the frequency of progress messages it sends (see "
4998 "C<daemon/proto.c:notify_progress>).  Not all calls generate progress "
4999 "messages."
5000 msgstr ""
5001
5002 # type: =head1
5003 #. type: =head1
5004 #: ../src/guestfs.pod:2350
5005 msgid "LIBGUESTFS VERSION NUMBERS"
5006 msgstr ""
5007
5008 # type: textblock
5009 #. type: textblock
5010 #: ../src/guestfs.pod:2352
5011 msgid ""
5012 "Since April 2010, libguestfs has started to make separate development and "
5013 "stable releases, along with corresponding branches in our git repository.  "
5014 "These separate releases can be identified by version number:"
5015 msgstr ""
5016
5017 # type: verbatim
5018 #. type: verbatim
5019 #: ../src/guestfs.pod:2357
5020 #, no-wrap
5021 msgid ""
5022 "                 even numbers for stable: 1.2.x, 1.4.x, ...\n"
5023 "       .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
5024 "       |\n"
5025 "       v\n"
5026 " 1  .  3  .  5\n"
5027 " ^           ^\n"
5028 " |           |\n"
5029 " |           `-------- sub-version\n"
5030 " |\n"
5031 " `------ always '1' because we don't change the ABI\n"
5032 "\n"
5033 msgstr ""
5034
5035 # type: textblock
5036 #. type: textblock
5037 #: ../src/guestfs.pod:2368
5038 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
5039 msgstr ""
5040
5041 # type: textblock
5042 #. type: textblock
5043 #: ../src/guestfs.pod:2370
5044 msgid ""
5045 "As time passes we cherry pick fixes from the development branch and backport "
5046 "those into the stable branch, the effect being that the stable branch should "
5047 "get more stable and less buggy over time.  So the stable releases are ideal "
5048 "for people who don't need new features but would just like the software to "
5049 "work."
5050 msgstr ""
5051
5052 # type: textblock
5053 #. type: textblock
5054 #: ../src/guestfs.pod:2376
5055 msgid "Our criteria for backporting changes are:"
5056 msgstr ""
5057
5058 # type: textblock
5059 #. type: textblock
5060 #: ../src/guestfs.pod:2382
5061 msgid ""
5062 "Documentation changes which don't affect any code are backported unless the "
5063 "documentation refers to a future feature which is not in stable."
5064 msgstr ""
5065
5066 # type: textblock
5067 #. type: textblock
5068 #: ../src/guestfs.pod:2388
5069 msgid ""
5070 "Bug fixes which are not controversial, fix obvious problems, and have been "
5071 "well tested are backported."
5072 msgstr ""
5073
5074 # type: textblock
5075 #. type: textblock
5076 #: ../src/guestfs.pod:2393
5077 msgid ""
5078 "Simple rearrangements of code which shouldn't affect how it works get "
5079 "backported.  This is so that the code in the two branches doesn't get too "
5080 "far out of step, allowing us to backport future fixes more easily."
5081 msgstr ""
5082
5083 # type: textblock
5084 #. type: textblock
5085 #: ../src/guestfs.pod:2399
5086 msgid ""
5087 "We I<don't> backport new features, new APIs, new tools etc, except in one "
5088 "exceptional case: the new feature is required in order to implement an "
5089 "important bug fix."
5090 msgstr ""
5091
5092 # type: textblock
5093 #. type: textblock
5094 #: ../src/guestfs.pod:2405
5095 msgid ""
5096 "A new stable branch starts when we think the new features in development are "
5097 "substantial and compelling enough over the current stable branch to warrant "
5098 "it.  When that happens we create new stable and development versions 1.N.0 "
5099 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
5100 "stable at this point, but by backporting fixes from development, that branch "
5101 "will stabilize over time."
5102 msgstr ""
5103
5104 #. type: =head1
5105 #: ../src/guestfs.pod:2413
5106 msgid "EXTENDING LIBGUESTFS"
5107 msgstr ""
5108
5109 #. type: =head2
5110 #: ../src/guestfs.pod:2415
5111 msgid "ADDING A NEW API ACTION"
5112 msgstr ""
5113
5114 #. type: textblock
5115 #: ../src/guestfs.pod:2417
5116 msgid ""
5117 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
5118 "documentation) are generated, and this makes it easy to extend the "
5119 "libguestfs API."
5120 msgstr ""
5121
5122 #. type: textblock
5123 #: ../src/guestfs.pod:2421
5124 msgid "To add a new API action there are two changes:"
5125 msgstr ""
5126
5127 #. type: textblock
5128 #: ../src/guestfs.pod:2427
5129 msgid ""
5130 "You need to add a description of the call (name, parameters, return type, "
5131 "tests, documentation) to C<generator/generator_actions.ml>."
5132 msgstr ""
5133
5134 #. type: textblock
5135 #: ../src/guestfs.pod:2430
5136 msgid ""
5137 "There are two sorts of API action, depending on whether the call goes "
5138 "through to the daemon in the appliance, or is serviced entirely by the "
5139 "library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the "
5140 "former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
5141 "an example of the latter, since a trace flag is maintained in the handle and "
5142 "all tracing is done on the library side."
5143 msgstr ""
5144
5145 #. type: textblock
5146 #: ../src/guestfs.pod:2438
5147 msgid ""
5148 "Most new actions are of the first type, and get added to the "
5149 "C<daemon_functions> list.  Each function has a unique procedure number used "
5150 "in the RPC protocol which is assigned to that action when we publish "
5151 "libguestfs and cannot be reused.  Take the latest procedure number and "
5152 "increment it."
5153 msgstr ""
5154
5155 #. type: textblock
5156 #: ../src/guestfs.pod:2444
5157 msgid ""
5158 "For library-only actions of the second type, add to the "
5159 "C<non_daemon_functions> list.  Since these functions are serviced by the "
5160 "library and do not travel over the RPC mechanism to the daemon, these "
5161 "functions do not need a procedure number, and so the procedure number is set "
5162 "to C<-1>."
5163 msgstr ""
5164
5165 #. type: textblock
5166 #: ../src/guestfs.pod:2452
5167 msgid "Implement the action (in C):"
5168 msgstr ""
5169
5170 #. type: textblock
5171 #: ../src/guestfs.pod:2454
5172 msgid ""
5173 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
5174 "C<daemon/> directory."
5175 msgstr ""
5176
5177 #. type: textblock
5178 #: ../src/guestfs.pod:2457
5179 msgid ""
5180 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
5181 "(note: double underscore) in the C<src/> directory."
5182 msgstr ""
5183
5184 #. type: textblock
5185 #: ../src/guestfs.pod:2460
5186 msgid "In either case, use another function as an example of what to do."
5187 msgstr ""
5188
5189 #. type: textblock
5190 #: ../src/guestfs.pod:2464
5191 msgid "After making these changes, use C<make> to compile."
5192 msgstr ""
5193
5194 #. type: textblock
5195 #: ../src/guestfs.pod:2466
5196 msgid ""
5197 "Note that you don't need to implement the RPC, language bindings, manual "
5198 "pages or anything else.  It's all automatically generated from the OCaml "
5199 "description."
5200 msgstr ""
5201
5202 #. type: =head2
5203 #: ../src/guestfs.pod:2470
5204 msgid "ADDING TESTS FOR AN API ACTION"
5205 msgstr ""
5206
5207 #. type: textblock
5208 #: ../src/guestfs.pod:2472
5209 msgid ""
5210 "You can supply zero or as many tests as you want per API call.  The tests "
5211 "can either be added as part of the API description (C<generator/"
5212 "generator_actions.ml>), or in some rarer cases you may want to drop a script "
5213 "into C<regressions/>.  Note that adding a script to C<regressions/> is "
5214 "slower, so if possible use the first method."
5215 msgstr ""
5216
5217 #. type: textblock
5218 #: ../src/guestfs.pod:2478
5219 msgid ""
5220 "The following describes the test environment used when you add an API test "
5221 "in C<generator_actions.ml>."
5222 msgstr ""
5223
5224 #. type: textblock
5225 #: ../src/guestfs.pod:2481
5226 msgid "The test environment has 4 block devices:"
5227 msgstr ""
5228
5229 #. type: =item
5230 #: ../src/guestfs.pod:2485
5231 msgid "C</dev/sda> 500MB"
5232 msgstr ""
5233
5234 #. type: textblock
5235 #: ../src/guestfs.pod:2487
5236 msgid "General block device for testing."
5237 msgstr ""
5238
5239 #. type: =item
5240 #: ../src/guestfs.pod:2489
5241 msgid "C</dev/sdb> 50MB"
5242 msgstr ""
5243
5244 #. type: textblock
5245 #: ../src/guestfs.pod:2491
5246 msgid ""
5247 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
5248 "operations."
5249 msgstr ""
5250
5251 #. type: =item
5252 #: ../src/guestfs.pod:2494
5253 msgid "C</dev/sdc> 10MB"
5254 msgstr ""
5255
5256 #. type: textblock
5257 #: ../src/guestfs.pod:2496
5258 msgid "Used in a few tests where two block devices are needed."
5259 msgstr ""
5260
5261 #. type: =item
5262 #: ../src/guestfs.pod:2498
5263 msgid "C</dev/sdd>"
5264 msgstr ""
5265
5266 #. type: textblock
5267 #: ../src/guestfs.pod:2500
5268 msgid "ISO with fixed content (see C<images/test.iso>)."
5269 msgstr ""
5270
5271 #. type: textblock
5272 #: ../src/guestfs.pod:2504
5273 msgid ""
5274 "To be able to run the tests in a reasonable amount of time, the libguestfs "
5275 "appliance and block devices are reused between tests.  So don't try testing "
5276 "L</guestfs_kill_subprocess> :-x"
5277 msgstr ""
5278
5279 #. type: textblock
5280 #: ../src/guestfs.pod:2508
5281 msgid ""
5282 "Each test starts with an initial scenario, selected using one of the "
5283 "C<Init*> expressions, described in C<generator/generator_types.ml>.  These "
5284 "initialize the disks mentioned above in a particular way as documented in "
5285 "C<generator_types.ml>.  You should not assume anything about the previous "
5286 "contents of other disks that are not initialized."
5287 msgstr ""
5288
5289 #. type: textblock
5290 #: ../src/guestfs.pod:2514
5291 msgid ""
5292 "You can add a prerequisite clause to any individual test.  This is a run-"
5293 "time check, which, if it fails, causes the test to be skipped.  Useful if "
5294 "testing a command which might not work on all variations of libguestfs "
5295 "builds.  A test that has prerequisite of C<Always> means to run "
5296 "unconditionally."
5297 msgstr ""
5298
5299 #. type: textblock
5300 #: ../src/guestfs.pod:2520
5301 msgid ""
5302 "In addition, packagers can skip individual tests by setting environment "
5303 "variables before running C<make check>."
5304 msgstr ""
5305
5306 #. type: verbatim
5307 #: ../src/guestfs.pod:2523
5308 #, no-wrap
5309 msgid ""
5310 " SKIP_TEST_<CMD>_<NUM>=1\n"
5311 "\n"
5312 msgstr ""
5313
5314 #. type: textblock
5315 #: ../src/guestfs.pod:2525
5316 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
5317 msgstr ""
5318
5319 #. type: textblock
5320 #: ../src/guestfs.pod:2527
5321 msgid "or:"
5322 msgstr ""
5323
5324 #. type: verbatim
5325 #: ../src/guestfs.pod:2529
5326 #, no-wrap
5327 msgid ""
5328 " SKIP_TEST_<CMD>=1\n"
5329 "\n"
5330 msgstr ""
5331
5332 #. type: textblock
5333 #: ../src/guestfs.pod:2531
5334 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
5335 msgstr ""
5336
5337 #. type: textblock
5338 #: ../src/guestfs.pod:2533
5339 msgid "Packagers can run only certain tests by setting for example:"
5340 msgstr ""
5341
5342 #. type: verbatim
5343 #: ../src/guestfs.pod:2535
5344 #, no-wrap
5345 msgid ""
5346 " TEST_ONLY=\"vfs_type zerofree\"\n"
5347 "\n"
5348 msgstr ""
5349
5350 #. type: textblock
5351 #: ../src/guestfs.pod:2537
5352 msgid ""
5353 "See C<capitests/tests.c> for more details of how these environment variables "
5354 "work."
5355 msgstr ""
5356
5357 #. type: =head2
5358 #: ../src/guestfs.pod:2540
5359 msgid "DEBUGGING NEW API ACTIONS"
5360 msgstr ""
5361
5362 #. type: textblock
5363 #: ../src/guestfs.pod:2542
5364 msgid "Test new actions work before submitting them."
5365 msgstr ""
5366
5367 #. type: textblock
5368 #: ../src/guestfs.pod:2544
5369 msgid "You can use guestfish to try out new commands."
5370 msgstr ""
5371
5372 #. type: textblock
5373 #: ../src/guestfs.pod:2546
5374 msgid ""
5375 "Debugging the daemon is a problem because it runs inside a minimal "
5376 "environment.  However you can fprintf messages in the daemon to stderr, and "
5377 "they will show up if you use C<guestfish -v>."
5378 msgstr ""
5379
5380 #. type: =head2
5381 #: ../src/guestfs.pod:2550
5382 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
5383 msgstr ""
5384
5385 #. type: textblock
5386 #: ../src/guestfs.pod:2552
5387 msgid ""
5388 "Our C source code generally adheres to some basic code-formatting "
5389 "conventions.  The existing code base is not totally consistent on this "
5390 "front, but we do prefer that contributed code be formatted similarly.  In "
5391 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
5392 "indentation level, and other than that, follow the K&R style."
5393 msgstr ""
5394
5395 #. type: textblock
5396 #: ../src/guestfs.pod:2558
5397 msgid ""
5398 "If you use Emacs, add the following to one of one of your start-up files (e."
5399 "g., ~/.emacs), to help ensure that you get indentation right:"
5400 msgstr ""
5401
5402 #. type: verbatim
5403 #: ../src/guestfs.pod:2561
5404 #, no-wrap
5405 msgid ""
5406 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
5407 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
5408 " (add-hook 'find-file-hook\n"
5409 "     '(lambda () (if (and buffer-file-name\n"
5410 "                          (string-match \"/libguestfs\\\\>\"\n"
5411 "                              (buffer-file-name))\n"
5412 "                          (not (string-equal mode-name \"Change Log\"))\n"
5413 "                          (not (string-equal mode-name \"Makefile\")))\n"
5414 "                     (setq indent-tabs-mode nil))))\n"
5415 " \n"
5416 msgstr ""
5417
5418 #. type: verbatim
5419 #: ../src/guestfs.pod:2571
5420 #, no-wrap
5421 msgid ""
5422 " ;;; When editing C sources in libguestfs, use this style.\n"
5423 " (defun libguestfs-c-mode ()\n"
5424 "   \"C mode with adjusted defaults for use with libguestfs.\"\n"
5425 "   (interactive)\n"
5426 "   (c-set-style \"K&R\")\n"
5427 "   (setq c-indent-level 2)\n"
5428 "   (setq c-basic-offset 2))\n"
5429 " (add-hook 'c-mode-hook\n"
5430 "           '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
5431 "                               (buffer-file-name))\n"
5432 "                           (libguestfs-c-mode))))\n"
5433 "\n"
5434 msgstr ""
5435
5436 #. type: textblock
5437 #: ../src/guestfs.pod:2583
5438 msgid "Enable warnings when compiling (and fix any problems this finds):"
5439 msgstr ""
5440
5441 #. type: verbatim
5442 #: ../src/guestfs.pod:2586
5443 #, no-wrap
5444 msgid ""
5445 " ./configure --enable-gcc-warnings\n"
5446 "\n"
5447 msgstr ""
5448
5449 #. type: textblock
5450 #: ../src/guestfs.pod:2588
5451 msgid "Useful targets are:"
5452 msgstr ""
5453
5454 #. type: verbatim
5455 #: ../src/guestfs.pod:2590
5456 #, no-wrap
5457 msgid ""
5458 " make syntax-check  # checks the syntax of the C code\n"
5459 " make check         # runs the test suite\n"
5460 "\n"
5461 msgstr ""
5462
5463 #. type: =head2
5464 #: ../src/guestfs.pod:2593
5465 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
5466 msgstr ""
5467
5468 #. type: textblock
5469 #: ../src/guestfs.pod:2595
5470 msgid ""
5471 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
5472 "which are used to do shell quoting."
5473 msgstr ""
5474
5475 #. type: =item
5476 #: ../src/guestfs.pod:2600
5477 msgid "%Q"
5478 msgstr ""
5479
5480 #. type: textblock
5481 #: ../src/guestfs.pod:2602
5482 msgid ""
5483 "Simple shell quoted string.  Any spaces or other shell characters are "
5484 "escaped for you."
5485 msgstr ""
5486
5487 #. type: =item
5488 #: ../src/guestfs.pod:2605
5489 msgid "%R"
5490 msgstr ""
5491
5492 #. type: textblock
5493 #: ../src/guestfs.pod:2607
5494 msgid ""
5495 "Same as C<%Q> except the string is treated as a path which is prefixed by "
5496 "the sysroot."
5497 msgstr ""
5498
5499 # type: textblock
5500 #. type: textblock
5501 #: ../src/guestfs.pod:2612 ../fish/guestfish.pod:240 ../fish/guestfish.pod:613
5502 msgid "For example:"
5503 msgstr ""
5504
5505 #. type: verbatim
5506 #: ../src/guestfs.pod:2614
5507 #, no-wrap
5508 msgid ""
5509 " asprintf (&cmd, \"cat %R\", path);\n"
5510 "\n"
5511 msgstr ""
5512
5513 #. type: textblock
5514 #: ../src/guestfs.pod:2616
5515 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
5516 msgstr ""
5517
5518 #. type: textblock
5519 #: ../src/guestfs.pod:2618
5520 msgid ""
5521 "I<Note:> Do I<not> use these when you are passing parameters to the C<command"
5522 "{,r,v,rv}()> functions.  These parameters do NOT need to be quoted because "
5523 "they are not passed via the shell (instead, straight to exec).  You probably "
5524 "want to use the C<sysroot_path()> function however."
5525 msgstr ""
5526
5527 #. type: =head2
5528 #: ../src/guestfs.pod:2624
5529 msgid "SUBMITTING YOUR NEW API ACTIONS"
5530 msgstr ""
5531
5532 #. type: textblock
5533 #: ../src/guestfs.pod:2626
5534 msgid ""
5535 "Submit patches to the mailing list: L<http://www.redhat.com/mailman/listinfo/"
5536 "libguestfs> and CC to L<rjones@redhat.com>."
5537 msgstr ""
5538
5539 #. type: =head2
5540 #: ../src/guestfs.pod:2630
5541 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5542 msgstr ""
5543
5544 #. type: textblock
5545 #: ../src/guestfs.pod:2632
5546 msgid "We support i18n (gettext anyhow) in the library."
5547 msgstr ""
5548
5549 #. type: textblock
5550 #: ../src/guestfs.pod:2634
5551 msgid ""
5552 "However many messages come from the daemon, and we don't translate those at "
5553 "the moment.  One reason is that the appliance generally has all locale files "
5554 "removed from it, because they take up a lot of space.  So we'd have to readd "
5555 "some of those, as well as copying our PO files into the appliance."
5556 msgstr ""
5557
5558 #. type: textblock
5559 #: ../src/guestfs.pod:2640
5560 msgid ""
5561 "Debugging messages are never translated, since they are intended for the "
5562 "programmers."
5563 msgstr ""
5564
5565 #. type: =head2
5566 #: ../src/guestfs.pod:2643
5567 msgid "SOURCE CODE SUBDIRECTORIES"
5568 msgstr ""
5569
5570 #. type: =item
5571 #: ../src/guestfs.pod:2647 ../src/guestfs-actions.pod:5827
5572 #: ../fish/guestfish-actions.pod:3921
5573 msgid "C<appliance>"
5574 msgstr ""
5575
5576 #. type: textblock
5577 #: ../src/guestfs.pod:2649
5578 msgid "The libguestfs appliance, build scripts and so on."
5579 msgstr ""
5580
5581 #. type: =item
5582 #: ../src/guestfs.pod:2651
5583 msgid "C<capitests>"
5584 msgstr ""
5585
5586 #. type: textblock
5587 #: ../src/guestfs.pod:2653
5588 msgid "Automated tests of the C API."
5589 msgstr ""
5590
5591 #. type: =item
5592 #: ../src/guestfs.pod:2655
5593 msgid "C<cat>"
5594 msgstr ""
5595
5596 #. type: textblock
5597 #: ../src/guestfs.pod:2657
5598 msgid ""
5599 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
5600 "documentation."
5601 msgstr ""
5602
5603 #. type: =item
5604 #: ../src/guestfs.pod:2660
5605 msgid "C<caution>"
5606 msgstr ""
5607
5608 #. type: textblock
5609 #: ../src/guestfs.pod:2662
5610 msgid ""
5611 "Safety and liveness tests of components that libguestfs depends upon (not of "
5612 "libguestfs itself).  Mainly this is for qemu and the kernel."
5613 msgstr ""
5614
5615 #. type: =item
5616 #: ../src/guestfs.pod:2665
5617 msgid "C<contrib>"
5618 msgstr ""
5619
5620 #. type: textblock
5621 #: ../src/guestfs.pod:2667
5622 msgid "Outside contributions, experimental parts."
5623 msgstr ""
5624
5625 #. type: =item
5626 #: ../src/guestfs.pod:2669
5627 msgid "C<daemon>"
5628 msgstr ""
5629
5630 #. type: textblock
5631 #: ../src/guestfs.pod:2671
5632 msgid ""
5633 "The daemon that runs inside the libguestfs appliance and carries out actions."
5634 msgstr ""
5635
5636 #. type: =item
5637 #: ../src/guestfs.pod:2674
5638 msgid "C<df>"
5639 msgstr ""
5640
5641 #. type: textblock
5642 #: ../src/guestfs.pod:2676
5643 msgid "L<virt-df(1)> command and documentation."
5644 msgstr ""
5645
5646 #. type: =item
5647 #: ../src/guestfs.pod:2678
5648 msgid "C<examples>"
5649 msgstr ""
5650
5651 #. type: textblock
5652 #: ../src/guestfs.pod:2680
5653 msgid "C API example code."
5654 msgstr ""
5655
5656 #. type: =item
5657 #: ../src/guestfs.pod:2682
5658 msgid "C<fish>"
5659 msgstr ""
5660
5661 #. type: textblock
5662 #: ../src/guestfs.pod:2684
5663 msgid ""
5664 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5665 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
5666 "L<virt-tar-out(1)>."
5667 msgstr ""
5668
5669 #. type: =item
5670 #: ../src/guestfs.pod:2688
5671 msgid "C<fuse>"
5672 msgstr ""
5673
5674 #. type: textblock
5675 #: ../src/guestfs.pod:2690
5676 msgid ""
5677 "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5678 msgstr ""
5679
5680 #. type: =item
5681 #: ../src/guestfs.pod:2692
5682 msgid "C<generator>"
5683 msgstr ""
5684
5685 #. type: textblock
5686 #: ../src/guestfs.pod:2694
5687 msgid ""
5688 "The crucially important generator, used to automatically generate large "
5689 "amounts of boilerplate C code for things like RPC and bindings."
5690 msgstr ""
5691
5692 #. type: =item
5693 #: ../src/guestfs.pod:2697
5694 msgid "C<images>"
5695 msgstr ""
5696
5697 #. type: textblock
5698 #: ../src/guestfs.pod:2699
5699 msgid "Files used by the test suite."
5700 msgstr ""
5701
5702 #. type: textblock
5703 #: ../src/guestfs.pod:2701
5704 msgid "Some \"phony\" guest images which we test against."
5705 msgstr ""
5706
5707 #. type: =item
5708 #: ../src/guestfs.pod:2703
5709 msgid "C<inspector>"
5710 msgstr ""
5711
5712 #. type: textblock
5713 #: ../src/guestfs.pod:2705
5714 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5715 msgstr ""
5716
5717 #. type: =item
5718 #: ../src/guestfs.pod:2707
5719 msgid "C<logo>"
5720 msgstr ""
5721
5722 #. type: textblock
5723 #: ../src/guestfs.pod:2709
5724 msgid "Logo used on the website.  The fish is called Arthur by the way."
5725 msgstr ""
5726
5727 #. type: =item
5728 #: ../src/guestfs.pod:2711
5729 msgid "C<m4>"
5730 msgstr ""
5731
5732 #. type: textblock
5733 #: ../src/guestfs.pod:2713
5734 msgid "M4 macros used by autoconf."
5735 msgstr ""
5736
5737 #. type: =item
5738 #: ../src/guestfs.pod:2715
5739 msgid "C<po>"
5740 msgstr ""
5741
5742 #. type: textblock
5743 #: ../src/guestfs.pod:2717
5744 msgid "Translations of simple gettext strings."
5745 msgstr ""
5746
5747 #. type: =item
5748 #: ../src/guestfs.pod:2719
5749 msgid "C<po-docs>"
5750 msgstr ""
5751
5752 #. type: textblock
5753 #: ../src/guestfs.pod:2721
5754 msgid ""
5755 "The build infrastructure and PO files for translations of manpages and POD "
5756 "files.  Eventually this will be combined with the C<po> directory, but that "
5757 "is rather complicated."
5758 msgstr ""
5759
5760 #. type: =item
5761 #: ../src/guestfs.pod:2725
5762 msgid "C<regressions>"
5763 msgstr ""
5764
5765 #. type: textblock
5766 #: ../src/guestfs.pod:2727
5767 msgid "Regression tests."
5768 msgstr ""
5769
5770 #. type: =item
5771 #: ../src/guestfs.pod:2729
5772 msgid "C<rescue>"
5773 msgstr ""
5774
5775 #. type: textblock
5776 #: ../src/guestfs.pod:2731
5777 msgid "L<virt-rescue(1)> command and documentation."
5778 msgstr ""
5779
5780 #. type: =item
5781 #: ../src/guestfs.pod:2733
5782 msgid "C<src>"
5783 msgstr ""
5784
5785 #. type: textblock
5786 #: ../src/guestfs.pod:2735
5787 msgid "Source code to the C library."
5788 msgstr ""
5789
5790 #. type: =item
5791 #: ../src/guestfs.pod:2737
5792 msgid "C<tools>"
5793 msgstr ""
5794
5795 #. type: textblock
5796 #: ../src/guestfs.pod:2739
5797 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5798 msgstr ""
5799
5800 #. type: =item
5801 #: ../src/guestfs.pod:2741
5802 msgid "C<test-tool>"
5803 msgstr ""
5804
5805 #. type: textblock
5806 #: ../src/guestfs.pod:2743
5807 msgid ""
5808 "Test tool for end users to test if their qemu/kernel combination will work "
5809 "with libguestfs."
5810 msgstr ""
5811
5812 #. type: =item
5813 #: ../src/guestfs.pod:2746
5814 msgid "C<csharp>"
5815 msgstr ""
5816
5817 #. type: =item
5818 #: ../src/guestfs.pod:2748
5819 msgid "C<haskell>"
5820 msgstr ""
5821
5822 #. type: =item
5823 #: ../src/guestfs.pod:2750
5824 msgid "C<java>"
5825 msgstr ""
5826
5827 #. type: =item
5828 #: ../src/guestfs.pod:2752
5829 msgid "C<ocaml>"
5830 msgstr ""
5831
5832 #. type: =item
5833 #: ../src/guestfs.pod:2754
5834 msgid "C<php>"
5835 msgstr ""
5836
5837 #. type: =item
5838 #: ../src/guestfs.pod:2756
5839 msgid "C<perl>"
5840 msgstr ""
5841
5842 #. type: =item
5843 #: ../src/guestfs.pod:2758
5844 msgid "C<python>"
5845 msgstr ""
5846
5847 #. type: =item
5848 #: ../src/guestfs.pod:2760
5849 msgid "C<ruby>"
5850 msgstr ""
5851
5852 #. type: textblock
5853 #: ../src/guestfs.pod:2762
5854 msgid "Language bindings."
5855 msgstr ""
5856
5857 #. type: =head1
5858 #: ../src/guestfs.pod:2766
5859 msgid "LIMITS"
5860 msgstr ""
5861
5862 # type: =head2
5863 #. type: =head2
5864 #: ../src/guestfs.pod:2768
5865 msgid "PROTOCOL LIMITS"
5866 msgstr ""
5867
5868 # type: textblock
5869 #. type: textblock
5870 #: ../src/guestfs.pod:2770
5871 msgid ""
5872 "Internally libguestfs uses a message-based protocol to pass API calls and "
5873 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
5874 "plenty more detail about this).  The maximum message size used by the "
5875 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
5876 "aware of this limit.  The API calls which may be affected are individually "
5877 "documented, with a link back to this section of the documentation."
5878 msgstr ""
5879
5880 # type: textblock
5881 #. type: textblock
5882 #: ../src/guestfs.pod:2778
5883 msgid ""
5884 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
5885 "a simple string.  Because this string is at some point internally encoded as "
5886 "a message, the maximum size that it can return is slightly under 4 MB.  If "
5887 "the requested file is larger than this then you will get an error."
5888 msgstr ""
5889
5890 # type: textblock
5891 #. type: textblock
5892 #: ../src/guestfs.pod:2784
5893 msgid ""
5894 "In order to transfer large files into and out of the guest filesystem, you "
5895 "need to use particular calls that support this.  The sections L</UPLOADING> "
5896 "and L</DOWNLOADING> document how to do this."
5897 msgstr ""
5898
5899 # type: textblock
5900 #. type: textblock
5901 #: ../src/guestfs.pod:2788
5902 msgid ""
5903 "You might also consider mounting the disk image using our FUSE filesystem "
5904 "support (L<guestmount(1)>)."
5905 msgstr ""
5906
5907 #. type: =head2
5908 #: ../src/guestfs.pod:2791
5909 msgid "MAXIMUM NUMBER OF DISKS"
5910 msgstr ""
5911
5912 #. type: textblock
5913 #: ../src/guestfs.pod:2793
5914 msgid "When using virtio disks (the default) the current limit is B<25> disks."
5915 msgstr ""
5916
5917 #. type: textblock
5918 #: ../src/guestfs.pod:2796
5919 msgid ""
5920 "Virtio itself consumes 1 virtual PCI slot per disk, and PCI is limited to 31 "
5921 "slots.  However febootstrap only understands disks with names C</dev/vda> "
5922 "through C</dev/vdz> (26 letters) and it reserves one disk for its own "
5923 "purposes."
5924 msgstr ""
5925
5926 #. type: textblock
5927 #: ../src/guestfs.pod:2801
5928 msgid ""
5929 "We are working to substantially raise this limit in future versions but it "
5930 "requires complex changes to qemu."
5931 msgstr ""
5932
5933 #. type: textblock
5934 #: ../src/guestfs.pod:2804
5935 msgid ""
5936 "In future versions of libguestfs it should also be possible to \"hot plug\" "
5937 "disks (add and remove disks after calling L</guestfs_launch>).  This also "
5938 "requires changes to qemu."
5939 msgstr ""
5940
5941 #. type: =head2
5942 #: ../src/guestfs.pod:2808
5943 msgid "MAXIMUM NUMBER OF PARTITIONS PER DISK"
5944 msgstr ""
5945
5946 #. type: textblock
5947 #: ../src/guestfs.pod:2810
5948 msgid "Virtio limits the maximum number of partitions per disk to B<15>."
5949 msgstr ""
5950
5951 #. type: textblock
5952 #: ../src/guestfs.pod:2812
5953 msgid ""
5954 "This is because it reserves 4 bits for the minor device number (thus C</dev/"
5955 "vda>, and C</dev/vda1> through C</dev/vda15>)."
5956 msgstr ""
5957
5958 #. type: textblock
5959 #: ../src/guestfs.pod:2815
5960 msgid ""
5961 "If you attach a disk with more than 15 partitions, the extra partitions are "
5962 "ignored by libguestfs."
5963 msgstr ""
5964
5965 #. type: =head2
5966 #: ../src/guestfs.pod:2818
5967 msgid "MAXIMUM SIZE OF A DISK"
5968 msgstr ""
5969
5970 #. type: textblock
5971 #: ../src/guestfs.pod:2820
5972 msgid "Probably the limit is between 2**63-1 and 2**64-1 bytes."
5973 msgstr ""
5974
5975 #. type: textblock
5976 #: ../src/guestfs.pod:2822
5977 msgid ""
5978 "We have tested block devices up to 1 exabyte (2**60 or "
5979 "1,152,921,504,606,846,976 bytes) using sparse files backed by an XFS host "
5980 "filesystem."
5981 msgstr ""
5982
5983 #. type: textblock
5984 #: ../src/guestfs.pod:2826
5985 msgid ""
5986 "Although libguestfs probably does not impose any limit, the underlying host "
5987 "storage will.  If you store disk images on a host ext4 filesystem, then the "
5988 "maximum size will be limited by the maximum ext4 file size (currently 16 "
5989 "TB).  If you store disk images as host logical volumes then you are limited "
5990 "by the maximum size of an LV."
5991 msgstr ""
5992
5993 #. type: textblock
5994 #: ../src/guestfs.pod:2832
5995 msgid ""
5996 "For the hugest disk image files, we recommend using XFS on the host for "
5997 "storage."
5998 msgstr ""
5999
6000 #. type: =head2
6001 #: ../src/guestfs.pod:2835
6002 msgid "MAXIMUM SIZE OF A PARTITION"
6003 msgstr ""
6004
6005 #. type: textblock
6006 #: ../src/guestfs.pod:2837
6007 msgid ""
6008 "The MBR (ie. classic MS-DOS) partitioning scheme uses 32 bit sector "
6009 "numbers.  Assuming a 512 byte sector size, this means that MBR cannot "
6010 "address a partition located beyond 2 TB on the disk."
6011 msgstr ""
6012
6013 #. type: textblock
6014 #: ../src/guestfs.pod:2841
6015 msgid ""
6016 "It is recommended that you use GPT partitions on disks which are larger than "
6017 "this size.  GPT uses 64 bit sector numbers and so can address partitions "
6018 "which are theoretically larger than the largest disk we could support."
6019 msgstr ""
6020
6021 #. type: =head2
6022 #: ../src/guestfs.pod:2846
6023 msgid "MAXIMUM SIZE OF A FILESYSTEM, FILES, DIRECTORIES"
6024 msgstr ""
6025
6026 #. type: textblock
6027 #: ../src/guestfs.pod:2848
6028 msgid ""
6029 "This depends on the filesystem type.  libguestfs itself does not impose any "
6030 "known limit.  Consult Wikipedia or the filesystem documentation to find out "
6031 "what these limits are."
6032 msgstr ""
6033
6034 #. type: =head2
6035 #: ../src/guestfs.pod:2852
6036 msgid "MAXIMUM UPLOAD AND DOWNLOAD"
6037 msgstr ""
6038
6039 #. type: textblock
6040 #: ../src/guestfs.pod:2854
6041 msgid ""
6042 "The API functions L</guestfs_upload>, L</guestfs_download>, L</"
6043 "guestfs_tar_in>, L</guestfs_tar_out> and the like allow unlimited sized "
6044 "uploads and downloads."
6045 msgstr ""
6046
6047 #. type: =head2
6048 #: ../src/guestfs.pod:2858
6049 msgid "INSPECTION LIMITS"
6050 msgstr ""
6051
6052 #. type: textblock
6053 #: ../src/guestfs.pod:2860
6054 msgid ""
6055 "The inspection code has several arbitrary limits on things like the size of "
6056 "Windows Registry hive it will read, and the length of product name.  These "
6057 "are intended to stop a malicious guest from consuming arbitrary amounts of "
6058 "memory and disk space on the host, and should not be reached in practice.  "
6059 "See the source code for more information."
6060 msgstr ""
6061
6062 # type: =head1
6063 #. type: =head1
6064 #: ../src/guestfs.pod:2866 ../fish/guestfish.pod:1015
6065 #: ../test-tool/libguestfs-test-tool.pod:82 ../tools/virt-edit.pl:476
6066 msgid "ENVIRONMENT VARIABLES"
6067 msgstr ""
6068
6069 # type: =item
6070 #. type: =item
6071 #: ../src/guestfs.pod:2870 ../fish/guestfish.pod:1041
6072 msgid "LIBGUESTFS_APPEND"
6073 msgstr ""
6074
6075 # type: textblock
6076 #. type: textblock
6077 #: ../src/guestfs.pod:2872 ../fish/guestfish.pod:1043
6078 msgid "Pass additional options to the guest kernel."
6079 msgstr ""
6080
6081 # type: =item
6082 #. type: =item
6083 #: ../src/guestfs.pod:2874 ../fish/guestfish.pod:1045
6084 msgid "LIBGUESTFS_DEBUG"
6085 msgstr ""
6086
6087 # type: textblock
6088 #. type: textblock
6089 #: ../src/guestfs.pod:2876
6090 msgid ""
6091 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
6092 "effect as calling C<guestfs_set_verbose (g, 1)>."
6093 msgstr ""
6094
6095 # type: =item
6096 #. type: =item
6097 #: ../src/guestfs.pod:2879 ../fish/guestfish.pod:1050
6098 msgid "LIBGUESTFS_MEMSIZE"
6099 msgstr ""
6100
6101 # type: textblock
6102 #. type: textblock
6103 #: ../src/guestfs.pod:2881 ../fish/guestfish.pod:1052
6104 msgid ""
6105 "Set the memory allocated to the qemu process, in megabytes.  For example:"
6106 msgstr ""
6107
6108 # type: verbatim
6109 #. type: verbatim
6110 #: ../src/guestfs.pod:2884 ../fish/guestfish.pod:1055
6111 #, no-wrap
6112 msgid ""
6113 " LIBGUESTFS_MEMSIZE=700\n"
6114 "\n"
6115 msgstr ""
6116
6117 # type: =item
6118 #. type: =item
6119 #: ../src/guestfs.pod:2886 ../fish/guestfish.pod:1057
6120 msgid "LIBGUESTFS_PATH"
6121 msgstr ""
6122
6123 #. type: textblock
6124 #: ../src/guestfs.pod:2888
6125 msgid ""
6126 "Set the path that libguestfs uses to search for a supermin appliance.  See "
6127 "the discussion of paths in section L</PATH> above."
6128 msgstr ""
6129
6130 # type: =item
6131 #. type: =item
6132 #: ../src/guestfs.pod:2891 ../fish/guestfish.pod:1062
6133 msgid "LIBGUESTFS_QEMU"
6134 msgstr ""
6135
6136 # type: textblock
6137 #. type: textblock
6138 #: ../src/guestfs.pod:2893 ../fish/guestfish.pod:1064
6139 msgid ""
6140 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
6141 "which was found at compile time by the configure script is used."
6142 msgstr ""
6143
6144 # type: textblock
6145 #. type: textblock
6146 #: ../src/guestfs.pod:2897
6147 msgid "See also L</QEMU WRAPPERS> above."
6148 msgstr ""
6149
6150 # type: =item
6151 #. type: =item
6152 #: ../src/guestfs.pod:2899 ../fish/guestfish.pod:1068
6153 msgid "LIBGUESTFS_TRACE"
6154 msgstr ""
6155
6156 # type: textblock
6157 #. type: textblock
6158 #: ../src/guestfs.pod:2901
6159 msgid ""
6160 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
6161 "effect as calling C<guestfs_set_trace (g, 1)>."
6162 msgstr ""
6163
6164 # type: =item
6165 #. type: =item
6166 #: ../src/guestfs.pod:2904 ../fish/guestfish.pod:1077
6167 msgid "TMPDIR"
6168 msgstr ""
6169
6170 #. type: textblock
6171 #: ../src/guestfs.pod:2906 ../fish/guestfish.pod:1079
6172 msgid ""
6173 "Location of temporary directory, defaults to C</tmp> except for the cached "
6174 "supermin appliance which defaults to C</var/tmp>."
6175 msgstr ""
6176
6177 #. type: textblock
6178 #: ../src/guestfs.pod:2909 ../fish/guestfish.pod:1082
6179 msgid ""
6180 "If libguestfs was compiled to use the supermin appliance then the real "
6181 "appliance is cached in this directory, shared between all handles belonging "
6182 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
6183 "use in case C</var/tmp> is not large enough."
6184 msgstr ""
6185
6186 # type: =head1
6187 #. type: =head1
6188 #: ../src/guestfs.pod:2917 ../fish/guestfish.pod:1149
6189 #: ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:277
6190 #: ../tools/virt-edit.pl:496 ../tools/virt-win-reg.pl:572
6191 #: ../tools/virt-list-filesystems.pl:189 ../tools/virt-tar.pl:286
6192 #: ../tools/virt-make-fs.pl:539 ../tools/virt-list-partitions.pl:257
6193 msgid "SEE ALSO"
6194 msgstr ""
6195
6196 #. type: textblock
6197 #: ../src/guestfs.pod:2919
6198 msgid ""
6199 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-perl(3)>, L<guestfs-"
6200 "python(3)>, L<guestfs-ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat"
6201 "(1)>, L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)"
6202 ">, L<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)"
6203 ">, L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-"
6204 "rescue(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-"
6205 "win-reg(1)>, L<qemu(1)>, L<febootstrap(1)>, L<hivex(3)>, L<http://libguestfs."
6206 "org/>."
6207 msgstr ""
6208
6209 # type: textblock
6210 #. type: textblock
6211 #: ../src/guestfs.pod:2947
6212 msgid ""
6213 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, L<lvm"
6214 "(8)>, L<disktype(1)>."
6215 msgstr ""
6216
6217 # type: =head1
6218 #. type: =head1
6219 #: ../src/guestfs.pod:2954 ../tools/virt-win-reg.pl:587
6220 #: ../tools/virt-make-fs.pl:553
6221 msgid "BUGS"
6222 msgstr ""
6223
6224 # type: textblock
6225 #. type: textblock
6226 #: ../src/guestfs.pod:2956
6227 msgid "To get a list of bugs against libguestfs use this link:"
6228 msgstr ""
6229
6230 # type: textblock
6231 #. type: textblock
6232 #: ../src/guestfs.pod:2958
6233 msgid ""
6234 "L<https://bugzilla.redhat.com/buglist.cgi?"
6235 "component=libguestfs&product=Virtualization+Tools>"
6236 msgstr ""
6237
6238 # type: textblock
6239 #. type: textblock
6240 #: ../src/guestfs.pod:2960
6241 msgid "To report a new bug against libguestfs use this link:"
6242 msgstr ""
6243
6244 # type: textblock
6245 #. type: textblock
6246 #: ../src/guestfs.pod:2962
6247 msgid ""
6248 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
6249 "component=libguestfs&product=Virtualization+Tools>"
6250 msgstr ""
6251
6252 # type: textblock
6253 #. type: textblock
6254 #: ../src/guestfs.pod:2964
6255 msgid "When reporting a bug, please check:"
6256 msgstr ""
6257
6258 # type: textblock
6259 #. type: textblock
6260 #: ../src/guestfs.pod:2970
6261 msgid "That the bug hasn't been reported already."
6262 msgstr ""
6263
6264 # type: textblock
6265 #. type: textblock
6266 #: ../src/guestfs.pod:2974
6267 msgid "That you are testing a recent version."
6268 msgstr ""
6269
6270 # type: textblock
6271 #. type: textblock
6272 #: ../src/guestfs.pod:2978
6273 msgid "Describe the bug accurately, and give a way to reproduce it."
6274 msgstr ""
6275
6276 # type: textblock
6277 #. type: textblock
6278 #: ../src/guestfs.pod:2982
6279 msgid ""
6280 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
6281 "bug report."
6282 msgstr ""
6283
6284 # type: =head1
6285 #. type: =head1
6286 #: ../src/guestfs.pod:2987 ../fish/guestfish.pod:1172
6287 #: ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:288
6288 msgid "AUTHORS"
6289 msgstr ""
6290
6291 # type: textblock
6292 #. type: textblock
6293 #: ../src/guestfs.pod:2989 ../fish/guestfish.pod:1174
6294 #: ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:290
6295 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
6296 msgstr ""
6297
6298 # type: =head1
6299 #. type: =head1
6300 #: ../src/guestfs.pod:2991 ../fish/guestfish.pod:1176
6301 #: ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:292
6302 #: ../tools/virt-edit.pl:514 ../tools/virt-win-reg.pl:602
6303 #: ../tools/virt-list-filesystems.pl:206 ../tools/virt-tar.pl:305
6304 #: ../tools/virt-make-fs.pl:568 ../tools/virt-list-partitions.pl:273
6305 msgid "COPYRIGHT"
6306 msgstr ""
6307
6308 #. type: textblock
6309 #: ../src/guestfs.pod:2993 ../fish/guestfish.pod:1178
6310 #: ../test-tool/libguestfs-test-tool.pod:99
6311 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
6312 msgstr ""
6313
6314 # type: textblock
6315 #. type: textblock
6316 #: ../src/guestfs.pod:2996
6317 msgid ""
6318 "This library is free software; you can redistribute it and/or modify it "
6319 "under the terms of the GNU Lesser General Public License as published by the "
6320 "Free Software Foundation; either version 2 of the License, or (at your "
6321 "option) any later version."
6322 msgstr ""
6323
6324 # type: textblock
6325 #. type: textblock
6326 #: ../src/guestfs.pod:3001
6327 msgid ""
6328 "This library is distributed in the hope that it will be useful, but WITHOUT "
6329 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
6330 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
6331 "for more details."
6332 msgstr ""
6333
6334 # type: textblock
6335 #. type: textblock
6336 #: ../src/guestfs.pod:3006
6337 msgid ""
6338 "You should have received a copy of the GNU Lesser General Public License "
6339 "along with this library; if not, write to the Free Software Foundation, "
6340 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
6341 msgstr ""
6342
6343 # type: =head2
6344 #. type: =head2
6345 #: ../src/guestfs-actions.pod:1
6346 msgid "guestfs_add_cdrom"
6347 msgstr ""
6348
6349 # type: verbatim
6350 #. type: verbatim
6351 #: ../src/guestfs-actions.pod:3
6352 #, no-wrap
6353 msgid ""
6354 " int\n"
6355 " guestfs_add_cdrom (guestfs_h *g,\n"
6356 "                    const char *filename);\n"
6357 "\n"
6358 msgstr ""
6359
6360 # type: textblock
6361 #. type: textblock
6362 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
6363 msgid "This function adds a virtual CD-ROM disk image to the guest."
6364 msgstr ""
6365
6366 #. type: textblock
6367 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
6368 msgid "This is equivalent to the qemu parameter I<-cdrom filename>."
6369 msgstr ""
6370
6371 # type: textblock
6372 #. type: textblock
6373 #: ../src/guestfs-actions.pod:17
6374 msgid ""
6375 "This call checks for the existence of C<filename>.  This stops you from "
6376 "specifying other types of drive which are supported by qemu such as C<nbd:> "
6377 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
6378 "instead."
6379 msgstr ""
6380
6381 # type: textblock
6382 #. type: textblock
6383 #: ../src/guestfs-actions.pod:24
6384 msgid ""
6385 "If you just want to add an ISO file (often you use this as an efficient way "
6386 "to transfer large files into the guest), then you should probably use "
6387 "C<guestfs_add_drive_ro> instead."
6388 msgstr ""
6389
6390 # type: textblock
6391 #. type: textblock
6392 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:134
6393 #: ../src/guestfs-actions.pod:195 ../src/guestfs-actions.pod:232
6394 #: ../src/guestfs-actions.pod:246 ../src/guestfs-actions.pod:267
6395 #: ../src/guestfs-actions.pod:287 ../src/guestfs-actions.pod:301
6396 #: ../src/guestfs-actions.pod:416 ../src/guestfs-actions.pod:436
6397 #: ../src/guestfs-actions.pod:450 ../src/guestfs-actions.pod:495
6398 #: ../src/guestfs-actions.pod:523 ../src/guestfs-actions.pod:541
6399 #: ../src/guestfs-actions.pod:608 ../src/guestfs-actions.pod:641
6400 #: ../src/guestfs-actions.pod:655 ../src/guestfs-actions.pod:670
6401 #: ../src/guestfs-actions.pod:769 ../src/guestfs-actions.pod:787
6402 #: ../src/guestfs-actions.pod:801 ../src/guestfs-actions.pod:815
6403 #: ../src/guestfs-actions.pod:976 ../src/guestfs-actions.pod:996
6404 #: ../src/guestfs-actions.pod:1014 ../src/guestfs-actions.pod:1098
6405 #: ../src/guestfs-actions.pod:1116 ../src/guestfs-actions.pod:1135
6406 #: ../src/guestfs-actions.pod:1149 ../src/guestfs-actions.pod:1169
6407 #: ../src/guestfs-actions.pod:1239 ../src/guestfs-actions.pod:1270
6408 #: ../src/guestfs-actions.pod:1295 ../src/guestfs-actions.pod:1337
6409 #: ../src/guestfs-actions.pod:1443 ../src/guestfs-actions.pod:1477
6410 #: ../src/guestfs-actions.pod:1692 ../src/guestfs-actions.pod:1714
6411 #: ../src/guestfs-actions.pod:1801 ../src/guestfs-actions.pod:2263
6412 #: ../src/guestfs-actions.pod:2407 ../src/guestfs-actions.pod:2468
6413 #: ../src/guestfs-actions.pod:2503 ../src/guestfs-actions.pod:3456
6414 #: ../src/guestfs-actions.pod:3471 ../src/guestfs-actions.pod:3496
6415 #: ../src/guestfs-actions.pod:3651 ../src/guestfs-actions.pod:3665
6416 #: ../src/guestfs-actions.pod:3678 ../src/guestfs-actions.pod:3692
6417 #: ../src/guestfs-actions.pod:3707 ../src/guestfs-actions.pod:3743
6418 #: ../src/guestfs-actions.pod:3815 ../src/guestfs-actions.pod:3835
6419 #: ../src/guestfs-actions.pod:3852 ../src/guestfs-actions.pod:3875
6420 #: ../src/guestfs-actions.pod:3898 ../src/guestfs-actions.pod:3930
6421 #: ../src/guestfs-actions.pod:3949 ../src/guestfs-actions.pod:3968
6422 #: ../src/guestfs-actions.pod:4003 ../src/guestfs-actions.pod:4015
6423 #: ../src/guestfs-actions.pod:4051 ../src/guestfs-actions.pod:4067
6424 #: ../src/guestfs-actions.pod:4080 ../src/guestfs-actions.pod:4095
6425 #: ../src/guestfs-actions.pod:4112 ../src/guestfs-actions.pod:4205
6426 #: ../src/guestfs-actions.pod:4225 ../src/guestfs-actions.pod:4238
6427 #: ../src/guestfs-actions.pod:4289 ../src/guestfs-actions.pod:4307
6428 #: ../src/guestfs-actions.pod:4325 ../src/guestfs-actions.pod:4341
6429 #: ../src/guestfs-actions.pod:4355 ../src/guestfs-actions.pod:4369
6430 #: ../src/guestfs-actions.pod:4386 ../src/guestfs-actions.pod:4401
6431 #: ../src/guestfs-actions.pod:4421 ../src/guestfs-actions.pod:4479
6432 #: ../src/guestfs-actions.pod:4552 ../src/guestfs-actions.pod:4583
6433 #: ../src/guestfs-actions.pod:4602 ../src/guestfs-actions.pod:4621
6434 #: ../src/guestfs-actions.pod:4633 ../src/guestfs-actions.pod:4650
6435 #: ../src/guestfs-actions.pod:4663 ../src/guestfs-actions.pod:4678
6436 #: ../src/guestfs-actions.pod:4693 ../src/guestfs-actions.pod:4728
6437 #: ../src/guestfs-actions.pod:4750 ../src/guestfs-actions.pod:4770
6438 #: ../src/guestfs-actions.pod:4784 ../src/guestfs-actions.pod:4801
6439 #: ../src/guestfs-actions.pod:4850 ../src/guestfs-actions.pod:4896
6440 #: ../src/guestfs-actions.pod:4910 ../src/guestfs-actions.pod:4938
6441 #: ../src/guestfs-actions.pod:4955 ../src/guestfs-actions.pod:4973
6442 #: ../src/guestfs-actions.pod:5107 ../src/guestfs-actions.pod:5164
6443 #: ../src/guestfs-actions.pod:5186 ../src/guestfs-actions.pod:5204
6444 #: ../src/guestfs-actions.pod:5236 ../src/guestfs-actions.pod:5302
6445 #: ../src/guestfs-actions.pod:5319 ../src/guestfs-actions.pod:5332
6446 #: ../src/guestfs-actions.pod:5346 ../src/guestfs-actions.pod:5635
6447 #: ../src/guestfs-actions.pod:5654 ../src/guestfs-actions.pod:5673
6448 #: ../src/guestfs-actions.pod:5685 ../src/guestfs-actions.pod:5697
6449 #: ../src/guestfs-actions.pod:5711 ../src/guestfs-actions.pod:5723
6450 #: ../src/guestfs-actions.pod:5737 ../src/guestfs-actions.pod:5753
6451 #: ../src/guestfs-actions.pod:5774 ../src/guestfs-actions.pod:5793
6452 #: ../src/guestfs-actions.pod:5812 ../src/guestfs-actions.pod:5842
6453 #: ../src/guestfs-actions.pod:5858 ../src/guestfs-actions.pod:5881
6454 #: ../src/guestfs-actions.pod:5899 ../src/guestfs-actions.pod:5918
6455 #: ../src/guestfs-actions.pod:5939 ../src/guestfs-actions.pod:5958
6456 #: ../src/guestfs-actions.pod:5975 ../src/guestfs-actions.pod:6003
6457 #: ../src/guestfs-actions.pod:6027 ../src/guestfs-actions.pod:6046
6458 #: ../src/guestfs-actions.pod:6070 ../src/guestfs-actions.pod:6089
6459 #: ../src/guestfs-actions.pod:6104 ../src/guestfs-actions.pod:6123
6460 #: ../src/guestfs-actions.pod:6160 ../src/guestfs-actions.pod:6190
6461 #: ../src/guestfs-actions.pod:6223 ../src/guestfs-actions.pod:6345
6462 #: ../src/guestfs-actions.pod:6466 ../src/guestfs-actions.pod:6478
6463 #: ../src/guestfs-actions.pod:6491 ../src/guestfs-actions.pod:6504
6464 #: ../src/guestfs-actions.pod:6526 ../src/guestfs-actions.pod:6539
6465 #: ../src/guestfs-actions.pod:6552 ../src/guestfs-actions.pod:6565
6466 #: ../src/guestfs-actions.pod:6580 ../src/guestfs-actions.pod:6639
6467 #: ../src/guestfs-actions.pod:6656 ../src/guestfs-actions.pod:6672
6468 #: ../src/guestfs-actions.pod:6688 ../src/guestfs-actions.pod:6705
6469 #: ../src/guestfs-actions.pod:6718 ../src/guestfs-actions.pod:6738
6470 #: ../src/guestfs-actions.pod:6774 ../src/guestfs-actions.pod:6788
6471 #: ../src/guestfs-actions.pod:6829 ../src/guestfs-actions.pod:6842
6472 #: ../src/guestfs-actions.pod:6860 ../src/guestfs-actions.pod:6894
6473 #: ../src/guestfs-actions.pod:6930 ../src/guestfs-actions.pod:7049
6474 #: ../src/guestfs-actions.pod:7067 ../src/guestfs-actions.pod:7081
6475 #: ../src/guestfs-actions.pod:7136 ../src/guestfs-actions.pod:7149
6476 #: ../src/guestfs-actions.pod:7194 ../src/guestfs-actions.pod:7227
6477 #: ../src/guestfs-actions.pod:7288 ../src/guestfs-actions.pod:7314
6478 #: ../src/guestfs-actions.pod:7380 ../src/guestfs-actions.pod:7399
6479 #: ../src/guestfs-actions.pod:7428
6480 msgid "This function returns 0 on success or -1 on error."
6481 msgstr ""
6482
6483 # type: textblock
6484 #. type: textblock
6485 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:248
6486 #: ../src/guestfs-actions.pod:269 ../fish/guestfish-actions.pod:28
6487 #: ../fish/guestfish-actions.pod:158 ../fish/guestfish-actions.pod:172
6488 msgid ""
6489 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
6490 "instead."
6491 msgstr ""
6492
6493 # type: textblock
6494 #. type: textblock
6495 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:251
6496 #: ../src/guestfs-actions.pod:272 ../src/guestfs-actions.pod:1448
6497 #: ../src/guestfs-actions.pod:1941 ../src/guestfs-actions.pod:1962
6498 #: ../src/guestfs-actions.pod:4426 ../src/guestfs-actions.pod:4733
6499 #: ../src/guestfs-actions.pod:6168 ../src/guestfs-actions.pod:6198
6500 #: ../src/guestfs-actions.pod:6231 ../src/guestfs-actions.pod:6290
6501 #: ../src/guestfs-actions.pod:7232 ../src/guestfs-actions.pod:7322
6502 #: ../src/guestfs-actions.pod:7491 ../fish/guestfish-actions.pod:31
6503 #: ../fish/guestfish-actions.pod:161 ../fish/guestfish-actions.pod:175
6504 #: ../fish/guestfish-actions.pod:956 ../fish/guestfish-actions.pod:1316
6505 #: ../fish/guestfish-actions.pod:1330 ../fish/guestfish-actions.pod:3005
6506 #: ../fish/guestfish-actions.pod:3202 ../fish/guestfish-actions.pod:4183
6507 #: ../fish/guestfish-actions.pod:4206 ../fish/guestfish-actions.pod:4228
6508 #: ../fish/guestfish-actions.pod:4266 ../fish/guestfish-actions.pod:4907
6509 #: ../fish/guestfish-actions.pod:5004
6510 msgid ""
6511 "Deprecated functions will not be removed from the API, but the fact that "
6512 "they are deprecated indicates that there are problems with correct use of "
6513 "these functions."
6514 msgstr ""
6515
6516 # type: textblock
6517 #. type: textblock
6518 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:136
6519 #: ../src/guestfs-actions.pod:1100 ../src/guestfs-actions.pod:1913
6520 #: ../src/guestfs-actions.pod:2011 ../src/guestfs-actions.pod:2114
6521 #: ../src/guestfs-actions.pod:3458 ../src/guestfs-actions.pod:3478
6522 #: ../src/guestfs-actions.pod:4737 ../src/guestfs-actions.pod:5860
6523 #: ../src/guestfs-actions.pod:5977 ../src/guestfs-actions.pod:6091
6524 #: ../src/guestfs-actions.pod:6582 ../src/guestfs-actions.pod:6707
6525 #: ../src/guestfs-actions.pod:7236
6526 msgid "(Added in 0.3)"
6527 msgstr ""
6528
6529 # type: =head2
6530 #. type: =head2
6531 #: ../src/guestfs-actions.pod:41
6532 msgid "guestfs_add_domain"
6533 msgstr ""
6534
6535 # type: verbatim
6536 #. type: verbatim
6537 #: ../src/guestfs-actions.pod:43
6538 #, no-wrap
6539 msgid ""
6540 " int\n"
6541 " guestfs_add_domain (guestfs_h *g,\n"
6542 "                     const char *dom,\n"
6543 "                     ...);\n"
6544 "\n"
6545 msgstr ""
6546
6547 # type: textblock
6548 #. type: textblock
6549 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:145
6550 #: ../src/guestfs-actions.pod:4440
6551 msgid ""
6552 "You may supply a list of optional arguments to this call.  Use zero or more "
6553 "of the following pairs of parameters, and terminate the list with C<-1> on "
6554 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
6555 msgstr ""
6556
6557 #. type: verbatim
6558 #: ../src/guestfs-actions.pod:53
6559 #, no-wrap
6560 msgid ""
6561 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
6562 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
6563 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
6564 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
6565 "\n"
6566 msgstr ""
6567
6568 # type: textblock
6569 #. type: textblock
6570 #: ../src/guestfs-actions.pod:58
6571 msgid ""
6572 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
6573 "It works by connecting to libvirt, requesting the domain and domain XML from "
6574 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
6575 "one."
6576 msgstr ""
6577
6578 # type: textblock
6579 #. type: textblock
6580 #: ../src/guestfs-actions.pod:63 ../fish/guestfish-actions.pod:46
6581 msgid ""
6582 "The number of disks added is returned.  This operation is atomic: if an "
6583 "error is returned, then no disks are added."
6584 msgstr ""
6585
6586 # type: textblock
6587 #. type: textblock
6588 #: ../src/guestfs-actions.pod:66 ../fish/guestfish-actions.pod:49
6589 msgid ""
6590 "This function does some minimal checks to make sure the libvirt domain is "
6591 "not running (unless C<readonly> is true).  In a future version we will try "
6592 "to acquire the libvirt lock on each disk."
6593 msgstr ""
6594
6595 # type: textblock
6596 #. type: textblock
6597 #: ../src/guestfs-actions.pod:70 ../fish/guestfish-actions.pod:53
6598 msgid ""
6599 "Disks must be accessible locally.  This often means that adding disks from a "
6600 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
6601 "unless those disks are accessible via the same device path locally too."
6602 msgstr ""
6603
6604 #. type: textblock
6605 #: ../src/guestfs-actions.pod:75 ../fish/guestfish-actions.pod:58
6606 msgid ""
6607 "The optional C<libvirturi> parameter sets the libvirt URI (see L<http://"
6608 "libvirt.org/uri.html>).  If this is not set then we connect to the default "
6609 "libvirt URI (or one set through an environment variable, see the libvirt "
6610 "documentation for full details)."
6611 msgstr ""
6612
6613 #. type: textblock
6614 #: ../src/guestfs-actions.pod:81 ../fish/guestfish-actions.pod:64
6615 msgid ""
6616 "The optional C<live> flag controls whether this call will try to connect to "
6617 "a running virtual machine C<guestfsd> process if it sees a suitable "
6618 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
6619 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING "
6620 "DAEMONS> for more information."
6621 msgstr ""
6622
6623 # type: textblock
6624 #. type: textblock
6625 #: ../src/guestfs-actions.pod:88
6626 msgid ""
6627 "The other optional parameters are passed directly through to "
6628 "C<guestfs_add_drive_opts>."
6629 msgstr ""
6630
6631 # type: textblock
6632 #. type: textblock
6633 #: ../src/guestfs-actions.pod:91 ../src/guestfs-actions.pod:344
6634 #: ../src/guestfs-actions.pod:509 ../src/guestfs-actions.pod:687
6635 #: ../src/guestfs-actions.pod:718 ../src/guestfs-actions.pod:736
6636 #: ../src/guestfs-actions.pod:755 ../src/guestfs-actions.pod:1315
6637 #: ../src/guestfs-actions.pod:1671 ../src/guestfs-actions.pod:1874
6638 #: ../src/guestfs-actions.pod:1983 ../src/guestfs-actions.pod:2023
6639 #: ../src/guestfs-actions.pod:2078 ../src/guestfs-actions.pod:2101
6640 #: ../src/guestfs-actions.pod:2394 ../src/guestfs-actions.pod:2777
6641 #: ../src/guestfs-actions.pod:2798 ../src/guestfs-actions.pod:4873
6642 #: ../src/guestfs-actions.pod:5010 ../src/guestfs-actions.pod:5416
6643 #: ../src/guestfs-actions.pod:5442 ../src/guestfs-actions.pod:6815
6644 #: ../src/guestfs-actions.pod:7247 ../src/guestfs-actions.pod:7260
6645 #: ../src/guestfs-actions.pod:7273
6646 msgid "On error this function returns -1."
6647 msgstr ""
6648
6649 # type: textblock
6650 #. type: textblock
6651 #: ../src/guestfs-actions.pod:93
6652 msgid "(Added in 1.7.4)"
6653 msgstr ""
6654
6655 # type: =head2
6656 #. type: =head2
6657 #: ../src/guestfs-actions.pod:95
6658 msgid "guestfs_add_domain_va"
6659 msgstr ""
6660
6661 # type: verbatim
6662 #. type: verbatim
6663 #: ../src/guestfs-actions.pod:97
6664 #, no-wrap
6665 msgid ""
6666 " int\n"
6667 " guestfs_add_domain_va (guestfs_h *g,\n"
6668 "                        const char *dom,\n"
6669 "                        va_list args);\n"
6670 "\n"
6671 msgstr ""
6672
6673 # type: textblock
6674 #. type: textblock
6675 #: ../src/guestfs-actions.pod:102
6676 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
6677 msgstr ""
6678
6679 # type: textblock
6680 #. type: textblock
6681 #: ../src/guestfs-actions.pod:104 ../src/guestfs-actions.pod:115
6682 #: ../src/guestfs-actions.pod:208 ../src/guestfs-actions.pod:219
6683 #: ../src/guestfs-actions.pod:4493 ../src/guestfs-actions.pod:4505
6684 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
6685 msgstr ""
6686
6687 # type: =head2
6688 #. type: =head2
6689 #: ../src/guestfs-actions.pod:106
6690 msgid "guestfs_add_domain_argv"
6691 msgstr ""
6692
6693 # type: verbatim
6694 #. type: verbatim
6695 #: ../src/guestfs-actions.pod:108
6696 #, no-wrap
6697 msgid ""
6698 " int\n"
6699 " guestfs_add_domain_argv (guestfs_h *g,\n"
6700 "                          const char *dom,\n"
6701 "                          const struct guestfs_add_domain_argv *optargs);\n"
6702 "\n"
6703 msgstr ""
6704
6705 # type: textblock
6706 #. type: textblock
6707 #: ../src/guestfs-actions.pod:113
6708 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
6709 msgstr ""
6710
6711 # type: =head2
6712 #. type: =head2
6713 #: ../src/guestfs-actions.pod:117
6714 msgid "guestfs_add_drive"
6715 msgstr ""
6716
6717 # type: verbatim
6718 #. type: verbatim
6719 #: ../src/guestfs-actions.pod:119
6720 #, no-wrap
6721 msgid ""
6722 " int\n"
6723 " guestfs_add_drive (guestfs_h *g,\n"
6724 "                    const char *filename);\n"
6725 "\n"
6726 msgstr ""
6727
6728 # type: textblock
6729 #. type: textblock
6730 #: ../src/guestfs-actions.pod:123
6731 msgid ""
6732 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
6733 "optional parameters, so the disk is added writable, with the format being "
6734 "detected automatically."
6735 msgstr ""
6736
6737 # type: textblock
6738 #. type: textblock
6739 #: ../src/guestfs-actions.pod:127
6740 msgid ""
6741 "Automatic detection of the format opens you up to a potential security hole "
6742 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6743 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6744 "you should think about replacing calls to this function with calls to "
6745 "C<guestfs_add_drive_opts>, and specifying the format."
6746 msgstr ""
6747
6748 # type: =head2
6749 #. type: =head2
6750 #: ../src/guestfs-actions.pod:138
6751 msgid "guestfs_add_drive_opts"
6752 msgstr ""
6753
6754 # type: verbatim
6755 #. type: verbatim
6756 #: ../src/guestfs-actions.pod:140
6757 #, no-wrap
6758 msgid ""
6759 " int\n"
6760 " guestfs_add_drive_opts (guestfs_h *g,\n"
6761 "                         const char *filename,\n"
6762 "                         ...);\n"
6763 "\n"
6764 msgstr ""
6765
6766 # type: verbatim
6767 #. type: verbatim
6768 #: ../src/guestfs-actions.pod:150
6769 #, no-wrap
6770 msgid ""
6771 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6772 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6773 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6774 "\n"
6775 msgstr ""
6776
6777 # type: textblock
6778 #. type: textblock
6779 #: ../src/guestfs-actions.pod:154 ../fish/guestfish-actions.pod:97
6780 msgid ""
6781 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6782 "The first time you call this function, the disk appears as C</dev/sda>, the "
6783 "second time as C</dev/sdb>, and so on."
6784 msgstr ""
6785
6786 # type: textblock
6787 #. type: textblock
6788 #: ../src/guestfs-actions.pod:159 ../fish/guestfish-actions.pod:102
6789 msgid ""
6790 "You don't necessarily need to be root when using libguestfs.  However you "
6791 "obviously do need sufficient permissions to access the filename for whatever "
6792 "operations you want to perform (ie. read access if you just want to read the "
6793 "image or write access if you want to modify the image)."
6794 msgstr ""
6795
6796 # type: textblock
6797 #. type: textblock
6798 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:108
6799 msgid "This call checks that C<filename> exists."
6800 msgstr ""
6801
6802 # type: textblock
6803 #. type: textblock
6804 #: ../src/guestfs-actions.pod:167 ../src/guestfs-actions.pod:4451
6805 #: ../fish/guestfish-actions.pod:110 ../fish/guestfish-actions.pod:3016
6806 msgid "The optional arguments are:"
6807 msgstr ""
6808
6809 # type: =item
6810 #. type: =item
6811 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:114
6812 msgid "C<readonly>"
6813 msgstr ""
6814
6815 # type: textblock
6816 #. type: textblock
6817 #: ../src/guestfs-actions.pod:173 ../fish/guestfish-actions.pod:116
6818 msgid ""
6819 "If true then the image is treated as read-only.  Writes are still allowed, "
6820 "but they are stored in a temporary snapshot overlay which is discarded at "
6821 "the end.  The disk that you add is not modified."
6822 msgstr ""
6823
6824 # type: =item
6825 #. type: =item
6826 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:120
6827 msgid "C<format>"
6828 msgstr ""
6829
6830 # type: textblock
6831 #. type: textblock
6832 #: ../src/guestfs-actions.pod:179
6833 msgid ""
6834 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
6835 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6836 "Possible formats include C<raw> and C<qcow2>."
6837 msgstr ""
6838
6839 # type: textblock
6840 #. type: textblock
6841 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:126
6842 msgid ""
6843 "Automatic detection of the format opens you up to a potential security hole "
6844 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6845 "RHBZ#642934.  Specifying the format closes this security hole."
6846 msgstr ""
6847
6848 # type: =item
6849 #. type: =item
6850 #: ../src/guestfs-actions.pod:188 ../fish/guestfish-actions.pod:131
6851 msgid "C<iface>"
6852 msgstr ""
6853
6854 # type: textblock
6855 #. type: textblock
6856 #: ../src/guestfs-actions.pod:190
6857 msgid ""
6858 "This rarely-used option lets you emulate the behaviour of the deprecated "
6859 "C<guestfs_add_drive_with_if> call (q.v.)"
6860 msgstr ""
6861
6862 # type: textblock
6863 #. type: textblock
6864 #: ../src/guestfs-actions.pod:197
6865 msgid "(Added in 1.5.23)"
6866 msgstr ""
6867
6868 # type: =head2
6869 #. type: =head2
6870 #: ../src/guestfs-actions.pod:199
6871 msgid "guestfs_add_drive_opts_va"
6872 msgstr ""
6873
6874 # type: verbatim
6875 #. type: verbatim
6876 #: ../src/guestfs-actions.pod:201
6877 #, no-wrap
6878 msgid ""
6879 " int\n"
6880 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6881 "                            const char *filename,\n"
6882 "                            va_list args);\n"
6883 "\n"
6884 msgstr ""
6885
6886 # type: textblock
6887 #. type: textblock
6888 #: ../src/guestfs-actions.pod:206
6889 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6890 msgstr ""
6891
6892 # type: =head2
6893 #. type: =head2
6894 #: ../src/guestfs-actions.pod:210
6895 msgid "guestfs_add_drive_opts_argv"
6896 msgstr ""
6897
6898 # type: verbatim
6899 #. type: verbatim
6900 #: ../src/guestfs-actions.pod:212
6901 #, no-wrap
6902 msgid ""
6903 " int\n"
6904 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6905 "                              const char *filename,\n"
6906 "                              const struct guestfs_add_drive_opts_argv *optargs);\n"
6907 "\n"
6908 msgstr ""
6909
6910 # type: textblock
6911 #. type: textblock
6912 #: ../src/guestfs-actions.pod:217
6913 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6914 msgstr ""
6915
6916 # type: =head2
6917 #. type: =head2
6918 #: ../src/guestfs-actions.pod:221
6919 msgid "guestfs_add_drive_ro"
6920 msgstr ""
6921
6922 # type: verbatim
6923 #. type: verbatim
6924 #: ../src/guestfs-actions.pod:223
6925 #, no-wrap
6926 msgid ""
6927 " int\n"
6928 " guestfs_add_drive_ro (guestfs_h *g,\n"
6929 "                       const char *filename);\n"
6930 "\n"
6931 msgstr ""
6932
6933 # type: textblock
6934 #. type: textblock
6935 #: ../src/guestfs-actions.pod:227
6936 msgid ""
6937 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6938 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6939 "disk is added read-only, with the format being detected automatically."
6940 msgstr ""
6941
6942 # type: textblock
6943 #. type: textblock
6944 #: ../src/guestfs-actions.pod:234
6945 msgid "(Added in 1.0.38)"
6946 msgstr ""
6947
6948 # type: =head2
6949 #. type: =head2
6950 #: ../src/guestfs-actions.pod:236
6951 msgid "guestfs_add_drive_ro_with_if"
6952 msgstr ""
6953
6954 # type: verbatim
6955 #. type: verbatim
6956 #: ../src/guestfs-actions.pod:238
6957 #, no-wrap
6958 msgid ""
6959 " int\n"
6960 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6961 "                               const char *filename,\n"
6962 "                               const char *iface);\n"
6963 "\n"
6964 msgstr ""
6965
6966 # type: textblock
6967 #. type: textblock
6968 #: ../src/guestfs-actions.pod:243
6969 msgid ""
6970 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6971 "QEMU interface emulation to use at run time."
6972 msgstr ""
6973
6974 # type: textblock
6975 #. type: textblock
6976 #: ../src/guestfs-actions.pod:255 ../src/guestfs-actions.pod:276
6977 #: ../src/guestfs-actions.pod:2353
6978 msgid "(Added in 1.0.84)"
6979 msgstr ""
6980
6981 # type: =head2
6982 #. type: =head2
6983 #: ../src/guestfs-actions.pod:257
6984 msgid "guestfs_add_drive_with_if"
6985 msgstr ""
6986
6987 # type: verbatim
6988 #. type: verbatim
6989 #: ../src/guestfs-actions.pod:259
6990 #, no-wrap
6991 msgid ""
6992 " int\n"
6993 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6994 "                            const char *filename,\n"
6995 "                            const char *iface);\n"
6996 "\n"
6997 msgstr ""
6998
6999 # type: textblock
7000 #. type: textblock
7001 #: ../src/guestfs-actions.pod:264
7002 msgid ""
7003 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
7004 "QEMU interface emulation to use at run time."
7005 msgstr ""
7006
7007 # type: =head2
7008 #. type: =head2
7009 #: ../src/guestfs-actions.pod:278
7010 msgid "guestfs_aug_clear"
7011 msgstr ""
7012
7013 # type: verbatim
7014 #. type: verbatim
7015 #: ../src/guestfs-actions.pod:280
7016 #, no-wrap
7017 msgid ""
7018 " int\n"
7019 " guestfs_aug_clear (guestfs_h *g,\n"
7020 "                    const char *augpath);\n"
7021 "\n"
7022 msgstr ""
7023
7024 # type: textblock
7025 #. type: textblock
7026 #: ../src/guestfs-actions.pod:284 ../fish/guestfish-actions.pod:183
7027 msgid ""
7028 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
7029 "L<augtool(1)> C<clear> command."
7030 msgstr ""
7031
7032 # type: textblock
7033 #. type: textblock
7034 #: ../src/guestfs-actions.pod:289 ../src/guestfs-actions.pod:2103
7035 msgid "(Added in 1.3.4)"
7036 msgstr ""
7037
7038 # type: =head2
7039 #. type: =head2
7040 #: ../src/guestfs-actions.pod:291
7041 msgid "guestfs_aug_close"
7042 msgstr ""
7043
7044 # type: verbatim
7045 #. type: verbatim
7046 #: ../src/guestfs-actions.pod:293
7047 #, no-wrap
7048 msgid ""
7049 " int\n"
7050 " guestfs_aug_close (guestfs_h *g);\n"
7051 "\n"
7052 msgstr ""
7053
7054 # type: textblock
7055 #. type: textblock
7056 #: ../src/guestfs-actions.pod:296
7057 msgid ""
7058 "Close the current Augeas handle and free up any resources used by it.  After "
7059 "calling this, you have to call C<guestfs_aug_init> again before you can use "
7060 "any other Augeas functions."
7061 msgstr ""
7062
7063 # type: textblock
7064 #. type: textblock
7065 #: ../src/guestfs-actions.pod:303 ../src/guestfs-actions.pod:328
7066 #: ../src/guestfs-actions.pod:346 ../src/guestfs-actions.pod:360
7067 #: ../src/guestfs-actions.pod:418 ../src/guestfs-actions.pod:438
7068 #: ../src/guestfs-actions.pod:452 ../src/guestfs-actions.pod:483
7069 #: ../src/guestfs-actions.pod:497 ../src/guestfs-actions.pod:511
7070 #: ../src/guestfs-actions.pod:525 ../src/guestfs-actions.pod:543
7071 #: ../src/guestfs-actions.pod:5493
7072 msgid "(Added in 0.7)"
7073 msgstr ""
7074
7075 # type: =head2
7076 #. type: =head2
7077 #: ../src/guestfs-actions.pod:305
7078 msgid "guestfs_aug_defnode"
7079 msgstr ""
7080
7081 # type: verbatim
7082 #. type: verbatim
7083 #: ../src/guestfs-actions.pod:307
7084 #, no-wrap
7085 msgid ""
7086 " struct guestfs_int_bool *\n"
7087 " guestfs_aug_defnode (guestfs_h *g,\n"
7088 "                      const char *name,\n"
7089 "                      const char *expr,\n"
7090 "                      const char *val);\n"
7091 "\n"
7092 msgstr ""
7093
7094 # type: textblock
7095 #. type: textblock
7096 #: ../src/guestfs-actions.pod:313 ../fish/guestfish-actions.pod:199
7097 msgid ""
7098 "Defines a variable C<name> whose value is the result of evaluating C<expr>."
7099 msgstr ""
7100
7101 # type: textblock
7102 #. type: textblock
7103 #: ../src/guestfs-actions.pod:316
7104 msgid ""
7105 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
7106 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
7107 "containing that single node."
7108 msgstr ""
7109
7110 # type: textblock
7111 #. type: textblock
7112 #: ../src/guestfs-actions.pod:320 ../fish/guestfish-actions.pod:206
7113 msgid ""
7114 "On success this returns a pair containing the number of nodes in the "
7115 "nodeset, and a boolean flag if a node was created."
7116 msgstr ""
7117
7118 # type: textblock
7119 #. type: textblock
7120 #: ../src/guestfs-actions.pod:324
7121 msgid ""
7122 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
7123 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
7124 msgstr ""
7125
7126 # type: =head2
7127 #. type: =head2
7128 #: ../src/guestfs-actions.pod:330
7129 msgid "guestfs_aug_defvar"
7130 msgstr ""
7131
7132 # type: verbatim
7133 #. type: verbatim
7134 #: ../src/guestfs-actions.pod:332
7135 #, no-wrap
7136 msgid ""
7137 " int\n"
7138 " guestfs_aug_defvar (guestfs_h *g,\n"
7139 "                     const char *name,\n"
7140 "                     const char *expr);\n"
7141 "\n"
7142 msgstr ""
7143
7144 # type: textblock
7145 #. type: textblock
7146 #: ../src/guestfs-actions.pod:337 ../fish/guestfish-actions.pod:214
7147 msgid ""
7148 "Defines an Augeas variable C<name> whose value is the result of evaluating "
7149 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
7150 msgstr ""
7151
7152 # type: textblock
7153 #. type: textblock
7154 #: ../src/guestfs-actions.pod:341 ../fish/guestfish-actions.pod:218
7155 msgid ""
7156 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
7157 "evaluates to something which is not a nodeset."
7158 msgstr ""
7159
7160 # type: =head2
7161 #. type: =head2
7162 #: ../src/guestfs-actions.pod:348
7163 msgid "guestfs_aug_get"
7164 msgstr ""
7165
7166 # type: verbatim
7167 #. type: verbatim
7168 #: ../src/guestfs-actions.pod:350
7169 #, no-wrap
7170 msgid ""
7171 " char *\n"
7172 " guestfs_aug_get (guestfs_h *g,\n"
7173 "                  const char *augpath);\n"
7174 "\n"
7175 msgstr ""
7176
7177 # type: textblock
7178 #. type: textblock
7179 #: ../src/guestfs-actions.pod:354 ../fish/guestfish-actions.pod:225
7180 msgid ""
7181 "Look up the value associated with C<path>.  If C<path> matches exactly one "
7182 "node, the C<value> is returned."
7183 msgstr ""
7184
7185 # type: textblock
7186 #. type: textblock
7187 #: ../src/guestfs-actions.pod:357 ../src/guestfs-actions.pod:857
7188 #: ../src/guestfs-actions.pod:875 ../src/guestfs-actions.pod:935
7189 #: ../src/guestfs-actions.pod:951 ../src/guestfs-actions.pod:1054
7190 #: ../src/guestfs-actions.pod:1184 ../src/guestfs-actions.pod:1201
7191 #: ../src/guestfs-actions.pod:1220 ../src/guestfs-actions.pod:1354
7192 #: ../src/guestfs-actions.pod:1542 ../src/guestfs-actions.pod:1654
7193 #: ../src/guestfs-actions.pod:1817 ../src/guestfs-actions.pod:1834
7194 #: ../src/guestfs-actions.pod:1901 ../src/guestfs-actions.pod:1935
7195 #: ../src/guestfs-actions.pod:1956 ../src/guestfs-actions.pod:2126
7196 #: ../src/guestfs-actions.pod:2318 ../src/guestfs-actions.pod:2525
7197 #: ../src/guestfs-actions.pod:2618 ../src/guestfs-actions.pod:2729
7198 #: ../src/guestfs-actions.pod:2749 ../src/guestfs-actions.pod:2869
7199 #: ../src/guestfs-actions.pod:2900 ../src/guestfs-actions.pod:2924
7200 #: ../src/guestfs-actions.pod:2961 ../src/guestfs-actions.pod:3021
7201 #: ../src/guestfs-actions.pod:3044 ../src/guestfs-actions.pod:3065
7202 #: ../src/guestfs-actions.pod:3637 ../src/guestfs-actions.pod:3987
7203 #: ../src/guestfs-actions.pod:4157 ../src/guestfs-actions.pod:4267
7204 #: ../src/guestfs-actions.pod:5028 ../src/guestfs-actions.pod:5221
7205 #: ../src/guestfs-actions.pod:5391 ../src/guestfs-actions.pod:5569
7206 #: ../src/guestfs-actions.pod:5618 ../src/guestfs-actions.pod:6251
7207 #: ../src/guestfs-actions.pod:6267 ../src/guestfs-actions.pod:6284
7208 #: ../src/guestfs-actions.pod:6315 ../src/guestfs-actions.pod:6989
7209 #: ../src/guestfs-actions.pod:7008 ../src/guestfs-actions.pod:7026
7210 #: ../src/guestfs-actions.pod:7206 ../src/guestfs-actions.pod:7485
7211 msgid ""
7212 "This function returns a string, or NULL on error.  I<The caller must free "
7213 "the returned string after use>."
7214 msgstr ""
7215
7216 # type: =head2
7217 #. type: =head2
7218 #: ../src/guestfs-actions.pod:362
7219 msgid "guestfs_aug_init"
7220 msgstr ""
7221
7222 # type: verbatim
7223 #. type: verbatim
7224 #: ../src/guestfs-actions.pod:364
7225 #, no-wrap
7226 msgid ""
7227 " int\n"
7228 " guestfs_aug_init (guestfs_h *g,\n"
7229 "                   const char *root,\n"
7230 "                   int flags);\n"
7231 "\n"
7232 msgstr ""
7233
7234 # type: textblock
7235 #. type: textblock
7236 #: ../src/guestfs-actions.pod:369 ../fish/guestfish-actions.pod:232
7237 msgid ""
7238 "Create a new Augeas handle for editing configuration files.  If there was "
7239 "any previous Augeas handle associated with this guestfs session, then it is "
7240 "closed."
7241 msgstr ""
7242
7243 # type: textblock
7244 #. type: textblock
7245 #: ../src/guestfs-actions.pod:373
7246 msgid "You must call this before using any other C<guestfs_aug_*> commands."
7247 msgstr ""
7248
7249 # type: textblock
7250 #. type: textblock
7251 #: ../src/guestfs-actions.pod:376 ../fish/guestfish-actions.pod:239
7252 msgid ""
7253 "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
7254 msgstr ""
7255
7256 # type: textblock
7257 #. type: textblock
7258 #: ../src/guestfs-actions.pod:379 ../fish/guestfish-actions.pod:242
7259 msgid ""
7260 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
7261 "logical I<or> of the following integers:"
7262 msgstr ""
7263
7264 # type: =item
7265 #. type: =item
7266 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:248
7267 msgid "C<AUG_SAVE_BACKUP> = 1"
7268 msgstr ""
7269
7270 # type: textblock
7271 #. type: textblock
7272 #: ../src/guestfs-actions.pod:387 ../fish/guestfish-actions.pod:250
7273 msgid "Keep the original file with a C<.augsave> extension."
7274 msgstr ""
7275
7276 # type: =item
7277 #. type: =item
7278 #: ../src/guestfs-actions.pod:389 ../fish/guestfish-actions.pod:252
7279 msgid "C<AUG_SAVE_NEWFILE> = 2"
7280 msgstr ""
7281
7282 # type: textblock
7283 #. type: textblock
7284 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:254
7285 msgid ""
7286 "Save changes into a file with extension C<.augnew>, and do not overwrite "
7287 "original.  Overrides C<AUG_SAVE_BACKUP>."
7288 msgstr ""
7289
7290 # type: =item
7291 #. type: =item
7292 #: ../src/guestfs-actions.pod:394 ../fish/guestfish-actions.pod:257
7293 msgid "C<AUG_TYPE_CHECK> = 4"
7294 msgstr ""
7295
7296 # type: textblock
7297 #. type: textblock
7298 #: ../src/guestfs-actions.pod:396 ../fish/guestfish-actions.pod:259
7299 msgid "Typecheck lenses (can be expensive)."
7300 msgstr ""
7301
7302 # type: =item
7303 #. type: =item
7304 #: ../src/guestfs-actions.pod:398 ../fish/guestfish-actions.pod:261
7305 msgid "C<AUG_NO_STDINC> = 8"
7306 msgstr ""
7307
7308 # type: textblock
7309 #. type: textblock
7310 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:263
7311 msgid "Do not use standard load path for modules."
7312 msgstr ""
7313
7314 # type: =item
7315 #. type: =item
7316 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:265
7317 msgid "C<AUG_SAVE_NOOP> = 16"
7318 msgstr ""
7319
7320 # type: textblock
7321 #. type: textblock
7322 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:267
7323 msgid "Make save a no-op, just record what would have been changed."
7324 msgstr ""
7325
7326 # type: =item
7327 #. type: =item
7328 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:269
7329 msgid "C<AUG_NO_LOAD> = 32"
7330 msgstr ""
7331
7332 # type: textblock
7333 #. type: textblock
7334 #: ../src/guestfs-actions.pod:408
7335 msgid "Do not load the tree in C<guestfs_aug_init>."
7336 msgstr ""
7337
7338 # type: textblock
7339 #. type: textblock
7340 #: ../src/guestfs-actions.pod:412
7341 msgid "To close the handle, you can call C<guestfs_aug_close>."
7342 msgstr ""
7343
7344 # type: textblock
7345 #. type: textblock
7346 #: ../src/guestfs-actions.pod:414 ../fish/guestfish-actions.pod:277
7347 msgid "To find out more about Augeas, see L<http://augeas.net/>."
7348 msgstr ""
7349
7350 # type: =head2
7351 #. type: =head2
7352 #: ../src/guestfs-actions.pod:420
7353 msgid "guestfs_aug_insert"
7354 msgstr ""
7355
7356 # type: verbatim
7357 #. type: verbatim
7358 #: ../src/guestfs-actions.pod:422
7359 #, no-wrap
7360 msgid ""
7361 " int\n"
7362 " guestfs_aug_insert (guestfs_h *g,\n"
7363 "                     const char *augpath,\n"
7364 "                     const char *label,\n"
7365 "                     int before);\n"
7366 "\n"
7367 msgstr ""
7368
7369 # type: textblock
7370 #. type: textblock
7371 #: ../src/guestfs-actions.pod:428 ../fish/guestfish-actions.pod:283
7372 msgid ""
7373 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
7374 "or after C<path> (depending on the boolean flag C<before>)."
7375 msgstr ""
7376
7377 # type: textblock
7378 #. type: textblock
7379 #: ../src/guestfs-actions.pod:432 ../fish/guestfish-actions.pod:287
7380 msgid ""
7381 "C<path> must match exactly one existing node in the tree, and C<label> must "
7382 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
7383 msgstr ""
7384
7385 # type: =head2
7386 #. type: =head2
7387 #: ../src/guestfs-actions.pod:440
7388 msgid "guestfs_aug_load"
7389 msgstr ""
7390
7391 # type: verbatim
7392 #. type: verbatim
7393 #: ../src/guestfs-actions.pod:442
7394 #, no-wrap
7395 msgid ""
7396 " int\n"
7397 " guestfs_aug_load (guestfs_h *g);\n"
7398 "\n"
7399 msgstr ""
7400
7401 # type: textblock
7402 #. type: textblock
7403 #: ../src/guestfs-actions.pod:445 ../fish/guestfish-actions.pod:295
7404 msgid "Load files into the tree."
7405 msgstr ""
7406
7407 # type: textblock
7408 #. type: textblock
7409 #: ../src/guestfs-actions.pod:447 ../fish/guestfish-actions.pod:297
7410 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
7411 msgstr ""
7412
7413 # type: =head2
7414 #. type: =head2
7415 #: ../src/guestfs-actions.pod:454
7416 msgid "guestfs_aug_ls"
7417 msgstr ""
7418
7419 # type: verbatim
7420 #. type: verbatim
7421 #: ../src/guestfs-actions.pod:456
7422 #, no-wrap
7423 msgid ""
7424 " char **\n"
7425 " guestfs_aug_ls (guestfs_h *g,\n"
7426 "                 const char *augpath);\n"
7427 "\n"
7428 msgstr ""
7429
7430 # type: textblock
7431 #. type: textblock
7432 #: ../src/guestfs-actions.pod:460
7433 msgid ""
7434 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
7435 "sorting the resulting nodes into alphabetical order."
7436 msgstr ""
7437
7438 # type: textblock
7439 #. type: textblock
7440 #: ../src/guestfs-actions.pod:463 ../src/guestfs-actions.pod:479
7441 #: ../src/guestfs-actions.pod:625 ../src/guestfs-actions.pod:1073
7442 #: ../src/guestfs-actions.pod:1369 ../src/guestfs-actions.pod:1388
7443 #: ../src/guestfs-actions.pod:1491 ../src/guestfs-actions.pod:1510
7444 #: ../src/guestfs-actions.pod:1756 ../src/guestfs-actions.pod:2198
7445 #: ../src/guestfs-actions.pod:2214 ../src/guestfs-actions.pod:2233
7446 #: ../src/guestfs-actions.pod:2276 ../src/guestfs-actions.pod:2300
7447 #: ../src/guestfs-actions.pod:2371 ../src/guestfs-actions.pod:2420
7448 #: ../src/guestfs-actions.pod:2687 ../src/guestfs-actions.pod:2978
7449 #: ../src/guestfs-actions.pod:3267 ../src/guestfs-actions.pod:3557
7450 #: ../src/guestfs-actions.pod:3619 ../src/guestfs-actions.pod:3724
7451 #: ../src/guestfs-actions.pod:4129 ../src/guestfs-actions.pod:4834
7452 #: ../src/guestfs-actions.pod:5363 ../src/guestfs-actions.pod:5489
7453 #: ../src/guestfs-actions.pod:5603 ../src/guestfs-actions.pod:6331
7454 #: ../src/guestfs-actions.pod:6392 ../src/guestfs-actions.pod:6447
7455 #: ../src/guestfs-actions.pod:6593 ../src/guestfs-actions.pod:6617
7456 #: ../src/guestfs-actions.pod:7099 ../src/guestfs-actions.pod:7119
7457 #: ../src/guestfs-actions.pod:7166 ../src/guestfs-actions.pod:7338
7458 #: ../src/guestfs-actions.pod:7357 ../src/guestfs-actions.pod:7442
7459 #: ../src/guestfs-actions.pod:7461 ../src/guestfs-actions.pod:7507
7460 #: ../src/guestfs-actions.pod:7526
7461 msgid ""
7462 "This function returns a NULL-terminated array of strings (like L<environ(3)"
7463 ">), or NULL if there was an error.  I<The caller must free the strings and "
7464 "the array after use>."
7465 msgstr ""
7466
7467 # type: textblock
7468 #. type: textblock
7469 #: ../src/guestfs-actions.pod:467 ../src/guestfs-actions.pod:998
7470 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:1426
7471 #: ../src/guestfs-actions.pod:3345 ../src/guestfs-actions.pod:3376
7472 #: ../src/guestfs-actions.pod:3970 ../src/guestfs-actions.pod:4020
7473 #: ../src/guestfs-actions.pod:4207 ../src/guestfs-actions.pod:4240
7474 #: ../src/guestfs-actions.pod:4403 ../src/guestfs-actions.pod:4838
7475 #: ../src/guestfs-actions.pod:5304 ../src/guestfs-actions.pod:5699
7476 #: ../src/guestfs-actions.pod:5713 ../src/guestfs-actions.pod:5725
7477 #: ../src/guestfs-actions.pod:6172 ../src/guestfs-actions.pod:6831
7478 #: ../src/guestfs-actions.pod:6844 ../src/guestfs-actions.pod:7083
7479 #: ../src/guestfs-actions.pod:7326
7480 msgid "(Added in 0.8)"
7481 msgstr ""
7482
7483 # type: =head2
7484 #. type: =head2
7485 #: ../src/guestfs-actions.pod:469
7486 msgid "guestfs_aug_match"
7487 msgstr ""
7488
7489 # type: verbatim
7490 #. type: verbatim
7491 #: ../src/guestfs-actions.pod:471
7492 #, no-wrap
7493 msgid ""
7494 " char **\n"
7495 " guestfs_aug_match (guestfs_h *g,\n"
7496 "                    const char *augpath);\n"
7497 "\n"
7498 msgstr ""
7499
7500 # type: textblock
7501 #. type: textblock
7502 #: ../src/guestfs-actions.pod:475 ../fish/guestfish-actions.pod:311
7503 msgid ""
7504 "Returns a list of paths which match the path expression C<path>.  The "
7505 "returned paths are sufficiently qualified so that they match exactly one "
7506 "node in the current tree."
7507 msgstr ""
7508
7509 # type: =head2
7510 #. type: =head2
7511 #: ../src/guestfs-actions.pod:485
7512 msgid "guestfs_aug_mv"
7513 msgstr ""
7514
7515 # type: verbatim
7516 #. type: verbatim
7517 #: ../src/guestfs-actions.pod:487
7518 #, no-wrap
7519 msgid ""
7520 " int\n"
7521 " guestfs_aug_mv (guestfs_h *g,\n"
7522 "                 const char *src,\n"
7523 "                 const char *dest);\n"
7524 "\n"
7525 msgstr ""
7526
7527 # type: textblock
7528 #. type: textblock
7529 #: ../src/guestfs-actions.pod:492 ../fish/guestfish-actions.pod:319
7530 msgid ""
7531 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
7532 "C<dest> is overwritten if it exists."
7533 msgstr ""
7534
7535 # type: =head2
7536 #. type: =head2
7537 #: ../src/guestfs-actions.pod:499
7538 msgid "guestfs_aug_rm"
7539 msgstr ""
7540
7541 # type: verbatim
7542 #. type: verbatim
7543 #: ../src/guestfs-actions.pod:501
7544 #, no-wrap
7545 msgid ""
7546 " int\n"
7547 " guestfs_aug_rm (guestfs_h *g,\n"
7548 "                 const char *augpath);\n"
7549 "\n"
7550 msgstr ""
7551
7552 # type: textblock
7553 #. type: textblock
7554 #: ../src/guestfs-actions.pod:505 ../fish/guestfish-actions.pod:326
7555 msgid "Remove C<path> and all of its children."
7556 msgstr ""
7557
7558 # type: textblock
7559 #. type: textblock
7560 #: ../src/guestfs-actions.pod:507 ../fish/guestfish-actions.pod:328
7561 msgid "On success this returns the number of entries which were removed."
7562 msgstr ""
7563
7564 # type: =head2
7565 #. type: =head2
7566 #: ../src/guestfs-actions.pod:513
7567 msgid "guestfs_aug_save"
7568 msgstr ""
7569
7570 # type: verbatim
7571 #. type: verbatim
7572 #: ../src/guestfs-actions.pod:515
7573 #, no-wrap
7574 msgid ""
7575 " int\n"
7576 " guestfs_aug_save (guestfs_h *g);\n"
7577 "\n"
7578 msgstr ""
7579
7580 # type: textblock
7581 #. type: textblock
7582 #: ../src/guestfs-actions.pod:518 ../fish/guestfish-actions.pod:334
7583 msgid "This writes all pending changes to disk."
7584 msgstr ""
7585
7586 # type: textblock
7587 #. type: textblock
7588 #: ../src/guestfs-actions.pod:520
7589 msgid ""
7590 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
7591 "are saved."
7592 msgstr ""
7593
7594 # type: =head2
7595 #. type: =head2
7596 #: ../src/guestfs-actions.pod:527
7597 msgid "guestfs_aug_set"
7598 msgstr ""
7599
7600 # type: verbatim
7601 #. type: verbatim
7602 #: ../src/guestfs-actions.pod:529
7603 #, no-wrap
7604 msgid ""
7605 " int\n"
7606 " guestfs_aug_set (guestfs_h *g,\n"
7607 "                  const char *augpath,\n"
7608 "                  const char *val);\n"
7609 "\n"
7610 msgstr ""
7611
7612 # type: textblock
7613 #. type: textblock
7614 #: ../src/guestfs-actions.pod:534 ../fish/guestfish-actions.pod:343
7615 msgid "Set the value associated with C<path> to C<val>."
7616 msgstr ""
7617
7618 # type: textblock
7619 #. type: textblock
7620 #: ../src/guestfs-actions.pod:536
7621 msgid ""
7622 "In the Augeas API, it is possible to clear a node by setting the value to "
7623 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
7624 "this call.  Instead you must use the C<guestfs_aug_clear> call."
7625 msgstr ""
7626
7627 # type: =head2
7628 #. type: =head2
7629 #: ../src/guestfs-actions.pod:545
7630 msgid "guestfs_available"
7631 msgstr ""
7632
7633 # type: verbatim
7634 #. type: verbatim
7635 #: ../src/guestfs-actions.pod:547
7636 #, no-wrap
7637 msgid ""
7638 " int\n"
7639 " guestfs_available (guestfs_h *g,\n"
7640 "                    char *const *groups);\n"
7641 "\n"
7642 msgstr ""
7643
7644 # type: textblock
7645 #. type: textblock
7646 #: ../src/guestfs-actions.pod:551 ../fish/guestfish-actions.pod:354
7647 msgid ""
7648 "This command is used to check the availability of some groups of "
7649 "functionality in the appliance, which not all builds of the libguestfs "
7650 "appliance will be able to provide."
7651 msgstr ""
7652
7653 # type: textblock
7654 #. type: textblock
7655 #: ../src/guestfs-actions.pod:555
7656 msgid ""
7657 "The libguestfs groups, and the functions that those groups correspond to, "
7658 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
7659 "runtime by calling C<guestfs_available_all_groups>."
7660 msgstr ""
7661
7662 # type: textblock
7663 #. type: textblock
7664 #: ../src/guestfs-actions.pod:560 ../fish/guestfish-actions.pod:363
7665 msgid ""
7666 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", \"augeas"
7667 "\"]> would check for the availability of the Linux inotify functions and "
7668 "Augeas (configuration file editing) functions."
7669 msgstr ""
7670
7671 # type: textblock
7672 #. type: textblock
7673 #: ../src/guestfs-actions.pod:565 ../fish/guestfish-actions.pod:368
7674 msgid "The command returns no error if I<all> requested groups are available."
7675 msgstr ""
7676
7677 # type: textblock
7678 #. type: textblock
7679 #: ../src/guestfs-actions.pod:567 ../fish/guestfish-actions.pod:370
7680 msgid ""
7681 "It fails with an error if one or more of the requested groups is unavailable "
7682 "in the appliance."
7683 msgstr ""
7684
7685 # type: textblock
7686 #. type: textblock
7687 #: ../src/guestfs-actions.pod:570 ../fish/guestfish-actions.pod:373
7688 msgid ""
7689 "If an unknown group name is included in the list of groups then an error is "
7690 "always returned."
7691 msgstr ""
7692
7693 # type: textblock
7694 #. type: textblock
7695 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:376
7696 msgid "I<Notes:>"
7697 msgstr ""
7698
7699 # type: textblock
7700 #. type: textblock
7701 #: ../src/guestfs-actions.pod:579
7702 msgid "You must call C<guestfs_launch> before calling this function."
7703 msgstr ""
7704
7705 # type: textblock
7706 #. type: textblock
7707 #: ../src/guestfs-actions.pod:581 ../fish/guestfish-actions.pod:384
7708 msgid ""
7709 "The reason is because we don't know what groups are supported by the "
7710 "appliance/daemon until it is running and can be queried."
7711 msgstr ""
7712
7713 # type: textblock
7714 #. type: textblock
7715 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:390
7716 msgid ""
7717 "If a group of functions is available, this does not necessarily mean that "
7718 "they will work.  You still have to check for errors when calling individual "
7719 "API functions even if they are available."
7720 msgstr ""
7721
7722 # type: textblock
7723 #. type: textblock
7724 #: ../src/guestfs-actions.pod:594 ../fish/guestfish-actions.pod:397
7725 msgid ""
7726 "It is usually the job of distro packagers to build complete functionality "
7727 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
7728 "with all requirements satisfied, will support everything."
7729 msgstr ""
7730
7731 # type: textblock
7732 #. type: textblock
7733 #: ../src/guestfs-actions.pod:601
7734 msgid ""
7735 "This call was added in version C<1.0.80>.  In previous versions of "
7736 "libguestfs all you could do would be to speculatively execute a command to "
7737 "find out if the daemon implemented it.  See also C<guestfs_version>."
7738 msgstr ""
7739
7740 # type: textblock
7741 #. type: textblock
7742 #: ../src/guestfs-actions.pod:610 ../src/guestfs-actions.pod:1171
7743 msgid "(Added in 1.0.80)"
7744 msgstr ""
7745
7746 # type: =head2
7747 #. type: =head2
7748 #: ../src/guestfs-actions.pod:612
7749 msgid "guestfs_available_all_groups"
7750 msgstr ""
7751
7752 # type: verbatim
7753 #. type: verbatim
7754 #: ../src/guestfs-actions.pod:614
7755 #, no-wrap
7756 msgid ""
7757 " char **\n"
7758 " guestfs_available_all_groups (guestfs_h *g);\n"
7759 "\n"
7760 msgstr ""
7761
7762 # type: textblock
7763 #. type: textblock
7764 #: ../src/guestfs-actions.pod:617
7765 msgid ""
7766 "This command returns a list of all optional groups that this daemon knows "
7767 "about.  Note this returns both supported and unsupported groups.  To find "
7768 "out which ones the daemon can actually support you have to call "
7769 "C<guestfs_available> on each member of the returned list."
7770 msgstr ""
7771
7772 # type: textblock
7773 #. type: textblock
7774 #: ../src/guestfs-actions.pod:623
7775 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
7776 msgstr ""
7777
7778 # type: textblock
7779 #. type: textblock
7780 #: ../src/guestfs-actions.pod:629
7781 msgid "(Added in 1.3.15)"
7782 msgstr ""
7783
7784 # type: =head2
7785 #. type: =head2
7786 #: ../src/guestfs-actions.pod:631
7787 msgid "guestfs_base64_in"
7788 msgstr ""
7789
7790 # type: verbatim
7791 #. type: verbatim
7792 #: ../src/guestfs-actions.pod:633
7793 #, no-wrap
7794 msgid ""
7795 " int\n"
7796 " guestfs_base64_in (guestfs_h *g,\n"
7797 "                    const char *base64file,\n"
7798 "                    const char *filename);\n"
7799 "\n"
7800 msgstr ""
7801
7802 # type: textblock
7803 #. type: textblock
7804 #: ../src/guestfs-actions.pod:638 ../fish/guestfish-actions.pod:427
7805 msgid ""
7806 "This command uploads base64-encoded data from C<base64file> to C<filename>."
7807 msgstr ""
7808
7809 # type: textblock
7810 #. type: textblock
7811 #: ../src/guestfs-actions.pod:643 ../src/guestfs-actions.pod:657
7812 msgid "(Added in 1.3.5)"
7813 msgstr ""
7814
7815 # type: =head2
7816 #. type: =head2
7817 #: ../src/guestfs-actions.pod:645
7818 msgid "guestfs_base64_out"
7819 msgstr ""
7820
7821 # type: verbatim
7822 #. type: verbatim
7823 #: ../src/guestfs-actions.pod:647
7824 #, no-wrap
7825 msgid ""
7826 " int\n"
7827 " guestfs_base64_out (guestfs_h *g,\n"
7828 "                     const char *filename,\n"
7829 "                     const char *base64file);\n"
7830 "\n"
7831 msgstr ""
7832
7833 # type: textblock
7834 #. type: textblock
7835 #: ../src/guestfs-actions.pod:652 ../fish/guestfish-actions.pod:436
7836 msgid ""
7837 "This command downloads the contents of C<filename>, writing it out to local "
7838 "file C<base64file> encoded as base64."
7839 msgstr ""
7840
7841 # type: =head2
7842 #. type: =head2
7843 #: ../src/guestfs-actions.pod:659
7844 msgid "guestfs_blockdev_flushbufs"
7845 msgstr ""
7846
7847 # type: verbatim
7848 #. type: verbatim
7849 #: ../src/guestfs-actions.pod:661
7850 #, no-wrap
7851 msgid ""
7852 " int\n"
7853 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
7854 "                             const char *device);\n"
7855 "\n"
7856 msgstr ""
7857
7858 # type: textblock
7859 #. type: textblock
7860 #: ../src/guestfs-actions.pod:665 ../fish/guestfish-actions.pod:445
7861 msgid ""
7862 "This tells the kernel to flush internal buffers associated with C<device>."
7863 msgstr ""
7864
7865 # type: textblock
7866 #. type: textblock
7867 #: ../src/guestfs-actions.pod:668 ../src/guestfs-actions.pod:685
7868 #: ../src/guestfs-actions.pod:700 ../src/guestfs-actions.pod:716
7869 #: ../src/guestfs-actions.pod:734 ../src/guestfs-actions.pod:753
7870 #: ../src/guestfs-actions.pod:767 ../src/guestfs-actions.pod:785
7871 #: ../src/guestfs-actions.pod:799 ../src/guestfs-actions.pod:813
7872 #: ../fish/guestfish-actions.pod:448 ../fish/guestfish-actions.pod:459
7873 #: ../fish/guestfish-actions.pod:468 ../fish/guestfish-actions.pod:478
7874 #: ../fish/guestfish-actions.pod:490 ../fish/guestfish-actions.pod:503
7875 #: ../fish/guestfish-actions.pod:511 ../fish/guestfish-actions.pod:522
7876 #: ../fish/guestfish-actions.pod:530 ../fish/guestfish-actions.pod:538
7877 msgid "This uses the L<blockdev(8)> command."
7878 msgstr ""
7879
7880 # type: textblock
7881 #. type: textblock
7882 #: ../src/guestfs-actions.pod:672 ../src/guestfs-actions.pod:689
7883 #: ../src/guestfs-actions.pod:704 ../src/guestfs-actions.pod:720
7884 #: ../src/guestfs-actions.pod:738 ../src/guestfs-actions.pod:757
7885 #: ../src/guestfs-actions.pod:771 ../src/guestfs-actions.pod:789
7886 #: ../src/guestfs-actions.pod:803 ../src/guestfs-actions.pod:817
7887 msgid "(Added in 0.9.3)"
7888 msgstr ""
7889
7890 # type: =head2
7891 #. type: =head2
7892 #: ../src/guestfs-actions.pod:674
7893 msgid "guestfs_blockdev_getbsz"
7894 msgstr ""
7895
7896 # type: verbatim
7897 #. type: verbatim
7898 #: ../src/guestfs-actions.pod:676
7899 #, no-wrap
7900 msgid ""
7901 " int\n"
7902 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
7903 "                          const char *device);\n"
7904 "\n"
7905 msgstr ""
7906
7907 # type: textblock
7908 #. type: textblock
7909 #: ../src/guestfs-actions.pod:680 ../fish/guestfish-actions.pod:454
7910 msgid "This returns the block size of a device."
7911 msgstr ""
7912
7913 # type: textblock
7914 #. type: textblock
7915 #: ../src/guestfs-actions.pod:682 ../src/guestfs-actions.pod:782
7916 #: ../fish/guestfish-actions.pod:456 ../fish/guestfish-actions.pod:519
7917 msgid ""
7918 "(Note this is different from both I<size in blocks> and I<filesystem block "
7919 "size>)."
7920 msgstr ""
7921
7922 # type: =head2
7923 #. type: =head2
7924 #: ../src/guestfs-actions.pod:691
7925 msgid "guestfs_blockdev_getro"
7926 msgstr ""
7927
7928 # type: verbatim
7929 #. type: verbatim
7930 #: ../src/guestfs-actions.pod:693
7931 #, no-wrap
7932 msgid ""
7933 " int\n"
7934 " guestfs_blockdev_getro (guestfs_h *g,\n"
7935 "                         const char *device);\n"
7936 "\n"
7937 msgstr ""
7938
7939 # type: textblock
7940 #. type: textblock
7941 #: ../src/guestfs-actions.pod:697 ../fish/guestfish-actions.pod:465
7942 msgid ""
7943 "Returns a boolean indicating if the block device is read-only (true if read-"
7944 "only, false if not)."
7945 msgstr ""
7946
7947 # type: textblock
7948 #. type: textblock
7949 #: ../src/guestfs-actions.pod:702 ../src/guestfs-actions.pod:1409
7950 #: ../src/guestfs-actions.pod:1424 ../src/guestfs-actions.pod:1911
7951 #: ../src/guestfs-actions.pod:1922 ../src/guestfs-actions.pod:1994
7952 #: ../src/guestfs-actions.pod:2049 ../src/guestfs-actions.pod:2064
7953 #: ../src/guestfs-actions.pod:2089 ../src/guestfs-actions.pod:2112
7954 #: ../src/guestfs-actions.pod:3085 ../src/guestfs-actions.pod:3102
7955 #: ../src/guestfs-actions.pod:3121 ../src/guestfs-actions.pod:3284
7956 #: ../src/guestfs-actions.pod:3298 ../src/guestfs-actions.pod:3313
7957 #: ../src/guestfs-actions.pod:3327 ../src/guestfs-actions.pod:3343
7958 #: ../src/guestfs-actions.pod:3358 ../src/guestfs-actions.pod:3374
7959 #: ../src/guestfs-actions.pod:3388 ../src/guestfs-actions.pod:3401
7960 #: ../src/guestfs-actions.pod:3415 ../src/guestfs-actions.pod:3430
7961 #: ../src/guestfs-actions.pod:3445 ../src/guestfs-actions.pod:4992
7962 msgid "This function returns a C truth value on success or -1 on error."
7963 msgstr ""
7964
7965 # type: =head2
7966 #. type: =head2
7967 #: ../src/guestfs-actions.pod:706
7968 msgid "guestfs_blockdev_getsize64"
7969 msgstr ""
7970
7971 # type: verbatim
7972 #. type: verbatim
7973 #: ../src/guestfs-actions.pod:708
7974 #, no-wrap
7975 msgid ""
7976 " int64_t\n"
7977 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7978 "                             const char *device);\n"
7979 "\n"
7980 msgstr ""
7981
7982 # type: textblock
7983 #. type: textblock
7984 #: ../src/guestfs-actions.pod:712 ../fish/guestfish-actions.pod:474
7985 msgid "This returns the size of the device in bytes."
7986 msgstr ""
7987
7988 # type: textblock
7989 #. type: textblock
7990 #: ../src/guestfs-actions.pod:714
7991 msgid "See also C<guestfs_blockdev_getsz>."
7992 msgstr ""
7993
7994 # type: =head2
7995 #. type: =head2
7996 #: ../src/guestfs-actions.pod:722
7997 msgid "guestfs_blockdev_getss"
7998 msgstr ""
7999
8000 # type: verbatim
8001 #. type: verbatim
8002 #: ../src/guestfs-actions.pod:724
8003 #, no-wrap
8004 msgid ""
8005 " int\n"
8006 " guestfs_blockdev_getss (guestfs_h *g,\n"
8007 "                         const char *device);\n"
8008 "\n"
8009 msgstr ""
8010
8011 # type: textblock
8012 #. type: textblock
8013 #: ../src/guestfs-actions.pod:728 ../fish/guestfish-actions.pod:484
8014 msgid ""
8015 "This returns the size of sectors on a block device.  Usually 512, but can be "
8016 "larger for modern devices."
8017 msgstr ""
8018
8019 # type: textblock
8020 #. type: textblock
8021 #: ../src/guestfs-actions.pod:731
8022 msgid ""
8023 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
8024 "that)."
8025 msgstr ""
8026
8027 # type: =head2
8028 #. type: =head2
8029 #: ../src/guestfs-actions.pod:740
8030 msgid "guestfs_blockdev_getsz"
8031 msgstr ""
8032
8033 # type: verbatim
8034 #. type: verbatim
8035 #: ../src/guestfs-actions.pod:742
8036 #, no-wrap
8037 msgid ""
8038 " int64_t\n"
8039 " guestfs_blockdev_getsz (guestfs_h *g,\n"
8040 "                         const char *device);\n"
8041 "\n"
8042 msgstr ""
8043
8044 # type: textblock
8045 #. type: textblock
8046 #: ../src/guestfs-actions.pod:746 ../fish/guestfish-actions.pod:496
8047 msgid ""
8048 "This returns the size of the device in units of 512-byte sectors (even if "
8049 "the sectorsize isn't 512 bytes ... weird)."
8050 msgstr ""
8051
8052 # type: textblock
8053 #. type: textblock
8054 #: ../src/guestfs-actions.pod:749
8055 msgid ""
8056 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
8057 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
8058 msgstr ""
8059
8060 # type: =head2
8061 #. type: =head2
8062 #: ../src/guestfs-actions.pod:759
8063 msgid "guestfs_blockdev_rereadpt"
8064 msgstr ""
8065
8066 # type: verbatim
8067 #. type: verbatim
8068 #: ../src/guestfs-actions.pod:761
8069 #, no-wrap
8070 msgid ""
8071 " int\n"
8072 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
8073 "                            const char *device);\n"
8074 "\n"
8075 msgstr ""
8076
8077 # type: textblock
8078 #. type: textblock
8079 #: ../src/guestfs-actions.pod:765 ../fish/guestfish-actions.pod:509
8080 msgid "Reread the partition table on C<device>."
8081 msgstr ""
8082
8083 # type: =head2
8084 #. type: =head2
8085 #: ../src/guestfs-actions.pod:773
8086 msgid "guestfs_blockdev_setbsz"
8087 msgstr ""
8088
8089 # type: verbatim
8090 #. type: verbatim
8091 #: ../src/guestfs-actions.pod:775
8092 #, no-wrap
8093 msgid ""
8094 " int\n"
8095 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
8096 "                          const char *device,\n"
8097 "                          int blocksize);\n"
8098 "\n"
8099 msgstr ""
8100
8101 # type: textblock
8102 #. type: textblock
8103 #: ../src/guestfs-actions.pod:780 ../fish/guestfish-actions.pod:517
8104 msgid "This sets the block size of a device."
8105 msgstr ""
8106
8107 # type: =head2
8108 #. type: =head2
8109 #: ../src/guestfs-actions.pod:791
8110 msgid "guestfs_blockdev_setro"
8111 msgstr ""
8112
8113 # type: verbatim
8114 #. type: verbatim
8115 #: ../src/guestfs-actions.pod:793
8116 #, no-wrap
8117 msgid ""
8118 " int\n"
8119 " guestfs_blockdev_setro (guestfs_h *g,\n"
8120 "                         const char *device);\n"
8121 "\n"
8122 msgstr ""
8123
8124 # type: textblock
8125 #. type: textblock
8126 #: ../src/guestfs-actions.pod:797 ../fish/guestfish-actions.pod:528
8127 msgid "Sets the block device named C<device> to read-only."
8128 msgstr ""
8129
8130 # type: =head2
8131 #. type: =head2
8132 #: ../src/guestfs-actions.pod:805
8133 msgid "guestfs_blockdev_setrw"
8134 msgstr ""
8135
8136 # type: verbatim
8137 #. type: verbatim
8138 #: ../src/guestfs-actions.pod:807
8139 #, no-wrap
8140 msgid ""
8141 " int\n"
8142 " guestfs_blockdev_setrw (guestfs_h *g,\n"
8143 "                         const char *device);\n"
8144 "\n"
8145 msgstr ""
8146
8147 # type: textblock
8148 #. type: textblock
8149 #: ../src/guestfs-actions.pod:811 ../fish/guestfish-actions.pod:536
8150 msgid "Sets the block device named C<device> to read-write."
8151 msgstr ""
8152
8153 # type: =head2
8154 #. type: =head2
8155 #: ../src/guestfs-actions.pod:819
8156 msgid "guestfs_case_sensitive_path"
8157 msgstr ""
8158
8159 # type: verbatim
8160 #. type: verbatim
8161 #: ../src/guestfs-actions.pod:821
8162 #, no-wrap
8163 msgid ""
8164 " char *\n"
8165 " guestfs_case_sensitive_path (guestfs_h *g,\n"
8166 "                              const char *path);\n"
8167 "\n"
8168 msgstr ""
8169
8170 # type: textblock
8171 #. type: textblock
8172 #: ../src/guestfs-actions.pod:825 ../fish/guestfish-actions.pod:544
8173 msgid ""
8174 "This can be used to resolve case insensitive paths on a filesystem which is "
8175 "case sensitive.  The use case is to resolve paths which you have read from "
8176 "Windows configuration files or the Windows Registry, to the true path."
8177 msgstr ""
8178
8179 # type: textblock
8180 #. type: textblock
8181 #: ../src/guestfs-actions.pod:830 ../fish/guestfish-actions.pod:549
8182 msgid ""
8183 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
8184 "(and probably others), which is that although the underlying filesystem is "
8185 "case-insensitive, the driver exports the filesystem to Linux as case-"
8186 "sensitive."
8187 msgstr ""
8188
8189 # type: textblock
8190 #. type: textblock
8191 #: ../src/guestfs-actions.pod:835 ../fish/guestfish-actions.pod:554
8192 msgid ""
8193 "One consequence of this is that special directories such as C<c:\\windows> "
8194 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
8195 "precise details of how they were created.  In Windows itself this would not "
8196 "be a problem."
8197 msgstr ""
8198
8199 # type: textblock
8200 #. type: textblock
8201 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:560
8202 msgid ""
8203 "Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-faq/"
8204 "#posixfilenames1>"
8205 msgstr ""
8206
8207 # type: textblock
8208 #. type: textblock
8209 #: ../src/guestfs-actions.pod:844 ../fish/guestfish-actions.pod:563
8210 msgid ""
8211 "This function resolves the true case of each element in the path and returns "
8212 "the case-sensitive path."
8213 msgstr ""
8214
8215 # type: textblock
8216 #. type: textblock
8217 #: ../src/guestfs-actions.pod:847
8218 msgid ""
8219 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return C<"
8220 "\"/WINDOWS/system32\"> (the exact return value would depend on details of "
8221 "how the directories were originally created under Windows)."
8222 msgstr ""
8223
8224 # type: textblock
8225 #. type: textblock
8226 #: ../src/guestfs-actions.pod:852 ../fish/guestfish-actions.pod:571
8227 msgid "I<Note>: This function does not handle drive names, backslashes etc."
8228 msgstr ""
8229
8230 # type: textblock
8231 #. type: textblock
8232 #: ../src/guestfs-actions.pod:855
8233 msgid "See also C<guestfs_realpath>."
8234 msgstr ""
8235
8236 # type: textblock
8237 #. type: textblock
8238 #: ../src/guestfs-actions.pod:860 ../src/guestfs-actions.pod:7011
8239 msgid "(Added in 1.0.75)"
8240 msgstr ""
8241
8242 # type: =head2
8243 #. type: =head2
8244 #: ../src/guestfs-actions.pod:862
8245 msgid "guestfs_cat"
8246 msgstr ""
8247
8248 # type: verbatim
8249 #. type: verbatim
8250 #: ../src/guestfs-actions.pod:864
8251 #, no-wrap
8252 msgid ""
8253 " char *\n"
8254 " guestfs_cat (guestfs_h *g,\n"
8255 "              const char *path);\n"
8256 "\n"
8257 msgstr ""
8258
8259 # type: textblock
8260 #. type: textblock
8261 #: ../src/guestfs-actions.pod:868 ../src/guestfs-actions.pod:5479
8262 #: ../fish/guestfish-actions.pod:580 ../fish/guestfish-actions.pod:3680
8263 msgid "Return the contents of the file named C<path>."
8264 msgstr ""
8265
8266 # type: textblock
8267 #. type: textblock
8268 #: ../src/guestfs-actions.pod:870
8269 msgid ""
8270 "Note that this function cannot correctly handle binary files (specifically, "
8271 "files containing C<\\0> character which is treated as end of string).  For "
8272 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
8273 "functions which have a more complex interface."
8274 msgstr ""
8275
8276 # type: textblock
8277 #. type: textblock
8278 #: ../src/guestfs-actions.pod:878 ../src/guestfs-actions.pod:1057
8279 #: ../src/guestfs-actions.pod:1077 ../src/guestfs-actions.pod:1373
8280 #: ../src/guestfs-actions.pod:1392 ../src/guestfs-actions.pod:1495
8281 #: ../src/guestfs-actions.pod:1514 ../src/guestfs-actions.pod:1760
8282 #: ../src/guestfs-actions.pod:2218 ../src/guestfs-actions.pod:2237
8283 #: ../src/guestfs-actions.pod:2280 ../src/guestfs-actions.pod:2304
8284 #: ../src/guestfs-actions.pod:2321 ../src/guestfs-actions.pod:2350
8285 #: ../src/guestfs-actions.pod:5261 ../src/guestfs-actions.pod:5287
8286 #: ../src/guestfs-actions.pod:5418 ../src/guestfs-actions.pod:5444
8287 #: ../src/guestfs-actions.pod:5468 ../src/guestfs-actions.pod:6396
8288 #: ../src/guestfs-actions.pod:6451 ../src/guestfs-actions.pod:6597
8289 #: ../src/guestfs-actions.pod:6621 ../src/guestfs-actions.pod:7290
8290 #: ../src/guestfs-actions.pod:7316 ../src/guestfs-actions.pod:7342
8291 #: ../src/guestfs-actions.pod:7361 ../src/guestfs-actions.pod:7446
8292 #: ../src/guestfs-actions.pod:7465 ../src/guestfs-actions.pod:7511
8293 #: ../src/guestfs-actions.pod:7530 ../fish/guestfish-actions.pod:587
8294 #: ../fish/guestfish-actions.pod:722 ../fish/guestfish-actions.pod:734
8295 #: ../fish/guestfish-actions.pod:910 ../fish/guestfish-actions.pod:920
8296 #: ../fish/guestfish-actions.pod:987 ../fish/guestfish-actions.pod:997
8297 #: ../fish/guestfish-actions.pod:1189 ../fish/guestfish-actions.pod:1490
8298 #: ../fish/guestfish-actions.pod:1500 ../fish/guestfish-actions.pod:1528
8299 #: ../fish/guestfish-actions.pod:1543 ../fish/guestfish-actions.pod:1553
8300 #: ../fish/guestfish-actions.pod:1572 ../fish/guestfish-actions.pod:3550
8301 #: ../fish/guestfish-actions.pod:3565 ../fish/guestfish-actions.pod:3641
8302 #: ../fish/guestfish-actions.pod:3658 ../fish/guestfish-actions.pod:3673
8303 #: ../fish/guestfish-actions.pod:4327 ../fish/guestfish-actions.pod:4373
8304 #: ../fish/guestfish-actions.pod:4458 ../fish/guestfish-actions.pod:4473
8305 #: ../fish/guestfish-actions.pod:4883 ../fish/guestfish-actions.pod:4901
8306 #: ../fish/guestfish-actions.pod:4918 ../fish/guestfish-actions.pod:4928
8307 #: ../fish/guestfish-actions.pod:4976 ../fish/guestfish-actions.pod:4986
8308 #: ../fish/guestfish-actions.pod:5015 ../fish/guestfish-actions.pod:5025
8309 msgid ""
8310 "Because of the message protocol, there is a transfer limit of somewhere "
8311 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
8312 msgstr ""
8313
8314 # type: textblock
8315 #. type: textblock
8316 #: ../src/guestfs-actions.pod:881 ../src/guestfs-actions.pod:3561
8317 #: ../src/guestfs-actions.pod:3623 ../src/guestfs-actions.pod:3640
8318 #: ../src/guestfs-actions.pod:3728 ../src/guestfs-actions.pod:4133
8319 #: ../src/guestfs-actions.pod:4147 ../src/guestfs-actions.pod:5367
8320 #: ../src/guestfs-actions.pod:5381 ../src/guestfs-actions.pod:7170
8321 #: ../src/guestfs-actions.pod:7184
8322 msgid "(Added in 0.4)"
8323 msgstr ""
8324
8325 # type: =head2
8326 #. type: =head2
8327 #: ../src/guestfs-actions.pod:883
8328 msgid "guestfs_checksum"
8329 msgstr ""
8330
8331 # type: verbatim
8332 #. type: verbatim
8333 #: ../src/guestfs-actions.pod:885
8334 #, no-wrap
8335 msgid ""
8336 " char *\n"
8337 " guestfs_checksum (guestfs_h *g,\n"
8338 "                   const char *csumtype,\n"
8339 "                   const char *path);\n"
8340 "\n"
8341 msgstr ""
8342
8343 # type: textblock
8344 #. type: textblock
8345 #: ../src/guestfs-actions.pod:890 ../fish/guestfish-actions.pod:594
8346 msgid ""
8347 "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
8348 msgstr ""
8349
8350 # type: textblock
8351 #. type: textblock
8352 #: ../src/guestfs-actions.pod:893 ../fish/guestfish-actions.pod:597
8353 msgid ""
8354 "The type of checksum to compute is given by the C<csumtype> parameter which "
8355 "must have one of the following values:"
8356 msgstr ""
8357
8358 # type: =item
8359 #. type: =item
8360 #: ../src/guestfs-actions.pod:898 ../fish/guestfish-actions.pod:602
8361 msgid "C<crc>"
8362 msgstr ""
8363
8364 # type: textblock
8365 #. type: textblock
8366 #: ../src/guestfs-actions.pod:900 ../fish/guestfish-actions.pod:604
8367 msgid ""
8368 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
8369 "C<cksum> command."
8370 msgstr ""
8371
8372 # type: =item
8373 #. type: =item
8374 #: ../src/guestfs-actions.pod:903 ../fish/guestfish-actions.pod:607
8375 msgid "C<md5>"
8376 msgstr ""
8377
8378 # type: textblock
8379 #. type: textblock
8380 #: ../src/guestfs-actions.pod:905 ../fish/guestfish-actions.pod:609
8381 msgid "Compute the MD5 hash (using the C<md5sum> program)."
8382 msgstr ""
8383
8384 # type: =item
8385 #. type: =item
8386 #: ../src/guestfs-actions.pod:907 ../fish/guestfish-actions.pod:611
8387 msgid "C<sha1>"
8388 msgstr ""
8389
8390 # type: textblock
8391 #. type: textblock
8392 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:613
8393 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
8394 msgstr ""
8395
8396 # type: =item
8397 #. type: =item
8398 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:615
8399 msgid "C<sha224>"
8400 msgstr ""
8401
8402 # type: textblock
8403 #. type: textblock
8404 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:617
8405 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
8406 msgstr ""
8407
8408 # type: =item
8409 #. type: =item
8410 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:619
8411 msgid "C<sha256>"
8412 msgstr ""
8413
8414 # type: textblock
8415 #. type: textblock
8416 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:621
8417 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
8418 msgstr ""
8419
8420 # type: =item
8421 #. type: =item
8422 #: ../src/guestfs-actions.pod:919 ../fish/guestfish-actions.pod:623
8423 msgid "C<sha384>"
8424 msgstr ""
8425
8426 # type: textblock
8427 #. type: textblock
8428 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:625
8429 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
8430 msgstr ""
8431
8432 # type: =item
8433 #. type: =item
8434 #: ../src/guestfs-actions.pod:923 ../fish/guestfish-actions.pod:627
8435 msgid "C<sha512>"
8436 msgstr ""
8437
8438 # type: textblock
8439 #. type: textblock
8440 #: ../src/guestfs-actions.pod:925 ../fish/guestfish-actions.pod:629
8441 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
8442 msgstr ""
8443
8444 # type: textblock
8445 #. type: textblock
8446 #: ../src/guestfs-actions.pod:929 ../fish/guestfish-actions.pod:633
8447 msgid "The checksum is returned as a printable string."
8448 msgstr ""
8449
8450 # type: textblock
8451 #. type: textblock
8452 #: ../src/guestfs-actions.pod:931
8453 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
8454 msgstr ""
8455
8456 # type: textblock
8457 #. type: textblock
8458 #: ../src/guestfs-actions.pod:933
8459 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
8460 msgstr ""
8461
8462 # type: textblock
8463 #. type: textblock
8464 #: ../src/guestfs-actions.pod:938 ../src/guestfs-actions.pod:1246
8465 #: ../src/guestfs-actions.pod:2080 ../src/guestfs-actions.pod:3300
8466 #: ../src/guestfs-actions.pod:3329 ../src/guestfs-actions.pod:3390
8467 #: ../src/guestfs-actions.pod:3417 ../src/guestfs-actions.pod:6867
8468 msgid "(Added in 1.0.2)"
8469 msgstr ""
8470
8471 # type: =head2
8472 #. type: =head2
8473 #: ../src/guestfs-actions.pod:940
8474 msgid "guestfs_checksum_device"
8475 msgstr ""
8476
8477 # type: verbatim
8478 #. type: verbatim
8479 #: ../src/guestfs-actions.pod:942
8480 #, no-wrap
8481 msgid ""
8482 " char *\n"
8483 " guestfs_checksum_device (guestfs_h *g,\n"
8484 "                          const char *csumtype,\n"
8485 "                          const char *device);\n"
8486 "\n"
8487 msgstr ""
8488
8489 # type: textblock
8490 #. type: textblock
8491 #: ../src/guestfs-actions.pod:947
8492 msgid ""
8493 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
8494 "device named C<device>.  For the types of checksums supported see the "
8495 "C<guestfs_checksum> command."
8496 msgstr ""
8497
8498 # type: textblock
8499 #. type: textblock
8500 #: ../src/guestfs-actions.pod:954 ../src/guestfs-actions.pod:4898
8501 #: ../src/guestfs-actions.pod:4957 ../src/guestfs-actions.pod:4994
8502 #: ../src/guestfs-actions.pod:5012 ../src/guestfs-actions.pod:5188
8503 #: ../src/guestfs-actions.pod:6776 ../src/guestfs-actions.pod:6790
8504 #: ../src/guestfs-actions.pod:7196
8505 msgid "(Added in 1.3.2)"
8506 msgstr ""
8507
8508 # type: =head2
8509 #. type: =head2
8510 #: ../src/guestfs-actions.pod:956
8511 msgid "guestfs_checksums_out"
8512 msgstr ""
8513
8514 # type: verbatim
8515 #. type: verbatim
8516 #: ../src/guestfs-actions.pod:958
8517 #, no-wrap
8518 msgid ""
8519 " int\n"
8520 " guestfs_checksums_out (guestfs_h *g,\n"
8521 "                        const char *csumtype,\n"
8522 "                        const char *directory,\n"
8523 "                        const char *sumsfile);\n"
8524 "\n"
8525 msgstr ""
8526
8527 # type: textblock
8528 #. type: textblock
8529 #: ../src/guestfs-actions.pod:964 ../fish/guestfish-actions.pod:651
8530 msgid ""
8531 "This command computes the checksums of all regular files in C<directory> and "
8532 "then emits a list of those checksums to the local output file C<sumsfile>."
8533 msgstr ""
8534
8535 # type: textblock
8536 #. type: textblock
8537 #: ../src/guestfs-actions.pod:968 ../fish/guestfish-actions.pod:655
8538 msgid ""
8539 "This can be used for verifying the integrity of a virtual machine.  However "
8540 "to be properly secure you should pay attention to the output of the checksum "
8541 "command (it uses the ones from GNU coreutils).  In particular when the "
8542 "filename is not printable, coreutils uses a special backslash syntax.  For "
8543 "more information, see the GNU coreutils info file."
8544 msgstr ""
8545
8546 # type: textblock
8547 #. type: textblock
8548 #: ../src/guestfs-actions.pod:978
8549 msgid "(Added in 1.3.7)"
8550 msgstr ""
8551
8552 # type: =head2
8553 #. type: =head2
8554 #: ../src/guestfs-actions.pod:980
8555 msgid "guestfs_chmod"
8556 msgstr ""
8557
8558 # type: verbatim
8559 #. type: verbatim
8560 #: ../src/guestfs-actions.pod:982
8561 #, no-wrap
8562 msgid ""
8563 " int\n"
8564 " guestfs_chmod (guestfs_h *g,\n"
8565 "                int mode,\n"
8566 "                const char *path);\n"
8567 "\n"
8568 msgstr ""
8569
8570 # type: textblock
8571 #. type: textblock
8572 #: ../src/guestfs-actions.pod:987 ../fish/guestfish-actions.pod:669
8573 msgid ""
8574 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
8575 "supported."
8576 msgstr ""
8577
8578 # type: textblock
8579 #. type: textblock
8580 #: ../src/guestfs-actions.pod:990 ../fish/guestfish-actions.pod:672
8581 msgid ""
8582 "I<Note>: When using this command from guestfish, C<mode> by default would be "
8583 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
8584 "C<700>."
8585 msgstr ""
8586
8587 # type: textblock
8588 #. type: textblock
8589 #: ../src/guestfs-actions.pod:994 ../src/guestfs-actions.pod:4384
8590 #: ../src/guestfs-actions.pod:4581 ../src/guestfs-actions.pod:4600
8591 #: ../src/guestfs-actions.pod:4619 ../fish/guestfish-actions.pod:676
8592 #: ../fish/guestfish-actions.pod:2980 ../fish/guestfish-actions.pod:3109
8593 #: ../fish/guestfish-actions.pod:3119 ../fish/guestfish-actions.pod:3129
8594 msgid "The mode actually set is affected by the umask."
8595 msgstr ""
8596
8597 # type: =head2
8598 #. type: =head2
8599 #: ../src/guestfs-actions.pod:1000
8600 msgid "guestfs_chown"
8601 msgstr ""
8602
8603 # type: verbatim
8604 #. type: verbatim
8605 #: ../src/guestfs-actions.pod:1002
8606 #, no-wrap
8607 msgid ""
8608 " int\n"
8609 " guestfs_chown (guestfs_h *g,\n"
8610 "                int owner,\n"
8611 "                int group,\n"
8612 "                const char *path);\n"
8613 "\n"
8614 msgstr ""
8615
8616 # type: textblock
8617 #. type: textblock
8618 #: ../src/guestfs-actions.pod:1008 ../fish/guestfish-actions.pod:682
8619 msgid "Change the file owner to C<owner> and group to C<group>."
8620 msgstr ""
8621
8622 # type: textblock
8623 #. type: textblock
8624 #: ../src/guestfs-actions.pod:1010 ../src/guestfs-actions.pod:3492
8625 #: ../fish/guestfish-actions.pod:684 ../fish/guestfish-actions.pod:2438
8626 msgid ""
8627 "Only numeric uid and gid are supported.  If you want to use names, you will "
8628 "need to locate and parse the password file yourself (Augeas support makes "
8629 "this relatively easy)."
8630 msgstr ""
8631
8632 # type: =head2
8633 #. type: =head2
8634 #: ../src/guestfs-actions.pod:1018
8635 msgid "guestfs_command"
8636 msgstr ""
8637
8638 # type: verbatim
8639 #. type: verbatim
8640 #: ../src/guestfs-actions.pod:1020
8641 #, no-wrap
8642 msgid ""
8643 " char *\n"
8644 " guestfs_command (guestfs_h *g,\n"
8645 "                  char *const *arguments);\n"
8646 "\n"
8647 msgstr ""
8648
8649 # type: textblock
8650 #. type: textblock
8651 #: ../src/guestfs-actions.pod:1024 ../fish/guestfish-actions.pod:692
8652 msgid ""
8653 "This call runs a command from the guest filesystem.  The filesystem must be "
8654 "mounted, and must contain a compatible operating system (ie. something "
8655 "Linux, with the same or compatible processor architecture)."
8656 msgstr ""
8657
8658 # type: textblock
8659 #. type: textblock
8660 #: ../src/guestfs-actions.pod:1029
8661 msgid ""
8662 "The single parameter is an argv-style list of arguments.  The first element "
8663 "is the name of the program to run.  Subsequent elements are parameters.  The "
8664 "list must be non-empty (ie. must contain a program name).  Note that the "
8665 "command runs directly, and is I<not> invoked via the shell (see "
8666 "C<guestfs_sh>)."
8667 msgstr ""
8668
8669 # type: textblock
8670 #. type: textblock
8671 #: ../src/guestfs-actions.pod:1036 ../fish/guestfish-actions.pod:704
8672 msgid "The return value is anything printed to I<stdout> by the command."
8673 msgstr ""
8674
8675 # type: textblock
8676 #. type: textblock
8677 #: ../src/guestfs-actions.pod:1039 ../fish/guestfish-actions.pod:707
8678 msgid ""
8679 "If the command returns a non-zero exit status, then this function returns an "
8680 "error message.  The error message string is the content of I<stderr> from "
8681 "the command."
8682 msgstr ""
8683
8684 # type: textblock
8685 #. type: textblock
8686 #: ../src/guestfs-actions.pod:1043 ../fish/guestfish-actions.pod:711
8687 msgid ""
8688 "The C<$PATH> environment variable will contain at least C</usr/bin> and C</"
8689 "bin>.  If you require a program from another location, you should provide "
8690 "the full path in the first parameter."
8691 msgstr ""
8692
8693 # type: textblock
8694 #. type: textblock
8695 #: ../src/guestfs-actions.pod:1048 ../fish/guestfish-actions.pod:716
8696 msgid ""
8697 "Shared libraries and data files required by the program must be available on "
8698 "filesystems which are mounted in the correct places.  It is the caller's "
8699 "responsibility to ensure all filesystems that are needed are mounted at the "
8700 "right locations."
8701 msgstr ""
8702
8703 # type: textblock
8704 #. type: textblock
8705 #: ../src/guestfs-actions.pod:1060 ../src/guestfs-actions.pod:1080
8706 #: ../src/guestfs-actions.pod:1545
8707 msgid "(Added in 0.9.1)"
8708 msgstr ""
8709
8710 # type: =head2
8711 #. type: =head2
8712 #: ../src/guestfs-actions.pod:1062
8713 msgid "guestfs_command_lines"
8714 msgstr ""
8715
8716 # type: verbatim
8717 #. type: verbatim
8718 #: ../src/guestfs-actions.pod:1064
8719 #, no-wrap
8720 msgid ""
8721 " char **\n"
8722 " guestfs_command_lines (guestfs_h *g,\n"
8723 "                        char *const *arguments);\n"
8724 "\n"
8725 msgstr ""
8726
8727 # type: textblock
8728 #. type: textblock
8729 #: ../src/guestfs-actions.pod:1068
8730 msgid ""
8731 "This is the same as C<guestfs_command>, but splits the result into a list of "
8732 "lines."
8733 msgstr ""
8734
8735 # type: textblock
8736 #. type: textblock
8737 #: ../src/guestfs-actions.pod:1071
8738 msgid "See also: C<guestfs_sh_lines>"
8739 msgstr ""
8740
8741 # type: =head2
8742 #. type: =head2
8743 #: ../src/guestfs-actions.pod:1082
8744 msgid "guestfs_config"
8745 msgstr ""
8746
8747 # type: verbatim
8748 #. type: verbatim
8749 #: ../src/guestfs-actions.pod:1084
8750 #, no-wrap
8751 msgid ""
8752 " int\n"
8753 " guestfs_config (guestfs_h *g,\n"
8754 "                 const char *qemuparam,\n"
8755 "                 const char *qemuvalue);\n"
8756 "\n"
8757 msgstr ""
8758
8759 #. type: textblock
8760 #: ../src/guestfs-actions.pod:1089 ../fish/guestfish-actions.pod:741
8761 msgid ""
8762 "This can be used to add arbitrary qemu command line parameters of the form "
8763 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
8764 "setting some parameters which would interfere with parameters that we use."
8765 msgstr ""
8766
8767 # type: textblock
8768 #. type: textblock
8769 #: ../src/guestfs-actions.pod:1094 ../fish/guestfish-actions.pod:746
8770 msgid "The first character of C<param> string must be a C<-> (dash)."
8771 msgstr ""
8772
8773 # type: textblock
8774 #. type: textblock
8775 #: ../src/guestfs-actions.pod:1096 ../fish/guestfish-actions.pod:748
8776 msgid "C<value> can be NULL."
8777 msgstr ""
8778
8779 # type: =head2
8780 #. type: =head2
8781 #: ../src/guestfs-actions.pod:1102
8782 msgid "guestfs_copy_size"
8783 msgstr ""
8784
8785 # type: verbatim
8786 #. type: verbatim
8787 #: ../src/guestfs-actions.pod:1104
8788 #, no-wrap
8789 msgid ""
8790 " int\n"
8791 " guestfs_copy_size (guestfs_h *g,\n"
8792 "                    const char *src,\n"
8793 "                    const char *dest,\n"
8794 "                    int64_t size);\n"
8795 "\n"
8796 msgstr ""
8797
8798 # type: textblock
8799 #. type: textblock
8800 #: ../src/guestfs-actions.pod:1110 ../fish/guestfish-actions.pod:754
8801 msgid ""
8802 "This command copies exactly C<size> bytes from one source device or file "
8803 "C<src> to another destination device or file C<dest>."
8804 msgstr ""
8805
8806 # type: textblock
8807 #. type: textblock
8808 #: ../src/guestfs-actions.pod:1113 ../fish/guestfish-actions.pod:757
8809 msgid ""
8810 "Note this will fail if the source is too short or if the destination is not "
8811 "large enough."
8812 msgstr ""
8813
8814 #. type: textblock
8815 #: ../src/guestfs-actions.pod:1118 ../src/guestfs-actions.pod:1241
8816 #: ../src/guestfs-actions.pod:1272 ../src/guestfs-actions.pod:1317
8817 #: ../src/guestfs-actions.pod:1694 ../src/guestfs-actions.pod:1716
8818 #: ../src/guestfs-actions.pod:3473 ../src/guestfs-actions.pod:6862
8819 #: ../src/guestfs-actions.pod:6896 ../src/guestfs-actions.pod:7382
8820 #: ../src/guestfs-actions.pod:7401
8821 msgid ""
8822 "This long-running command can generate progress notification messages so "
8823 "that the caller can display a progress bar or indicator.  To receive these "
8824 "messages, the caller must register a progress event callback.  See L<guestfs"
8825 "(3)/GUESTFS_EVENT_PROGRESS>."
8826 msgstr ""
8827
8828 # type: textblock
8829 #. type: textblock
8830 #: ../src/guestfs-actions.pod:1123 ../src/guestfs-actions.pod:4160
8831 #: ../src/guestfs-actions.pod:5394 ../src/guestfs-actions.pod:7103
8832 #: ../src/guestfs-actions.pod:7123 ../src/guestfs-actions.pod:7209
8833 msgid "(Added in 1.0.87)"
8834 msgstr ""
8835
8836 # type: =head2
8837 #. type: =head2
8838 #: ../src/guestfs-actions.pod:1125
8839 msgid "guestfs_cp"
8840 msgstr ""
8841
8842 # type: verbatim
8843 #. type: verbatim
8844 #: ../src/guestfs-actions.pod:1127
8845 #, no-wrap
8846 msgid ""
8847 " int\n"
8848 " guestfs_cp (guestfs_h *g,\n"
8849 "             const char *src,\n"
8850 "             const char *dest);\n"
8851 "\n"
8852 msgstr ""
8853
8854 # type: textblock
8855 #. type: textblock
8856 #: ../src/guestfs-actions.pod:1132 ../fish/guestfish-actions.pod:764
8857 msgid ""
8858 "This copies a file from C<src> to C<dest> where C<dest> is either a "
8859 "destination filename or destination directory."
8860 msgstr ""
8861
8862 # type: textblock
8863 #. type: textblock
8864 #: ../src/guestfs-actions.pod:1137 ../src/guestfs-actions.pod:1151
8865 #: ../src/guestfs-actions.pod:1223 ../src/guestfs-actions.pod:1297
8866 #: ../src/guestfs-actions.pod:1411 ../src/guestfs-actions.pod:4852
8867 #: ../src/guestfs-actions.pod:5238
8868 msgid "(Added in 1.0.18)"
8869 msgstr ""
8870
8871 # type: =head2
8872 #. type: =head2
8873 #: ../src/guestfs-actions.pod:1139
8874 msgid "guestfs_cp_a"
8875 msgstr ""
8876
8877 # type: verbatim
8878 #. type: verbatim
8879 #: ../src/guestfs-actions.pod:1141
8880 #, no-wrap
8881 msgid ""
8882 " int\n"
8883 " guestfs_cp_a (guestfs_h *g,\n"
8884 "               const char *src,\n"
8885 "               const char *dest);\n"
8886 "\n"
8887 msgstr ""
8888
8889 # type: textblock
8890 #. type: textblock
8891 #: ../src/guestfs-actions.pod:1146 ../fish/guestfish-actions.pod:771
8892 msgid ""
8893 "This copies a file or directory from C<src> to C<dest> recursively using the "
8894 "C<cp -a> command."
8895 msgstr ""
8896
8897 # type: =head2
8898 #. type: =head2
8899 #: ../src/guestfs-actions.pod:1153
8900 msgid "guestfs_dd"
8901 msgstr ""
8902
8903 # type: verbatim
8904 #. type: verbatim
8905 #: ../src/guestfs-actions.pod:1155
8906 #, no-wrap
8907 msgid ""
8908 " int\n"
8909 " guestfs_dd (guestfs_h *g,\n"
8910 "             const char *src,\n"
8911 "             const char *dest);\n"
8912 "\n"
8913 msgstr ""
8914
8915 # type: textblock
8916 #. type: textblock
8917 #: ../src/guestfs-actions.pod:1160 ../fish/guestfish-actions.pod:778
8918 msgid ""
8919 "This command copies from one source device or file C<src> to another "
8920 "destination device or file C<dest>.  Normally you would use this to copy to "
8921 "or from a device or partition, for example to duplicate a filesystem."
8922 msgstr ""
8923
8924 # type: textblock
8925 #. type: textblock
8926 #: ../src/guestfs-actions.pod:1165
8927 msgid ""
8928 "If the destination is a device, it must be as large or larger than the "
8929 "source file or device, otherwise the copy will fail.  This command cannot do "
8930 "partial copies (see C<guestfs_copy_size>)."
8931 msgstr ""
8932
8933 # type: =head2
8934 #. type: =head2
8935 #: ../src/guestfs-actions.pod:1173
8936 msgid "guestfs_df"
8937 msgstr ""
8938
8939 # type: verbatim
8940 #. type: verbatim
8941 #: ../src/guestfs-actions.pod:1175
8942 #, no-wrap
8943 msgid ""
8944 " char *\n"
8945 " guestfs_df (guestfs_h *g);\n"
8946 "\n"
8947 msgstr ""
8948
8949 # type: textblock
8950 #. type: textblock
8951 #: ../src/guestfs-actions.pod:1178 ../fish/guestfish-actions.pod:791
8952 msgid "This command runs the C<df> command to report disk space used."
8953 msgstr ""
8954
8955 # type: textblock
8956 #. type: textblock
8957 #: ../src/guestfs-actions.pod:1180 ../src/guestfs-actions.pod:1197
8958 msgid ""
8959 "This command is mostly useful for interactive sessions.  It is I<not> "
8960 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
8961 "from programs."
8962 msgstr ""
8963
8964 # type: textblock
8965 #. type: textblock
8966 #: ../src/guestfs-actions.pod:1187 ../src/guestfs-actions.pod:1204
8967 #: ../src/guestfs-actions.pod:1322 ../src/guestfs-actions.pod:2283
8968 #: ../src/guestfs-actions.pod:2307 ../src/guestfs-actions.pod:2375
8969 #: ../src/guestfs-actions.pod:4270 ../src/guestfs-actions.pod:4752
8970 #: ../src/guestfs-actions.pod:6600 ../src/guestfs-actions.pod:6624
8971 #: ../src/guestfs-actions.pod:7249 ../src/guestfs-actions.pod:7262
8972 #: ../src/guestfs-actions.pod:7275
8973 msgid "(Added in 1.0.54)"
8974 msgstr ""
8975
8976 # type: =head2
8977 #. type: =head2
8978 #: ../src/guestfs-actions.pod:1189
8979 msgid "guestfs_df_h"
8980 msgstr ""
8981
8982 # type: verbatim
8983 #. type: verbatim
8984 #: ../src/guestfs-actions.pod:1191
8985 #, no-wrap
8986 msgid ""
8987 " char *\n"
8988 " guestfs_df_h (guestfs_h *g);\n"
8989 "\n"
8990 msgstr ""
8991
8992 # type: textblock
8993 #. type: textblock
8994 #: ../src/guestfs-actions.pod:1194 ../fish/guestfish-actions.pod:801
8995 msgid ""
8996 "This command runs the C<df -h> command to report disk space used in human-"
8997 "readable format."
8998 msgstr ""
8999
9000 # type: =head2
9001 #. type: =head2
9002 #: ../src/guestfs-actions.pod:1206
9003 msgid "guestfs_dmesg"
9004 msgstr ""
9005
9006 # type: verbatim
9007 #. type: verbatim
9008 #: ../src/guestfs-actions.pod:1208
9009 #, no-wrap
9010 msgid ""
9011 " char *\n"
9012 " guestfs_dmesg (guestfs_h *g);\n"
9013 "\n"
9014 msgstr ""
9015
9016 # type: textblock
9017 #. type: textblock
9018 #: ../src/guestfs-actions.pod:1211 ../fish/guestfish-actions.pod:812
9019 msgid ""
9020 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
9021 "This is sometimes useful for extended debugging of problems."
9022 msgstr ""
9023
9024 # type: textblock
9025 #. type: textblock
9026 #: ../src/guestfs-actions.pod:1215
9027 msgid ""
9028 "Another way to get the same information is to enable verbose messages with "
9029 "C<guestfs_set_verbose> or by setting the environment variable "
9030 "C<LIBGUESTFS_DEBUG=1> before running the program."
9031 msgstr ""
9032
9033 # type: =head2
9034 #. type: =head2
9035 #: ../src/guestfs-actions.pod:1225
9036 msgid "guestfs_download"
9037 msgstr ""
9038
9039 # type: verbatim
9040 #. type: verbatim
9041 #: ../src/guestfs-actions.pod:1227
9042 #, no-wrap
9043 msgid ""
9044 " int\n"
9045 " guestfs_download (guestfs_h *g,\n"
9046 "                   const char *remotefilename,\n"
9047 "                   const char *filename);\n"
9048 "\n"
9049 msgstr ""
9050
9051 # type: textblock
9052 #. type: textblock
9053 #: ../src/guestfs-actions.pod:1232 ../src/guestfs-actions.pod:1257
9054 #: ../fish/guestfish-actions.pod:825 ../fish/guestfish-actions.pod:838
9055 msgid ""
9056 "Download file C<remotefilename> and save it as C<filename> on the local "
9057 "machine."
9058 msgstr ""
9059
9060 # type: textblock
9061 #. type: textblock
9062 #: ../src/guestfs-actions.pod:1235 ../src/guestfs-actions.pod:6856
9063 #: ../fish/guestfish-actions.pod:828 ../fish/guestfish-actions.pod:4631
9064 msgid "C<filename> can also be a named pipe."
9065 msgstr ""
9066
9067 # type: textblock
9068 #. type: textblock
9069 #: ../src/guestfs-actions.pod:1237
9070 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
9071 msgstr ""
9072
9073 # type: =head2
9074 #. type: =head2
9075 #: ../src/guestfs-actions.pod:1248
9076 msgid "guestfs_download_offset"
9077 msgstr ""
9078
9079 # type: verbatim
9080 #. type: verbatim
9081 #: ../src/guestfs-actions.pod:1250
9082 #, no-wrap
9083 msgid ""
9084 " int\n"
9085 " guestfs_download_offset (guestfs_h *g,\n"
9086 "                          const char *remotefilename,\n"
9087 "                          const char *filename,\n"
9088 "                          int64_t offset,\n"
9089 "                          int64_t size);\n"
9090 "\n"
9091 msgstr ""
9092
9093 # type: textblock
9094 #. type: textblock
9095 #: ../src/guestfs-actions.pod:1260 ../fish/guestfish-actions.pod:841
9096 msgid ""
9097 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
9098 "region must be within the file or device)."
9099 msgstr ""
9100
9101 # type: textblock
9102 #. type: textblock
9103 #: ../src/guestfs-actions.pod:1263
9104 msgid ""
9105 "Note that there is no limit on the amount of data that can be downloaded "
9106 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
9107 "full amount unless an error occurs."
9108 msgstr ""
9109
9110 # type: textblock
9111 #. type: textblock
9112 #: ../src/guestfs-actions.pod:1268
9113 msgid "See also C<guestfs_download>, C<guestfs_pread>."
9114 msgstr ""
9115
9116 # type: textblock
9117 #. type: textblock
9118 #: ../src/guestfs-actions.pod:1277 ../src/guestfs-actions.pod:6901
9119 msgid "(Added in 1.5.17)"
9120 msgstr ""
9121
9122 # type: =head2
9123 #. type: =head2
9124 #: ../src/guestfs-actions.pod:1279
9125 msgid "guestfs_drop_caches"
9126 msgstr ""
9127
9128 # type: verbatim
9129 #. type: verbatim
9130 #: ../src/guestfs-actions.pod:1281
9131 #, no-wrap
9132 msgid ""
9133 " int\n"
9134 " guestfs_drop_caches (guestfs_h *g,\n"
9135 "                      int whattodrop);\n"
9136 "\n"
9137 msgstr ""
9138
9139 # type: textblock
9140 #. type: textblock
9141 #: ../src/guestfs-actions.pod:1285 ../fish/guestfish-actions.pod:857
9142 msgid ""
9143 "This instructs the guest kernel to drop its page cache, and/or dentries and "
9144 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
9145 "to drop, see L<http://linux-mm.org/Drop_Caches>"
9146 msgstr ""
9147
9148 # type: textblock
9149 #. type: textblock
9150 #: ../src/guestfs-actions.pod:1290 ../fish/guestfish-actions.pod:862
9151 msgid "Setting C<whattodrop> to 3 should drop everything."
9152 msgstr ""
9153
9154 # type: textblock
9155 #. type: textblock
9156 #: ../src/guestfs-actions.pod:1292 ../fish/guestfish-actions.pod:864
9157 msgid ""
9158 "This automatically calls L<sync(2)> before the operation, so that the "
9159 "maximum guest memory is freed."
9160 msgstr ""
9161
9162 # type: =head2
9163 #. type: =head2
9164 #: ../src/guestfs-actions.pod:1299
9165 msgid "guestfs_du"
9166 msgstr ""
9167
9168 # type: verbatim
9169 #. type: verbatim
9170 #: ../src/guestfs-actions.pod:1301
9171 #, no-wrap
9172 msgid ""
9173 " int64_t\n"
9174 " guestfs_du (guestfs_h *g,\n"
9175 "             const char *path);\n"
9176 "\n"
9177 msgstr ""
9178
9179 # type: textblock
9180 #. type: textblock
9181 #: ../src/guestfs-actions.pod:1305 ../fish/guestfish-actions.pod:871
9182 msgid ""
9183 "This command runs the C<du -s> command to estimate file space usage for "
9184 "C<path>."
9185 msgstr ""
9186
9187 # type: textblock
9188 #. type: textblock
9189 #: ../src/guestfs-actions.pod:1308 ../fish/guestfish-actions.pod:874
9190 msgid ""
9191 "C<path> can be a file or a directory.  If C<path> is a directory then the "
9192 "estimate includes the contents of the directory and all subdirectories "
9193 "(recursively)."
9194 msgstr ""
9195
9196 # type: textblock
9197 #. type: textblock
9198 #: ../src/guestfs-actions.pod:1312 ../fish/guestfish-actions.pod:878
9199 msgid ""
9200 "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
9201 msgstr ""
9202
9203 # type: =head2
9204 #. type: =head2
9205 #: ../src/guestfs-actions.pod:1324
9206 msgid "guestfs_e2fsck_f"
9207 msgstr ""
9208
9209 # type: verbatim
9210 #. type: verbatim
9211 #: ../src/guestfs-actions.pod:1326
9212 #, no-wrap
9213 msgid ""
9214 " int\n"
9215 " guestfs_e2fsck_f (guestfs_h *g,\n"
9216 "                   const char *device);\n"
9217 "\n"
9218 msgstr ""
9219
9220 #. type: textblock
9221 #: ../src/guestfs-actions.pod:1330 ../fish/guestfish-actions.pod:885
9222 msgid ""
9223 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
9224 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
9225 "clean (I<-f>)."
9226 msgstr ""
9227
9228 # type: textblock
9229 #. type: textblock
9230 #: ../src/guestfs-actions.pod:1334
9231 msgid ""
9232 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
9233 "Normally you should use C<guestfs_fsck>."
9234 msgstr ""
9235
9236 # type: textblock
9237 #. type: textblock
9238 #: ../src/guestfs-actions.pod:1339
9239 msgid "(Added in 1.0.29)"
9240 msgstr ""
9241
9242 # type: =head2
9243 #. type: =head2
9244 #: ../src/guestfs-actions.pod:1341
9245 msgid "guestfs_echo_daemon"
9246 msgstr ""
9247
9248 # type: verbatim
9249 #. type: verbatim
9250 #: ../src/guestfs-actions.pod:1343
9251 #, no-wrap
9252 msgid ""
9253 " char *\n"
9254 " guestfs_echo_daemon (guestfs_h *g,\n"
9255 "                      char *const *words);\n"
9256 "\n"
9257 msgstr ""
9258
9259 # type: textblock
9260 #. type: textblock
9261 #: ../src/guestfs-actions.pod:1347 ../fish/guestfish-actions.pod:896
9262 msgid ""
9263 "This command concatenates the list of C<words> passed with single spaces "
9264 "between them and returns the resulting string."
9265 msgstr ""
9266
9267 # type: textblock
9268 #. type: textblock
9269 #: ../src/guestfs-actions.pod:1350 ../fish/guestfish-actions.pod:899
9270 msgid "You can use this command to test the connection through to the daemon."
9271 msgstr ""
9272
9273 # type: textblock
9274 #. type: textblock
9275 #: ../src/guestfs-actions.pod:1352
9276 msgid "See also C<guestfs_ping_daemon>."
9277 msgstr ""
9278
9279 # type: textblock
9280 #. type: textblock
9281 #: ../src/guestfs-actions.pod:1357 ../src/guestfs-actions.pod:2091
9282 #: ../src/guestfs-actions.pod:6072
9283 msgid "(Added in 1.0.69)"
9284 msgstr ""
9285
9286 # type: =head2
9287 #. type: =head2
9288 #: ../src/guestfs-actions.pod:1359
9289 msgid "guestfs_egrep"
9290 msgstr ""
9291
9292 # type: verbatim
9293 #. type: verbatim
9294 #: ../src/guestfs-actions.pod:1361
9295 #, no-wrap
9296 msgid ""
9297 " char **\n"
9298 " guestfs_egrep (guestfs_h *g,\n"
9299 "                const char *regex,\n"
9300 "                const char *path);\n"
9301 "\n"
9302 msgstr ""
9303
9304 # type: textblock
9305 #. type: textblock
9306 #: ../src/guestfs-actions.pod:1366 ../fish/guestfish-actions.pod:907
9307 msgid ""
9308 "This calls the external C<egrep> program and returns the matching lines."
9309 msgstr ""
9310
9311 # type: textblock
9312 #. type: textblock
9313 #: ../src/guestfs-actions.pod:1376 ../src/guestfs-actions.pod:1395
9314 #: ../src/guestfs-actions.pod:1452 ../src/guestfs-actions.pod:1498
9315 #: ../src/guestfs-actions.pod:1517 ../src/guestfs-actions.pod:2221
9316 #: ../src/guestfs-actions.pod:2240 ../src/guestfs-actions.pod:2396
9317 #: ../src/guestfs-actions.pod:2409 ../src/guestfs-actions.pod:2424
9318 #: ../src/guestfs-actions.pod:2470 ../src/guestfs-actions.pod:2492
9319 #: ../src/guestfs-actions.pod:2505 ../src/guestfs-actions.pod:3653
9320 #: ../src/guestfs-actions.pod:3667 ../src/guestfs-actions.pod:3680
9321 #: ../src/guestfs-actions.pod:3694 ../src/guestfs-actions.pod:4680
9322 #: ../src/guestfs-actions.pod:5572 ../src/guestfs-actions.pod:5621
9323 #: ../src/guestfs-actions.pod:6468 ../src/guestfs-actions.pod:6480
9324 #: ../src/guestfs-actions.pod:6493 ../src/guestfs-actions.pod:6506
9325 #: ../src/guestfs-actions.pod:6528 ../src/guestfs-actions.pod:6541
9326 #: ../src/guestfs-actions.pod:6554 ../src/guestfs-actions.pod:6567
9327 #: ../src/guestfs-actions.pod:7345 ../src/guestfs-actions.pod:7364
9328 #: ../src/guestfs-actions.pod:7449 ../src/guestfs-actions.pod:7468
9329 #: ../src/guestfs-actions.pod:7514 ../src/guestfs-actions.pod:7533
9330 msgid "(Added in 1.0.66)"
9331 msgstr ""
9332
9333 # type: =head2
9334 #. type: =head2
9335 #: ../src/guestfs-actions.pod:1378
9336 msgid "guestfs_egrepi"
9337 msgstr ""
9338
9339 # type: verbatim
9340 #. type: verbatim
9341 #: ../src/guestfs-actions.pod:1380
9342 #, no-wrap
9343 msgid ""
9344 " char **\n"
9345 " guestfs_egrepi (guestfs_h *g,\n"
9346 "                 const char *regex,\n"
9347 "                 const char *path);\n"
9348 "\n"
9349 msgstr ""
9350
9351 # type: textblock
9352 #. type: textblock
9353 #: ../src/guestfs-actions.pod:1385 ../fish/guestfish-actions.pod:917
9354 msgid ""
9355 "This calls the external C<egrep -i> program and returns the matching lines."
9356 msgstr ""
9357
9358 # type: =head2
9359 #. type: =head2
9360 #: ../src/guestfs-actions.pod:1397
9361 msgid "guestfs_equal"
9362 msgstr ""
9363
9364 # type: verbatim
9365 #. type: verbatim
9366 #: ../src/guestfs-actions.pod:1399
9367 #, no-wrap
9368 msgid ""
9369 " int\n"
9370 " guestfs_equal (guestfs_h *g,\n"
9371 "                const char *file1,\n"
9372 "                const char *file2);\n"
9373 "\n"
9374 msgstr ""
9375
9376 # type: textblock
9377 #. type: textblock
9378 #: ../src/guestfs-actions.pod:1404 ../fish/guestfish-actions.pod:927
9379 msgid ""
9380 "This compares the two files C<file1> and C<file2> and returns true if their "
9381 "content is exactly equal, or false otherwise."
9382 msgstr ""
9383
9384 # type: textblock
9385 #. type: textblock
9386 #: ../src/guestfs-actions.pod:1407 ../fish/guestfish-actions.pod:930
9387 msgid "The external L<cmp(1)> program is used for the comparison."
9388 msgstr ""
9389
9390 # type: =head2
9391 #. type: =head2
9392 #: ../src/guestfs-actions.pod:1413
9393 msgid "guestfs_exists"
9394 msgstr ""
9395
9396 # type: verbatim
9397 #. type: verbatim
9398 #: ../src/guestfs-actions.pod:1415
9399 #, no-wrap
9400 msgid ""
9401 " int\n"
9402 " guestfs_exists (guestfs_h *g,\n"
9403 "                 const char *path);\n"
9404 "\n"
9405 msgstr ""
9406
9407 # type: textblock
9408 #. type: textblock
9409 #: ../src/guestfs-actions.pod:1419 ../fish/guestfish-actions.pod:936
9410 msgid ""
9411 "This returns C<true> if and only if there is a file, directory (or anything) "
9412 "with the given C<path> name."
9413 msgstr ""
9414
9415 # type: textblock
9416 #. type: textblock
9417 #: ../src/guestfs-actions.pod:1422
9418 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
9419 msgstr ""
9420
9421 # type: =head2
9422 #. type: =head2
9423 #: ../src/guestfs-actions.pod:1428
9424 msgid "guestfs_fallocate"
9425 msgstr ""
9426
9427 # type: verbatim
9428 #. type: verbatim
9429 #: ../src/guestfs-actions.pod:1430
9430 #, no-wrap
9431 msgid ""
9432 " int\n"
9433 " guestfs_fallocate (guestfs_h *g,\n"
9434 "                    const char *path,\n"
9435 "                    int len);\n"
9436 "\n"
9437 msgstr ""
9438
9439 # type: textblock
9440 #. type: textblock
9441 #: ../src/guestfs-actions.pod:1435 ../src/guestfs-actions.pod:1461
9442 #: ../fish/guestfish-actions.pod:945 ../fish/guestfish-actions.pod:964
9443 msgid ""
9444 "This command preallocates a file (containing zero bytes) named C<path> of "
9445 "size C<len> bytes.  If the file exists already, it is overwritten."
9446 msgstr ""
9447
9448 # type: textblock
9449 #. type: textblock
9450 #: ../src/guestfs-actions.pod:1439 ../fish/guestfish-actions.pod:949
9451 msgid ""
9452 "Do not confuse this with the guestfish-specific C<alloc> command which "
9453 "allocates a file in the host and attaches it as a device."
9454 msgstr ""
9455
9456 # type: textblock
9457 #. type: textblock
9458 #: ../src/guestfs-actions.pod:1445 ../fish/guestfish-actions.pod:953
9459 msgid ""
9460 "This function is deprecated.  In new code, use the C<fallocate64> call "
9461 "instead."
9462 msgstr ""
9463
9464 # type: =head2
9465 #. type: =head2
9466 #: ../src/guestfs-actions.pod:1454
9467 msgid "guestfs_fallocate64"
9468 msgstr ""
9469
9470 # type: verbatim
9471 #. type: verbatim
9472 #: ../src/guestfs-actions.pod:1456
9473 #, no-wrap
9474 msgid ""
9475 " int\n"
9476 " guestfs_fallocate64 (guestfs_h *g,\n"
9477 "                      const char *path,\n"
9478 "                      int64_t len);\n"
9479 "\n"
9480 msgstr ""
9481
9482 # type: textblock
9483 #. type: textblock
9484 #: ../src/guestfs-actions.pod:1465
9485 msgid ""
9486 "Note that this call allocates disk blocks for the file.  To create a sparse "
9487 "file use C<guestfs_truncate_size> instead."
9488 msgstr ""
9489
9490 # type: textblock
9491 #. type: textblock
9492 #: ../src/guestfs-actions.pod:1468
9493 msgid ""
9494 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
9495 "oversight it only allowed 30 bit lengths to be specified, effectively "
9496 "limiting the maximum size of files created through that call to 1GB."
9497 msgstr ""
9498
9499 # type: textblock
9500 #. type: textblock
9501 #: ../src/guestfs-actions.pod:1473 ../fish/guestfish-actions.pod:976
9502 msgid ""
9503 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
9504 "commands which create a file in the host and attach it as a device."
9505 msgstr ""
9506
9507 # type: textblock
9508 #. type: textblock
9509 #: ../src/guestfs-actions.pod:1479
9510 msgid "(Added in 1.3.17)"
9511 msgstr ""
9512
9513 # type: =head2
9514 #. type: =head2
9515 #: ../src/guestfs-actions.pod:1481
9516 msgid "guestfs_fgrep"
9517 msgstr ""
9518
9519 # type: verbatim
9520 #. type: verbatim
9521 #: ../src/guestfs-actions.pod:1483
9522 #, no-wrap
9523 msgid ""
9524 " char **\n"
9525 " guestfs_fgrep (guestfs_h *g,\n"
9526 "                const char *pattern,\n"
9527 "                const char *path);\n"
9528 "\n"
9529 msgstr ""
9530
9531 # type: textblock
9532 #. type: textblock
9533 #: ../src/guestfs-actions.pod:1488 ../fish/guestfish-actions.pod:984
9534 msgid ""
9535 "This calls the external C<fgrep> program and returns the matching lines."
9536 msgstr ""
9537
9538 # type: =head2
9539 #. type: =head2
9540 #: ../src/guestfs-actions.pod:1500
9541 msgid "guestfs_fgrepi"
9542 msgstr ""
9543
9544 # type: verbatim
9545 #. type: verbatim
9546 #: ../src/guestfs-actions.pod:1502
9547 #, no-wrap
9548 msgid ""
9549 " char **\n"
9550 " guestfs_fgrepi (guestfs_h *g,\n"
9551 "                 const char *pattern,\n"
9552 "                 const char *path);\n"
9553 "\n"
9554 msgstr ""
9555
9556 # type: textblock
9557 #. type: textblock
9558 #: ../src/guestfs-actions.pod:1507 ../fish/guestfish-actions.pod:994
9559 msgid ""
9560 "This calls the external C<fgrep -i> program and returns the matching lines."
9561 msgstr ""
9562
9563 # type: =head2
9564 #. type: =head2
9565 #: ../src/guestfs-actions.pod:1519
9566 msgid "guestfs_file"
9567 msgstr ""
9568
9569 # type: verbatim
9570 #. type: verbatim
9571 #: ../src/guestfs-actions.pod:1521
9572 #, no-wrap
9573 msgid ""
9574 " char *\n"
9575 " guestfs_file (guestfs_h *g,\n"
9576 "               const char *path);\n"
9577 "\n"
9578 msgstr ""
9579
9580 # type: textblock
9581 #. type: textblock
9582 #: ../src/guestfs-actions.pod:1525 ../fish/guestfish-actions.pod:1004
9583 msgid ""
9584 "This call uses the standard L<file(1)> command to determine the type or "
9585 "contents of the file."
9586 msgstr ""
9587
9588 # type: textblock
9589 #. type: textblock
9590 #: ../src/guestfs-actions.pod:1528 ../fish/guestfish-actions.pod:1007
9591 msgid ""
9592 "This call will also transparently look inside various types of compressed "
9593 "file."
9594 msgstr ""
9595
9596 #. type: textblock
9597 #: ../src/guestfs-actions.pod:1531 ../fish/guestfish-actions.pod:1010
9598 msgid ""
9599 "The exact command which runs is C<file -zb path>.  Note in particular that "
9600 "the filename is not prepended to the output (the I<-b> option)."
9601 msgstr ""
9602
9603 #. type: textblock
9604 #: ../src/guestfs-actions.pod:1535 ../fish/guestfish-actions.pod:1014
9605 msgid ""
9606 "The output depends on the output of the underlying L<file(1)> command and it "
9607 "can change in future in ways beyond our control.  In other words, the output "
9608 "is not guaranteed by the ABI."
9609 msgstr ""
9610
9611 #. type: textblock
9612 #: ../src/guestfs-actions.pod:1539
9613 msgid ""
9614 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
9615 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc)."
9616 msgstr ""
9617
9618 # type: =head2
9619 #. type: =head2
9620 #: ../src/guestfs-actions.pod:1547
9621 msgid "guestfs_file_architecture"
9622 msgstr ""
9623
9624 # type: verbatim
9625 #. type: verbatim
9626 #: ../src/guestfs-actions.pod:1549
9627 #, no-wrap
9628 msgid ""
9629 " char *\n"
9630 " guestfs_file_architecture (guestfs_h *g,\n"
9631 "                            const char *filename);\n"
9632 "\n"
9633 msgstr ""
9634
9635 # type: textblock
9636 #. type: textblock
9637 #: ../src/guestfs-actions.pod:1553 ../fish/guestfish-actions.pod:1025
9638 msgid ""
9639 "This detects the architecture of the binary C<filename>, and returns it if "
9640 "known."
9641 msgstr ""
9642
9643 # type: textblock
9644 #. type: textblock
9645 #: ../src/guestfs-actions.pod:1556 ../fish/guestfish-actions.pod:1028
9646 msgid "Currently defined architectures are:"
9647 msgstr ""
9648
9649 # type: =item
9650 #. type: =item
9651 #: ../src/guestfs-actions.pod:1560 ../fish/guestfish-actions.pod:1032
9652 msgid "\"i386\""
9653 msgstr ""
9654
9655 # type: textblock
9656 #. type: textblock
9657 #: ../src/guestfs-actions.pod:1562 ../fish/guestfish-actions.pod:1034
9658 msgid ""
9659 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
9660 "irrespective of the precise processor requirements of the binary."
9661 msgstr ""
9662
9663 # type: =item
9664 #. type: =item
9665 #: ../src/guestfs-actions.pod:1565 ../fish/guestfish-actions.pod:1037
9666 msgid "\"x86_64\""
9667 msgstr ""
9668
9669 # type: textblock
9670 #. type: textblock
9671 #: ../src/guestfs-actions.pod:1567 ../fish/guestfish-actions.pod:1039
9672 msgid "64 bit x86-64."
9673 msgstr ""
9674
9675 # type: =item
9676 #. type: =item
9677 #: ../src/guestfs-actions.pod:1569 ../fish/guestfish-actions.pod:1041
9678 msgid "\"sparc\""
9679 msgstr ""
9680
9681 # type: textblock
9682 #. type: textblock
9683 #: ../src/guestfs-actions.pod:1571 ../fish/guestfish-actions.pod:1043
9684 msgid "32 bit SPARC."
9685 msgstr ""
9686
9687 # type: =item
9688 #. type: =item
9689 #: ../src/guestfs-actions.pod:1573 ../fish/guestfish-actions.pod:1045
9690 msgid "\"sparc64\""
9691 msgstr ""
9692
9693 # type: textblock
9694 #. type: textblock
9695 #: ../src/guestfs-actions.pod:1575 ../fish/guestfish-actions.pod:1047
9696 msgid "64 bit SPARC V9 and above."
9697 msgstr ""
9698
9699 # type: =item
9700 #. type: =item
9701 #: ../src/guestfs-actions.pod:1577 ../fish/guestfish-actions.pod:1049
9702 msgid "\"ia64\""
9703 msgstr ""
9704
9705 # type: textblock
9706 #. type: textblock
9707 #: ../src/guestfs-actions.pod:1579 ../fish/guestfish-actions.pod:1051
9708 msgid "Intel Itanium."
9709 msgstr ""
9710
9711 # type: =item
9712 #. type: =item
9713 #: ../src/guestfs-actions.pod:1581 ../fish/guestfish-actions.pod:1053
9714 msgid "\"ppc\""
9715 msgstr ""
9716
9717 # type: textblock
9718 #. type: textblock
9719 #: ../src/guestfs-actions.pod:1583 ../fish/guestfish-actions.pod:1055
9720 msgid "32 bit Power PC."
9721 msgstr ""
9722
9723 # type: =item
9724 #. type: =item
9725 #: ../src/guestfs-actions.pod:1585 ../fish/guestfish-actions.pod:1057
9726 msgid "\"ppc64\""
9727 msgstr ""
9728
9729 # type: textblock
9730 #. type: textblock
9731 #: ../src/guestfs-actions.pod:1587 ../fish/guestfish-actions.pod:1059
9732 msgid "64 bit Power PC."
9733 msgstr ""
9734
9735 # type: textblock
9736 #. type: textblock
9737 #: ../src/guestfs-actions.pod:1591 ../fish/guestfish-actions.pod:1063
9738 msgid "Libguestfs may return other architecture strings in future."
9739 msgstr ""
9740
9741 # type: textblock
9742 #. type: textblock
9743 #: ../src/guestfs-actions.pod:1593 ../fish/guestfish-actions.pod:1065
9744 msgid "The function works on at least the following types of files:"
9745 msgstr ""
9746
9747 # type: textblock
9748 #. type: textblock
9749 #: ../src/guestfs-actions.pod:1599 ../fish/guestfish-actions.pod:1071
9750 msgid "many types of Un*x and Linux binary"
9751 msgstr ""
9752
9753 # type: textblock
9754 #. type: textblock
9755 #: ../src/guestfs-actions.pod:1603 ../fish/guestfish-actions.pod:1075
9756 msgid "many types of Un*x and Linux shared library"
9757 msgstr ""
9758
9759 # type: textblock
9760 #. type: textblock
9761 #: ../src/guestfs-actions.pod:1607 ../fish/guestfish-actions.pod:1079
9762 msgid "Windows Win32 and Win64 binaries"
9763 msgstr ""
9764
9765 # type: textblock
9766 #. type: textblock
9767 #: ../src/guestfs-actions.pod:1611 ../fish/guestfish-actions.pod:1083
9768 msgid "Windows Win32 and Win64 DLLs"
9769 msgstr ""
9770
9771 # type: textblock
9772 #. type: textblock
9773 #: ../src/guestfs-actions.pod:1613 ../fish/guestfish-actions.pod:1085
9774 msgid "Win32 binaries and DLLs return C<i386>."
9775 msgstr ""
9776
9777 # type: textblock
9778 #. type: textblock
9779 #: ../src/guestfs-actions.pod:1615 ../fish/guestfish-actions.pod:1087
9780 msgid "Win64 binaries and DLLs return C<x86_64>."
9781 msgstr ""
9782
9783 # type: textblock
9784 #. type: textblock
9785 #: ../src/guestfs-actions.pod:1619 ../fish/guestfish-actions.pod:1091
9786 msgid "Linux kernel modules"
9787 msgstr ""
9788
9789 # type: textblock
9790 #. type: textblock
9791 #: ../src/guestfs-actions.pod:1623 ../fish/guestfish-actions.pod:1095
9792 msgid "Linux new-style initrd images"
9793 msgstr ""
9794
9795 # type: textblock
9796 #. type: textblock
9797 #: ../src/guestfs-actions.pod:1627 ../fish/guestfish-actions.pod:1099
9798 msgid "some non-x86 Linux vmlinuz kernels"
9799 msgstr ""
9800
9801 # type: textblock
9802 #. type: textblock
9803 #: ../src/guestfs-actions.pod:1631 ../fish/guestfish-actions.pod:1103
9804 msgid "What it can't do currently:"
9805 msgstr ""
9806
9807 # type: textblock
9808 #. type: textblock
9809 #: ../src/guestfs-actions.pod:1637 ../fish/guestfish-actions.pod:1109
9810 msgid "static libraries (libfoo.a)"
9811 msgstr ""
9812
9813 # type: textblock
9814 #. type: textblock
9815 #: ../src/guestfs-actions.pod:1641 ../fish/guestfish-actions.pod:1113
9816 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
9817 msgstr ""
9818
9819 # type: textblock
9820 #. type: textblock
9821 #: ../src/guestfs-actions.pod:1645 ../fish/guestfish-actions.pod:1117
9822 msgid "x86 Linux vmlinuz kernels"
9823 msgstr ""
9824
9825 # type: textblock
9826 #. type: textblock
9827 #: ../src/guestfs-actions.pod:1647 ../fish/guestfish-actions.pod:1119
9828 msgid ""
9829 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
9830 "compressed code, and are horribly hard to unpack.  If you want to find the "
9831 "architecture of a kernel, use the architecture of the associated initrd or "
9832 "kernel module(s) instead."
9833 msgstr ""
9834
9835 # type: textblock
9836 #. type: textblock
9837 #: ../src/guestfs-actions.pod:1657 ../src/guestfs-actions.pod:1820
9838 #: ../src/guestfs-actions.pod:1837 ../src/guestfs-actions.pod:2528
9839 #: ../src/guestfs-actions.pod:2621 ../src/guestfs-actions.pod:2691
9840 #: ../src/guestfs-actions.pod:2779 ../src/guestfs-actions.pod:2800
9841 #: ../src/guestfs-actions.pod:2843 ../src/guestfs-actions.pod:2927
9842 #: ../src/guestfs-actions.pod:3024 ../src/guestfs-actions.pod:3271
9843 #: ../src/guestfs-actions.pod:3403
9844 msgid "(Added in 1.5.3)"
9845 msgstr ""
9846
9847 # type: =head2
9848 #. type: =head2
9849 #: ../src/guestfs-actions.pod:1659
9850 msgid "guestfs_filesize"
9851 msgstr ""
9852
9853 # type: verbatim
9854 #. type: verbatim
9855 #: ../src/guestfs-actions.pod:1661
9856 #, no-wrap
9857 msgid ""
9858 " int64_t\n"
9859 " guestfs_filesize (guestfs_h *g,\n"
9860 "                   const char *file);\n"
9861 "\n"
9862 msgstr ""
9863
9864 # type: textblock
9865 #. type: textblock
9866 #: ../src/guestfs-actions.pod:1665 ../fish/guestfish-actions.pod:1130
9867 msgid "This command returns the size of C<file> in bytes."
9868 msgstr ""
9869
9870 # type: textblock
9871 #. type: textblock
9872 #: ../src/guestfs-actions.pod:1667
9873 msgid ""
9874 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
9875 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
9876 "devices, use C<guestfs_blockdev_getsize64>."
9877 msgstr ""
9878
9879 # type: textblock
9880 #. type: textblock
9881 #: ../src/guestfs-actions.pod:1673
9882 msgid "(Added in 1.0.82)"
9883 msgstr ""
9884
9885 # type: =head2
9886 #. type: =head2
9887 #: ../src/guestfs-actions.pod:1675
9888 msgid "guestfs_fill"
9889 msgstr ""
9890
9891 # type: verbatim
9892 #. type: verbatim
9893 #: ../src/guestfs-actions.pod:1677
9894 #, no-wrap
9895 msgid ""
9896 " int\n"
9897 " guestfs_fill (guestfs_h *g,\n"
9898 "               int c,\n"
9899 "               int len,\n"
9900 "               const char *path);\n"
9901 "\n"
9902 msgstr ""
9903
9904 # type: textblock
9905 #. type: textblock
9906 #: ../src/guestfs-actions.pod:1683 ../fish/guestfish-actions.pod:1140
9907 msgid ""
9908 "This command creates a new file called C<path>.  The initial content of the "
9909 "file is C<len> octets of C<c>, where C<c> must be a number in the range C<"
9910 "[0..255]>."
9911 msgstr ""
9912
9913 # type: textblock
9914 #. type: textblock
9915 #: ../src/guestfs-actions.pod:1687
9916 msgid ""
9917 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
9918 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
9919 "bytes use C<guestfs_fill_pattern>."
9920 msgstr ""
9921
9922 # type: textblock
9923 #. type: textblock
9924 #: ../src/guestfs-actions.pod:1699
9925 msgid "(Added in 1.0.79)"
9926 msgstr ""
9927
9928 # type: =head2
9929 #. type: =head2
9930 #: ../src/guestfs-actions.pod:1701
9931 msgid "guestfs_fill_pattern"
9932 msgstr ""
9933
9934 # type: verbatim
9935 #. type: verbatim
9936 #: ../src/guestfs-actions.pod:1703
9937 #, no-wrap
9938 msgid ""
9939 " int\n"
9940 " guestfs_fill_pattern (guestfs_h *g,\n"
9941 "                       const char *pattern,\n"
9942 "                       int len,\n"
9943 "                       const char *path);\n"
9944 "\n"
9945 msgstr ""
9946
9947 # type: textblock
9948 #. type: textblock
9949 #: ../src/guestfs-actions.pod:1709
9950 msgid ""
9951 "This function is like C<guestfs_fill> except that it creates a new file of "
9952 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
9953 "pattern is truncated if necessary to ensure the length of the file is "
9954 "exactly C<len> bytes."
9955 msgstr ""
9956
9957 # type: textblock
9958 #. type: textblock
9959 #: ../src/guestfs-actions.pod:1721
9960 msgid "(Added in 1.3.12)"
9961 msgstr ""
9962
9963 # type: =head2
9964 #. type: =head2
9965 #: ../src/guestfs-actions.pod:1723
9966 msgid "guestfs_find"
9967 msgstr ""
9968
9969 # type: verbatim
9970 #. type: verbatim
9971 #: ../src/guestfs-actions.pod:1725
9972 #, no-wrap
9973 msgid ""
9974 " char **\n"
9975 " guestfs_find (guestfs_h *g,\n"
9976 "               const char *directory);\n"
9977 "\n"
9978 msgstr ""
9979
9980 # type: textblock
9981 #. type: textblock
9982 #: ../src/guestfs-actions.pod:1729 ../fish/guestfish-actions.pod:1162
9983 msgid ""
9984 "This command lists out all files and directories, recursively, starting at "
9985 "C<directory>.  It is essentially equivalent to running the shell command "
9986 "C<find directory -print> but some post-processing happens on the output, "
9987 "described below."
9988 msgstr ""
9989
9990 # type: textblock
9991 #. type: textblock
9992 #: ../src/guestfs-actions.pod:1734 ../fish/guestfish-actions.pod:1167
9993 msgid ""
9994 "This returns a list of strings I<without any prefix>.  Thus if the directory "
9995 "structure was:"
9996 msgstr ""
9997
9998 # type: verbatim
9999 #. type: verbatim
10000 #: ../src/guestfs-actions.pod:1737 ../fish/guestfish-actions.pod:1170
10001 #, no-wrap
10002 msgid ""
10003 " /tmp/a\n"
10004 " /tmp/b\n"
10005 " /tmp/c/d\n"
10006 "\n"
10007 msgstr ""
10008
10009 # type: textblock
10010 #. type: textblock
10011 #: ../src/guestfs-actions.pod:1741
10012 msgid ""
10013 "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
10014 msgstr ""
10015
10016 # type: verbatim
10017 #. type: verbatim
10018 #: ../src/guestfs-actions.pod:1744 ../fish/guestfish-actions.pod:1177
10019 #, no-wrap
10020 msgid ""
10021 " a\n"
10022 " b\n"
10023 " c\n"
10024 " c/d\n"
10025 "\n"
10026 msgstr ""
10027
10028 # type: textblock
10029 #. type: textblock
10030 #: ../src/guestfs-actions.pod:1749 ../fish/guestfish-actions.pod:1182
10031 msgid "If C<directory> is not a directory, then this command returns an error."
10032 msgstr ""
10033
10034 # type: textblock
10035 #. type: textblock
10036 #: ../src/guestfs-actions.pod:1752 ../fish/guestfish-actions.pod:1185
10037 msgid "The returned list is sorted."
10038 msgstr ""
10039
10040 # type: textblock
10041 #. type: textblock
10042 #: ../src/guestfs-actions.pod:1754
10043 msgid "See also C<guestfs_find0>."
10044 msgstr ""
10045
10046 # type: textblock
10047 #. type: textblock
10048 #: ../src/guestfs-actions.pod:1763 ../src/guestfs-actions.pod:4097
10049 #: ../src/guestfs-actions.pod:5656
10050 msgid "(Added in 1.0.27)"
10051 msgstr ""
10052
10053 # type: =head2
10054 #. type: =head2
10055 #: ../src/guestfs-actions.pod:1765
10056 msgid "guestfs_find0"
10057 msgstr ""
10058
10059 # type: verbatim
10060 #. type: verbatim
10061 #: ../src/guestfs-actions.pod:1767
10062 #, no-wrap
10063 msgid ""
10064 " int\n"
10065 " guestfs_find0 (guestfs_h *g,\n"
10066 "                const char *directory,\n"
10067 "                const char *files);\n"
10068 "\n"
10069 msgstr ""
10070
10071 # type: textblock
10072 #. type: textblock
10073 #: ../src/guestfs-actions.pod:1772 ../fish/guestfish-actions.pod:1196
10074 msgid ""
10075 "This command lists out all files and directories, recursively, starting at "
10076 "C<directory>, placing the resulting list in the external file called "
10077 "C<files>."
10078 msgstr ""
10079
10080 # type: textblock
10081 #. type: textblock
10082 #: ../src/guestfs-actions.pod:1776
10083 msgid ""
10084 "This command works the same way as C<guestfs_find> with the following "
10085 "exceptions:"
10086 msgstr ""
10087
10088 # type: textblock
10089 #. type: textblock
10090 #: ../src/guestfs-actions.pod:1783 ../fish/guestfish-actions.pod:1207
10091 msgid "The resulting list is written to an external file."
10092 msgstr ""
10093
10094 # type: textblock
10095 #. type: textblock
10096 #: ../src/guestfs-actions.pod:1787 ../fish/guestfish-actions.pod:1211
10097 msgid ""
10098 "Items (filenames) in the result are separated by C<\\0> characters.  See "
10099 "L<find(1)> option I<-print0>."
10100 msgstr ""
10101
10102 # type: textblock
10103 #. type: textblock
10104 #: ../src/guestfs-actions.pod:1792 ../fish/guestfish-actions.pod:1216
10105 msgid "This command is not limited in the number of names that it can return."
10106 msgstr ""
10107
10108 # type: textblock
10109 #. type: textblock
10110 #: ../src/guestfs-actions.pod:1797 ../fish/guestfish-actions.pod:1221
10111 msgid "The result list is not sorted."
10112 msgstr ""
10113
10114 # type: textblock
10115 #. type: textblock
10116 #: ../src/guestfs-actions.pod:1803
10117 msgid "(Added in 1.0.74)"
10118 msgstr ""
10119
10120 # type: =head2
10121 #. type: =head2
10122 #: ../src/guestfs-actions.pod:1805
10123 msgid "guestfs_findfs_label"
10124 msgstr ""
10125
10126 # type: verbatim
10127 #. type: verbatim
10128 #: ../src/guestfs-actions.pod:1807
10129 #, no-wrap
10130 msgid ""
10131 " char *\n"
10132 " guestfs_findfs_label (guestfs_h *g,\n"
10133 "                       const char *label);\n"
10134 "\n"
10135 msgstr ""
10136
10137 # type: textblock
10138 #. type: textblock
10139 #: ../src/guestfs-actions.pod:1811 ../fish/guestfish-actions.pod:1231
10140 msgid ""
10141 "This command searches the filesystems and returns the one which has the "
10142 "given label.  An error is returned if no such filesystem can be found."
10143 msgstr ""
10144
10145 # type: textblock
10146 #. type: textblock
10147 #: ../src/guestfs-actions.pod:1815
10148 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
10149 msgstr ""
10150
10151 # type: =head2
10152 #. type: =head2
10153 #: ../src/guestfs-actions.pod:1822
10154 msgid "guestfs_findfs_uuid"
10155 msgstr ""
10156
10157 # type: verbatim
10158 #. type: verbatim
10159 #: ../src/guestfs-actions.pod:1824
10160 #, no-wrap
10161 msgid ""
10162 " char *\n"
10163 " guestfs_findfs_uuid (guestfs_h *g,\n"
10164 "                      const char *uuid);\n"
10165 "\n"
10166 msgstr ""
10167
10168 # type: textblock
10169 #. type: textblock
10170 #: ../src/guestfs-actions.pod:1828 ../fish/guestfish-actions.pod:1241
10171 msgid ""
10172 "This command searches the filesystems and returns the one which has the "
10173 "given UUID.  An error is returned if no such filesystem can be found."
10174 msgstr ""
10175
10176 # type: textblock
10177 #. type: textblock
10178 #: ../src/guestfs-actions.pod:1832
10179 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
10180 msgstr ""
10181
10182 # type: =head2
10183 #. type: =head2
10184 #: ../src/guestfs-actions.pod:1839
10185 msgid "guestfs_fsck"
10186 msgstr ""
10187
10188 # type: verbatim
10189 #. type: verbatim
10190 #: ../src/guestfs-actions.pod:1841
10191 #, no-wrap
10192 msgid ""
10193 " int\n"
10194 " guestfs_fsck (guestfs_h *g,\n"
10195 "               const char *fstype,\n"
10196 "               const char *device);\n"
10197 "\n"
10198 msgstr ""
10199
10200 # type: textblock
10201 #. type: textblock
10202 #: ../src/guestfs-actions.pod:1846 ../fish/guestfish-actions.pod:1251
10203 msgid ""
10204 "This runs the filesystem checker (fsck) on C<device> which should have "
10205 "filesystem type C<fstype>."
10206 msgstr ""
10207
10208 # type: textblock
10209 #. type: textblock
10210 #: ../src/guestfs-actions.pod:1849 ../fish/guestfish-actions.pod:1254
10211 msgid ""
10212 "The returned integer is the status.  See L<fsck(8)> for the list of status "
10213 "codes from C<fsck>."
10214 msgstr ""
10215
10216 # type: textblock
10217 #. type: textblock
10218 #: ../src/guestfs-actions.pod:1858 ../fish/guestfish-actions.pod:1263
10219 msgid "Multiple status codes can be summed together."
10220 msgstr ""
10221
10222 # type: textblock
10223 #. type: textblock
10224 #: ../src/guestfs-actions.pod:1862 ../fish/guestfish-actions.pod:1267
10225 msgid ""
10226 "A non-zero return code can mean \"success\", for example if errors have been "
10227 "corrected on the filesystem."
10228 msgstr ""
10229
10230 # type: textblock
10231 #. type: textblock
10232 #: ../src/guestfs-actions.pod:1867 ../fish/guestfish-actions.pod:1272
10233 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
10234 msgstr ""
10235
10236 # type: textblock
10237 #. type: textblock
10238 #: ../src/guestfs-actions.pod:1872 ../fish/guestfish-actions.pod:1277
10239 msgid ""
10240 "This command is entirely equivalent to running C<fsck -a -t fstype device>."
10241 msgstr ""
10242
10243 # type: textblock
10244 #. type: textblock
10245 #: ../src/guestfs-actions.pod:1876 ../src/guestfs-actions.pod:7387
10246 msgid "(Added in 1.0.16)"
10247 msgstr ""
10248
10249 # type: =head2
10250 #. type: =head2
10251 #: ../src/guestfs-actions.pod:1878
10252 msgid "guestfs_get_append"
10253 msgstr ""
10254
10255 # type: verbatim
10256 #. type: verbatim
10257 #: ../src/guestfs-actions.pod:1880
10258 #, no-wrap
10259 msgid ""
10260 " const char *\n"
10261 " guestfs_get_append (guestfs_h *g);\n"
10262 "\n"
10263 msgstr ""
10264
10265 # type: textblock
10266 #. type: textblock
10267 #: ../src/guestfs-actions.pod:1883 ../fish/guestfish-actions.pod:1283
10268 msgid ""
10269 "Return the additional kernel options which are added to the guest kernel "
10270 "command line."
10271 msgstr ""
10272
10273 # type: textblock
10274 #. type: textblock
10275 #: ../src/guestfs-actions.pod:1886 ../fish/guestfish-actions.pod:1286
10276 msgid "If C<NULL> then no options are added."
10277 msgstr ""
10278
10279 # type: textblock
10280 #. type: textblock
10281 #: ../src/guestfs-actions.pod:1888
10282 msgid ""
10283 "This function returns a string which may be NULL.  There is no way to return "
10284 "an error from this function.  The string is owned by the guest handle and "
10285 "must I<not> be freed."
10286 msgstr ""
10287
10288 # type: textblock
10289 #. type: textblock
10290 #: ../src/guestfs-actions.pod:1892 ../src/guestfs-actions.pod:5334
10291 #: ../src/guestfs-actions.pod:5814 ../src/guestfs-actions.pod:6235
10292 #: ../src/guestfs-actions.pod:6254 ../src/guestfs-actions.pod:6270
10293 #: ../src/guestfs-actions.pod:6294 ../src/guestfs-actions.pod:7051
10294 #: ../src/guestfs-actions.pod:7069 ../src/guestfs-actions.pod:7430
10295 msgid "(Added in 1.0.26)"
10296 msgstr ""
10297
10298 #. type: =head2
10299 #: ../src/guestfs-actions.pod:1894
10300 msgid "guestfs_get_attach_method"
10301 msgstr ""
10302
10303 #. type: verbatim
10304 #: ../src/guestfs-actions.pod:1896
10305 #, no-wrap
10306 msgid ""
10307 " char *\n"
10308 " guestfs_get_attach_method (guestfs_h *g);\n"
10309 "\n"
10310 msgstr ""
10311
10312 #. type: textblock
10313 #: ../src/guestfs-actions.pod:1899
10314 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
10315 msgstr ""
10316
10317 # type: =head2
10318 #. type: =head2
10319 #: ../src/guestfs-actions.pod:1904
10320 msgid "guestfs_get_autosync"
10321 msgstr ""
10322
10323 # type: verbatim
10324 #. type: verbatim
10325 #: ../src/guestfs-actions.pod:1906
10326 #, no-wrap
10327 msgid ""
10328 " int\n"
10329 " guestfs_get_autosync (guestfs_h *g);\n"
10330 "\n"
10331 msgstr ""
10332
10333 # type: textblock
10334 #. type: textblock
10335 #: ../src/guestfs-actions.pod:1909 ../fish/guestfish-actions.pod:1298
10336 msgid "Get the autosync flag."
10337 msgstr ""
10338
10339 # type: =head2
10340 #. type: =head2
10341 #: ../src/guestfs-actions.pod:1915
10342 msgid "guestfs_get_direct"
10343 msgstr ""
10344
10345 # type: verbatim
10346 #. type: verbatim
10347 #: ../src/guestfs-actions.pod:1917
10348 #, no-wrap
10349 msgid ""
10350 " int\n"
10351 " guestfs_get_direct (guestfs_h *g);\n"
10352 "\n"
10353 msgstr ""
10354
10355 # type: textblock
10356 #. type: textblock
10357 #: ../src/guestfs-actions.pod:1920 ../fish/guestfish-actions.pod:1304
10358 msgid "Return the direct appliance mode flag."
10359 msgstr ""
10360
10361 # type: textblock
10362 #. type: textblock
10363 #: ../src/guestfs-actions.pod:1924 ../src/guestfs-actions.pod:5883
10364 msgid "(Added in 1.0.72)"
10365 msgstr ""
10366
10367 # type: =head2
10368 #. type: =head2
10369 #: ../src/guestfs-actions.pod:1926
10370 msgid "guestfs_get_e2label"
10371 msgstr ""
10372
10373 # type: verbatim
10374 #. type: verbatim
10375 #: ../src/guestfs-actions.pod:1928
10376 #, no-wrap
10377 msgid ""
10378 " char *\n"
10379 " guestfs_get_e2label (guestfs_h *g,\n"
10380 "                      const char *device);\n"
10381 "\n"
10382 msgstr ""
10383
10384 # type: textblock
10385 #. type: textblock
10386 #: ../src/guestfs-actions.pod:1932 ../fish/guestfish-actions.pod:1310
10387 msgid ""
10388 "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
10389 msgstr ""
10390
10391 # type: textblock
10392 #. type: textblock
10393 #: ../src/guestfs-actions.pod:1938 ../fish/guestfish-actions.pod:1313
10394 msgid ""
10395 "This function is deprecated.  In new code, use the C<vfs_label> call instead."
10396 msgstr ""
10397
10398 # type: textblock
10399 #. type: textblock
10400 #: ../src/guestfs-actions.pod:1945 ../src/guestfs-actions.pod:1966
10401 #: ../src/guestfs-actions.pod:5901 ../src/guestfs-actions.pod:5920
10402 msgid "(Added in 1.0.15)"
10403 msgstr ""
10404
10405 # type: =head2
10406 #. type: =head2
10407 #: ../src/guestfs-actions.pod:1947
10408 msgid "guestfs_get_e2uuid"
10409 msgstr ""
10410
10411 # type: verbatim
10412 #. type: verbatim
10413 #: ../src/guestfs-actions.pod:1949
10414 #, no-wrap
10415 msgid ""
10416 " char *\n"
10417 " guestfs_get_e2uuid (guestfs_h *g,\n"
10418 "                     const char *device);\n"
10419 "\n"
10420 msgstr ""
10421
10422 # type: textblock
10423 #. type: textblock
10424 #: ../src/guestfs-actions.pod:1953 ../fish/guestfish-actions.pod:1324
10425 msgid ""
10426 "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
10427 msgstr ""
10428
10429 # type: textblock
10430 #. type: textblock
10431 #: ../src/guestfs-actions.pod:1959 ../fish/guestfish-actions.pod:1327
10432 msgid ""
10433 "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
10434 msgstr ""
10435
10436 # type: =head2
10437 #. type: =head2
10438 #: ../src/guestfs-actions.pod:1968
10439 msgid "guestfs_get_memsize"
10440 msgstr ""
10441
10442 # type: verbatim
10443 #. type: verbatim
10444 #: ../src/guestfs-actions.pod:1970
10445 #, no-wrap
10446 msgid ""
10447 " int\n"
10448 " guestfs_get_memsize (guestfs_h *g);\n"
10449 "\n"
10450 msgstr ""
10451
10452 # type: textblock
10453 #. type: textblock
10454 #: ../src/guestfs-actions.pod:1973 ../fish/guestfish-actions.pod:1338
10455 msgid ""
10456 "This gets the memory size in megabytes allocated to the qemu subprocess."
10457 msgstr ""
10458
10459 # type: textblock
10460 #. type: textblock
10461 #: ../src/guestfs-actions.pod:1976
10462 msgid ""
10463 "If C<guestfs_set_memsize> was not called on this handle, and if "
10464 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
10465 "value for memsize."
10466 msgstr ""
10467
10468 # type: textblock
10469 #. type: textblock
10470 #: ../src/guestfs-actions.pod:1980 ../src/guestfs-actions.pod:2061
10471 #: ../src/guestfs-actions.pod:5936 ../src/guestfs-actions.pod:6043
10472 #: ../fish/guestfish-actions.pod:1345 ../fish/guestfish-actions.pod:1396
10473 #: ../fish/guestfish-actions.pod:4006 ../fish/guestfish-actions.pod:4093
10474 msgid ""
10475 "For more information on the architecture of libguestfs, see L<guestfs(3)>."
10476 msgstr ""
10477
10478 # type: textblock
10479 #. type: textblock
10480 #: ../src/guestfs-actions.pod:1985 ../src/guestfs-actions.pod:4388
10481 #: ../src/guestfs-actions.pod:4585 ../src/guestfs-actions.pod:4604
10482 #: ../src/guestfs-actions.pod:4623 ../src/guestfs-actions.pod:4635
10483 #: ../src/guestfs-actions.pod:4652 ../src/guestfs-actions.pod:4665
10484 #: ../src/guestfs-actions.pod:5559 ../src/guestfs-actions.pod:5941
10485 #: ../src/guestfs-actions.pod:6202 ../src/guestfs-actions.pod:6817
10486 msgid "(Added in 1.0.55)"
10487 msgstr ""
10488
10489 # type: =head2
10490 #. type: =head2
10491 #: ../src/guestfs-actions.pod:1987
10492 msgid "guestfs_get_network"
10493 msgstr ""
10494
10495 # type: verbatim
10496 #. type: verbatim
10497 #: ../src/guestfs-actions.pod:1989
10498 #, no-wrap
10499 msgid ""
10500 " int\n"
10501 " guestfs_get_network (guestfs_h *g);\n"
10502 "\n"
10503 msgstr ""
10504
10505 # type: textblock
10506 #. type: textblock
10507 #: ../src/guestfs-actions.pod:1992 ../fish/guestfish-actions.pod:1352
10508 msgid "This returns the enable network flag."
10509 msgstr ""
10510
10511 # type: textblock
10512 #. type: textblock
10513 #: ../src/guestfs-actions.pod:1996 ../src/guestfs-actions.pod:5960
10514 msgid "(Added in 1.5.4)"
10515 msgstr ""
10516
10517 # type: =head2
10518 #. type: =head2
10519 #: ../src/guestfs-actions.pod:1998
10520 msgid "guestfs_get_path"
10521 msgstr ""
10522
10523 # type: verbatim
10524 #. type: verbatim
10525 #: ../src/guestfs-actions.pod:2000
10526 #, no-wrap
10527 msgid ""
10528 " const char *\n"
10529 " guestfs_get_path (guestfs_h *g);\n"
10530 "\n"
10531 msgstr ""
10532
10533 # type: textblock
10534 #. type: textblock
10535 #: ../src/guestfs-actions.pod:2003 ../fish/guestfish-actions.pod:1358
10536 msgid "Return the current search path."
10537 msgstr ""
10538
10539 # type: textblock
10540 #. type: textblock
10541 #: ../src/guestfs-actions.pod:2005 ../fish/guestfish-actions.pod:1360
10542 msgid ""
10543 "This is always non-NULL.  If it wasn't set already, then this will return "
10544 "the default path."
10545 msgstr ""
10546
10547 # type: textblock
10548 #. type: textblock
10549 #: ../src/guestfs-actions.pod:2008 ../src/guestfs-actions.pod:2037
10550 msgid ""
10551 "This function returns a string, or NULL on error.  The string is owned by "
10552 "the guest handle and must I<not> be freed."
10553 msgstr ""
10554
10555 # type: =head2
10556 #. type: =head2
10557 #: ../src/guestfs-actions.pod:2013
10558 msgid "guestfs_get_pid"
10559 msgstr ""
10560
10561 # type: verbatim
10562 #. type: verbatim
10563 #: ../src/guestfs-actions.pod:2015
10564 #, no-wrap
10565 msgid ""
10566 " int\n"
10567 " guestfs_get_pid (guestfs_h *g);\n"
10568 "\n"
10569 msgstr ""
10570
10571 # type: textblock
10572 #. type: textblock
10573 #: ../src/guestfs-actions.pod:2018 ../fish/guestfish-actions.pod:1369
10574 msgid ""
10575 "Return the process ID of the qemu subprocess.  If there is no qemu "
10576 "subprocess, then this will return an error."
10577 msgstr ""
10578
10579 # type: textblock
10580 #. type: textblock
10581 #: ../src/guestfs-actions.pod:2021 ../fish/guestfish-actions.pod:1372
10582 msgid "This is an internal call used for debugging and testing."
10583 msgstr ""
10584
10585 # type: textblock
10586 #. type: textblock
10587 #: ../src/guestfs-actions.pod:2025
10588 msgid "(Added in 1.0.56)"
10589 msgstr ""
10590
10591 # type: =head2
10592 #. type: =head2
10593 #: ../src/guestfs-actions.pod:2027
10594 msgid "guestfs_get_qemu"
10595 msgstr ""
10596
10597 # type: verbatim
10598 #. type: verbatim
10599 #: ../src/guestfs-actions.pod:2029
10600 #, no-wrap
10601 msgid ""
10602 " const char *\n"
10603 " guestfs_get_qemu (guestfs_h *g);\n"
10604 "\n"
10605 msgstr ""
10606
10607 # type: textblock
10608 #. type: textblock
10609 #: ../src/guestfs-actions.pod:2032 ../fish/guestfish-actions.pod:1378
10610 msgid "Return the current qemu binary."
10611 msgstr ""
10612
10613 # type: textblock
10614 #. type: textblock
10615 #: ../src/guestfs-actions.pod:2034 ../fish/guestfish-actions.pod:1380
10616 msgid ""
10617 "This is always non-NULL.  If it wasn't set already, then this will return "
10618 "the default qemu binary name."
10619 msgstr ""
10620
10621 # type: textblock
10622 #. type: textblock
10623 #: ../src/guestfs-actions.pod:2040 ../src/guestfs-actions.pod:6005
10624 msgid "(Added in 1.0.6)"
10625 msgstr ""
10626
10627 # type: =head2
10628 #. type: =head2
10629 #: ../src/guestfs-actions.pod:2042
10630 msgid "guestfs_get_recovery_proc"
10631 msgstr ""
10632
10633 # type: verbatim
10634 #. type: verbatim
10635 #: ../src/guestfs-actions.pod:2044
10636 #, no-wrap
10637 msgid ""
10638 " int\n"
10639 " guestfs_get_recovery_proc (guestfs_h *g);\n"
10640 "\n"
10641 msgstr ""
10642
10643 # type: textblock
10644 #. type: textblock
10645 #: ../src/guestfs-actions.pod:2047 ../fish/guestfish-actions.pod:1387
10646 msgid "Return the recovery process enabled flag."
10647 msgstr ""
10648
10649 # type: textblock
10650 #. type: textblock
10651 #: ../src/guestfs-actions.pod:2051 ../src/guestfs-actions.pod:3498
10652 #: ../src/guestfs-actions.pod:3795 ../src/guestfs-actions.pod:4195
10653 #: ../src/guestfs-actions.pod:4227 ../src/guestfs-actions.pod:5264
10654 #: ../src/guestfs-actions.pod:5607 ../src/guestfs-actions.pod:6029
10655 #: ../src/guestfs-actions.pod:6720 ../src/guestfs-actions.pod:6740
10656 #: ../src/guestfs-actions.pod:6932
10657 msgid "(Added in 1.0.77)"
10658 msgstr ""
10659
10660 # type: =head2
10661 #. type: =head2
10662 #: ../src/guestfs-actions.pod:2053
10663 msgid "guestfs_get_selinux"
10664 msgstr ""
10665
10666 # type: verbatim
10667 #. type: verbatim
10668 #: ../src/guestfs-actions.pod:2055
10669 #, no-wrap
10670 msgid ""
10671 " int\n"
10672 " guestfs_get_selinux (guestfs_h *g);\n"
10673 "\n"
10674 msgstr ""
10675
10676 # type: textblock
10677 #. type: textblock
10678 #: ../src/guestfs-actions.pod:2058
10679 msgid ""
10680 "This returns the current setting of the selinux flag which is passed to the "
10681 "appliance at boot time.  See C<guestfs_set_selinux>."
10682 msgstr ""
10683
10684 # type: textblock
10685 #. type: textblock
10686 #: ../src/guestfs-actions.pod:2066 ../src/guestfs-actions.pod:2129
10687 #: ../src/guestfs-actions.pod:6048 ../src/guestfs-actions.pod:6106
10688 msgid "(Added in 1.0.67)"
10689 msgstr ""
10690
10691 # type: =head2
10692 #. type: =head2
10693 #: ../src/guestfs-actions.pod:2068
10694 msgid "guestfs_get_state"
10695 msgstr ""
10696
10697 # type: verbatim
10698 #. type: verbatim
10699 #: ../src/guestfs-actions.pod:2070
10700 #, no-wrap
10701 msgid ""
10702 " int\n"
10703 " guestfs_get_state (guestfs_h *g);\n"
10704 "\n"
10705 msgstr ""
10706
10707 # type: textblock
10708 #. type: textblock
10709 #: ../src/guestfs-actions.pod:2073 ../fish/guestfish-actions.pod:1403
10710 msgid ""
10711 "This returns the current state as an opaque integer.  This is only useful "
10712 "for printing debug and internal error messages."
10713 msgstr ""
10714
10715 # type: textblock
10716 #. type: textblock
10717 #: ../src/guestfs-actions.pod:2076 ../src/guestfs-actions.pod:3296
10718 #: ../src/guestfs-actions.pod:3325 ../src/guestfs-actions.pod:3386
10719 #: ../src/guestfs-actions.pod:3413 ../fish/guestfish-actions.pod:1406
10720 #: ../fish/guestfish-actions.pod:2320 ../fish/guestfish-actions.pod:2338
10721 #: ../fish/guestfish-actions.pod:2376 ../fish/guestfish-actions.pod:2392
10722 msgid "For more information on states, see L<guestfs(3)>."
10723 msgstr ""
10724
10725 # type: =head2
10726 #. type: =head2
10727 #: ../src/guestfs-actions.pod:2082
10728 msgid "guestfs_get_trace"
10729 msgstr ""
10730
10731 # type: verbatim
10732 #. type: verbatim
10733 #: ../src/guestfs-actions.pod:2084
10734 #, no-wrap
10735 msgid ""
10736 " int\n"
10737 " guestfs_get_trace (guestfs_h *g);\n"
10738 "\n"
10739 msgstr ""
10740
10741 # type: textblock
10742 #. type: textblock
10743 #: ../src/guestfs-actions.pod:2087 ../fish/guestfish-actions.pod:1412
10744 msgid "Return the command trace flag."
10745 msgstr ""
10746
10747 # type: =head2
10748 #. type: =head2
10749 #: ../src/guestfs-actions.pod:2093
10750 msgid "guestfs_get_umask"
10751 msgstr ""
10752
10753 # type: verbatim
10754 #. type: verbatim
10755 #: ../src/guestfs-actions.pod:2095
10756 #, no-wrap
10757 msgid ""
10758 " int\n"
10759 " guestfs_get_umask (guestfs_h *g);\n"
10760 "\n"
10761 msgstr ""
10762
10763 # type: textblock
10764 #. type: textblock
10765 #: ../src/guestfs-actions.pod:2098
10766 msgid ""
10767 "Return the current umask.  By default the umask is C<022> unless it has been "
10768 "set by calling C<guestfs_umask>."
10769 msgstr ""
10770
10771 # type: =head2
10772 #. type: =head2
10773 #: ../src/guestfs-actions.pod:2105
10774 msgid "guestfs_get_verbose"
10775 msgstr ""
10776
10777 # type: verbatim
10778 #. type: verbatim
10779 #: ../src/guestfs-actions.pod:2107
10780 #, no-wrap
10781 msgid ""
10782 " int\n"
10783 " guestfs_get_verbose (guestfs_h *g);\n"
10784 "\n"
10785 msgstr ""
10786
10787 # type: textblock
10788 #. type: textblock
10789 #: ../src/guestfs-actions.pod:2110 ../fish/guestfish-actions.pod:1425
10790 msgid "This returns the verbose messages flag."
10791 msgstr ""
10792
10793 # type: =head2
10794 #. type: =head2
10795 #: ../src/guestfs-actions.pod:2116
10796 msgid "guestfs_getcon"
10797 msgstr ""
10798
10799 # type: verbatim
10800 #. type: verbatim
10801 #: ../src/guestfs-actions.pod:2118
10802 #, no-wrap
10803 msgid ""
10804 " char *\n"
10805 " guestfs_getcon (guestfs_h *g);\n"
10806 "\n"
10807 msgstr ""
10808
10809 # type: textblock
10810 #. type: textblock
10811 #: ../src/guestfs-actions.pod:2121 ../fish/guestfish-actions.pod:1431
10812 msgid "This gets the SELinux security context of the daemon."
10813 msgstr ""
10814
10815 # type: textblock
10816 #. type: textblock
10817 #: ../src/guestfs-actions.pod:2123
10818 msgid ""
10819 "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
10820 msgstr ""
10821
10822 # type: =head2
10823 #. type: =head2
10824 #: ../src/guestfs-actions.pod:2131
10825 msgid "guestfs_getxattr"
10826 msgstr ""
10827
10828 # type: verbatim
10829 #. type: verbatim
10830 #: ../src/guestfs-actions.pod:2133
10831 #, no-wrap
10832 msgid ""
10833 " char *\n"
10834 " guestfs_getxattr (guestfs_h *g,\n"
10835 "                   const char *path,\n"
10836 "                   const char *name,\n"
10837 "                   size_t *size_r);\n"
10838 "\n"
10839 msgstr ""
10840
10841 # type: textblock
10842 #. type: textblock
10843 #: ../src/guestfs-actions.pod:2139
10844 msgid ""
10845 "Get a single extended attribute from file C<path> named C<name>.  This call "
10846 "follows symlinks.  If you want to lookup an extended attribute for the "
10847 "symlink itself, use C<guestfs_lgetxattr>."
10848 msgstr ""
10849
10850 # type: textblock
10851 #. type: textblock
10852 #: ../src/guestfs-actions.pod:2143 ../src/guestfs-actions.pod:3512
10853 msgid ""
10854 "Normally it is better to get all extended attributes from a file in one go "
10855 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
10856 "implementations are buggy and do not provide a way to list out attributes.  "
10857 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
10858 "extended attributes you want in advance and call this function."
10859 msgstr ""
10860
10861 # type: textblock
10862 #. type: textblock
10863 #: ../src/guestfs-actions.pod:2150 ../src/guestfs-actions.pod:3519
10864 #: ../fish/guestfish-actions.pod:1451 ../fish/guestfish-actions.pod:2457
10865 msgid ""
10866 "Extended attribute values are blobs of binary data.  If there is no extended "
10867 "attribute named C<name>, this returns an error."
10868 msgstr ""
10869
10870 # type: textblock
10871 #. type: textblock
10872 #: ../src/guestfs-actions.pod:2153
10873 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
10874 msgstr ""
10875
10876 # type: textblock
10877 #. type: textblock
10878 #: ../src/guestfs-actions.pod:2155 ../src/guestfs-actions.pod:2346
10879 #: ../src/guestfs-actions.pod:3524 ../src/guestfs-actions.pod:5257
10880 #: ../src/guestfs-actions.pod:5283 ../src/guestfs-actions.pod:5464
10881 msgid ""
10882 "This function returns a buffer, or NULL on error.  The size of the returned "
10883 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
10884 "after use>."
10885 msgstr ""
10886
10887 #. type: textblock
10888 #: ../src/guestfs-actions.pod:2159 ../src/guestfs-actions.pod:3528
10889 msgid "(Added in 1.7.24)"
10890 msgstr ""
10891
10892 # type: =head2
10893 #. type: =head2
10894 #: ../src/guestfs-actions.pod:2161
10895 msgid "guestfs_getxattrs"
10896 msgstr ""
10897
10898 # type: verbatim
10899 #. type: verbatim
10900 #: ../src/guestfs-actions.pod:2163
10901 #, no-wrap
10902 msgid ""
10903 " struct guestfs_xattr_list *\n"
10904 " guestfs_getxattrs (guestfs_h *g,\n"
10905 "                    const char *path);\n"
10906 "\n"
10907 msgstr ""
10908
10909 # type: textblock
10910 #. type: textblock
10911 #: ../src/guestfs-actions.pod:2167 ../fish/guestfish-actions.pod:1460
10912 msgid ""
10913 "This call lists the extended attributes of the file or directory C<path>."
10914 msgstr ""
10915
10916 # type: textblock
10917 #. type: textblock
10918 #: ../src/guestfs-actions.pod:2170 ../fish/guestfish-actions.pod:1463
10919 msgid ""
10920 "At the system call level, this is a combination of the L<listxattr(2)> and "
10921 "L<getxattr(2)> calls."
10922 msgstr ""
10923
10924 # type: textblock
10925 #. type: textblock
10926 #: ../src/guestfs-actions.pod:2173
10927 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
10928 msgstr ""
10929
10930 # type: textblock
10931 #. type: textblock
10932 #: ../src/guestfs-actions.pod:2175 ../src/guestfs-actions.pod:3540
10933 #: ../src/guestfs-actions.pod:4191
10934 msgid ""
10935 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
10936 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
10937 msgstr ""
10938
10939 # type: textblock
10940 #. type: textblock
10941 #: ../src/guestfs-actions.pod:2179 ../src/guestfs-actions.pod:3544
10942 #: ../src/guestfs-actions.pod:3709 ../src/guestfs-actions.pod:3745
10943 #: ../src/guestfs-actions.pod:5637 ../src/guestfs-actions.pod:6125
10944 #: ../src/guestfs-actions.pod:7495
10945 msgid "(Added in 1.0.59)"
10946 msgstr ""
10947
10948 # type: =head2
10949 #. type: =head2
10950 #: ../src/guestfs-actions.pod:2181
10951 msgid "guestfs_glob_expand"
10952 msgstr ""
10953
10954 # type: verbatim
10955 #. type: verbatim
10956 #: ../src/guestfs-actions.pod:2183
10957 #, no-wrap
10958 msgid ""
10959 " char **\n"
10960 " guestfs_glob_expand (guestfs_h *g,\n"
10961 "                      const char *pattern);\n"
10962 "\n"
10963 msgstr ""
10964
10965 # type: textblock
10966 #. type: textblock
10967 #: ../src/guestfs-actions.pod:2187 ../fish/guestfish-actions.pod:1472
10968 msgid ""
10969 "This command searches for all the pathnames matching C<pattern> according to "
10970 "the wildcard expansion rules used by the shell."
10971 msgstr ""
10972
10973 # type: textblock
10974 #. type: textblock
10975 #: ../src/guestfs-actions.pod:2191 ../fish/guestfish-actions.pod:1476
10976 msgid ""
10977 "If no paths match, then this returns an empty list (note: not an error)."
10978 msgstr ""
10979
10980 # type: textblock
10981 #. type: textblock
10982 #: ../src/guestfs-actions.pod:2194 ../fish/guestfish-actions.pod:1479
10983 msgid ""
10984 "It is just a wrapper around the C L<glob(3)> function with flags C<GLOB_MARK|"
10985 "GLOB_BRACE>.  See that manual page for more details."
10986 msgstr ""
10987
10988 # type: textblock
10989 #. type: textblock
10990 #: ../src/guestfs-actions.pod:2202 ../src/guestfs-actions.pod:6318
10991 #: ../src/guestfs-actions.pod:6335
10992 msgid "(Added in 1.0.50)"
10993 msgstr ""
10994
10995 # type: =head2
10996 #. type: =head2
10997 #: ../src/guestfs-actions.pod:2204
10998 msgid "guestfs_grep"
10999 msgstr ""
11000
11001 # type: verbatim
11002 #. type: verbatim
11003 #: ../src/guestfs-actions.pod:2206
11004 #, no-wrap
11005 msgid ""
11006 " char **\n"
11007 " guestfs_grep (guestfs_h *g,\n"
11008 "               const char *regex,\n"
11009 "               const char *path);\n"
11010 "\n"
11011 msgstr ""
11012
11013 # type: textblock
11014 #. type: textblock
11015 #: ../src/guestfs-actions.pod:2211 ../fish/guestfish-actions.pod:1487
11016 msgid "This calls the external C<grep> program and returns the matching lines."
11017 msgstr ""
11018
11019 # type: =head2
11020 #. type: =head2
11021 #: ../src/guestfs-actions.pod:2223
11022 msgid "guestfs_grepi"
11023 msgstr ""
11024
11025 # type: verbatim
11026 #. type: verbatim
11027 #: ../src/guestfs-actions.pod:2225
11028 #, no-wrap
11029 msgid ""
11030 " char **\n"
11031 " guestfs_grepi (guestfs_h *g,\n"
11032 "                const char *regex,\n"
11033 "                const char *path);\n"
11034 "\n"
11035 msgstr ""
11036
11037 # type: textblock
11038 #. type: textblock
11039 #: ../src/guestfs-actions.pod:2230 ../fish/guestfish-actions.pod:1497
11040 msgid ""
11041 "This calls the external C<grep -i> program and returns the matching lines."
11042 msgstr ""
11043
11044 # type: =head2
11045 #. type: =head2
11046 #: ../src/guestfs-actions.pod:2242
11047 msgid "guestfs_grub_install"
11048 msgstr ""
11049
11050 # type: verbatim
11051 #. type: verbatim
11052 #: ../src/guestfs-actions.pod:2244
11053 #, no-wrap
11054 msgid ""
11055 " int\n"
11056 " guestfs_grub_install (guestfs_h *g,\n"
11057 "                       const char *root,\n"
11058 "                       const char *device);\n"
11059 "\n"
11060 msgstr ""
11061
11062 # type: textblock
11063 #. type: textblock
11064 #: ../src/guestfs-actions.pod:2249 ../fish/guestfish-actions.pod:1507
11065 msgid ""
11066 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
11067 "the root directory being C<root>."
11068 msgstr ""
11069
11070 # type: textblock
11071 #. type: textblock
11072 #: ../src/guestfs-actions.pod:2252 ../fish/guestfish-actions.pod:1510
11073 msgid ""
11074 "Note: If grub-install reports the error \"No suitable drive was found in the "
11075 "generated device map.\" it may be that you need to create a C</boot/grub/"
11076 "device.map> file first that contains the mapping between grub device names "
11077 "and Linux device names.  It is usually sufficient to create a file "
11078 "containing:"
11079 msgstr ""
11080
11081 # type: verbatim
11082 #. type: verbatim
11083 #: ../src/guestfs-actions.pod:2259 ../fish/guestfish-actions.pod:1517
11084 #, no-wrap
11085 msgid ""
11086 " (hd0) /dev/vda\n"
11087 "\n"
11088 msgstr ""
11089
11090 # type: textblock
11091 #. type: textblock
11092 #: ../src/guestfs-actions.pod:2261 ../fish/guestfish-actions.pod:1519
11093 msgid "replacing C</dev/vda> with the name of the installation device."
11094 msgstr ""
11095
11096 # type: textblock
11097 #. type: textblock
11098 #: ../src/guestfs-actions.pod:2265
11099 msgid "(Added in 1.0.17)"
11100 msgstr ""
11101
11102 # type: =head2
11103 #. type: =head2
11104 #: ../src/guestfs-actions.pod:2267
11105 msgid "guestfs_head"
11106 msgstr ""
11107
11108 # type: verbatim
11109 #. type: verbatim
11110 #: ../src/guestfs-actions.pod:2269
11111 #, no-wrap
11112 msgid ""
11113 " char **\n"
11114 " guestfs_head (guestfs_h *g,\n"
11115 "               const char *path);\n"
11116 "\n"
11117 msgstr ""
11118
11119 # type: textblock
11120 #. type: textblock
11121 #: ../src/guestfs-actions.pod:2273 ../fish/guestfish-actions.pod:1525
11122 msgid ""
11123 "This command returns up to the first 10 lines of a file as a list of strings."
11124 msgstr ""
11125
11126 # type: =head2
11127 #. type: =head2
11128 #: ../src/guestfs-actions.pod:2285
11129 msgid "guestfs_head_n"
11130 msgstr ""
11131
11132 # type: verbatim
11133 #. type: verbatim
11134 #: ../src/guestfs-actions.pod:2287
11135 #, no-wrap
11136 msgid ""
11137 " char **\n"
11138 " guestfs_head_n (guestfs_h *g,\n"
11139 "                 int nrlines,\n"
11140 "                 const char *path);\n"
11141 "\n"
11142 msgstr ""
11143
11144 # type: textblock
11145 #. type: textblock
11146 #: ../src/guestfs-actions.pod:2292 ../fish/guestfish-actions.pod:1535
11147 msgid ""
11148 "If the parameter C<nrlines> is a positive number, this returns the first "
11149 "C<nrlines> lines of the file C<path>."
11150 msgstr ""
11151
11152 # type: textblock
11153 #. type: textblock
11154 #: ../src/guestfs-actions.pod:2295 ../fish/guestfish-actions.pod:1538
11155 msgid ""
11156 "If the parameter C<nrlines> is a negative number, this returns lines from "
11157 "the file C<path>, excluding the last C<nrlines> lines."
11158 msgstr ""
11159
11160 # type: textblock
11161 #. type: textblock
11162 #: ../src/guestfs-actions.pod:2298 ../src/guestfs-actions.pod:6615
11163 #: ../fish/guestfish-actions.pod:1541 ../fish/guestfish-actions.pod:4471
11164 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
11165 msgstr ""
11166
11167 # type: =head2
11168 #. type: =head2
11169 #: ../src/guestfs-actions.pod:2309
11170 msgid "guestfs_hexdump"
11171 msgstr ""
11172
11173 # type: verbatim
11174 #. type: verbatim
11175 #: ../src/guestfs-actions.pod:2311
11176 #, no-wrap
11177 msgid ""
11178 " char *\n"
11179 " guestfs_hexdump (guestfs_h *g,\n"
11180 "                  const char *path);\n"
11181 "\n"
11182 msgstr ""
11183
11184 # type: textblock
11185 #. type: textblock
11186 #: ../src/guestfs-actions.pod:2315 ../fish/guestfish-actions.pod:1550
11187 msgid ""
11188 "This runs C<hexdump -C> on the given C<path>.  The result is the human-"
11189 "readable, canonical hex dump of the file."
11190 msgstr ""
11191
11192 # type: textblock
11193 #. type: textblock
11194 #: ../src/guestfs-actions.pod:2324 ../src/guestfs-actions.pod:6399
11195 #: ../src/guestfs-actions.pod:6454
11196 msgid "(Added in 1.0.22)"
11197 msgstr ""
11198
11199 # type: =head2
11200 #. type: =head2
11201 #: ../src/guestfs-actions.pod:2326
11202 msgid "guestfs_initrd_cat"
11203 msgstr ""
11204
11205 # type: verbatim
11206 #. type: verbatim
11207 #: ../src/guestfs-actions.pod:2328
11208 #, no-wrap
11209 msgid ""
11210 " char *\n"
11211 " guestfs_initrd_cat (guestfs_h *g,\n"
11212 "                     const char *initrdpath,\n"
11213 "                     const char *filename,\n"
11214 "                     size_t *size_r);\n"
11215 "\n"
11216 msgstr ""
11217
11218 # type: textblock
11219 #. type: textblock
11220 #: ../src/guestfs-actions.pod:2334 ../fish/guestfish-actions.pod:1560
11221 msgid ""
11222 "This command unpacks the file C<filename> from the initrd file called "
11223 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
11224 "character."
11225 msgstr ""
11226
11227 # type: textblock
11228 #. type: textblock
11229 #: ../src/guestfs-actions.pod:2338 ../fish/guestfish-actions.pod:1564
11230 msgid ""
11231 "For example, in guestfish you could use the following command to examine the "
11232 "boot script (usually called C</init>)  contained in a Linux initrd or "
11233 "initramfs image:"
11234 msgstr ""
11235
11236 # type: verbatim
11237 #. type: verbatim
11238 #: ../src/guestfs-actions.pod:2342 ../fish/guestfish-actions.pod:1568
11239 #, no-wrap
11240 msgid ""
11241 " initrd-cat /boot/initrd-<version>.img init\n"
11242 "\n"
11243 msgstr ""
11244
11245 # type: textblock
11246 #. type: textblock
11247 #: ../src/guestfs-actions.pod:2344
11248 msgid "See also C<guestfs_initrd_list>."
11249 msgstr ""
11250
11251 # type: =head2
11252 #. type: =head2
11253 #: ../src/guestfs-actions.pod:2355
11254 msgid "guestfs_initrd_list"
11255 msgstr ""
11256
11257 # type: verbatim
11258 #. type: verbatim
11259 #: ../src/guestfs-actions.pod:2357
11260 #, no-wrap
11261 msgid ""
11262 " char **\n"
11263 " guestfs_initrd_list (guestfs_h *g,\n"
11264 "                      const char *path);\n"
11265 "\n"
11266 msgstr ""
11267
11268 # type: textblock
11269 #. type: textblock
11270 #: ../src/guestfs-actions.pod:2361 ../fish/guestfish-actions.pod:1579
11271 msgid "This command lists out files contained in an initrd."
11272 msgstr ""
11273
11274 # type: textblock
11275 #. type: textblock
11276 #: ../src/guestfs-actions.pod:2363 ../fish/guestfish-actions.pod:1581
11277 msgid ""
11278 "The files are listed without any initial C</> character.  The files are "
11279 "listed in the order they appear (not necessarily alphabetical).  Directory "
11280 "names are listed as separate items."
11281 msgstr ""
11282
11283 # type: textblock
11284 #. type: textblock
11285 #: ../src/guestfs-actions.pod:2367 ../fish/guestfish-actions.pod:1585
11286 msgid ""
11287 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
11288 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
11289 "files)."
11290 msgstr ""
11291
11292 # type: =head2
11293 #. type: =head2
11294 #: ../src/guestfs-actions.pod:2377
11295 msgid "guestfs_inotify_add_watch"
11296 msgstr ""
11297
11298 # type: verbatim
11299 #. type: verbatim
11300 #: ../src/guestfs-actions.pod:2379
11301 #, no-wrap
11302 msgid ""
11303 " int64_t\n"
11304 " guestfs_inotify_add_watch (guestfs_h *g,\n"
11305 "                            const char *path,\n"
11306 "                            int mask);\n"
11307 "\n"
11308 msgstr ""
11309
11310 # type: textblock
11311 #. type: textblock
11312 #: ../src/guestfs-actions.pod:2384 ../fish/guestfish-actions.pod:1593
11313 msgid "Watch C<path> for the events listed in C<mask>."
11314 msgstr ""
11315
11316 # type: textblock
11317 #. type: textblock
11318 #: ../src/guestfs-actions.pod:2386 ../fish/guestfish-actions.pod:1595
11319 msgid ""
11320 "Note that if C<path> is a directory then events within that directory are "
11321 "watched, but this does I<not> happen recursively (in subdirectories)."
11322 msgstr ""
11323
11324 # type: textblock
11325 #. type: textblock
11326 #: ../src/guestfs-actions.pod:2390 ../fish/guestfish-actions.pod:1599
11327 msgid ""
11328 "Note for non-C or non-Linux callers: the inotify events are defined by the "
11329 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
11330 msgstr ""
11331
11332 # type: =head2
11333 #. type: =head2
11334 #: ../src/guestfs-actions.pod:2398
11335 msgid "guestfs_inotify_close"
11336 msgstr ""
11337
11338 # type: verbatim
11339 #. type: verbatim
11340 #: ../src/guestfs-actions.pod:2400
11341 #, no-wrap
11342 msgid ""
11343 " int\n"
11344 " guestfs_inotify_close (guestfs_h *g);\n"
11345 "\n"
11346 msgstr ""
11347
11348 # type: textblock
11349 #. type: textblock
11350 #: ../src/guestfs-actions.pod:2403 ../fish/guestfish-actions.pod:1607
11351 msgid ""
11352 "This closes the inotify handle which was previously opened by inotify_init.  "
11353 "It removes all watches, throws away any pending events, and deallocates all "
11354 "resources."
11355 msgstr ""
11356
11357 # type: =head2
11358 #. type: =head2
11359 #: ../src/guestfs-actions.pod:2411
11360 msgid "guestfs_inotify_files"
11361 msgstr ""
11362
11363 # type: verbatim
11364 #. type: verbatim
11365 #: ../src/guestfs-actions.pod:2413
11366 #, no-wrap
11367 msgid ""
11368 " char **\n"
11369 " guestfs_inotify_files (guestfs_h *g);\n"
11370 "\n"
11371 msgstr ""
11372
11373 # type: textblock
11374 #. type: textblock
11375 #: ../src/guestfs-actions.pod:2416
11376 msgid ""
11377 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
11378 "returns a list of pathnames of objects that were touched.  The returned "
11379 "pathnames are sorted and deduplicated."
11380 msgstr ""
11381
11382 # type: =head2
11383 #. type: =head2
11384 #: ../src/guestfs-actions.pod:2426
11385 msgid "guestfs_inotify_init"
11386 msgstr ""
11387
11388 # type: verbatim
11389 #. type: verbatim
11390 #: ../src/guestfs-actions.pod:2428
11391 #, no-wrap
11392 msgid ""
11393 " int\n"
11394 " guestfs_inotify_init (guestfs_h *g,\n"
11395 "                       int maxevents);\n"
11396 "\n"
11397 msgstr ""
11398
11399 # type: textblock
11400 #. type: textblock
11401 #: ../src/guestfs-actions.pod:2432 ../fish/guestfish-actions.pod:1623
11402 msgid ""
11403 "This command creates a new inotify handle.  The inotify subsystem can be "
11404 "used to notify events which happen to objects in the guest filesystem."
11405 msgstr ""
11406
11407 # type: textblock
11408 #. type: textblock
11409 #: ../src/guestfs-actions.pod:2436
11410 msgid ""
11411 "C<maxevents> is the maximum number of events which will be queued up between "
11412 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
11413 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
11414 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
11415 "throws away events, but records the fact that it threw them away by setting "
11416 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
11417 "C<guestfs_inotify_read>)."
11418 msgstr ""
11419
11420 # type: textblock
11421 #. type: textblock
11422 #: ../src/guestfs-actions.pod:2446
11423 msgid ""
11424 "Before any events are generated, you have to add some watches to the "
11425 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
11426 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
11427 msgstr ""
11428
11429 # type: textblock
11430 #. type: textblock
11431 #: ../src/guestfs-actions.pod:2452
11432 msgid ""
11433 "Queued up events should be read periodically by calling "
11434 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
11435 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
11436 "often enough then you risk the internal queue overflowing."
11437 msgstr ""
11438
11439 # type: textblock
11440 #. type: textblock
11441 #: ../src/guestfs-actions.pod:2459
11442 msgid ""
11443 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
11444 "This also removes any watches automatically."
11445 msgstr ""
11446
11447 # type: textblock
11448 #. type: textblock
11449 #: ../src/guestfs-actions.pod:2463 ../fish/guestfish-actions.pod:1654
11450 msgid ""
11451 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
11452 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
11453 "that there is one global inotify handle per libguestfs instance."
11454 msgstr ""
11455
11456 # type: =head2
11457 #. type: =head2
11458 #: ../src/guestfs-actions.pod:2472
11459 msgid "guestfs_inotify_read"
11460 msgstr ""
11461
11462 # type: verbatim
11463 #. type: verbatim
11464 #: ../src/guestfs-actions.pod:2474
11465 #, no-wrap
11466 msgid ""
11467 " struct guestfs_inotify_event_list *\n"
11468 " guestfs_inotify_read (guestfs_h *g);\n"
11469 "\n"
11470 msgstr ""
11471
11472 # type: textblock
11473 #. type: textblock
11474 #: ../src/guestfs-actions.pod:2477 ../fish/guestfish-actions.pod:1663
11475 msgid ""
11476 "Return the complete queue of events that have happened since the previous "
11477 "read call."
11478 msgstr ""
11479
11480 # type: textblock
11481 #. type: textblock
11482 #: ../src/guestfs-actions.pod:2480 ../fish/guestfish-actions.pod:1666
11483 msgid "If no events have happened, this returns an empty list."
11484 msgstr ""
11485
11486 # type: textblock
11487 #. type: textblock
11488 #: ../src/guestfs-actions.pod:2482 ../fish/guestfish-actions.pod:1668
11489 msgid ""
11490 "I<Note>: In order to make sure that all events have been read, you must call "
11491 "this function repeatedly until it returns an empty list.  The reason is that "
11492 "the call will read events up to the maximum appliance-to-host message size "
11493 "and leave remaining events in the queue."
11494 msgstr ""
11495
11496 # type: textblock
11497 #. type: textblock
11498 #: ../src/guestfs-actions.pod:2488
11499 msgid ""
11500 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
11501 "there was an error.  I<The caller must call "
11502 "C<guestfs_free_inotify_event_list> after use>."
11503 msgstr ""
11504
11505 # type: =head2
11506 #. type: =head2
11507 #: ../src/guestfs-actions.pod:2494
11508 msgid "guestfs_inotify_rm_watch"
11509 msgstr ""
11510
11511 # type: verbatim
11512 #. type: verbatim
11513 #: ../src/guestfs-actions.pod:2496
11514 #, no-wrap
11515 msgid ""
11516 " int\n"
11517 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
11518 "                           int wd);\n"
11519 "\n"
11520 msgstr ""
11521
11522 # type: textblock
11523 #. type: textblock
11524 #: ../src/guestfs-actions.pod:2500
11525 msgid ""
11526 "Remove a previously defined inotify watch.  See C<guestfs_inotify_add_watch>."
11527 msgstr ""
11528
11529 # type: =head2
11530 #. type: =head2
11531 #: ../src/guestfs-actions.pod:2507
11532 msgid "guestfs_inspect_get_arch"
11533 msgstr ""
11534
11535 # type: verbatim
11536 #. type: verbatim
11537 #: ../src/guestfs-actions.pod:2509
11538 #, no-wrap
11539 msgid ""
11540 " char *\n"
11541 " guestfs_inspect_get_arch (guestfs_h *g,\n"
11542 "                           const char *root);\n"
11543 "\n"
11544 msgstr ""
11545
11546 # type: textblock
11547 #. type: textblock
11548 #: ../src/guestfs-actions.pod:2513 ../src/guestfs-actions.pod:2536
11549 #: ../src/guestfs-actions.pod:2629 ../src/guestfs-actions.pod:2673
11550 #: ../src/guestfs-actions.pod:2699 ../src/guestfs-actions.pod:2738
11551 #: ../src/guestfs-actions.pod:2760 ../src/guestfs-actions.pod:2787
11552 #: ../src/guestfs-actions.pod:2808 ../src/guestfs-actions.pod:2851
11553 #: ../src/guestfs-actions.pod:2880 ../src/guestfs-actions.pod:2911
11554 #: ../src/guestfs-actions.pod:2935 ../src/guestfs-actions.pod:2990
11555 #: ../src/guestfs-actions.pod:3032 ../src/guestfs-actions.pod:3053
11556 #: ../src/guestfs-actions.pod:3076 ../src/guestfs-actions.pod:3093
11557 #: ../src/guestfs-actions.pod:3110 ../src/guestfs-actions.pod:3129
11558 msgid ""
11559 "This function should only be called with a root device string as returned by "
11560 "C<guestfs_inspect_os>."
11561 msgstr ""
11562
11563 # type: textblock
11564 #. type: textblock
11565 #: ../src/guestfs-actions.pod:2516
11566 msgid ""
11567 "This returns the architecture of the inspected operating system.  The "
11568 "possible return values are listed under C<guestfs_file_architecture>."
11569 msgstr ""
11570
11571 # type: textblock
11572 #. type: textblock
11573 #: ../src/guestfs-actions.pod:2520 ../fish/guestfish-actions.pod:1692
11574 msgid ""
11575 "If the architecture could not be determined, then the string C<unknown> is "
11576 "returned."
11577 msgstr ""
11578
11579 # type: textblock
11580 #. type: textblock
11581 #: ../src/guestfs-actions.pod:2523 ../src/guestfs-actions.pod:2616
11582 #: ../src/guestfs-actions.pod:2727 ../src/guestfs-actions.pod:2747
11583 #: ../src/guestfs-actions.pod:2775 ../src/guestfs-actions.pod:2867
11584 #: ../src/guestfs-actions.pod:2898 ../src/guestfs-actions.pod:2922
11585 #: ../src/guestfs-actions.pod:2976 ../src/guestfs-actions.pod:3019
11586 #: ../src/guestfs-actions.pod:3042 ../src/guestfs-actions.pod:3063
11587 #: ../src/guestfs-actions.pod:3083 ../src/guestfs-actions.pod:3100
11588 #: ../src/guestfs-actions.pod:3119 ../src/guestfs-actions.pod:3222
11589 #: ../src/guestfs-actions.pod:3263 ../fish/guestfish-actions.pod:1695
11590 #: ../fish/guestfish-actions.pod:1781 ../fish/guestfish-actions.pod:1869
11591 #: ../fish/guestfish-actions.pod:1884 ../fish/guestfish-actions.pod:1905
11592 #: ../fish/guestfish-actions.pod:1975 ../fish/guestfish-actions.pod:1999
11593 #: ../fish/guestfish-actions.pod:2016 ../fish/guestfish-actions.pod:2059
11594 #: ../fish/guestfish-actions.pod:2094 ../fish/guestfish-actions.pod:2110
11595 #: ../fish/guestfish-actions.pod:2126 ../fish/guestfish-actions.pod:2139
11596 #: ../fish/guestfish-actions.pod:2152 ../fish/guestfish-actions.pod:2167
11597 #: ../fish/guestfish-actions.pod:2266 ../fish/guestfish-actions.pod:2300
11598 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
11599 msgstr ""
11600
11601 # type: =head2
11602 #. type: =head2
11603 #: ../src/guestfs-actions.pod:2530
11604 msgid "guestfs_inspect_get_distro"
11605 msgstr ""
11606
11607 # type: verbatim
11608 #. type: verbatim
11609 #: ../src/guestfs-actions.pod:2532
11610 #, no-wrap
11611 msgid ""
11612 " char *\n"
11613 " guestfs_inspect_get_distro (guestfs_h *g,\n"
11614 "                             const char *root);\n"
11615 "\n"
11616 msgstr ""
11617
11618 # type: textblock
11619 #. type: textblock
11620 #: ../src/guestfs-actions.pod:2539 ../fish/guestfish-actions.pod:1704
11621 msgid ""
11622 "This returns the distro (distribution) of the inspected operating system."
11623 msgstr ""
11624
11625 # type: textblock
11626 #. type: textblock
11627 #: ../src/guestfs-actions.pod:2542 ../fish/guestfish-actions.pod:1707
11628 msgid "Currently defined distros are:"
11629 msgstr ""
11630
11631 # type: =item
11632 #. type: =item
11633 #: ../src/guestfs-actions.pod:2546 ../fish/guestfish-actions.pod:1711
11634 msgid "\"archlinux\""
11635 msgstr ""
11636
11637 # type: textblock
11638 #. type: textblock
11639 #: ../src/guestfs-actions.pod:2548 ../fish/guestfish-actions.pod:1713
11640 msgid "Arch Linux."
11641 msgstr ""
11642
11643 #. type: =item
11644 #: ../src/guestfs-actions.pod:2550 ../fish/guestfish-actions.pod:1715
11645 msgid "\"centos\""
11646 msgstr ""
11647
11648 #. type: textblock
11649 #: ../src/guestfs-actions.pod:2552 ../fish/guestfish-actions.pod:1717
11650 msgid "CentOS."
11651 msgstr ""
11652
11653 # type: =item
11654 #. type: =item
11655 #: ../src/guestfs-actions.pod:2554 ../fish/guestfish-actions.pod:1719
11656 msgid "\"debian\""
11657 msgstr ""
11658
11659 # type: textblock
11660 #. type: textblock
11661 #: ../src/guestfs-actions.pod:2556 ../fish/guestfish-actions.pod:1721
11662 msgid "Debian."
11663 msgstr ""
11664
11665 # type: =item
11666 #. type: =item
11667 #: ../src/guestfs-actions.pod:2558 ../fish/guestfish-actions.pod:1723
11668 msgid "\"fedora\""
11669 msgstr ""
11670
11671 # type: textblock
11672 #. type: textblock
11673 #: ../src/guestfs-actions.pod:2560 ../fish/guestfish-actions.pod:1725
11674 msgid "Fedora."
11675 msgstr ""
11676
11677 # type: =item
11678 #. type: =item
11679 #: ../src/guestfs-actions.pod:2562 ../fish/guestfish-actions.pod:1727
11680 msgid "\"gentoo\""
11681 msgstr ""
11682
11683 # type: textblock
11684 #. type: textblock
11685 #: ../src/guestfs-actions.pod:2564 ../fish/guestfish-actions.pod:1729
11686 msgid "Gentoo."
11687 msgstr ""
11688
11689 # type: =item
11690 #. type: =item
11691 #: ../src/guestfs-actions.pod:2566 ../fish/guestfish-actions.pod:1731
11692 msgid "\"linuxmint\""
11693 msgstr ""
11694
11695 # type: textblock
11696 #. type: textblock
11697 #: ../src/guestfs-actions.pod:2568 ../fish/guestfish-actions.pod:1733
11698 msgid "Linux Mint."
11699 msgstr ""
11700
11701 # type: =item
11702 #. type: =item
11703 #: ../src/guestfs-actions.pod:2570 ../fish/guestfish-actions.pod:1735
11704 msgid "\"mandriva\""
11705 msgstr ""
11706
11707 # type: textblock
11708 #. type: textblock
11709 #: ../src/guestfs-actions.pod:2572 ../fish/guestfish-actions.pod:1737
11710 msgid "Mandriva."
11711 msgstr ""
11712
11713 # type: =item
11714 #. type: =item
11715 #: ../src/guestfs-actions.pod:2574 ../fish/guestfish-actions.pod:1739
11716 msgid "\"meego\""
11717 msgstr ""
11718
11719 # type: textblock
11720 #. type: textblock
11721 #: ../src/guestfs-actions.pod:2576 ../fish/guestfish-actions.pod:1741
11722 msgid "MeeGo."
11723 msgstr ""
11724
11725 # type: =item
11726 #. type: =item
11727 #: ../src/guestfs-actions.pod:2578 ../fish/guestfish-actions.pod:1743
11728 msgid "\"pardus\""
11729 msgstr ""
11730
11731 # type: textblock
11732 #. type: textblock
11733 #: ../src/guestfs-actions.pod:2580 ../fish/guestfish-actions.pod:1745
11734 msgid "Pardus."
11735 msgstr ""
11736
11737 # type: =item
11738 #. type: =item
11739 #: ../src/guestfs-actions.pod:2582 ../fish/guestfish-actions.pod:1747
11740 msgid "\"redhat-based\""
11741 msgstr ""
11742
11743 # type: textblock
11744 #. type: textblock
11745 #: ../src/guestfs-actions.pod:2584 ../fish/guestfish-actions.pod:1749
11746 msgid "Some Red Hat-derived distro."
11747 msgstr ""
11748
11749 # type: =item
11750 #. type: =item
11751 #: ../src/guestfs-actions.pod:2586 ../fish/guestfish-actions.pod:1751
11752 msgid "\"rhel\""
11753 msgstr ""
11754
11755 #. type: textblock
11756 #: ../src/guestfs-actions.pod:2588 ../fish/guestfish-actions.pod:1753
11757 msgid "Red Hat Enterprise Linux."
11758 msgstr ""
11759
11760 #. type: =item
11761 #: ../src/guestfs-actions.pod:2590 ../fish/guestfish-actions.pod:1755
11762 msgid "\"scientificlinux\""
11763 msgstr ""
11764
11765 #. type: textblock
11766 #: ../src/guestfs-actions.pod:2592 ../fish/guestfish-actions.pod:1757
11767 msgid "Scientific Linux."
11768 msgstr ""
11769
11770 #. type: =item
11771 #: ../src/guestfs-actions.pod:2594 ../fish/guestfish-actions.pod:1759
11772 msgid "\"slackware\""
11773 msgstr ""
11774
11775 #. type: textblock
11776 #: ../src/guestfs-actions.pod:2596 ../fish/guestfish-actions.pod:1761
11777 msgid "Slackware."
11778 msgstr ""
11779
11780 # type: =item
11781 #. type: =item
11782 #: ../src/guestfs-actions.pod:2598 ../fish/guestfish-actions.pod:1763
11783 msgid "\"ubuntu\""
11784 msgstr ""
11785
11786 # type: textblock
11787 #. type: textblock
11788 #: ../src/guestfs-actions.pod:2600 ../fish/guestfish-actions.pod:1765
11789 msgid "Ubuntu."
11790 msgstr ""
11791
11792 # type: =item
11793 #. type: =item
11794 #: ../src/guestfs-actions.pod:2602 ../src/guestfs-actions.pod:2718
11795 #: ../src/guestfs-actions.pod:3010 ../fish/guestfish-actions.pod:1767
11796 #: ../fish/guestfish-actions.pod:1860 ../fish/guestfish-actions.pod:2085
11797 msgid "\"unknown\""
11798 msgstr ""
11799
11800 # type: textblock
11801 #. type: textblock
11802 #: ../src/guestfs-actions.pod:2604 ../fish/guestfish-actions.pod:1769
11803 msgid "The distro could not be determined."
11804 msgstr ""
11805
11806 # type: =item
11807 #. type: =item
11808 #: ../src/guestfs-actions.pod:2606 ../src/guestfs-actions.pod:3002
11809 #: ../fish/guestfish-actions.pod:1771 ../fish/guestfish-actions.pod:2077
11810 msgid "\"windows\""
11811 msgstr ""
11812
11813 # type: textblock
11814 #. type: textblock
11815 #: ../src/guestfs-actions.pod:2608 ../fish/guestfish-actions.pod:1773
11816 msgid ""
11817 "Windows does not have distributions.  This string is returned if the OS type "
11818 "is Windows."
11819 msgstr ""
11820
11821 # type: textblock
11822 #. type: textblock
11823 #: ../src/guestfs-actions.pod:2613 ../src/guestfs-actions.pod:2724
11824 #: ../src/guestfs-actions.pod:3016 ../fish/guestfish-actions.pod:1778
11825 #: ../fish/guestfish-actions.pod:1866 ../fish/guestfish-actions.pod:2091
11826 msgid ""
11827 "Future versions of libguestfs may return other strings here.  The caller "
11828 "should be prepared to handle any string."
11829 msgstr ""
11830
11831 #. type: =head2
11832 #: ../src/guestfs-actions.pod:2623
11833 msgid "guestfs_inspect_get_drive_mappings"
11834 msgstr ""
11835
11836 #. type: verbatim
11837 #: ../src/guestfs-actions.pod:2625
11838 #, no-wrap
11839 msgid ""
11840 " char **\n"
11841 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
11842 "                                     const char *root);\n"
11843 "\n"
11844 msgstr ""
11845
11846 #. type: textblock
11847 #: ../src/guestfs-actions.pod:2632 ../fish/guestfish-actions.pod:1790
11848 msgid ""
11849 "This call is useful for Windows which uses a primitive system of assigning "
11850 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
11851 "Windows Registry to find out how disks/partitions are mapped to drive "
11852 "letters, and returns a hash table as in the example below:"
11853 msgstr ""
11854
11855 #. type: verbatim
11856 #: ../src/guestfs-actions.pod:2638 ../fish/guestfish-actions.pod:1796
11857 #, no-wrap
11858 msgid ""
11859 " C      =>     /dev/vda2\n"
11860 " E      =>     /dev/vdb1\n"
11861 " F      =>     /dev/vdc1\n"
11862 "\n"
11863 msgstr ""
11864
11865 #. type: textblock
11866 #: ../src/guestfs-actions.pod:2642 ../fish/guestfish-actions.pod:1800
11867 msgid ""
11868 "Note that keys are drive letters.  For Windows, the key is case insensitive "
11869 "and just contains the drive letter, without the customary colon separator "
11870 "character."
11871 msgstr ""
11872
11873 #. type: textblock
11874 #: ../src/guestfs-actions.pod:2646 ../fish/guestfish-actions.pod:1804
11875 msgid ""
11876 "In future we may support other operating systems that also used drive "
11877 "letters, but the keys for those might not be case insensitive and might be "
11878 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
11879 "C<h1> etc."
11880 msgstr ""
11881
11882 #. type: textblock
11883 #: ../src/guestfs-actions.pod:2651 ../fish/guestfish-actions.pod:1809
11884 msgid ""
11885 "For Windows guests, currently only hard drive mappings are returned.  "
11886 "Removable disks (eg. DVD-ROMs) are ignored."
11887 msgstr ""
11888
11889 #. type: textblock
11890 #: ../src/guestfs-actions.pod:2654 ../fish/guestfish-actions.pod:1812
11891 msgid ""
11892 "For guests that do not use drive mappings, or if the drive mappings could "
11893 "not be determined, this returns an empty hash table."
11894 msgstr ""
11895
11896 #. type: textblock
11897 #: ../src/guestfs-actions.pod:2657
11898 msgid ""
11899 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11900 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
11901 msgstr ""
11902
11903 # type: textblock
11904 #. type: textblock
11905 #: ../src/guestfs-actions.pod:2661 ../src/guestfs-actions.pod:2837
11906 #: ../src/guestfs-actions.pod:3597 ../src/guestfs-actions.pod:4814
11907 #: ../src/guestfs-actions.pod:6756
11908 msgid ""
11909 "This function returns a NULL-terminated array of strings, or NULL if there "
11910 "was an error.  The array of strings will always have length C<2n+1>, where "
11911 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
11912 "caller must free the strings and the array after use>."
11913 msgstr ""
11914
11915 # type: =head2
11916 #. type: =head2
11917 #: ../src/guestfs-actions.pod:2667
11918 msgid "guestfs_inspect_get_filesystems"
11919 msgstr ""
11920
11921 # type: verbatim
11922 #. type: verbatim
11923 #: ../src/guestfs-actions.pod:2669
11924 #, no-wrap
11925 msgid ""
11926 " char **\n"
11927 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
11928 "                                  const char *root);\n"
11929 "\n"
11930 msgstr ""
11931
11932 # type: textblock
11933 #. type: textblock
11934 #: ../src/guestfs-actions.pod:2676 ../fish/guestfish-actions.pod:1826
11935 msgid ""
11936 "This returns a list of all the filesystems that we think are associated with "
11937 "this operating system.  This includes the root filesystem, other ordinary "
11938 "filesystems, and non-mounted devices like swap partitions."
11939 msgstr ""
11940
11941 # type: textblock
11942 #. type: textblock
11943 #: ../src/guestfs-actions.pod:2681 ../fish/guestfish-actions.pod:1831
11944 msgid ""
11945 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
11946 "to be shared between operating systems."
11947 msgstr ""
11948
11949 # type: textblock
11950 #. type: textblock
11951 #: ../src/guestfs-actions.pod:2684
11952 msgid ""
11953 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11954 "C<guestfs_inspect_get_mountpoints>."
11955 msgstr ""
11956
11957 #. type: =head2
11958 #: ../src/guestfs-actions.pod:2693
11959 msgid "guestfs_inspect_get_format"
11960 msgstr ""
11961
11962 #. type: verbatim
11963 #: ../src/guestfs-actions.pod:2695
11964 #, no-wrap
11965 msgid ""
11966 " char *\n"
11967 " guestfs_inspect_get_format (guestfs_h *g,\n"
11968 "                             const char *root);\n"
11969 "\n"
11970 msgstr ""
11971
11972 #. type: textblock
11973 #: ../src/guestfs-actions.pod:2702 ../fish/guestfish-actions.pod:1844
11974 msgid ""
11975 "This returns the format of the inspected operating system.  You can use it "
11976 "to detect install images, live CDs and similar."
11977 msgstr ""
11978
11979 #. type: textblock
11980 #: ../src/guestfs-actions.pod:2705 ../fish/guestfish-actions.pod:1847
11981 msgid "Currently defined formats are:"
11982 msgstr ""
11983
11984 #. type: =item
11985 #: ../src/guestfs-actions.pod:2709 ../fish/guestfish-actions.pod:1851
11986 msgid "\"installed\""
11987 msgstr ""
11988
11989 #. type: textblock
11990 #: ../src/guestfs-actions.pod:2711 ../fish/guestfish-actions.pod:1853
11991 msgid "This is an installed operating system."
11992 msgstr ""
11993
11994 #. type: =item
11995 #: ../src/guestfs-actions.pod:2713 ../fish/guestfish-actions.pod:1855
11996 msgid "\"installer\""
11997 msgstr ""
11998
11999 #. type: textblock
12000 #: ../src/guestfs-actions.pod:2715 ../fish/guestfish-actions.pod:1857
12001 msgid ""
12002 "The disk image being inspected is not an installed operating system, but a "
12003 "I<bootable> install disk, live CD, or similar."
12004 msgstr ""
12005
12006 #. type: textblock
12007 #: ../src/guestfs-actions.pod:2720 ../fish/guestfish-actions.pod:1862
12008 msgid "The format of this disk image is not known."
12009 msgstr ""
12010
12011 # type: =head2
12012 #. type: =head2
12013 #: ../src/guestfs-actions.pod:2732
12014 msgid "guestfs_inspect_get_hostname"
12015 msgstr ""
12016
12017 # type: verbatim
12018 #. type: verbatim
12019 #: ../src/guestfs-actions.pod:2734
12020 #, no-wrap
12021 msgid ""
12022 " char *\n"
12023 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
12024 "                               const char *root);\n"
12025 "\n"
12026 msgstr ""
12027
12028 # type: textblock
12029 #. type: textblock
12030 #: ../src/guestfs-actions.pod:2741 ../fish/guestfish-actions.pod:1878
12031 msgid ""
12032 "This function returns the hostname of the operating system as found by "
12033 "inspection of the guest's configuration files."
12034 msgstr ""
12035
12036 # type: textblock
12037 #. type: textblock
12038 #: ../src/guestfs-actions.pod:2744 ../fish/guestfish-actions.pod:1881
12039 msgid ""
12040 "If the hostname could not be determined, then the string C<unknown> is "
12041 "returned."
12042 msgstr ""
12043
12044 # type: textblock
12045 #. type: textblock
12046 #: ../src/guestfs-actions.pod:2752
12047 msgid "(Added in 1.7.9)"
12048 msgstr ""
12049
12050 # type: =head2
12051 #. type: =head2
12052 #: ../src/guestfs-actions.pod:2754
12053 msgid "guestfs_inspect_get_major_version"
12054 msgstr ""
12055
12056 # type: verbatim
12057 #. type: verbatim
12058 #: ../src/guestfs-actions.pod:2756
12059 #, no-wrap
12060 msgid ""
12061 " int\n"
12062 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
12063 "                                    const char *root);\n"
12064 "\n"
12065 msgstr ""
12066
12067 # type: textblock
12068 #. type: textblock
12069 #: ../src/guestfs-actions.pod:2763 ../fish/guestfish-actions.pod:1893
12070 msgid ""
12071 "This returns the major version number of the inspected operating system."
12072 msgstr ""
12073
12074 # type: textblock
12075 #. type: textblock
12076 #: ../src/guestfs-actions.pod:2766 ../fish/guestfish-actions.pod:1896
12077 msgid ""
12078 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
12079 "popular public names used by the operating system.  Notably the operating "
12080 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
12081 "1).  You can find out the real versions corresponding to releases of Windows "
12082 "by consulting Wikipedia or MSDN."
12083 msgstr ""
12084
12085 # type: textblock
12086 #. type: textblock
12087 #: ../src/guestfs-actions.pod:2773 ../src/guestfs-actions.pod:2793
12088 #: ../fish/guestfish-actions.pod:1903 ../fish/guestfish-actions.pod:1917
12089 msgid "If the version could not be determined, then C<0> is returned."
12090 msgstr ""
12091
12092 # type: =head2
12093 #. type: =head2
12094 #: ../src/guestfs-actions.pod:2781
12095 msgid "guestfs_inspect_get_minor_version"
12096 msgstr ""
12097
12098 # type: verbatim
12099 #. type: verbatim
12100 #: ../src/guestfs-actions.pod:2783
12101 #, no-wrap
12102 msgid ""
12103 " int\n"
12104 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
12105 "                                    const char *root);\n"
12106 "\n"
12107 msgstr ""
12108
12109 # type: textblock
12110 #. type: textblock
12111 #: ../src/guestfs-actions.pod:2790 ../fish/guestfish-actions.pod:1914
12112 msgid ""
12113 "This returns the minor version number of the inspected operating system."
12114 msgstr ""
12115
12116 # type: textblock
12117 #. type: textblock
12118 #: ../src/guestfs-actions.pod:2795
12119 msgid ""
12120 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
12121 "C<guestfs_inspect_get_major_version>."
12122 msgstr ""
12123
12124 # type: =head2
12125 #. type: =head2
12126 #: ../src/guestfs-actions.pod:2802
12127 msgid "guestfs_inspect_get_mountpoints"
12128 msgstr ""
12129
12130 # type: verbatim
12131 #. type: verbatim
12132 #: ../src/guestfs-actions.pod:2804
12133 #, no-wrap
12134 msgid ""
12135 " char **\n"
12136 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
12137 "                                  const char *root);\n"
12138 "\n"
12139 msgstr ""
12140
12141 #. type: textblock
12142 #: ../src/guestfs-actions.pod:2811 ../fish/guestfish-actions.pod:1929
12143 msgid ""
12144 "This returns a hash of where we think the filesystems associated with this "
12145 "operating system should be mounted.  Callers should note that this is at "
12146 "best an educated guess made by reading configuration files such as C</etc/"
12147 "fstab>.  I<In particular note> that this may return filesystems which are "
12148 "non-existent or not mountable and callers should be prepared to handle or "
12149 "ignore failures if they try to mount them."
12150 msgstr ""
12151
12152 # type: textblock
12153 #. type: textblock
12154 #: ../src/guestfs-actions.pod:2820 ../fish/guestfish-actions.pod:1938
12155 msgid ""
12156 "Each element in the returned hashtable has a key which is the path of the "
12157 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
12158 "mounted there (eg. C</dev/sda1>)."
12159 msgstr ""
12160
12161 # type: textblock
12162 #. type: textblock
12163 #: ../src/guestfs-actions.pod:2825 ../fish/guestfish-actions.pod:1943
12164 msgid ""
12165 "Non-mounted devices such as swap devices are I<not> returned in this list."
12166 msgstr ""
12167
12168 #. type: textblock
12169 #: ../src/guestfs-actions.pod:2828
12170 msgid ""
12171 "For operating systems like Windows which still use drive letters, this call "
12172 "will only return an entry for the first drive \"mounted on\" C</>.  For "
12173 "information about the mapping of drive letters to partitions, see "
12174 "C<guestfs_inspect_get_drive_mappings>."
12175 msgstr ""
12176
12177 # type: textblock
12178 #. type: textblock
12179 #: ../src/guestfs-actions.pod:2834
12180 msgid ""
12181 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
12182 "C<guestfs_inspect_get_filesystems>."
12183 msgstr ""
12184
12185 # type: =head2
12186 #. type: =head2
12187 #: ../src/guestfs-actions.pod:2845
12188 msgid "guestfs_inspect_get_package_format"
12189 msgstr ""
12190
12191 # type: verbatim
12192 #. type: verbatim
12193 #: ../src/guestfs-actions.pod:2847
12194 #, no-wrap
12195 msgid ""
12196 " char *\n"
12197 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
12198 "                                     const char *root);\n"
12199 "\n"
12200 msgstr ""
12201
12202 # type: textblock
12203 #. type: textblock
12204 #: ../src/guestfs-actions.pod:2854
12205 msgid ""
12206 "This function and C<guestfs_inspect_get_package_management> return the "
12207 "package format and package management tool used by the inspected operating "
12208 "system.  For example for Fedora these functions would return C<rpm> (package "
12209 "format) and C<yum> (package management)."
12210 msgstr ""
12211
12212 # type: textblock
12213 #. type: textblock
12214 #: ../src/guestfs-actions.pod:2860 ../fish/guestfish-actions.pod:1968
12215 msgid ""
12216 "This returns the string C<unknown> if we could not determine the package "
12217 "format I<or> if the operating system does not have a real packaging system "
12218 "(eg. Windows)."
12219 msgstr ""
12220
12221 # type: textblock
12222 #. type: textblock
12223 #: ../src/guestfs-actions.pod:2864 ../fish/guestfish-actions.pod:1972
12224 msgid ""
12225 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
12226 "Future versions of libguestfs may return other strings."
12227 msgstr ""
12228
12229 # type: textblock
12230 #. type: textblock
12231 #: ../src/guestfs-actions.pod:2872 ../src/guestfs-actions.pod:2903
12232 msgid "(Added in 1.7.5)"
12233 msgstr ""
12234
12235 # type: =head2
12236 #. type: =head2
12237 #: ../src/guestfs-actions.pod:2874
12238 msgid "guestfs_inspect_get_package_management"
12239 msgstr ""
12240
12241 # type: verbatim
12242 #. type: verbatim
12243 #: ../src/guestfs-actions.pod:2876
12244 #, no-wrap
12245 msgid ""
12246 " char *\n"
12247 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
12248 "                                         const char *root);\n"
12249 "\n"
12250 msgstr ""
12251
12252 # type: textblock
12253 #. type: textblock
12254 #: ../src/guestfs-actions.pod:2883
12255 msgid ""
12256 "C<guestfs_inspect_get_package_format> and this function return the package "
12257 "format and package management tool used by the inspected operating system.  "
12258 "For example for Fedora these functions would return C<rpm> (package format) "
12259 "and C<yum> (package management)."
12260 msgstr ""
12261
12262 # type: textblock
12263 #. type: textblock
12264 #: ../src/guestfs-actions.pod:2889 ../fish/guestfish-actions.pod:1990
12265 msgid ""
12266 "This returns the string C<unknown> if we could not determine the package "
12267 "management tool I<or> if the operating system does not have a real packaging "
12268 "system (eg. Windows)."
12269 msgstr ""
12270
12271 # type: textblock
12272 #. type: textblock
12273 #: ../src/guestfs-actions.pod:2893 ../fish/guestfish-actions.pod:1994
12274 msgid ""
12275 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
12276 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
12277 "libguestfs may return other strings."
12278 msgstr ""
12279
12280 # type: =head2
12281 #. type: =head2
12282 #: ../src/guestfs-actions.pod:2905
12283 msgid "guestfs_inspect_get_product_name"
12284 msgstr ""
12285
12286 # type: verbatim
12287 #. type: verbatim
12288 #: ../src/guestfs-actions.pod:2907
12289 #, no-wrap
12290 msgid ""
12291 " char *\n"
12292 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
12293 "                                   const char *root);\n"
12294 "\n"
12295 msgstr ""
12296
12297 # type: textblock
12298 #. type: textblock
12299 #: ../src/guestfs-actions.pod:2914 ../fish/guestfish-actions.pod:2008
12300 msgid ""
12301 "This returns the product name of the inspected operating system.  The "
12302 "product name is generally some freeform string which can be displayed to the "
12303 "user, but should not be parsed by programs."
12304 msgstr ""
12305
12306 # type: textblock
12307 #. type: textblock
12308 #: ../src/guestfs-actions.pod:2919 ../fish/guestfish-actions.pod:2013
12309 msgid ""
12310 "If the product name could not be determined, then the string C<unknown> is "
12311 "returned."
12312 msgstr ""
12313
12314 #. type: =head2
12315 #: ../src/guestfs-actions.pod:2929
12316 msgid "guestfs_inspect_get_product_variant"
12317 msgstr ""
12318
12319 #. type: verbatim
12320 #: ../src/guestfs-actions.pod:2931
12321 #, no-wrap
12322 msgid ""
12323 " char *\n"
12324 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
12325 "                                      const char *root);\n"
12326 "\n"
12327 msgstr ""
12328
12329 #. type: textblock
12330 #: ../src/guestfs-actions.pod:2938 ../fish/guestfish-actions.pod:2025
12331 msgid "This returns the product variant of the inspected operating system."
12332 msgstr ""
12333
12334 #. type: textblock
12335 #: ../src/guestfs-actions.pod:2941 ../fish/guestfish-actions.pod:2028
12336 msgid ""
12337 "For Windows guests, this returns the contents of the Registry key C<HKLM"
12338 "\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
12339 "is usually a string such as C<Client> or C<Server> (other values are "
12340 "possible).  This can be used to distinguish consumer and enterprise versions "
12341 "of Windows that have the same version number (for example, Windows 7 and "
12342 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
12343 "the latter is C<Server>)."
12344 msgstr ""
12345
12346 #. type: textblock
12347 #: ../src/guestfs-actions.pod:2950 ../fish/guestfish-actions.pod:2037
12348 msgid ""
12349 "For enterprise Linux guests, in future we intend this to return the product "
12350 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
12351 "implemented at present."
12352 msgstr ""
12353
12354 #. type: textblock
12355 #: ../src/guestfs-actions.pod:2954 ../fish/guestfish-actions.pod:2041
12356 msgid ""
12357 "If the product variant could not be determined, then the string C<unknown> "
12358 "is returned."
12359 msgstr ""
12360
12361 #. type: textblock
12362 #: ../src/guestfs-actions.pod:2957
12363 msgid ""
12364 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
12365 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
12366 msgstr ""
12367
12368 # type: =head2
12369 #. type: =head2
12370 #: ../src/guestfs-actions.pod:2964
12371 msgid "guestfs_inspect_get_roots"
12372 msgstr ""
12373
12374 # type: verbatim
12375 #. type: verbatim
12376 #: ../src/guestfs-actions.pod:2966
12377 #, no-wrap
12378 msgid ""
12379 " char **\n"
12380 " guestfs_inspect_get_roots (guestfs_h *g);\n"
12381 "\n"
12382 msgstr ""
12383
12384 # type: textblock
12385 #. type: textblock
12386 #: ../src/guestfs-actions.pod:2969
12387 msgid ""
12388 "This function is a convenient way to get the list of root devices, as "
12389 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
12390 "the whole inspection process."
12391 msgstr ""
12392
12393 # type: textblock
12394 #. type: textblock
12395 #: ../src/guestfs-actions.pod:2973
12396 msgid ""
12397 "This returns an empty list if either no root devices were found or the "
12398 "caller has not called C<guestfs_inspect_os>."
12399 msgstr ""
12400
12401 # type: textblock
12402 #. type: textblock
12403 #: ../src/guestfs-actions.pod:2982
12404 msgid "(Added in 1.7.3)"
12405 msgstr ""
12406
12407 # type: =head2
12408 #. type: =head2
12409 #: ../src/guestfs-actions.pod:2984
12410 msgid "guestfs_inspect_get_type"
12411 msgstr ""
12412
12413 # type: verbatim
12414 #. type: verbatim
12415 #: ../src/guestfs-actions.pod:2986
12416 #, no-wrap
12417 msgid ""
12418 " char *\n"
12419 " guestfs_inspect_get_type (guestfs_h *g,\n"
12420 "                           const char *root);\n"
12421 "\n"
12422 msgstr ""
12423
12424 # type: textblock
12425 #. type: textblock
12426 #: ../src/guestfs-actions.pod:2993 ../fish/guestfish-actions.pod:2068
12427 msgid ""
12428 "This returns the type of the inspected operating system.  Currently defined "
12429 "types are:"
12430 msgstr ""
12431
12432 # type: =item
12433 #. type: =item
12434 #: ../src/guestfs-actions.pod:2998 ../fish/guestfish-actions.pod:2073
12435 msgid "\"linux\""
12436 msgstr ""
12437
12438 # type: textblock
12439 #. type: textblock
12440 #: ../src/guestfs-actions.pod:3000 ../fish/guestfish-actions.pod:2075
12441 msgid "Any Linux-based operating system."
12442 msgstr ""
12443
12444 # type: textblock
12445 #. type: textblock
12446 #: ../src/guestfs-actions.pod:3004 ../fish/guestfish-actions.pod:2079
12447 msgid "Any Microsoft Windows operating system."
12448 msgstr ""
12449
12450 # type: =item
12451 #. type: =item
12452 #: ../src/guestfs-actions.pod:3006 ../fish/guestfish-actions.pod:2081
12453 msgid "\"freebsd\""
12454 msgstr ""
12455
12456 # type: textblock
12457 #. type: textblock
12458 #: ../src/guestfs-actions.pod:3008 ../fish/guestfish-actions.pod:2083
12459 msgid "FreeBSD."
12460 msgstr ""
12461
12462 # type: textblock
12463 #. type: textblock
12464 #: ../src/guestfs-actions.pod:3012 ../fish/guestfish-actions.pod:2087
12465 msgid "The operating system type could not be determined."
12466 msgstr ""
12467
12468 #. type: =head2
12469 #: ../src/guestfs-actions.pod:3026
12470 msgid "guestfs_inspect_get_windows_current_control_set"
12471 msgstr ""
12472
12473 #. type: verbatim
12474 #: ../src/guestfs-actions.pod:3028
12475 #, no-wrap
12476 msgid ""
12477 " char *\n"
12478 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
12479 "                                                  const char *root);\n"
12480 "\n"
12481 msgstr ""
12482
12483 #. type: textblock
12484 #: ../src/guestfs-actions.pod:3035 ../fish/guestfish-actions.pod:2103
12485 msgid ""
12486 "This returns the Windows CurrentControlSet of the inspected guest.  The "
12487 "CurrentControlSet is a registry key name such as C<ControlSet001>."
12488 msgstr ""
12489
12490 #. type: textblock
12491 #: ../src/guestfs-actions.pod:3038 ../fish/guestfish-actions.pod:2106
12492 msgid ""
12493 "This call assumes that the guest is Windows and that the Registry could be "
12494 "examined by inspection.  If this is not the case then an error is returned."
12495 msgstr ""
12496
12497 # type: =head2
12498 #. type: =head2
12499 #: ../src/guestfs-actions.pod:3047
12500 msgid "guestfs_inspect_get_windows_systemroot"
12501 msgstr ""
12502
12503 # type: verbatim
12504 #. type: verbatim
12505 #: ../src/guestfs-actions.pod:3049
12506 #, no-wrap
12507 msgid ""
12508 " char *\n"
12509 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
12510 "                                         const char *root);\n"
12511 "\n"
12512 msgstr ""
12513
12514 # type: textblock
12515 #. type: textblock
12516 #: ../src/guestfs-actions.pod:3056 ../fish/guestfish-actions.pod:2119
12517 msgid ""
12518 "This returns the Windows systemroot of the inspected guest.  The systemroot "
12519 "is a directory path such as C</WINDOWS>."
12520 msgstr ""
12521
12522 # type: textblock
12523 #. type: textblock
12524 #: ../src/guestfs-actions.pod:3059 ../fish/guestfish-actions.pod:2122
12525 msgid ""
12526 "This call assumes that the guest is Windows and that the systemroot could be "
12527 "determined by inspection.  If this is not the case then an error is returned."
12528 msgstr ""
12529
12530 # type: textblock
12531 #. type: textblock
12532 #: ../src/guestfs-actions.pod:3068
12533 msgid "(Added in 1.5.25)"
12534 msgstr ""
12535
12536 #. type: =head2
12537 #: ../src/guestfs-actions.pod:3070
12538 msgid "guestfs_inspect_is_live"
12539 msgstr ""
12540
12541 #. type: verbatim
12542 #: ../src/guestfs-actions.pod:3072
12543 #, no-wrap
12544 msgid ""
12545 " int\n"
12546 " guestfs_inspect_is_live (guestfs_h *g,\n"
12547 "                          const char *root);\n"
12548 "\n"
12549 msgstr ""
12550
12551 #. type: textblock
12552 #: ../src/guestfs-actions.pod:3079
12553 msgid ""
12554 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12555 "disk), then this returns true if a live image was detected on the disk."
12556 msgstr ""
12557
12558 #. type: =head2
12559 #: ../src/guestfs-actions.pod:3087
12560 msgid "guestfs_inspect_is_multipart"
12561 msgstr ""
12562
12563 #. type: verbatim
12564 #: ../src/guestfs-actions.pod:3089
12565 #, no-wrap
12566 msgid ""
12567 " int\n"
12568 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
12569 "                               const char *root);\n"
12570 "\n"
12571 msgstr ""
12572
12573 #. type: textblock
12574 #: ../src/guestfs-actions.pod:3096
12575 msgid ""
12576 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12577 "disk), then this returns true if the disk is part of a set."
12578 msgstr ""
12579
12580 #. type: =head2
12581 #: ../src/guestfs-actions.pod:3104
12582 msgid "guestfs_inspect_is_netinst"
12583 msgstr ""
12584
12585 #. type: verbatim
12586 #: ../src/guestfs-actions.pod:3106
12587 #, no-wrap
12588 msgid ""
12589 " int\n"
12590 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
12591 "                             const char *root);\n"
12592 "\n"
12593 msgstr ""
12594
12595 #. type: textblock
12596 #: ../src/guestfs-actions.pod:3113
12597 msgid ""
12598 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12599 "disk), then this returns true if the disk is a network installer, ie. not a "
12600 "self-contained install CD but one which is likely to require network access "
12601 "to complete the install."
12602 msgstr ""
12603
12604 # type: =head2
12605 #. type: =head2
12606 #: ../src/guestfs-actions.pod:3123
12607 msgid "guestfs_inspect_list_applications"
12608 msgstr ""
12609
12610 # type: verbatim
12611 #. type: verbatim
12612 #: ../src/guestfs-actions.pod:3125
12613 #, no-wrap
12614 msgid ""
12615 " struct guestfs_application_list *\n"
12616 " guestfs_inspect_list_applications (guestfs_h *g,\n"
12617 "                                    const char *root);\n"
12618 "\n"
12619 msgstr ""
12620
12621 # type: textblock
12622 #. type: textblock
12623 #: ../src/guestfs-actions.pod:3132 ../fish/guestfish-actions.pod:2176
12624 msgid "Return the list of applications installed in the operating system."
12625 msgstr ""
12626
12627 # type: textblock
12628 #. type: textblock
12629 #: ../src/guestfs-actions.pod:3134
12630 msgid ""
12631 "I<Note:> This call works differently from other parts of the inspection "
12632 "API.  You have to call C<guestfs_inspect_os>, then "
12633 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
12634 "this.  Listing applications is a significantly more difficult operation "
12635 "which requires access to the full filesystem.  Also note that unlike the "
12636 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
12637 "the libguestfs handle, this call actually reads parts of the mounted "
12638 "filesystems during the call."
12639 msgstr ""
12640
12641 # type: textblock
12642 #. type: textblock
12643 #: ../src/guestfs-actions.pod:3144 ../fish/guestfish-actions.pod:2188
12644 msgid ""
12645 "This returns an empty list if the inspection code was not able to determine "
12646 "the list of applications."
12647 msgstr ""
12648
12649 # type: textblock
12650 #. type: textblock
12651 #: ../src/guestfs-actions.pod:3147 ../fish/guestfish-actions.pod:2191
12652 msgid "The application structure contains the following fields:"
12653 msgstr ""
12654
12655 # type: =item
12656 #. type: =item
12657 #: ../src/guestfs-actions.pod:3151 ../fish/guestfish-actions.pod:2195
12658 msgid "C<app_name>"
12659 msgstr ""
12660
12661 # type: textblock
12662 #. type: textblock
12663 #: ../src/guestfs-actions.pod:3153 ../fish/guestfish-actions.pod:2197
12664 msgid ""
12665 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
12666 "guests, this is the package name."
12667 msgstr ""
12668
12669 # type: =item
12670 #. type: =item
12671 #: ../src/guestfs-actions.pod:3156 ../fish/guestfish-actions.pod:2200
12672 msgid "C<app_display_name>"
12673 msgstr ""
12674
12675 # type: textblock
12676 #. type: textblock
12677 #: ../src/guestfs-actions.pod:3158 ../fish/guestfish-actions.pod:2202
12678 msgid ""
12679 "The display name of the application, sometimes localized to the install "
12680 "language of the guest operating system."
12681 msgstr ""
12682
12683 # type: textblock
12684 #. type: textblock
12685 #: ../src/guestfs-actions.pod:3161 ../fish/guestfish-actions.pod:2205
12686 msgid ""
12687 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
12688 "to display something can use C<app_name> instead."
12689 msgstr ""
12690
12691 # type: =item
12692 #. type: =item
12693 #: ../src/guestfs-actions.pod:3164 ../fish/guestfish-actions.pod:2208
12694 msgid "C<app_epoch>"
12695 msgstr ""
12696
12697 # type: textblock
12698 #. type: textblock
12699 #: ../src/guestfs-actions.pod:3166 ../fish/guestfish-actions.pod:2210
12700 msgid ""
12701 "For package managers which use epochs, this contains the epoch of the "
12702 "package (an integer).  If unavailable, this is returned as C<0>."
12703 msgstr ""
12704
12705 # type: =item
12706 #. type: =item
12707 #: ../src/guestfs-actions.pod:3169 ../fish/guestfish-actions.pod:2213
12708 msgid "C<app_version>"
12709 msgstr ""
12710
12711 # type: textblock
12712 #. type: textblock
12713 #: ../src/guestfs-actions.pod:3171 ../fish/guestfish-actions.pod:2215
12714 msgid ""
12715 "The version string of the application or package.  If unavailable this is "
12716 "returned as an empty string C<\"\">."
12717 msgstr ""
12718
12719 # type: =item
12720 #. type: =item
12721 #: ../src/guestfs-actions.pod:3174 ../fish/guestfish-actions.pod:2218
12722 msgid "C<app_release>"
12723 msgstr ""
12724
12725 # type: textblock
12726 #. type: textblock
12727 #: ../src/guestfs-actions.pod:3176 ../fish/guestfish-actions.pod:2220
12728 msgid ""
12729 "The release string of the application or package, for package managers that "
12730 "use this.  If unavailable this is returned as an empty string C<\"\">."
12731 msgstr ""
12732
12733 # type: =item
12734 #. type: =item
12735 #: ../src/guestfs-actions.pod:3180 ../fish/guestfish-actions.pod:2224
12736 msgid "C<app_install_path>"
12737 msgstr ""
12738
12739 # type: textblock
12740 #. type: textblock
12741 #: ../src/guestfs-actions.pod:3182 ../fish/guestfish-actions.pod:2226
12742 msgid ""
12743 "The installation path of the application (on operating systems such as "
12744 "Windows which use installation paths).  This path is in the format used by "
12745 "the guest operating system, it is not a libguestfs path."
12746 msgstr ""
12747
12748 # type: textblock
12749 #. type: textblock
12750 #: ../src/guestfs-actions.pod:3187 ../fish/guestfish-actions.pod:2231
12751 msgid "If unavailable this is returned as an empty string C<\"\">."
12752 msgstr ""
12753
12754 # type: =item
12755 #. type: =item
12756 #: ../src/guestfs-actions.pod:3189 ../fish/guestfish-actions.pod:2233
12757 msgid "C<app_trans_path>"
12758 msgstr ""
12759
12760 # type: textblock
12761 #. type: textblock
12762 #: ../src/guestfs-actions.pod:3191 ../fish/guestfish-actions.pod:2235
12763 msgid ""
12764 "The install path translated into a libguestfs path.  If unavailable this is "
12765 "returned as an empty string C<\"\">."
12766 msgstr ""
12767
12768 # type: =item
12769 #. type: =item
12770 #: ../src/guestfs-actions.pod:3194 ../fish/guestfish-actions.pod:2238
12771 msgid "C<app_publisher>"
12772 msgstr ""
12773
12774 # type: textblock
12775 #. type: textblock
12776 #: ../src/guestfs-actions.pod:3196 ../fish/guestfish-actions.pod:2240
12777 msgid ""
12778 "The name of the publisher of the application, for package managers that use "
12779 "this.  If unavailable this is returned as an empty string C<\"\">."
12780 msgstr ""
12781
12782 # type: =item
12783 #. type: =item
12784 #: ../src/guestfs-actions.pod:3200 ../fish/guestfish-actions.pod:2244
12785 msgid "C<app_url>"
12786 msgstr ""
12787
12788 # type: textblock
12789 #. type: textblock
12790 #: ../src/guestfs-actions.pod:3202 ../fish/guestfish-actions.pod:2246
12791 msgid ""
12792 "The URL (eg. upstream URL) of the application.  If unavailable this is "
12793 "returned as an empty string C<\"\">."
12794 msgstr ""
12795
12796 # type: =item
12797 #. type: =item
12798 #: ../src/guestfs-actions.pod:3205 ../fish/guestfish-actions.pod:2249
12799 msgid "C<app_source_package>"
12800 msgstr ""
12801
12802 # type: textblock
12803 #. type: textblock
12804 #: ../src/guestfs-actions.pod:3207 ../fish/guestfish-actions.pod:2251
12805 msgid ""
12806 "For packaging systems which support this, the name of the source package.  "
12807 "If unavailable this is returned as an empty string C<\"\">."
12808 msgstr ""
12809
12810 # type: =item
12811 #. type: =item
12812 #: ../src/guestfs-actions.pod:3210 ../fish/guestfish-actions.pod:2254
12813 msgid "C<app_summary>"
12814 msgstr ""
12815
12816 # type: textblock
12817 #. type: textblock
12818 #: ../src/guestfs-actions.pod:3212 ../fish/guestfish-actions.pod:2256
12819 msgid ""
12820 "A short (usually one line) description of the application or package.  If "
12821 "unavailable this is returned as an empty string C<\"\">."
12822 msgstr ""
12823
12824 # type: =item
12825 #. type: =item
12826 #: ../src/guestfs-actions.pod:3215 ../fish/guestfish-actions.pod:2259
12827 msgid "C<app_description>"
12828 msgstr ""
12829
12830 # type: textblock
12831 #. type: textblock
12832 #: ../src/guestfs-actions.pod:3217 ../fish/guestfish-actions.pod:2261
12833 msgid ""
12834 "A longer description of the application or package.  If unavailable this is "
12835 "returned as an empty string C<\"\">."
12836 msgstr ""
12837
12838 # type: textblock
12839 #. type: textblock
12840 #: ../src/guestfs-actions.pod:3224
12841 msgid ""
12842 "This function returns a C<struct guestfs_application_list *>, or NULL if "
12843 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
12844 "after use>."
12845 msgstr ""
12846
12847 # type: textblock
12848 #. type: textblock
12849 #: ../src/guestfs-actions.pod:3228
12850 msgid "(Added in 1.7.8)"
12851 msgstr ""
12852
12853 # type: =head2
12854 #. type: =head2
12855 #: ../src/guestfs-actions.pod:3230
12856 msgid "guestfs_inspect_os"
12857 msgstr ""
12858
12859 # type: verbatim
12860 #. type: verbatim
12861 #: ../src/guestfs-actions.pod:3232
12862 #, no-wrap
12863 msgid ""
12864 " char **\n"
12865 " guestfs_inspect_os (guestfs_h *g);\n"
12866 "\n"
12867 msgstr ""
12868
12869 # type: textblock
12870 #. type: textblock
12871 #: ../src/guestfs-actions.pod:3235 ../fish/guestfish-actions.pod:2272
12872 msgid ""
12873 "This function uses other libguestfs functions and certain heuristics to "
12874 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
12875 "for operating systems."
12876 msgstr ""
12877
12878 # type: textblock
12879 #. type: textblock
12880 #: ../src/guestfs-actions.pod:3239 ../fish/guestfish-actions.pod:2276
12881 msgid "The list returned is empty if no operating systems were found."
12882 msgstr ""
12883
12884 # type: textblock
12885 #. type: textblock
12886 #: ../src/guestfs-actions.pod:3241 ../fish/guestfish-actions.pod:2278
12887 msgid ""
12888 "If one operating system was found, then this returns a list with a single "
12889 "element, which is the name of the root filesystem of this operating system.  "
12890 "It is also possible for this function to return a list containing more than "
12891 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
12892 "element being the root filesystem of one of the operating systems."
12893 msgstr ""
12894
12895 # type: textblock
12896 #. type: textblock
12897 #: ../src/guestfs-actions.pod:3248
12898 msgid ""
12899 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
12900 "functions in order to query further information about each operating system, "
12901 "such as the name and version."
12902 msgstr ""
12903
12904 # type: textblock
12905 #. type: textblock
12906 #: ../src/guestfs-actions.pod:3253
12907 msgid ""
12908 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
12909 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
12910 "the contents.  This should be called with no disks currently mounted.  The "
12911 "function may also use Augeas, so any existing Augeas handle will be closed."
12912 msgstr ""
12913
12914 # type: textblock
12915 #. type: textblock
12916 #: ../src/guestfs-actions.pod:3259 ../fish/guestfish-actions.pod:2296
12917 msgid ""
12918 "This function cannot decrypt encrypted disks.  The caller must do that first "
12919 "(supplying the necessary keys) if the disk is encrypted."
12920 msgstr ""
12921
12922 # type: textblock
12923 #. type: textblock
12924 #: ../src/guestfs-actions.pod:3265 ../src/guestfs-actions.pod:3555
12925 #: ../src/guestfs-actions.pod:3617
12926 msgid "See also C<guestfs_list_filesystems>."
12927 msgstr ""
12928
12929 # type: =head2
12930 #. type: =head2
12931 #: ../src/guestfs-actions.pod:3273
12932 msgid "guestfs_is_blockdev"
12933 msgstr ""
12934
12935 # type: verbatim
12936 #. type: verbatim
12937 #: ../src/guestfs-actions.pod:3275
12938 #, no-wrap
12939 msgid ""
12940 " int\n"
12941 " guestfs_is_blockdev (guestfs_h *g,\n"
12942 "                      const char *path);\n"
12943 "\n"
12944 msgstr ""
12945
12946 # type: textblock
12947 #. type: textblock
12948 #: ../src/guestfs-actions.pod:3279 ../fish/guestfish-actions.pod:2308
12949 msgid ""
12950 "This returns C<true> if and only if there is a block device with the given "
12951 "C<path> name."
12952 msgstr ""
12953
12954 # type: textblock
12955 #. type: textblock
12956 #: ../src/guestfs-actions.pod:3282 ../src/guestfs-actions.pod:3311
12957 #: ../src/guestfs-actions.pod:3341 ../src/guestfs-actions.pod:3356
12958 #: ../src/guestfs-actions.pod:3372 ../src/guestfs-actions.pod:3428
12959 #: ../src/guestfs-actions.pod:3443
12960 msgid "See also C<guestfs_stat>."
12961 msgstr ""
12962
12963 # type: textblock
12964 #. type: textblock
12965 #: ../src/guestfs-actions.pod:3286 ../src/guestfs-actions.pod:3315
12966 #: ../src/guestfs-actions.pod:3360 ../src/guestfs-actions.pod:3432
12967 #: ../src/guestfs-actions.pod:3447
12968 msgid "(Added in 1.5.10)"
12969 msgstr ""
12970
12971 # type: =head2
12972 #. type: =head2
12973 #: ../src/guestfs-actions.pod:3288
12974 msgid "guestfs_is_busy"
12975 msgstr ""
12976
12977 # type: verbatim
12978 #. type: verbatim
12979 #: ../src/guestfs-actions.pod:3290
12980 #, no-wrap
12981 msgid ""
12982 " int\n"
12983 " guestfs_is_busy (guestfs_h *g);\n"
12984 "\n"
12985 msgstr ""
12986
12987 # type: textblock
12988 #. type: textblock
12989 #: ../src/guestfs-actions.pod:3293 ../fish/guestfish-actions.pod:2317
12990 msgid ""
12991 "This returns true iff this handle is busy processing a command (in the "
12992 "C<BUSY> state)."
12993 msgstr ""
12994
12995 # type: =head2
12996 #. type: =head2
12997 #: ../src/guestfs-actions.pod:3302
12998 msgid "guestfs_is_chardev"
12999 msgstr ""
13000
13001 # type: verbatim
13002 #. type: verbatim
13003 #: ../src/guestfs-actions.pod:3304
13004 #, no-wrap
13005 msgid ""
13006 " int\n"
13007 " guestfs_is_chardev (guestfs_h *g,\n"
13008 "                     const char *path);\n"
13009 "\n"
13010 msgstr ""
13011
13012 # type: textblock
13013 #. type: textblock
13014 #: ../src/guestfs-actions.pod:3308 ../fish/guestfish-actions.pod:2326
13015 msgid ""
13016 "This returns C<true> if and only if there is a character device with the "
13017 "given C<path> name."
13018 msgstr ""
13019
13020 # type: =head2
13021 #. type: =head2
13022 #: ../src/guestfs-actions.pod:3317
13023 msgid "guestfs_is_config"
13024 msgstr ""
13025
13026 # type: verbatim
13027 #. type: verbatim
13028 #: ../src/guestfs-actions.pod:3319
13029 #, no-wrap
13030 msgid ""
13031 " int\n"
13032 " guestfs_is_config (guestfs_h *g);\n"
13033 "\n"
13034 msgstr ""
13035
13036 # type: textblock
13037 #. type: textblock
13038 #: ../src/guestfs-actions.pod:3322 ../fish/guestfish-actions.pod:2335
13039 msgid ""
13040 "This returns true iff this handle is being configured (in the C<CONFIG> "
13041 "state)."
13042 msgstr ""
13043
13044 # type: =head2
13045 #. type: =head2
13046 #: ../src/guestfs-actions.pod:3331
13047 msgid "guestfs_is_dir"
13048 msgstr ""
13049
13050 # type: verbatim
13051 #. type: verbatim
13052 #: ../src/guestfs-actions.pod:3333
13053 #, no-wrap
13054 msgid ""
13055 " int\n"
13056 " guestfs_is_dir (guestfs_h *g,\n"
13057 "                 const char *path);\n"
13058 "\n"
13059 msgstr ""
13060
13061 # type: textblock
13062 #. type: textblock
13063 #: ../src/guestfs-actions.pod:3337 ../fish/guestfish-actions.pod:2344
13064 msgid ""
13065 "This returns C<true> if and only if there is a directory with the given "
13066 "C<path> name.  Note that it returns false for other objects like files."
13067 msgstr ""
13068
13069 # type: =head2
13070 #. type: =head2
13071 #: ../src/guestfs-actions.pod:3347
13072 msgid "guestfs_is_fifo"
13073 msgstr ""
13074
13075 # type: verbatim
13076 #. type: verbatim
13077 #: ../src/guestfs-actions.pod:3349
13078 #, no-wrap
13079 msgid ""
13080 " int\n"
13081 " guestfs_is_fifo (guestfs_h *g,\n"
13082 "                  const char *path);\n"
13083 "\n"
13084 msgstr ""
13085
13086 # type: textblock
13087 #. type: textblock
13088 #: ../src/guestfs-actions.pod:3353 ../fish/guestfish-actions.pod:2354
13089 msgid ""
13090 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
13091 "given C<path> name."
13092 msgstr ""
13093
13094 # type: =head2
13095 #. type: =head2
13096 #: ../src/guestfs-actions.pod:3362
13097 msgid "guestfs_is_file"
13098 msgstr ""
13099
13100 # type: verbatim
13101 #. type: verbatim
13102 #: ../src/guestfs-actions.pod:3364
13103 #, no-wrap
13104 msgid ""
13105 " int\n"
13106 " guestfs_is_file (guestfs_h *g,\n"
13107 "                  const char *path);\n"
13108 "\n"
13109 msgstr ""
13110
13111 # type: textblock
13112 #. type: textblock
13113 #: ../src/guestfs-actions.pod:3368 ../fish/guestfish-actions.pod:2363
13114 msgid ""
13115 "This returns C<true> if and only if there is a regular file with the given "
13116 "C<path> name.  Note that it returns false for other objects like directories."
13117 msgstr ""
13118
13119 # type: =head2
13120 #. type: =head2
13121 #: ../src/guestfs-actions.pod:3378
13122 msgid "guestfs_is_launching"
13123 msgstr ""
13124
13125 # type: verbatim
13126 #. type: verbatim
13127 #: ../src/guestfs-actions.pod:3380
13128 #, no-wrap
13129 msgid ""
13130 " int\n"
13131 " guestfs_is_launching (guestfs_h *g);\n"
13132 "\n"
13133 msgstr ""
13134
13135 # type: textblock
13136 #. type: textblock
13137 #: ../src/guestfs-actions.pod:3383 ../fish/guestfish-actions.pod:2373
13138 msgid ""
13139 "This returns true iff this handle is launching the subprocess (in the "
13140 "C<LAUNCHING> state)."
13141 msgstr ""
13142
13143 # type: =head2
13144 #. type: =head2
13145 #: ../src/guestfs-actions.pod:3392
13146 msgid "guestfs_is_lv"
13147 msgstr ""
13148
13149 # type: verbatim
13150 #. type: verbatim
13151 #: ../src/guestfs-actions.pod:3394
13152 #, no-wrap
13153 msgid ""
13154 " int\n"
13155 " guestfs_is_lv (guestfs_h *g,\n"
13156 "                const char *device);\n"
13157 "\n"
13158 msgstr ""
13159
13160 # type: textblock
13161 #. type: textblock
13162 #: ../src/guestfs-actions.pod:3398 ../fish/guestfish-actions.pod:2382
13163 msgid ""
13164 "This command tests whether C<device> is a logical volume, and returns true "
13165 "iff this is the case."
13166 msgstr ""
13167
13168 # type: =head2
13169 #. type: =head2
13170 #: ../src/guestfs-actions.pod:3405
13171 msgid "guestfs_is_ready"
13172 msgstr ""
13173
13174 # type: verbatim
13175 #. type: verbatim
13176 #: ../src/guestfs-actions.pod:3407
13177 #, no-wrap
13178 msgid ""
13179 " int\n"
13180 " guestfs_is_ready (guestfs_h *g);\n"
13181 "\n"
13182 msgstr ""
13183
13184 # type: textblock
13185 #. type: textblock
13186 #: ../src/guestfs-actions.pod:3410 ../fish/guestfish-actions.pod:2389
13187 msgid ""
13188 "This returns true iff this handle is ready to accept commands (in the "
13189 "C<READY> state)."
13190 msgstr ""
13191
13192 # type: =head2
13193 #. type: =head2
13194 #: ../src/guestfs-actions.pod:3419
13195 msgid "guestfs_is_socket"
13196 msgstr ""
13197
13198 # type: verbatim
13199 #. type: verbatim
13200 #: ../src/guestfs-actions.pod:3421
13201 #, no-wrap
13202 msgid ""
13203 " int\n"
13204 " guestfs_is_socket (guestfs_h *g,\n"
13205 "                    const char *path);\n"
13206 "\n"
13207 msgstr ""
13208
13209 # type: textblock
13210 #. type: textblock
13211 #: ../src/guestfs-actions.pod:3425 ../fish/guestfish-actions.pod:2398
13212 msgid ""
13213 "This returns C<true> if and only if there is a Unix domain socket with the "
13214 "given C<path> name."
13215 msgstr ""
13216
13217 # type: =head2
13218 #. type: =head2
13219 #: ../src/guestfs-actions.pod:3434
13220 msgid "guestfs_is_symlink"
13221 msgstr ""
13222
13223 # type: verbatim
13224 #. type: verbatim
13225 #: ../src/guestfs-actions.pod:3436
13226 #, no-wrap
13227 msgid ""
13228 " int\n"
13229 " guestfs_is_symlink (guestfs_h *g,\n"
13230 "                     const char *path);\n"
13231 "\n"
13232 msgstr ""
13233
13234 # type: textblock
13235 #. type: textblock
13236 #: ../src/guestfs-actions.pod:3440 ../fish/guestfish-actions.pod:2407
13237 msgid ""
13238 "This returns C<true> if and only if there is a symbolic link with the given "
13239 "C<path> name."
13240 msgstr ""
13241
13242 # type: =head2
13243 #. type: =head2
13244 #: ../src/guestfs-actions.pod:3449
13245 msgid "guestfs_kill_subprocess"
13246 msgstr ""
13247
13248 # type: verbatim
13249 #. type: verbatim
13250 #: ../src/guestfs-actions.pod:3451
13251 #, no-wrap
13252 msgid ""
13253 " int\n"
13254 " guestfs_kill_subprocess (guestfs_h *g);\n"
13255 "\n"
13256 msgstr ""
13257
13258 # type: textblock
13259 #. type: textblock
13260 #: ../src/guestfs-actions.pod:3454 ../fish/guestfish-actions.pod:2416
13261 msgid "This kills the qemu subprocess.  You should never need to call this."
13262 msgstr ""
13263
13264 # type: =head2
13265 #. type: =head2
13266 #: ../src/guestfs-actions.pod:3460
13267 msgid "guestfs_launch"
13268 msgstr ""
13269
13270 # type: verbatim
13271 #. type: verbatim
13272 #: ../src/guestfs-actions.pod:3462
13273 #, no-wrap
13274 msgid ""
13275 " int\n"
13276 " guestfs_launch (guestfs_h *g);\n"
13277 "\n"
13278 msgstr ""
13279
13280 # type: textblock
13281 #. type: textblock
13282 #: ../src/guestfs-actions.pod:3465 ../fish/guestfish-actions.pod:2424
13283 msgid ""
13284 "Internally libguestfs is implemented by running a virtual machine using "
13285 "L<qemu(1)>."
13286 msgstr ""
13287
13288 # type: textblock
13289 #. type: textblock
13290 #: ../src/guestfs-actions.pod:3468 ../fish/guestfish-actions.pod:2427
13291 msgid ""
13292 "You should call this after configuring the handle (eg. adding drives) but "
13293 "before performing any actions."
13294 msgstr ""
13295
13296 # type: =head2
13297 #. type: =head2
13298 #: ../src/guestfs-actions.pod:3480
13299 msgid "guestfs_lchown"
13300 msgstr ""
13301
13302 # type: verbatim
13303 #. type: verbatim
13304 #: ../src/guestfs-actions.pod:3482
13305 #, no-wrap
13306 msgid ""
13307 " int\n"
13308 " guestfs_lchown (guestfs_h *g,\n"
13309 "                 int owner,\n"
13310 "                 int group,\n"
13311 "                 const char *path);\n"
13312 "\n"
13313 msgstr ""
13314
13315 # type: textblock
13316 #. type: textblock
13317 #: ../src/guestfs-actions.pod:3488
13318 msgid ""
13319 "Change the file owner to C<owner> and group to C<group>.  This is like "
13320 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
13321 "changed, not the target."
13322 msgstr ""
13323
13324 # type: =head2
13325 #. type: =head2
13326 #: ../src/guestfs-actions.pod:3500
13327 msgid "guestfs_lgetxattr"
13328 msgstr ""
13329
13330 # type: verbatim
13331 #. type: verbatim
13332 #: ../src/guestfs-actions.pod:3502
13333 #, no-wrap
13334 msgid ""
13335 " char *\n"
13336 " guestfs_lgetxattr (guestfs_h *g,\n"
13337 "                    const char *path,\n"
13338 "                    const char *name,\n"
13339 "                    size_t *size_r);\n"
13340 "\n"
13341 msgstr ""
13342
13343 # type: textblock
13344 #. type: textblock
13345 #: ../src/guestfs-actions.pod:3508 ../fish/guestfish-actions.pod:2446
13346 msgid ""
13347 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
13348 "is a symlink, then this call returns an extended attribute from the symlink."
13349 msgstr ""
13350
13351 # type: textblock
13352 #. type: textblock
13353 #: ../src/guestfs-actions.pod:3522
13354 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
13355 msgstr ""
13356
13357 # type: =head2
13358 #. type: =head2
13359 #: ../src/guestfs-actions.pod:3530
13360 msgid "guestfs_lgetxattrs"
13361 msgstr ""
13362
13363 # type: verbatim
13364 #. type: verbatim
13365 #: ../src/guestfs-actions.pod:3532
13366 #, no-wrap
13367 msgid ""
13368 " struct guestfs_xattr_list *\n"
13369 " guestfs_lgetxattrs (guestfs_h *g,\n"
13370 "                     const char *path);\n"
13371 "\n"
13372 msgstr ""
13373
13374 # type: textblock
13375 #. type: textblock
13376 #: ../src/guestfs-actions.pod:3536
13377 msgid ""
13378 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
13379 "then it returns the extended attributes of the link itself."
13380 msgstr ""
13381
13382 # type: =head2
13383 #. type: =head2
13384 #: ../src/guestfs-actions.pod:3546
13385 msgid "guestfs_list_devices"
13386 msgstr ""
13387
13388 # type: verbatim
13389 #. type: verbatim
13390 #: ../src/guestfs-actions.pod:3548
13391 #, no-wrap
13392 msgid ""
13393 " char **\n"
13394 " guestfs_list_devices (guestfs_h *g);\n"
13395 "\n"
13396 msgstr ""
13397
13398 # type: textblock
13399 #. type: textblock
13400 #: ../src/guestfs-actions.pod:3551 ../fish/guestfish-actions.pod:2474
13401 msgid "List all the block devices."
13402 msgstr ""
13403
13404 # type: textblock
13405 #. type: textblock
13406 #: ../src/guestfs-actions.pod:3553 ../fish/guestfish-actions.pod:2476
13407 msgid "The full block device names are returned, eg. C</dev/sda>."
13408 msgstr ""
13409
13410 # type: =head2
13411 #. type: =head2
13412 #: ../src/guestfs-actions.pod:3563
13413 msgid "guestfs_list_filesystems"
13414 msgstr ""
13415
13416 # type: verbatim
13417 #. type: verbatim
13418 #: ../src/guestfs-actions.pod:3565
13419 #, no-wrap
13420 msgid ""
13421 " char **\n"
13422 " guestfs_list_filesystems (guestfs_h *g);\n"
13423 "\n"
13424 msgstr ""
13425
13426 # type: textblock
13427 #. type: textblock
13428 #: ../src/guestfs-actions.pod:3568 ../fish/guestfish-actions.pod:2484
13429 msgid ""
13430 "This inspection command looks for filesystems on partitions, block devices "
13431 "and logical volumes, returning a list of devices containing filesystems and "
13432 "their type."
13433 msgstr ""
13434
13435 # type: textblock
13436 #. type: textblock
13437 #: ../src/guestfs-actions.pod:3572 ../fish/guestfish-actions.pod:2488
13438 msgid ""
13439 "The return value is a hash, where the keys are the devices containing "
13440 "filesystems, and the values are the filesystem types.  For example:"
13441 msgstr ""
13442
13443 # type: verbatim
13444 #. type: verbatim
13445 #: ../src/guestfs-actions.pod:3576 ../fish/guestfish-actions.pod:2492
13446 #, no-wrap
13447 msgid ""
13448 " \"/dev/sda1\" => \"ntfs\"\n"
13449 " \"/dev/sda2\" => \"ext2\"\n"
13450 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
13451 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
13452 "\n"
13453 msgstr ""
13454
13455 # type: textblock
13456 #. type: textblock
13457 #: ../src/guestfs-actions.pod:3581 ../fish/guestfish-actions.pod:2497
13458 msgid ""
13459 "The value can have the special value \"unknown\", meaning the content of the "
13460 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
13461 msgstr ""
13462
13463 # type: textblock
13464 #. type: textblock
13465 #: ../src/guestfs-actions.pod:3585
13466 msgid ""
13467 "This command runs other libguestfs commands, which might include "
13468 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
13469 "soon after launch and only when nothing is mounted."
13470 msgstr ""
13471
13472 # type: textblock
13473 #. type: textblock
13474 #: ../src/guestfs-actions.pod:3589
13475 msgid ""
13476 "Not all of the filesystems returned will be mountable.  In particular, swap "
13477 "partitions are returned in the list.  Also this command does not check that "
13478 "each filesystem found is valid and mountable, and some filesystems might be "
13479 "mountable but require special options.  Filesystems may not all belong to a "
13480 "single logical operating system (use C<guestfs_inspect_os> to look for OSes)."
13481 msgstr ""
13482
13483 # type: textblock
13484 #. type: textblock
13485 #: ../src/guestfs-actions.pod:3603 ../src/guestfs-actions.pod:5224
13486 msgid "(Added in 1.5.15)"
13487 msgstr ""
13488
13489 # type: =head2
13490 #. type: =head2
13491 #: ../src/guestfs-actions.pod:3605
13492 msgid "guestfs_list_partitions"
13493 msgstr ""
13494
13495 # type: verbatim
13496 #. type: verbatim
13497 #: ../src/guestfs-actions.pod:3607
13498 #, no-wrap
13499 msgid ""
13500 " char **\n"
13501 " guestfs_list_partitions (guestfs_h *g);\n"
13502 "\n"
13503 msgstr ""
13504
13505 # type: textblock
13506 #. type: textblock
13507 #: ../src/guestfs-actions.pod:3610 ../fish/guestfish-actions.pod:2517
13508 msgid "List all the partitions detected on all block devices."
13509 msgstr ""
13510
13511 # type: textblock
13512 #. type: textblock
13513 #: ../src/guestfs-actions.pod:3612 ../fish/guestfish-actions.pod:2519
13514 msgid "The full partition device names are returned, eg. C</dev/sda1>"
13515 msgstr ""
13516
13517 # type: textblock
13518 #. type: textblock
13519 #: ../src/guestfs-actions.pod:3614
13520 msgid ""
13521 "This does not return logical volumes.  For that you will need to call "
13522 "C<guestfs_lvs>."
13523 msgstr ""
13524
13525 # type: =head2
13526 #. type: =head2
13527 #: ../src/guestfs-actions.pod:3625
13528 msgid "guestfs_ll"
13529 msgstr ""
13530
13531 # type: verbatim
13532 #. type: verbatim
13533 #: ../src/guestfs-actions.pod:3627
13534 #, no-wrap
13535 msgid ""
13536 " char *\n"
13537 " guestfs_ll (guestfs_h *g,\n"
13538 "             const char *directory);\n"
13539 "\n"
13540 msgstr ""
13541
13542 # type: textblock
13543 #. type: textblock
13544 #: ../src/guestfs-actions.pod:3631 ../fish/guestfish-actions.pod:2530
13545 msgid ""
13546 "List the files in C<directory> (relative to the root directory, there is no "
13547 "cwd) in the format of 'ls -la'."
13548 msgstr ""
13549
13550 # type: textblock
13551 #. type: textblock
13552 #: ../src/guestfs-actions.pod:3634 ../fish/guestfish-actions.pod:2533
13553 msgid ""
13554 "This command is mostly useful for interactive sessions.  It is I<not> "
13555 "intended that you try to parse the output string."
13556 msgstr ""
13557
13558 # type: =head2
13559 #. type: =head2
13560 #: ../src/guestfs-actions.pod:3642
13561 msgid "guestfs_ln"
13562 msgstr ""
13563
13564 # type: verbatim
13565 #. type: verbatim
13566 #: ../src/guestfs-actions.pod:3644
13567 #, no-wrap
13568 msgid ""
13569 " int\n"
13570 " guestfs_ln (guestfs_h *g,\n"
13571 "             const char *target,\n"
13572 "             const char *linkname);\n"
13573 "\n"
13574 msgstr ""
13575
13576 # type: textblock
13577 #. type: textblock
13578 #: ../src/guestfs-actions.pod:3649 ../fish/guestfish-actions.pod:2540
13579 msgid "This command creates a hard link using the C<ln> command."
13580 msgstr ""
13581
13582 # type: =head2
13583 #. type: =head2
13584 #: ../src/guestfs-actions.pod:3655
13585 msgid "guestfs_ln_f"
13586 msgstr ""
13587
13588 # type: verbatim
13589 #. type: verbatim
13590 #: ../src/guestfs-actions.pod:3657
13591 #, no-wrap
13592 msgid ""
13593 " int\n"
13594 " guestfs_ln_f (guestfs_h *g,\n"
13595 "               const char *target,\n"
13596 "               const char *linkname);\n"
13597 "\n"
13598 msgstr ""
13599
13600 #. type: textblock
13601 #: ../src/guestfs-actions.pod:3662 ../fish/guestfish-actions.pod:2546
13602 msgid ""
13603 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
13604 "option removes the link (C<linkname>) if it exists already."
13605 msgstr ""
13606
13607 # type: =head2
13608 #. type: =head2
13609 #: ../src/guestfs-actions.pod:3669
13610 msgid "guestfs_ln_s"
13611 msgstr ""
13612
13613 # type: verbatim
13614 #. type: verbatim
13615 #: ../src/guestfs-actions.pod:3671
13616 #, no-wrap
13617 msgid ""
13618 " int\n"
13619 " guestfs_ln_s (guestfs_h *g,\n"
13620 "               const char *target,\n"
13621 "               const char *linkname);\n"
13622 "\n"
13623 msgstr ""
13624
13625 # type: textblock
13626 #. type: textblock
13627 #: ../src/guestfs-actions.pod:3676 ../fish/guestfish-actions.pod:2553
13628 msgid "This command creates a symbolic link using the C<ln -s> command."
13629 msgstr ""
13630
13631 # type: =head2
13632 #. type: =head2
13633 #: ../src/guestfs-actions.pod:3682
13634 msgid "guestfs_ln_sf"
13635 msgstr ""
13636
13637 # type: verbatim
13638 #. type: verbatim
13639 #: ../src/guestfs-actions.pod:3684
13640 #, no-wrap
13641 msgid ""
13642 " int\n"
13643 " guestfs_ln_sf (guestfs_h *g,\n"
13644 "                const char *target,\n"
13645 "                const char *linkname);\n"
13646 "\n"
13647 msgstr ""
13648
13649 #. type: textblock
13650 #: ../src/guestfs-actions.pod:3689 ../fish/guestfish-actions.pod:2559
13651 msgid ""
13652 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
13653 "option removes the link (C<linkname>) if it exists already."
13654 msgstr ""
13655
13656 # type: =head2
13657 #. type: =head2
13658 #: ../src/guestfs-actions.pod:3696
13659 msgid "guestfs_lremovexattr"
13660 msgstr ""
13661
13662 # type: verbatim
13663 #. type: verbatim
13664 #: ../src/guestfs-actions.pod:3698
13665 #, no-wrap
13666 msgid ""
13667 " int\n"
13668 " guestfs_lremovexattr (guestfs_h *g,\n"
13669 "                       const char *xattr,\n"
13670 "                       const char *path);\n"
13671 "\n"
13672 msgstr ""
13673
13674 # type: textblock
13675 #. type: textblock
13676 #: ../src/guestfs-actions.pod:3703
13677 msgid ""
13678 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
13679 "link, then it removes an extended attribute of the link itself."
13680 msgstr ""
13681
13682 # type: =head2
13683 #. type: =head2
13684 #: ../src/guestfs-actions.pod:3711
13685 msgid "guestfs_ls"
13686 msgstr ""
13687
13688 # type: verbatim
13689 #. type: verbatim
13690 #: ../src/guestfs-actions.pod:3713
13691 #, no-wrap
13692 msgid ""
13693 " char **\n"
13694 " guestfs_ls (guestfs_h *g,\n"
13695 "             const char *directory);\n"
13696 "\n"
13697 msgstr ""
13698
13699 # type: textblock
13700 #. type: textblock
13701 #: ../src/guestfs-actions.pod:3717 ../fish/guestfish-actions.pod:2574
13702 msgid ""
13703 "List the files in C<directory> (relative to the root directory, there is no "
13704 "cwd).  The '.' and '..' entries are not returned, but hidden files are shown."
13705 msgstr ""
13706
13707 # type: textblock
13708 #. type: textblock
13709 #: ../src/guestfs-actions.pod:3721
13710 msgid ""
13711 "This command is mostly useful for interactive sessions.  Programs should "
13712 "probably use C<guestfs_readdir> instead."
13713 msgstr ""
13714
13715 # type: =head2
13716 #. type: =head2
13717 #: ../src/guestfs-actions.pod:3730
13718 msgid "guestfs_lsetxattr"
13719 msgstr ""
13720
13721 # type: verbatim
13722 #. type: verbatim
13723 #: ../src/guestfs-actions.pod:3732
13724 #, no-wrap
13725 msgid ""
13726 " int\n"
13727 " guestfs_lsetxattr (guestfs_h *g,\n"
13728 "                    const char *xattr,\n"
13729 "                    const char *val,\n"
13730 "                    int vallen,\n"
13731 "                    const char *path);\n"
13732 "\n"
13733 msgstr ""
13734
13735 # type: textblock
13736 #. type: textblock
13737 #: ../src/guestfs-actions.pod:3739
13738 msgid ""
13739 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
13740 "then it sets an extended attribute of the link itself."
13741 msgstr ""
13742
13743 # type: =head2
13744 #. type: =head2
13745 #: ../src/guestfs-actions.pod:3747
13746 msgid "guestfs_lstat"
13747 msgstr ""
13748
13749 # type: verbatim
13750 #. type: verbatim
13751 #: ../src/guestfs-actions.pod:3749
13752 #, no-wrap
13753 msgid ""
13754 " struct guestfs_stat *\n"
13755 " guestfs_lstat (guestfs_h *g,\n"
13756 "                const char *path);\n"
13757 "\n"
13758 msgstr ""
13759
13760 # type: textblock
13761 #. type: textblock
13762 #: ../src/guestfs-actions.pod:3753 ../src/guestfs-actions.pod:6355
13763 #: ../fish/guestfish-actions.pod:2593 ../fish/guestfish-actions.pod:4306
13764 msgid "Returns file information for the given C<path>."
13765 msgstr ""
13766
13767 # type: textblock
13768 #. type: textblock
13769 #: ../src/guestfs-actions.pod:3755
13770 msgid ""
13771 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
13772 "link, then the link is stat-ed, not the file it refers to."
13773 msgstr ""
13774
13775 # type: textblock
13776 #. type: textblock
13777 #: ../src/guestfs-actions.pod:3759 ../fish/guestfish-actions.pod:2599
13778 msgid "This is the same as the C<lstat(2)> system call."
13779 msgstr ""
13780
13781 # type: textblock
13782 #. type: textblock
13783 #: ../src/guestfs-actions.pod:3761 ../src/guestfs-actions.pod:6359
13784 msgid ""
13785 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
13786 "error.  I<The caller must call C<guestfs_free_stat> after use>."
13787 msgstr ""
13788
13789 # type: textblock
13790 #. type: textblock
13791 #: ../src/guestfs-actions.pod:3765 ../src/guestfs-actions.pod:6363
13792 #: ../src/guestfs-actions.pod:6381 ../src/guestfs-actions.pod:6762
13793 msgid "(Added in 0.9.2)"
13794 msgstr ""
13795
13796 # type: =head2
13797 #. type: =head2
13798 #: ../src/guestfs-actions.pod:3767
13799 msgid "guestfs_lstatlist"
13800 msgstr ""
13801
13802 # type: verbatim
13803 #. type: verbatim
13804 #: ../src/guestfs-actions.pod:3769
13805 #, no-wrap
13806 msgid ""
13807 " struct guestfs_stat_list *\n"
13808 " guestfs_lstatlist (guestfs_h *g,\n"
13809 "                    const char *path,\n"
13810 "                    char *const *names);\n"
13811 "\n"
13812 msgstr ""
13813
13814 # type: textblock
13815 #. type: textblock
13816 #: ../src/guestfs-actions.pod:3774
13817 msgid ""
13818 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
13819 "files, where all files are in the directory C<path>.  C<names> is the list "
13820 "of files from this directory."
13821 msgstr ""
13822
13823 # type: textblock
13824 #. type: textblock
13825 #: ../src/guestfs-actions.pod:3778 ../fish/guestfish-actions.pod:2609
13826 msgid ""
13827 "On return you get a list of stat structs, with a one-to-one correspondence "
13828 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
13829 "then the C<ino> field of that structure is set to C<-1>."
13830 msgstr ""
13831
13832 # type: textblock
13833 #. type: textblock
13834 #: ../src/guestfs-actions.pod:3783
13835 msgid ""
13836 "This call is intended for programs that want to efficiently list a directory "
13837 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
13838 "for a similarly efficient call for getting extended attributes.  Very long "
13839 "directory listings might cause the protocol message size to be exceeded, "
13840 "causing this call to fail.  The caller must split up such requests into "
13841 "smaller groups of names."
13842 msgstr ""
13843
13844 # type: textblock
13845 #. type: textblock
13846 #: ../src/guestfs-actions.pod:3791
13847 msgid ""
13848 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
13849 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
13850 msgstr ""
13851
13852 # type: =head2
13853 #. type: =head2
13854 #: ../src/guestfs-actions.pod:3797
13855 msgid "guestfs_luks_add_key"
13856 msgstr ""
13857
13858 # type: verbatim
13859 #. type: verbatim
13860 #: ../src/guestfs-actions.pod:3799
13861 #, no-wrap
13862 msgid ""
13863 " int\n"
13864 " guestfs_luks_add_key (guestfs_h *g,\n"
13865 "                       const char *device,\n"
13866 "                       const char *key,\n"
13867 "                       const char *newkey,\n"
13868 "                       int keyslot);\n"
13869 "\n"
13870 msgstr ""
13871
13872 # type: textblock
13873 #. type: textblock
13874 #: ../src/guestfs-actions.pod:3806 ../fish/guestfish-actions.pod:2626
13875 msgid ""
13876 "This command adds a new key on LUKS device C<device>.  C<key> is any "
13877 "existing key, and is used to access the device.  C<newkey> is the new key to "
13878 "add.  C<keyslot> is the key slot that will be replaced."
13879 msgstr ""
13880
13881 # type: textblock
13882 #. type: textblock
13883 #: ../src/guestfs-actions.pod:3811
13884 msgid ""
13885 "Note that if C<keyslot> already contains a key, then this command will "
13886 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
13887 msgstr ""
13888
13889 # type: textblock
13890 #. type: textblock
13891 #: ../src/guestfs-actions.pod:3817 ../src/guestfs-actions.pod:3857
13892 #: ../src/guestfs-actions.pod:3880 ../src/guestfs-actions.pod:3900
13893 #: ../src/guestfs-actions.pod:3932 ../src/guestfs-actions.pod:3951
13894 msgid ""
13895 "This function takes a key or passphrase parameter which could contain "
13896 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
13897 "information."
13898 msgstr ""
13899
13900 # type: textblock
13901 #. type: textblock
13902 #: ../src/guestfs-actions.pod:3821 ../src/guestfs-actions.pod:3861
13903 #: ../src/guestfs-actions.pod:3884 ../src/guestfs-actions.pod:3904
13904 msgid "(Added in 1.5.2)"
13905 msgstr ""
13906
13907 # type: =head2
13908 #. type: =head2
13909 #: ../src/guestfs-actions.pod:3823
13910 msgid "guestfs_luks_close"
13911 msgstr ""
13912
13913 # type: verbatim
13914 #. type: verbatim
13915 #: ../src/guestfs-actions.pod:3825
13916 #, no-wrap
13917 msgid ""
13918 " int\n"
13919 " guestfs_luks_close (guestfs_h *g,\n"
13920 "                     const char *device);\n"
13921 "\n"
13922 msgstr ""
13923
13924 # type: textblock
13925 #. type: textblock
13926 #: ../src/guestfs-actions.pod:3829
13927 msgid ""
13928 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
13929 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
13930 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
13931 "underlying block device."
13932 msgstr ""
13933
13934 # type: textblock
13935 #. type: textblock
13936 #: ../src/guestfs-actions.pod:3837 ../src/guestfs-actions.pod:3936
13937 #: ../src/guestfs-actions.pod:3955 ../src/guestfs-actions.pod:4005
13938 #: ../src/guestfs-actions.pod:4053
13939 msgid "(Added in 1.5.1)"
13940 msgstr ""
13941
13942 # type: =head2
13943 #. type: =head2
13944 #: ../src/guestfs-actions.pod:3839
13945 msgid "guestfs_luks_format"
13946 msgstr ""
13947
13948 # type: verbatim
13949 #. type: verbatim
13950 #: ../src/guestfs-actions.pod:3841
13951 #, no-wrap
13952 msgid ""
13953 " int\n"
13954 " guestfs_luks_format (guestfs_h *g,\n"
13955 "                      const char *device,\n"
13956 "                      const char *key,\n"
13957 "                      int keyslot);\n"
13958 "\n"
13959 msgstr ""
13960
13961 # type: textblock
13962 #. type: textblock
13963 #: ../src/guestfs-actions.pod:3847 ../fish/guestfish-actions.pod:2652
13964 msgid ""
13965 "This command erases existing data on C<device> and formats the device as a "
13966 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
13967 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
13968 msgstr ""
13969
13970 # type: textblock
13971 #. type: textblock
13972 #: ../src/guestfs-actions.pod:3854 ../src/guestfs-actions.pod:3877
13973 #: ../src/guestfs-actions.pod:4017 ../src/guestfs-actions.pod:4975
13974 #: ../src/guestfs-actions.pod:5755 ../src/guestfs-actions.pod:6162
13975 #: ../src/guestfs-actions.pod:6192 ../src/guestfs-actions.pod:6225
13976 #: ../src/guestfs-actions.pod:7406 ../fish/guestfish-actions.pod:2660
13977 #: ../fish/guestfish-actions.pod:2673 ../fish/guestfish-actions.pod:2757
13978 #: ../fish/guestfish-actions.pod:3347 ../fish/guestfish-actions.pod:3867
13979 #: ../fish/guestfish-actions.pod:4177 ../fish/guestfish-actions.pod:4200
13980 #: ../fish/guestfish-actions.pod:4222 ../fish/guestfish-actions.pod:4951
13981 msgid ""
13982 "B<This command is dangerous.  Without careful use you can easily destroy all "
13983 "your data>."
13984 msgstr ""
13985
13986 # type: =head2
13987 #. type: =head2
13988 #: ../src/guestfs-actions.pod:3863
13989 msgid "guestfs_luks_format_cipher"
13990 msgstr ""
13991
13992 # type: verbatim
13993 #. type: verbatim
13994 #: ../src/guestfs-actions.pod:3865
13995 #, no-wrap
13996 msgid ""
13997 " int\n"
13998 " guestfs_luks_format_cipher (guestfs_h *g,\n"
13999 "                             const char *device,\n"
14000 "                             const char *key,\n"
14001 "                             int keyslot,\n"
14002 "                             const char *cipher);\n"
14003 "\n"
14004 msgstr ""
14005
14006 # type: textblock
14007 #. type: textblock
14008 #: ../src/guestfs-actions.pod:3872
14009 msgid ""
14010 "This command is the same as C<guestfs_luks_format> but it also allows you to "
14011 "set the C<cipher> used."
14012 msgstr ""
14013
14014 # type: =head2
14015 #. type: =head2
14016 #: ../src/guestfs-actions.pod:3886
14017 msgid "guestfs_luks_kill_slot"
14018 msgstr ""
14019
14020 # type: verbatim
14021 #. type: verbatim
14022 #: ../src/guestfs-actions.pod:3888
14023 #, no-wrap
14024 msgid ""
14025 " int\n"
14026 " guestfs_luks_kill_slot (guestfs_h *g,\n"
14027 "                         const char *device,\n"
14028 "                         const char *key,\n"
14029 "                         int keyslot);\n"
14030 "\n"
14031 msgstr ""
14032
14033 # type: textblock
14034 #. type: textblock
14035 #: ../src/guestfs-actions.pod:3894 ../fish/guestfish-actions.pod:2680
14036 msgid ""
14037 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
14038 "device C<device>.  C<key> must be one of the I<other> keys."
14039 msgstr ""
14040
14041 # type: =head2
14042 #. type: =head2
14043 #: ../src/guestfs-actions.pod:3906
14044 msgid "guestfs_luks_open"
14045 msgstr ""
14046
14047 # type: verbatim
14048 #. type: verbatim
14049 #: ../src/guestfs-actions.pod:3908
14050 #, no-wrap
14051 msgid ""
14052 " int\n"
14053 " guestfs_luks_open (guestfs_h *g,\n"
14054 "                    const char *device,\n"
14055 "                    const char *key,\n"
14056 "                    const char *mapname);\n"
14057 "\n"
14058 msgstr ""
14059
14060 # type: textblock
14061 #. type: textblock
14062 #: ../src/guestfs-actions.pod:3914 ../fish/guestfish-actions.pod:2691
14063 msgid ""
14064 "This command opens a block device which has been encrypted according to the "
14065 "Linux Unified Key Setup (LUKS) standard."
14066 msgstr ""
14067
14068 # type: textblock
14069 #. type: textblock
14070 #: ../src/guestfs-actions.pod:3917 ../fish/guestfish-actions.pod:2694
14071 msgid "C<device> is the encrypted block device or partition."
14072 msgstr ""
14073
14074 # type: textblock
14075 #. type: textblock
14076 #: ../src/guestfs-actions.pod:3919 ../fish/guestfish-actions.pod:2696
14077 msgid ""
14078 "The caller must supply one of the keys associated with the LUKS block "
14079 "device, in the C<key> parameter."
14080 msgstr ""
14081
14082 # type: textblock
14083 #. type: textblock
14084 #: ../src/guestfs-actions.pod:3922 ../fish/guestfish-actions.pod:2699
14085 msgid ""
14086 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
14087 "writes to this block device are decrypted from and encrypted to the "
14088 "underlying C<device> respectively."
14089 msgstr ""
14090
14091 # type: textblock
14092 #. type: textblock
14093 #: ../src/guestfs-actions.pod:3926
14094 msgid ""
14095 "If this block device contains LVM volume groups, then calling "
14096 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
14097 "visible."
14098 msgstr ""
14099
14100 # type: =head2
14101 #. type: =head2
14102 #: ../src/guestfs-actions.pod:3938
14103 msgid "guestfs_luks_open_ro"
14104 msgstr ""
14105
14106 # type: verbatim
14107 #. type: verbatim
14108 #: ../src/guestfs-actions.pod:3940
14109 #, no-wrap
14110 msgid ""
14111 " int\n"
14112 " guestfs_luks_open_ro (guestfs_h *g,\n"
14113 "                       const char *device,\n"
14114 "                       const char *key,\n"
14115 "                       const char *mapname);\n"
14116 "\n"
14117 msgstr ""
14118
14119 # type: textblock
14120 #. type: textblock
14121 #: ../src/guestfs-actions.pod:3946
14122 msgid ""
14123 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
14124 "created."
14125 msgstr ""
14126
14127 # type: =head2
14128 #. type: =head2
14129 #: ../src/guestfs-actions.pod:3957
14130 msgid "guestfs_lvcreate"
14131 msgstr ""
14132
14133 # type: verbatim
14134 #. type: verbatim
14135 #: ../src/guestfs-actions.pod:3959
14136 #, no-wrap
14137 msgid ""
14138 " int\n"
14139 " guestfs_lvcreate (guestfs_h *g,\n"
14140 "                   const char *logvol,\n"
14141 "                   const char *volgroup,\n"
14142 "                   int mbytes);\n"
14143 "\n"
14144 msgstr ""
14145
14146 # type: textblock
14147 #. type: textblock
14148 #: ../src/guestfs-actions.pod:3965 ../fish/guestfish-actions.pod:2724
14149 msgid ""
14150 "This creates an LVM logical volume called C<logvol> on the volume group "
14151 "C<volgroup>, with C<size> megabytes."
14152 msgstr ""
14153
14154 # type: =head2
14155 #. type: =head2
14156 #: ../src/guestfs-actions.pod:3972
14157 msgid "guestfs_lvm_canonical_lv_name"
14158 msgstr ""
14159
14160 # type: verbatim
14161 #. type: verbatim
14162 #: ../src/guestfs-actions.pod:3974
14163 #, no-wrap
14164 msgid ""
14165 " char *\n"
14166 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
14167 "                                const char *lvname);\n"
14168 "\n"
14169 msgstr ""
14170
14171 # type: textblock
14172 #. type: textblock
14173 #: ../src/guestfs-actions.pod:3978 ../fish/guestfish-actions.pod:2731
14174 msgid ""
14175 "This converts alternative naming schemes for LVs that you might find to the "
14176 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to C</dev/VG/"
14177 "LV>."
14178 msgstr ""
14179
14180 # type: textblock
14181 #. type: textblock
14182 #: ../src/guestfs-actions.pod:3982 ../fish/guestfish-actions.pod:2735
14183 msgid ""
14184 "This command returns an error if the C<lvname> parameter does not refer to a "
14185 "logical volume."
14186 msgstr ""
14187
14188 # type: textblock
14189 #. type: textblock
14190 #: ../src/guestfs-actions.pod:3985
14191 msgid "See also C<guestfs_is_lv>."
14192 msgstr ""
14193
14194 # type: textblock
14195 #. type: textblock
14196 #: ../src/guestfs-actions.pod:3990
14197 msgid "(Added in 1.5.24)"
14198 msgstr ""
14199
14200 # type: =head2
14201 #. type: =head2
14202 #: ../src/guestfs-actions.pod:3992
14203 msgid "guestfs_lvm_clear_filter"
14204 msgstr ""
14205
14206 # type: verbatim
14207 #. type: verbatim
14208 #: ../src/guestfs-actions.pod:3994
14209 #, no-wrap
14210 msgid ""
14211 " int\n"
14212 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
14213 "\n"
14214 msgstr ""
14215
14216 # type: textblock
14217 #. type: textblock
14218 #: ../src/guestfs-actions.pod:3997
14219 msgid ""
14220 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
14221 "see every block device."
14222 msgstr ""
14223
14224 # type: textblock
14225 #. type: textblock
14226 #: ../src/guestfs-actions.pod:4000 ../src/guestfs-actions.pod:4042
14227 #: ../fish/guestfish-actions.pod:2747 ../fish/guestfish-actions.pod:2778
14228 msgid ""
14229 "This command also clears the LVM cache and performs a volume group scan."
14230 msgstr ""
14231
14232 # type: =head2
14233 #. type: =head2
14234 #: ../src/guestfs-actions.pod:4007
14235 msgid "guestfs_lvm_remove_all"
14236 msgstr ""
14237
14238 # type: verbatim
14239 #. type: verbatim
14240 #: ../src/guestfs-actions.pod:4009
14241 #, no-wrap
14242 msgid ""
14243 " int\n"
14244 " guestfs_lvm_remove_all (guestfs_h *g);\n"
14245 "\n"
14246 msgstr ""
14247
14248 # type: textblock
14249 #. type: textblock
14250 #: ../src/guestfs-actions.pod:4012 ../fish/guestfish-actions.pod:2754
14251 msgid ""
14252 "This command removes all LVM logical volumes, volume groups and physical "
14253 "volumes."
14254 msgstr ""
14255
14256 # type: =head2
14257 #. type: =head2
14258 #: ../src/guestfs-actions.pod:4022
14259 msgid "guestfs_lvm_set_filter"
14260 msgstr ""
14261
14262 # type: verbatim
14263 #. type: verbatim
14264 #: ../src/guestfs-actions.pod:4024
14265 #, no-wrap
14266 msgid ""
14267 " int\n"
14268 " guestfs_lvm_set_filter (guestfs_h *g,\n"
14269 "                         char *const *devices);\n"
14270 "\n"
14271 msgstr ""
14272
14273 # type: textblock
14274 #. type: textblock
14275 #: ../src/guestfs-actions.pod:4028 ../fish/guestfish-actions.pod:2764
14276 msgid ""
14277 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
14278 "block devices in the list C<devices>, and will ignore all other attached "
14279 "block devices."
14280 msgstr ""
14281
14282 # type: textblock
14283 #. type: textblock
14284 #: ../src/guestfs-actions.pod:4032 ../fish/guestfish-actions.pod:2768
14285 msgid ""
14286 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
14287 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
14288 "there are two types of duplication possible: either cloned PVs/VGs which "
14289 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
14290 "same name.  In normal operation you cannot create this situation, but you "
14291 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
14292 "inside the LVM metadata."
14293 msgstr ""
14294
14295 # type: textblock
14296 #. type: textblock
14297 #: ../src/guestfs-actions.pod:4045 ../fish/guestfish-actions.pod:2781
14298 msgid "You can filter whole block devices or individual partitions."
14299 msgstr ""
14300
14301 # type: textblock
14302 #. type: textblock
14303 #: ../src/guestfs-actions.pod:4047 ../fish/guestfish-actions.pod:2783
14304 msgid ""
14305 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
14306 "filesystem), even if you are not filtering out that VG."
14307 msgstr ""
14308
14309 # type: =head2
14310 #. type: =head2
14311 #: ../src/guestfs-actions.pod:4055
14312 msgid "guestfs_lvremove"
14313 msgstr ""
14314
14315 # type: verbatim
14316 #. type: verbatim
14317 #: ../src/guestfs-actions.pod:4057
14318 #, no-wrap
14319 msgid ""
14320 " int\n"
14321 " guestfs_lvremove (guestfs_h *g,\n"
14322 "                   const char *device);\n"
14323 "\n"
14324 msgstr ""
14325
14326 # type: textblock
14327 #. type: textblock
14328 #: ../src/guestfs-actions.pod:4061 ../fish/guestfish-actions.pod:2791
14329 msgid ""
14330 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
14331 "LV, such as C</dev/VG/LV>."
14332 msgstr ""
14333
14334 # type: textblock
14335 #. type: textblock
14336 #: ../src/guestfs-actions.pod:4064 ../fish/guestfish-actions.pod:2794
14337 msgid ""
14338 "You can also remove all LVs in a volume group by specifying the VG name, C</"
14339 "dev/VG>."
14340 msgstr ""
14341
14342 # type: textblock
14343 #. type: textblock
14344 #: ../src/guestfs-actions.pod:4069 ../src/guestfs-actions.pod:5321
14345 #: ../src/guestfs-actions.pod:7138
14346 msgid "(Added in 1.0.13)"
14347 msgstr ""
14348
14349 # type: =head2
14350 #. type: =head2
14351 #: ../src/guestfs-actions.pod:4071
14352 msgid "guestfs_lvrename"
14353 msgstr ""
14354
14355 # type: verbatim
14356 #. type: verbatim
14357 #: ../src/guestfs-actions.pod:4073
14358 #, no-wrap
14359 msgid ""
14360 " int\n"
14361 " guestfs_lvrename (guestfs_h *g,\n"
14362 "                   const char *logvol,\n"
14363 "                   const char *newlogvol);\n"
14364 "\n"
14365 msgstr ""
14366
14367 # type: textblock
14368 #. type: textblock
14369 #: ../src/guestfs-actions.pod:4078 ../fish/guestfish-actions.pod:2801
14370 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
14371 msgstr ""
14372
14373 # type: textblock
14374 #. type: textblock
14375 #: ../src/guestfs-actions.pod:4082 ../src/guestfs-actions.pod:7151
14376 msgid "(Added in 1.0.83)"
14377 msgstr ""
14378
14379 # type: =head2
14380 #. type: =head2
14381 #: ../src/guestfs-actions.pod:4084
14382 msgid "guestfs_lvresize"
14383 msgstr ""
14384
14385 # type: verbatim
14386 #. type: verbatim
14387 #: ../src/guestfs-actions.pod:4086
14388 #, no-wrap
14389 msgid ""
14390 " int\n"
14391 " guestfs_lvresize (guestfs_h *g,\n"
14392 "                   const char *device,\n"
14393 "                   int mbytes);\n"
14394 "\n"
14395 msgstr ""
14396
14397 # type: textblock
14398 #. type: textblock
14399 #: ../src/guestfs-actions.pod:4091 ../fish/guestfish-actions.pod:2807
14400 msgid ""
14401 "This resizes (expands or shrinks) an existing LVM logical volume to "
14402 "C<mbytes>.  When reducing, data in the reduced part is lost."
14403 msgstr ""
14404
14405 # type: =head2
14406 #. type: =head2
14407 #: ../src/guestfs-actions.pod:4099
14408 msgid "guestfs_lvresize_free"
14409 msgstr ""
14410
14411 # type: verbatim
14412 #. type: verbatim
14413 #: ../src/guestfs-actions.pod:4101
14414 #, no-wrap
14415 msgid ""
14416 " int\n"
14417 " guestfs_lvresize_free (guestfs_h *g,\n"
14418 "                        const char *lv,\n"
14419 "                        int percent);\n"
14420 "\n"
14421 msgstr ""
14422
14423 # type: textblock
14424 #. type: textblock
14425 #: ../src/guestfs-actions.pod:4106 ../fish/guestfish-actions.pod:2815
14426 msgid ""
14427 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
14428 "remaining free space in the volume group.  Commonly you would call this with "
14429 "pc = 100 which expands the logical volume as much as possible, using all "
14430 "remaining free space in the volume group."
14431 msgstr ""
14432
14433 # type: textblock
14434 #. type: textblock
14435 #: ../src/guestfs-actions.pod:4114
14436 msgid "(Added in 1.3.3)"
14437 msgstr ""
14438
14439 # type: =head2
14440 #. type: =head2
14441 #: ../src/guestfs-actions.pod:4116
14442 msgid "guestfs_lvs"
14443 msgstr ""
14444
14445 # type: verbatim
14446 #. type: verbatim
14447 #: ../src/guestfs-actions.pod:4118
14448 #, no-wrap
14449 msgid ""
14450 " char **\n"
14451 " guestfs_lvs (guestfs_h *g);\n"
14452 "\n"
14453 msgstr ""
14454
14455 # type: textblock
14456 #. type: textblock
14457 #: ../src/guestfs-actions.pod:4121 ../fish/guestfish-actions.pod:2825
14458 msgid ""
14459 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
14460 "(8)> command."
14461 msgstr ""
14462
14463 # type: textblock
14464 #. type: textblock
14465 #: ../src/guestfs-actions.pod:4124 ../fish/guestfish-actions.pod:2828
14466 msgid ""
14467 "This returns a list of the logical volume device names (eg. C</dev/"
14468 "VolGroup00/LogVol00>)."
14469 msgstr ""
14470
14471 # type: textblock
14472 #. type: textblock
14473 #: ../src/guestfs-actions.pod:4127
14474 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
14475 msgstr ""
14476
14477 # type: =head2
14478 #. type: =head2
14479 #: ../src/guestfs-actions.pod:4135
14480 msgid "guestfs_lvs_full"
14481 msgstr ""
14482
14483 # type: verbatim
14484 #. type: verbatim
14485 #: ../src/guestfs-actions.pod:4137
14486 #, no-wrap
14487 msgid ""
14488 " struct guestfs_lvm_lv_list *\n"
14489 " guestfs_lvs_full (guestfs_h *g);\n"
14490 "\n"
14491 msgstr ""
14492
14493 # type: textblock
14494 #. type: textblock
14495 #: ../src/guestfs-actions.pod:4140 ../fish/guestfish-actions.pod:2837
14496 msgid ""
14497 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
14498 "(8)> command.  The \"full\" version includes all fields."
14499 msgstr ""
14500
14501 # type: textblock
14502 #. type: textblock
14503 #: ../src/guestfs-actions.pod:4143
14504 msgid ""
14505 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
14506 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after use>."
14507 msgstr ""
14508
14509 # type: =head2
14510 #. type: =head2
14511 #: ../src/guestfs-actions.pod:4149
14512 msgid "guestfs_lvuuid"
14513 msgstr ""
14514
14515 # type: verbatim
14516 #. type: verbatim
14517 #: ../src/guestfs-actions.pod:4151
14518 #, no-wrap
14519 msgid ""
14520 " char *\n"
14521 " guestfs_lvuuid (guestfs_h *g,\n"
14522 "                 const char *device);\n"
14523 "\n"
14524 msgstr ""
14525
14526 # type: textblock
14527 #. type: textblock
14528 #: ../src/guestfs-actions.pod:4155 ../fish/guestfish-actions.pod:2844
14529 msgid "This command returns the UUID of the LVM LV C<device>."
14530 msgstr ""
14531
14532 # type: =head2
14533 #. type: =head2
14534 #: ../src/guestfs-actions.pod:4162
14535 msgid "guestfs_lxattrlist"
14536 msgstr ""
14537
14538 # type: verbatim
14539 #. type: verbatim
14540 #: ../src/guestfs-actions.pod:4164
14541 #, no-wrap
14542 msgid ""
14543 " struct guestfs_xattr_list *\n"
14544 " guestfs_lxattrlist (guestfs_h *g,\n"
14545 "                     const char *path,\n"
14546 "                     char *const *names);\n"
14547 "\n"
14548 msgstr ""
14549
14550 # type: textblock
14551 #. type: textblock
14552 #: ../src/guestfs-actions.pod:4169 ../fish/guestfish-actions.pod:2850
14553 msgid ""
14554 "This call allows you to get the extended attributes of multiple files, where "
14555 "all files are in the directory C<path>.  C<names> is the list of files from "
14556 "this directory."
14557 msgstr ""
14558
14559 # type: textblock
14560 #. type: textblock
14561 #: ../src/guestfs-actions.pod:4173 ../fish/guestfish-actions.pod:2854
14562 msgid ""
14563 "On return you get a flat list of xattr structs which must be interpreted "
14564 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
14565 "C<attrval> in this struct is zero-length to indicate there was an error "
14566 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
14567 "number (the number of following attributes for this file, which could be C<"
14568 "\"0\">).  Then after the first xattr struct are the zero or more attributes "
14569 "for the first named file.  This repeats for the second and subsequent files."
14570 msgstr ""
14571
14572 # type: textblock
14573 #. type: textblock
14574 #: ../src/guestfs-actions.pod:4183
14575 msgid ""
14576 "This call is intended for programs that want to efficiently list a directory "
14577 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
14578 "a similarly efficient call for getting standard stats.  Very long directory "
14579 "listings might cause the protocol message size to be exceeded, causing this "
14580 "call to fail.  The caller must split up such requests into smaller groups of "
14581 "names."
14582 msgstr ""
14583
14584 # type: =head2
14585 #. type: =head2
14586 #: ../src/guestfs-actions.pod:4197
14587 msgid "guestfs_mkdir"
14588 msgstr ""
14589
14590 # type: verbatim
14591 #. type: verbatim
14592 #: ../src/guestfs-actions.pod:4199
14593 #, no-wrap
14594 msgid ""
14595 " int\n"
14596 " guestfs_mkdir (guestfs_h *g,\n"
14597 "                const char *path);\n"
14598 "\n"
14599 msgstr ""
14600
14601 # type: textblock
14602 #. type: textblock
14603 #: ../src/guestfs-actions.pod:4203 ../fish/guestfish-actions.pod:2876
14604 msgid "Create a directory named C<path>."
14605 msgstr ""
14606
14607 # type: =head2
14608 #. type: =head2
14609 #: ../src/guestfs-actions.pod:4209
14610 msgid "guestfs_mkdir_mode"
14611 msgstr ""
14612
14613 # type: verbatim
14614 #. type: verbatim
14615 #: ../src/guestfs-actions.pod:4211
14616 #, no-wrap
14617 msgid ""
14618 " int\n"
14619 " guestfs_mkdir_mode (guestfs_h *g,\n"
14620 "                     const char *path,\n"
14621 "                     int mode);\n"
14622 "\n"
14623 msgstr ""
14624
14625 # type: textblock
14626 #. type: textblock
14627 #: ../src/guestfs-actions.pod:4216 ../fish/guestfish-actions.pod:2882
14628 msgid ""
14629 "This command creates a directory, setting the initial permissions of the "
14630 "directory to C<mode>."
14631 msgstr ""
14632
14633 # type: textblock
14634 #. type: textblock
14635 #: ../src/guestfs-actions.pod:4219 ../fish/guestfish-actions.pod:2885
14636 msgid ""
14637 "For common Linux filesystems, the actual mode which is set will be C<mode & "
14638 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
14639 "other ways."
14640 msgstr ""
14641
14642 # type: textblock
14643 #. type: textblock
14644 #: ../src/guestfs-actions.pod:4223
14645 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
14646 msgstr ""
14647
14648 # type: =head2
14649 #. type: =head2
14650 #: ../src/guestfs-actions.pod:4229
14651 msgid "guestfs_mkdir_p"
14652 msgstr ""
14653
14654 # type: verbatim
14655 #. type: verbatim
14656 #: ../src/guestfs-actions.pod:4231
14657 #, no-wrap
14658 msgid ""
14659 " int\n"
14660 " guestfs_mkdir_p (guestfs_h *g,\n"
14661 "                  const char *path);\n"
14662 "\n"
14663 msgstr ""
14664
14665 # type: textblock
14666 #. type: textblock
14667 #: ../src/guestfs-actions.pod:4235 ../fish/guestfish-actions.pod:2895
14668 msgid ""
14669 "Create a directory named C<path>, creating any parent directories as "
14670 "necessary.  This is like the C<mkdir -p> shell command."
14671 msgstr ""
14672
14673 # type: =head2
14674 #. type: =head2
14675 #: ../src/guestfs-actions.pod:4242
14676 msgid "guestfs_mkdtemp"
14677 msgstr ""
14678
14679 # type: verbatim
14680 #. type: verbatim
14681 #: ../src/guestfs-actions.pod:4244
14682 #, no-wrap
14683 msgid ""
14684 " char *\n"
14685 " guestfs_mkdtemp (guestfs_h *g,\n"
14686 "                  const char *template);\n"
14687 "\n"
14688 msgstr ""
14689
14690 # type: textblock
14691 #. type: textblock
14692 #: ../src/guestfs-actions.pod:4248 ../fish/guestfish-actions.pod:2902
14693 msgid ""
14694 "This command creates a temporary directory.  The C<template> parameter "
14695 "should be a full pathname for the temporary directory name with the final "
14696 "six characters being \"XXXXXX\"."
14697 msgstr ""
14698
14699 # type: textblock
14700 #. type: textblock
14701 #: ../src/guestfs-actions.pod:4253 ../fish/guestfish-actions.pod:2907
14702 msgid ""
14703 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
14704 "being suitable for Windows filesystems."
14705 msgstr ""
14706
14707 # type: textblock
14708 #. type: textblock
14709 #: ../src/guestfs-actions.pod:4256 ../fish/guestfish-actions.pod:2910
14710 msgid "The name of the temporary directory that was created is returned."
14711 msgstr ""
14712
14713 # type: textblock
14714 #. type: textblock
14715 #: ../src/guestfs-actions.pod:4259 ../fish/guestfish-actions.pod:2913
14716 msgid "The temporary directory is created with mode 0700 and is owned by root."
14717 msgstr ""
14718
14719 # type: textblock
14720 #. type: textblock
14721 #: ../src/guestfs-actions.pod:4262 ../fish/guestfish-actions.pod:2916
14722 msgid ""
14723 "The caller is responsible for deleting the temporary directory and its "
14724 "contents after use."
14725 msgstr ""
14726
14727 # type: textblock
14728 #. type: textblock
14729 #: ../src/guestfs-actions.pod:4265 ../fish/guestfish-actions.pod:2919
14730 msgid "See also: L<mkdtemp(3)>"
14731 msgstr ""
14732
14733 # type: =head2
14734 #. type: =head2
14735 #: ../src/guestfs-actions.pod:4272
14736 msgid "guestfs_mke2fs_J"
14737 msgstr ""
14738
14739 # type: verbatim
14740 #. type: verbatim
14741 #: ../src/guestfs-actions.pod:4274
14742 #, no-wrap
14743 msgid ""
14744 " int\n"
14745 " guestfs_mke2fs_J (guestfs_h *g,\n"
14746 "                   const char *fstype,\n"
14747 "                   int blocksize,\n"
14748 "                   const char *device,\n"
14749 "                   const char *journal);\n"
14750 "\n"
14751 msgstr ""
14752
14753 # type: textblock
14754 #. type: textblock
14755 #: ../src/guestfs-actions.pod:4281 ../fish/guestfish-actions.pod:2925
14756 msgid ""
14757 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14758 "C<journal>.  It is equivalent to the command:"
14759 msgstr ""
14760
14761 # type: verbatim
14762 #. type: verbatim
14763 #: ../src/guestfs-actions.pod:4285 ../fish/guestfish-actions.pod:2929
14764 #, no-wrap
14765 msgid ""
14766 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
14767 "\n"
14768 msgstr ""
14769
14770 # type: textblock
14771 #. type: textblock
14772 #: ../src/guestfs-actions.pod:4287
14773 msgid "See also C<guestfs_mke2journal>."
14774 msgstr ""
14775
14776 # type: textblock
14777 #. type: textblock
14778 #: ../src/guestfs-actions.pod:4291 ../src/guestfs-actions.pod:4309
14779 #: ../src/guestfs-actions.pod:4327 ../src/guestfs-actions.pod:4343
14780 #: ../src/guestfs-actions.pod:4357 ../src/guestfs-actions.pod:4371
14781 #: ../src/guestfs-actions.pod:4430 ../src/guestfs-actions.pod:4695
14782 msgid "(Added in 1.0.68)"
14783 msgstr ""
14784
14785 # type: =head2
14786 #. type: =head2
14787 #: ../src/guestfs-actions.pod:4293
14788 msgid "guestfs_mke2fs_JL"
14789 msgstr ""
14790
14791 # type: verbatim
14792 #. type: verbatim
14793 #: ../src/guestfs-actions.pod:4295
14794 #, no-wrap
14795 msgid ""
14796 " int\n"
14797 " guestfs_mke2fs_JL (guestfs_h *g,\n"
14798 "                    const char *fstype,\n"
14799 "                    int blocksize,\n"
14800 "                    const char *device,\n"
14801 "                    const char *label);\n"
14802 "\n"
14803 msgstr ""
14804
14805 # type: textblock
14806 #. type: textblock
14807 #: ../src/guestfs-actions.pod:4302 ../fish/guestfish-actions.pod:2937
14808 msgid ""
14809 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14810 "the journal labeled C<label>."
14811 msgstr ""
14812
14813 # type: textblock
14814 #. type: textblock
14815 #: ../src/guestfs-actions.pod:4305
14816 msgid "See also C<guestfs_mke2journal_L>."
14817 msgstr ""
14818
14819 # type: =head2
14820 #. type: =head2
14821 #: ../src/guestfs-actions.pod:4311
14822 msgid "guestfs_mke2fs_JU"
14823 msgstr ""
14824
14825 # type: verbatim
14826 #. type: verbatim
14827 #: ../src/guestfs-actions.pod:4313
14828 #, no-wrap
14829 msgid ""
14830 " int\n"
14831 " guestfs_mke2fs_JU (guestfs_h *g,\n"
14832 "                    const char *fstype,\n"
14833 "                    int blocksize,\n"
14834 "                    const char *device,\n"
14835 "                    const char *uuid);\n"
14836 "\n"
14837 msgstr ""
14838
14839 # type: textblock
14840 #. type: textblock
14841 #: ../src/guestfs-actions.pod:4320 ../fish/guestfish-actions.pod:2946
14842 msgid ""
14843 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14844 "the journal with UUID C<uuid>."
14845 msgstr ""
14846
14847 # type: textblock
14848 #. type: textblock
14849 #: ../src/guestfs-actions.pod:4323
14850 msgid "See also C<guestfs_mke2journal_U>."
14851 msgstr ""
14852
14853 # type: =head2
14854 #. type: =head2
14855 #: ../src/guestfs-actions.pod:4329
14856 msgid "guestfs_mke2journal"
14857 msgstr ""
14858
14859 # type: verbatim
14860 #. type: verbatim
14861 #: ../src/guestfs-actions.pod:4331
14862 #, no-wrap
14863 msgid ""
14864 " int\n"
14865 " guestfs_mke2journal (guestfs_h *g,\n"
14866 "                      int blocksize,\n"
14867 "                      const char *device);\n"
14868 "\n"
14869 msgstr ""
14870
14871 # type: textblock
14872 #. type: textblock
14873 #: ../src/guestfs-actions.pod:4336 ../fish/guestfish-actions.pod:2955
14874 msgid ""
14875 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
14876 "command:"
14877 msgstr ""
14878
14879 # type: verbatim
14880 #. type: verbatim
14881 #: ../src/guestfs-actions.pod:4339 ../fish/guestfish-actions.pod:2958
14882 #, no-wrap
14883 msgid ""
14884 " mke2fs -O journal_dev -b blocksize device\n"
14885 "\n"
14886 msgstr ""
14887
14888 # type: =head2
14889 #. type: =head2
14890 #: ../src/guestfs-actions.pod:4345
14891 msgid "guestfs_mke2journal_L"
14892 msgstr ""
14893
14894 # type: verbatim
14895 #. type: verbatim
14896 #: ../src/guestfs-actions.pod:4347
14897 #, no-wrap
14898 msgid ""
14899 " int\n"
14900 " guestfs_mke2journal_L (guestfs_h *g,\n"
14901 "                        int blocksize,\n"
14902 "                        const char *label,\n"
14903 "                        const char *device);\n"
14904 "\n"
14905 msgstr ""
14906
14907 # type: textblock
14908 #. type: textblock
14909 #: ../src/guestfs-actions.pod:4353 ../fish/guestfish-actions.pod:2964
14910 msgid "This creates an ext2 external journal on C<device> with label C<label>."
14911 msgstr ""
14912
14913 # type: =head2
14914 #. type: =head2
14915 #: ../src/guestfs-actions.pod:4359
14916 msgid "guestfs_mke2journal_U"
14917 msgstr ""
14918
14919 # type: verbatim
14920 #. type: verbatim
14921 #: ../src/guestfs-actions.pod:4361
14922 #, no-wrap
14923 msgid ""
14924 " int\n"
14925 " guestfs_mke2journal_U (guestfs_h *g,\n"
14926 "                        int blocksize,\n"
14927 "                        const char *uuid,\n"
14928 "                        const char *device);\n"
14929 "\n"
14930 msgstr ""
14931
14932 # type: textblock
14933 #. type: textblock
14934 #: ../src/guestfs-actions.pod:4367 ../fish/guestfish-actions.pod:2970
14935 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
14936 msgstr ""
14937
14938 # type: =head2
14939 #. type: =head2
14940 #: ../src/guestfs-actions.pod:4373
14941 msgid "guestfs_mkfifo"
14942 msgstr ""
14943
14944 # type: verbatim
14945 #. type: verbatim
14946 #: ../src/guestfs-actions.pod:4375
14947 #, no-wrap
14948 msgid ""
14949 " int\n"
14950 " guestfs_mkfifo (guestfs_h *g,\n"
14951 "                 int mode,\n"
14952 "                 const char *path);\n"
14953 "\n"
14954 msgstr ""
14955
14956 # type: textblock
14957 #. type: textblock
14958 #: ../src/guestfs-actions.pod:4380
14959 msgid ""
14960 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
14961 "is just a convenient wrapper around C<guestfs_mknod>."
14962 msgstr ""
14963
14964 # type: =head2
14965 #. type: =head2
14966 #: ../src/guestfs-actions.pod:4390
14967 msgid "guestfs_mkfs"
14968 msgstr ""
14969
14970 # type: verbatim
14971 #. type: verbatim
14972 #: ../src/guestfs-actions.pod:4392
14973 #, no-wrap
14974 msgid ""
14975 " int\n"
14976 " guestfs_mkfs (guestfs_h *g,\n"
14977 "               const char *fstype,\n"
14978 "               const char *device);\n"
14979 "\n"
14980 msgstr ""
14981
14982 # type: textblock
14983 #. type: textblock
14984 #: ../src/guestfs-actions.pod:4397 ../fish/guestfish-actions.pod:2986
14985 msgid ""
14986 "This creates a filesystem on C<device> (usually a partition or LVM logical "
14987 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
14988 msgstr ""
14989
14990 # type: =head2
14991 #. type: =head2
14992 #: ../src/guestfs-actions.pod:4405
14993 msgid "guestfs_mkfs_b"
14994 msgstr ""
14995
14996 # type: verbatim
14997 #. type: verbatim
14998 #: ../src/guestfs-actions.pod:4407
14999 #, no-wrap
15000 msgid ""
15001 " int\n"
15002 " guestfs_mkfs_b (guestfs_h *g,\n"
15003 "                 const char *fstype,\n"
15004 "                 int blocksize,\n"
15005 "                 const char *device);\n"
15006 "\n"
15007 msgstr ""
15008
15009 # type: textblock
15010 #. type: textblock
15011 #: ../src/guestfs-actions.pod:4413
15012 msgid ""
15013 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
15014 "block size of the resulting filesystem.  Supported block sizes depend on the "
15015 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
15016 msgstr ""
15017
15018 # type: textblock
15019 #. type: textblock
15020 #: ../src/guestfs-actions.pod:4418 ../src/guestfs-actions.pod:4461
15021 #: ../fish/guestfish-actions.pod:2999 ../fish/guestfish-actions.pod:3026
15022 msgid ""
15023 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
15024 "cluster size."
15025 msgstr ""
15026
15027 # type: textblock
15028 #. type: textblock
15029 #: ../src/guestfs-actions.pod:4423 ../fish/guestfish-actions.pod:3002
15030 msgid ""
15031 "This function is deprecated.  In new code, use the C<mkfs_opts> call instead."
15032 msgstr ""
15033
15034 # type: =head2
15035 #. type: =head2
15036 #: ../src/guestfs-actions.pod:4432
15037 msgid "guestfs_mkfs_opts"
15038 msgstr ""
15039
15040 # type: verbatim
15041 #. type: verbatim
15042 #: ../src/guestfs-actions.pod:4434
15043 #, no-wrap
15044 msgid ""
15045 " int\n"
15046 " guestfs_mkfs_opts (guestfs_h *g,\n"
15047 "                    const char *fstype,\n"
15048 "                    const char *device,\n"
15049 "                    ...);\n"
15050 "\n"
15051 msgstr ""
15052
15053 #. type: verbatim
15054 #: ../src/guestfs-actions.pod:4445
15055 #, no-wrap
15056 msgid ""
15057 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
15058 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
15059 "\n"
15060 msgstr ""
15061
15062 # type: textblock
15063 #. type: textblock
15064 #: ../src/guestfs-actions.pod:4448 ../fish/guestfish-actions.pod:3013
15065 msgid ""
15066 "This function creates a filesystem on C<device>.  The filesystem type is "
15067 "C<fstype>, for example C<ext3>."
15068 msgstr ""
15069
15070 # type: =item
15071 #. type: =item
15072 #: ../src/guestfs-actions.pod:4455 ../fish/guestfish-actions.pod:3020
15073 msgid "C<blocksize>"
15074 msgstr ""
15075
15076 # type: textblock
15077 #. type: textblock
15078 #: ../src/guestfs-actions.pod:4457 ../fish/guestfish-actions.pod:3022
15079 msgid ""
15080 "The filesystem block size.  Supported block sizes depend on the filesystem "
15081 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
15082 "filesystems."
15083 msgstr ""
15084
15085 #. type: textblock
15086 #: ../src/guestfs-actions.pod:4464 ../fish/guestfish-actions.pod:3029
15087 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
15088 msgstr ""
15089
15090 #. type: =item
15091 #: ../src/guestfs-actions.pod:4466 ../fish/guestfish-actions.pod:3031
15092 msgid "C<features>"
15093 msgstr ""
15094
15095 #. type: textblock
15096 #: ../src/guestfs-actions.pod:4468 ../fish/guestfish-actions.pod:3033
15097 msgid "This passes the I<-O> parameter to the external mkfs program."
15098 msgstr ""
15099
15100 #. type: textblock
15101 #: ../src/guestfs-actions.pod:4470 ../fish/guestfish-actions.pod:3035
15102 msgid ""
15103 "For certain filesystem types, this allows extra filesystem features to be "
15104 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
15105 msgstr ""
15106
15107 #. type: textblock
15108 #: ../src/guestfs-actions.pod:4474 ../fish/guestfish-actions.pod:3039
15109 msgid ""
15110 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
15111 "type."
15112 msgstr ""
15113
15114 #. type: textblock
15115 #: ../src/guestfs-actions.pod:4481
15116 msgid "(Added in 1.7.19)"
15117 msgstr ""
15118
15119 # type: =head2
15120 #. type: =head2
15121 #: ../src/guestfs-actions.pod:4483
15122 msgid "guestfs_mkfs_opts_va"
15123 msgstr ""
15124
15125 # type: verbatim
15126 #. type: verbatim
15127 #: ../src/guestfs-actions.pod:4485
15128 #, no-wrap
15129 msgid ""
15130 " int\n"
15131 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
15132 "                       const char *fstype,\n"
15133 "                       const char *device,\n"
15134 "                       va_list args);\n"
15135 "\n"
15136 msgstr ""
15137
15138 # type: textblock
15139 #. type: textblock
15140 #: ../src/guestfs-actions.pod:4491
15141 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
15142 msgstr ""
15143
15144 # type: =head2
15145 #. type: =head2
15146 #: ../src/guestfs-actions.pod:4495
15147 msgid "guestfs_mkfs_opts_argv"
15148 msgstr ""
15149
15150 # type: verbatim
15151 #. type: verbatim
15152 #: ../src/guestfs-actions.pod:4497
15153 #, no-wrap
15154 msgid ""
15155 " int\n"
15156 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
15157 "                         const char *fstype,\n"
15158 "                         const char *device,\n"
15159 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
15160 "\n"
15161 msgstr ""
15162
15163 # type: textblock
15164 #. type: textblock
15165 #: ../src/guestfs-actions.pod:4503
15166 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
15167 msgstr ""
15168
15169 # type: =head2
15170 #. type: =head2
15171 #: ../src/guestfs-actions.pod:4507
15172 msgid "guestfs_mkmountpoint"
15173 msgstr ""
15174
15175 # type: verbatim
15176 #. type: verbatim
15177 #: ../src/guestfs-actions.pod:4509
15178 #, no-wrap
15179 msgid ""
15180 " int\n"
15181 " guestfs_mkmountpoint (guestfs_h *g,\n"
15182 "                       const char *exemptpath);\n"
15183 "\n"
15184 msgstr ""
15185
15186 # type: textblock
15187 #. type: textblock
15188 #: ../src/guestfs-actions.pod:4513
15189 msgid ""
15190 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
15191 "that can be used to create extra mountpoints before mounting the first "
15192 "filesystem."
15193 msgstr ""
15194
15195 # type: textblock
15196 #. type: textblock
15197 #: ../src/guestfs-actions.pod:4517 ../fish/guestfish-actions.pod:3054
15198 msgid ""
15199 "These calls are I<only> necessary in some very limited circumstances, mainly "
15200 "the case where you want to mount a mix of unrelated and/or read-only "
15201 "filesystems together."
15202 msgstr ""
15203
15204 # type: textblock
15205 #. type: textblock
15206 #: ../src/guestfs-actions.pod:4521 ../fish/guestfish-actions.pod:3058
15207 msgid ""
15208 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
15209 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
15210 "inside that.  You can unpack this as follows in guestfish:"
15211 msgstr ""
15212
15213 # type: verbatim
15214 #. type: verbatim
15215 #: ../src/guestfs-actions.pod:4526 ../fish/guestfish-actions.pod:3063
15216 #, no-wrap
15217 msgid ""
15218 " add-ro Fedora-11-i686-Live.iso\n"
15219 " run\n"
15220 " mkmountpoint /cd\n"
15221 " mkmountpoint /sqsh\n"
15222 " mkmountpoint /ext3fs\n"
15223 " mount /dev/sda /cd\n"
15224 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
15225 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
15226 "\n"
15227 msgstr ""
15228
15229 # type: textblock
15230 #. type: textblock
15231 #: ../src/guestfs-actions.pod:4535 ../fish/guestfish-actions.pod:3072
15232 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
15233 msgstr ""
15234
15235 # type: textblock
15236 #. type: textblock
15237 #: ../src/guestfs-actions.pod:4537
15238 msgid ""
15239 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
15240 "may get unexpected errors if you try to mix these calls.  It is safest to "
15241 "manually unmount filesystems and remove mountpoints after use."
15242 msgstr ""
15243
15244 # type: textblock
15245 #. type: textblock
15246 #: ../src/guestfs-actions.pod:4541
15247 msgid ""
15248 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
15249 "first, so for this to work for manual mountpoints, you must ensure that the "
15250 "innermost mountpoints have the longest pathnames, as in the example code "
15251 "above."
15252 msgstr ""
15253
15254 # type: textblock
15255 #. type: textblock
15256 #: ../src/guestfs-actions.pod:4546 ../fish/guestfish-actions.pod:3083
15257 msgid ""
15258 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
15259 msgstr ""
15260
15261 #. type: textblock
15262 #: ../src/guestfs-actions.pod:4548
15263 msgid ""
15264 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
15265 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
15266 "can also trigger these issues."
15267 msgstr ""
15268
15269 # type: textblock
15270 #. type: textblock
15271 #: ../src/guestfs-actions.pod:4554 ../src/guestfs-actions.pod:4820
15272 #: ../src/guestfs-actions.pod:5739
15273 msgid "(Added in 1.0.62)"
15274 msgstr ""
15275
15276 # type: =head2
15277 #. type: =head2
15278 #: ../src/guestfs-actions.pod:4556
15279 msgid "guestfs_mknod"
15280 msgstr ""
15281
15282 # type: verbatim
15283 #. type: verbatim
15284 #: ../src/guestfs-actions.pod:4558
15285 #, no-wrap
15286 msgid ""
15287 " int\n"
15288 " guestfs_mknod (guestfs_h *g,\n"
15289 "                int mode,\n"
15290 "                int devmajor,\n"
15291 "                int devminor,\n"
15292 "                const char *path);\n"
15293 "\n"
15294 msgstr ""
15295
15296 # type: textblock
15297 #. type: textblock
15298 #: ../src/guestfs-actions.pod:4565 ../fish/guestfish-actions.pod:3093
15299 msgid ""
15300 "This call creates block or character special devices, or named pipes (FIFOs)."
15301 msgstr ""
15302
15303 # type: textblock
15304 #. type: textblock
15305 #: ../src/guestfs-actions.pod:4568 ../fish/guestfish-actions.pod:3096
15306 msgid ""
15307 "The C<mode> parameter should be the mode, using the standard constants.  "
15308 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
15309 "used when creating block and character special devices."
15310 msgstr ""
15311
15312 # type: textblock
15313 #. type: textblock
15314 #: ../src/guestfs-actions.pod:4573
15315 msgid ""
15316 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
15317 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
15318 "regular file).  These constants are available in the standard Linux header "
15319 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
15320 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
15321 "the appropriate constant for you."
15322 msgstr ""
15323
15324 # type: =head2
15325 #. type: =head2
15326 #: ../src/guestfs-actions.pod:4587
15327 msgid "guestfs_mknod_b"
15328 msgstr ""
15329
15330 # type: verbatim
15331 #. type: verbatim
15332 #: ../src/guestfs-actions.pod:4589
15333 #, no-wrap
15334 msgid ""
15335 " int\n"
15336 " guestfs_mknod_b (guestfs_h *g,\n"
15337 "                  int mode,\n"
15338 "                  int devmajor,\n"
15339 "                  int devminor,\n"
15340 "                  const char *path);\n"
15341 "\n"
15342 msgstr ""
15343
15344 # type: textblock
15345 #. type: textblock
15346 #: ../src/guestfs-actions.pod:4596
15347 msgid ""
15348 "This call creates a block device node called C<path> with mode C<mode> and "
15349 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
15350 "wrapper around C<guestfs_mknod>."
15351 msgstr ""
15352
15353 # type: =head2
15354 #. type: =head2
15355 #: ../src/guestfs-actions.pod:4606
15356 msgid "guestfs_mknod_c"
15357 msgstr ""
15358
15359 # type: verbatim
15360 #. type: verbatim
15361 #: ../src/guestfs-actions.pod:4608
15362 #, no-wrap
15363 msgid ""
15364 " int\n"
15365 " guestfs_mknod_c (guestfs_h *g,\n"
15366 "                  int mode,\n"
15367 "                  int devmajor,\n"
15368 "                  int devminor,\n"
15369 "                  const char *path);\n"
15370 "\n"
15371 msgstr ""
15372
15373 # type: textblock
15374 #. type: textblock
15375 #: ../src/guestfs-actions.pod:4615
15376 msgid ""
15377 "This call creates a char device node called C<path> with mode C<mode> and "
15378 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
15379 "wrapper around C<guestfs_mknod>."
15380 msgstr ""
15381
15382 # type: =head2
15383 #. type: =head2
15384 #: ../src/guestfs-actions.pod:4625
15385 msgid "guestfs_mkswap"
15386 msgstr ""
15387
15388 # type: verbatim
15389 #. type: verbatim
15390 #: ../src/guestfs-actions.pod:4627
15391 #, no-wrap
15392 msgid ""
15393 " int\n"
15394 " guestfs_mkswap (guestfs_h *g,\n"
15395 "                 const char *device);\n"
15396 "\n"
15397 msgstr ""
15398
15399 # type: textblock
15400 #. type: textblock
15401 #: ../src/guestfs-actions.pod:4631 ../fish/guestfish-actions.pod:3135
15402 msgid "Create a swap partition on C<device>."
15403 msgstr ""
15404
15405 # type: =head2
15406 #. type: =head2
15407 #: ../src/guestfs-actions.pod:4637
15408 msgid "guestfs_mkswap_L"
15409 msgstr ""
15410
15411 # type: verbatim
15412 #. type: verbatim
15413 #: ../src/guestfs-actions.pod:4639
15414 #, no-wrap
15415 msgid ""
15416 " int\n"
15417 " guestfs_mkswap_L (guestfs_h *g,\n"
15418 "                   const char *label,\n"
15419 "                   const char *device);\n"
15420 "\n"
15421 msgstr ""
15422
15423 # type: textblock
15424 #. type: textblock
15425 #: ../src/guestfs-actions.pod:4644 ../fish/guestfish-actions.pod:3141
15426 msgid "Create a swap partition on C<device> with label C<label>."
15427 msgstr ""
15428
15429 # type: textblock
15430 #. type: textblock
15431 #: ../src/guestfs-actions.pod:4646 ../fish/guestfish-actions.pod:3143
15432 msgid ""
15433 "Note that you cannot attach a swap label to a block device (eg. C</dev/"
15434 "sda>), just to a partition.  This appears to be a limitation of the kernel "
15435 "or swap tools."
15436 msgstr ""
15437
15438 # type: =head2
15439 #. type: =head2
15440 #: ../src/guestfs-actions.pod:4654
15441 msgid "guestfs_mkswap_U"
15442 msgstr ""
15443
15444 # type: verbatim
15445 #. type: verbatim
15446 #: ../src/guestfs-actions.pod:4656
15447 #, no-wrap
15448 msgid ""
15449 " int\n"
15450 " guestfs_mkswap_U (guestfs_h *g,\n"
15451 "                   const char *uuid,\n"
15452 "                   const char *device);\n"
15453 "\n"
15454 msgstr ""
15455
15456 # type: textblock
15457 #. type: textblock
15458 #: ../src/guestfs-actions.pod:4661 ../fish/guestfish-actions.pod:3151
15459 msgid "Create a swap partition on C<device> with UUID C<uuid>."
15460 msgstr ""
15461
15462 # type: =head2
15463 #. type: =head2
15464 #: ../src/guestfs-actions.pod:4667
15465 msgid "guestfs_mkswap_file"
15466 msgstr ""
15467
15468 # type: verbatim
15469 #. type: verbatim
15470 #: ../src/guestfs-actions.pod:4669
15471 #, no-wrap
15472 msgid ""
15473 " int\n"
15474 " guestfs_mkswap_file (guestfs_h *g,\n"
15475 "                      const char *path);\n"
15476 "\n"
15477 msgstr ""
15478
15479 # type: textblock
15480 #. type: textblock
15481 #: ../src/guestfs-actions.pod:4673 ../fish/guestfish-actions.pod:3157
15482 msgid "Create a swap file."
15483 msgstr ""
15484
15485 # type: textblock
15486 #. type: textblock
15487 #: ../src/guestfs-actions.pod:4675
15488 msgid ""
15489 "This command just writes a swap file signature to an existing file.  To "
15490 "create the file itself, use something like C<guestfs_fallocate>."
15491 msgstr ""
15492
15493 # type: =head2
15494 #. type: =head2
15495 #: ../src/guestfs-actions.pod:4682
15496 msgid "guestfs_modprobe"
15497 msgstr ""
15498
15499 # type: verbatim
15500 #. type: verbatim
15501 #: ../src/guestfs-actions.pod:4684
15502 #, no-wrap
15503 msgid ""
15504 " int\n"
15505 " guestfs_modprobe (guestfs_h *g,\n"
15506 "                   const char *modulename);\n"
15507 "\n"
15508 msgstr ""
15509
15510 # type: textblock
15511 #. type: textblock
15512 #: ../src/guestfs-actions.pod:4688 ../fish/guestfish-actions.pod:3166
15513 msgid "This loads a kernel module in the appliance."
15514 msgstr ""
15515
15516 # type: textblock
15517 #. type: textblock
15518 #: ../src/guestfs-actions.pod:4690 ../fish/guestfish-actions.pod:3168
15519 msgid ""
15520 "The kernel module must have been whitelisted when libguestfs was built (see "
15521 "C<appliance/kmod.whitelist.in> in the source)."
15522 msgstr ""
15523
15524 # type: =head2
15525 #. type: =head2
15526 #: ../src/guestfs-actions.pod:4697
15527 msgid "guestfs_mount"
15528 msgstr ""
15529
15530 # type: verbatim
15531 #. type: verbatim
15532 #: ../src/guestfs-actions.pod:4699
15533 #, no-wrap
15534 msgid ""
15535 " int\n"
15536 " guestfs_mount (guestfs_h *g,\n"
15537 "                const char *device,\n"
15538 "                const char *mountpoint);\n"
15539 "\n"
15540 msgstr ""
15541
15542 # type: textblock
15543 #. type: textblock
15544 #: ../src/guestfs-actions.pod:4704 ../fish/guestfish-actions.pod:3175
15545 msgid ""
15546 "Mount a guest disk at a position in the filesystem.  Block devices are named "
15547 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
15548 "those block devices contain partitions, they will have the usual names (eg. "
15549 "C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
15550 msgstr ""
15551
15552 # type: textblock
15553 #. type: textblock
15554 #: ../src/guestfs-actions.pod:4710 ../fish/guestfish-actions.pod:3181
15555 msgid ""
15556 "The rules are the same as for L<mount(2)>: A filesystem must first be "
15557 "mounted on C</> before others can be mounted.  Other filesystems can only be "
15558 "mounted on directories which already exist."
15559 msgstr ""
15560
15561 # type: textblock
15562 #. type: textblock
15563 #: ../src/guestfs-actions.pod:4715 ../fish/guestfish-actions.pod:3186
15564 msgid ""
15565 "The mounted filesystem is writable, if we have sufficient permissions on the "
15566 "underlying device."
15567 msgstr ""
15568
15569 # type: textblock
15570 #. type: textblock
15571 #: ../src/guestfs-actions.pod:4718
15572 msgid ""
15573 "B<Important note:> When you use this call, the filesystem options C<sync> "
15574 "and C<noatime> are set implicitly.  This was originally done because we "
15575 "thought it would improve reliability, but it turns out that I<-o sync> has a "
15576 "very large negative performance impact and negligible effect on "
15577 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
15578 "in any code that needs performance, and instead use C<guestfs_mount_options> "
15579 "(use an empty string for the first parameter if you don't want any options)."
15580 msgstr ""
15581
15582 #. type: textblock
15583 #: ../src/guestfs-actions.pod:4730 ../fish/guestfish-actions.pod:3199
15584 msgid ""
15585 "This function is deprecated.  In new code, use the C<mount_options> call "
15586 "instead."
15587 msgstr ""
15588
15589 # type: =head2
15590 #. type: =head2
15591 #: ../src/guestfs-actions.pod:4739
15592 msgid "guestfs_mount_loop"
15593 msgstr ""
15594
15595 # type: verbatim
15596 #. type: verbatim
15597 #: ../src/guestfs-actions.pod:4741
15598 #, no-wrap
15599 msgid ""
15600 " int\n"
15601 " guestfs_mount_loop (guestfs_h *g,\n"
15602 "                     const char *file,\n"
15603 "                     const char *mountpoint);\n"
15604 "\n"
15605 msgstr ""
15606
15607 # type: textblock
15608 #. type: textblock
15609 #: ../src/guestfs-actions.pod:4746 ../fish/guestfish-actions.pod:3210
15610 msgid ""
15611 "This command lets you mount C<file> (a filesystem image in a file) on a "
15612 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
15613 "mountpoint>."
15614 msgstr ""
15615
15616 # type: =head2
15617 #. type: =head2
15618 #: ../src/guestfs-actions.pod:4754
15619 msgid "guestfs_mount_options"
15620 msgstr ""
15621
15622 # type: verbatim
15623 #. type: verbatim
15624 #: ../src/guestfs-actions.pod:4756
15625 #, no-wrap
15626 msgid ""
15627 " int\n"
15628 " guestfs_mount_options (guestfs_h *g,\n"
15629 "                        const char *options,\n"
15630 "                        const char *device,\n"
15631 "                        const char *mountpoint);\n"
15632 "\n"
15633 msgstr ""
15634
15635 # type: textblock
15636 #. type: textblock
15637 #: ../src/guestfs-actions.pod:4762
15638 msgid ""
15639 "This is the same as the C<guestfs_mount> command, but it allows you to set "
15640 "the mount options as for the L<mount(8)> I<-o> flag."
15641 msgstr ""
15642
15643 # type: textblock
15644 #. type: textblock
15645 #: ../src/guestfs-actions.pod:4766 ../fish/guestfish-actions.pod:3222
15646 msgid ""
15647 "If the C<options> parameter is an empty string, then no options are passed "
15648 "(all options default to whatever the filesystem uses)."
15649 msgstr ""
15650
15651 # type: textblock
15652 #. type: textblock
15653 #: ../src/guestfs-actions.pod:4772 ../src/guestfs-actions.pod:4786
15654 #: ../src/guestfs-actions.pod:4803
15655 msgid "(Added in 1.0.10)"
15656 msgstr ""
15657
15658 # type: =head2
15659 #. type: =head2
15660 #: ../src/guestfs-actions.pod:4774
15661 msgid "guestfs_mount_ro"
15662 msgstr ""
15663
15664 # type: verbatim
15665 #. type: verbatim
15666 #: ../src/guestfs-actions.pod:4776
15667 #, no-wrap
15668 msgid ""
15669 " int\n"
15670 " guestfs_mount_ro (guestfs_h *g,\n"
15671 "                   const char *device,\n"
15672 "                   const char *mountpoint);\n"
15673 "\n"
15674 msgstr ""
15675
15676 # type: textblock
15677 #. type: textblock
15678 #: ../src/guestfs-actions.pod:4781
15679 msgid ""
15680 "This is the same as the C<guestfs_mount> command, but it mounts the "
15681 "filesystem with the read-only (I<-o ro>) flag."
15682 msgstr ""
15683
15684 # type: =head2
15685 #. type: =head2
15686 #: ../src/guestfs-actions.pod:4788
15687 msgid "guestfs_mount_vfs"
15688 msgstr ""
15689
15690 # type: verbatim
15691 #. type: verbatim
15692 #: ../src/guestfs-actions.pod:4790
15693 #, no-wrap
15694 msgid ""
15695 " int\n"
15696 " guestfs_mount_vfs (guestfs_h *g,\n"
15697 "                    const char *options,\n"
15698 "                    const char *vfstype,\n"
15699 "                    const char *device,\n"
15700 "                    const char *mountpoint);\n"
15701 "\n"
15702 msgstr ""
15703
15704 # type: textblock
15705 #. type: textblock
15706 #: ../src/guestfs-actions.pod:4797
15707 msgid ""
15708 "This is the same as the C<guestfs_mount> command, but it allows you to set "
15709 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
15710 "t> flags."
15711 msgstr ""
15712
15713 # type: =head2
15714 #. type: =head2
15715 #: ../src/guestfs-actions.pod:4805
15716 msgid "guestfs_mountpoints"
15717 msgstr ""
15718
15719 # type: verbatim
15720 #. type: verbatim
15721 #: ../src/guestfs-actions.pod:4807
15722 #, no-wrap
15723 msgid ""
15724 " char **\n"
15725 " guestfs_mountpoints (guestfs_h *g);\n"
15726 "\n"
15727 msgstr ""
15728
15729 # type: textblock
15730 #. type: textblock
15731 #: ../src/guestfs-actions.pod:4810
15732 msgid ""
15733 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
15734 "devices.  This one returns a hash table (map) of device name to directory "
15735 "where the device is mounted."
15736 msgstr ""
15737
15738 # type: =head2
15739 #. type: =head2
15740 #: ../src/guestfs-actions.pod:4822
15741 msgid "guestfs_mounts"
15742 msgstr ""
15743
15744 # type: verbatim
15745 #. type: verbatim
15746 #: ../src/guestfs-actions.pod:4824
15747 #, no-wrap
15748 msgid ""
15749 " char **\n"
15750 " guestfs_mounts (guestfs_h *g);\n"
15751 "\n"
15752 msgstr ""
15753
15754 # type: textblock
15755 #. type: textblock
15756 #: ../src/guestfs-actions.pod:4827 ../fish/guestfish-actions.pod:3253
15757 msgid ""
15758 "This returns the list of currently mounted filesystems.  It returns the list "
15759 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
15760 msgstr ""
15761
15762 # type: textblock
15763 #. type: textblock
15764 #: ../src/guestfs-actions.pod:4830 ../fish/guestfish-actions.pod:3256
15765 msgid "Some internal mounts are not shown."
15766 msgstr ""
15767
15768 # type: textblock
15769 #. type: textblock
15770 #: ../src/guestfs-actions.pod:4832
15771 msgid "See also: C<guestfs_mountpoints>"
15772 msgstr ""
15773
15774 # type: =head2
15775 #. type: =head2
15776 #: ../src/guestfs-actions.pod:4840
15777 msgid "guestfs_mv"
15778 msgstr ""
15779
15780 # type: verbatim
15781 #. type: verbatim
15782 #: ../src/guestfs-actions.pod:4842
15783 #, no-wrap
15784 msgid ""
15785 " int\n"
15786 " guestfs_mv (guestfs_h *g,\n"
15787 "             const char *src,\n"
15788 "             const char *dest);\n"
15789 "\n"
15790 msgstr ""
15791
15792 # type: textblock
15793 #. type: textblock
15794 #: ../src/guestfs-actions.pod:4847 ../fish/guestfish-actions.pod:3264
15795 msgid ""
15796 "This moves a file from C<src> to C<dest> where C<dest> is either a "
15797 "destination filename or destination directory."
15798 msgstr ""
15799
15800 # type: =head2
15801 #. type: =head2
15802 #: ../src/guestfs-actions.pod:4854
15803 msgid "guestfs_ntfs_3g_probe"
15804 msgstr ""
15805
15806 # type: verbatim
15807 #. type: verbatim
15808 #: ../src/guestfs-actions.pod:4856
15809 #, no-wrap
15810 msgid ""
15811 " int\n"
15812 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
15813 "                        int rw,\n"
15814 "                        const char *device);\n"
15815 "\n"
15816 msgstr ""
15817
15818 # type: textblock
15819 #. type: textblock
15820 #: ../src/guestfs-actions.pod:4861 ../fish/guestfish-actions.pod:3271
15821 msgid ""
15822 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
15823 "C<device> for mountability.  (Not all NTFS volumes can be mounted read-"
15824 "write, and some cannot be mounted at all)."
15825 msgstr ""
15826
15827 # type: textblock
15828 #. type: textblock
15829 #: ../src/guestfs-actions.pod:4865 ../fish/guestfish-actions.pod:3275
15830 msgid ""
15831 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
15832 "can be mounted read-write.  Set it to false if you want to test if the "
15833 "volume can be mounted read-only."
15834 msgstr ""
15835
15836 # type: textblock
15837 #. type: textblock
15838 #: ../src/guestfs-actions.pod:4869 ../fish/guestfish-actions.pod:3279
15839 msgid ""
15840 "The return value is an integer which C<0> if the operation would succeed, or "
15841 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
15842 msgstr ""
15843
15844 # type: textblock
15845 #. type: textblock
15846 #: ../src/guestfs-actions.pod:4875
15847 msgid "(Added in 1.0.43)"
15848 msgstr ""
15849
15850 # type: =head2
15851 #. type: =head2
15852 #: ../src/guestfs-actions.pod:4877
15853 msgid "guestfs_ntfsresize"
15854 msgstr ""
15855
15856 # type: verbatim
15857 #. type: verbatim
15858 #: ../src/guestfs-actions.pod:4879
15859 #, no-wrap
15860 msgid ""
15861 " int\n"
15862 " guestfs_ntfsresize (guestfs_h *g,\n"
15863 "                     const char *device);\n"
15864 "\n"
15865 msgstr ""
15866
15867 #. type: textblock
15868 #: ../src/guestfs-actions.pod:4883 ../fish/guestfish-actions.pod:3287
15869 msgid ""
15870 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
15871 "size of the underlying device."
15872 msgstr ""
15873
15874 #. type: textblock
15875 #: ../src/guestfs-actions.pod:4886 ../fish/guestfish-actions.pod:3290
15876 msgid ""
15877 "I<Note:> After the resize operation, the filesystem is marked as requiring a "
15878 "consistency check (for safety).  You have to boot into Windows to perform "
15879 "this check and clear this condition.  Furthermore, ntfsresize refuses to "
15880 "resize filesystems which have been marked in this way.  So in effect it is "
15881 "not possible to call ntfsresize multiple times on a single filesystem "
15882 "without booting into Windows between each resize."
15883 msgstr ""
15884
15885 #. type: textblock
15886 #: ../src/guestfs-actions.pod:4894 ../fish/guestfish-actions.pod:3298
15887 msgid "See also L<ntfsresize(8)>."
15888 msgstr ""
15889
15890 # type: =head2
15891 #. type: =head2
15892 #: ../src/guestfs-actions.pod:4900
15893 msgid "guestfs_ntfsresize_size"
15894 msgstr ""
15895
15896 # type: verbatim
15897 #. type: verbatim
15898 #: ../src/guestfs-actions.pod:4902
15899 #, no-wrap
15900 msgid ""
15901 " int\n"
15902 " guestfs_ntfsresize_size (guestfs_h *g,\n"
15903 "                          const char *device,\n"
15904 "                          int64_t size);\n"
15905 "\n"
15906 msgstr ""
15907
15908 # type: textblock
15909 #. type: textblock
15910 #: ../src/guestfs-actions.pod:4907
15911 msgid ""
15912 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
15913 "to specify the new size (in bytes) explicitly."
15914 msgstr ""
15915
15916 # type: textblock
15917 #. type: textblock
15918 #: ../src/guestfs-actions.pod:4912 ../src/guestfs-actions.pod:5348
15919 #: ../src/guestfs-actions.pod:5421 ../src/guestfs-actions.pod:5687
15920 #: ../src/guestfs-actions.pod:7293
15921 msgid "(Added in 1.3.14)"
15922 msgstr ""
15923
15924 # type: =head2
15925 #. type: =head2
15926 #: ../src/guestfs-actions.pod:4914
15927 msgid "guestfs_part_add"
15928 msgstr ""
15929
15930 # type: verbatim
15931 #. type: verbatim
15932 #: ../src/guestfs-actions.pod:4916
15933 #, no-wrap
15934 msgid ""
15935 " int\n"
15936 " guestfs_part_add (guestfs_h *g,\n"
15937 "                   const char *device,\n"
15938 "                   const char *prlogex,\n"
15939 "                   int64_t startsect,\n"
15940 "                   int64_t endsect);\n"
15941 "\n"
15942 msgstr ""
15943
15944 # type: textblock
15945 #. type: textblock
15946 #: ../src/guestfs-actions.pod:4923
15947 msgid ""
15948 "This command adds a partition to C<device>.  If there is no partition table "
15949 "on the device, call C<guestfs_part_init> first."
15950 msgstr ""
15951
15952 # type: textblock
15953 #. type: textblock
15954 #: ../src/guestfs-actions.pod:4926 ../fish/guestfish-actions.pod:3314
15955 msgid ""
15956 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
15957 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
15958 "C<logical>) and C<e> (or C<extended>) partition types."
15959 msgstr ""
15960
15961 # type: textblock
15962 #. type: textblock
15963 #: ../src/guestfs-actions.pod:4931 ../fish/guestfish-actions.pod:3319
15964 msgid ""
15965 "C<startsect> and C<endsect> are the start and end of the partition in "
15966 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
15967 "from the end of the disk (C<-1> is the last sector)."
15968 msgstr ""
15969
15970 # type: textblock
15971 #. type: textblock
15972 #: ../src/guestfs-actions.pod:4935
15973 msgid ""
15974 "Creating a partition which covers the whole disk is not so easy.  Use "
15975 "C<guestfs_part_disk> to do that."
15976 msgstr ""
15977
15978 # type: textblock
15979 #. type: textblock
15980 #: ../src/guestfs-actions.pod:4940 ../src/guestfs-actions.pod:4978
15981 #: ../src/guestfs-actions.pod:5031 ../src/guestfs-actions.pod:5109
15982 #: ../src/guestfs-actions.pod:5147 ../src/guestfs-actions.pod:5166
15983 #: ../src/guestfs-actions.pod:5206
15984 msgid "(Added in 1.0.78)"
15985 msgstr ""
15986
15987 # type: =head2
15988 #. type: =head2
15989 #: ../src/guestfs-actions.pod:4942
15990 msgid "guestfs_part_del"
15991 msgstr ""
15992
15993 # type: verbatim
15994 #. type: verbatim
15995 #: ../src/guestfs-actions.pod:4944
15996 #, no-wrap
15997 msgid ""
15998 " int\n"
15999 " guestfs_part_del (guestfs_h *g,\n"
16000 "                   const char *device,\n"
16001 "                   int partnum);\n"
16002 "\n"
16003 msgstr ""
16004
16005 # type: textblock
16006 #. type: textblock
16007 #: ../src/guestfs-actions.pod:4949 ../fish/guestfish-actions.pod:3330
16008 msgid "This command deletes the partition numbered C<partnum> on C<device>."
16009 msgstr ""
16010
16011 # type: textblock
16012 #. type: textblock
16013 #: ../src/guestfs-actions.pod:4951 ../fish/guestfish-actions.pod:3332
16014 msgid ""
16015 "Note that in the case of MBR partitioning, deleting an extended partition "
16016 "also deletes any logical partitions it contains."
16017 msgstr ""
16018
16019 # type: =head2
16020 #. type: =head2
16021 #: ../src/guestfs-actions.pod:4959
16022 msgid "guestfs_part_disk"
16023 msgstr ""
16024
16025 # type: verbatim
16026 #. type: verbatim
16027 #: ../src/guestfs-actions.pod:4961
16028 #, no-wrap
16029 msgid ""
16030 " int\n"
16031 " guestfs_part_disk (guestfs_h *g,\n"
16032 "                    const char *device,\n"
16033 "                    const char *parttype);\n"
16034 "\n"
16035 msgstr ""
16036
16037 # type: textblock
16038 #. type: textblock
16039 #: ../src/guestfs-actions.pod:4966
16040 msgid ""
16041 "This command is simply a combination of C<guestfs_part_init> followed by "
16042 "C<guestfs_part_add> to create a single primary partition covering the whole "
16043 "disk."
16044 msgstr ""
16045
16046 # type: textblock
16047 #. type: textblock
16048 #: ../src/guestfs-actions.pod:4970
16049 msgid ""
16050 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
16051 "possible values are described in C<guestfs_part_init>."
16052 msgstr ""
16053
16054 # type: =head2
16055 #. type: =head2
16056 #: ../src/guestfs-actions.pod:4980
16057 msgid "guestfs_part_get_bootable"
16058 msgstr ""
16059
16060 # type: verbatim
16061 #. type: verbatim
16062 #: ../src/guestfs-actions.pod:4982
16063 #, no-wrap
16064 msgid ""
16065 " int\n"
16066 " guestfs_part_get_bootable (guestfs_h *g,\n"
16067 "                            const char *device,\n"
16068 "                            int partnum);\n"
16069 "\n"
16070 msgstr ""
16071
16072 # type: textblock
16073 #. type: textblock
16074 #: ../src/guestfs-actions.pod:4987 ../fish/guestfish-actions.pod:3354
16075 msgid ""
16076 "This command returns true if the partition C<partnum> on C<device> has the "
16077 "bootable flag set."
16078 msgstr ""
16079
16080 # type: textblock
16081 #. type: textblock
16082 #: ../src/guestfs-actions.pod:4990
16083 msgid "See also C<guestfs_part_set_bootable>."
16084 msgstr ""
16085
16086 # type: =head2
16087 #. type: =head2
16088 #: ../src/guestfs-actions.pod:4996
16089 msgid "guestfs_part_get_mbr_id"
16090 msgstr ""
16091
16092 # type: verbatim
16093 #. type: verbatim
16094 #: ../src/guestfs-actions.pod:4998
16095 #, no-wrap
16096 msgid ""
16097 " int\n"
16098 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
16099 "                          const char *device,\n"
16100 "                          int partnum);\n"
16101 "\n"
16102 msgstr ""
16103
16104 # type: textblock
16105 #. type: textblock
16106 #: ../src/guestfs-actions.pod:5003 ../fish/guestfish-actions.pod:3363
16107 msgid ""
16108 "Returns the MBR type byte (also known as the ID byte) from the numbered "
16109 "partition C<partnum>."
16110 msgstr ""
16111
16112 # type: textblock
16113 #. type: textblock
16114 #: ../src/guestfs-actions.pod:5006 ../src/guestfs-actions.pod:5182
16115 msgid ""
16116 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
16117 "undefined results for other partition table types (see "
16118 "C<guestfs_part_get_parttype>)."
16119 msgstr ""
16120
16121 # type: =head2
16122 #. type: =head2
16123 #: ../src/guestfs-actions.pod:5014
16124 msgid "guestfs_part_get_parttype"
16125 msgstr ""
16126
16127 # type: verbatim
16128 #. type: verbatim
16129 #: ../src/guestfs-actions.pod:5016
16130 #, no-wrap
16131 msgid ""
16132 " char *\n"
16133 " guestfs_part_get_parttype (guestfs_h *g,\n"
16134 "                            const char *device);\n"
16135 "\n"
16136 msgstr ""
16137
16138 # type: textblock
16139 #. type: textblock
16140 #: ../src/guestfs-actions.pod:5020 ../fish/guestfish-actions.pod:3374
16141 msgid ""
16142 "This command examines the partition table on C<device> and returns the "
16143 "partition table type (format) being used."
16144 msgstr ""
16145
16146 # type: textblock
16147 #. type: textblock
16148 #: ../src/guestfs-actions.pod:5023
16149 msgid ""
16150 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
16151 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
16152 "possible, although unusual.  See C<guestfs_part_init> for a full list."
16153 msgstr ""
16154
16155 # type: =head2
16156 #. type: =head2
16157 #: ../src/guestfs-actions.pod:5033
16158 msgid "guestfs_part_init"
16159 msgstr ""
16160
16161 # type: verbatim
16162 #. type: verbatim
16163 #: ../src/guestfs-actions.pod:5035
16164 #, no-wrap
16165 msgid ""
16166 " int\n"
16167 " guestfs_part_init (guestfs_h *g,\n"
16168 "                    const char *device,\n"
16169 "                    const char *parttype);\n"
16170 "\n"
16171 msgstr ""
16172
16173 # type: textblock
16174 #. type: textblock
16175 #: ../src/guestfs-actions.pod:5040 ../fish/guestfish-actions.pod:3386
16176 msgid ""
16177 "This creates an empty partition table on C<device> of one of the partition "
16178 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
16179 "(for large disks)."
16180 msgstr ""
16181
16182 # type: textblock
16183 #. type: textblock
16184 #: ../src/guestfs-actions.pod:5044
16185 msgid ""
16186 "Initially there are no partitions.  Following this, you should call "
16187 "C<guestfs_part_add> for each partition required."
16188 msgstr ""
16189
16190 # type: textblock
16191 #. type: textblock
16192 #: ../src/guestfs-actions.pod:5047 ../fish/guestfish-actions.pod:3393
16193 msgid "Possible values for C<parttype> are:"
16194 msgstr ""
16195
16196 # type: =item
16197 #. type: =item
16198 #: ../src/guestfs-actions.pod:5051 ../fish/guestfish-actions.pod:3397
16199 msgid "B<efi> | B<gpt>"
16200 msgstr ""
16201
16202 # type: textblock
16203 #. type: textblock
16204 #: ../src/guestfs-actions.pod:5053 ../fish/guestfish-actions.pod:3399
16205 msgid "Intel EFI / GPT partition table."
16206 msgstr ""
16207
16208 # type: textblock
16209 #. type: textblock
16210 #: ../src/guestfs-actions.pod:5055 ../fish/guestfish-actions.pod:3401
16211 msgid ""
16212 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
16213 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
16214 "the C<mbr> format."
16215 msgstr ""
16216
16217 # type: =item
16218 #. type: =item
16219 #: ../src/guestfs-actions.pod:5059 ../fish/guestfish-actions.pod:3405
16220 msgid "B<mbr> | B<msdos>"
16221 msgstr ""
16222
16223 # type: textblock
16224 #. type: textblock
16225 #: ../src/guestfs-actions.pod:5061 ../fish/guestfish-actions.pod:3407
16226 msgid ""
16227 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
16228 "Windows.  This partition type will B<only> work for device sizes up to 2 "
16229 "TB.  For large disks we recommend using C<gpt>."
16230 msgstr ""
16231
16232 # type: textblock
16233 #. type: textblock
16234 #: ../src/guestfs-actions.pod:5068 ../fish/guestfish-actions.pod:3414
16235 msgid ""
16236 "Other partition table types that may work but are not supported include:"
16237 msgstr ""
16238
16239 # type: =item
16240 #. type: =item
16241 #: ../src/guestfs-actions.pod:5073 ../fish/guestfish-actions.pod:3419
16242 msgid "B<aix>"
16243 msgstr ""
16244
16245 # type: textblock
16246 #. type: textblock
16247 #: ../src/guestfs-actions.pod:5075 ../fish/guestfish-actions.pod:3421
16248 msgid "AIX disk labels."
16249 msgstr ""
16250
16251 # type: =item
16252 #. type: =item
16253 #: ../src/guestfs-actions.pod:5077 ../fish/guestfish-actions.pod:3423
16254 msgid "B<amiga> | B<rdb>"
16255 msgstr ""
16256
16257 # type: textblock
16258 #. type: textblock
16259 #: ../src/guestfs-actions.pod:5079 ../fish/guestfish-actions.pod:3425
16260 msgid "Amiga \"Rigid Disk Block\" format."
16261 msgstr ""
16262
16263 # type: =item
16264 #. type: =item
16265 #: ../src/guestfs-actions.pod:5081 ../fish/guestfish-actions.pod:3427
16266 msgid "B<bsd>"
16267 msgstr ""
16268
16269 # type: textblock
16270 #. type: textblock
16271 #: ../src/guestfs-actions.pod:5083 ../fish/guestfish-actions.pod:3429
16272 msgid "BSD disk labels."
16273 msgstr ""
16274
16275 # type: =item
16276 #. type: =item
16277 #: ../src/guestfs-actions.pod:5085 ../fish/guestfish-actions.pod:3431
16278 msgid "B<dasd>"
16279 msgstr ""
16280
16281 # type: textblock
16282 #. type: textblock
16283 #: ../src/guestfs-actions.pod:5087 ../fish/guestfish-actions.pod:3433
16284 msgid "DASD, used on IBM mainframes."
16285 msgstr ""
16286
16287 # type: =item
16288 #. type: =item
16289 #: ../src/guestfs-actions.pod:5089 ../fish/guestfish-actions.pod:3435
16290 msgid "B<dvh>"
16291 msgstr ""
16292
16293 # type: textblock
16294 #. type: textblock
16295 #: ../src/guestfs-actions.pod:5091 ../fish/guestfish-actions.pod:3437
16296 msgid "MIPS/SGI volumes."
16297 msgstr ""
16298
16299 # type: =item
16300 #. type: =item
16301 #: ../src/guestfs-actions.pod:5093 ../fish/guestfish-actions.pod:3439
16302 msgid "B<mac>"
16303 msgstr ""
16304
16305 # type: textblock
16306 #. type: textblock
16307 #: ../src/guestfs-actions.pod:5095 ../fish/guestfish-actions.pod:3441
16308 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
16309 msgstr ""
16310
16311 # type: =item
16312 #. type: =item
16313 #: ../src/guestfs-actions.pod:5097 ../fish/guestfish-actions.pod:3443
16314 msgid "B<pc98>"
16315 msgstr ""
16316
16317 # type: textblock
16318 #. type: textblock
16319 #: ../src/guestfs-actions.pod:5099 ../fish/guestfish-actions.pod:3445
16320 msgid "NEC PC-98 format, common in Japan apparently."
16321 msgstr ""
16322
16323 # type: =item
16324 #. type: =item
16325 #: ../src/guestfs-actions.pod:5101 ../fish/guestfish-actions.pod:3447
16326 msgid "B<sun>"
16327 msgstr ""
16328
16329 # type: textblock
16330 #. type: textblock
16331 #: ../src/guestfs-actions.pod:5103 ../fish/guestfish-actions.pod:3449
16332 msgid "Sun disk labels."
16333 msgstr ""
16334
16335 # type: =head2
16336 #. type: =head2
16337 #: ../src/guestfs-actions.pod:5111
16338 msgid "guestfs_part_list"
16339 msgstr ""
16340
16341 # type: verbatim
16342 #. type: verbatim
16343 #: ../src/guestfs-actions.pod:5113
16344 #, no-wrap
16345 msgid ""
16346 " struct guestfs_partition_list *\n"
16347 " guestfs_part_list (guestfs_h *g,\n"
16348 "                    const char *device);\n"
16349 "\n"
16350 msgstr ""
16351
16352 # type: textblock
16353 #. type: textblock
16354 #: ../src/guestfs-actions.pod:5117 ../fish/guestfish-actions.pod:3457
16355 msgid ""
16356 "This command parses the partition table on C<device> and returns the list of "
16357 "partitions found."
16358 msgstr ""
16359
16360 # type: textblock
16361 #. type: textblock
16362 #: ../src/guestfs-actions.pod:5120 ../fish/guestfish-actions.pod:3460
16363 msgid "The fields in the returned structure are:"
16364 msgstr ""
16365
16366 # type: =item
16367 #. type: =item
16368 #: ../src/guestfs-actions.pod:5124 ../fish/guestfish-actions.pod:3464
16369 msgid "B<part_num>"
16370 msgstr ""
16371
16372 # type: textblock
16373 #. type: textblock
16374 #: ../src/guestfs-actions.pod:5126 ../fish/guestfish-actions.pod:3466
16375 msgid "Partition number, counting from 1."
16376 msgstr ""
16377
16378 # type: =item
16379 #. type: =item
16380 #: ../src/guestfs-actions.pod:5128 ../fish/guestfish-actions.pod:3468
16381 msgid "B<part_start>"
16382 msgstr ""
16383
16384 # type: textblock
16385 #. type: textblock
16386 #: ../src/guestfs-actions.pod:5130
16387 msgid ""
16388 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
16389 "the device's sector size, see C<guestfs_blockdev_getss>."
16390 msgstr ""
16391
16392 # type: =item
16393 #. type: =item
16394 #: ../src/guestfs-actions.pod:5133 ../fish/guestfish-actions.pod:3473
16395 msgid "B<part_end>"
16396 msgstr ""
16397
16398 # type: textblock
16399 #. type: textblock
16400 #: ../src/guestfs-actions.pod:5135 ../fish/guestfish-actions.pod:3475
16401 msgid "End of the partition in bytes."
16402 msgstr ""
16403
16404 # type: =item
16405 #. type: =item
16406 #: ../src/guestfs-actions.pod:5137 ../fish/guestfish-actions.pod:3477
16407 msgid "B<part_size>"
16408 msgstr ""
16409
16410 # type: textblock
16411 #. type: textblock
16412 #: ../src/guestfs-actions.pod:5139 ../fish/guestfish-actions.pod:3479
16413 msgid "Size of the partition in bytes."
16414 msgstr ""
16415
16416 # type: textblock
16417 #. type: textblock
16418 #: ../src/guestfs-actions.pod:5143
16419 msgid ""
16420 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
16421 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
16422 "use>."
16423 msgstr ""
16424
16425 # type: =head2
16426 #. type: =head2
16427 #: ../src/guestfs-actions.pod:5149
16428 msgid "guestfs_part_set_bootable"
16429 msgstr ""
16430
16431 # type: verbatim
16432 #. type: verbatim
16433 #: ../src/guestfs-actions.pod:5151
16434 #, no-wrap
16435 msgid ""
16436 " int\n"
16437 " guestfs_part_set_bootable (guestfs_h *g,\n"
16438 "                            const char *device,\n"
16439 "                            int partnum,\n"
16440 "                            int bootable);\n"
16441 "\n"
16442 msgstr ""
16443
16444 # type: textblock
16445 #. type: textblock
16446 #: ../src/guestfs-actions.pod:5157 ../fish/guestfish-actions.pod:3487
16447 msgid ""
16448 "This sets the bootable flag on partition numbered C<partnum> on device "
16449 "C<device>.  Note that partitions are numbered from 1."
16450 msgstr ""
16451
16452 # type: textblock
16453 #. type: textblock
16454 #: ../src/guestfs-actions.pod:5160 ../fish/guestfish-actions.pod:3490
16455 msgid ""
16456 "The bootable flag is used by some operating systems (notably Windows) to "
16457 "determine which partition to boot from.  It is by no means universally "
16458 "recognized."
16459 msgstr ""
16460
16461 # type: =head2
16462 #. type: =head2
16463 #: ../src/guestfs-actions.pod:5168
16464 msgid "guestfs_part_set_mbr_id"
16465 msgstr ""
16466
16467 # type: verbatim
16468 #. type: verbatim
16469 #: ../src/guestfs-actions.pod:5170
16470 #, no-wrap
16471 msgid ""
16472 " int\n"
16473 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
16474 "                          const char *device,\n"
16475 "                          int partnum,\n"
16476 "                          int idbyte);\n"
16477 "\n"
16478 msgstr ""
16479
16480 # type: textblock
16481 #. type: textblock
16482 #: ../src/guestfs-actions.pod:5176 ../fish/guestfish-actions.pod:3498
16483 msgid ""
16484 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
16485 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
16486 "documentation are in fact hexadecimal numbers, but usually documented "
16487 "without any leading \"0x\" which might be confusing."
16488 msgstr ""
16489
16490 # type: =head2
16491 #. type: =head2
16492 #: ../src/guestfs-actions.pod:5190
16493 msgid "guestfs_part_set_name"
16494 msgstr ""
16495
16496 # type: verbatim
16497 #. type: verbatim
16498 #: ../src/guestfs-actions.pod:5192
16499 #, no-wrap
16500 msgid ""
16501 " int\n"
16502 " guestfs_part_set_name (guestfs_h *g,\n"
16503 "                        const char *device,\n"
16504 "                        int partnum,\n"
16505 "                        const char *name);\n"
16506 "\n"
16507 msgstr ""
16508
16509 # type: textblock
16510 #. type: textblock
16511 #: ../src/guestfs-actions.pod:5198 ../fish/guestfish-actions.pod:3512
16512 msgid ""
16513 "This sets the partition name on partition numbered C<partnum> on device "
16514 "C<device>.  Note that partitions are numbered from 1."
16515 msgstr ""
16516
16517 # type: textblock
16518 #. type: textblock
16519 #: ../src/guestfs-actions.pod:5201 ../fish/guestfish-actions.pod:3515
16520 msgid ""
16521 "The partition name can only be set on certain types of partition table.  "
16522 "This works on C<gpt> but not on C<mbr> partitions."
16523 msgstr ""
16524
16525 # type: =head2
16526 #. type: =head2
16527 #: ../src/guestfs-actions.pod:5208
16528 msgid "guestfs_part_to_dev"
16529 msgstr ""
16530
16531 # type: verbatim
16532 #. type: verbatim
16533 #: ../src/guestfs-actions.pod:5210
16534 #, no-wrap
16535 msgid ""
16536 " char *\n"
16537 " guestfs_part_to_dev (guestfs_h *g,\n"
16538 "                      const char *partition);\n"
16539 "\n"
16540 msgstr ""
16541
16542 # type: textblock
16543 #. type: textblock
16544 #: ../src/guestfs-actions.pod:5214 ../fish/guestfish-actions.pod:3522
16545 msgid ""
16546 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
16547 "partition number, returning the device name (eg. \"/dev/sdb\")."
16548 msgstr ""
16549
16550 # type: textblock
16551 #. type: textblock
16552 #: ../src/guestfs-actions.pod:5218
16553 msgid ""
16554 "The named partition must exist, for example as a string returned from "
16555 "C<guestfs_list_partitions>."
16556 msgstr ""
16557
16558 # type: =head2
16559 #. type: =head2
16560 #: ../src/guestfs-actions.pod:5226
16561 msgid "guestfs_ping_daemon"
16562 msgstr ""
16563
16564 # type: verbatim
16565 #. type: verbatim
16566 #: ../src/guestfs-actions.pod:5228
16567 #, no-wrap
16568 msgid ""
16569 " int\n"
16570 " guestfs_ping_daemon (guestfs_h *g);\n"
16571 "\n"
16572 msgstr ""
16573
16574 # type: textblock
16575 #. type: textblock
16576 #: ../src/guestfs-actions.pod:5231 ../fish/guestfish-actions.pod:3533
16577 msgid ""
16578 "This is a test probe into the guestfs daemon running inside the qemu "
16579 "subprocess.  Calling this function checks that the daemon responds to the "
16580 "ping message, without affecting the daemon or attached block device(s) in "
16581 "any other way."
16582 msgstr ""
16583
16584 # type: =head2
16585 #. type: =head2
16586 #: ../src/guestfs-actions.pod:5240
16587 msgid "guestfs_pread"
16588 msgstr ""
16589
16590 # type: verbatim
16591 #. type: verbatim
16592 #: ../src/guestfs-actions.pod:5242
16593 #, no-wrap
16594 msgid ""
16595 " char *\n"
16596 " guestfs_pread (guestfs_h *g,\n"
16597 "                const char *path,\n"
16598 "                int count,\n"
16599 "                int64_t offset,\n"
16600 "                size_t *size_r);\n"
16601 "\n"
16602 msgstr ""
16603
16604 # type: textblock
16605 #. type: textblock
16606 #: ../src/guestfs-actions.pod:5249 ../fish/guestfish-actions.pod:3542
16607 msgid ""
16608 "This command lets you read part of a file.  It reads C<count> bytes of the "
16609 "file, starting at C<offset>, from file C<path>."
16610 msgstr ""
16611
16612 # type: textblock
16613 #. type: textblock
16614 #: ../src/guestfs-actions.pod:5252 ../src/guestfs-actions.pod:5278
16615 #: ../fish/guestfish-actions.pod:3545 ../fish/guestfish-actions.pod:3560
16616 msgid ""
16617 "This may read fewer bytes than requested.  For further details see the "
16618 "L<pread(2)> system call."
16619 msgstr ""
16620
16621 # type: textblock
16622 #. type: textblock
16623 #: ../src/guestfs-actions.pod:5255
16624 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
16625 msgstr ""
16626
16627 # type: =head2
16628 #. type: =head2
16629 #: ../src/guestfs-actions.pod:5266
16630 msgid "guestfs_pread_device"
16631 msgstr ""
16632
16633 # type: verbatim
16634 #. type: verbatim
16635 #: ../src/guestfs-actions.pod:5268
16636 #, no-wrap
16637 msgid ""
16638 " char *\n"
16639 " guestfs_pread_device (guestfs_h *g,\n"
16640 "                       const char *device,\n"
16641 "                       int count,\n"
16642 "                       int64_t offset,\n"
16643 "                       size_t *size_r);\n"
16644 "\n"
16645 msgstr ""
16646
16647 # type: textblock
16648 #. type: textblock
16649 #: ../src/guestfs-actions.pod:5275 ../fish/guestfish-actions.pod:3557
16650 msgid ""
16651 "This command lets you read part of a file.  It reads C<count> bytes of "
16652 "C<device>, starting at C<offset>."
16653 msgstr ""
16654
16655 # type: textblock
16656 #. type: textblock
16657 #: ../src/guestfs-actions.pod:5281
16658 msgid "See also C<guestfs_pread>."
16659 msgstr ""
16660
16661 # type: textblock
16662 #. type: textblock
16663 #: ../src/guestfs-actions.pod:5290
16664 msgid "(Added in 1.5.21)"
16665 msgstr ""
16666
16667 # type: =head2
16668 #. type: =head2
16669 #: ../src/guestfs-actions.pod:5292
16670 msgid "guestfs_pvcreate"
16671 msgstr ""
16672
16673 # type: verbatim
16674 #. type: verbatim
16675 #: ../src/guestfs-actions.pod:5294
16676 #, no-wrap
16677 msgid ""
16678 " int\n"
16679 " guestfs_pvcreate (guestfs_h *g,\n"
16680 "                   const char *device);\n"
16681 "\n"
16682 msgstr ""
16683
16684 # type: textblock
16685 #. type: textblock
16686 #: ../src/guestfs-actions.pod:5298 ../fish/guestfish-actions.pod:3572
16687 msgid ""
16688 "This creates an LVM physical volume on the named C<device>, where C<device> "
16689 "should usually be a partition name such as C</dev/sda1>."
16690 msgstr ""
16691
16692 # type: =head2
16693 #. type: =head2
16694 #: ../src/guestfs-actions.pod:5306
16695 msgid "guestfs_pvremove"
16696 msgstr ""
16697
16698 # type: verbatim
16699 #. type: verbatim
16700 #: ../src/guestfs-actions.pod:5308
16701 #, no-wrap
16702 msgid ""
16703 " int\n"
16704 " guestfs_pvremove (guestfs_h *g,\n"
16705 "                   const char *device);\n"
16706 "\n"
16707 msgstr ""
16708
16709 # type: textblock
16710 #. type: textblock
16711 #: ../src/guestfs-actions.pod:5312 ../fish/guestfish-actions.pod:3580
16712 msgid ""
16713 "This wipes a physical volume C<device> so that LVM will no longer recognise "
16714 "it."
16715 msgstr ""
16716
16717 # type: textblock
16718 #. type: textblock
16719 #: ../src/guestfs-actions.pod:5315 ../fish/guestfish-actions.pod:3583
16720 msgid ""
16721 "The implementation uses the C<pvremove> command which refuses to wipe "
16722 "physical volumes that contain any volume groups, so you have to remove those "
16723 "first."
16724 msgstr ""
16725
16726 # type: =head2
16727 #. type: =head2
16728 #: ../src/guestfs-actions.pod:5323
16729 msgid "guestfs_pvresize"
16730 msgstr ""
16731
16732 # type: verbatim
16733 #. type: verbatim
16734 #: ../src/guestfs-actions.pod:5325
16735 #, no-wrap
16736 msgid ""
16737 " int\n"
16738 " guestfs_pvresize (guestfs_h *g,\n"
16739 "                   const char *device);\n"
16740 "\n"
16741 msgstr ""
16742
16743 # type: textblock
16744 #. type: textblock
16745 #: ../src/guestfs-actions.pod:5329 ../fish/guestfish-actions.pod:3591
16746 msgid ""
16747 "This resizes (expands or shrinks) an existing LVM physical volume to match "
16748 "the new size of the underlying device."
16749 msgstr ""
16750
16751 # type: =head2
16752 #. type: =head2
16753 #: ../src/guestfs-actions.pod:5336
16754 msgid "guestfs_pvresize_size"
16755 msgstr ""
16756
16757 # type: verbatim
16758 #. type: verbatim
16759 #: ../src/guestfs-actions.pod:5338
16760 #, no-wrap
16761 msgid ""
16762 " int\n"
16763 " guestfs_pvresize_size (guestfs_h *g,\n"
16764 "                        const char *device,\n"
16765 "                        int64_t size);\n"
16766 "\n"
16767 msgstr ""
16768
16769 # type: textblock
16770 #. type: textblock
16771 #: ../src/guestfs-actions.pod:5343
16772 msgid ""
16773 "This command is the same as C<guestfs_pvresize> except that it allows you to "
16774 "specify the new size (in bytes) explicitly."
16775 msgstr ""
16776
16777 # type: =head2
16778 #. type: =head2
16779 #: ../src/guestfs-actions.pod:5350
16780 msgid "guestfs_pvs"
16781 msgstr ""
16782
16783 # type: verbatim
16784 #. type: verbatim
16785 #: ../src/guestfs-actions.pod:5352
16786 #, no-wrap
16787 msgid ""
16788 " char **\n"
16789 " guestfs_pvs (guestfs_h *g);\n"
16790 "\n"
16791 msgstr ""
16792
16793 # type: textblock
16794 #. type: textblock
16795 #: ../src/guestfs-actions.pod:5355 ../fish/guestfish-actions.pod:3605
16796 msgid ""
16797 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
16798 "(8)> command."
16799 msgstr ""
16800
16801 # type: textblock
16802 #. type: textblock
16803 #: ../src/guestfs-actions.pod:5358 ../fish/guestfish-actions.pod:3608
16804 msgid ""
16805 "This returns a list of just the device names that contain PVs (eg. C</dev/"
16806 "sda2>)."
16807 msgstr ""
16808
16809 # type: textblock
16810 #. type: textblock
16811 #: ../src/guestfs-actions.pod:5361
16812 msgid "See also C<guestfs_pvs_full>."
16813 msgstr ""
16814
16815 # type: =head2
16816 #. type: =head2
16817 #: ../src/guestfs-actions.pod:5369
16818 msgid "guestfs_pvs_full"
16819 msgstr ""
16820
16821 # type: verbatim
16822 #. type: verbatim
16823 #: ../src/guestfs-actions.pod:5371
16824 #, no-wrap
16825 msgid ""
16826 " struct guestfs_lvm_pv_list *\n"
16827 " guestfs_pvs_full (guestfs_h *g);\n"
16828 "\n"
16829 msgstr ""
16830
16831 # type: textblock
16832 #. type: textblock
16833 #: ../src/guestfs-actions.pod:5374 ../fish/guestfish-actions.pod:3617
16834 msgid ""
16835 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
16836 "(8)> command.  The \"full\" version includes all fields."
16837 msgstr ""
16838
16839 # type: textblock
16840 #. type: textblock
16841 #: ../src/guestfs-actions.pod:5377
16842 msgid ""
16843 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
16844 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
16845 msgstr ""
16846
16847 # type: =head2
16848 #. type: =head2
16849 #: ../src/guestfs-actions.pod:5383
16850 msgid "guestfs_pvuuid"
16851 msgstr ""
16852
16853 # type: verbatim
16854 #. type: verbatim
16855 #: ../src/guestfs-actions.pod:5385
16856 #, no-wrap
16857 msgid ""
16858 " char *\n"
16859 " guestfs_pvuuid (guestfs_h *g,\n"
16860 "                 const char *device);\n"
16861 "\n"
16862 msgstr ""
16863
16864 # type: textblock
16865 #. type: textblock
16866 #: ../src/guestfs-actions.pod:5389 ../fish/guestfish-actions.pod:3624
16867 msgid "This command returns the UUID of the LVM PV C<device>."
16868 msgstr ""
16869
16870 # type: =head2
16871 #. type: =head2
16872 #: ../src/guestfs-actions.pod:5396
16873 msgid "guestfs_pwrite"
16874 msgstr ""
16875
16876 # type: verbatim
16877 #. type: verbatim
16878 #: ../src/guestfs-actions.pod:5398
16879 #, no-wrap
16880 msgid ""
16881 " int\n"
16882 " guestfs_pwrite (guestfs_h *g,\n"
16883 "                 const char *path,\n"
16884 "                 const char *content,\n"
16885 "                 size_t content_size,\n"
16886 "                 int64_t offset);\n"
16887 "\n"
16888 msgstr ""
16889
16890 # type: textblock
16891 #. type: textblock
16892 #: ../src/guestfs-actions.pod:5405 ../fish/guestfish-actions.pod:3630
16893 msgid ""
16894 "This command writes to part of a file.  It writes the data buffer C<content> "
16895 "to the file C<path> starting at offset C<offset>."
16896 msgstr ""
16897
16898 # type: textblock
16899 #. type: textblock
16900 #: ../src/guestfs-actions.pod:5408 ../fish/guestfish-actions.pod:3633
16901 msgid ""
16902 "This command implements the L<pwrite(2)> system call, and like that system "
16903 "call it may not write the full data requested.  The return value is the "
16904 "number of bytes that were actually written to the file.  This could even be "
16905 "0, although short writes are unlikely for regular files in ordinary "
16906 "circumstances."
16907 msgstr ""
16908
16909 # type: textblock
16910 #. type: textblock
16911 #: ../src/guestfs-actions.pod:5414
16912 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
16913 msgstr ""
16914
16915 # type: =head2
16916 #. type: =head2
16917 #: ../src/guestfs-actions.pod:5423
16918 msgid "guestfs_pwrite_device"
16919 msgstr ""
16920
16921 # type: verbatim
16922 #. type: verbatim
16923 #: ../src/guestfs-actions.pod:5425
16924 #, no-wrap
16925 msgid ""
16926 " int\n"
16927 " guestfs_pwrite_device (guestfs_h *g,\n"
16928 "                        const char *device,\n"
16929 "                        const char *content,\n"
16930 "                        size_t content_size,\n"
16931 "                        int64_t offset);\n"
16932 "\n"
16933 msgstr ""
16934
16935 # type: textblock
16936 #. type: textblock
16937 #: ../src/guestfs-actions.pod:5432 ../fish/guestfish-actions.pod:3648
16938 msgid ""
16939 "This command writes to part of a device.  It writes the data buffer "
16940 "C<content> to C<device> starting at offset C<offset>."
16941 msgstr ""
16942
16943 # type: textblock
16944 #. type: textblock
16945 #: ../src/guestfs-actions.pod:5435 ../fish/guestfish-actions.pod:3651
16946 msgid ""
16947 "This command implements the L<pwrite(2)> system call, and like that system "
16948 "call it may not write the full data requested (although short writes to disk "
16949 "devices and partitions are probably impossible with standard Linux kernels)."
16950 msgstr ""
16951
16952 # type: textblock
16953 #. type: textblock
16954 #: ../src/guestfs-actions.pod:5440
16955 msgid "See also C<guestfs_pwrite>."
16956 msgstr ""
16957
16958 # type: textblock
16959 #. type: textblock
16960 #: ../src/guestfs-actions.pod:5447
16961 msgid "(Added in 1.5.20)"
16962 msgstr ""
16963
16964 # type: =head2
16965 #. type: =head2
16966 #: ../src/guestfs-actions.pod:5449
16967 msgid "guestfs_read_file"
16968 msgstr ""
16969
16970 # type: verbatim
16971 #. type: verbatim
16972 #: ../src/guestfs-actions.pod:5451
16973 #, no-wrap
16974 msgid ""
16975 " char *\n"
16976 " guestfs_read_file (guestfs_h *g,\n"
16977 "                    const char *path,\n"
16978 "                    size_t *size_r);\n"
16979 "\n"
16980 msgstr ""
16981
16982 # type: textblock
16983 #. type: textblock
16984 #: ../src/guestfs-actions.pod:5456 ../fish/guestfish-actions.pod:3665
16985 msgid "This calls returns the contents of the file C<path> as a buffer."
16986 msgstr ""
16987
16988 # type: textblock
16989 #. type: textblock
16990 #: ../src/guestfs-actions.pod:5459
16991 msgid ""
16992 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
16993 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
16994 "function is limited in the total size of file that can be handled."
16995 msgstr ""
16996
16997 # type: textblock
16998 #. type: textblock
16999 #: ../src/guestfs-actions.pod:5471
17000 msgid "(Added in 1.0.63)"
17001 msgstr ""
17002
17003 # type: =head2
17004 #. type: =head2
17005 #: ../src/guestfs-actions.pod:5473
17006 msgid "guestfs_read_lines"
17007 msgstr ""
17008
17009 # type: verbatim
17010 #. type: verbatim
17011 #: ../src/guestfs-actions.pod:5475
17012 #, no-wrap
17013 msgid ""
17014 " char **\n"
17015 " guestfs_read_lines (guestfs_h *g,\n"
17016 "                     const char *path);\n"
17017 "\n"
17018 msgstr ""
17019
17020 # type: textblock
17021 #. type: textblock
17022 #: ../src/guestfs-actions.pod:5481 ../fish/guestfish-actions.pod:3682
17023 msgid ""
17024 "The file contents are returned as a list of lines.  Trailing C<LF> and "
17025 "C<CRLF> character sequences are I<not> returned."
17026 msgstr ""
17027
17028 # type: textblock
17029 #. type: textblock
17030 #: ../src/guestfs-actions.pod:5484
17031 msgid ""
17032 "Note that this function cannot correctly handle binary files (specifically, "
17033 "files containing C<\\0> character which is treated as end of line).  For "
17034 "those you need to use the C<guestfs_read_file> function which has a more "
17035 "complex interface."
17036 msgstr ""
17037
17038 # type: =head2
17039 #. type: =head2
17040 #: ../src/guestfs-actions.pod:5495
17041 msgid "guestfs_readdir"
17042 msgstr ""
17043
17044 # type: verbatim
17045 #. type: verbatim
17046 #: ../src/guestfs-actions.pod:5497
17047 #, no-wrap
17048 msgid ""
17049 " struct guestfs_dirent_list *\n"
17050 " guestfs_readdir (guestfs_h *g,\n"
17051 "                  const char *dir);\n"
17052 "\n"
17053 msgstr ""
17054
17055 # type: textblock
17056 #. type: textblock
17057 #: ../src/guestfs-actions.pod:5501 ../fish/guestfish-actions.pod:3694
17058 msgid "This returns the list of directory entries in directory C<dir>."
17059 msgstr ""
17060
17061 # type: textblock
17062 #. type: textblock
17063 #: ../src/guestfs-actions.pod:5503 ../fish/guestfish-actions.pod:3696
17064 msgid ""
17065 "All entries in the directory are returned, including C<.> and C<..>.  The "
17066 "entries are I<not> sorted, but returned in the same order as the underlying "
17067 "filesystem."
17068 msgstr ""
17069
17070 # type: textblock
17071 #. type: textblock
17072 #: ../src/guestfs-actions.pod:5507 ../fish/guestfish-actions.pod:3700
17073 msgid ""
17074 "Also this call returns basic file type information about each file.  The "
17075 "C<ftyp> field will contain one of the following characters:"
17076 msgstr ""
17077
17078 # type: =item
17079 #. type: =item
17080 #: ../src/guestfs-actions.pod:5512 ../fish/guestfish-actions.pod:3705
17081 msgid "'b'"
17082 msgstr ""
17083
17084 # type: textblock
17085 #. type: textblock
17086 #: ../src/guestfs-actions.pod:5514 ../fish/guestfish-actions.pod:3707
17087 msgid "Block special"
17088 msgstr ""
17089
17090 # type: =item
17091 #. type: =item
17092 #: ../src/guestfs-actions.pod:5516 ../fish/guestfish-actions.pod:3709
17093 msgid "'c'"
17094 msgstr ""
17095
17096 # type: textblock
17097 #. type: textblock
17098 #: ../src/guestfs-actions.pod:5518 ../fish/guestfish-actions.pod:3711
17099 msgid "Char special"
17100 msgstr ""
17101
17102 # type: =item
17103 #. type: =item
17104 #: ../src/guestfs-actions.pod:5520 ../fish/guestfish-actions.pod:3713
17105 msgid "'d'"
17106 msgstr ""
17107
17108 # type: textblock
17109 #. type: textblock
17110 #: ../src/guestfs-actions.pod:5522 ../fish/guestfish-actions.pod:3715
17111 msgid "Directory"
17112 msgstr ""
17113
17114 # type: =item
17115 #. type: =item
17116 #: ../src/guestfs-actions.pod:5524 ../fish/guestfish-actions.pod:3717
17117 msgid "'f'"
17118 msgstr ""
17119
17120 # type: textblock
17121 #. type: textblock
17122 #: ../src/guestfs-actions.pod:5526 ../fish/guestfish-actions.pod:3719
17123 msgid "FIFO (named pipe)"
17124 msgstr ""
17125
17126 # type: =item
17127 #. type: =item
17128 #: ../src/guestfs-actions.pod:5528 ../fish/guestfish-actions.pod:3721
17129 msgid "'l'"
17130 msgstr ""
17131
17132 # type: textblock
17133 #. type: textblock
17134 #: ../src/guestfs-actions.pod:5530 ../fish/guestfish-actions.pod:3723
17135 msgid "Symbolic link"
17136 msgstr ""
17137
17138 # type: =item
17139 #. type: =item
17140 #: ../src/guestfs-actions.pod:5532 ../fish/guestfish-actions.pod:3725
17141 msgid "'r'"
17142 msgstr ""
17143
17144 # type: textblock
17145 #. type: textblock
17146 #: ../src/guestfs-actions.pod:5534 ../fish/guestfish-actions.pod:3727
17147 msgid "Regular file"
17148 msgstr ""
17149
17150 # type: =item
17151 #. type: =item
17152 #: ../src/guestfs-actions.pod:5536 ../fish/guestfish-actions.pod:3729
17153 msgid "'s'"
17154 msgstr ""
17155
17156 # type: textblock
17157 #. type: textblock
17158 #: ../src/guestfs-actions.pod:5538 ../fish/guestfish-actions.pod:3731
17159 msgid "Socket"
17160 msgstr ""
17161
17162 # type: =item
17163 #. type: =item
17164 #: ../src/guestfs-actions.pod:5540 ../fish/guestfish-actions.pod:3733
17165 msgid "'u'"
17166 msgstr ""
17167
17168 # type: textblock
17169 #. type: textblock
17170 #: ../src/guestfs-actions.pod:5542 ../fish/guestfish-actions.pod:3735
17171 msgid "Unknown file type"
17172 msgstr ""
17173
17174 # type: =item
17175 #. type: =item
17176 #: ../src/guestfs-actions.pod:5544 ../fish/guestfish-actions.pod:3737
17177 msgid "'?'"
17178 msgstr ""
17179
17180 # type: textblock
17181 #. type: textblock
17182 #: ../src/guestfs-actions.pod:5546 ../fish/guestfish-actions.pod:3739
17183 msgid ""
17184 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
17185 msgstr ""
17186
17187 # type: textblock
17188 #. type: textblock
17189 #: ../src/guestfs-actions.pod:5551
17190 msgid ""
17191 "This function is primarily intended for use by programs.  To get a simple "
17192 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
17193 "consumption, use C<guestfs_ll>."
17194 msgstr ""
17195
17196 # type: textblock
17197 #. type: textblock
17198 #: ../src/guestfs-actions.pod:5555
17199 msgid ""
17200 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
17201 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after use>."
17202 msgstr ""
17203
17204 # type: =head2
17205 #. type: =head2
17206 #: ../src/guestfs-actions.pod:5561
17207 msgid "guestfs_readlink"
17208 msgstr ""
17209
17210 # type: verbatim
17211 #. type: verbatim
17212 #: ../src/guestfs-actions.pod:5563
17213 #, no-wrap
17214 msgid ""
17215 " char *\n"
17216 " guestfs_readlink (guestfs_h *g,\n"
17217 "                   const char *path);\n"
17218 "\n"
17219 msgstr ""
17220
17221 # type: textblock
17222 #. type: textblock
17223 #: ../src/guestfs-actions.pod:5567 ../fish/guestfish-actions.pod:3752
17224 msgid "This command reads the target of a symbolic link."
17225 msgstr ""
17226
17227 # type: =head2
17228 #. type: =head2
17229 #: ../src/guestfs-actions.pod:5574
17230 msgid "guestfs_readlinklist"
17231 msgstr ""
17232
17233 # type: verbatim
17234 #. type: verbatim
17235 #: ../src/guestfs-actions.pod:5576
17236 #, no-wrap
17237 msgid ""
17238 " char **\n"
17239 " guestfs_readlinklist (guestfs_h *g,\n"
17240 "                       const char *path,\n"
17241 "                       char *const *names);\n"
17242 "\n"
17243 msgstr ""
17244
17245 # type: textblock
17246 #. type: textblock
17247 #: ../src/guestfs-actions.pod:5581 ../fish/guestfish-actions.pod:3758
17248 msgid ""
17249 "This call allows you to do a C<readlink> operation on multiple files, where "
17250 "all files are in the directory C<path>.  C<names> is the list of files from "
17251 "this directory."
17252 msgstr ""
17253
17254 # type: textblock
17255 #. type: textblock
17256 #: ../src/guestfs-actions.pod:5585 ../fish/guestfish-actions.pod:3762
17257 msgid ""
17258 "On return you get a list of strings, with a one-to-one correspondence to the "
17259 "C<names> list.  Each string is the value of the symbolic link."
17260 msgstr ""
17261
17262 # type: textblock
17263 #. type: textblock
17264 #: ../src/guestfs-actions.pod:5589 ../fish/guestfish-actions.pod:3766
17265 msgid ""
17266 "If the C<readlink(2)> operation fails on any name, then the corresponding "
17267 "result string is the empty string C<\"\">.  However the whole operation is "
17268 "completed even if there were C<readlink(2)> errors, and so you can call this "
17269 "function with names where you don't know if they are symbolic links already "
17270 "(albeit slightly less efficient)."
17271 msgstr ""
17272
17273 # type: textblock
17274 #. type: textblock
17275 #: ../src/guestfs-actions.pod:5596 ../fish/guestfish-actions.pod:3773
17276 msgid ""
17277 "This call is intended for programs that want to efficiently list a directory "
17278 "contents without making many round-trips.  Very long directory listings "
17279 "might cause the protocol message size to be exceeded, causing this call to "
17280 "fail.  The caller must split up such requests into smaller groups of names."
17281 msgstr ""
17282
17283 # type: =head2
17284 #. type: =head2
17285 #: ../src/guestfs-actions.pod:5609
17286 msgid "guestfs_realpath"
17287 msgstr ""
17288
17289 # type: verbatim
17290 #. type: verbatim
17291 #: ../src/guestfs-actions.pod:5611
17292 #, no-wrap
17293 msgid ""
17294 " char *\n"
17295 " guestfs_realpath (guestfs_h *g,\n"
17296 "                   const char *path);\n"
17297 "\n"
17298 msgstr ""
17299
17300 # type: textblock
17301 #. type: textblock
17302 #: ../src/guestfs-actions.pod:5615 ../fish/guestfish-actions.pod:3784
17303 msgid ""
17304 "Return the canonicalized absolute pathname of C<path>.  The returned path "
17305 "has no C<.>, C<..> or symbolic link path elements."
17306 msgstr ""
17307
17308 # type: =head2
17309 #. type: =head2
17310 #: ../src/guestfs-actions.pod:5623
17311 msgid "guestfs_removexattr"
17312 msgstr ""
17313
17314 # type: verbatim
17315 #. type: verbatim
17316 #: ../src/guestfs-actions.pod:5625
17317 #, no-wrap
17318 msgid ""
17319 " int\n"
17320 " guestfs_removexattr (guestfs_h *g,\n"
17321 "                      const char *xattr,\n"
17322 "                      const char *path);\n"
17323 "\n"
17324 msgstr ""
17325
17326 # type: textblock
17327 #. type: textblock
17328 #: ../src/guestfs-actions.pod:5630 ../fish/guestfish-actions.pod:3791
17329 msgid ""
17330 "This call removes the extended attribute named C<xattr> of the file C<path>."
17331 msgstr ""
17332
17333 # type: textblock
17334 #. type: textblock
17335 #: ../src/guestfs-actions.pod:5633
17336 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
17337 msgstr ""
17338
17339 # type: =head2
17340 #. type: =head2
17341 #: ../src/guestfs-actions.pod:5639
17342 msgid "guestfs_resize2fs"
17343 msgstr ""
17344
17345 # type: verbatim
17346 #. type: verbatim
17347 #: ../src/guestfs-actions.pod:5641
17348 #, no-wrap
17349 msgid ""
17350 " int\n"
17351 " guestfs_resize2fs (guestfs_h *g,\n"
17352 "                    const char *device);\n"
17353 "\n"
17354 msgstr ""
17355
17356 # type: textblock
17357 #. type: textblock
17358 #: ../src/guestfs-actions.pod:5645 ../fish/guestfish-actions.pod:3800
17359 msgid ""
17360 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
17361 "underlying device."
17362 msgstr ""
17363
17364 # type: textblock
17365 #. type: textblock
17366 #: ../src/guestfs-actions.pod:5648
17367 msgid ""
17368 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
17369 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
17370 "sometimes gives an error about this and sometimes not.  In any case, it is "
17371 "always safe to call C<guestfs_e2fsck_f> before calling this function."
17372 msgstr ""
17373
17374 #. type: =head2
17375 #: ../src/guestfs-actions.pod:5658
17376 msgid "guestfs_resize2fs_M"
17377 msgstr ""
17378
17379 #. type: verbatim
17380 #: ../src/guestfs-actions.pod:5660
17381 #, no-wrap
17382 msgid ""
17383 " int\n"
17384 " guestfs_resize2fs_M (guestfs_h *g,\n"
17385 "                      const char *device);\n"
17386 "\n"
17387 msgstr ""
17388
17389 #. type: textblock
17390 #: ../src/guestfs-actions.pod:5664
17391 msgid ""
17392 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
17393 "resized to its minimum size.  This works like the I<-M> option to the "
17394 "C<resize2fs> command."
17395 msgstr ""
17396
17397 #. type: textblock
17398 #: ../src/guestfs-actions.pod:5668
17399 msgid ""
17400 "To get the resulting size of the filesystem you should call "
17401 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
17402 "These two numbers, multiplied together, give the resulting size of the "
17403 "minimal filesystem in bytes."
17404 msgstr ""
17405
17406 # type: =head2
17407 #. type: =head2
17408 #: ../src/guestfs-actions.pod:5675
17409 msgid "guestfs_resize2fs_size"
17410 msgstr ""
17411
17412 # type: verbatim
17413 #. type: verbatim
17414 #: ../src/guestfs-actions.pod:5677
17415 #, no-wrap
17416 msgid ""
17417 " int\n"
17418 " guestfs_resize2fs_size (guestfs_h *g,\n"
17419 "                         const char *device,\n"
17420 "                         int64_t size);\n"
17421 "\n"
17422 msgstr ""
17423
17424 # type: textblock
17425 #. type: textblock
17426 #: ../src/guestfs-actions.pod:5682
17427 msgid ""
17428 "This command is the same as C<guestfs_resize2fs> except that it allows you "
17429 "to specify the new size (in bytes) explicitly."
17430 msgstr ""
17431
17432 # type: =head2
17433 #. type: =head2
17434 #: ../src/guestfs-actions.pod:5689
17435 msgid "guestfs_rm"
17436 msgstr ""
17437
17438 # type: verbatim
17439 #. type: verbatim
17440 #: ../src/guestfs-actions.pod:5691
17441 #, no-wrap
17442 msgid ""
17443 " int\n"
17444 " guestfs_rm (guestfs_h *g,\n"
17445 "             const char *path);\n"
17446 "\n"
17447 msgstr ""
17448
17449 # type: textblock
17450 #. type: textblock
17451 #: ../src/guestfs-actions.pod:5695 ../fish/guestfish-actions.pod:3833
17452 msgid "Remove the single file C<path>."
17453 msgstr ""
17454
17455 # type: =head2
17456 #. type: =head2
17457 #: ../src/guestfs-actions.pod:5701
17458 msgid "guestfs_rm_rf"
17459 msgstr ""
17460
17461 # type: verbatim
17462 #. type: verbatim
17463 #: ../src/guestfs-actions.pod:5703
17464 #, no-wrap
17465 msgid ""
17466 " int\n"
17467 " guestfs_rm_rf (guestfs_h *g,\n"
17468 "                const char *path);\n"
17469 "\n"
17470 msgstr ""
17471
17472 # type: textblock
17473 #. type: textblock
17474 #: ../src/guestfs-actions.pod:5707 ../fish/guestfish-actions.pod:3839
17475 msgid ""
17476 "Remove the file or directory C<path>, recursively removing the contents if "
17477 "its a directory.  This is like the C<rm -rf> shell command."
17478 msgstr ""
17479
17480 # type: =head2
17481 #. type: =head2
17482 #: ../src/guestfs-actions.pod:5715
17483 msgid "guestfs_rmdir"
17484 msgstr ""
17485
17486 # type: verbatim
17487 #. type: verbatim
17488 #: ../src/guestfs-actions.pod:5717
17489 #, no-wrap
17490 msgid ""
17491 " int\n"
17492 " guestfs_rmdir (guestfs_h *g,\n"
17493 "                const char *path);\n"
17494 "\n"
17495 msgstr ""
17496
17497 # type: textblock
17498 #. type: textblock
17499 #: ../src/guestfs-actions.pod:5721 ../fish/guestfish-actions.pod:3847
17500 msgid "Remove the single directory C<path>."
17501 msgstr ""
17502
17503 # type: =head2
17504 #. type: =head2
17505 #: ../src/guestfs-actions.pod:5727
17506 msgid "guestfs_rmmountpoint"
17507 msgstr ""
17508
17509 # type: verbatim
17510 #. type: verbatim
17511 #: ../src/guestfs-actions.pod:5729
17512 #, no-wrap
17513 msgid ""
17514 " int\n"
17515 " guestfs_rmmountpoint (guestfs_h *g,\n"
17516 "                       const char *exemptpath);\n"
17517 "\n"
17518 msgstr ""
17519
17520 # type: textblock
17521 #. type: textblock
17522 #: ../src/guestfs-actions.pod:5733
17523 msgid ""
17524 "This calls removes a mountpoint that was previously created with "
17525 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
17526 msgstr ""
17527
17528 # type: =head2
17529 #. type: =head2
17530 #: ../src/guestfs-actions.pod:5741
17531 msgid "guestfs_scrub_device"
17532 msgstr ""
17533
17534 # type: verbatim
17535 #. type: verbatim
17536 #: ../src/guestfs-actions.pod:5743
17537 #, no-wrap
17538 msgid ""
17539 " int\n"
17540 " guestfs_scrub_device (guestfs_h *g,\n"
17541 "                       const char *device);\n"
17542 "\n"
17543 msgstr ""
17544
17545 # type: textblock
17546 #. type: textblock
17547 #: ../src/guestfs-actions.pod:5747 ../fish/guestfish-actions.pod:3861
17548 msgid ""
17549 "This command writes patterns over C<device> to make data retrieval more "
17550 "difficult."
17551 msgstr ""
17552
17553 # type: textblock
17554 #. type: textblock
17555 #: ../src/guestfs-actions.pod:5750 ../src/guestfs-actions.pod:5771
17556 #: ../src/guestfs-actions.pod:5790 ../fish/guestfish-actions.pod:3864
17557 #: ../fish/guestfish-actions.pod:3879 ../fish/guestfish-actions.pod:3892
17558 msgid ""
17559 "It is an interface to the L<scrub(1)> program.  See that manual page for "
17560 "more details."
17561 msgstr ""
17562
17563 # type: textblock
17564 #. type: textblock
17565 #: ../src/guestfs-actions.pod:5758 ../src/guestfs-actions.pod:5776
17566 #: ../src/guestfs-actions.pod:5795
17567 msgid "(Added in 1.0.52)"
17568 msgstr ""
17569
17570 # type: =head2
17571 #. type: =head2
17572 #: ../src/guestfs-actions.pod:5760
17573 msgid "guestfs_scrub_file"
17574 msgstr ""
17575
17576 # type: verbatim
17577 #. type: verbatim
17578 #: ../src/guestfs-actions.pod:5762
17579 #, no-wrap
17580 msgid ""
17581 " int\n"
17582 " guestfs_scrub_file (guestfs_h *g,\n"
17583 "                     const char *file);\n"
17584 "\n"
17585 msgstr ""
17586
17587 # type: textblock
17588 #. type: textblock
17589 #: ../src/guestfs-actions.pod:5766 ../fish/guestfish-actions.pod:3874
17590 msgid ""
17591 "This command writes patterns over a file to make data retrieval more "
17592 "difficult."
17593 msgstr ""
17594
17595 # type: textblock
17596 #. type: textblock
17597 #: ../src/guestfs-actions.pod:5769 ../fish/guestfish-actions.pod:3877
17598 msgid "The file is I<removed> after scrubbing."
17599 msgstr ""
17600
17601 # type: =head2
17602 #. type: =head2
17603 #: ../src/guestfs-actions.pod:5778
17604 msgid "guestfs_scrub_freespace"
17605 msgstr ""
17606
17607 # type: verbatim
17608 #. type: verbatim
17609 #: ../src/guestfs-actions.pod:5780
17610 #, no-wrap
17611 msgid ""
17612 " int\n"
17613 " guestfs_scrub_freespace (guestfs_h *g,\n"
17614 "                          const char *dir);\n"
17615 "\n"
17616 msgstr ""
17617
17618 # type: textblock
17619 #. type: textblock
17620 #: ../src/guestfs-actions.pod:5784
17621 msgid ""
17622 "This command creates the directory C<dir> and then fills it with files until "
17623 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
17624 "and deletes them.  The intention is to scrub any free space on the partition "
17625 "containing C<dir>."
17626 msgstr ""
17627
17628 # type: =head2
17629 #. type: =head2
17630 #: ../src/guestfs-actions.pod:5797
17631 msgid "guestfs_set_append"
17632 msgstr ""
17633
17634 # type: verbatim
17635 #. type: verbatim
17636 #: ../src/guestfs-actions.pod:5799
17637 #, no-wrap
17638 msgid ""
17639 " int\n"
17640 " guestfs_set_append (guestfs_h *g,\n"
17641 "                     const char *append);\n"
17642 "\n"
17643 msgstr ""
17644
17645 # type: textblock
17646 #. type: textblock
17647 #: ../src/guestfs-actions.pod:5803 ../fish/guestfish-actions.pod:3901
17648 msgid ""
17649 "This function is used to add additional options to the guest kernel command "
17650 "line."
17651 msgstr ""
17652
17653 # type: textblock
17654 #. type: textblock
17655 #: ../src/guestfs-actions.pod:5806 ../fish/guestfish-actions.pod:3904
17656 msgid ""
17657 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
17658 "environment variable."
17659 msgstr ""
17660
17661 # type: textblock
17662 #. type: textblock
17663 #: ../src/guestfs-actions.pod:5809 ../fish/guestfish-actions.pod:3907
17664 msgid ""
17665 "Setting C<append> to C<NULL> means I<no> additional options are passed "
17666 "(libguestfs always adds a few of its own)."
17667 msgstr ""
17668
17669 #. type: =head2
17670 #: ../src/guestfs-actions.pod:5816
17671 msgid "guestfs_set_attach_method"
17672 msgstr ""
17673
17674 #. type: verbatim
17675 #: ../src/guestfs-actions.pod:5818
17676 #, no-wrap
17677 msgid ""
17678 " int\n"
17679 " guestfs_set_attach_method (guestfs_h *g,\n"
17680 "                            const char *attachmethod);\n"
17681 "\n"
17682 msgstr ""
17683
17684 #. type: textblock
17685 #: ../src/guestfs-actions.pod:5822 ../fish/guestfish-actions.pod:3916
17686 msgid ""
17687 "Set the method that libguestfs uses to connect to the back end guestfsd "
17688 "daemon.  Possible methods are:"
17689 msgstr ""
17690
17691 #. type: textblock
17692 #: ../src/guestfs-actions.pod:5829 ../fish/guestfish-actions.pod:3923
17693 msgid ""
17694 "Launch an appliance and connect to it.  This is the ordinary method and the "
17695 "default."
17696 msgstr ""
17697
17698 #. type: =item
17699 #: ../src/guestfs-actions.pod:5832 ../fish/guestfish-actions.pod:3926
17700 msgid "C<unix:I<path>>"
17701 msgstr ""
17702
17703 #. type: textblock
17704 #: ../src/guestfs-actions.pod:5834 ../fish/guestfish-actions.pod:3928
17705 msgid "Connect to the Unix domain socket I<path>."
17706 msgstr ""
17707
17708 #. type: textblock
17709 #: ../src/guestfs-actions.pod:5836 ../fish/guestfish-actions.pod:3930
17710 msgid ""
17711 "This method lets you connect to an existing daemon or (using virtio-serial) "
17712 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
17713 "RUNNING DAEMONS>."
17714 msgstr ""
17715
17716 # type: =head2
17717 #. type: =head2
17718 #: ../src/guestfs-actions.pod:5844
17719 msgid "guestfs_set_autosync"
17720 msgstr ""
17721
17722 # type: verbatim
17723 #. type: verbatim
17724 #: ../src/guestfs-actions.pod:5846
17725 #, no-wrap
17726 msgid ""
17727 " int\n"
17728 " guestfs_set_autosync (guestfs_h *g,\n"
17729 "                       int autosync);\n"
17730 "\n"
17731 msgstr ""
17732
17733 #. type: textblock
17734 #: ../src/guestfs-actions.pod:5850 ../fish/guestfish-actions.pod:3942
17735 msgid ""
17736 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
17737 "effort attempt to make filesystems consistent and synchronized when the "
17738 "handle is closed (also if the program exits without closing handles)."
17739 msgstr ""
17740
17741 # type: textblock
17742 #. type: textblock
17743 #: ../src/guestfs-actions.pod:5855 ../fish/guestfish-actions.pod:3947
17744 msgid ""
17745 "This is enabled by default (since libguestfs 1.5.24, previously it was "
17746 "disabled by default)."
17747 msgstr ""
17748
17749 # type: =head2
17750 #. type: =head2
17751 #: ../src/guestfs-actions.pod:5862
17752 msgid "guestfs_set_direct"
17753 msgstr ""
17754
17755 # type: verbatim
17756 #. type: verbatim
17757 #: ../src/guestfs-actions.pod:5864
17758 #, no-wrap
17759 msgid ""
17760 " int\n"
17761 " guestfs_set_direct (guestfs_h *g,\n"
17762 "                     int direct);\n"
17763 "\n"
17764 msgstr ""
17765
17766 # type: textblock
17767 #. type: textblock
17768 #: ../src/guestfs-actions.pod:5868 ../fish/guestfish-actions.pod:3956
17769 msgid ""
17770 "If the direct appliance mode flag is enabled, then stdin and stdout are "
17771 "passed directly through to the appliance once it is launched."
17772 msgstr ""
17773
17774 # type: textblock
17775 #. type: textblock
17776 #: ../src/guestfs-actions.pod:5872
17777 msgid ""
17778 "One consequence of this is that log messages aren't caught by the library "
17779 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
17780 "stdout."
17781 msgstr ""
17782
17783 # type: textblock
17784 #. type: textblock
17785 #: ../src/guestfs-actions.pod:5876 ../fish/guestfish-actions.pod:3964
17786 msgid "You probably don't want to use this unless you know what you are doing."
17787 msgstr ""
17788
17789 # type: textblock
17790 #. type: textblock
17791 #: ../src/guestfs-actions.pod:5879 ../fish/guestfish-actions.pod:3967
17792 msgid "The default is disabled."
17793 msgstr ""
17794
17795 # type: =head2
17796 #. type: =head2
17797 #: ../src/guestfs-actions.pod:5885
17798 msgid "guestfs_set_e2label"
17799 msgstr ""
17800
17801 # type: verbatim
17802 #. type: verbatim
17803 #: ../src/guestfs-actions.pod:5887
17804 #, no-wrap
17805 msgid ""
17806 " int\n"
17807 " guestfs_set_e2label (guestfs_h *g,\n"
17808 "                      const char *device,\n"
17809 "                      const char *label);\n"
17810 "\n"
17811 msgstr ""
17812
17813 # type: textblock
17814 #. type: textblock
17815 #: ../src/guestfs-actions.pod:5892 ../fish/guestfish-actions.pod:3973
17816 msgid ""
17817 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
17818 "C<label>.  Filesystem labels are limited to 16 characters."
17819 msgstr ""
17820
17821 # type: textblock
17822 #. type: textblock
17823 #: ../src/guestfs-actions.pod:5896
17824 msgid ""
17825 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
17826 "the existing label on a filesystem."
17827 msgstr ""
17828
17829 # type: =head2
17830 #. type: =head2
17831 #: ../src/guestfs-actions.pod:5903
17832 msgid "guestfs_set_e2uuid"
17833 msgstr ""
17834
17835 # type: verbatim
17836 #. type: verbatim
17837 #: ../src/guestfs-actions.pod:5905
17838 #, no-wrap
17839 msgid ""
17840 " int\n"
17841 " guestfs_set_e2uuid (guestfs_h *g,\n"
17842 "                     const char *device,\n"
17843 "                     const char *uuid);\n"
17844 "\n"
17845 msgstr ""
17846
17847 # type: textblock
17848 #. type: textblock
17849 #: ../src/guestfs-actions.pod:5910 ../fish/guestfish-actions.pod:3984
17850 msgid ""
17851 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
17852 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
17853 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
17854 msgstr ""
17855
17856 # type: textblock
17857 #. type: textblock
17858 #: ../src/guestfs-actions.pod:5915
17859 msgid ""
17860 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
17861 "the existing UUID of a filesystem."
17862 msgstr ""
17863
17864 # type: =head2
17865 #. type: =head2
17866 #: ../src/guestfs-actions.pod:5922
17867 msgid "guestfs_set_memsize"
17868 msgstr ""
17869
17870 # type: verbatim
17871 #. type: verbatim
17872 #: ../src/guestfs-actions.pod:5924
17873 #, no-wrap
17874 msgid ""
17875 " int\n"
17876 " guestfs_set_memsize (guestfs_h *g,\n"
17877 "                      int memsize);\n"
17878 "\n"
17879 msgstr ""
17880
17881 # type: textblock
17882 #. type: textblock
17883 #: ../src/guestfs-actions.pod:5928
17884 msgid ""
17885 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
17886 "This only has any effect if called before C<guestfs_launch>."
17887 msgstr ""
17888
17889 # type: textblock
17890 #. type: textblock
17891 #: ../src/guestfs-actions.pod:5932 ../fish/guestfish-actions.pod:4002
17892 msgid ""
17893 "You can also change this by setting the environment variable "
17894 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
17895 msgstr ""
17896
17897 # type: =head2
17898 #. type: =head2
17899 #: ../src/guestfs-actions.pod:5943
17900 msgid "guestfs_set_network"
17901 msgstr ""
17902
17903 # type: verbatim
17904 #. type: verbatim
17905 #: ../src/guestfs-actions.pod:5945
17906 #, no-wrap
17907 msgid ""
17908 " int\n"
17909 " guestfs_set_network (guestfs_h *g,\n"
17910 "                      int network);\n"
17911 "\n"
17912 msgstr ""
17913
17914 # type: textblock
17915 #. type: textblock
17916 #: ../src/guestfs-actions.pod:5949 ../fish/guestfish-actions.pod:4015
17917 msgid ""
17918 "If C<network> is true, then the network is enabled in the libguestfs "
17919 "appliance.  The default is false."
17920 msgstr ""
17921
17922 # type: textblock
17923 #. type: textblock
17924 #: ../src/guestfs-actions.pod:5952 ../fish/guestfish-actions.pod:4018
17925 msgid ""
17926 "This affects whether commands are able to access the network (see L<guestfs"
17927 "(3)/RUNNING COMMANDS>)."
17928 msgstr ""
17929
17930 # type: textblock
17931 #. type: textblock
17932 #: ../src/guestfs-actions.pod:5955
17933 msgid ""
17934 "You must call this before calling C<guestfs_launch>, otherwise it has no "
17935 "effect."
17936 msgstr ""
17937
17938 # type: =head2
17939 #. type: =head2
17940 #: ../src/guestfs-actions.pod:5962
17941 msgid "guestfs_set_path"
17942 msgstr ""
17943
17944 # type: verbatim
17945 #. type: verbatim
17946 #: ../src/guestfs-actions.pod:5964
17947 #, no-wrap
17948 msgid ""
17949 " int\n"
17950 " guestfs_set_path (guestfs_h *g,\n"
17951 "                   const char *searchpath);\n"
17952 "\n"
17953 msgstr ""
17954
17955 # type: textblock
17956 #. type: textblock
17957 #: ../src/guestfs-actions.pod:5968 ../fish/guestfish-actions.pod:4030
17958 msgid "Set the path that libguestfs searches for kernel and initrd.img."
17959 msgstr ""
17960
17961 # type: textblock
17962 #. type: textblock
17963 #: ../src/guestfs-actions.pod:5970 ../fish/guestfish-actions.pod:4032
17964 msgid ""
17965 "The default is C<$libdir/guestfs> unless overridden by setting "
17966 "C<LIBGUESTFS_PATH> environment variable."
17967 msgstr ""
17968
17969 # type: textblock
17970 #. type: textblock
17971 #: ../src/guestfs-actions.pod:5973 ../fish/guestfish-actions.pod:4035
17972 msgid "Setting C<path> to C<NULL> restores the default path."
17973 msgstr ""
17974
17975 # type: =head2
17976 #. type: =head2
17977 #: ../src/guestfs-actions.pod:5979
17978 msgid "guestfs_set_qemu"
17979 msgstr ""
17980
17981 # type: verbatim
17982 #. type: verbatim
17983 #: ../src/guestfs-actions.pod:5981
17984 #, no-wrap
17985 msgid ""
17986 " int\n"
17987 " guestfs_set_qemu (guestfs_h *g,\n"
17988 "                   const char *qemu);\n"
17989 "\n"
17990 msgstr ""
17991
17992 # type: textblock
17993 #. type: textblock
17994 #: ../src/guestfs-actions.pod:5985 ../fish/guestfish-actions.pod:4043
17995 msgid "Set the qemu binary that we will use."
17996 msgstr ""
17997
17998 # type: textblock
17999 #. type: textblock
18000 #: ../src/guestfs-actions.pod:5987 ../fish/guestfish-actions.pod:4045
18001 msgid ""
18002 "The default is chosen when the library was compiled by the configure script."
18003 msgstr ""
18004
18005 # type: textblock
18006 #. type: textblock
18007 #: ../src/guestfs-actions.pod:5990 ../fish/guestfish-actions.pod:4048
18008 msgid ""
18009 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
18010 "variable."
18011 msgstr ""
18012
18013 # type: textblock
18014 #. type: textblock
18015 #: ../src/guestfs-actions.pod:5993 ../fish/guestfish-actions.pod:4051
18016 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
18017 msgstr ""
18018
18019 # type: textblock
18020 #. type: textblock
18021 #: ../src/guestfs-actions.pod:5995 ../fish/guestfish-actions.pod:4053
18022 msgid ""
18023 "Note that you should call this function as early as possible after creating "
18024 "the handle.  This is because some pre-launch operations depend on testing "
18025 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
18026 "don't retest features, and so you might see inconsistent results.  Using the "
18027 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
18028 "the qemu binary at the same time as the handle is created."
18029 msgstr ""
18030
18031 # type: =head2
18032 #. type: =head2
18033 #: ../src/guestfs-actions.pod:6007
18034 msgid "guestfs_set_recovery_proc"
18035 msgstr ""
18036
18037 # type: verbatim
18038 #. type: verbatim
18039 #: ../src/guestfs-actions.pod:6009
18040 #, no-wrap
18041 msgid ""
18042 " int\n"
18043 " guestfs_set_recovery_proc (guestfs_h *g,\n"
18044 "                            int recoveryproc);\n"
18045 "\n"
18046 msgstr ""
18047
18048 # type: textblock
18049 #. type: textblock
18050 #: ../src/guestfs-actions.pod:6013
18051 msgid ""
18052 "If this is called with the parameter C<false> then C<guestfs_launch> does "
18053 "not create a recovery process.  The purpose of the recovery process is to "
18054 "stop runaway qemu processes in the case where the main program aborts "
18055 "abruptly."
18056 msgstr ""
18057
18058 # type: textblock
18059 #. type: textblock
18060 #: ../src/guestfs-actions.pod:6018
18061 msgid ""
18062 "This only has any effect if called before C<guestfs_launch>, and the default "
18063 "is true."
18064 msgstr ""
18065
18066 # type: textblock
18067 #. type: textblock
18068 #: ../src/guestfs-actions.pod:6021 ../fish/guestfish-actions.pod:4075
18069 msgid ""
18070 "About the only time when you would want to disable this is if the main "
18071 "process will fork itself into the background (\"daemonize\" itself).  In "
18072 "this case the recovery process thinks that the main program has disappeared "
18073 "and so kills qemu, which is not very helpful."
18074 msgstr ""
18075
18076 # type: =head2
18077 #. type: =head2
18078 #: ../src/guestfs-actions.pod:6031
18079 msgid "guestfs_set_selinux"
18080 msgstr ""
18081
18082 # type: verbatim
18083 #. type: verbatim
18084 #: ../src/guestfs-actions.pod:6033
18085 #, no-wrap
18086 msgid ""
18087 " int\n"
18088 " guestfs_set_selinux (guestfs_h *g,\n"
18089 "                      int selinux);\n"
18090 "\n"
18091 msgstr ""
18092
18093 # type: textblock
18094 #. type: textblock
18095 #: ../src/guestfs-actions.pod:6037 ../fish/guestfish-actions.pod:4087
18096 msgid ""
18097 "This sets the selinux flag that is passed to the appliance at boot time.  "
18098 "The default is C<selinux=0> (disabled)."
18099 msgstr ""
18100
18101 # type: textblock
18102 #. type: textblock
18103 #: ../src/guestfs-actions.pod:6040 ../fish/guestfish-actions.pod:4090
18104 msgid ""
18105 "Note that if SELinux is enabled, it is always in Permissive mode "
18106 "(C<enforcing=0>)."
18107 msgstr ""
18108
18109 # type: =head2
18110 #. type: =head2
18111 #: ../src/guestfs-actions.pod:6050
18112 msgid "guestfs_set_trace"
18113 msgstr ""
18114
18115 # type: verbatim
18116 #. type: verbatim
18117 #: ../src/guestfs-actions.pod:6052
18118 #, no-wrap
18119 msgid ""
18120 " int\n"
18121 " guestfs_set_trace (guestfs_h *g,\n"
18122 "                    int trace);\n"
18123 "\n"
18124 msgstr ""
18125
18126 #. type: textblock
18127 #: ../src/guestfs-actions.pod:6056 ../fish/guestfish-actions.pod:4102
18128 msgid ""
18129 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
18130 "return values are traced."
18131 msgstr ""
18132
18133 # type: textblock
18134 #. type: textblock
18135 #: ../src/guestfs-actions.pod:6059 ../fish/guestfish-actions.pod:4105
18136 msgid ""
18137 "If you want to trace C API calls into libguestfs (and other libraries) then "
18138 "possibly a better way is to use the external ltrace(1) command."
18139 msgstr ""
18140
18141 # type: textblock
18142 #. type: textblock
18143 #: ../src/guestfs-actions.pod:6063 ../fish/guestfish-actions.pod:4109
18144 msgid ""
18145 "Command traces are disabled unless the environment variable "
18146 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
18147 msgstr ""
18148
18149 #. type: textblock
18150 #: ../src/guestfs-actions.pod:6066
18151 msgid ""
18152 "Trace messages are normally sent to C<stderr>, unless you register a "
18153 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
18154 msgstr ""
18155
18156 # type: =head2
18157 #. type: =head2
18158 #: ../src/guestfs-actions.pod:6074
18159 msgid "guestfs_set_verbose"
18160 msgstr ""
18161
18162 # type: verbatim
18163 #. type: verbatim
18164 #: ../src/guestfs-actions.pod:6076
18165 #, no-wrap
18166 msgid ""
18167 " int\n"
18168 " guestfs_set_verbose (guestfs_h *g,\n"
18169 "                      int verbose);\n"
18170 "\n"
18171 msgstr ""
18172
18173 #. type: textblock
18174 #: ../src/guestfs-actions.pod:6080 ../fish/guestfish-actions.pod:4122
18175 msgid "If C<verbose> is true, this turns on verbose messages."
18176 msgstr ""
18177
18178 # type: textblock
18179 #. type: textblock
18180 #: ../src/guestfs-actions.pod:6082 ../fish/guestfish-actions.pod:4124
18181 msgid ""
18182 "Verbose messages are disabled unless the environment variable "
18183 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
18184 msgstr ""
18185
18186 #. type: textblock
18187 #: ../src/guestfs-actions.pod:6085
18188 msgid ""
18189 "Verbose messages are normally sent to C<stderr>, unless you register a "
18190 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
18191 msgstr ""
18192
18193 # type: =head2
18194 #. type: =head2
18195 #: ../src/guestfs-actions.pod:6093
18196 msgid "guestfs_setcon"
18197 msgstr ""
18198
18199 # type: verbatim
18200 #. type: verbatim
18201 #: ../src/guestfs-actions.pod:6095
18202 #, no-wrap
18203 msgid ""
18204 " int\n"
18205 " guestfs_setcon (guestfs_h *g,\n"
18206 "                 const char *context);\n"
18207 "\n"
18208 msgstr ""
18209
18210 # type: textblock
18211 #. type: textblock
18212 #: ../src/guestfs-actions.pod:6099 ../fish/guestfish-actions.pod:4135
18213 msgid ""
18214 "This sets the SELinux security context of the daemon to the string "
18215 "C<context>."
18216 msgstr ""
18217
18218 # type: textblock
18219 #. type: textblock
18220 #: ../src/guestfs-actions.pod:6102 ../fish/guestfish-actions.pod:4138
18221 msgid "See the documentation about SELINUX in L<guestfs(3)>."
18222 msgstr ""
18223
18224 # type: =head2
18225 #. type: =head2
18226 #: ../src/guestfs-actions.pod:6108
18227 msgid "guestfs_setxattr"
18228 msgstr ""
18229
18230 # type: verbatim
18231 #. type: verbatim
18232 #: ../src/guestfs-actions.pod:6110
18233 #, no-wrap
18234 msgid ""
18235 " int\n"
18236 " guestfs_setxattr (guestfs_h *g,\n"
18237 "                   const char *xattr,\n"
18238 "                   const char *val,\n"
18239 "                   int vallen,\n"
18240 "                   const char *path);\n"
18241 "\n"
18242 msgstr ""
18243
18244 # type: textblock
18245 #. type: textblock
18246 #: ../src/guestfs-actions.pod:6117 ../fish/guestfish-actions.pod:4144
18247 msgid ""
18248 "This call sets the extended attribute named C<xattr> of the file C<path> to "
18249 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
18250 msgstr ""
18251
18252 # type: textblock
18253 #. type: textblock
18254 #: ../src/guestfs-actions.pod:6121
18255 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
18256 msgstr ""
18257
18258 # type: =head2
18259 #. type: =head2
18260 #: ../src/guestfs-actions.pod:6127
18261 msgid "guestfs_sfdisk"
18262 msgstr ""
18263
18264 # type: verbatim
18265 #. type: verbatim
18266 #: ../src/guestfs-actions.pod:6129
18267 #, no-wrap
18268 msgid ""
18269 " int\n"
18270 " guestfs_sfdisk (guestfs_h *g,\n"
18271 "                 const char *device,\n"
18272 "                 int cyls,\n"
18273 "                 int heads,\n"
18274 "                 int sectors,\n"
18275 "                 char *const *lines);\n"
18276 "\n"
18277 msgstr ""
18278
18279 # type: textblock
18280 #. type: textblock
18281 #: ../src/guestfs-actions.pod:6137 ../fish/guestfish-actions.pod:4154
18282 msgid ""
18283 "This is a direct interface to the L<sfdisk(8)> program for creating "
18284 "partitions on block devices."
18285 msgstr ""
18286
18287 # type: textblock
18288 #. type: textblock
18289 #: ../src/guestfs-actions.pod:6140 ../fish/guestfish-actions.pod:4157
18290 msgid "C<device> should be a block device, for example C</dev/sda>."
18291 msgstr ""
18292
18293 # type: textblock
18294 #. type: textblock
18295 #: ../src/guestfs-actions.pod:6142 ../fish/guestfish-actions.pod:4159
18296 msgid ""
18297 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
18298 "sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
18299 "H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
18300 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
18301 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
18302 "the kernel) cannot work out the right geometry and you will need to tell it."
18303 msgstr ""
18304
18305 # type: textblock
18306 #. type: textblock
18307 #: ../src/guestfs-actions.pod:6150 ../fish/guestfish-actions.pod:4167
18308 msgid ""
18309 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
18310 "refer to the L<sfdisk(8)> manpage."
18311 msgstr ""
18312
18313 # type: textblock
18314 #. type: textblock
18315 #: ../src/guestfs-actions.pod:6153 ../fish/guestfish-actions.pod:4170
18316 msgid ""
18317 "To create a single partition occupying the whole disk, you would pass "
18318 "C<lines> as a single element list, when the single element being the string "
18319 "C<,> (comma)."
18320 msgstr ""
18321
18322 # type: textblock
18323 #. type: textblock
18324 #: ../src/guestfs-actions.pod:6157
18325 msgid ""
18326 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
18327 msgstr ""
18328
18329 #. type: textblock
18330 #: ../src/guestfs-actions.pod:6165 ../src/guestfs-actions.pod:6195
18331 #: ../src/guestfs-actions.pod:6228 ../fish/guestfish-actions.pod:4180
18332 #: ../fish/guestfish-actions.pod:4203 ../fish/guestfish-actions.pod:4225
18333 msgid ""
18334 "This function is deprecated.  In new code, use the C<part_add> call instead."
18335 msgstr ""
18336
18337 # type: =head2
18338 #. type: =head2
18339 #: ../src/guestfs-actions.pod:6174
18340 msgid "guestfs_sfdiskM"
18341 msgstr ""
18342
18343 # type: verbatim
18344 #. type: verbatim
18345 #: ../src/guestfs-actions.pod:6176
18346 #, no-wrap
18347 msgid ""
18348 " int\n"
18349 " guestfs_sfdiskM (guestfs_h *g,\n"
18350 "                  const char *device,\n"
18351 "                  char *const *lines);\n"
18352 "\n"
18353 msgstr ""
18354
18355 # type: textblock
18356 #. type: textblock
18357 #: ../src/guestfs-actions.pod:6181
18358 msgid ""
18359 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
18360 "partition sizes are specified in megabytes only (rounded to the nearest "
18361 "cylinder) and you don't need to specify the cyls, heads and sectors "
18362 "parameters which were rarely if ever used anyway."
18363 msgstr ""
18364
18365 # type: textblock
18366 #. type: textblock
18367 #: ../src/guestfs-actions.pod:6187
18368 msgid ""
18369 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
18370 "C<guestfs_part_disk>"
18371 msgstr ""
18372
18373 # type: =head2
18374 #. type: =head2
18375 #: ../src/guestfs-actions.pod:6204
18376 msgid "guestfs_sfdisk_N"
18377 msgstr ""
18378
18379 # type: verbatim
18380 #. type: verbatim
18381 #: ../src/guestfs-actions.pod:6206
18382 #, no-wrap
18383 msgid ""
18384 " int\n"
18385 " guestfs_sfdisk_N (guestfs_h *g,\n"
18386 "                   const char *device,\n"
18387 "                   int partnum,\n"
18388 "                   int cyls,\n"
18389 "                   int heads,\n"
18390 "                   int sectors,\n"
18391 "                   const char *line);\n"
18392 "\n"
18393 msgstr ""
18394
18395 # type: textblock
18396 #. type: textblock
18397 #: ../src/guestfs-actions.pod:6215 ../fish/guestfish-actions.pod:4214
18398 msgid ""
18399 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
18400 "(note: C<n> counts from 1)."
18401 msgstr ""
18402
18403 # type: textblock
18404 #. type: textblock
18405 #: ../src/guestfs-actions.pod:6218
18406 msgid ""
18407 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
18408 "for the cyls/heads/sectors parameters."
18409 msgstr ""
18410
18411 # type: textblock
18412 #. type: textblock
18413 #: ../src/guestfs-actions.pod:6221
18414 msgid "See also: C<guestfs_part_add>"
18415 msgstr ""
18416
18417 # type: =head2
18418 #. type: =head2
18419 #: ../src/guestfs-actions.pod:6237
18420 msgid "guestfs_sfdisk_disk_geometry"
18421 msgstr ""
18422
18423 # type: verbatim
18424 #. type: verbatim
18425 #: ../src/guestfs-actions.pod:6239
18426 #, no-wrap
18427 msgid ""
18428 " char *\n"
18429 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
18430 "                               const char *device);\n"
18431 "\n"
18432 msgstr ""
18433
18434 # type: textblock
18435 #. type: textblock
18436 #: ../src/guestfs-actions.pod:6243
18437 msgid ""
18438 "This displays the disk geometry of C<device> read from the partition table.  "
18439 "Especially in the case where the underlying block device has been resized, "
18440 "this can be different from the kernel's idea of the geometry (see "
18441 "C<guestfs_sfdisk_kernel_geometry>)."
18442 msgstr ""
18443
18444 # type: textblock
18445 #. type: textblock
18446 #: ../src/guestfs-actions.pod:6248 ../src/guestfs-actions.pod:6264
18447 #: ../fish/guestfish-actions.pod:4241 ../fish/guestfish-actions.pod:4250
18448 msgid "The result is in human-readable format, and not designed to be parsed."
18449 msgstr ""
18450
18451 # type: =head2
18452 #. type: =head2
18453 #: ../src/guestfs-actions.pod:6256
18454 msgid "guestfs_sfdisk_kernel_geometry"
18455 msgstr ""
18456
18457 # type: verbatim
18458 #. type: verbatim
18459 #: ../src/guestfs-actions.pod:6258
18460 #, no-wrap
18461 msgid ""
18462 " char *\n"
18463 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
18464 "                                 const char *device);\n"
18465 "\n"
18466 msgstr ""
18467
18468 # type: textblock
18469 #. type: textblock
18470 #: ../src/guestfs-actions.pod:6262 ../fish/guestfish-actions.pod:4248
18471 msgid "This displays the kernel's idea of the geometry of C<device>."
18472 msgstr ""
18473
18474 # type: =head2
18475 #. type: =head2
18476 #: ../src/guestfs-actions.pod:6272
18477 msgid "guestfs_sfdisk_l"
18478 msgstr ""
18479
18480 # type: verbatim
18481 #. type: verbatim
18482 #: ../src/guestfs-actions.pod:6274
18483 #, no-wrap
18484 msgid ""
18485 " char *\n"
18486 " guestfs_sfdisk_l (guestfs_h *g,\n"
18487 "                   const char *device);\n"
18488 "\n"
18489 msgstr ""
18490
18491 # type: textblock
18492 #. type: textblock
18493 #: ../src/guestfs-actions.pod:6278 ../fish/guestfish-actions.pod:4257
18494 msgid ""
18495 "This displays the partition table on C<device>, in the human-readable output "
18496 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
18497 msgstr ""
18498
18499 # type: textblock
18500 #. type: textblock
18501 #: ../src/guestfs-actions.pod:6282
18502 msgid "See also: C<guestfs_part_list>"
18503 msgstr ""
18504
18505 #. type: textblock
18506 #: ../src/guestfs-actions.pod:6287 ../fish/guestfish-actions.pod:4263
18507 msgid ""
18508 "This function is deprecated.  In new code, use the C<part_list> call instead."
18509 msgstr ""
18510
18511 # type: =head2
18512 #. type: =head2
18513 #: ../src/guestfs-actions.pod:6296
18514 msgid "guestfs_sh"
18515 msgstr ""
18516
18517 # type: verbatim
18518 #. type: verbatim
18519 #: ../src/guestfs-actions.pod:6298
18520 #, no-wrap
18521 msgid ""
18522 " char *\n"
18523 " guestfs_sh (guestfs_h *g,\n"
18524 "             const char *command);\n"
18525 "\n"
18526 msgstr ""
18527
18528 # type: textblock
18529 #. type: textblock
18530 #: ../src/guestfs-actions.pod:6302 ../fish/guestfish-actions.pod:4274
18531 msgid ""
18532 "This call runs a command from the guest filesystem via the guest's C</bin/"
18533 "sh>."
18534 msgstr ""
18535
18536 # type: textblock
18537 #. type: textblock
18538 #: ../src/guestfs-actions.pod:6305
18539 msgid "This is like C<guestfs_command>, but passes the command to:"
18540 msgstr ""
18541
18542 # type: verbatim
18543 #. type: verbatim
18544 #: ../src/guestfs-actions.pod:6307 ../fish/guestfish-actions.pod:4279
18545 #, no-wrap
18546 msgid ""
18547 " /bin/sh -c \"command\"\n"
18548 "\n"
18549 msgstr ""
18550
18551 # type: textblock
18552 #. type: textblock
18553 #: ../src/guestfs-actions.pod:6309 ../fish/guestfish-actions.pod:4281
18554 msgid ""
18555 "Depending on the guest's shell, this usually results in wildcards being "
18556 "expanded, shell expressions being interpolated and so on."
18557 msgstr ""
18558
18559 # type: textblock
18560 #. type: textblock
18561 #: ../src/guestfs-actions.pod:6313
18562 msgid "All the provisos about C<guestfs_command> apply to this call."
18563 msgstr ""
18564
18565 # type: =head2
18566 #. type: =head2
18567 #: ../src/guestfs-actions.pod:6320
18568 msgid "guestfs_sh_lines"
18569 msgstr ""
18570
18571 # type: verbatim
18572 #. type: verbatim
18573 #: ../src/guestfs-actions.pod:6322
18574 #, no-wrap
18575 msgid ""
18576 " char **\n"
18577 " guestfs_sh_lines (guestfs_h *g,\n"
18578 "                   const char *command);\n"
18579 "\n"
18580 msgstr ""
18581
18582 # type: textblock
18583 #. type: textblock
18584 #: ../src/guestfs-actions.pod:6326
18585 msgid ""
18586 "This is the same as C<guestfs_sh>, but splits the result into a list of "
18587 "lines."
18588 msgstr ""
18589
18590 # type: textblock
18591 #. type: textblock
18592 #: ../src/guestfs-actions.pod:6329
18593 msgid "See also: C<guestfs_command_lines>"
18594 msgstr ""
18595
18596 # type: =head2
18597 #. type: =head2
18598 #: ../src/guestfs-actions.pod:6337
18599 msgid "guestfs_sleep"
18600 msgstr ""
18601
18602 # type: verbatim
18603 #. type: verbatim
18604 #: ../src/guestfs-actions.pod:6339
18605 #, no-wrap
18606 msgid ""
18607 " int\n"
18608 " guestfs_sleep (guestfs_h *g,\n"
18609 "                int secs);\n"
18610 "\n"
18611 msgstr ""
18612
18613 # type: textblock
18614 #. type: textblock
18615 #: ../src/guestfs-actions.pod:6343 ../fish/guestfish-actions.pod:4300
18616 msgid "Sleep for C<secs> seconds."
18617 msgstr ""
18618
18619 # type: textblock
18620 #. type: textblock
18621 #: ../src/guestfs-actions.pod:6347
18622 msgid "(Added in 1.0.41)"
18623 msgstr ""
18624
18625 # type: =head2
18626 #. type: =head2
18627 #: ../src/guestfs-actions.pod:6349 ../src/guestfs-structs.pod:109
18628 msgid "guestfs_stat"
18629 msgstr ""
18630
18631 # type: verbatim
18632 #. type: verbatim
18633 #: ../src/guestfs-actions.pod:6351
18634 #, no-wrap
18635 msgid ""
18636 " struct guestfs_stat *\n"
18637 " guestfs_stat (guestfs_h *g,\n"
18638 "               const char *path);\n"
18639 "\n"
18640 msgstr ""
18641
18642 # type: textblock
18643 #. type: textblock
18644 #: ../src/guestfs-actions.pod:6357 ../fish/guestfish-actions.pod:4308
18645 msgid "This is the same as the C<stat(2)> system call."
18646 msgstr ""
18647
18648 # type: =head2
18649 #. type: =head2
18650 #: ../src/guestfs-actions.pod:6365 ../src/guestfs-structs.pod:135
18651 msgid "guestfs_statvfs"
18652 msgstr ""
18653
18654 # type: verbatim
18655 #. type: verbatim
18656 #: ../src/guestfs-actions.pod:6367
18657 #, no-wrap
18658 msgid ""
18659 " struct guestfs_statvfs *\n"
18660 " guestfs_statvfs (guestfs_h *g,\n"
18661 "                  const char *path);\n"
18662 "\n"
18663 msgstr ""
18664
18665 # type: textblock
18666 #. type: textblock
18667 #: ../src/guestfs-actions.pod:6371 ../fish/guestfish-actions.pod:4314
18668 msgid ""
18669 "Returns file system statistics for any mounted file system.  C<path> should "
18670 "be a file or directory in the mounted file system (typically it is the mount "
18671 "point itself, but it doesn't need to be)."
18672 msgstr ""
18673
18674 # type: textblock
18675 #. type: textblock
18676 #: ../src/guestfs-actions.pod:6375 ../fish/guestfish-actions.pod:4318
18677 msgid "This is the same as the C<statvfs(2)> system call."
18678 msgstr ""
18679
18680 # type: textblock
18681 #. type: textblock
18682 #: ../src/guestfs-actions.pod:6377
18683 msgid ""
18684 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
18685 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
18686 msgstr ""
18687
18688 # type: =head2
18689 #. type: =head2
18690 #: ../src/guestfs-actions.pod:6383
18691 msgid "guestfs_strings"
18692 msgstr ""
18693
18694 # type: verbatim
18695 #. type: verbatim
18696 #: ../src/guestfs-actions.pod:6385
18697 #, no-wrap
18698 msgid ""
18699 " char **\n"
18700 " guestfs_strings (guestfs_h *g,\n"
18701 "                  const char *path);\n"
18702 "\n"
18703 msgstr ""
18704
18705 # type: textblock
18706 #. type: textblock
18707 #: ../src/guestfs-actions.pod:6389 ../fish/guestfish-actions.pod:4324
18708 msgid ""
18709 "This runs the L<strings(1)> command on a file and returns the list of "
18710 "printable strings found."
18711 msgstr ""
18712
18713 # type: =head2
18714 #. type: =head2
18715 #: ../src/guestfs-actions.pod:6401
18716 msgid "guestfs_strings_e"
18717 msgstr ""
18718
18719 # type: verbatim
18720 #. type: verbatim
18721 #: ../src/guestfs-actions.pod:6403
18722 #, no-wrap
18723 msgid ""
18724 " char **\n"
18725 " guestfs_strings_e (guestfs_h *g,\n"
18726 "                    const char *encoding,\n"
18727 "                    const char *path);\n"
18728 "\n"
18729 msgstr ""
18730
18731 # type: textblock
18732 #. type: textblock
18733 #: ../src/guestfs-actions.pod:6408
18734 msgid ""
18735 "This is like the C<guestfs_strings> command, but allows you to specify the "
18736 "encoding of strings that are looked for in the source file C<path>."
18737 msgstr ""
18738
18739 # type: textblock
18740 #. type: textblock
18741 #: ../src/guestfs-actions.pod:6412 ../fish/guestfish-actions.pod:4338
18742 msgid "Allowed encodings are:"
18743 msgstr ""
18744
18745 # type: =item
18746 #. type: =item
18747 #: ../src/guestfs-actions.pod:6416 ../fish/guestfish-actions.pod:4342
18748 msgid "s"
18749 msgstr ""
18750
18751 # type: textblock
18752 #. type: textblock
18753 #: ../src/guestfs-actions.pod:6418
18754 msgid ""
18755 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
18756 "ISO-8859-X (this is what C<guestfs_strings> uses)."
18757 msgstr ""
18758
18759 # type: =item
18760 #. type: =item
18761 #: ../src/guestfs-actions.pod:6421 ../fish/guestfish-actions.pod:4347
18762 msgid "S"
18763 msgstr ""
18764
18765 # type: textblock
18766 #. type: textblock
18767 #: ../src/guestfs-actions.pod:6423 ../fish/guestfish-actions.pod:4349
18768 msgid "Single 8-bit-byte characters."
18769 msgstr ""
18770
18771 # type: =item
18772 #. type: =item
18773 #: ../src/guestfs-actions.pod:6425 ../fish/guestfish-actions.pod:4351
18774 msgid "b"
18775 msgstr ""
18776
18777 # type: textblock
18778 #. type: textblock
18779 #: ../src/guestfs-actions.pod:6427 ../fish/guestfish-actions.pod:4353
18780 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
18781 msgstr ""
18782
18783 # type: =item
18784 #. type: =item
18785 #: ../src/guestfs-actions.pod:6430 ../fish/guestfish-actions.pod:4356
18786 msgid "l (lower case letter L)"
18787 msgstr ""
18788
18789 # type: textblock
18790 #. type: textblock
18791 #: ../src/guestfs-actions.pod:6432 ../fish/guestfish-actions.pod:4358
18792 msgid ""
18793 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
18794 "examining binaries in Windows guests."
18795 msgstr ""
18796
18797 # type: =item
18798 #. type: =item
18799 #: ../src/guestfs-actions.pod:6435 ../fish/guestfish-actions.pod:4361
18800 msgid "B"
18801 msgstr ""
18802
18803 # type: textblock
18804 #. type: textblock
18805 #: ../src/guestfs-actions.pod:6437 ../fish/guestfish-actions.pod:4363
18806 msgid "32-bit big endian such as UCS-4BE."
18807 msgstr ""
18808
18809 # type: =item
18810 #. type: =item
18811 #: ../src/guestfs-actions.pod:6439 ../fish/guestfish-actions.pod:4365
18812 msgid "L"
18813 msgstr ""
18814
18815 # type: textblock
18816 #. type: textblock
18817 #: ../src/guestfs-actions.pod:6441 ../fish/guestfish-actions.pod:4367
18818 msgid "32-bit little endian such as UCS-4LE."
18819 msgstr ""
18820
18821 # type: textblock
18822 #. type: textblock
18823 #: ../src/guestfs-actions.pod:6445 ../fish/guestfish-actions.pod:4371
18824 msgid "The returned strings are transcoded to UTF-8."
18825 msgstr ""
18826
18827 # type: =head2
18828 #. type: =head2
18829 #: ../src/guestfs-actions.pod:6456
18830 msgid "guestfs_swapoff_device"
18831 msgstr ""
18832
18833 # type: verbatim
18834 #. type: verbatim
18835 #: ../src/guestfs-actions.pod:6458
18836 #, no-wrap
18837 msgid ""
18838 " int\n"
18839 " guestfs_swapoff_device (guestfs_h *g,\n"
18840 "                         const char *device);\n"
18841 "\n"
18842 msgstr ""
18843
18844 # type: textblock
18845 #. type: textblock
18846 #: ../src/guestfs-actions.pod:6462
18847 msgid ""
18848 "This command disables the libguestfs appliance swap device or partition "
18849 "named C<device>.  See C<guestfs_swapon_device>."
18850 msgstr ""
18851
18852 # type: =head2
18853 #. type: =head2
18854 #: ../src/guestfs-actions.pod:6470
18855 msgid "guestfs_swapoff_file"
18856 msgstr ""
18857
18858 # type: verbatim
18859 #. type: verbatim
18860 #: ../src/guestfs-actions.pod:6472
18861 #, no-wrap
18862 msgid ""
18863 " int\n"
18864 " guestfs_swapoff_file (guestfs_h *g,\n"
18865 "                       const char *file);\n"
18866 "\n"
18867 msgstr ""
18868
18869 # type: textblock
18870 #. type: textblock
18871 #: ../src/guestfs-actions.pod:6476 ../fish/guestfish-actions.pod:4388
18872 msgid "This command disables the libguestfs appliance swap on file."
18873 msgstr ""
18874
18875 # type: =head2
18876 #. type: =head2
18877 #: ../src/guestfs-actions.pod:6482
18878 msgid "guestfs_swapoff_label"
18879 msgstr ""
18880
18881 # type: verbatim
18882 #. type: verbatim
18883 #: ../src/guestfs-actions.pod:6484
18884 #, no-wrap
18885 msgid ""
18886 " int\n"
18887 " guestfs_swapoff_label (guestfs_h *g,\n"
18888 "                        const char *label);\n"
18889 "\n"
18890 msgstr ""
18891
18892 # type: textblock
18893 #. type: textblock
18894 #: ../src/guestfs-actions.pod:6488 ../fish/guestfish-actions.pod:4394
18895 msgid ""
18896 "This command disables the libguestfs appliance swap on labeled swap "
18897 "partition."
18898 msgstr ""
18899
18900 # type: =head2
18901 #. type: =head2
18902 #: ../src/guestfs-actions.pod:6495
18903 msgid "guestfs_swapoff_uuid"
18904 msgstr ""
18905
18906 # type: verbatim
18907 #. type: verbatim
18908 #: ../src/guestfs-actions.pod:6497
18909 #, no-wrap
18910 msgid ""
18911 " int\n"
18912 " guestfs_swapoff_uuid (guestfs_h *g,\n"
18913 "                       const char *uuid);\n"
18914 "\n"
18915 msgstr ""
18916
18917 # type: textblock
18918 #. type: textblock
18919 #: ../src/guestfs-actions.pod:6501 ../fish/guestfish-actions.pod:4401
18920 msgid ""
18921 "This command disables the libguestfs appliance swap partition with the given "
18922 "UUID."
18923 msgstr ""
18924
18925 # type: =head2
18926 #. type: =head2
18927 #: ../src/guestfs-actions.pod:6508
18928 msgid "guestfs_swapon_device"
18929 msgstr ""
18930
18931 # type: verbatim
18932 #. type: verbatim
18933 #: ../src/guestfs-actions.pod:6510
18934 #, no-wrap
18935 msgid ""
18936 " int\n"
18937 " guestfs_swapon_device (guestfs_h *g,\n"
18938 "                        const char *device);\n"
18939 "\n"
18940 msgstr ""
18941
18942 # type: textblock
18943 #. type: textblock
18944 #: ../src/guestfs-actions.pod:6514
18945 msgid ""
18946 "This command enables the libguestfs appliance to use the swap device or "
18947 "partition named C<device>.  The increased memory is made available for all "
18948 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
18949 msgstr ""
18950
18951 # type: textblock
18952 #. type: textblock
18953 #: ../src/guestfs-actions.pod:6519 ../fish/guestfish-actions.pod:4413
18954 msgid ""
18955 "Note that you should not swap to existing guest swap partitions unless you "
18956 "know what you are doing.  They may contain hibernation information, or other "
18957 "information that the guest doesn't want you to trash.  You also risk leaking "
18958 "information about the host to the guest this way.  Instead, attach a new "
18959 "host device to the guest and swap on that."
18960 msgstr ""
18961
18962 # type: =head2
18963 #. type: =head2
18964 #: ../src/guestfs-actions.pod:6530
18965 msgid "guestfs_swapon_file"
18966 msgstr ""
18967
18968 # type: verbatim
18969 #. type: verbatim
18970 #: ../src/guestfs-actions.pod:6532
18971 #, no-wrap
18972 msgid ""
18973 " int\n"
18974 " guestfs_swapon_file (guestfs_h *g,\n"
18975 "                      const char *file);\n"
18976 "\n"
18977 msgstr ""
18978
18979 # type: textblock
18980 #. type: textblock
18981 #: ../src/guestfs-actions.pod:6536
18982 msgid ""
18983 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
18984 "notes."
18985 msgstr ""
18986
18987 # type: =head2
18988 #. type: =head2
18989 #: ../src/guestfs-actions.pod:6543
18990 msgid "guestfs_swapon_label"
18991 msgstr ""
18992
18993 # type: verbatim
18994 #. type: verbatim
18995 #: ../src/guestfs-actions.pod:6545
18996 #, no-wrap
18997 msgid ""
18998 " int\n"
18999 " guestfs_swapon_label (guestfs_h *g,\n"
19000 "                       const char *label);\n"
19001 "\n"
19002 msgstr ""
19003
19004 # type: textblock
19005 #. type: textblock
19006 #: ../src/guestfs-actions.pod:6549
19007 msgid ""
19008 "This command enables swap to a labeled swap partition.  See "
19009 "C<guestfs_swapon_device> for other notes."
19010 msgstr ""
19011
19012 # type: =head2
19013 #. type: =head2
19014 #: ../src/guestfs-actions.pod:6556
19015 msgid "guestfs_swapon_uuid"
19016 msgstr ""
19017
19018 # type: verbatim
19019 #. type: verbatim
19020 #: ../src/guestfs-actions.pod:6558
19021 #, no-wrap
19022 msgid ""
19023 " int\n"
19024 " guestfs_swapon_uuid (guestfs_h *g,\n"
19025 "                      const char *uuid);\n"
19026 "\n"
19027 msgstr ""
19028
19029 # type: textblock
19030 #. type: textblock
19031 #: ../src/guestfs-actions.pod:6562
19032 msgid ""
19033 "This command enables swap to a swap partition with the given UUID.  See "
19034 "C<guestfs_swapon_device> for other notes."
19035 msgstr ""
19036
19037 # type: =head2
19038 #. type: =head2
19039 #: ../src/guestfs-actions.pod:6569
19040 msgid "guestfs_sync"
19041 msgstr ""
19042
19043 # type: verbatim
19044 #. type: verbatim
19045 #: ../src/guestfs-actions.pod:6571
19046 #, no-wrap
19047 msgid ""
19048 " int\n"
19049 " guestfs_sync (guestfs_h *g);\n"
19050 "\n"
19051 msgstr ""
19052
19053 # type: textblock
19054 #. type: textblock
19055 #: ../src/guestfs-actions.pod:6574 ../fish/guestfish-actions.pod:4445
19056 msgid ""
19057 "This syncs the disk, so that any writes are flushed through to the "
19058 "underlying disk image."
19059 msgstr ""
19060
19061 # type: textblock
19062 #. type: textblock
19063 #: ../src/guestfs-actions.pod:6577 ../fish/guestfish-actions.pod:4448
19064 msgid ""
19065 "You should always call this if you have modified a disk image, before "
19066 "closing the handle."
19067 msgstr ""
19068
19069 # type: =head2
19070 #. type: =head2
19071 #: ../src/guestfs-actions.pod:6584
19072 msgid "guestfs_tail"
19073 msgstr ""
19074
19075 # type: verbatim
19076 #. type: verbatim
19077 #: ../src/guestfs-actions.pod:6586
19078 #, no-wrap
19079 msgid ""
19080 " char **\n"
19081 " guestfs_tail (guestfs_h *g,\n"
19082 "               const char *path);\n"
19083 "\n"
19084 msgstr ""
19085
19086 # type: textblock
19087 #. type: textblock
19088 #: ../src/guestfs-actions.pod:6590 ../fish/guestfish-actions.pod:4455
19089 msgid ""
19090 "This command returns up to the last 10 lines of a file as a list of strings."
19091 msgstr ""
19092
19093 # type: =head2
19094 #. type: =head2
19095 #: ../src/guestfs-actions.pod:6602
19096 msgid "guestfs_tail_n"
19097 msgstr ""
19098
19099 # type: verbatim
19100 #. type: verbatim
19101 #: ../src/guestfs-actions.pod:6604
19102 #, no-wrap
19103 msgid ""
19104 " char **\n"
19105 " guestfs_tail_n (guestfs_h *g,\n"
19106 "                 int nrlines,\n"
19107 "                 const char *path);\n"
19108 "\n"
19109 msgstr ""
19110
19111 # type: textblock
19112 #. type: textblock
19113 #: ../src/guestfs-actions.pod:6609 ../fish/guestfish-actions.pod:4465
19114 msgid ""
19115 "If the parameter C<nrlines> is a positive number, this returns the last "
19116 "C<nrlines> lines of the file C<path>."
19117 msgstr ""
19118
19119 # type: textblock
19120 #. type: textblock
19121 #: ../src/guestfs-actions.pod:6612 ../fish/guestfish-actions.pod:4468
19122 msgid ""
19123 "If the parameter C<nrlines> is a negative number, this returns lines from "
19124 "the file C<path>, starting with the C<-nrlines>th line."
19125 msgstr ""
19126
19127 # type: =head2
19128 #. type: =head2
19129 #: ../src/guestfs-actions.pod:6626
19130 msgid "guestfs_tar_in"
19131 msgstr ""
19132
19133 # type: verbatim
19134 #. type: verbatim
19135 #: ../src/guestfs-actions.pod:6628
19136 #, no-wrap
19137 msgid ""
19138 " int\n"
19139 " guestfs_tar_in (guestfs_h *g,\n"
19140 "                 const char *tarfile,\n"
19141 "                 const char *directory);\n"
19142 "\n"
19143 msgstr ""
19144
19145 # type: textblock
19146 #. type: textblock
19147 #: ../src/guestfs-actions.pod:6633 ../fish/guestfish-actions.pod:4480
19148 msgid ""
19149 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
19150 "tar file) into C<directory>."
19151 msgstr ""
19152
19153 # type: textblock
19154 #. type: textblock
19155 #: ../src/guestfs-actions.pod:6636
19156 msgid ""
19157 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
19158 msgstr ""
19159
19160 # type: textblock
19161 #. type: textblock
19162 #: ../src/guestfs-actions.pod:6641 ../src/guestfs-actions.pod:6658
19163 #: ../src/guestfs-actions.pod:6674 ../src/guestfs-actions.pod:6690
19164 msgid "(Added in 1.0.3)"
19165 msgstr ""
19166
19167 # type: =head2
19168 #. type: =head2
19169 #: ../src/guestfs-actions.pod:6643
19170 msgid "guestfs_tar_out"
19171 msgstr ""
19172
19173 # type: verbatim
19174 #. type: verbatim
19175 #: ../src/guestfs-actions.pod:6645
19176 #, no-wrap
19177 msgid ""
19178 " int\n"
19179 " guestfs_tar_out (guestfs_h *g,\n"
19180 "                  const char *directory,\n"
19181 "                  const char *tarfile);\n"
19182 "\n"
19183 msgstr ""
19184
19185 # type: textblock
19186 #. type: textblock
19187 #: ../src/guestfs-actions.pod:6650 ../fish/guestfish-actions.pod:4492
19188 msgid ""
19189 "This command packs the contents of C<directory> and downloads it to local "
19190 "file C<tarfile>."
19191 msgstr ""
19192
19193 # type: textblock
19194 #. type: textblock
19195 #: ../src/guestfs-actions.pod:6653
19196 msgid ""
19197 "To download a compressed tarball, use C<guestfs_tgz_out> or "
19198 "C<guestfs_txz_out>."
19199 msgstr ""
19200
19201 # type: =head2
19202 #. type: =head2
19203 #: ../src/guestfs-actions.pod:6660
19204 msgid "guestfs_tgz_in"
19205 msgstr ""
19206
19207 # type: verbatim
19208 #. type: verbatim
19209 #: ../src/guestfs-actions.pod:6662
19210 #, no-wrap
19211 msgid ""
19212 " int\n"
19213 " guestfs_tgz_in (guestfs_h *g,\n"
19214 "                 const char *tarball,\n"
19215 "                 const char *directory);\n"
19216 "\n"
19217 msgstr ""
19218
19219 # type: textblock
19220 #. type: textblock
19221 #: ../src/guestfs-actions.pod:6667 ../fish/guestfish-actions.pod:4504
19222 msgid ""
19223 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
19224 "tar file) into C<directory>."
19225 msgstr ""
19226
19227 # type: textblock
19228 #. type: textblock
19229 #: ../src/guestfs-actions.pod:6670
19230 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
19231 msgstr ""
19232
19233 # type: =head2
19234 #. type: =head2
19235 #: ../src/guestfs-actions.pod:6676
19236 msgid "guestfs_tgz_out"
19237 msgstr ""
19238
19239 # type: verbatim
19240 #. type: verbatim
19241 #: ../src/guestfs-actions.pod:6678
19242 #, no-wrap
19243 msgid ""
19244 " int\n"
19245 " guestfs_tgz_out (guestfs_h *g,\n"
19246 "                  const char *directory,\n"
19247 "                  const char *tarball);\n"
19248 "\n"
19249 msgstr ""
19250
19251 # type: textblock
19252 #. type: textblock
19253 #: ../src/guestfs-actions.pod:6683 ../fish/guestfish-actions.pod:4515
19254 msgid ""
19255 "This command packs the contents of C<directory> and downloads it to local "
19256 "file C<tarball>."
19257 msgstr ""
19258
19259 # type: textblock
19260 #. type: textblock
19261 #: ../src/guestfs-actions.pod:6686
19262 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
19263 msgstr ""
19264
19265 # type: =head2
19266 #. type: =head2
19267 #: ../src/guestfs-actions.pod:6692
19268 msgid "guestfs_touch"
19269 msgstr ""
19270
19271 # type: verbatim
19272 #. type: verbatim
19273 #: ../src/guestfs-actions.pod:6694
19274 #, no-wrap
19275 msgid ""
19276 " int\n"
19277 " guestfs_touch (guestfs_h *g,\n"
19278 "                const char *path);\n"
19279 "\n"
19280 msgstr ""
19281
19282 # type: textblock
19283 #. type: textblock
19284 #: ../src/guestfs-actions.pod:6698 ../fish/guestfish-actions.pod:4526
19285 msgid ""
19286 "Touch acts like the L<touch(1)> command.  It can be used to update the "
19287 "timestamps on a file, or, if the file does not exist, to create a new zero-"
19288 "length file."
19289 msgstr ""
19290
19291 # type: textblock
19292 #. type: textblock
19293 #: ../src/guestfs-actions.pod:6702 ../fish/guestfish-actions.pod:4530
19294 msgid ""
19295 "This command only works on regular files, and will fail on other file types "
19296 "such as directories, symbolic links, block special etc."
19297 msgstr ""
19298
19299 # type: =head2
19300 #. type: =head2
19301 #: ../src/guestfs-actions.pod:6709
19302 msgid "guestfs_truncate"
19303 msgstr ""
19304
19305 # type: verbatim
19306 #. type: verbatim
19307 #: ../src/guestfs-actions.pod:6711
19308 #, no-wrap
19309 msgid ""
19310 " int\n"
19311 " guestfs_truncate (guestfs_h *g,\n"
19312 "                   const char *path);\n"
19313 "\n"
19314 msgstr ""
19315
19316 # type: textblock
19317 #. type: textblock
19318 #: ../src/guestfs-actions.pod:6715 ../fish/guestfish-actions.pod:4537
19319 msgid ""
19320 "This command truncates C<path> to a zero-length file.  The file must exist "
19321 "already."
19322 msgstr ""
19323
19324 # type: =head2
19325 #. type: =head2
19326 #: ../src/guestfs-actions.pod:6722
19327 msgid "guestfs_truncate_size"
19328 msgstr ""
19329
19330 # type: verbatim
19331 #. type: verbatim
19332 #: ../src/guestfs-actions.pod:6724
19333 #, no-wrap
19334 msgid ""
19335 " int\n"
19336 " guestfs_truncate_size (guestfs_h *g,\n"
19337 "                        const char *path,\n"
19338 "                        int64_t size);\n"
19339 "\n"
19340 msgstr ""
19341
19342 # type: textblock
19343 #. type: textblock
19344 #: ../src/guestfs-actions.pod:6729 ../fish/guestfish-actions.pod:4544
19345 msgid ""
19346 "This command truncates C<path> to size C<size> bytes.  The file must exist "
19347 "already."
19348 msgstr ""
19349
19350 # type: textblock
19351 #. type: textblock
19352 #: ../src/guestfs-actions.pod:6732
19353 msgid ""
19354 "If the current file size is less than C<size> then the file is extended to "
19355 "the required size with zero bytes.  This creates a sparse file (ie. disk "
19356 "blocks are not allocated for the file until you write to it).  To create a "
19357 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
19358 msgstr ""
19359
19360 # type: =head2
19361 #. type: =head2
19362 #: ../src/guestfs-actions.pod:6742
19363 msgid "guestfs_tune2fs_l"
19364 msgstr ""
19365
19366 # type: verbatim
19367 #. type: verbatim
19368 #: ../src/guestfs-actions.pod:6744
19369 #, no-wrap
19370 msgid ""
19371 " char **\n"
19372 " guestfs_tune2fs_l (guestfs_h *g,\n"
19373 "                    const char *device);\n"
19374 "\n"
19375 msgstr ""
19376
19377 # type: textblock
19378 #. type: textblock
19379 #: ../src/guestfs-actions.pod:6748 ../fish/guestfish-actions.pod:4557
19380 msgid ""
19381 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
19382 "C<device>."
19383 msgstr ""
19384
19385 # type: textblock
19386 #. type: textblock
19387 #: ../src/guestfs-actions.pod:6751 ../fish/guestfish-actions.pod:4560
19388 msgid ""
19389 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
19390 "for more details.  The list of fields returned isn't clearly defined, and "
19391 "depends on both the version of C<tune2fs> that libguestfs was built against, "
19392 "and the filesystem itself."
19393 msgstr ""
19394
19395 # type: =head2
19396 #. type: =head2
19397 #: ../src/guestfs-actions.pod:6764
19398 msgid "guestfs_txz_in"
19399 msgstr ""
19400
19401 # type: verbatim
19402 #. type: verbatim
19403 #: ../src/guestfs-actions.pod:6766
19404 #, no-wrap
19405 msgid ""
19406 " int\n"
19407 " guestfs_txz_in (guestfs_h *g,\n"
19408 "                 const char *tarball,\n"
19409 "                 const char *directory);\n"
19410 "\n"
19411 msgstr ""
19412
19413 # type: textblock
19414 #. type: textblock
19415 #: ../src/guestfs-actions.pod:6771 ../fish/guestfish-actions.pod:4569
19416 msgid ""
19417 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
19418 "tar file) into C<directory>."
19419 msgstr ""
19420
19421 # type: =head2
19422 #. type: =head2
19423 #: ../src/guestfs-actions.pod:6778
19424 msgid "guestfs_txz_out"
19425 msgstr ""
19426
19427 # type: verbatim
19428 #. type: verbatim
19429 #: ../src/guestfs-actions.pod:6780
19430 #, no-wrap
19431 msgid ""
19432 " int\n"
19433 " guestfs_txz_out (guestfs_h *g,\n"
19434 "                  const char *directory,\n"
19435 "                  const char *tarball);\n"
19436 "\n"
19437 msgstr ""
19438
19439 # type: textblock
19440 #. type: textblock
19441 #: ../src/guestfs-actions.pod:6785 ../fish/guestfish-actions.pod:4578
19442 msgid ""
19443 "This command packs the contents of C<directory> and downloads it to local "
19444 "file C<tarball> (as an xz compressed tar archive)."
19445 msgstr ""
19446
19447 # type: =head2
19448 #. type: =head2
19449 #: ../src/guestfs-actions.pod:6792
19450 msgid "guestfs_umask"
19451 msgstr ""
19452
19453 # type: verbatim
19454 #. type: verbatim
19455 #: ../src/guestfs-actions.pod:6794
19456 #, no-wrap
19457 msgid ""
19458 " int\n"
19459 " guestfs_umask (guestfs_h *g,\n"
19460 "                int mask);\n"
19461 "\n"
19462 msgstr ""
19463
19464 # type: textblock
19465 #. type: textblock
19466 #: ../src/guestfs-actions.pod:6798 ../fish/guestfish-actions.pod:4587
19467 msgid ""
19468 "This function sets the mask used for creating new files and device nodes to "
19469 "C<mask & 0777>."
19470 msgstr ""
19471
19472 # type: textblock
19473 #. type: textblock
19474 #: ../src/guestfs-actions.pod:6801 ../fish/guestfish-actions.pod:4590
19475 msgid ""
19476 "Typical umask values would be C<022> which creates new files with "
19477 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
19478 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
19479 msgstr ""
19480
19481 # type: textblock
19482 #. type: textblock
19483 #: ../src/guestfs-actions.pod:6806 ../fish/guestfish-actions.pod:4595
19484 msgid ""
19485 "The default umask is C<022>.  This is important because it means that "
19486 "directories and device nodes will be created with C<0644> or C<0755> mode "
19487 "even if you specify C<0777>."
19488 msgstr ""
19489
19490 # type: textblock
19491 #. type: textblock
19492 #: ../src/guestfs-actions.pod:6810
19493 msgid ""
19494 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
19495 "C<guestfs_mkdir>."
19496 msgstr ""
19497
19498 # type: textblock
19499 #. type: textblock
19500 #: ../src/guestfs-actions.pod:6813 ../fish/guestfish-actions.pod:4602
19501 msgid "This call returns the previous umask."
19502 msgstr ""
19503
19504 # type: =head2
19505 #. type: =head2
19506 #: ../src/guestfs-actions.pod:6819
19507 msgid "guestfs_umount"
19508 msgstr ""
19509
19510 # type: verbatim
19511 #. type: verbatim
19512 #: ../src/guestfs-actions.pod:6821
19513 #, no-wrap
19514 msgid ""
19515 " int\n"
19516 " guestfs_umount (guestfs_h *g,\n"
19517 "                 const char *pathordevice);\n"
19518 "\n"
19519 msgstr ""
19520
19521 # type: textblock
19522 #. type: textblock
19523 #: ../src/guestfs-actions.pod:6825 ../fish/guestfish-actions.pod:4610
19524 msgid ""
19525 "This unmounts the given filesystem.  The filesystem may be specified either "
19526 "by its mountpoint (path) or the device which contains the filesystem."
19527 msgstr ""
19528
19529 # type: =head2
19530 #. type: =head2
19531 #: ../src/guestfs-actions.pod:6833
19532 msgid "guestfs_umount_all"
19533 msgstr ""
19534
19535 # type: verbatim
19536 #. type: verbatim
19537 #: ../src/guestfs-actions.pod:6835
19538 #, no-wrap
19539 msgid ""
19540 " int\n"
19541 " guestfs_umount_all (guestfs_h *g);\n"
19542 "\n"
19543 msgstr ""
19544
19545 # type: textblock
19546 #. type: textblock
19547 #: ../src/guestfs-actions.pod:6838 ../fish/guestfish-actions.pod:4620
19548 msgid "This unmounts all mounted filesystems."
19549 msgstr ""
19550
19551 # type: textblock
19552 #. type: textblock
19553 #: ../src/guestfs-actions.pod:6840 ../fish/guestfish-actions.pod:4622
19554 msgid "Some internal mounts are not unmounted by this call."
19555 msgstr ""
19556
19557 # type: =head2
19558 #. type: =head2
19559 #: ../src/guestfs-actions.pod:6846
19560 msgid "guestfs_upload"
19561 msgstr ""
19562
19563 # type: verbatim
19564 #. type: verbatim
19565 #: ../src/guestfs-actions.pod:6848
19566 #, no-wrap
19567 msgid ""
19568 " int\n"
19569 " guestfs_upload (guestfs_h *g,\n"
19570 "                 const char *filename,\n"
19571 "                 const char *remotefilename);\n"
19572 "\n"
19573 msgstr ""
19574
19575 # type: textblock
19576 #. type: textblock
19577 #: ../src/guestfs-actions.pod:6853 ../src/guestfs-actions.pod:6877
19578 #: ../fish/guestfish-actions.pod:4628 ../fish/guestfish-actions.pod:4641
19579 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
19580 msgstr ""
19581
19582 # type: textblock
19583 #. type: textblock
19584 #: ../src/guestfs-actions.pod:6858
19585 msgid "See also C<guestfs_download>."
19586 msgstr ""
19587
19588 # type: =head2
19589 #. type: =head2
19590 #: ../src/guestfs-actions.pod:6869
19591 msgid "guestfs_upload_offset"
19592 msgstr ""
19593
19594 # type: verbatim
19595 #. type: verbatim
19596 #: ../src/guestfs-actions.pod:6871
19597 #, no-wrap
19598 msgid ""
19599 " int\n"
19600 " guestfs_upload_offset (guestfs_h *g,\n"
19601 "                        const char *filename,\n"
19602 "                        const char *remotefilename,\n"
19603 "                        int64_t offset);\n"
19604 "\n"
19605 msgstr ""
19606
19607 # type: textblock
19608 #. type: textblock
19609 #: ../src/guestfs-actions.pod:6880 ../fish/guestfish-actions.pod:4644
19610 msgid ""
19611 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
19612 "The intention is to overwrite parts of existing files or devices, although "
19613 "if a non-existant file is specified then it is created with a \"hole\" "
19614 "before C<offset>.  The size of the data written is implicit in the size of "
19615 "the source C<filename>."
19616 msgstr ""
19617
19618 # type: textblock
19619 #. type: textblock
19620 #: ../src/guestfs-actions.pod:6887
19621 msgid ""
19622 "Note that there is no limit on the amount of data that can be uploaded with "
19623 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
19624 "full amount unless an error occurs."
19625 msgstr ""
19626
19627 # type: textblock
19628 #. type: textblock
19629 #: ../src/guestfs-actions.pod:6892
19630 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
19631 msgstr ""
19632
19633 # type: =head2
19634 #. type: =head2
19635 #: ../src/guestfs-actions.pod:6903
19636 msgid "guestfs_utimens"
19637 msgstr ""
19638
19639 # type: verbatim
19640 #. type: verbatim
19641 #: ../src/guestfs-actions.pod:6905
19642 #, no-wrap
19643 msgid ""
19644 " int\n"
19645 " guestfs_utimens (guestfs_h *g,\n"
19646 "                  const char *path,\n"
19647 "                  int64_t atsecs,\n"
19648 "                  int64_t atnsecs,\n"
19649 "                  int64_t mtsecs,\n"
19650 "                  int64_t mtnsecs);\n"
19651 "\n"
19652 msgstr ""
19653
19654 # type: textblock
19655 #. type: textblock
19656 #: ../src/guestfs-actions.pod:6913 ../fish/guestfish-actions.pod:4664
19657 msgid "This command sets the timestamps of a file with nanosecond precision."
19658 msgstr ""
19659
19660 # type: textblock
19661 #. type: textblock
19662 #: ../src/guestfs-actions.pod:6916 ../fish/guestfish-actions.pod:4667
19663 msgid ""
19664 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
19665 "from the epoch."
19666 msgstr ""
19667
19668 # type: textblock
19669 #. type: textblock
19670 #: ../src/guestfs-actions.pod:6919 ../fish/guestfish-actions.pod:4670
19671 msgid ""
19672 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
19673 "nanoseconds from the epoch."
19674 msgstr ""
19675
19676 # type: textblock
19677 #. type: textblock
19678 #: ../src/guestfs-actions.pod:6922 ../fish/guestfish-actions.pod:4673
19679 msgid ""
19680 "If the C<*nsecs> field contains the special value C<-1> then the "
19681 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
19682 "ignored in this case)."
19683 msgstr ""
19684
19685 # type: textblock
19686 #. type: textblock
19687 #: ../src/guestfs-actions.pod:6926 ../fish/guestfish-actions.pod:4677
19688 msgid ""
19689 "If the C<*nsecs> field contains the special value C<-2> then the "
19690 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
19691 "in this case)."
19692 msgstr ""
19693
19694 # type: =head2
19695 #. type: =head2
19696 #: ../src/guestfs-actions.pod:6934 ../src/guestfs-structs.pod:175
19697 msgid "guestfs_version"
19698 msgstr ""
19699
19700 # type: verbatim
19701 #. type: verbatim
19702 #: ../src/guestfs-actions.pod:6936
19703 #, no-wrap
19704 msgid ""
19705 " struct guestfs_version *\n"
19706 " guestfs_version (guestfs_h *g);\n"
19707 "\n"
19708 msgstr ""
19709
19710 # type: textblock
19711 #. type: textblock
19712 #: ../src/guestfs-actions.pod:6939 ../fish/guestfish-actions.pod:4685
19713 msgid ""
19714 "Return the libguestfs version number that the program is linked against."
19715 msgstr ""
19716
19717 # type: textblock
19718 #. type: textblock
19719 #: ../src/guestfs-actions.pod:6942 ../fish/guestfish-actions.pod:4688
19720 msgid ""
19721 "Note that because of dynamic linking this is not necessarily the version of "
19722 "libguestfs that you compiled against.  You can compile the program, and then "
19723 "at runtime dynamically link against a completely different C<libguestfs.so> "
19724 "library."
19725 msgstr ""
19726
19727 # type: textblock
19728 #. type: textblock
19729 #: ../src/guestfs-actions.pod:6947 ../fish/guestfish-actions.pod:4693
19730 msgid ""
19731 "This call was added in version C<1.0.58>.  In previous versions of "
19732 "libguestfs there was no way to get the version number.  From C code you can "
19733 "use dynamic linker functions to find out if this symbol exists (if it "
19734 "doesn't, then it's an earlier version)."
19735 msgstr ""
19736
19737 # type: textblock
19738 #. type: textblock
19739 #: ../src/guestfs-actions.pod:6953 ../fish/guestfish-actions.pod:4699
19740 msgid ""
19741 "The call returns a structure with four elements.  The first three (C<major>, "
19742 "C<minor> and C<release>) are numbers and correspond to the usual version "
19743 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
19744 "but may be used for distro-specific information."
19745 msgstr ""
19746
19747 # type: textblock
19748 #. type: textblock
19749 #: ../src/guestfs-actions.pod:6959 ../fish/guestfish-actions.pod:4705
19750 msgid ""
19751 "To construct the original version string: C<$major.$minor.$release$extra>"
19752 msgstr ""
19753
19754 # type: textblock
19755 #. type: textblock
19756 #: ../src/guestfs-actions.pod:6962 ../fish/guestfish-actions.pod:4708
19757 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
19758 msgstr ""
19759
19760 # type: textblock
19761 #. type: textblock
19762 #: ../src/guestfs-actions.pod:6964
19763 msgid ""
19764 "I<Note:> Don't use this call to test for availability of features.  In "
19765 "enterprise distributions we backport features from later versions into "
19766 "earlier versions, making this an unreliable way to test for features.  Use "
19767 "C<guestfs_available> instead."
19768 msgstr ""
19769
19770 # type: textblock
19771 #. type: textblock
19772 #: ../src/guestfs-actions.pod:6970
19773 msgid ""
19774 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
19775 "error.  I<The caller must call C<guestfs_free_version> after use>."
19776 msgstr ""
19777
19778 # type: textblock
19779 #. type: textblock
19780 #: ../src/guestfs-actions.pod:6974
19781 msgid "(Added in 1.0.58)"
19782 msgstr ""
19783
19784 # type: =head2
19785 #. type: =head2
19786 #: ../src/guestfs-actions.pod:6976
19787 msgid "guestfs_vfs_label"
19788 msgstr ""
19789
19790 # type: verbatim
19791 #. type: verbatim
19792 #: ../src/guestfs-actions.pod:6978
19793 #, no-wrap
19794 msgid ""
19795 " char *\n"
19796 " guestfs_vfs_label (guestfs_h *g,\n"
19797 "                    const char *device);\n"
19798 "\n"
19799 msgstr ""
19800
19801 # type: textblock
19802 #. type: textblock
19803 #: ../src/guestfs-actions.pod:6982 ../fish/guestfish-actions.pod:4720
19804 msgid "This returns the filesystem label of the filesystem on C<device>."
19805 msgstr ""
19806
19807 # type: textblock
19808 #. type: textblock
19809 #: ../src/guestfs-actions.pod:6985 ../fish/guestfish-actions.pod:4723
19810 msgid "If the filesystem is unlabeled, this returns the empty string."
19811 msgstr ""
19812
19813 # type: textblock
19814 #. type: textblock
19815 #: ../src/guestfs-actions.pod:6987
19816 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
19817 msgstr ""
19818
19819 # type: textblock
19820 #. type: textblock
19821 #: ../src/guestfs-actions.pod:6992 ../src/guestfs-actions.pod:7029
19822 msgid "(Added in 1.3.18)"
19823 msgstr ""
19824
19825 # type: =head2
19826 #. type: =head2
19827 #: ../src/guestfs-actions.pod:6994
19828 msgid "guestfs_vfs_type"
19829 msgstr ""
19830
19831 # type: verbatim
19832 #. type: verbatim
19833 #: ../src/guestfs-actions.pod:6996
19834 #, no-wrap
19835 msgid ""
19836 " char *\n"
19837 " guestfs_vfs_type (guestfs_h *g,\n"
19838 "                   const char *device);\n"
19839 "\n"
19840 msgstr ""
19841
19842 # type: textblock
19843 #. type: textblock
19844 #: ../src/guestfs-actions.pod:7000 ../fish/guestfish-actions.pod:4731
19845 msgid ""
19846 "This command gets the filesystem type corresponding to the filesystem on "
19847 "C<device>."
19848 msgstr ""
19849
19850 # type: textblock
19851 #. type: textblock
19852 #: ../src/guestfs-actions.pod:7003 ../fish/guestfish-actions.pod:4734
19853 msgid ""
19854 "For most filesystems, the result is the name of the Linux VFS module which "
19855 "would be used to mount this filesystem if you mounted it without specifying "
19856 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
19857 msgstr ""
19858
19859 # type: =head2
19860 #. type: =head2
19861 #: ../src/guestfs-actions.pod:7013
19862 msgid "guestfs_vfs_uuid"
19863 msgstr ""
19864
19865 # type: verbatim
19866 #. type: verbatim
19867 #: ../src/guestfs-actions.pod:7015
19868 #, no-wrap
19869 msgid ""
19870 " char *\n"
19871 " guestfs_vfs_uuid (guestfs_h *g,\n"
19872 "                   const char *device);\n"
19873 "\n"
19874 msgstr ""
19875
19876 # type: textblock
19877 #. type: textblock
19878 #: ../src/guestfs-actions.pod:7019 ../fish/guestfish-actions.pod:4743
19879 msgid "This returns the filesystem UUID of the filesystem on C<device>."
19880 msgstr ""
19881
19882 # type: textblock
19883 #. type: textblock
19884 #: ../src/guestfs-actions.pod:7022 ../fish/guestfish-actions.pod:4746
19885 msgid "If the filesystem does not have a UUID, this returns the empty string."
19886 msgstr ""
19887
19888 # type: textblock
19889 #. type: textblock
19890 #: ../src/guestfs-actions.pod:7024
19891 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
19892 msgstr ""
19893
19894 # type: =head2
19895 #. type: =head2
19896 #: ../src/guestfs-actions.pod:7031
19897 msgid "guestfs_vg_activate"
19898 msgstr ""
19899
19900 # type: verbatim
19901 #. type: verbatim
19902 #: ../src/guestfs-actions.pod:7033
19903 #, no-wrap
19904 msgid ""
19905 " int\n"
19906 " guestfs_vg_activate (guestfs_h *g,\n"
19907 "                      int activate,\n"
19908 "                      char *const *volgroups);\n"
19909 "\n"
19910 msgstr ""
19911
19912 # type: textblock
19913 #. type: textblock
19914 #: ../src/guestfs-actions.pod:7038 ../fish/guestfish-actions.pod:4754
19915 msgid ""
19916 "This command activates or (if C<activate> is false) deactivates all logical "
19917 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
19918 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
19919 "deactivated, then those devices disappear."
19920 msgstr ""
19921
19922 # type: textblock
19923 #. type: textblock
19924 #: ../src/guestfs-actions.pod:7044 ../fish/guestfish-actions.pod:4760
19925 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
19926 msgstr ""
19927
19928 # type: textblock
19929 #. type: textblock
19930 #: ../src/guestfs-actions.pod:7046 ../fish/guestfish-actions.pod:4762
19931 msgid ""
19932 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
19933 "activated or deactivated."
19934 msgstr ""
19935
19936 # type: =head2
19937 #. type: =head2
19938 #: ../src/guestfs-actions.pod:7053
19939 msgid "guestfs_vg_activate_all"
19940 msgstr ""
19941
19942 # type: verbatim
19943 #. type: verbatim
19944 #: ../src/guestfs-actions.pod:7055
19945 #, no-wrap
19946 msgid ""
19947 " int\n"
19948 " guestfs_vg_activate_all (guestfs_h *g,\n"
19949 "                          int activate);\n"
19950 "\n"
19951 msgstr ""
19952
19953 # type: textblock
19954 #. type: textblock
19955 #: ../src/guestfs-actions.pod:7059 ../fish/guestfish-actions.pod:4769
19956 msgid ""
19957 "This command activates or (if C<activate> is false) deactivates all logical "
19958 "volumes in all volume groups.  If activated, then they are made known to the "
19959 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
19960 "those devices disappear."
19961 msgstr ""
19962
19963 # type: textblock
19964 #. type: textblock
19965 #: ../src/guestfs-actions.pod:7065 ../fish/guestfish-actions.pod:4775
19966 msgid "This command is the same as running C<vgchange -a y|n>"
19967 msgstr ""
19968
19969 # type: =head2
19970 #. type: =head2
19971 #: ../src/guestfs-actions.pod:7071
19972 msgid "guestfs_vgcreate"
19973 msgstr ""
19974
19975 # type: verbatim
19976 #. type: verbatim
19977 #: ../src/guestfs-actions.pod:7073
19978 #, no-wrap
19979 msgid ""
19980 " int\n"
19981 " guestfs_vgcreate (guestfs_h *g,\n"
19982 "                   const char *volgroup,\n"
19983 "                   char *const *physvols);\n"
19984 "\n"
19985 msgstr ""
19986
19987 # type: textblock
19988 #. type: textblock
19989 #: ../src/guestfs-actions.pod:7078 ../fish/guestfish-actions.pod:4781
19990 msgid ""
19991 "This creates an LVM volume group called C<volgroup> from the non-empty list "
19992 "of physical volumes C<physvols>."
19993 msgstr ""
19994
19995 # type: =head2
19996 #. type: =head2
19997 #: ../src/guestfs-actions.pod:7085
19998 msgid "guestfs_vglvuuids"
19999 msgstr ""
20000
20001 # type: verbatim
20002 #. type: verbatim
20003 #: ../src/guestfs-actions.pod:7087
20004 #, no-wrap
20005 msgid ""
20006 " char **\n"
20007 " guestfs_vglvuuids (guestfs_h *g,\n"
20008 "                    const char *vgname);\n"
20009 "\n"
20010 msgstr ""
20011
20012 # type: textblock
20013 #. type: textblock
20014 #: ../src/guestfs-actions.pod:7091 ../fish/guestfish-actions.pod:4788
20015 msgid ""
20016 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
20017 "volumes created in this volume group."
20018 msgstr ""
20019
20020 # type: textblock
20021 #. type: textblock
20022 #: ../src/guestfs-actions.pod:7094
20023 msgid ""
20024 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
20025 "associate logical volumes and volume groups."
20026 msgstr ""
20027
20028 # type: textblock
20029 #. type: textblock
20030 #: ../src/guestfs-actions.pod:7097
20031 msgid "See also C<guestfs_vgpvuuids>."
20032 msgstr ""
20033
20034 # type: =head2
20035 #. type: =head2
20036 #: ../src/guestfs-actions.pod:7105
20037 msgid "guestfs_vgpvuuids"
20038 msgstr ""
20039
20040 # type: verbatim
20041 #. type: verbatim
20042 #: ../src/guestfs-actions.pod:7107
20043 #, no-wrap
20044 msgid ""
20045 " char **\n"
20046 " guestfs_vgpvuuids (guestfs_h *g,\n"
20047 "                    const char *vgname);\n"
20048 "\n"
20049 msgstr ""
20050
20051 # type: textblock
20052 #. type: textblock
20053 #: ../src/guestfs-actions.pod:7111 ../fish/guestfish-actions.pod:4800
20054 msgid ""
20055 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
20056 "volumes that this volume group resides on."
20057 msgstr ""
20058
20059 # type: textblock
20060 #. type: textblock
20061 #: ../src/guestfs-actions.pod:7114
20062 msgid ""
20063 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
20064 "associate physical volumes and volume groups."
20065 msgstr ""
20066
20067 # type: textblock
20068 #. type: textblock
20069 #: ../src/guestfs-actions.pod:7117
20070 msgid "See also C<guestfs_vglvuuids>."
20071 msgstr ""
20072
20073 # type: =head2
20074 #. type: =head2
20075 #: ../src/guestfs-actions.pod:7125
20076 msgid "guestfs_vgremove"
20077 msgstr ""
20078
20079 # type: verbatim
20080 #. type: verbatim
20081 #: ../src/guestfs-actions.pod:7127
20082 #, no-wrap
20083 msgid ""
20084 " int\n"
20085 " guestfs_vgremove (guestfs_h *g,\n"
20086 "                   const char *vgname);\n"
20087 "\n"
20088 msgstr ""
20089
20090 # type: textblock
20091 #. type: textblock
20092 #: ../src/guestfs-actions.pod:7131 ../fish/guestfish-actions.pod:4812
20093 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
20094 msgstr ""
20095
20096 # type: textblock
20097 #. type: textblock
20098 #: ../src/guestfs-actions.pod:7133 ../fish/guestfish-actions.pod:4814
20099 msgid ""
20100 "This also forcibly removes all logical volumes in the volume group (if any)."
20101 msgstr ""
20102
20103 # type: =head2
20104 #. type: =head2
20105 #: ../src/guestfs-actions.pod:7140
20106 msgid "guestfs_vgrename"
20107 msgstr ""
20108
20109 # type: verbatim
20110 #. type: verbatim
20111 #: ../src/guestfs-actions.pod:7142
20112 #, no-wrap
20113 msgid ""
20114 " int\n"
20115 " guestfs_vgrename (guestfs_h *g,\n"
20116 "                   const char *volgroup,\n"
20117 "                   const char *newvolgroup);\n"
20118 "\n"
20119 msgstr ""
20120
20121 # type: textblock
20122 #. type: textblock
20123 #: ../src/guestfs-actions.pod:7147 ../fish/guestfish-actions.pod:4821
20124 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
20125 msgstr ""
20126
20127 # type: =head2
20128 #. type: =head2
20129 #: ../src/guestfs-actions.pod:7153
20130 msgid "guestfs_vgs"
20131 msgstr ""
20132
20133 # type: verbatim
20134 #. type: verbatim
20135 #: ../src/guestfs-actions.pod:7155
20136 #, no-wrap
20137 msgid ""
20138 " char **\n"
20139 " guestfs_vgs (guestfs_h *g);\n"
20140 "\n"
20141 msgstr ""
20142
20143 # type: textblock
20144 #. type: textblock
20145 #: ../src/guestfs-actions.pod:7158 ../fish/guestfish-actions.pod:4827
20146 msgid ""
20147 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
20148 "> command."
20149 msgstr ""
20150
20151 # type: textblock
20152 #. type: textblock
20153 #: ../src/guestfs-actions.pod:7161 ../fish/guestfish-actions.pod:4830
20154 msgid ""
20155 "This returns a list of just the volume group names that were detected (eg. "
20156 "C<VolGroup00>)."
20157 msgstr ""
20158
20159 # type: textblock
20160 #. type: textblock
20161 #: ../src/guestfs-actions.pod:7164
20162 msgid "See also C<guestfs_vgs_full>."
20163 msgstr ""
20164
20165 # type: =head2
20166 #. type: =head2
20167 #: ../src/guestfs-actions.pod:7172
20168 msgid "guestfs_vgs_full"
20169 msgstr ""
20170
20171 # type: verbatim
20172 #. type: verbatim
20173 #: ../src/guestfs-actions.pod:7174
20174 #, no-wrap
20175 msgid ""
20176 " struct guestfs_lvm_vg_list *\n"
20177 " guestfs_vgs_full (guestfs_h *g);\n"
20178 "\n"
20179 msgstr ""
20180
20181 # type: textblock
20182 #. type: textblock
20183 #: ../src/guestfs-actions.pod:7177 ../fish/guestfish-actions.pod:4839
20184 msgid ""
20185 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
20186 "> command.  The \"full\" version includes all fields."
20187 msgstr ""
20188
20189 # type: textblock
20190 #. type: textblock
20191 #: ../src/guestfs-actions.pod:7180
20192 msgid ""
20193 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
20194 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
20195 msgstr ""
20196
20197 # type: =head2
20198 #. type: =head2
20199 #: ../src/guestfs-actions.pod:7186
20200 msgid "guestfs_vgscan"
20201 msgstr ""
20202
20203 # type: verbatim
20204 #. type: verbatim
20205 #: ../src/guestfs-actions.pod:7188
20206 #, no-wrap
20207 msgid ""
20208 " int\n"
20209 " guestfs_vgscan (guestfs_h *g);\n"
20210 "\n"
20211 msgstr ""
20212
20213 # type: textblock
20214 #. type: textblock
20215 #: ../src/guestfs-actions.pod:7191 ../fish/guestfish-actions.pod:4846
20216 msgid ""
20217 "This rescans all block devices and rebuilds the list of LVM physical "
20218 "volumes, volume groups and logical volumes."
20219 msgstr ""
20220
20221 # type: =head2
20222 #. type: =head2
20223 #: ../src/guestfs-actions.pod:7198
20224 msgid "guestfs_vguuid"
20225 msgstr ""
20226
20227 # type: verbatim
20228 #. type: verbatim
20229 #: ../src/guestfs-actions.pod:7200
20230 #, no-wrap
20231 msgid ""
20232 " char *\n"
20233 " guestfs_vguuid (guestfs_h *g,\n"
20234 "                 const char *vgname);\n"
20235 "\n"
20236 msgstr ""
20237
20238 # type: textblock
20239 #. type: textblock
20240 #: ../src/guestfs-actions.pod:7204 ../fish/guestfish-actions.pod:4853
20241 msgid "This command returns the UUID of the LVM VG named C<vgname>."
20242 msgstr ""
20243
20244 # type: =head2
20245 #. type: =head2
20246 #: ../src/guestfs-actions.pod:7211
20247 msgid "guestfs_wait_ready"
20248 msgstr ""
20249
20250 # type: verbatim
20251 #. type: verbatim
20252 #: ../src/guestfs-actions.pod:7213
20253 #, no-wrap
20254 msgid ""
20255 " int\n"
20256 " guestfs_wait_ready (guestfs_h *g);\n"
20257 "\n"
20258 msgstr ""
20259
20260 # type: textblock
20261 #. type: textblock
20262 #: ../src/guestfs-actions.pod:7216
20263 msgid "This function is a no op."
20264 msgstr ""
20265
20266 # type: textblock
20267 #. type: textblock
20268 #: ../src/guestfs-actions.pod:7218
20269 msgid ""
20270 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
20271 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
20272 "is no longer necessary because C<guestfs_launch> now does the waiting."
20273 msgstr ""
20274
20275 # type: textblock
20276 #. type: textblock
20277 #: ../src/guestfs-actions.pod:7223
20278 msgid ""
20279 "If you see any calls to this function in code then you can just remove them, "
20280 "unless you want to retain compatibility with older versions of the API."
20281 msgstr ""
20282
20283 #. type: textblock
20284 #: ../src/guestfs-actions.pod:7229
20285 msgid ""
20286 "This function is deprecated.  In new code, use the C<launch> call instead."
20287 msgstr ""
20288
20289 # type: =head2
20290 #. type: =head2
20291 #: ../src/guestfs-actions.pod:7238
20292 msgid "guestfs_wc_c"
20293 msgstr ""
20294
20295 # type: verbatim
20296 #. type: verbatim
20297 #: ../src/guestfs-actions.pod:7240
20298 #, no-wrap
20299 msgid ""
20300 " int\n"
20301 " guestfs_wc_c (guestfs_h *g,\n"
20302 "               const char *path);\n"
20303 "\n"
20304 msgstr ""
20305
20306 # type: textblock
20307 #. type: textblock
20308 #: ../src/guestfs-actions.pod:7244 ../fish/guestfish-actions.pod:4859
20309 msgid ""
20310 "This command counts the characters in a file, using the C<wc -c> external "
20311 "command."
20312 msgstr ""
20313
20314 # type: =head2
20315 #. type: =head2
20316 #: ../src/guestfs-actions.pod:7251
20317 msgid "guestfs_wc_l"
20318 msgstr ""
20319
20320 # type: verbatim
20321 #. type: verbatim
20322 #: ../src/guestfs-actions.pod:7253
20323 #, no-wrap
20324 msgid ""
20325 " int\n"
20326 " guestfs_wc_l (guestfs_h *g,\n"
20327 "               const char *path);\n"
20328 "\n"
20329 msgstr ""
20330
20331 # type: textblock
20332 #. type: textblock
20333 #: ../src/guestfs-actions.pod:7257 ../fish/guestfish-actions.pod:4866
20334 msgid ""
20335 "This command counts the lines in a file, using the C<wc -l> external command."
20336 msgstr ""
20337
20338 # type: =head2
20339 #. type: =head2
20340 #: ../src/guestfs-actions.pod:7264
20341 msgid "guestfs_wc_w"
20342 msgstr ""
20343
20344 # type: verbatim
20345 #. type: verbatim
20346 #: ../src/guestfs-actions.pod:7266
20347 #, no-wrap
20348 msgid ""
20349 " int\n"
20350 " guestfs_wc_w (guestfs_h *g,\n"
20351 "               const char *path);\n"
20352 "\n"
20353 msgstr ""
20354
20355 # type: textblock
20356 #. type: textblock
20357 #: ../src/guestfs-actions.pod:7270 ../fish/guestfish-actions.pod:4873
20358 msgid ""
20359 "This command counts the words in a file, using the C<wc -w> external command."
20360 msgstr ""
20361
20362 # type: =head2
20363 #. type: =head2
20364 #: ../src/guestfs-actions.pod:7277
20365 msgid "guestfs_write"
20366 msgstr ""
20367
20368 # type: verbatim
20369 #. type: verbatim
20370 #: ../src/guestfs-actions.pod:7279
20371 #, no-wrap
20372 msgid ""
20373 " int\n"
20374 " guestfs_write (guestfs_h *g,\n"
20375 "                const char *path,\n"
20376 "                const char *content,\n"
20377 "                size_t content_size);\n"
20378 "\n"
20379 msgstr ""
20380
20381 # type: textblock
20382 #. type: textblock
20383 #: ../src/guestfs-actions.pod:7285 ../fish/guestfish-actions.pod:4880
20384 msgid ""
20385 "This call creates a file called C<path>.  The content of the file is the "
20386 "string C<content> (which can contain any 8 bit data)."
20387 msgstr ""
20388
20389 # type: =head2
20390 #. type: =head2
20391 #: ../src/guestfs-actions.pod:7295
20392 msgid "guestfs_write_file"
20393 msgstr ""
20394
20395 # type: verbatim
20396 #. type: verbatim
20397 #: ../src/guestfs-actions.pod:7297
20398 #, no-wrap
20399 msgid ""
20400 " int\n"
20401 " guestfs_write_file (guestfs_h *g,\n"
20402 "                     const char *path,\n"
20403 "                     const char *content,\n"
20404 "                     int size);\n"
20405 "\n"
20406 msgstr ""
20407
20408 # type: textblock
20409 #. type: textblock
20410 #: ../src/guestfs-actions.pod:7303 ../fish/guestfish-actions.pod:4890
20411 msgid ""
20412 "This call creates a file called C<path>.  The contents of the file is the "
20413 "string C<content> (which can contain any 8 bit data), with length C<size>."
20414 msgstr ""
20415
20416 # type: textblock
20417 #. type: textblock
20418 #: ../src/guestfs-actions.pod:7307 ../fish/guestfish-actions.pod:4894
20419 msgid ""
20420 "As a special case, if C<size> is C<0> then the length is calculated using "
20421 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
20422 msgstr ""
20423
20424 # type: textblock
20425 #. type: textblock
20426 #: ../src/guestfs-actions.pod:7311 ../fish/guestfish-actions.pod:4898
20427 msgid ""
20428 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
20429 "I<not> work, even if the length is specified."
20430 msgstr ""
20431
20432 # type: textblock
20433 #. type: textblock
20434 #: ../src/guestfs-actions.pod:7319 ../fish/guestfish-actions.pod:4904
20435 msgid ""
20436 "This function is deprecated.  In new code, use the C<write> call instead."
20437 msgstr ""
20438
20439 # type: =head2
20440 #. type: =head2
20441 #: ../src/guestfs-actions.pod:7328
20442 msgid "guestfs_zegrep"
20443 msgstr ""
20444
20445 # type: verbatim
20446 #. type: verbatim
20447 #: ../src/guestfs-actions.pod:7330
20448 #, no-wrap
20449 msgid ""
20450 " char **\n"
20451 " guestfs_zegrep (guestfs_h *g,\n"
20452 "                 const char *regex,\n"
20453 "                 const char *path);\n"
20454 "\n"
20455 msgstr ""
20456
20457 # type: textblock
20458 #. type: textblock
20459 #: ../src/guestfs-actions.pod:7335 ../fish/guestfish-actions.pod:4915
20460 msgid ""
20461 "This calls the external C<zegrep> program and returns the matching lines."
20462 msgstr ""
20463
20464 # type: =head2
20465 #. type: =head2
20466 #: ../src/guestfs-actions.pod:7347
20467 msgid "guestfs_zegrepi"
20468 msgstr ""
20469
20470 # type: verbatim
20471 #. type: verbatim
20472 #: ../src/guestfs-actions.pod:7349
20473 #, no-wrap
20474 msgid ""
20475 " char **\n"
20476 " guestfs_zegrepi (guestfs_h *g,\n"
20477 "                  const char *regex,\n"
20478 "                  const char *path);\n"
20479 "\n"
20480 msgstr ""
20481
20482 # type: textblock
20483 #. type: textblock
20484 #: ../src/guestfs-actions.pod:7354 ../fish/guestfish-actions.pod:4925
20485 msgid ""
20486 "This calls the external C<zegrep -i> program and returns the matching lines."
20487 msgstr ""
20488
20489 # type: =head2
20490 #. type: =head2
20491 #: ../src/guestfs-actions.pod:7366
20492 msgid "guestfs_zero"
20493 msgstr ""
20494
20495 # type: verbatim
20496 #. type: verbatim
20497 #: ../src/guestfs-actions.pod:7368
20498 #, no-wrap
20499 msgid ""
20500 " int\n"
20501 " guestfs_zero (guestfs_h *g,\n"
20502 "               const char *device);\n"
20503 "\n"
20504 msgstr ""
20505
20506 # type: textblock
20507 #. type: textblock
20508 #: ../src/guestfs-actions.pod:7372 ../fish/guestfish-actions.pod:4935
20509 msgid "This command writes zeroes over the first few blocks of C<device>."
20510 msgstr ""
20511
20512 # type: textblock
20513 #. type: textblock
20514 #: ../src/guestfs-actions.pod:7374 ../fish/guestfish-actions.pod:4937
20515 msgid ""
20516 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
20517 "securely wipe the device).  It should be sufficient to remove any partition "
20518 "tables, filesystem superblocks and so on."
20519 msgstr ""
20520
20521 # type: textblock
20522 #. type: textblock
20523 #: ../src/guestfs-actions.pod:7378
20524 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
20525 msgstr ""
20526
20527 # type: =head2
20528 #. type: =head2
20529 #: ../src/guestfs-actions.pod:7389
20530 msgid "guestfs_zero_device"
20531 msgstr ""
20532
20533 # type: verbatim
20534 #. type: verbatim
20535 #: ../src/guestfs-actions.pod:7391
20536 #, no-wrap
20537 msgid ""
20538 " int\n"
20539 " guestfs_zero_device (guestfs_h *g,\n"
20540 "                      const char *device);\n"
20541 "\n"
20542 msgstr ""
20543
20544 # type: textblock
20545 #. type: textblock
20546 #: ../src/guestfs-actions.pod:7395
20547 msgid ""
20548 "This command writes zeroes over the entire C<device>.  Compare with "
20549 "C<guestfs_zero> which just zeroes the first few blocks of a device."
20550 msgstr ""
20551
20552 # type: textblock
20553 #. type: textblock
20554 #: ../src/guestfs-actions.pod:7409
20555 msgid "(Added in 1.3.1)"
20556 msgstr ""
20557
20558 # type: =head2
20559 #. type: =head2
20560 #: ../src/guestfs-actions.pod:7411
20561 msgid "guestfs_zerofree"
20562 msgstr ""
20563
20564 # type: verbatim
20565 #. type: verbatim
20566 #: ../src/guestfs-actions.pod:7413
20567 #, no-wrap
20568 msgid ""
20569 " int\n"
20570 " guestfs_zerofree (guestfs_h *g,\n"
20571 "                   const char *device);\n"
20572 "\n"
20573 msgstr ""
20574
20575 # type: textblock
20576 #. type: textblock
20577 #: ../src/guestfs-actions.pod:7417 ../fish/guestfish-actions.pod:4958
20578 msgid ""
20579 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
20580 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
20581 "possible to compress the filesystem more effectively."
20582 msgstr ""
20583
20584 # type: textblock
20585 #. type: textblock
20586 #: ../src/guestfs-actions.pod:7422 ../fish/guestfish-actions.pod:4963
20587 msgid "You should B<not> run this program if the filesystem is mounted."
20588 msgstr ""
20589
20590 # type: textblock
20591 #. type: textblock
20592 #: ../src/guestfs-actions.pod:7425 ../fish/guestfish-actions.pod:4966
20593 msgid ""
20594 "It is possible that using this program can damage the filesystem or data on "
20595 "the filesystem."
20596 msgstr ""
20597
20598 # type: =head2
20599 #. type: =head2
20600 #: ../src/guestfs-actions.pod:7432
20601 msgid "guestfs_zfgrep"
20602 msgstr ""
20603
20604 # type: verbatim
20605 #. type: verbatim
20606 #: ../src/guestfs-actions.pod:7434
20607 #, no-wrap
20608 msgid ""
20609 " char **\n"
20610 " guestfs_zfgrep (guestfs_h *g,\n"
20611 "                 const char *pattern,\n"
20612 "                 const char *path);\n"
20613 "\n"
20614 msgstr ""
20615
20616 # type: textblock
20617 #. type: textblock
20618 #: ../src/guestfs-actions.pod:7439 ../fish/guestfish-actions.pod:4973
20619 msgid ""
20620 "This calls the external C<zfgrep> program and returns the matching lines."
20621 msgstr ""
20622
20623 # type: =head2
20624 #. type: =head2
20625 #: ../src/guestfs-actions.pod:7451
20626 msgid "guestfs_zfgrepi"
20627 msgstr ""
20628
20629 # type: verbatim
20630 #. type: verbatim
20631 #: ../src/guestfs-actions.pod:7453
20632 #, no-wrap
20633 msgid ""
20634 " char **\n"
20635 " guestfs_zfgrepi (guestfs_h *g,\n"
20636 "                  const char *pattern,\n"
20637 "                  const char *path);\n"
20638 "\n"
20639 msgstr ""
20640
20641 # type: textblock
20642 #. type: textblock
20643 #: ../src/guestfs-actions.pod:7458 ../fish/guestfish-actions.pod:4983
20644 msgid ""
20645 "This calls the external C<zfgrep -i> program and returns the matching lines."
20646 msgstr ""
20647
20648 # type: =head2
20649 #. type: =head2
20650 #: ../src/guestfs-actions.pod:7470
20651 msgid "guestfs_zfile"
20652 msgstr ""
20653
20654 # type: verbatim
20655 #. type: verbatim
20656 #: ../src/guestfs-actions.pod:7472
20657 #, no-wrap
20658 msgid ""
20659 " char *\n"
20660 " guestfs_zfile (guestfs_h *g,\n"
20661 "                const char *meth,\n"
20662 "                const char *path);\n"
20663 "\n"
20664 msgstr ""
20665
20666 # type: textblock
20667 #. type: textblock
20668 #: ../src/guestfs-actions.pod:7477 ../fish/guestfish-actions.pod:4993
20669 msgid ""
20670 "This command runs C<file> after first decompressing C<path> using C<method>."
20671 msgstr ""
20672
20673 # type: textblock
20674 #. type: textblock
20675 #: ../src/guestfs-actions.pod:7480 ../fish/guestfish-actions.pod:4996
20676 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
20677 msgstr ""
20678
20679 # type: textblock
20680 #. type: textblock
20681 #: ../src/guestfs-actions.pod:7482
20682 msgid ""
20683 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
20684 "files."
20685 msgstr ""
20686
20687 # type: textblock
20688 #. type: textblock
20689 #: ../src/guestfs-actions.pod:7488 ../fish/guestfish-actions.pod:5001
20690 msgid ""
20691 "This function is deprecated.  In new code, use the C<file> call instead."
20692 msgstr ""
20693
20694 # type: =head2
20695 #. type: =head2
20696 #: ../src/guestfs-actions.pod:7497
20697 msgid "guestfs_zgrep"
20698 msgstr ""
20699
20700 # type: verbatim
20701 #. type: verbatim
20702 #: ../src/guestfs-actions.pod:7499
20703 #, no-wrap
20704 msgid ""
20705 " char **\n"
20706 " guestfs_zgrep (guestfs_h *g,\n"
20707 "                const char *regex,\n"
20708 "                const char *path);\n"
20709 "\n"
20710 msgstr ""
20711
20712 # type: textblock
20713 #. type: textblock
20714 #: ../src/guestfs-actions.pod:7504 ../fish/guestfish-actions.pod:5012
20715 msgid ""
20716 "This calls the external C<zgrep> program and returns the matching lines."
20717 msgstr ""
20718
20719 # type: =head2
20720 #. type: =head2
20721 #: ../src/guestfs-actions.pod:7516
20722 msgid "guestfs_zgrepi"
20723 msgstr ""
20724
20725 # type: verbatim
20726 #. type: verbatim
20727 #: ../src/guestfs-actions.pod:7518
20728 #, no-wrap
20729 msgid ""
20730 " char **\n"
20731 " guestfs_zgrepi (guestfs_h *g,\n"
20732 "                 const char *regex,\n"
20733 "                 const char *path);\n"
20734 "\n"
20735 msgstr ""
20736
20737 # type: textblock
20738 #. type: textblock
20739 #: ../src/guestfs-actions.pod:7523 ../fish/guestfish-actions.pod:5022
20740 msgid ""
20741 "This calls the external C<zgrep -i> program and returns the matching lines."
20742 msgstr ""
20743
20744 # type: =item
20745 #. type: =item
20746 #: ../src/guestfs-availability.pod:3
20747 msgid "B<augeas>"
20748 msgstr ""
20749
20750 # type: textblock
20751 #. type: textblock
20752 #: ../src/guestfs-availability.pod:5
20753 msgid ""
20754 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> L</"
20755 "guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> L</"
20756 "guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> L</"
20757 "guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> L</guestfs_aug_rm> "
20758 "L</guestfs_aug_save> L</guestfs_aug_set>"
20759 msgstr ""
20760
20761 # type: =item
20762 #. type: =item
20763 #: ../src/guestfs-availability.pod:21
20764 msgid "B<inotify>"
20765 msgstr ""
20766
20767 # type: textblock
20768 #. type: textblock
20769 #: ../src/guestfs-availability.pod:23
20770 msgid ""
20771 "The following functions: L</guestfs_inotify_add_watch> L</"
20772 "guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> L</"
20773 "guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
20774 msgstr ""
20775
20776 # type: =item
20777 #. type: =item
20778 #: ../src/guestfs-availability.pod:31
20779 msgid "B<linuxfsuuid>"
20780 msgstr ""
20781
20782 # type: textblock
20783 #. type: textblock
20784 #: ../src/guestfs-availability.pod:33
20785 msgid ""
20786 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> L</"
20787 "guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
20788 msgstr ""
20789
20790 # type: =item
20791 #. type: =item
20792 #: ../src/guestfs-availability.pod:40
20793 msgid "B<linuxmodules>"
20794 msgstr ""
20795
20796 # type: textblock
20797 #. type: textblock
20798 #: ../src/guestfs-availability.pod:42
20799 msgid "The following functions: L</guestfs_modprobe>"
20800 msgstr ""
20801
20802 # type: =item
20803 #. type: =item
20804 #: ../src/guestfs-availability.pod:45
20805 msgid "B<linuxxattrs>"
20806 msgstr ""
20807
20808 # type: textblock
20809 #. type: textblock
20810 #: ../src/guestfs-availability.pod:47
20811 msgid ""
20812 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> L</"
20813 "guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> L</"
20814 "guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> L</"
20815 "guestfs_setxattr>"
20816 msgstr ""
20817
20818 # type: =item
20819 #. type: =item
20820 #: ../src/guestfs-availability.pod:58
20821 msgid "B<luks>"
20822 msgstr ""
20823
20824 # type: textblock
20825 #. type: textblock
20826 #: ../src/guestfs-availability.pod:60
20827 msgid ""
20828 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> L</"
20829 "guestfs_luks_format> L</guestfs_luks_format_cipher> L</"
20830 "guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
20831 msgstr ""
20832
20833 # type: =item
20834 #. type: =item
20835 #: ../src/guestfs-availability.pod:69
20836 msgid "B<lvm2>"
20837 msgstr ""
20838
20839 # type: textblock
20840 #. type: textblock
20841 #: ../src/guestfs-availability.pod:71
20842 msgid ""
20843 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> L</"
20844 "guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> L</"
20845 "guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> L</"
20846 "guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> L</"
20847 "guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> L</"
20848 "guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> L</"
20849 "guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> L</guestfs_vgs_full>"
20850 msgstr ""
20851
20852 # type: =item
20853 #. type: =item
20854 #: ../src/guestfs-availability.pod:94
20855 msgid "B<mknod>"
20856 msgstr ""
20857
20858 # type: textblock
20859 #. type: textblock
20860 #: ../src/guestfs-availability.pod:96
20861 msgid ""
20862 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> L</"
20863 "guestfs_mknod_b> L</guestfs_mknod_c>"
20864 msgstr ""
20865
20866 # type: =item
20867 #. type: =item
20868 #: ../src/guestfs-availability.pod:102
20869 msgid "B<ntfs3g>"
20870 msgstr ""
20871
20872 # type: textblock
20873 #. type: textblock
20874 #: ../src/guestfs-availability.pod:104
20875 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
20876 msgstr ""
20877
20878 # type: =item
20879 #. type: =item
20880 #: ../src/guestfs-availability.pod:107
20881 msgid "B<ntfsprogs>"
20882 msgstr ""
20883
20884 # type: textblock
20885 #. type: textblock
20886 #: ../src/guestfs-availability.pod:109
20887 msgid ""
20888 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
20889 msgstr ""
20890
20891 # type: =item
20892 #. type: =item
20893 #: ../src/guestfs-availability.pod:113
20894 msgid "B<realpath>"
20895 msgstr ""
20896
20897 # type: textblock
20898 #. type: textblock
20899 #: ../src/guestfs-availability.pod:115
20900 msgid "The following functions: L</guestfs_realpath>"
20901 msgstr ""
20902
20903 # type: =item
20904 #. type: =item
20905 #: ../src/guestfs-availability.pod:118
20906 msgid "B<scrub>"
20907 msgstr ""
20908
20909 # type: textblock
20910 #. type: textblock
20911 #: ../src/guestfs-availability.pod:120
20912 msgid ""
20913 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> L</"
20914 "guestfs_scrub_freespace>"
20915 msgstr ""
20916
20917 # type: =item
20918 #. type: =item
20919 #: ../src/guestfs-availability.pod:125
20920 msgid "B<selinux>"
20921 msgstr ""
20922
20923 # type: textblock
20924 #. type: textblock
20925 #: ../src/guestfs-availability.pod:127
20926 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
20927 msgstr ""
20928
20929 # type: =item
20930 #. type: =item
20931 #: ../src/guestfs-availability.pod:131
20932 msgid "B<xz>"
20933 msgstr ""
20934
20935 # type: textblock
20936 #. type: textblock
20937 #: ../src/guestfs-availability.pod:133
20938 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
20939 msgstr ""
20940
20941 # type: =item
20942 #. type: =item
20943 #: ../src/guestfs-availability.pod:137
20944 msgid "B<zerofree>"
20945 msgstr ""
20946
20947 # type: textblock
20948 #. type: textblock
20949 #: ../src/guestfs-availability.pod:139
20950 msgid "The following functions: L</guestfs_zerofree>"
20951 msgstr ""
20952
20953 # type: =head2
20954 #. type: =head2
20955 #: ../src/guestfs-structs.pod:1
20956 msgid "guestfs_int_bool"
20957 msgstr ""
20958
20959 # type: verbatim
20960 #. type: verbatim
20961 #: ../src/guestfs-structs.pod:3
20962 #, no-wrap
20963 msgid ""
20964 " struct guestfs_int_bool {\n"
20965 "   int32_t i;\n"
20966 "   int32_t b;\n"
20967 " };\n"
20968 " \n"
20969 msgstr ""
20970
20971 # type: verbatim
20972 #. type: verbatim
20973 #: ../src/guestfs-structs.pod:8
20974 #, no-wrap
20975 msgid ""
20976 " struct guestfs_int_bool_list {\n"
20977 "   uint32_t len; /* Number of elements in list. */\n"
20978 "   struct guestfs_int_bool *val; /* Elements. */\n"
20979 " };\n"
20980 " \n"
20981 msgstr ""
20982
20983 # type: verbatim
20984 #. type: verbatim
20985 #: ../src/guestfs-structs.pod:13
20986 #, no-wrap
20987 msgid ""
20988 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
20989 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
20990 "\n"
20991 msgstr ""
20992
20993 # type: =head2
20994 #. type: =head2
20995 #: ../src/guestfs-structs.pod:16
20996 msgid "guestfs_lvm_pv"
20997 msgstr ""
20998
20999 # type: verbatim
21000 #. type: verbatim
21001 #: ../src/guestfs-structs.pod:18
21002 #, no-wrap
21003 msgid ""
21004 " struct guestfs_lvm_pv {\n"
21005 "   char *pv_name;\n"
21006 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
21007 "   char pv_uuid[32];\n"
21008 "   char *pv_fmt;\n"
21009 "   uint64_t pv_size;\n"
21010 "   uint64_t dev_size;\n"
21011 "   uint64_t pv_free;\n"
21012 "   uint64_t pv_used;\n"
21013 "   char *pv_attr;\n"
21014 "   int64_t pv_pe_count;\n"
21015 "   int64_t pv_pe_alloc_count;\n"
21016 "   char *pv_tags;\n"
21017 "   uint64_t pe_start;\n"
21018 "   int64_t pv_mda_count;\n"
21019 "   uint64_t pv_mda_free;\n"
21020 " };\n"
21021 " \n"
21022 msgstr ""
21023
21024 # type: verbatim
21025 #. type: verbatim
21026 #: ../src/guestfs-structs.pod:36
21027 #, no-wrap
21028 msgid ""
21029 " struct guestfs_lvm_pv_list {\n"
21030 "   uint32_t len; /* Number of elements in list. */\n"
21031 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
21032 " };\n"
21033 " \n"
21034 msgstr ""
21035
21036 # type: verbatim
21037 #. type: verbatim
21038 #: ../src/guestfs-structs.pod:41
21039 #, no-wrap
21040 msgid ""
21041 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
21042 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
21043 "\n"
21044 msgstr ""
21045
21046 # type: =head2
21047 #. type: =head2
21048 #: ../src/guestfs-structs.pod:44
21049 msgid "guestfs_lvm_vg"
21050 msgstr ""
21051
21052 # type: verbatim
21053 #. type: verbatim
21054 #: ../src/guestfs-structs.pod:46
21055 #, no-wrap
21056 msgid ""
21057 " struct guestfs_lvm_vg {\n"
21058 "   char *vg_name;\n"
21059 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
21060 "   char vg_uuid[32];\n"
21061 "   char *vg_fmt;\n"
21062 "   char *vg_attr;\n"
21063 "   uint64_t vg_size;\n"
21064 "   uint64_t vg_free;\n"
21065 "   char *vg_sysid;\n"
21066 "   uint64_t vg_extent_size;\n"
21067 "   int64_t vg_extent_count;\n"
21068 "   int64_t vg_free_count;\n"
21069 "   int64_t max_lv;\n"
21070 "   int64_t max_pv;\n"
21071 "   int64_t pv_count;\n"
21072 "   int64_t lv_count;\n"
21073 "   int64_t snap_count;\n"
21074 "   int64_t vg_seqno;\n"
21075 "   char *vg_tags;\n"
21076 "   int64_t vg_mda_count;\n"
21077 "   uint64_t vg_mda_free;\n"
21078 " };\n"
21079 " \n"
21080 msgstr ""
21081
21082 # type: verbatim
21083 #. type: verbatim
21084 #: ../src/guestfs-structs.pod:69
21085 #, no-wrap
21086 msgid ""
21087 " struct guestfs_lvm_vg_list {\n"
21088 "   uint32_t len; /* Number of elements in list. */\n"
21089 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
21090 " };\n"
21091 " \n"
21092 msgstr ""
21093
21094 # type: verbatim
21095 #. type: verbatim
21096 #: ../src/guestfs-structs.pod:74
21097 #, no-wrap
21098 msgid ""
21099 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
21100 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
21101 "\n"
21102 msgstr ""
21103
21104 # type: =head2
21105 #. type: =head2
21106 #: ../src/guestfs-structs.pod:77
21107 msgid "guestfs_lvm_lv"
21108 msgstr ""
21109
21110 # type: verbatim
21111 #. type: verbatim
21112 #: ../src/guestfs-structs.pod:79
21113 #, no-wrap
21114 msgid ""
21115 " struct guestfs_lvm_lv {\n"
21116 "   char *lv_name;\n"
21117 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
21118 "   char lv_uuid[32];\n"
21119 "   char *lv_attr;\n"
21120 "   int64_t lv_major;\n"
21121 "   int64_t lv_minor;\n"
21122 "   int64_t lv_kernel_major;\n"
21123 "   int64_t lv_kernel_minor;\n"
21124 "   uint64_t lv_size;\n"
21125 "   int64_t seg_count;\n"
21126 "   char *origin;\n"
21127 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
21128 "   float snap_percent;\n"
21129 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
21130 "   float copy_percent;\n"
21131 "   char *move_pv;\n"
21132 "   char *lv_tags;\n"
21133 "   char *mirror_log;\n"
21134 "   char *modules;\n"
21135 " };\n"
21136 " \n"
21137 msgstr ""
21138
21139 # type: verbatim
21140 #. type: verbatim
21141 #: ../src/guestfs-structs.pod:101
21142 #, no-wrap
21143 msgid ""
21144 " struct guestfs_lvm_lv_list {\n"
21145 "   uint32_t len; /* Number of elements in list. */\n"
21146 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
21147 " };\n"
21148 " \n"
21149 msgstr ""
21150
21151 # type: verbatim
21152 #. type: verbatim
21153 #: ../src/guestfs-structs.pod:106
21154 #, no-wrap
21155 msgid ""
21156 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
21157 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
21158 "\n"
21159 msgstr ""
21160
21161 # type: verbatim
21162 #. type: verbatim
21163 #: ../src/guestfs-structs.pod:111
21164 #, no-wrap
21165 msgid ""
21166 " struct guestfs_stat {\n"
21167 "   int64_t dev;\n"
21168 "   int64_t ino;\n"
21169 "   int64_t mode;\n"
21170 "   int64_t nlink;\n"
21171 "   int64_t uid;\n"
21172 "   int64_t gid;\n"
21173 "   int64_t rdev;\n"
21174 "   int64_t size;\n"
21175 "   int64_t blksize;\n"
21176 "   int64_t blocks;\n"
21177 "   int64_t atime;\n"
21178 "   int64_t mtime;\n"
21179 "   int64_t ctime;\n"
21180 " };\n"
21181 " \n"
21182 msgstr ""
21183
21184 # type: verbatim
21185 #. type: verbatim
21186 #: ../src/guestfs-structs.pod:127
21187 #, no-wrap
21188 msgid ""
21189 " struct guestfs_stat_list {\n"
21190 "   uint32_t len; /* Number of elements in list. */\n"
21191 "   struct guestfs_stat *val; /* Elements. */\n"
21192 " };\n"
21193 " \n"
21194 msgstr ""
21195
21196 # type: verbatim
21197 #. type: verbatim
21198 #: ../src/guestfs-structs.pod:132
21199 #, no-wrap
21200 msgid ""
21201 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
21202 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
21203 "\n"
21204 msgstr ""
21205
21206 # type: verbatim
21207 #. type: verbatim
21208 #: ../src/guestfs-structs.pod:137
21209 #, no-wrap
21210 msgid ""
21211 " struct guestfs_statvfs {\n"
21212 "   int64_t bsize;\n"
21213 "   int64_t frsize;\n"
21214 "   int64_t blocks;\n"
21215 "   int64_t bfree;\n"
21216 "   int64_t bavail;\n"
21217 "   int64_t files;\n"
21218 "   int64_t ffree;\n"
21219 "   int64_t favail;\n"
21220 "   int64_t fsid;\n"
21221 "   int64_t flag;\n"
21222 "   int64_t namemax;\n"
21223 " };\n"
21224 " \n"
21225 msgstr ""
21226
21227 # type: verbatim
21228 #. type: verbatim
21229 #: ../src/guestfs-structs.pod:151
21230 #, no-wrap
21231 msgid ""
21232 " struct guestfs_statvfs_list {\n"
21233 "   uint32_t len; /* Number of elements in list. */\n"
21234 "   struct guestfs_statvfs *val; /* Elements. */\n"
21235 " };\n"
21236 " \n"
21237 msgstr ""
21238
21239 # type: verbatim
21240 #. type: verbatim
21241 #: ../src/guestfs-structs.pod:156
21242 #, no-wrap
21243 msgid ""
21244 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
21245 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
21246 "\n"
21247 msgstr ""
21248
21249 # type: =head2
21250 #. type: =head2
21251 #: ../src/guestfs-structs.pod:159
21252 msgid "guestfs_dirent"
21253 msgstr ""
21254
21255 # type: verbatim
21256 #. type: verbatim
21257 #: ../src/guestfs-structs.pod:161
21258 #, no-wrap
21259 msgid ""
21260 " struct guestfs_dirent {\n"
21261 "   int64_t ino;\n"
21262 "   char ftyp;\n"
21263 "   char *name;\n"
21264 " };\n"
21265 " \n"
21266 msgstr ""
21267
21268 # type: verbatim
21269 #. type: verbatim
21270 #: ../src/guestfs-structs.pod:167
21271 #, no-wrap
21272 msgid ""
21273 " struct guestfs_dirent_list {\n"
21274 "   uint32_t len; /* Number of elements in list. */\n"
21275 "   struct guestfs_dirent *val; /* Elements. */\n"
21276 " };\n"
21277 " \n"
21278 msgstr ""
21279
21280 # type: verbatim
21281 #. type: verbatim
21282 #: ../src/guestfs-structs.pod:172
21283 #, no-wrap
21284 msgid ""
21285 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
21286 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
21287 "\n"
21288 msgstr ""
21289
21290 # type: verbatim
21291 #. type: verbatim
21292 #: ../src/guestfs-structs.pod:177
21293 #, no-wrap
21294 msgid ""
21295 " struct guestfs_version {\n"
21296 "   int64_t major;\n"
21297 "   int64_t minor;\n"
21298 "   int64_t release;\n"
21299 "   char *extra;\n"
21300 " };\n"
21301 " \n"
21302 msgstr ""
21303
21304 # type: verbatim
21305 #. type: verbatim
21306 #: ../src/guestfs-structs.pod:184
21307 #, no-wrap
21308 msgid ""
21309 " struct guestfs_version_list {\n"
21310 "   uint32_t len; /* Number of elements in list. */\n"
21311 "   struct guestfs_version *val; /* Elements. */\n"
21312 " };\n"
21313 " \n"
21314 msgstr ""
21315
21316 # type: verbatim
21317 #. type: verbatim
21318 #: ../src/guestfs-structs.pod:189
21319 #, no-wrap
21320 msgid ""
21321 " void guestfs_free_version (struct guestfs_free_version *);\n"
21322 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
21323 "\n"
21324 msgstr ""
21325
21326 # type: =head2
21327 #. type: =head2
21328 #: ../src/guestfs-structs.pod:192
21329 msgid "guestfs_xattr"
21330 msgstr ""
21331
21332 # type: verbatim
21333 #. type: verbatim
21334 #: ../src/guestfs-structs.pod:194
21335 #, no-wrap
21336 msgid ""
21337 " struct guestfs_xattr {\n"
21338 "   char *attrname;\n"
21339 "   /* The next two fields describe a byte array. */\n"
21340 "   uint32_t attrval_len;\n"
21341 "   char *attrval;\n"
21342 " };\n"
21343 " \n"
21344 msgstr ""
21345
21346 # type: verbatim
21347 #. type: verbatim
21348 #: ../src/guestfs-structs.pod:201
21349 #, no-wrap
21350 msgid ""
21351 " struct guestfs_xattr_list {\n"
21352 "   uint32_t len; /* Number of elements in list. */\n"
21353 "   struct guestfs_xattr *val; /* Elements. */\n"
21354 " };\n"
21355 " \n"
21356 msgstr ""
21357
21358 # type: verbatim
21359 #. type: verbatim
21360 #: ../src/guestfs-structs.pod:206
21361 #, no-wrap
21362 msgid ""
21363 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
21364 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
21365 "\n"
21366 msgstr ""
21367
21368 # type: =head2
21369 #. type: =head2
21370 #: ../src/guestfs-structs.pod:209
21371 msgid "guestfs_inotify_event"
21372 msgstr ""
21373
21374 # type: verbatim
21375 #. type: verbatim
21376 #: ../src/guestfs-structs.pod:211
21377 #, no-wrap
21378 msgid ""
21379 " struct guestfs_inotify_event {\n"
21380 "   int64_t in_wd;\n"
21381 "   uint32_t in_mask;\n"
21382 "   uint32_t in_cookie;\n"
21383 "   char *in_name;\n"
21384 " };\n"
21385 " \n"
21386 msgstr ""
21387
21388 # type: verbatim
21389 #. type: verbatim
21390 #: ../src/guestfs-structs.pod:218
21391 #, no-wrap
21392 msgid ""
21393 " struct guestfs_inotify_event_list {\n"
21394 "   uint32_t len; /* Number of elements in list. */\n"
21395 "   struct guestfs_inotify_event *val; /* Elements. */\n"
21396 " };\n"
21397 " \n"
21398 msgstr ""
21399
21400 # type: verbatim
21401 #. type: verbatim
21402 #: ../src/guestfs-structs.pod:223
21403 #, no-wrap
21404 msgid ""
21405 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
21406 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
21407 "\n"
21408 msgstr ""
21409
21410 # type: =head2
21411 #. type: =head2
21412 #: ../src/guestfs-structs.pod:226
21413 msgid "guestfs_partition"
21414 msgstr ""
21415
21416 # type: verbatim
21417 #. type: verbatim
21418 #: ../src/guestfs-structs.pod:228
21419 #, no-wrap
21420 msgid ""
21421 " struct guestfs_partition {\n"
21422 "   int32_t part_num;\n"
21423 "   uint64_t part_start;\n"
21424 "   uint64_t part_end;\n"
21425 "   uint64_t part_size;\n"
21426 " };\n"
21427 " \n"
21428 msgstr ""
21429
21430 # type: verbatim
21431 #. type: verbatim
21432 #: ../src/guestfs-structs.pod:235
21433 #, no-wrap
21434 msgid ""
21435 " struct guestfs_partition_list {\n"
21436 "   uint32_t len; /* Number of elements in list. */\n"
21437 "   struct guestfs_partition *val; /* Elements. */\n"
21438 " };\n"
21439 " \n"
21440 msgstr ""
21441
21442 # type: verbatim
21443 #. type: verbatim
21444 #: ../src/guestfs-structs.pod:240
21445 #, no-wrap
21446 msgid ""
21447 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
21448 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
21449 "\n"
21450 msgstr ""
21451
21452 # type: =head2
21453 #. type: =head2
21454 #: ../src/guestfs-structs.pod:243
21455 msgid "guestfs_application"
21456 msgstr ""
21457
21458 # type: verbatim
21459 #. type: verbatim
21460 #: ../src/guestfs-structs.pod:245
21461 #, no-wrap
21462 msgid ""
21463 " struct guestfs_application {\n"
21464 "   char *app_name;\n"
21465 "   char *app_display_name;\n"
21466 "   int32_t app_epoch;\n"
21467 "   char *app_version;\n"
21468 "   char *app_release;\n"
21469 "   char *app_install_path;\n"
21470 "   char *app_trans_path;\n"
21471 "   char *app_publisher;\n"
21472 "   char *app_url;\n"
21473 "   char *app_source_package;\n"
21474 "   char *app_summary;\n"
21475 "   char *app_description;\n"
21476 " };\n"
21477 " \n"
21478 msgstr ""
21479
21480 # type: verbatim
21481 #. type: verbatim
21482 #: ../src/guestfs-structs.pod:260
21483 #, no-wrap
21484 msgid ""
21485 " struct guestfs_application_list {\n"
21486 "   uint32_t len; /* Number of elements in list. */\n"
21487 "   struct guestfs_application *val; /* Elements. */\n"
21488 " };\n"
21489 " \n"
21490 msgstr ""
21491
21492 # type: verbatim
21493 #. type: verbatim
21494 #: ../src/guestfs-structs.pod:265
21495 #, no-wrap
21496 msgid ""
21497 " void guestfs_free_application (struct guestfs_free_application *);\n"
21498 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
21499 "\n"
21500 msgstr ""
21501
21502 # type: textblock
21503 #. type: textblock
21504 #: ../fish/guestfish.pod:5
21505 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
21506 msgstr ""
21507
21508 # type: verbatim
21509 #. type: verbatim
21510 #: ../fish/guestfish.pod:9
21511 #, no-wrap
21512 msgid ""
21513 " guestfish [--options] [commands]\n"
21514 "\n"
21515 msgstr ""
21516
21517 # type: verbatim
21518 #. type: verbatim
21519 #: ../fish/guestfish.pod:11
21520 #, no-wrap
21521 msgid ""
21522 " guestfish\n"
21523 "\n"
21524 msgstr ""
21525
21526 # type: verbatim
21527 #. type: verbatim
21528 #: ../fish/guestfish.pod:13
21529 #, no-wrap
21530 msgid ""
21531 " guestfish [--ro|--rw] -a disk.img\n"
21532 "\n"
21533 msgstr ""
21534
21535 # type: verbatim
21536 #. type: verbatim
21537 #: ../fish/guestfish.pod:15
21538 #, no-wrap
21539 msgid ""
21540 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
21541 "\n"
21542 msgstr ""
21543
21544 # type: verbatim
21545 #. type: verbatim
21546 #: ../fish/guestfish.pod:17
21547 #, no-wrap
21548 msgid ""
21549 " guestfish -d libvirt-domain\n"
21550 "\n"
21551 msgstr ""
21552
21553 # type: verbatim
21554 #. type: verbatim
21555 #: ../fish/guestfish.pod:19
21556 #, no-wrap
21557 msgid ""
21558 " guestfish [--ro|--rw] -a disk.img -i\n"
21559 "\n"
21560 msgstr ""
21561
21562 # type: verbatim
21563 #. type: verbatim
21564 #: ../fish/guestfish.pod:21
21565 #, no-wrap
21566 msgid ""
21567 " guestfish -d libvirt-domain -i\n"
21568 "\n"
21569 msgstr ""
21570
21571 # type: =head1
21572 #. type: =head1
21573 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-edit.pl:44
21574 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
21575 msgid "WARNING"
21576 msgstr ""
21577
21578 # type: textblock
21579 #. type: textblock
21580 #: ../fish/guestfish.pod:25
21581 msgid ""
21582 "Using guestfish in read/write mode on live virtual machines can be "
21583 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
21584 "option to use guestfish safely if the disk image or virtual machine might be "
21585 "live."
21586 msgstr ""
21587
21588 # type: textblock
21589 #. type: textblock
21590 #: ../fish/guestfish.pod:32
21591 msgid ""
21592 "Guestfish is a shell and command-line tool for examining and modifying "
21593 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
21594 "functionality of the guestfs API, see L<guestfs(3)>."
21595 msgstr ""
21596
21597 # type: textblock
21598 #. type: textblock
21599 #: ../fish/guestfish.pod:36
21600 msgid ""
21601 "Guestfish gives you structured access to the libguestfs API, from shell "
21602 "scripts or the command line or interactively.  If you want to rescue a "
21603 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
21604 "command."
21605 msgstr ""
21606
21607 # type: =head1
21608 #. type: =head1
21609 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:947
21610 #: ../fuse/guestmount.pod:39 ../tools/virt-edit.pl:63 ../tools/virt-tar.pl:50
21611 msgid "EXAMPLES"
21612 msgstr ""
21613
21614 # type: =head2
21615 #. type: =head2
21616 #: ../fish/guestfish.pod:43
21617 msgid "As an interactive shell"
21618 msgstr ""
21619
21620 # type: verbatim
21621 #. type: verbatim
21622 #: ../fish/guestfish.pod:45
21623 #, no-wrap
21624 msgid ""
21625 " $ guestfish\n"
21626 " \n"
21627 msgstr ""
21628
21629 # type: verbatim
21630 #. type: verbatim
21631 #: ../fish/guestfish.pod:47
21632 #, no-wrap
21633 msgid ""
21634 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
21635 " editing virtual machine filesystems.\n"
21636 " \n"
21637 msgstr ""
21638
21639 # type: verbatim
21640 #. type: verbatim
21641 #: ../fish/guestfish.pod:50
21642 #, no-wrap
21643 msgid ""
21644 " Type: 'help' for a list of commands\n"
21645 "       'man' to read the manual\n"
21646 "       'quit' to quit the shell\n"
21647 " \n"
21648 msgstr ""
21649
21650 # type: verbatim
21651 #. type: verbatim
21652 #: ../fish/guestfish.pod:54
21653 #, no-wrap
21654 msgid ""
21655 " ><fs> add-ro disk.img\n"
21656 " ><fs> run\n"
21657 " ><fs> list-filesystems\n"
21658 " /dev/sda1: ext4\n"
21659 " /dev/vg_guest/lv_root: ext4\n"
21660 " /dev/vg_guest/lv_swap: swap\n"
21661 " ><fs> mount /dev/vg_guest/lv_root /\n"
21662 " ><fs> cat /etc/fstab\n"
21663 " # /etc/fstab\n"
21664 " # Created by anaconda\n"
21665 " [...]\n"
21666 " ><fs> exit\n"
21667 "\n"
21668 msgstr ""
21669
21670 # type: =head2
21671 #. type: =head2
21672 #: ../fish/guestfish.pod:67
21673 msgid "From shell scripts"
21674 msgstr ""
21675
21676 # type: textblock
21677 #. type: textblock
21678 #: ../fish/guestfish.pod:69
21679 msgid "Create a new C</etc/motd> file in a guest or disk image:"
21680 msgstr ""
21681
21682 # type: verbatim
21683 #. type: verbatim
21684 #: ../fish/guestfish.pod:71
21685 #, no-wrap
21686 msgid ""
21687 " guestfish <<_EOF_\n"
21688 " add disk.img\n"
21689 " run\n"
21690 " mount /dev/vg_guest/lv_root /\n"
21691 " write /etc/motd \"Welcome, new users\"\n"
21692 " _EOF_\n"
21693 "\n"
21694 msgstr ""
21695
21696 # type: textblock
21697 #. type: textblock
21698 #: ../fish/guestfish.pod:78
21699 msgid "List the LVM logical volumes in a disk image:"
21700 msgstr ""
21701
21702 # type: verbatim
21703 #. type: verbatim
21704 #: ../fish/guestfish.pod:80
21705 #, no-wrap
21706 msgid ""
21707 " guestfish -a disk.img --ro <<_EOF_\n"
21708 " run\n"
21709 " lvs\n"
21710 " _EOF_\n"
21711 "\n"
21712 msgstr ""
21713
21714 # type: textblock
21715 #. type: textblock
21716 #: ../fish/guestfish.pod:85
21717 msgid "List all the filesystems in a disk image:"
21718 msgstr ""
21719
21720 # type: verbatim
21721 #. type: verbatim
21722 #: ../fish/guestfish.pod:87
21723 #, no-wrap
21724 msgid ""
21725 " guestfish -a disk.img --ro <<_EOF_\n"
21726 " run\n"
21727 " list-filesystems\n"
21728 " _EOF_\n"
21729 "\n"
21730 msgstr ""
21731
21732 # type: =head2
21733 #. type: =head2
21734 #: ../fish/guestfish.pod:92
21735 msgid "On one command line"
21736 msgstr ""
21737
21738 # type: textblock
21739 #. type: textblock
21740 #: ../fish/guestfish.pod:94
21741 msgid "Update C</etc/resolv.conf> in a guest:"
21742 msgstr ""
21743
21744 # type: verbatim
21745 #. type: verbatim
21746 #: ../fish/guestfish.pod:96
21747 #, no-wrap
21748 msgid ""
21749 " guestfish \\\n"
21750 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
21751 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
21752 "\n"
21753 msgstr ""
21754
21755 # type: textblock
21756 #. type: textblock
21757 #: ../fish/guestfish.pod:100
21758 msgid "Edit C</boot/grub/grub.conf> interactively:"
21759 msgstr ""
21760
21761 # type: verbatim
21762 #. type: verbatim
21763 #: ../fish/guestfish.pod:102
21764 #, no-wrap
21765 msgid ""
21766 " guestfish --rw --add disk.img \\\n"
21767 "   --mount /dev/vg_guest/lv_root \\\n"
21768 "   --mount /dev/sda1:/boot \\\n"
21769 "   edit /boot/grub/grub.conf\n"
21770 "\n"
21771 msgstr ""
21772
21773 # type: =head2
21774 #. type: =head2
21775 #: ../fish/guestfish.pod:107
21776 msgid "Mount disks automatically"
21777 msgstr ""
21778
21779 # type: textblock
21780 #. type: textblock
21781 #: ../fish/guestfish.pod:109
21782 msgid ""
21783 "Use the I<-i> option to automatically mount the disks from a virtual machine:"
21784 msgstr ""
21785
21786 # type: verbatim
21787 #. type: verbatim
21788 #: ../fish/guestfish.pod:112
21789 #, no-wrap
21790 msgid ""
21791 " guestfish --ro -a disk.img -i cat /etc/group\n"
21792 "\n"
21793 msgstr ""
21794
21795 # type: verbatim
21796 #. type: verbatim
21797 #: ../fish/guestfish.pod:114
21798 #, no-wrap
21799 msgid ""
21800 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
21801 "\n"
21802 msgstr ""
21803
21804 # type: textblock
21805 #. type: textblock
21806 #: ../fish/guestfish.pod:116
21807 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
21808 msgstr ""
21809
21810 # type: verbatim
21811 #. type: verbatim
21812 #: ../fish/guestfish.pod:118
21813 #, no-wrap
21814 msgid ""
21815 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
21816 "\n"
21817 msgstr ""
21818
21819 # type: =head2
21820 #. type: =head2
21821 #: ../fish/guestfish.pod:120
21822 msgid "As a script interpreter"
21823 msgstr ""
21824
21825 # type: textblock
21826 #. type: textblock
21827 #: ../fish/guestfish.pod:122
21828 msgid "Create a 100MB disk containing an ext2-formatted partition:"
21829 msgstr ""
21830
21831 # type: verbatim
21832 #. type: verbatim
21833 #: ../fish/guestfish.pod:124
21834 #, no-wrap
21835 msgid ""
21836 " #!/usr/bin/guestfish -f\n"
21837 " sparse test1.img 100M\n"
21838 " run\n"
21839 " part-disk /dev/sda mbr\n"
21840 " mkfs ext2 /dev/sda1\n"
21841 "\n"
21842 msgstr ""
21843
21844 # type: =head2
21845 #. type: =head2
21846 #: ../fish/guestfish.pod:130
21847 msgid "Start with a prepared disk"
21848 msgstr ""
21849
21850 # type: textblock
21851 #. type: textblock
21852 #: ../fish/guestfish.pod:132
21853 msgid ""
21854 "An alternate way to create a 100MB disk called C<test1.img> containing a "
21855 "single ext2-formatted partition:"
21856 msgstr ""
21857
21858 # type: verbatim
21859 #. type: verbatim
21860 #: ../fish/guestfish.pod:135
21861 #, no-wrap
21862 msgid ""
21863 " guestfish -N fs\n"
21864 "\n"
21865 msgstr ""
21866
21867 # type: textblock
21868 #. type: textblock
21869 #: ../fish/guestfish.pod:137
21870 msgid "To list what is available do:"
21871 msgstr ""
21872
21873 # type: verbatim
21874 #. type: verbatim
21875 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:938
21876 #, no-wrap
21877 msgid ""
21878 " guestfish -N help | less\n"
21879 "\n"
21880 msgstr ""
21881
21882 # type: =head2
21883 #. type: =head2
21884 #: ../fish/guestfish.pod:141
21885 msgid "Remote control"
21886 msgstr ""
21887
21888 # type: verbatim
21889 #. type: verbatim
21890 #: ../fish/guestfish.pod:143
21891 #, no-wrap
21892 msgid ""
21893 " eval \"`guestfish --listen`\"\n"
21894 " guestfish --remote add-ro disk.img\n"
21895 " guestfish --remote run\n"
21896 " guestfish --remote lvs\n"
21897 "\n"
21898 msgstr ""
21899
21900 # type: =head1
21901 #. type: =head1
21902 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
21903 #: ../fuse/guestmount.pod:83 ../tools/virt-edit.pl:81
21904 #: ../tools/virt-win-reg.pl:96 ../tools/virt-list-filesystems.pl:53
21905 #: ../tools/virt-tar.pl:103 ../tools/virt-make-fs.pl:153
21906 #: ../tools/virt-list-partitions.pl:54
21907 msgid "OPTIONS"
21908 msgstr ""
21909
21910 # type: =item
21911 #. type: =item
21912 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:141
21913 #: ../tools/virt-edit.pl:89 ../tools/virt-win-reg.pl:104
21914 #: ../tools/virt-list-filesystems.pl:61 ../tools/virt-tar.pl:111
21915 #: ../tools/virt-make-fs.pl:161 ../tools/virt-list-partitions.pl:62
21916 msgid "B<--help>"
21917 msgstr ""
21918
21919 # type: textblock
21920 #. type: textblock
21921 #: ../fish/guestfish.pod:154
21922 msgid "Displays general help on options."
21923 msgstr ""
21924
21925 # type: =item
21926 #. type: =item
21927 #: ../fish/guestfish.pod:156
21928 msgid "B<-h>"
21929 msgstr ""
21930
21931 # type: =item
21932 #. type: =item
21933 #: ../fish/guestfish.pod:158
21934 msgid "B<--cmd-help>"
21935 msgstr ""
21936
21937 # type: textblock
21938 #. type: textblock
21939 #: ../fish/guestfish.pod:160
21940 msgid "Lists all available guestfish commands."
21941 msgstr ""
21942
21943 # type: =item
21944 #. type: =item
21945 #: ../fish/guestfish.pod:162
21946 msgid "B<-h cmd>"
21947 msgstr ""
21948
21949 # type: =item
21950 #. type: =item
21951 #: ../fish/guestfish.pod:164
21952 msgid "B<--cmd-help cmd>"
21953 msgstr ""
21954
21955 # type: textblock
21956 #. type: textblock
21957 #: ../fish/guestfish.pod:166
21958 msgid "Displays detailed help on a single command C<cmd>."
21959 msgstr ""
21960
21961 # type: =item
21962 #. type: =item
21963 #: ../fish/guestfish.pod:168
21964 msgid "B<-a image>"
21965 msgstr ""
21966
21967 # type: =item
21968 #. type: =item
21969 #: ../fish/guestfish.pod:170
21970 msgid "B<--add image>"
21971 msgstr ""
21972
21973 # type: textblock
21974 #. type: textblock
21975 #: ../fish/guestfish.pod:172
21976 msgid "Add a block device or virtual machine image to the shell."
21977 msgstr ""
21978
21979 # type: textblock
21980 #. type: textblock
21981 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
21982 msgid ""
21983 "The format of the disk image is auto-detected.  To override this and force a "
21984 "particular format use the I<--format=..> option."
21985 msgstr ""
21986
21987 #. type: textblock
21988 #: ../fish/guestfish.pod:177
21989 msgid ""
21990 "Using this flag is mostly equivalent to using the C<add> command, with "
21991 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
21992 "the I<--format=...> flag was given."
21993 msgstr ""
21994
21995 # type: =item
21996 #. type: =item
21997 #: ../fish/guestfish.pod:181
21998 msgid "B<-c URI>"
21999 msgstr ""
22000
22001 # type: =item
22002 #. type: =item
22003 #: ../fish/guestfish.pod:183
22004 msgid "B<--connect URI>"
22005 msgstr ""
22006
22007 # type: textblock
22008 #. type: textblock
22009 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
22010 msgid ""
22011 "When used in conjunction with the I<-d> option, this specifies the libvirt "
22012 "URI to use.  The default is to use the default libvirt connection."
22013 msgstr ""
22014
22015 # type: =item
22016 #. type: =item
22017 #: ../fish/guestfish.pod:189
22018 msgid "B<--csh>"
22019 msgstr ""
22020
22021 # type: textblock
22022 #. type: textblock
22023 #: ../fish/guestfish.pod:191
22024 msgid ""
22025 "If using the I<--listen> option and a csh-like shell, use this option.  See "
22026 "section L</REMOTE CONTROL AND CSH> below."
22027 msgstr ""
22028
22029 # type: =item
22030 #. type: =item
22031 #: ../fish/guestfish.pod:194
22032 msgid "B<-d libvirt-domain>"
22033 msgstr ""
22034
22035 # type: =item
22036 #. type: =item
22037 #: ../fish/guestfish.pod:196
22038 msgid "B<--domain libvirt-domain>"
22039 msgstr ""
22040
22041 # type: textblock
22042 #. type: textblock
22043 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
22044 msgid ""
22045 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
22046 "used, then any libvirt domain can be used.  However in write mode, only "
22047 "libvirt domains which are shut down can be named here."
22048 msgstr ""
22049
22050 # type: textblock
22051 #. type: textblock
22052 #: ../fish/guestfish.pod:202
22053 msgid ""
22054 "Using this flag is mostly equivalent to using the C<add-domain> command, "
22055 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
22056 "if the I<--format:...> flag was given."
22057 msgstr ""
22058
22059 # type: =item
22060 #. type: =item
22061 #: ../fish/guestfish.pod:206
22062 msgid "B<-D>"
22063 msgstr ""
22064
22065 # type: =item
22066 #. type: =item
22067 #: ../fish/guestfish.pod:208
22068 msgid "B<--no-dest-paths>"
22069 msgstr ""
22070
22071 # type: textblock
22072 #. type: textblock
22073 #: ../fish/guestfish.pod:210
22074 msgid ""
22075 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
22076 "to hit the tab key to complete paths on the guest filesystem, but this "
22077 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
22078 "allow this feature to be disabled."
22079 msgstr ""
22080
22081 # type: =item
22082 #. type: =item
22083 #: ../fish/guestfish.pod:215 ../fuse/guestmount.pod:118
22084 msgid "B<--echo-keys>"
22085 msgstr ""
22086
22087 # type: textblock
22088 #. type: textblock
22089 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
22090 msgid ""
22091 "When prompting for keys and passphrases, guestfish normally turns echoing "
22092 "off so you cannot see what you are typing.  If you are not worried about "
22093 "Tempest attacks and there is no one else in the room you can specify this "
22094 "flag to see what you are typing."
22095 msgstr ""
22096
22097 # type: =item
22098 #. type: =item
22099 #: ../fish/guestfish.pod:222
22100 msgid "B<-f file>"
22101 msgstr ""
22102
22103 # type: =item
22104 #. type: =item
22105 #: ../fish/guestfish.pod:224
22106 msgid "B<--file file>"
22107 msgstr ""
22108
22109 # type: textblock
22110 #. type: textblock
22111 #: ../fish/guestfish.pod:226
22112 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
22113 msgstr ""
22114
22115 # type: verbatim
22116 #. type: verbatim
22117 #: ../fish/guestfish.pod:229
22118 #, no-wrap
22119 msgid ""
22120 " #!/usr/bin/guestfish -f\n"
22121 "\n"
22122 msgstr ""
22123
22124 # type: =item
22125 #. type: =item
22126 #: ../fish/guestfish.pod:231
22127 msgid "B<--format=raw|qcow2|..>"
22128 msgstr ""
22129
22130 # type: =item
22131 #. type: =item
22132 #: ../fish/guestfish.pod:233
22133 msgid "B<--format>"
22134 msgstr ""
22135
22136 # type: textblock
22137 #. type: textblock
22138 #: ../fish/guestfish.pod:235 ../fuse/guestmount.pod:127
22139 msgid ""
22140 "The default for the I<-a> option is to auto-detect the format of the disk "
22141 "image.  Using this forces the disk format for I<-a> options which follow on "
22142 "the command line.  Using I<--format> with no argument switches back to auto-"
22143 "detection for subsequent I<-a> options."
22144 msgstr ""
22145
22146 # type: verbatim
22147 #. type: verbatim
22148 #: ../fish/guestfish.pod:242
22149 #, no-wrap
22150 msgid ""
22151 " guestfish --format=raw -a disk.img\n"
22152 "\n"
22153 msgstr ""
22154
22155 # type: textblock
22156 #. type: textblock
22157 #: ../fish/guestfish.pod:244
22158 msgid "forces raw format (no auto-detection) for C<disk.img>."
22159 msgstr ""
22160
22161 # type: verbatim
22162 #. type: verbatim
22163 #: ../fish/guestfish.pod:246
22164 #, no-wrap
22165 msgid ""
22166 " guestfish --format=raw -a disk.img --format -a another.img\n"
22167 "\n"
22168 msgstr ""
22169
22170 # type: textblock
22171 #. type: textblock
22172 #: ../fish/guestfish.pod:248
22173 msgid ""
22174 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
22175 "detection for C<another.img>."
22176 msgstr ""
22177
22178 # type: textblock
22179 #. type: textblock
22180 #: ../fish/guestfish.pod:251
22181 msgid ""
22182 "If you have untrusted raw-format guest disk images, you should use this "
22183 "option to specify the disk format.  This avoids a possible security problem "
22184 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
22185 msgstr ""
22186
22187 # type: =item
22188 #. type: =item
22189 #: ../fish/guestfish.pod:256
22190 msgid "B<-i>"
22191 msgstr ""
22192
22193 # type: =item
22194 #. type: =item
22195 #: ../fish/guestfish.pod:258
22196 msgid "B<--inspector>"
22197 msgstr ""
22198
22199 # type: textblock
22200 #. type: textblock
22201 #: ../fish/guestfish.pod:260 ../fuse/guestmount.pod:147
22202 msgid ""
22203 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
22204 "system and mount filesystems as they would be mounted on the real virtual "
22205 "machine."
22206 msgstr ""
22207
22208 # type: textblock
22209 #. type: textblock
22210 #: ../fish/guestfish.pod:264
22211 msgid "Typical usage is either:"
22212 msgstr ""
22213
22214 # type: verbatim
22215 #. type: verbatim
22216 #: ../fish/guestfish.pod:266
22217 #, no-wrap
22218 msgid ""
22219 " guestfish -d myguest -i\n"
22220 "\n"
22221 msgstr ""
22222
22223 # type: textblock
22224 #. type: textblock
22225 #: ../fish/guestfish.pod:268
22226 msgid "(for an inactive libvirt domain called I<myguest>), or:"
22227 msgstr ""
22228
22229 # type: verbatim
22230 #. type: verbatim
22231 #: ../fish/guestfish.pod:270
22232 #, no-wrap
22233 msgid ""
22234 " guestfish --ro -d myguest -i\n"
22235 "\n"
22236 msgstr ""
22237
22238 # type: textblock
22239 #. type: textblock
22240 #: ../fish/guestfish.pod:272
22241 msgid "(for active domains, readonly), or specify the block device directly:"
22242 msgstr ""
22243
22244 # type: verbatim
22245 #. type: verbatim
22246 #: ../fish/guestfish.pod:274
22247 #, no-wrap
22248 msgid ""
22249 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
22250 "\n"
22251 msgstr ""
22252
22253 # type: textblock
22254 #. type: textblock
22255 #: ../fish/guestfish.pod:276
22256 msgid ""
22257 "Note that the command line syntax changed slightly over older versions of "
22258 "guestfish.  You can still use the old syntax:"
22259 msgstr ""
22260
22261 # type: verbatim
22262 #. type: verbatim
22263 #: ../fish/guestfish.pod:279
22264 #, no-wrap
22265 msgid ""
22266 " guestfish [--ro] -i disk.img\n"
22267 "\n"
22268 msgstr ""
22269
22270 # type: verbatim
22271 #. type: verbatim
22272 #: ../fish/guestfish.pod:281
22273 #, no-wrap
22274 msgid ""
22275 " guestfish [--ro] -i libvirt-domain\n"
22276 "\n"
22277 msgstr ""
22278
22279 # type: textblock
22280 #. type: textblock
22281 #: ../fish/guestfish.pod:283
22282 msgid ""
22283 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
22284 "then using other commands to mount the filesystems that were found."
22285 msgstr ""
22286
22287 # type: =item
22288 #. type: =item
22289 #: ../fish/guestfish.pod:287 ../fuse/guestmount.pod:151
22290 msgid "B<--keys-from-stdin>"
22291 msgstr ""
22292
22293 # type: textblock
22294 #. type: textblock
22295 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
22296 msgid ""
22297 "Read key or passphrase parameters from stdin.  The default is to try to read "
22298 "passphrases from the user by opening C</dev/tty>."
22299 msgstr ""
22300
22301 # type: =item
22302 #. type: =item
22303 #: ../fish/guestfish.pod:292
22304 msgid "B<--listen>"
22305 msgstr ""
22306
22307 # type: textblock
22308 #. type: textblock
22309 #: ../fish/guestfish.pod:294
22310 msgid ""
22311 "Fork into the background and listen for remote commands.  See section L</"
22312 "REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
22313 msgstr ""
22314
22315 #. type: =item
22316 #: ../fish/guestfish.pod:297 ../fuse/guestmount.pod:156
22317 msgid "B<--live>"
22318 msgstr ""
22319
22320 #. type: textblock
22321 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
22322 msgid ""
22323 "Connect to a live virtual machine.  (Experimental, see L<guestfs(3)/"
22324 "ATTACHING TO RUNNING DAEMONS>)."
22325 msgstr ""
22326
22327 #. type: =item
22328 #: ../fish/guestfish.pod:302 ../fuse/guestmount.pod:161
22329 msgid "B<-m dev[:mountpoint[:options]]>"
22330 msgstr ""
22331
22332 #. type: =item
22333 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
22334 msgid "B<--mount dev[:mountpoint[:options]]>"
22335 msgstr ""
22336
22337 # type: textblock
22338 #. type: textblock
22339 #: ../fish/guestfish.pod:306
22340 msgid "Mount the named partition or logical volume on the given mountpoint."
22341 msgstr ""
22342
22343 # type: textblock
22344 #. type: textblock
22345 #: ../fish/guestfish.pod:308
22346 msgid "If the mountpoint is omitted, it defaults to C</>."
22347 msgstr ""
22348
22349 # type: textblock
22350 #. type: textblock
22351 #: ../fish/guestfish.pod:310
22352 msgid "You have to mount something on C</> before most commands will work."
22353 msgstr ""
22354
22355 # type: textblock
22356 #. type: textblock
22357 #: ../fish/guestfish.pod:312
22358 msgid ""
22359 "If any I<-m> or I<--mount> options are given, the guest is automatically "
22360 "launched."
22361 msgstr ""
22362
22363 # type: textblock
22364 #. type: textblock
22365 #: ../fish/guestfish.pod:315
22366 msgid ""
22367 "If you don't know what filesystems a disk image contains, you can either run "
22368 "guestfish without this option, then list the partitions, filesystems and LVs "
22369 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
22370 "commands), or you can use the L<virt-filesystems(1)> program."
22371 msgstr ""
22372
22373 #. type: textblock
22374 #: ../fish/guestfish.pod:321 ../fuse/guestmount.pod:171
22375 msgid ""
22376 "The third (and rarely used) part of the mount parameter is the list of mount "
22377 "options used to mount the underlying filesystem.  If this is not given, then "
22378 "the mount options are either the empty string or C<ro> (the latter if the "
22379 "I<--ro> flag is used).  By specifying the mount options, you override this "
22380 "default choice.  Probably the only time you would use this is to enable ACLs "
22381 "and/or extended attributes if the filesystem can support them:"
22382 msgstr ""
22383
22384 #. type: verbatim
22385 #: ../fish/guestfish.pod:329 ../fuse/guestmount.pod:179
22386 #, no-wrap
22387 msgid ""
22388 " -m /dev/sda1:/:acl,user_xattr\n"
22389 "\n"
22390 msgstr ""
22391
22392 #. type: textblock
22393 #: ../fish/guestfish.pod:331
22394 msgid "Using this flag is equivalent to using the C<mount-options> command."
22395 msgstr ""
22396
22397 # type: =item
22398 #. type: =item
22399 #: ../fish/guestfish.pod:333
22400 msgid "B<-n>"
22401 msgstr ""
22402
22403 # type: =item
22404 #. type: =item
22405 #: ../fish/guestfish.pod:335
22406 msgid "B<--no-sync>"
22407 msgstr ""
22408
22409 # type: textblock
22410 #. type: textblock
22411 #: ../fish/guestfish.pod:337
22412 msgid ""
22413 "Disable autosync.  This is enabled by default.  See the discussion of "
22414 "autosync in the L<guestfs(3)> manpage."
22415 msgstr ""
22416
22417 # type: =item
22418 #. type: =item
22419 #: ../fish/guestfish.pod:340
22420 msgid "B<-N type>"
22421 msgstr ""
22422
22423 # type: =item
22424 #. type: =item
22425 #: ../fish/guestfish.pod:342
22426 msgid "B<--new type>"
22427 msgstr ""
22428
22429 # type: =item
22430 #. type: =item
22431 #: ../fish/guestfish.pod:344
22432 msgid "B<-N help>"
22433 msgstr ""
22434
22435 # type: textblock
22436 #. type: textblock
22437 #: ../fish/guestfish.pod:346
22438 msgid ""
22439 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
22440 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
22441 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
22442 "IMAGES> below."
22443 msgstr ""
22444
22445 # type: =item
22446 #. type: =item
22447 #: ../fish/guestfish.pod:351
22448 msgid "B<--progress-bars>"
22449 msgstr ""
22450
22451 # type: textblock
22452 #. type: textblock
22453 #: ../fish/guestfish.pod:353
22454 msgid "Enable progress bars, even when guestfish is used non-interactively."
22455 msgstr ""
22456
22457 # type: textblock
22458 #. type: textblock
22459 #: ../fish/guestfish.pod:355
22460 msgid ""
22461 "Progress bars are enabled by default when guestfish is used as an "
22462 "interactive shell."
22463 msgstr ""
22464
22465 # type: =item
22466 #. type: =item
22467 #: ../fish/guestfish.pod:358
22468 msgid "B<--no-progress-bars>"
22469 msgstr ""
22470
22471 # type: textblock
22472 #. type: textblock
22473 #: ../fish/guestfish.pod:360
22474 msgid "Disable progress bars."
22475 msgstr ""
22476
22477 # type: =item
22478 #. type: =item
22479 #: ../fish/guestfish.pod:362
22480 msgid "B<--remote[=pid]>"
22481 msgstr ""
22482
22483 # type: textblock
22484 #. type: textblock
22485 #: ../fish/guestfish.pod:364
22486 msgid ""
22487 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
22488 "CONTROL GUESTFISH OVER A SOCKET> below."
22489 msgstr ""
22490
22491 # type: =item
22492 #. type: =item
22493 #: ../fish/guestfish.pod:367
22494 msgid "B<-r>"
22495 msgstr ""
22496
22497 # type: =item
22498 #. type: =item
22499 #: ../fish/guestfish.pod:369
22500 msgid "B<--ro>"
22501 msgstr ""
22502
22503 # type: textblock
22504 #. type: textblock
22505 #: ../fish/guestfish.pod:371
22506 msgid ""
22507 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
22508 "mounts are done read-only."
22509 msgstr ""
22510
22511 # type: textblock
22512 #. type: textblock
22513 #: ../fish/guestfish.pod:374
22514 msgid ""
22515 "The option must always be used if the disk image or virtual machine might be "
22516 "running, and is generally recommended in cases where you don't need write "
22517 "access to the disk."
22518 msgstr ""
22519
22520 # type: textblock
22521 #. type: textblock
22522 #: ../fish/guestfish.pod:378
22523 msgid ""
22524 "Note that prepared disk images created with I<-N> are not affected by this "
22525 "option.  Also commands like C<add> are not affected - you have to specify "
22526 "the C<readonly:true> option explicitly if you need it."
22527 msgstr ""
22528
22529 # type: textblock
22530 #. type: textblock
22531 #: ../fish/guestfish.pod:382
22532 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
22533 msgstr ""
22534
22535 # type: =item
22536 #. type: =item
22537 #: ../fish/guestfish.pod:384 ../fuse/guestmount.pod:235
22538 msgid "B<--selinux>"
22539 msgstr ""
22540
22541 # type: textblock
22542 #. type: textblock
22543 #: ../fish/guestfish.pod:386
22544 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
22545 msgstr ""
22546
22547 # type: =item
22548 #. type: =item
22549 #: ../fish/guestfish.pod:388
22550 msgid "B<-v>"
22551 msgstr ""
22552
22553 # type: =item
22554 #. type: =item
22555 #: ../fish/guestfish.pod:390
22556 msgid "B<--verbose>"
22557 msgstr ""
22558
22559 # type: textblock
22560 #. type: textblock
22561 #: ../fish/guestfish.pod:392
22562 msgid ""
22563 "Enable very verbose messages.  This is particularly useful if you find a bug."
22564 msgstr ""
22565
22566 # type: =item
22567 #. type: =item
22568 #: ../fish/guestfish.pod:395
22569 msgid "B<-V>"
22570 msgstr ""
22571
22572 # type: =item
22573 #. type: =item
22574 #: ../fish/guestfish.pod:397 ../tools/virt-edit.pl:97
22575 #: ../tools/virt-win-reg.pl:112 ../tools/virt-list-filesystems.pl:69
22576 #: ../tools/virt-tar.pl:119 ../tools/virt-make-fs.pl:169
22577 #: ../tools/virt-list-partitions.pl:70
22578 msgid "B<--version>"
22579 msgstr ""
22580
22581 # type: textblock
22582 #. type: textblock
22583 #: ../fish/guestfish.pod:399
22584 msgid "Display the guestfish / libguestfs version number and exit."
22585 msgstr ""
22586
22587 # type: =item
22588 #. type: =item
22589 #: ../fish/guestfish.pod:401
22590 msgid "B<-w>"
22591 msgstr ""
22592
22593 # type: =item
22594 #. type: =item
22595 #: ../fish/guestfish.pod:403
22596 msgid "B<--rw>"
22597 msgstr ""
22598
22599 #. type: textblock
22600 #: ../fish/guestfish.pod:405 ../fuse/guestmount.pod:249
22601 msgid ""
22602 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
22603 "mounts are done read-write."
22604 msgstr ""
22605
22606 #. type: textblock
22607 #: ../fish/guestfish.pod:408
22608 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
22609 msgstr ""
22610
22611 # type: =item
22612 #. type: =item
22613 #: ../fish/guestfish.pod:410
22614 msgid "B<-x>"
22615 msgstr ""
22616
22617 # type: textblock
22618 #. type: textblock
22619 #: ../fish/guestfish.pod:412
22620 msgid "Echo each command before executing it."
22621 msgstr ""
22622
22623 # type: =head1
22624 #. type: =head1
22625 #: ../fish/guestfish.pod:416
22626 msgid "COMMANDS ON COMMAND LINE"
22627 msgstr ""
22628
22629 # type: textblock
22630 #. type: textblock
22631 #: ../fish/guestfish.pod:418
22632 msgid ""
22633 "Any additional (non-option) arguments are treated as commands to execute."
22634 msgstr ""
22635
22636 # type: textblock
22637 #. type: textblock
22638 #: ../fish/guestfish.pod:421
22639 msgid ""
22640 "Commands to execute should be separated by a colon (C<:>), where the colon "
22641 "is a separate parameter.  Thus:"
22642 msgstr ""
22643
22644 # type: verbatim
22645 #. type: verbatim
22646 #: ../fish/guestfish.pod:424
22647 #, no-wrap
22648 msgid ""
22649 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
22650 "\n"
22651 msgstr ""
22652
22653 # type: textblock
22654 #. type: textblock
22655 #: ../fish/guestfish.pod:426
22656 msgid ""
22657 "If there are no additional arguments, then we enter a shell, either an "
22658 "interactive shell with a prompt (if the input is a terminal) or a non-"
22659 "interactive shell."
22660 msgstr ""
22661
22662 # type: textblock
22663 #. type: textblock
22664 #: ../fish/guestfish.pod:430
22665 msgid ""
22666 "In either command line mode or non-interactive shell, the first command that "
22667 "gives an error causes the whole shell to exit.  In interactive mode (with a "
22668 "prompt) if a command fails, you can continue to enter commands."
22669 msgstr ""
22670
22671 # type: =head1
22672 #. type: =head1
22673 #: ../fish/guestfish.pod:435
22674 msgid "USING launch (OR run)"
22675 msgstr ""
22676
22677 # type: textblock
22678 #. type: textblock
22679 #: ../fish/guestfish.pod:437
22680 msgid ""
22681 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
22682 "then launch it, then mount any disks you need, and finally issue actions/"
22683 "commands.  So the general order of the day is:"
22684 msgstr ""
22685
22686 # type: textblock
22687 #. type: textblock
22688 #: ../fish/guestfish.pod:445
22689 msgid "add or -a/--add"
22690 msgstr ""
22691
22692 # type: textblock
22693 #. type: textblock
22694 #: ../fish/guestfish.pod:449
22695 msgid "launch (aka run)"
22696 msgstr ""
22697
22698 # type: textblock
22699 #. type: textblock
22700 #: ../fish/guestfish.pod:453
22701 msgid "mount or -m/--mount"
22702 msgstr ""
22703
22704 # type: textblock
22705 #. type: textblock
22706 #: ../fish/guestfish.pod:457
22707 msgid "any other commands"
22708 msgstr ""
22709
22710 # type: textblock
22711 #. type: textblock
22712 #: ../fish/guestfish.pod:461
22713 msgid ""
22714 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
22715 "guest before mounting or performing any other commands."
22716 msgstr ""
22717
22718 # type: textblock
22719 #. type: textblock
22720 #: ../fish/guestfish.pod:464
22721 msgid ""
22722 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
22723 "I<--new> options were given then C<run> is done automatically, simply "
22724 "because guestfish can't perform the action you asked for without doing this."
22725 msgstr ""
22726
22727 # type: =head1
22728 #. type: =head1
22729 #: ../fish/guestfish.pod:469
22730 msgid "OPENING DISKS FOR READ AND WRITE"
22731 msgstr ""
22732
22733 #. type: textblock
22734 #: ../fish/guestfish.pod:471
22735 msgid ""
22736 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
22737 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
22738 "I<-i> and I<-m> open disk images read-only or for writing."
22739 msgstr ""
22740
22741 #. type: textblock
22742 #: ../fish/guestfish.pod:476
22743 msgid ""
22744 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
22745 "opening disk images supplied on the command line for write.  To open a disk "
22746 "image read-only you have to do I<-a image --ro>."
22747 msgstr ""
22748
22749 # type: textblock
22750 #. type: textblock
22751 #: ../fish/guestfish.pod:480
22752 msgid ""
22753 "This matters: If you accidentally open a live VM disk image writable then "
22754 "you will cause irreversible disk corruption."
22755 msgstr ""
22756
22757 #. type: textblock
22758 #: ../fish/guestfish.pod:483
22759 msgid ""
22760 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
22761 "images will be opened read-only.  You will have to either specify "
22762 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
22763 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
22764 "access for disk images specified by those other command line options."
22765 msgstr ""
22766
22767 #. type: textblock
22768 #: ../fish/guestfish.pod:490
22769 msgid ""
22770 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
22771 "which does nothing (it is already the default).  However it is highly "
22772 "recommended that you use this option to indicate that you need write access, "
22773 "and prepare your scripts for the day when this option will be required for "
22774 "write access."
22775 msgstr ""
22776
22777 # type: textblock
22778 #. type: textblock
22779 #: ../fish/guestfish.pod:496
22780 msgid ""
22781 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
22782 "other libguestfs program apart from guestfish and guestmount."
22783 msgstr ""
22784
22785 # type: =head1
22786 #. type: =head1
22787 #: ../fish/guestfish.pod:499
22788 msgid "QUOTING"
22789 msgstr ""
22790
22791 # type: textblock
22792 #. type: textblock
22793 #: ../fish/guestfish.pod:501
22794 msgid ""
22795 "You can quote ordinary parameters using either single or double quotes.  For "
22796 "example:"
22797 msgstr ""
22798
22799 # type: verbatim
22800 #. type: verbatim
22801 #: ../fish/guestfish.pod:504
22802 #, no-wrap
22803 msgid ""
22804 " add \"file with a space.img\"\n"
22805 "\n"
22806 msgstr ""
22807
22808 # type: verbatim
22809 #. type: verbatim
22810 #: ../fish/guestfish.pod:506
22811 #, no-wrap
22812 msgid ""
22813 " rm '/file name'\n"
22814 "\n"
22815 msgstr ""
22816
22817 # type: verbatim
22818 #. type: verbatim
22819 #: ../fish/guestfish.pod:508
22820 #, no-wrap
22821 msgid ""
22822 " rm '/\"'\n"
22823 "\n"
22824 msgstr ""
22825
22826 # type: textblock
22827 #. type: textblock
22828 #: ../fish/guestfish.pod:510
22829 msgid ""
22830 "A few commands require a list of strings to be passed.  For these, use a "
22831 "whitespace-separated list, enclosed in quotes.  Strings containing "
22832 "whitespace to be passed through must be enclosed in single quotes.  A "
22833 "literal single quote must be escaped with a backslash."
22834 msgstr ""
22835
22836 # type: verbatim
22837 #. type: verbatim
22838 #: ../fish/guestfish.pod:515
22839 #, no-wrap
22840 msgid ""
22841 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
22842 " command \"/bin/echo 'foo      bar'\"\n"
22843 " command \"/bin/echo \\'foo\\'\"\n"
22844 "\n"
22845 msgstr ""
22846
22847 # type: =head1
22848 #. type: =head1
22849 #: ../fish/guestfish.pod:519
22850 msgid "OPTIONAL ARGUMENTS"
22851 msgstr ""
22852
22853 # type: textblock
22854 #. type: textblock
22855 #: ../fish/guestfish.pod:521
22856 msgid ""
22857 "Some commands take optional arguments.  These arguments appear in this "
22858 "documentation as C<[argname:..]>.  You can use them as in these examples:"
22859 msgstr ""
22860
22861 # type: verbatim
22862 #. type: verbatim
22863 #: ../fish/guestfish.pod:525
22864 #, no-wrap
22865 msgid ""
22866 " add-drive-opts filename\n"
22867 "\n"
22868 msgstr ""
22869
22870 # type: verbatim
22871 #. type: verbatim
22872 #: ../fish/guestfish.pod:527
22873 #, no-wrap
22874 msgid ""
22875 " add-drive-opts filename readonly:true\n"
22876 "\n"
22877 msgstr ""
22878
22879 # type: verbatim
22880 #. type: verbatim
22881 #: ../fish/guestfish.pod:529
22882 #, no-wrap
22883 msgid ""
22884 " add-drive-opts filename format:qcow2 readonly:false\n"
22885 "\n"
22886 msgstr ""
22887
22888 # type: textblock
22889 #. type: textblock
22890 #: ../fish/guestfish.pod:531
22891 msgid ""
22892 "Each optional argument can appear at most once.  All optional arguments must "
22893 "appear after the required ones."
22894 msgstr ""
22895
22896 # type: =head1
22897 #. type: =head1
22898 #: ../fish/guestfish.pod:534
22899 msgid "NUMBERS"
22900 msgstr ""
22901
22902 # type: textblock
22903 #. type: textblock
22904 #: ../fish/guestfish.pod:536
22905 msgid ""
22906 "This section applies to all commands which can take integers as parameters."
22907 msgstr ""
22908
22909 # type: =head2
22910 #. type: =head2
22911 #: ../fish/guestfish.pod:539
22912 msgid "SIZE SUFFIX"
22913 msgstr ""
22914
22915 # type: textblock
22916 #. type: textblock
22917 #: ../fish/guestfish.pod:541
22918 msgid ""
22919 "When the command takes a parameter measured in bytes, you can use one of the "
22920 "following suffixes to specify kilobytes, megabytes and larger sizes:"
22921 msgstr ""
22922
22923 # type: =item
22924 #. type: =item
22925 #: ../fish/guestfish.pod:547
22926 msgid "B<k> or B<K> or B<KiB>"
22927 msgstr ""
22928
22929 # type: textblock
22930 #. type: textblock
22931 #: ../fish/guestfish.pod:549
22932 msgid "The size in kilobytes (multiplied by 1024)."
22933 msgstr ""
22934
22935 # type: =item
22936 #. type: =item
22937 #: ../fish/guestfish.pod:551
22938 msgid "B<KB>"
22939 msgstr ""
22940
22941 # type: textblock
22942 #. type: textblock
22943 #: ../fish/guestfish.pod:553
22944 msgid "The size in SI 1000 byte units."
22945 msgstr ""
22946
22947 # type: =item
22948 #. type: =item
22949 #: ../fish/guestfish.pod:555
22950 msgid "B<M> or B<MiB>"
22951 msgstr ""
22952
22953 # type: textblock
22954 #. type: textblock
22955 #: ../fish/guestfish.pod:557
22956 msgid "The size in megabytes (multiplied by 1048576)."
22957 msgstr ""
22958
22959 # type: =item
22960 #. type: =item
22961 #: ../fish/guestfish.pod:559
22962 msgid "B<MB>"
22963 msgstr ""
22964
22965 # type: textblock
22966 #. type: textblock
22967 #: ../fish/guestfish.pod:561
22968 msgid "The size in SI 1000000 byte units."
22969 msgstr ""
22970
22971 # type: =item
22972 #. type: =item
22973 #: ../fish/guestfish.pod:563
22974 msgid "B<G> or B<GiB>"
22975 msgstr ""
22976
22977 # type: textblock
22978 #. type: textblock
22979 #: ../fish/guestfish.pod:565
22980 msgid "The size in gigabytes (multiplied by 2**30)."
22981 msgstr ""
22982
22983 # type: =item
22984 #. type: =item
22985 #: ../fish/guestfish.pod:567
22986 msgid "B<GB>"
22987 msgstr ""
22988
22989 # type: textblock
22990 #. type: textblock
22991 #: ../fish/guestfish.pod:569
22992 msgid "The size in SI 10**9 byte units."
22993 msgstr ""
22994
22995 # type: =item
22996 #. type: =item
22997 #: ../fish/guestfish.pod:571
22998 msgid "B<T> or B<TiB>"
22999 msgstr ""
23000
23001 # type: textblock
23002 #. type: textblock
23003 #: ../fish/guestfish.pod:573
23004 msgid "The size in terabytes (multiplied by 2**40)."
23005 msgstr ""
23006
23007 # type: =item
23008 #. type: =item
23009 #: ../fish/guestfish.pod:575
23010 msgid "B<TB>"
23011 msgstr ""
23012
23013 # type: textblock
23014 #. type: textblock
23015 #: ../fish/guestfish.pod:577
23016 msgid "The size in SI 10**12 byte units."
23017 msgstr ""
23018
23019 # type: =item
23020 #. type: =item
23021 #: ../fish/guestfish.pod:579
23022 msgid "B<P> or B<PiB>"
23023 msgstr ""
23024
23025 # type: textblock
23026 #. type: textblock
23027 #: ../fish/guestfish.pod:581
23028 msgid "The size in petabytes (multiplied by 2**50)."
23029 msgstr ""
23030
23031 # type: =item
23032 #. type: =item
23033 #: ../fish/guestfish.pod:583
23034 msgid "B<PB>"
23035 msgstr ""
23036
23037 # type: textblock
23038 #. type: textblock
23039 #: ../fish/guestfish.pod:585
23040 msgid "The size in SI 10**15 byte units."
23041 msgstr ""
23042
23043 # type: =item
23044 #. type: =item
23045 #: ../fish/guestfish.pod:587
23046 msgid "B<E> or B<EiB>"
23047 msgstr ""
23048
23049 # type: textblock
23050 #. type: textblock
23051 #: ../fish/guestfish.pod:589
23052 msgid "The size in exabytes (multiplied by 2**60)."
23053 msgstr ""
23054
23055 # type: =item
23056 #. type: =item
23057 #: ../fish/guestfish.pod:591
23058 msgid "B<EB>"
23059 msgstr ""
23060
23061 # type: textblock
23062 #. type: textblock
23063 #: ../fish/guestfish.pod:593
23064 msgid "The size in SI 10**18 byte units."
23065 msgstr ""
23066
23067 # type: =item
23068 #. type: =item
23069 #: ../fish/guestfish.pod:595
23070 msgid "B<Z> or B<ZiB>"
23071 msgstr ""
23072
23073 # type: textblock
23074 #. type: textblock
23075 #: ../fish/guestfish.pod:597
23076 msgid "The size in zettabytes (multiplied by 2**70)."
23077 msgstr ""
23078
23079 # type: =item
23080 #. type: =item
23081 #: ../fish/guestfish.pod:599
23082 msgid "B<ZB>"
23083 msgstr ""
23084
23085 # type: textblock
23086 #. type: textblock
23087 #: ../fish/guestfish.pod:601
23088 msgid "The size in SI 10**21 byte units."
23089 msgstr ""
23090
23091 # type: =item
23092 #. type: =item
23093 #: ../fish/guestfish.pod:603
23094 msgid "B<Y> or B<YiB>"
23095 msgstr ""
23096
23097 # type: textblock
23098 #. type: textblock
23099 #: ../fish/guestfish.pod:605
23100 msgid "The size in yottabytes (multiplied by 2**80)."
23101 msgstr ""
23102
23103 # type: =item
23104 #. type: =item
23105 #: ../fish/guestfish.pod:607
23106 msgid "B<YB>"
23107 msgstr ""
23108
23109 # type: textblock
23110 #. type: textblock
23111 #: ../fish/guestfish.pod:609
23112 msgid "The size in SI 10**24 byte units."
23113 msgstr ""
23114
23115 # type: verbatim
23116 #. type: verbatim
23117 #: ../fish/guestfish.pod:615
23118 #, no-wrap
23119 msgid ""
23120 " truncate-size /file 1G\n"
23121 "\n"
23122 msgstr ""
23123
23124 # type: textblock
23125 #. type: textblock
23126 #: ../fish/guestfish.pod:617
23127 msgid "would truncate the file to 1 gigabyte."
23128 msgstr ""
23129
23130 # type: textblock
23131 #. type: textblock
23132 #: ../fish/guestfish.pod:619
23133 msgid ""
23134 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
23135 "the parameter to L</memsize> is specified in megabytes already).  Adding a "
23136 "suffix will probably not do what you expect."
23137 msgstr ""
23138
23139 # type: =head2
23140 #. type: =head2
23141 #: ../fish/guestfish.pod:623
23142 msgid "OCTAL AND HEXADECIMAL NUMBERS"
23143 msgstr ""
23144
23145 # type: textblock
23146 #. type: textblock
23147 #: ../fish/guestfish.pod:625
23148 msgid ""
23149 "For specifying the radix (base) use the C convention: C<0> to prefix an "
23150 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
23151 msgstr ""
23152
23153 # type: verbatim
23154 #. type: verbatim
23155 #: ../fish/guestfish.pod:628
23156 #, no-wrap
23157 msgid ""
23158 " 1234      decimal number 1234\n"
23159 " 02322     octal number, equivalent to decimal 1234\n"
23160 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
23161 "\n"
23162 msgstr ""
23163
23164 # type: textblock
23165 #. type: textblock
23166 #: ../fish/guestfish.pod:632
23167 msgid ""
23168 "When using the C<chmod> command, you almost always want to specify an octal "
23169 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
23170 "L<chmod(1)> program):"
23171 msgstr ""
23172
23173 # type: verbatim
23174 #. type: verbatim
23175 #: ../fish/guestfish.pod:636
23176 #, no-wrap
23177 msgid ""
23178 " chmod 0777 /public  # OK\n"
23179 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
23180 "\n"
23181 msgstr ""
23182
23183 # type: textblock
23184 #. type: textblock
23185 #: ../fish/guestfish.pod:639
23186 msgid ""
23187 "Commands that return numbers usually print them in decimal, but some "
23188 "commands print numbers in other radices (eg. C<umask> prints the mode in "
23189 "octal, preceeded by C<0>)."
23190 msgstr ""
23191
23192 # type: =head1
23193 #. type: =head1
23194 #: ../fish/guestfish.pod:643
23195 msgid "WILDCARDS AND GLOBBING"
23196 msgstr ""
23197
23198 # type: textblock
23199 #. type: textblock
23200 #: ../fish/guestfish.pod:645
23201 msgid ""
23202 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
23203 "(globbing) by default.  So for example the following will not do what you "
23204 "expect:"
23205 msgstr ""
23206
23207 # type: verbatim
23208 #. type: verbatim
23209 #: ../fish/guestfish.pod:649
23210 #, no-wrap
23211 msgid ""
23212 " rm-rf /home/*\n"
23213 "\n"
23214 msgstr ""
23215
23216 # type: textblock
23217 #. type: textblock
23218 #: ../fish/guestfish.pod:651
23219 msgid ""
23220 "Assuming you don't have a directory called literally C</home/*> then the "
23221 "above command will return an error."
23222 msgstr ""
23223
23224 # type: textblock
23225 #. type: textblock
23226 #: ../fish/guestfish.pod:654
23227 msgid "To perform wildcard expansion, use the C<glob> command."
23228 msgstr ""
23229
23230 # type: verbatim
23231 #. type: verbatim
23232 #: ../fish/guestfish.pod:656
23233 #, no-wrap
23234 msgid ""
23235 " glob rm-rf /home/*\n"
23236 "\n"
23237 msgstr ""
23238
23239 # type: textblock
23240 #. type: textblock
23241 #: ../fish/guestfish.pod:658
23242 msgid ""
23243 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
23244 "many times), equivalent to:"
23245 msgstr ""
23246
23247 # type: verbatim
23248 #. type: verbatim
23249 #: ../fish/guestfish.pod:661
23250 #, no-wrap
23251 msgid ""
23252 " rm-rf /home/jim\n"
23253 " rm-rf /home/joe\n"
23254 " rm-rf /home/mary\n"
23255 "\n"
23256 msgstr ""
23257
23258 # type: textblock
23259 #. type: textblock
23260 #: ../fish/guestfish.pod:665
23261 msgid "C<glob> only works on simple guest paths and not on device names."
23262 msgstr ""
23263
23264 # type: textblock
23265 #. type: textblock
23266 #: ../fish/guestfish.pod:667
23267 msgid ""
23268 "If you have several parameters, each containing a wildcard, then glob will "
23269 "perform a Cartesian product."
23270 msgstr ""
23271
23272 # type: =head1
23273 #. type: =head1
23274 #: ../fish/guestfish.pod:670
23275 msgid "COMMENTS"
23276 msgstr ""
23277
23278 # type: textblock
23279 #. type: textblock
23280 #: ../fish/guestfish.pod:672
23281 msgid ""
23282 "Any line which starts with a I<#> character is treated as a comment and "
23283 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
23284 "a command.  For example:"
23285 msgstr ""
23286
23287 # type: verbatim
23288 #. type: verbatim
23289 #: ../fish/guestfish.pod:676
23290 #, no-wrap
23291 msgid ""
23292 " # this is a comment\n"
23293 "         # this is a comment\n"
23294 " foo # NOT a comment\n"
23295 "\n"
23296 msgstr ""
23297
23298 # type: textblock
23299 #. type: textblock
23300 #: ../fish/guestfish.pod:680
23301 msgid "Blank lines are also ignored."
23302 msgstr ""
23303
23304 # type: =head1
23305 #. type: =head1
23306 #: ../fish/guestfish.pod:682
23307 msgid "RUNNING COMMANDS LOCALLY"
23308 msgstr ""
23309
23310 # type: textblock
23311 #. type: textblock
23312 #: ../fish/guestfish.pod:684
23313 msgid ""
23314 "Any line which starts with a I<!> character is treated as a command sent to "
23315 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
23316 msgstr ""
23317
23318 # type: verbatim
23319 #. type: verbatim
23320 #: ../fish/guestfish.pod:688
23321 #, no-wrap
23322 msgid ""
23323 " !mkdir local\n"
23324 " tgz-out /remote local/remote-data.tar.gz\n"
23325 "\n"
23326 msgstr ""
23327
23328 # type: textblock
23329 #. type: textblock
23330 #: ../fish/guestfish.pod:691
23331 msgid ""
23332 "will create a directory C<local> on the host, and then export the contents "
23333 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
23334 "(See C<tgz-out>)."
23335 msgstr ""
23336
23337 # type: textblock
23338 #. type: textblock
23339 #: ../fish/guestfish.pod:695
23340 msgid ""
23341 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
23342 "effect, due to the way that subprocesses work in Unix."
23343 msgstr ""
23344
23345 #. type: =head2
23346 #: ../fish/guestfish.pod:698
23347 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
23348 msgstr ""
23349
23350 #. type: textblock
23351 #: ../fish/guestfish.pod:700
23352 msgid ""
23353 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
23354 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
23355 "and executed as guestfish commands."
23356 msgstr ""
23357
23358 #. type: textblock
23359 #: ../fish/guestfish.pod:704
23360 msgid ""
23361 "Thus you can use shell script to construct arbitrary guestfish commands "
23362 "which are then parsed by guestfish."
23363 msgstr ""
23364
23365 #. type: textblock
23366 #: ../fish/guestfish.pod:707
23367 msgid ""
23368 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
23369 "through C</foo.100>) using guestfish commands alone.  However this is simple "
23370 "if we use a shell script to create the guestfish commands for us:"
23371 msgstr ""
23372
23373 #. type: verbatim
23374 #: ../fish/guestfish.pod:712
23375 #, no-wrap
23376 msgid ""
23377 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
23378 "\n"
23379 msgstr ""
23380
23381 #. type: textblock
23382 #: ../fish/guestfish.pod:714
23383 msgid "or with names like C</foo.001>:"
23384 msgstr ""
23385
23386 #. type: verbatim
23387 #: ../fish/guestfish.pod:716
23388 #, no-wrap
23389 msgid ""
23390 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
23391 "\n"
23392 msgstr ""
23393
23394 #. type: textblock
23395 #: ../fish/guestfish.pod:718
23396 msgid ""
23397 "When using guestfish interactively it can be helpful to just run the shell "
23398 "script first (ie. remove the initial C<E<lt>> character so it is just an "
23399 "ordinary I<!> local command), see what guestfish commands it would run, and "
23400 "when you are happy with those prepend the C<E<lt>> character to run the "
23401 "guestfish commands for real."
23402 msgstr ""
23403
23404 # type: =head1
23405 #. type: =head1
23406 #: ../fish/guestfish.pod:724
23407 msgid "PIPES"
23408 msgstr ""
23409
23410 # type: textblock
23411 #. type: textblock
23412 #: ../fish/guestfish.pod:726
23413 msgid ""
23414 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
23415 "command (a guestfish command) to the second command (any host command).  For "
23416 "example:"
23417 msgstr ""
23418
23419 # type: verbatim
23420 #. type: verbatim
23421 #: ../fish/guestfish.pod:730
23422 #, no-wrap
23423 msgid ""
23424 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
23425 "\n"
23426 msgstr ""
23427
23428 # type: textblock
23429 #. type: textblock
23430 #: ../fish/guestfish.pod:732
23431 msgid ""
23432 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
23433 "program).  The above command would list all accounts in the guest filesystem "
23434 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
23435 msgstr ""
23436
23437 # type: verbatim
23438 #. type: verbatim
23439 #: ../fish/guestfish.pod:737
23440 #, no-wrap
23441 msgid ""
23442 " hexdump /bin/ls | head\n"
23443 " list-devices | tail -1\n"
23444 " tgz-out / - | tar ztf -\n"
23445 "\n"
23446 msgstr ""
23447
23448 # type: textblock
23449 #. type: textblock
23450 #: ../fish/guestfish.pod:741
23451 msgid ""
23452 "The space before the pipe symbol is required, any space after the pipe "
23453 "symbol is optional.  Everything after the pipe symbol is just passed "
23454 "straight to the host shell, so it can contain redirections, globs and "
23455 "anything else that makes sense on the host side."
23456 msgstr ""
23457
23458 # type: textblock
23459 #. type: textblock
23460 #: ../fish/guestfish.pod:746
23461 msgid ""
23462 "To use a literal argument which begins with a pipe symbol, you have to quote "
23463 "it, eg:"
23464 msgstr ""
23465
23466 # type: verbatim
23467 #. type: verbatim
23468 #: ../fish/guestfish.pod:749
23469 #, no-wrap
23470 msgid ""
23471 " echo \"|\"\n"
23472 "\n"
23473 msgstr ""
23474
23475 # type: =head1
23476 #. type: =head1
23477 #: ../fish/guestfish.pod:751
23478 msgid "HOME DIRECTORIES"
23479 msgstr ""
23480
23481 # type: textblock
23482 #. type: textblock
23483 #: ../fish/guestfish.pod:753
23484 msgid ""
23485 "If a parameter starts with the character C<~> then the tilde may be expanded "
23486 "as a home directory path (either C<~> for the current user's home directory, "
23487 "or C<~user> for another user)."
23488 msgstr ""
23489
23490 # type: textblock
23491 #. type: textblock
23492 #: ../fish/guestfish.pod:757
23493 msgid ""
23494 "Note that home directory expansion happens for users known I<on the host>, "
23495 "not in the guest filesystem."
23496 msgstr ""
23497
23498 # type: textblock
23499 #. type: textblock
23500 #: ../fish/guestfish.pod:760
23501 msgid ""
23502 "To use a literal argument which begins with a tilde, you have to quote it, "
23503 "eg:"
23504 msgstr ""
23505
23506 # type: verbatim
23507 #. type: verbatim
23508 #: ../fish/guestfish.pod:763
23509 #, no-wrap
23510 msgid ""
23511 " echo \"~\"\n"
23512 "\n"
23513 msgstr ""
23514
23515 # type: textblock
23516 #. type: textblock
23517 #: ../fish/guestfish.pod:767
23518 msgid ""
23519 "Libguestfs has some support for Linux guests encrypted according to the "
23520 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
23521 "disk encryption systems used by modern Linux guests.  Currently only LVM-on-"
23522 "LUKS is supported."
23523 msgstr ""
23524
23525 # type: textblock
23526 #. type: textblock
23527 #: ../fish/guestfish.pod:772
23528 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
23529 msgstr ""
23530
23531 # type: verbatim
23532 #. type: verbatim
23533 #: ../fish/guestfish.pod:774
23534 #, no-wrap
23535 msgid ""
23536 " ><fs> vfs-type /dev/sda2\n"
23537 " crypto_LUKS\n"
23538 "\n"
23539 msgstr ""
23540
23541 # type: textblock
23542 #. type: textblock
23543 #: ../fish/guestfish.pod:777
23544 msgid ""
23545 "Then open those devices using L</luks-open>.  This creates a device-mapper "
23546 "device called C</dev/mapper/luksdev>."
23547 msgstr ""
23548
23549 # type: verbatim
23550 #. type: verbatim
23551 #: ../fish/guestfish.pod:780
23552 #, no-wrap
23553 msgid ""
23554 " ><fs> luks-open /dev/sda2 luksdev\n"
23555 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
23556 "\n"
23557 msgstr ""
23558
23559 # type: textblock
23560 #. type: textblock
23561 #: ../fish/guestfish.pod:783
23562 msgid ""
23563 "Finally you have to tell LVM to scan for volume groups on the newly created "
23564 "mapper device:"
23565 msgstr ""
23566
23567 # type: verbatim
23568 #. type: verbatim
23569 #: ../fish/guestfish.pod:786
23570 #, no-wrap
23571 msgid ""
23572 " vgscan\n"
23573 " vg-activate-all true\n"
23574 "\n"
23575 msgstr ""
23576
23577 # type: textblock
23578 #. type: textblock
23579 #: ../fish/guestfish.pod:789
23580 msgid "The logical volume(s) can now be mounted in the usual way."
23581 msgstr ""
23582
23583 # type: textblock
23584 #. type: textblock
23585 #: ../fish/guestfish.pod:791
23586 msgid ""
23587 "Before closing a LUKS device you must unmount any logical volumes on it and "
23588 "deactivate the volume groups by calling C<vg-activate false VG> on each "
23589 "one.  Then you can close the mapper device:"
23590 msgstr ""
23591
23592 # type: verbatim
23593 #. type: verbatim
23594 #: ../fish/guestfish.pod:795
23595 #, no-wrap
23596 msgid ""
23597 " vg-activate false /dev/VG\n"
23598 " luks-close /dev/mapper/luksdev\n"
23599 "\n"
23600 msgstr ""
23601
23602 # type: =head1
23603 #. type: =head1
23604 #: ../fish/guestfish.pod:798 ../tools/virt-edit.pl:342
23605 msgid "WINDOWS PATHS"
23606 msgstr ""
23607
23608 #. type: textblock
23609 #: ../fish/guestfish.pod:800
23610 msgid ""
23611 "If a path is prefixed with C<win:> then you can use Windows-style drive "
23612 "letters and paths (with some limitations).  The following commands are "
23613 "equivalent:"
23614 msgstr ""
23615
23616 # type: verbatim
23617 #. type: verbatim
23618 #: ../fish/guestfish.pod:804
23619 #, no-wrap
23620 msgid ""
23621 " file /WINDOWS/system32/config/system.LOG\n"
23622 "\n"
23623 msgstr ""
23624
23625 # type: verbatim
23626 #. type: verbatim
23627 #: ../fish/guestfish.pod:806
23628 #, no-wrap
23629 msgid ""
23630 " file win:\\windows\\system32\\config\\system.log\n"
23631 "\n"
23632 msgstr ""
23633
23634 #. type: verbatim
23635 #: ../fish/guestfish.pod:808
23636 #, no-wrap
23637 msgid ""
23638 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
23639 "\n"
23640 msgstr ""
23641
23642 #. type: textblock
23643 #: ../fish/guestfish.pod:810
23644 msgid ""
23645 "The parameter is rewritten \"behind the scenes\" by looking up the position "
23646 "where the drive is mounted, prepending that to the path, changing all "
23647 "backslash characters to forward slash, then resolving the result using L</"
23648 "case-sensitive-path>.  For example if the E: drive was mounted on C</e> then "
23649 "the parameter might be rewritten like this:"
23650 msgstr ""
23651
23652 #. type: verbatim
23653 #: ../fish/guestfish.pod:816
23654 #, no-wrap
23655 msgid ""
23656 " win:e:\\foo\\bar => /e/FOO/bar\n"
23657 "\n"
23658 msgstr ""
23659
23660 #. type: textblock
23661 #: ../fish/guestfish.pod:818
23662 msgid "This only works in argument positions that expect a path."
23663 msgstr ""
23664
23665 # type: =head1
23666 #. type: =head1
23667 #: ../fish/guestfish.pod:820
23668 msgid "UPLOADING AND DOWNLOADING FILES"
23669 msgstr ""
23670
23671 # type: textblock
23672 #. type: textblock
23673 #: ../fish/guestfish.pod:822
23674 msgid ""
23675 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
23676 "others which upload from or download to a local file, you can use the "
23677 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
23678 msgstr ""
23679
23680 # type: verbatim
23681 #. type: verbatim
23682 #: ../fish/guestfish.pod:826
23683 #, no-wrap
23684 msgid ""
23685 " upload - /foo\n"
23686 "\n"
23687 msgstr ""
23688
23689 # type: textblock
23690 #. type: textblock
23691 #: ../fish/guestfish.pod:828
23692 msgid ""
23693 "reads stdin and creates from that a file C</foo> in the disk image, and:"
23694 msgstr ""
23695
23696 # type: verbatim
23697 #. type: verbatim
23698 #: ../fish/guestfish.pod:831
23699 #, no-wrap
23700 msgid ""
23701 " tar-out /etc - | tar tf -\n"
23702 "\n"
23703 msgstr ""
23704
23705 # type: textblock
23706 #. type: textblock
23707 #: ../fish/guestfish.pod:833
23708 msgid ""
23709 "writes the tarball to stdout and then pipes that into the external \"tar\" "
23710 "command (see L</PIPES>)."
23711 msgstr ""
23712
23713 # type: textblock
23714 #. type: textblock
23715 #: ../fish/guestfish.pod:836
23716 msgid ""
23717 "When using C<-> to read from stdin, the input is read up to the end of "
23718 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
23719 "some arbitrary end marker:"
23720 msgstr ""
23721
23722 # type: verbatim
23723 #. type: verbatim
23724 #: ../fish/guestfish.pod:840
23725 #, no-wrap
23726 msgid ""
23727 " upload -<<END /foo\n"
23728 " input line 1\n"
23729 " input line 2\n"
23730 " input line 3\n"
23731 " END\n"
23732 "\n"
23733 msgstr ""
23734
23735 # type: textblock
23736 #. type: textblock
23737 #: ../fish/guestfish.pod:846
23738 msgid ""
23739 "Any string of characters can be used instead of C<END>.  The end marker must "
23740 "appear on a line of its own, without any preceeding or following characters "
23741 "(not even spaces)."
23742 msgstr ""
23743
23744 # type: textblock
23745 #. type: textblock
23746 #: ../fish/guestfish.pod:850
23747 msgid ""
23748 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
23749 "upload local files (so-called \"FileIn\" parameters in the generator)."
23750 msgstr ""
23751
23752 # type: =head1
23753 #. type: =head1
23754 #: ../fish/guestfish.pod:853
23755 msgid "EXIT ON ERROR BEHAVIOUR"
23756 msgstr ""
23757
23758 # type: textblock
23759 #. type: textblock
23760 #: ../fish/guestfish.pod:855
23761 msgid ""
23762 "By default, guestfish will ignore any errors when in interactive mode (ie. "
23763 "taking commands from a human over a tty), and will exit on the first error "
23764 "in non-interactive mode (scripts, commands given on the command line)."
23765 msgstr ""
23766
23767 # type: textblock
23768 #. type: textblock
23769 #: ../fish/guestfish.pod:860
23770 msgid ""
23771 "If you prefix a command with a I<-> character, then that command will not "
23772 "cause guestfish to exit, even if that (one) command returns an error."
23773 msgstr ""
23774
23775 # type: =head1
23776 #. type: =head1
23777 #: ../fish/guestfish.pod:864
23778 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
23779 msgstr ""
23780
23781 # type: textblock
23782 #. type: textblock
23783 #: ../fish/guestfish.pod:866
23784 msgid ""
23785 "Guestfish can be remote-controlled over a socket.  This is useful "
23786 "particularly in shell scripts where you want to make several different "
23787 "changes to a filesystem, but you don't want the overhead of starting up a "
23788 "guestfish process each time."
23789 msgstr ""
23790
23791 # type: textblock
23792 #. type: textblock
23793 #: ../fish/guestfish.pod:871
23794 msgid "Start a guestfish server process using:"
23795 msgstr ""
23796
23797 # type: verbatim
23798 #. type: verbatim
23799 #: ../fish/guestfish.pod:873
23800 #, no-wrap
23801 msgid ""
23802 " eval \"`guestfish --listen`\"\n"
23803 "\n"
23804 msgstr ""
23805
23806 # type: textblock
23807 #. type: textblock
23808 #: ../fish/guestfish.pod:875
23809 msgid "and then send it commands by doing:"
23810 msgstr ""
23811
23812 # type: verbatim
23813 #. type: verbatim
23814 #: ../fish/guestfish.pod:877
23815 #, no-wrap
23816 msgid ""
23817 " guestfish --remote cmd [...]\n"
23818 "\n"
23819 msgstr ""
23820
23821 # type: textblock
23822 #. type: textblock
23823 #: ../fish/guestfish.pod:879
23824 msgid "To cause the server to exit, send it the exit command:"
23825 msgstr ""
23826
23827 # type: verbatim
23828 #. type: verbatim
23829 #: ../fish/guestfish.pod:881
23830 #, no-wrap
23831 msgid ""
23832 " guestfish --remote exit\n"
23833 "\n"
23834 msgstr ""
23835
23836 # type: textblock
23837 #. type: textblock
23838 #: ../fish/guestfish.pod:883
23839 msgid ""
23840 "Note that the server will normally exit if there is an error in a command.  "
23841 "You can change this in the usual way.  See section L</EXIT ON ERROR "
23842 "BEHAVIOUR>."
23843 msgstr ""
23844
23845 # type: =head2
23846 #. type: =head2
23847 #: ../fish/guestfish.pod:887
23848 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
23849 msgstr ""
23850
23851 # type: textblock
23852 #. type: textblock
23853 #: ../fish/guestfish.pod:889
23854 msgid ""
23855 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
23856 "is how the I<--remote> option knows where to send the commands.  You can "
23857 "have several guestfish listener processes running using:"
23858 msgstr ""
23859
23860 # type: verbatim
23861 #. type: verbatim
23862 #: ../fish/guestfish.pod:893
23863 #, no-wrap
23864 msgid ""
23865 " eval \"`guestfish --listen`\"\n"
23866 " pid1=$GUESTFISH_PID\n"
23867 " eval \"`guestfish --listen`\"\n"
23868 " pid2=$GUESTFISH_PID\n"
23869 " ...\n"
23870 " guestfish --remote=$pid1 cmd\n"
23871 " guestfish --remote=$pid2 cmd\n"
23872 "\n"
23873 msgstr ""
23874
23875 # type: =head2
23876 #. type: =head2
23877 #: ../fish/guestfish.pod:901
23878 msgid "REMOTE CONTROL AND CSH"
23879 msgstr ""
23880
23881 # type: textblock
23882 #. type: textblock
23883 #: ../fish/guestfish.pod:903
23884 msgid ""
23885 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
23886 "option:"
23887 msgstr ""
23888
23889 # type: verbatim
23890 #. type: verbatim
23891 #: ../fish/guestfish.pod:906
23892 #, no-wrap
23893 msgid ""
23894 " eval \"`guestfish --listen --csh`\"\n"
23895 "\n"
23896 msgstr ""
23897
23898 # type: =head2
23899 #. type: =head2
23900 #: ../fish/guestfish.pod:908
23901 msgid "REMOTE CONTROL DETAILS"
23902 msgstr ""
23903
23904 # type: textblock
23905 #. type: textblock
23906 #: ../fish/guestfish.pod:910
23907 msgid ""
23908 "Remote control happens over a Unix domain socket called C</tmp/.guestfish-"
23909 "$UID/socket-$PID>, where C<$UID> is the effective user ID of the process, "
23910 "and C<$PID> is the process ID of the server."
23911 msgstr ""
23912
23913 # type: textblock
23914 #. type: textblock
23915 #: ../fish/guestfish.pod:914
23916 msgid "Guestfish client and server versions must match exactly."
23917 msgstr ""
23918
23919 # type: =head1
23920 #. type: =head1
23921 #: ../fish/guestfish.pod:916
23922 msgid "PREPARED DISK IMAGES"
23923 msgstr ""
23924
23925 # type: textblock
23926 #. type: textblock
23927 #: ../fish/guestfish.pod:918
23928 msgid ""
23929 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
23930 "preformatted disk images that guestfish can make for you to save typing.  "
23931 "This is particularly useful for testing purposes.  This option is used "
23932 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
23933 "can be mixed with I<-a>)."
23934 msgstr ""
23935
23936 # type: textblock
23937 #. type: textblock
23938 #: ../fish/guestfish.pod:924
23939 msgid ""
23940 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
23941 "the second and so on.  Existing files in the current directory are "
23942 "I<overwritten>."
23943 msgstr ""
23944
23945 # type: textblock
23946 #. type: textblock
23947 #: ../fish/guestfish.pod:928
23948 msgid ""
23949 "The type briefly describes how the disk should be sized, partitioned, how "
23950 "filesystem(s) should be created, and how content should be added.  "
23951 "Optionally the type can be followed by extra parameters, separated by C<:> "
23952 "(colon) characters.  For example, I<-N fs> creates a default 100MB, sparsely-"
23953 "allocated disk, containing a single partition, with the partition formatted "
23954 "as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem on a 1GB "
23955 "disk instead."
23956 msgstr ""
23957
23958 # type: textblock
23959 #. type: textblock
23960 #: ../fish/guestfish.pod:936
23961 msgid "To list the available types and any extra parameters they take, run:"
23962 msgstr ""
23963
23964 # type: textblock
23965 #. type: textblock
23966 #: ../fish/guestfish.pod:940
23967 msgid ""
23968 "Note that the prepared filesystem is not mounted.  You would usually have to "
23969 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
23970 msgstr ""
23971
23972 # type: textblock
23973 #. type: textblock
23974 #: ../fish/guestfish.pod:944
23975 msgid ""
23976 "If any I<-N> or I<--new> options are given, the guest is automatically "
23977 "launched."
23978 msgstr ""
23979
23980 # type: textblock
23981 #. type: textblock
23982 #: ../fish/guestfish.pod:949
23983 msgid "Create a 100MB disk with an ext4-formatted partition:"
23984 msgstr ""
23985
23986 # type: verbatim
23987 #. type: verbatim
23988 #: ../fish/guestfish.pod:951
23989 #, no-wrap
23990 msgid ""
23991 " guestfish -N fs:ext4\n"
23992 "\n"
23993 msgstr ""
23994
23995 # type: textblock
23996 #. type: textblock
23997 #: ../fish/guestfish.pod:953
23998 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
23999 msgstr ""
24000
24001 # type: verbatim
24002 #. type: verbatim
24003 #: ../fish/guestfish.pod:955
24004 #, no-wrap
24005 msgid ""
24006 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
24007 "\n"
24008 msgstr ""
24009
24010 # type: textblock
24011 #. type: textblock
24012 #: ../fish/guestfish.pod:957
24013 msgid "Create a blank 200MB disk:"
24014 msgstr ""
24015
24016 # type: verbatim
24017 #. type: verbatim
24018 #: ../fish/guestfish.pod:959
24019 #, no-wrap
24020 msgid ""
24021 " guestfish -N disk:200M\n"
24022 "\n"
24023 msgstr ""
24024
24025 # type: =head1
24026 #. type: =head1
24027 #: ../fish/guestfish.pod:961
24028 msgid "PROGRESS BARS"
24029 msgstr ""
24030
24031 # type: textblock
24032 #. type: textblock
24033 #: ../fish/guestfish.pod:963
24034 msgid ""
24035 "Some (not all) long-running commands send progress notification messages as "
24036 "they are running.  Guestfish turns these messages into progress bars."
24037 msgstr ""
24038
24039 # type: textblock
24040 #. type: textblock
24041 #: ../fish/guestfish.pod:967
24042 msgid ""
24043 "When a command that supports progress bars takes longer than two seconds to "
24044 "run, and if progress bars are enabled, then you will see one appearing below "
24045 "the command:"
24046 msgstr ""
24047
24048 # type: verbatim
24049 #. type: verbatim
24050 #: ../fish/guestfish.pod:971
24051 #, no-wrap
24052 msgid ""
24053 " ><fs> copy-size /large-file /another-file 2048M\n"
24054 " / 10% [#####-----------------------------------------] 00:30\n"
24055 "\n"
24056 msgstr ""
24057
24058 # type: textblock
24059 #. type: textblock
24060 #: ../fish/guestfish.pod:974
24061 msgid ""
24062 "The spinner on the left hand side moves round once for every progress "
24063 "notification received from the backend.  This is a (reasonably) golden "
24064 "assurance that the command is \"doing something\" even if the progress bar "
24065 "is not moving, because the command is able to send the progress "
24066 "notifications.  When the bar reaches 100% and the command finishes, the "
24067 "spinner disappears."
24068 msgstr ""
24069
24070 # type: textblock
24071 #. type: textblock
24072 #: ../fish/guestfish.pod:981
24073 msgid ""
24074 "Progress bars are enabled by default when guestfish is used interactively.  "
24075 "You can enable them even for non-interactive modes using I<--progress-bars>, "
24076 "and you can disable them completely using I<--no-progress-bars>."
24077 msgstr ""
24078
24079 # type: =head1
24080 #. type: =head1
24081 #: ../fish/guestfish.pod:986
24082 msgid "GUESTFISH COMMANDS"
24083 msgstr ""
24084
24085 # type: textblock
24086 #. type: textblock
24087 #: ../fish/guestfish.pod:988
24088 msgid ""
24089 "The commands in this section are guestfish convenience commands, in other "
24090 "words, they are not part of the L<guestfs(3)> API."
24091 msgstr ""
24092
24093 # type: =head2
24094 #. type: =head2
24095 #: ../fish/guestfish.pod:991
24096 msgid "help"
24097 msgstr ""
24098
24099 # type: verbatim
24100 #. type: verbatim
24101 #: ../fish/guestfish.pod:993
24102 #, no-wrap
24103 msgid ""
24104 " help\n"
24105 " help cmd\n"
24106 "\n"
24107 msgstr ""
24108
24109 # type: textblock
24110 #. type: textblock
24111 #: ../fish/guestfish.pod:996
24112 msgid "Without any parameter, this provides general help."
24113 msgstr ""
24114
24115 # type: textblock
24116 #. type: textblock
24117 #: ../fish/guestfish.pod:998
24118 msgid "With a C<cmd> parameter, this displays detailed help for that command."
24119 msgstr ""
24120
24121 # type: =head2
24122 #. type: =head2
24123 #: ../fish/guestfish.pod:1000
24124 msgid "quit | exit"
24125 msgstr ""
24126
24127 # type: textblock
24128 #. type: textblock
24129 #: ../fish/guestfish.pod:1002
24130 msgid "This exits guestfish.  You can also use C<^D> key."
24131 msgstr ""
24132
24133 # type: textblock
24134 #. type: textblock
24135 #: ../fish/guestfish.pod:1004
24136 msgid "@FISH_COMMANDS@"
24137 msgstr ""
24138
24139 # type: =head1
24140 #. type: =head1
24141 #: ../fish/guestfish.pod:1006
24142 msgid "COMMANDS"
24143 msgstr ""
24144
24145 # type: =head1
24146 #. type: =head1
24147 #: ../fish/guestfish.pod:1010 ../test-tool/libguestfs-test-tool.pod:77
24148 msgid "EXIT CODE"
24149 msgstr ""
24150
24151 # type: textblock
24152 #. type: textblock
24153 #: ../fish/guestfish.pod:1012
24154 msgid ""
24155 "guestfish returns 0 if the commands completed without error, or 1 if there "
24156 "was an error."
24157 msgstr ""
24158
24159 # type: =item
24160 #. type: =item
24161 #: ../fish/guestfish.pod:1019
24162 msgid "EDITOR"
24163 msgstr ""
24164
24165 # type: textblock
24166 #. type: textblock
24167 #: ../fish/guestfish.pod:1021
24168 msgid ""
24169 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
24170 "C<vi>."
24171 msgstr ""
24172
24173 # type: =item
24174 #. type: =item
24175 #: ../fish/guestfish.pod:1024
24176 msgid "GUESTFISH_PID"
24177 msgstr ""
24178
24179 # type: textblock
24180 #. type: textblock
24181 #: ../fish/guestfish.pod:1026
24182 msgid ""
24183 "Used with the I<--remote> option to specify the remote guestfish process to "
24184 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
24185 msgstr ""
24186
24187 # type: =item
24188 #. type: =item
24189 #: ../fish/guestfish.pod:1030
24190 msgid "HEXEDITOR"
24191 msgstr ""
24192
24193 # type: textblock
24194 #. type: textblock
24195 #: ../fish/guestfish.pod:1032
24196 msgid ""
24197 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
24198 "not specified, the external L<hexedit(1)> program is used."
24199 msgstr ""
24200
24201 # type: =item
24202 #. type: =item
24203 #: ../fish/guestfish.pod:1036
24204 msgid "HOME"
24205 msgstr ""
24206
24207 # type: textblock
24208 #. type: textblock
24209 #: ../fish/guestfish.pod:1038
24210 msgid ""
24211 "If compiled with GNU readline support, various files in the home directory "
24212 "can be used.  See L</FILES>."
24213 msgstr ""
24214
24215 # type: textblock
24216 #. type: textblock
24217 #: ../fish/guestfish.pod:1047
24218 msgid ""
24219 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
24220 "effect as using the B<-v> option."
24221 msgstr ""
24222
24223 # type: textblock
24224 #. type: textblock
24225 #: ../fish/guestfish.pod:1059
24226 msgid ""
24227 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
24228 "the discussion of paths in L<guestfs(3)>."
24229 msgstr ""
24230
24231 # type: textblock
24232 #. type: textblock
24233 #: ../fish/guestfish.pod:1070
24234 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
24235 msgstr ""
24236
24237 # type: =item
24238 #. type: =item
24239 #: ../fish/guestfish.pod:1072
24240 msgid "PAGER"
24241 msgstr ""
24242
24243 # type: textblock
24244 #. type: textblock
24245 #: ../fish/guestfish.pod:1074
24246 msgid ""
24247 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
24248 "C<more>."
24249 msgstr ""
24250
24251 # type: =head1
24252 #. type: =head1
24253 #: ../fish/guestfish.pod:1090 ../fuse/guestmount.pod:262
24254 msgid "FILES"
24255 msgstr ""
24256
24257 #. type: =item
24258 #: ../fish/guestfish.pod:1094 ../fuse/guestmount.pod:266
24259 msgid "$HOME/.libguestfs-tools.rc"
24260 msgstr ""
24261
24262 #. type: =item
24263 #: ../fish/guestfish.pod:1096 ../fuse/guestmount.pod:268
24264 msgid "/etc/libguestfs-tools.conf"
24265 msgstr ""
24266
24267 #. type: textblock
24268 #: ../fish/guestfish.pod:1098 ../fuse/guestmount.pod:270
24269 msgid ""
24270 "This configuration file controls the default read-only or read-write mode "
24271 "(I<--ro> or I<--rw>)."
24272 msgstr ""
24273
24274 #. type: textblock
24275 #: ../fish/guestfish.pod:1101
24276 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
24277 msgstr ""
24278
24279 # type: =item
24280 #. type: =item
24281 #: ../fish/guestfish.pod:1103
24282 msgid "$HOME/.guestfish"
24283 msgstr ""
24284
24285 # type: textblock
24286 #. type: textblock
24287 #: ../fish/guestfish.pod:1105
24288 msgid ""
24289 "If compiled with GNU readline support, then the command history is saved in "
24290 "this file."
24291 msgstr ""
24292
24293 # type: =item
24294 #. type: =item
24295 #: ../fish/guestfish.pod:1108
24296 msgid "$HOME/.inputrc"
24297 msgstr ""
24298
24299 # type: =item
24300 #. type: =item
24301 #: ../fish/guestfish.pod:1110
24302 msgid "/etc/inputrc"
24303 msgstr ""
24304
24305 # type: textblock
24306 #. type: textblock
24307 #: ../fish/guestfish.pod:1112
24308 msgid ""
24309 "If compiled with GNU readline support, then these files can be used to "
24310 "configure readline.  For further information, please see L<readline(3)/"
24311 "INITIALIZATION FILE>."
24312 msgstr ""
24313
24314 # type: textblock
24315 #. type: textblock
24316 #: ../fish/guestfish.pod:1116
24317 msgid "To write rules which only apply to guestfish, use:"
24318 msgstr ""
24319
24320 # type: verbatim
24321 #. type: verbatim
24322 #: ../fish/guestfish.pod:1118
24323 #, no-wrap
24324 msgid ""
24325 " $if guestfish\n"
24326 " ...\n"
24327 " $endif\n"
24328 "\n"
24329 msgstr ""
24330
24331 # type: textblock
24332 #. type: textblock
24333 #: ../fish/guestfish.pod:1122
24334 msgid ""
24335 "Variables that you can set in inputrc that change the behaviour of guestfish "
24336 "in useful ways include:"
24337 msgstr ""
24338
24339 # type: =item
24340 #. type: =item
24341 #: ../fish/guestfish.pod:1127
24342 msgid "completion-ignore-case (default: on)"
24343 msgstr ""
24344
24345 # type: textblock
24346 #. type: textblock
24347 #: ../fish/guestfish.pod:1129
24348 msgid ""
24349 "By default, guestfish will ignore case when tab-completing paths on the "
24350 "disk.  Use:"
24351 msgstr ""
24352
24353 # type: verbatim
24354 #. type: verbatim
24355 #: ../fish/guestfish.pod:1132
24356 #, no-wrap
24357 msgid ""
24358 " set completion-ignore-case off\n"
24359 "\n"
24360 msgstr ""
24361
24362 # type: textblock
24363 #. type: textblock
24364 #: ../fish/guestfish.pod:1134
24365 msgid "to make guestfish case sensitive."
24366 msgstr ""
24367
24368 # type: =item
24369 #. type: =item
24370 #: ../fish/guestfish.pod:1138
24371 msgid "test1.img"
24372 msgstr ""
24373
24374 # type: =item
24375 #. type: =item
24376 #: ../fish/guestfish.pod:1140
24377 msgid "test2.img (etc)"
24378 msgstr ""
24379
24380 #. type: textblock
24381 #: ../fish/guestfish.pod:1142
24382 msgid ""
24383 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
24384 "will be created in the file C<test1.img> in the current directory.  The "
24385 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
24386 "the same name will be overwritten."
24387 msgstr ""
24388
24389 #. type: textblock
24390 #: ../fish/guestfish.pod:1151
24391 msgid ""
24392 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-in(1)"
24393 ">, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)"
24394 ">, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-partitions"
24395 "(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)"
24396 ">, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)"
24397 ">, L<hexedit(1)>."
24398 msgstr ""
24399
24400 # type: textblock
24401 #. type: textblock
24402 #: ../fish/guestfish.pod:1181 ../test-tool/libguestfs-test-tool.pod:102
24403 #: ../fuse/guestmount.pod:297 ../tools/virt-edit.pl:518
24404 #: ../tools/virt-win-reg.pl:606 ../tools/virt-list-filesystems.pl:210
24405 #: ../tools/virt-tar.pl:309 ../tools/virt-make-fs.pl:572
24406 #: ../tools/virt-list-partitions.pl:277
24407 msgid ""
24408 "This program is free software; you can redistribute it and/or modify it "
24409 "under the terms of the GNU General Public License as published by the Free "
24410 "Software Foundation; either version 2 of the License, or (at your option) "
24411 "any later version."
24412 msgstr ""
24413
24414 # type: textblock
24415 #. type: textblock
24416 #: ../fish/guestfish.pod:1186 ../test-tool/libguestfs-test-tool.pod:107
24417 #: ../fuse/guestmount.pod:302 ../tools/virt-edit.pl:523
24418 #: ../tools/virt-win-reg.pl:611 ../tools/virt-list-filesystems.pl:215
24419 #: ../tools/virt-tar.pl:314 ../tools/virt-make-fs.pl:577
24420 #: ../tools/virt-list-partitions.pl:282
24421 msgid ""
24422 "This program is distributed in the hope that it will be useful, but WITHOUT "
24423 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
24424 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
24425 "more details."
24426 msgstr ""
24427
24428 # type: textblock
24429 #. type: textblock
24430 #: ../fish/guestfish.pod:1191 ../test-tool/libguestfs-test-tool.pod:112
24431 #: ../fuse/guestmount.pod:307 ../tools/virt-edit.pl:528
24432 #: ../tools/virt-win-reg.pl:616 ../tools/virt-list-filesystems.pl:220
24433 #: ../tools/virt-tar.pl:319 ../tools/virt-make-fs.pl:582
24434 #: ../tools/virt-list-partitions.pl:287
24435 msgid ""
24436 "You should have received a copy of the GNU General Public License along with "
24437 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
24438 "Ave, Cambridge, MA 02139, USA."
24439 msgstr ""
24440
24441 # type: =head2
24442 #. type: =head2
24443 #: ../fish/guestfish-actions.pod:1
24444 msgid "add-cdrom"
24445 msgstr ""
24446
24447 # type: verbatim
24448 #. type: verbatim
24449 #: ../fish/guestfish-actions.pod:3
24450 #, no-wrap
24451 msgid ""
24452 " add-cdrom filename\n"
24453 "\n"
24454 msgstr ""
24455
24456 # type: textblock
24457 #. type: textblock
24458 #: ../fish/guestfish-actions.pod:15
24459 msgid ""
24460 "This call checks for the existence of C<filename>.  This stops you from "
24461 "specifying other types of drive which are supported by qemu such as C<nbd:> "
24462 "and C<http:> URLs.  To specify those, use the general L</config> call "
24463 "instead."
24464 msgstr ""
24465
24466 # type: textblock
24467 #. type: textblock
24468 #: ../fish/guestfish-actions.pod:22
24469 msgid ""
24470 "If you just want to add an ISO file (often you use this as an efficient way "
24471 "to transfer large files into the guest), then you should probably use L</add-"
24472 "drive-ro> instead."
24473 msgstr ""
24474
24475 # type: =head2
24476 #. type: =head2
24477 #: ../fish/guestfish-actions.pod:35
24478 msgid "add-domain"
24479 msgstr ""
24480
24481 # type: =head2
24482 #. type: =head2
24483 #: ../fish/guestfish-actions.pod:37
24484 msgid "domain"
24485 msgstr ""
24486
24487 #. type: verbatim
24488 #: ../fish/guestfish-actions.pod:39
24489 #, no-wrap
24490 msgid ""
24491 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..]\n"
24492 "\n"
24493 msgstr ""
24494
24495 # type: textblock
24496 #. type: textblock
24497 #: ../fish/guestfish-actions.pod:41
24498 msgid ""
24499 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
24500 "It works by connecting to libvirt, requesting the domain and domain XML from "
24501 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
24502 msgstr ""
24503
24504 # type: textblock
24505 #. type: textblock
24506 #: ../fish/guestfish-actions.pod:71
24507 msgid ""
24508 "The other optional parameters are passed directly through to L</add-drive-"
24509 "opts>."
24510 msgstr ""
24511
24512 # type: textblock
24513 #. type: textblock
24514 #: ../fish/guestfish-actions.pod:74 ../fish/guestfish-actions.pod:138
24515 #: ../fish/guestfish-actions.pod:3044
24516 msgid ""
24517 "This command has one or more optional arguments.  See L</OPTIONAL ARGUMENTS>."
24518 msgstr ""
24519
24520 # type: =head2
24521 #. type: =head2
24522 #: ../fish/guestfish-actions.pod:76
24523 msgid "add-drive"
24524 msgstr ""
24525
24526 # type: verbatim
24527 #. type: verbatim
24528 #: ../fish/guestfish-actions.pod:78
24529 #, no-wrap
24530 msgid ""
24531 " add-drive filename\n"
24532 "\n"
24533 msgstr ""
24534
24535 # type: textblock
24536 #. type: textblock
24537 #: ../fish/guestfish-actions.pod:80
24538 msgid ""
24539 "This function is the equivalent of calling L</add-drive-opts> with no "
24540 "optional parameters, so the disk is added writable, with the format being "
24541 "detected automatically."
24542 msgstr ""
24543
24544 # type: textblock
24545 #. type: textblock
24546 #: ../fish/guestfish-actions.pod:84
24547 msgid ""
24548 "Automatic detection of the format opens you up to a potential security hole "
24549 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
24550 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
24551 "you should think about replacing calls to this function with calls to L</add-"
24552 "drive-opts>, and specifying the format."
24553 msgstr ""
24554
24555 # type: =head2
24556 #. type: =head2
24557 #: ../fish/guestfish-actions.pod:91
24558 msgid "add-drive-opts"
24559 msgstr ""
24560
24561 # type: =head2
24562 #. type: =head2
24563 #: ../fish/guestfish-actions.pod:93
24564 msgid "add"
24565 msgstr ""
24566
24567 # type: verbatim
24568 #. type: verbatim
24569 #: ../fish/guestfish-actions.pod:95
24570 #, no-wrap
24571 msgid ""
24572 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
24573 "\n"
24574 msgstr ""
24575
24576 # type: textblock
24577 #. type: textblock
24578 #: ../fish/guestfish-actions.pod:122
24579 msgid ""
24580 "This forces the image format.  If you omit this (or use L</add-drive> or L</"
24581 "add-drive-ro>) then the format is automatically detected.  Possible formats "
24582 "include C<raw> and C<qcow2>."
24583 msgstr ""
24584
24585 # type: textblock
24586 #. type: textblock
24587 #: ../fish/guestfish-actions.pod:133
24588 msgid ""
24589 "This rarely-used option lets you emulate the behaviour of the deprecated L</"
24590 "add-drive-with-if> call (q.v.)"
24591 msgstr ""
24592
24593 # type: =head2
24594 #. type: =head2
24595 #: ../fish/guestfish-actions.pod:140
24596 msgid "add-drive-ro"
24597 msgstr ""
24598
24599 # type: =head2
24600 #. type: =head2
24601 #: ../fish/guestfish-actions.pod:142
24602 msgid "add-ro"
24603 msgstr ""
24604
24605 # type: verbatim
24606 #. type: verbatim
24607 #: ../fish/guestfish-actions.pod:144
24608 #, no-wrap
24609 msgid ""
24610 " add-drive-ro filename\n"
24611 "\n"
24612 msgstr ""
24613
24614 # type: textblock
24615 #. type: textblock
24616 #: ../fish/guestfish-actions.pod:146
24617 msgid ""
24618 "This function is the equivalent of calling L</add-drive-opts> with the "
24619 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
24620 "is added read-only, with the format being detected automatically."
24621 msgstr ""
24622
24623 # type: =head2
24624 #. type: =head2
24625 #: ../fish/guestfish-actions.pod:151
24626 msgid "add-drive-ro-with-if"
24627 msgstr ""
24628
24629 # type: verbatim
24630 #. type: verbatim
24631 #: ../fish/guestfish-actions.pod:153
24632 #, no-wrap
24633 msgid ""
24634 " add-drive-ro-with-if filename iface\n"
24635 "\n"
24636 msgstr ""
24637
24638 # type: textblock
24639 #. type: textblock
24640 #: ../fish/guestfish-actions.pod:155
24641 msgid ""
24642 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
24643 "interface emulation to use at run time."
24644 msgstr ""
24645
24646 # type: =head2
24647 #. type: =head2
24648 #: ../fish/guestfish-actions.pod:165
24649 msgid "add-drive-with-if"
24650 msgstr ""
24651
24652 # type: verbatim
24653 #. type: verbatim
24654 #: ../fish/guestfish-actions.pod:167
24655 #, no-wrap
24656 msgid ""
24657 " add-drive-with-if filename iface\n"
24658 "\n"
24659 msgstr ""
24660
24661 # type: textblock
24662 #. type: textblock
24663 #: ../fish/guestfish-actions.pod:169
24664 msgid ""
24665 "This is the same as L</add-drive> but it allows you to specify the QEMU "
24666 "interface emulation to use at run time."
24667 msgstr ""
24668
24669 # type: =head2
24670 #. type: =head2
24671 #: ../fish/guestfish-actions.pod:179
24672 msgid "aug-clear"
24673 msgstr ""
24674
24675 # type: verbatim
24676 #. type: verbatim
24677 #: ../fish/guestfish-actions.pod:181
24678 #, no-wrap
24679 msgid ""
24680 " aug-clear augpath\n"
24681 "\n"
24682 msgstr ""
24683
24684 # type: =head2
24685 #. type: =head2
24686 #: ../fish/guestfish-actions.pod:186
24687 msgid "aug-close"
24688 msgstr ""
24689
24690 # type: verbatim
24691 #. type: verbatim
24692 #: ../fish/guestfish-actions.pod:188
24693 #, no-wrap
24694 msgid ""
24695 " aug-close\n"
24696 "\n"
24697 msgstr ""
24698
24699 # type: textblock
24700 #. type: textblock
24701 #: ../fish/guestfish-actions.pod:190
24702 msgid ""
24703 "Close the current Augeas handle and free up any resources used by it.  After "
24704 "calling this, you have to call L</aug-init> again before you can use any "
24705 "other Augeas functions."
24706 msgstr ""
24707
24708 # type: =head2
24709 #. type: =head2
24710 #: ../fish/guestfish-actions.pod:195
24711 msgid "aug-defnode"
24712 msgstr ""
24713
24714 # type: verbatim
24715 #. type: verbatim
24716 #: ../fish/guestfish-actions.pod:197
24717 #, no-wrap
24718 msgid ""
24719 " aug-defnode name expr val\n"
24720 "\n"
24721 msgstr ""
24722
24723 # type: textblock
24724 #. type: textblock
24725 #: ../fish/guestfish-actions.pod:202
24726 msgid ""
24727 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
24728 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
24729 "containing that single node."
24730 msgstr ""
24731
24732 # type: =head2
24733 #. type: =head2
24734 #: ../fish/guestfish-actions.pod:210
24735 msgid "aug-defvar"
24736 msgstr ""
24737
24738 # type: verbatim
24739 #. type: verbatim
24740 #: ../fish/guestfish-actions.pod:212
24741 #, no-wrap
24742 msgid ""
24743 " aug-defvar name expr\n"
24744 "\n"
24745 msgstr ""
24746
24747 # type: =head2
24748 #. type: =head2
24749 #: ../fish/guestfish-actions.pod:221
24750 msgid "aug-get"
24751 msgstr ""
24752
24753 # type: verbatim
24754 #. type: verbatim
24755 #: ../fish/guestfish-actions.pod:223
24756 #, no-wrap
24757 msgid ""
24758 " aug-get augpath\n"
24759 "\n"
24760 msgstr ""
24761
24762 # type: =head2
24763 #. type: =head2
24764 #: ../fish/guestfish-actions.pod:228
24765 msgid "aug-init"
24766 msgstr ""
24767
24768 # type: verbatim
24769 #. type: verbatim
24770 #: ../fish/guestfish-actions.pod:230
24771 #, no-wrap
24772 msgid ""
24773 " aug-init root flags\n"
24774 "\n"
24775 msgstr ""
24776
24777 # type: textblock
24778 #. type: textblock
24779 #: ../fish/guestfish-actions.pod:236
24780 msgid "You must call this before using any other L</aug-*> commands."
24781 msgstr ""
24782
24783 # type: textblock
24784 #. type: textblock
24785 #: ../fish/guestfish-actions.pod:271
24786 msgid "Do not load the tree in L</aug-init>."
24787 msgstr ""
24788
24789 # type: textblock
24790 #. type: textblock
24791 #: ../fish/guestfish-actions.pod:275
24792 msgid "To close the handle, you can call L</aug-close>."
24793 msgstr ""
24794
24795 # type: =head2
24796 #. type: =head2
24797 #: ../fish/guestfish-actions.pod:279
24798 msgid "aug-insert"
24799 msgstr ""
24800
24801 # type: verbatim
24802 #. type: verbatim
24803 #: ../fish/guestfish-actions.pod:281
24804 #, no-wrap
24805 msgid ""
24806 " aug-insert augpath label true|false\n"
24807 "\n"
24808 msgstr ""
24809
24810 # type: =head2
24811 #. type: =head2
24812 #: ../fish/guestfish-actions.pod:291
24813 msgid "aug-load"
24814 msgstr ""
24815
24816 # type: verbatim
24817 #. type: verbatim
24818 #: ../fish/guestfish-actions.pod:293
24819 #, no-wrap
24820 msgid ""
24821 " aug-load\n"
24822 "\n"
24823 msgstr ""
24824
24825 # type: =head2
24826 #. type: =head2
24827 #: ../fish/guestfish-actions.pod:300
24828 msgid "aug-ls"
24829 msgstr ""
24830
24831 # type: verbatim
24832 #. type: verbatim
24833 #: ../fish/guestfish-actions.pod:302
24834 #, no-wrap
24835 msgid ""
24836 " aug-ls augpath\n"
24837 "\n"
24838 msgstr ""
24839
24840 # type: textblock
24841 #. type: textblock
24842 #: ../fish/guestfish-actions.pod:304
24843 msgid ""
24844 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
24845 "resulting nodes into alphabetical order."
24846 msgstr ""
24847
24848 # type: =head2
24849 #. type: =head2
24850 #: ../fish/guestfish-actions.pod:307
24851 msgid "aug-match"
24852 msgstr ""
24853
24854 # type: verbatim
24855 #. type: verbatim
24856 #: ../fish/guestfish-actions.pod:309
24857 #, no-wrap
24858 msgid ""
24859 " aug-match augpath\n"
24860 "\n"
24861 msgstr ""
24862
24863 # type: =head2
24864 #. type: =head2
24865 #: ../fish/guestfish-actions.pod:315
24866 msgid "aug-mv"
24867 msgstr ""
24868
24869 # type: verbatim
24870 #. type: verbatim
24871 #: ../fish/guestfish-actions.pod:317
24872 #, no-wrap
24873 msgid ""
24874 " aug-mv src dest\n"
24875 "\n"
24876 msgstr ""
24877
24878 # type: =head2
24879 #. type: =head2
24880 #: ../fish/guestfish-actions.pod:322
24881 msgid "aug-rm"
24882 msgstr ""
24883
24884 # type: verbatim
24885 #. type: verbatim
24886 #: ../fish/guestfish-actions.pod:324
24887 #, no-wrap
24888 msgid ""
24889 " aug-rm augpath\n"
24890 "\n"
24891 msgstr ""
24892
24893 # type: =head2
24894 #. type: =head2
24895 #: ../fish/guestfish-actions.pod:330
24896 msgid "aug-save"
24897 msgstr ""
24898
24899 # type: verbatim
24900 #. type: verbatim
24901 #: ../fish/guestfish-actions.pod:332
24902 #, no-wrap
24903 msgid ""
24904 " aug-save\n"
24905 "\n"
24906 msgstr ""
24907
24908 # type: textblock
24909 #. type: textblock
24910 #: ../fish/guestfish-actions.pod:336
24911 msgid ""
24912 "The flags which were passed to L</aug-init> affect exactly how files are "
24913 "saved."
24914 msgstr ""
24915
24916 # type: =head2
24917 #. type: =head2
24918 #: ../fish/guestfish-actions.pod:339
24919 msgid "aug-set"
24920 msgstr ""
24921
24922 # type: verbatim
24923 #. type: verbatim
24924 #: ../fish/guestfish-actions.pod:341
24925 #, no-wrap
24926 msgid ""
24927 " aug-set augpath val\n"
24928 "\n"
24929 msgstr ""
24930
24931 # type: textblock
24932 #. type: textblock
24933 #: ../fish/guestfish-actions.pod:345
24934 msgid ""
24935 "In the Augeas API, it is possible to clear a node by setting the value to "
24936 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
24937 "this call.  Instead you must use the L</aug-clear> call."
24938 msgstr ""
24939
24940 # type: =head2
24941 #. type: =head2
24942 #: ../fish/guestfish-actions.pod:350
24943 msgid "available"
24944 msgstr ""
24945
24946 # type: verbatim
24947 #. type: verbatim
24948 #: ../fish/guestfish-actions.pod:352
24949 #, no-wrap
24950 msgid ""
24951 " available 'groups ...'\n"
24952 "\n"
24953 msgstr ""
24954
24955 # type: textblock
24956 #. type: textblock
24957 #: ../fish/guestfish-actions.pod:358
24958 msgid ""
24959 "The libguestfs groups, and the functions that those groups correspond to, "
24960 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
24961 "runtime by calling L</available-all-groups>."
24962 msgstr ""
24963
24964 # type: textblock
24965 #. type: textblock
24966 #: ../fish/guestfish-actions.pod:382
24967 msgid "You must call L</launch> before calling this function."
24968 msgstr ""
24969
24970 # type: textblock
24971 #. type: textblock
24972 #: ../fish/guestfish-actions.pod:404
24973 msgid ""
24974 "This call was added in version C<1.0.80>.  In previous versions of "
24975 "libguestfs all you could do would be to speculatively execute a command to "
24976 "find out if the daemon implemented it.  See also L</version>."
24977 msgstr ""
24978
24979 # type: =head2
24980 #. type: =head2
24981 #: ../fish/guestfish-actions.pod:411
24982 msgid "available-all-groups"
24983 msgstr ""
24984
24985 # type: verbatim
24986 #. type: verbatim
24987 #: ../fish/guestfish-actions.pod:413
24988 #, no-wrap
24989 msgid ""
24990 " available-all-groups\n"
24991 "\n"
24992 msgstr ""
24993
24994 # type: textblock
24995 #. type: textblock
24996 #: ../fish/guestfish-actions.pod:415
24997 msgid ""
24998 "This command returns a list of all optional groups that this daemon knows "
24999 "about.  Note this returns both supported and unsupported groups.  To find "
25000 "out which ones the daemon can actually support you have to call L</"
25001 "available> on each member of the returned list."
25002 msgstr ""
25003
25004 # type: textblock
25005 #. type: textblock
25006 #: ../fish/guestfish-actions.pod:421
25007 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
25008 msgstr ""
25009
25010 # type: =head2
25011 #. type: =head2
25012 #: ../fish/guestfish-actions.pod:423
25013 msgid "base64-in"
25014 msgstr ""
25015
25016 # type: verbatim
25017 #. type: verbatim
25018 #: ../fish/guestfish-actions.pod:425
25019 #, no-wrap
25020 msgid ""
25021 " base64-in (base64file|-) filename\n"
25022 "\n"
25023 msgstr ""
25024
25025 # type: textblock
25026 #. type: textblock
25027 #: ../fish/guestfish-actions.pod:430 ../fish/guestfish-actions.pod:439
25028 #: ../fish/guestfish-actions.pod:663 ../fish/guestfish-actions.pod:832
25029 #: ../fish/guestfish-actions.pod:851 ../fish/guestfish-actions.pod:1225
25030 #: ../fish/guestfish-actions.pod:4486 ../fish/guestfish-actions.pod:4498
25031 #: ../fish/guestfish-actions.pod:4509 ../fish/guestfish-actions.pod:4520
25032 #: ../fish/guestfish-actions.pod:4572 ../fish/guestfish-actions.pod:4581
25033 #: ../fish/guestfish-actions.pod:4635 ../fish/guestfish-actions.pod:4658
25034 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
25035 msgstr ""
25036
25037 # type: =head2
25038 #. type: =head2
25039 #: ../fish/guestfish-actions.pod:432
25040 msgid "base64-out"
25041 msgstr ""
25042
25043 # type: verbatim
25044 #. type: verbatim
25045 #: ../fish/guestfish-actions.pod:434
25046 #, no-wrap
25047 msgid ""
25048 " base64-out filename (base64file|-)\n"
25049 "\n"
25050 msgstr ""
25051
25052 # type: =head2
25053 #. type: =head2
25054 #: ../fish/guestfish-actions.pod:441
25055 msgid "blockdev-flushbufs"
25056 msgstr ""
25057
25058 # type: verbatim
25059 #. type: verbatim
25060 #: ../fish/guestfish-actions.pod:443
25061 #, no-wrap
25062 msgid ""
25063 " blockdev-flushbufs device\n"
25064 "\n"
25065 msgstr ""
25066
25067 # type: =head2
25068 #. type: =head2
25069 #: ../fish/guestfish-actions.pod:450
25070 msgid "blockdev-getbsz"
25071 msgstr ""
25072
25073 # type: verbatim
25074 #. type: verbatim
25075 #: ../fish/guestfish-actions.pod:452
25076 #, no-wrap
25077 msgid ""
25078 " blockdev-getbsz device\n"
25079 "\n"
25080 msgstr ""
25081
25082 # type: =head2
25083 #. type: =head2
25084 #: ../fish/guestfish-actions.pod:461
25085 msgid "blockdev-getro"
25086 msgstr ""
25087
25088 # type: verbatim
25089 #. type: verbatim
25090 #: ../fish/guestfish-actions.pod:463
25091 #, no-wrap
25092 msgid ""
25093 " blockdev-getro device\n"
25094 "\n"
25095 msgstr ""
25096
25097 # type: =head2
25098 #. type: =head2
25099 #: ../fish/guestfish-actions.pod:470
25100 msgid "blockdev-getsize64"
25101 msgstr ""
25102
25103 # type: verbatim
25104 #. type: verbatim
25105 #: ../fish/guestfish-actions.pod:472
25106 #, no-wrap
25107 msgid ""
25108 " blockdev-getsize64 device\n"
25109 "\n"
25110 msgstr ""
25111
25112 # type: textblock
25113 #. type: textblock
25114 #: ../fish/guestfish-actions.pod:476
25115 msgid "See also L</blockdev-getsz>."
25116 msgstr ""
25117
25118 # type: =head2
25119 #. type: =head2
25120 #: ../fish/guestfish-actions.pod:480
25121 msgid "blockdev-getss"
25122 msgstr ""
25123
25124 # type: verbatim
25125 #. type: verbatim
25126 #: ../fish/guestfish-actions.pod:482
25127 #, no-wrap
25128 msgid ""
25129 " blockdev-getss device\n"
25130 "\n"
25131 msgstr ""
25132
25133 # type: textblock
25134 #. type: textblock
25135 #: ../fish/guestfish-actions.pod:487
25136 msgid ""
25137 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
25138 msgstr ""
25139
25140 # type: =head2
25141 #. type: =head2
25142 #: ../fish/guestfish-actions.pod:492
25143 msgid "blockdev-getsz"
25144 msgstr ""
25145
25146 # type: verbatim
25147 #. type: verbatim
25148 #: ../fish/guestfish-actions.pod:494
25149 #, no-wrap
25150 msgid ""
25151 " blockdev-getsz device\n"
25152 "\n"
25153 msgstr ""
25154
25155 # type: textblock
25156 #. type: textblock
25157 #: ../fish/guestfish-actions.pod:499
25158 msgid ""
25159 "See also L</blockdev-getss> for the real sector size of the device, and L</"
25160 "blockdev-getsize64> for the more useful I<size in bytes>."
25161 msgstr ""
25162
25163 # type: =head2
25164 #. type: =head2
25165 #: ../fish/guestfish-actions.pod:505
25166 msgid "blockdev-rereadpt"
25167 msgstr ""
25168
25169 # type: verbatim
25170 #. type: verbatim
25171 #: ../fish/guestfish-actions.pod:507
25172 #, no-wrap
25173 msgid ""
25174 " blockdev-rereadpt device\n"
25175 "\n"
25176 msgstr ""
25177
25178 # type: =head2
25179 #. type: =head2
25180 #: ../fish/guestfish-actions.pod:513
25181 msgid "blockdev-setbsz"
25182 msgstr ""
25183
25184 # type: verbatim
25185 #. type: verbatim
25186 #: ../fish/guestfish-actions.pod:515
25187 #, no-wrap
25188 msgid ""
25189 " blockdev-setbsz device blocksize\n"
25190 "\n"
25191 msgstr ""
25192
25193 # type: =head2
25194 #. type: =head2
25195 #: ../fish/guestfish-actions.pod:524
25196 msgid "blockdev-setro"
25197 msgstr ""
25198
25199 # type: verbatim
25200 #. type: verbatim
25201 #: ../fish/guestfish-actions.pod:526
25202 #, no-wrap
25203 msgid ""
25204 " blockdev-setro device\n"
25205 "\n"
25206 msgstr ""
25207
25208 # type: =head2
25209 #. type: =head2
25210 #: ../fish/guestfish-actions.pod:532
25211 msgid "blockdev-setrw"
25212 msgstr ""
25213
25214 # type: verbatim
25215 #. type: verbatim
25216 #: ../fish/guestfish-actions.pod:534
25217 #, no-wrap
25218 msgid ""
25219 " blockdev-setrw device\n"
25220 "\n"
25221 msgstr ""
25222
25223 # type: =head2
25224 #. type: =head2
25225 #: ../fish/guestfish-actions.pod:540
25226 msgid "case-sensitive-path"
25227 msgstr ""
25228
25229 # type: verbatim
25230 #. type: verbatim
25231 #: ../fish/guestfish-actions.pod:542
25232 #, no-wrap
25233 msgid ""
25234 " case-sensitive-path path\n"
25235 "\n"
25236 msgstr ""
25237
25238 # type: textblock
25239 #. type: textblock
25240 #: ../fish/guestfish-actions.pod:566
25241 msgid ""
25242 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return C<\"/"
25243 "WINDOWS/system32\"> (the exact return value would depend on details of how "
25244 "the directories were originally created under Windows)."
25245 msgstr ""
25246
25247 # type: textblock
25248 #. type: textblock
25249 #: ../fish/guestfish-actions.pod:574
25250 msgid "See also L</realpath>."
25251 msgstr ""
25252
25253 # type: =head2
25254 #. type: =head2
25255 #: ../fish/guestfish-actions.pod:576
25256 msgid "cat"
25257 msgstr ""
25258
25259 # type: verbatim
25260 #. type: verbatim
25261 #: ../fish/guestfish-actions.pod:578
25262 #, no-wrap
25263 msgid ""
25264 " cat path\n"
25265 "\n"
25266 msgstr ""
25267
25268 # type: textblock
25269 #. type: textblock
25270 #: ../fish/guestfish-actions.pod:582
25271 msgid ""
25272 "Note that this function cannot correctly handle binary files (specifically, "
25273 "files containing C<\\0> character which is treated as end of string).  For "
25274 "those you need to use the L</read-file> or L</download> functions which have "
25275 "a more complex interface."
25276 msgstr ""
25277
25278 # type: =head2
25279 #. type: =head2
25280 #: ../fish/guestfish-actions.pod:590
25281 msgid "checksum"
25282 msgstr ""
25283
25284 # type: verbatim
25285 #. type: verbatim
25286 #: ../fish/guestfish-actions.pod:592
25287 #, no-wrap
25288 msgid ""
25289 " checksum csumtype path\n"
25290 "\n"
25291 msgstr ""
25292
25293 # type: textblock
25294 #. type: textblock
25295 #: ../fish/guestfish-actions.pod:635
25296 msgid "To get the checksum for a device, use L</checksum-device>."
25297 msgstr ""
25298
25299 # type: textblock
25300 #. type: textblock
25301 #: ../fish/guestfish-actions.pod:637
25302 msgid "To get the checksums for many files, use L</checksums-out>."
25303 msgstr ""
25304
25305 # type: =head2
25306 #. type: =head2
25307 #: ../fish/guestfish-actions.pod:639
25308 msgid "checksum-device"
25309 msgstr ""
25310
25311 # type: verbatim
25312 #. type: verbatim
25313 #: ../fish/guestfish-actions.pod:641
25314 #, no-wrap
25315 msgid ""
25316 " checksum-device csumtype device\n"
25317 "\n"
25318 msgstr ""
25319
25320 # type: textblock
25321 #. type: textblock
25322 #: ../fish/guestfish-actions.pod:643
25323 msgid ""
25324 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
25325 "device named C<device>.  For the types of checksums supported see the L</"
25326 "checksum> command."
25327 msgstr ""
25328
25329 # type: =head2
25330 #. type: =head2
25331 #: ../fish/guestfish-actions.pod:647
25332 msgid "checksums-out"
25333 msgstr ""
25334
25335 # type: verbatim
25336 #. type: verbatim
25337 #: ../fish/guestfish-actions.pod:649
25338 #, no-wrap
25339 msgid ""
25340 " checksums-out csumtype directory (sumsfile|-)\n"
25341 "\n"
25342 msgstr ""
25343
25344 # type: =head2
25345 #. type: =head2
25346 #: ../fish/guestfish-actions.pod:665
25347 msgid "chmod"
25348 msgstr ""
25349
25350 # type: verbatim
25351 #. type: verbatim
25352 #: ../fish/guestfish-actions.pod:667
25353 #, no-wrap
25354 msgid ""
25355 " chmod mode path\n"
25356 "\n"
25357 msgstr ""
25358
25359 # type: =head2
25360 #. type: =head2
25361 #: ../fish/guestfish-actions.pod:678
25362 msgid "chown"
25363 msgstr ""
25364
25365 # type: verbatim
25366 #. type: verbatim
25367 #: ../fish/guestfish-actions.pod:680
25368 #, no-wrap
25369 msgid ""
25370 " chown owner group path\n"
25371 "\n"
25372 msgstr ""
25373
25374 # type: =head2
25375 #. type: =head2
25376 #: ../fish/guestfish-actions.pod:688
25377 msgid "command"
25378 msgstr ""
25379
25380 # type: verbatim
25381 #. type: verbatim
25382 #: ../fish/guestfish-actions.pod:690
25383 #, no-wrap
25384 msgid ""
25385 " command 'arguments ...'\n"
25386 "\n"
25387 msgstr ""
25388
25389 # type: textblock
25390 #. type: textblock
25391 #: ../fish/guestfish-actions.pod:697
25392 msgid ""
25393 "The single parameter is an argv-style list of arguments.  The first element "
25394 "is the name of the program to run.  Subsequent elements are parameters.  The "
25395 "list must be non-empty (ie. must contain a program name).  Note that the "
25396 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
25397 msgstr ""
25398
25399 # type: =head2
25400 #. type: =head2
25401 #: ../fish/guestfish-actions.pod:725
25402 msgid "command-lines"
25403 msgstr ""
25404
25405 # type: verbatim
25406 #. type: verbatim
25407 #: ../fish/guestfish-actions.pod:727
25408 #, no-wrap
25409 msgid ""
25410 " command-lines 'arguments ...'\n"
25411 "\n"
25412 msgstr ""
25413
25414 # type: textblock
25415 #. type: textblock
25416 #: ../fish/guestfish-actions.pod:729
25417 msgid ""
25418 "This is the same as L</command>, but splits the result into a list of lines."
25419 msgstr ""
25420
25421 # type: textblock
25422 #. type: textblock
25423 #: ../fish/guestfish-actions.pod:732
25424 msgid "See also: L</sh-lines>"
25425 msgstr ""
25426
25427 # type: =head2
25428 #. type: =head2
25429 #: ../fish/guestfish-actions.pod:737
25430 msgid "config"
25431 msgstr ""
25432
25433 # type: verbatim
25434 #. type: verbatim
25435 #: ../fish/guestfish-actions.pod:739
25436 #, no-wrap
25437 msgid ""
25438 " config qemuparam qemuvalue\n"
25439 "\n"
25440 msgstr ""
25441
25442 # type: =head2
25443 #. type: =head2
25444 #: ../fish/guestfish-actions.pod:750
25445 msgid "copy-size"
25446 msgstr ""
25447
25448 # type: verbatim
25449 #. type: verbatim
25450 #: ../fish/guestfish-actions.pod:752
25451 #, no-wrap
25452 msgid ""
25453 " copy-size src dest size\n"
25454 "\n"
25455 msgstr ""
25456
25457 # type: =head2
25458 #. type: =head2
25459 #: ../fish/guestfish-actions.pod:760
25460 msgid "cp"
25461 msgstr ""
25462
25463 # type: verbatim
25464 #. type: verbatim
25465 #: ../fish/guestfish-actions.pod:762
25466 #, no-wrap
25467 msgid ""
25468 " cp src dest\n"
25469 "\n"
25470 msgstr ""
25471
25472 # type: =head2
25473 #. type: =head2
25474 #: ../fish/guestfish-actions.pod:767
25475 msgid "cp-a"
25476 msgstr ""
25477
25478 # type: verbatim
25479 #. type: verbatim
25480 #: ../fish/guestfish-actions.pod:769
25481 #, no-wrap
25482 msgid ""
25483 " cp-a src dest\n"
25484 "\n"
25485 msgstr ""
25486
25487 # type: =head2
25488 #. type: =head2
25489 #: ../fish/guestfish-actions.pod:774
25490 msgid "dd"
25491 msgstr ""
25492
25493 # type: verbatim
25494 #. type: verbatim
25495 #: ../fish/guestfish-actions.pod:776
25496 #, no-wrap
25497 msgid ""
25498 " dd src dest\n"
25499 "\n"
25500 msgstr ""
25501
25502 # type: textblock
25503 #. type: textblock
25504 #: ../fish/guestfish-actions.pod:783
25505 msgid ""
25506 "If the destination is a device, it must be as large or larger than the "
25507 "source file or device, otherwise the copy will fail.  This command cannot do "
25508 "partial copies (see L</copy-size>)."
25509 msgstr ""
25510
25511 # type: =head2
25512 #. type: =head2
25513 #: ../fish/guestfish-actions.pod:787
25514 msgid "df"
25515 msgstr ""
25516
25517 # type: verbatim
25518 #. type: verbatim
25519 #: ../fish/guestfish-actions.pod:789
25520 #, no-wrap
25521 msgid ""
25522 " df\n"
25523 "\n"
25524 msgstr ""
25525
25526 # type: textblock
25527 #. type: textblock
25528 #: ../fish/guestfish-actions.pod:793 ../fish/guestfish-actions.pod:804
25529 msgid ""
25530 "This command is mostly useful for interactive sessions.  It is I<not> "
25531 "intended that you try to parse the output string.  Use L</statvfs> from "
25532 "programs."
25533 msgstr ""
25534
25535 # type: =head2
25536 #. type: =head2
25537 #: ../fish/guestfish-actions.pod:797
25538 msgid "df-h"
25539 msgstr ""
25540
25541 # type: verbatim
25542 #. type: verbatim
25543 #: ../fish/guestfish-actions.pod:799
25544 #, no-wrap
25545 msgid ""
25546 " df-h\n"
25547 "\n"
25548 msgstr ""
25549
25550 # type: =head2
25551 #. type: =head2
25552 #: ../fish/guestfish-actions.pod:808
25553 msgid "dmesg"
25554 msgstr ""
25555
25556 # type: verbatim
25557 #. type: verbatim
25558 #: ../fish/guestfish-actions.pod:810
25559 #, no-wrap
25560 msgid ""
25561 " dmesg\n"
25562 "\n"
25563 msgstr ""
25564
25565 # type: textblock
25566 #. type: textblock
25567 #: ../fish/guestfish-actions.pod:816
25568 msgid ""
25569 "Another way to get the same information is to enable verbose messages with "
25570 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
25571 "before running the program."
25572 msgstr ""
25573
25574 # type: =head2
25575 #. type: =head2
25576 #: ../fish/guestfish-actions.pod:821
25577 msgid "download"
25578 msgstr ""
25579
25580 # type: verbatim
25581 #. type: verbatim
25582 #: ../fish/guestfish-actions.pod:823
25583 #, no-wrap
25584 msgid ""
25585 " download remotefilename (filename|-)\n"
25586 "\n"
25587 msgstr ""
25588
25589 # type: textblock
25590 #. type: textblock
25591 #: ../fish/guestfish-actions.pod:830
25592 msgid "See also L</upload>, L</cat>."
25593 msgstr ""
25594
25595 # type: =head2
25596 #. type: =head2
25597 #: ../fish/guestfish-actions.pod:834
25598 msgid "download-offset"
25599 msgstr ""
25600
25601 # type: verbatim
25602 #. type: verbatim
25603 #: ../fish/guestfish-actions.pod:836
25604 #, no-wrap
25605 msgid ""
25606 " download-offset remotefilename (filename|-) offset size\n"
25607 "\n"
25608 msgstr ""
25609
25610 # type: textblock
25611 #. type: textblock
25612 #: ../fish/guestfish-actions.pod:844
25613 msgid ""
25614 "Note that there is no limit on the amount of data that can be downloaded "
25615 "with this call, unlike with L</pread>, and this call always reads the full "
25616 "amount unless an error occurs."
25617 msgstr ""
25618
25619 # type: textblock
25620 #. type: textblock
25621 #: ../fish/guestfish-actions.pod:849
25622 msgid "See also L</download>, L</pread>."
25623 msgstr ""
25624
25625 # type: =head2
25626 #. type: =head2
25627 #: ../fish/guestfish-actions.pod:853
25628 msgid "drop-caches"
25629 msgstr ""
25630
25631 # type: verbatim
25632 #. type: verbatim
25633 #: ../fish/guestfish-actions.pod:855
25634 #, no-wrap
25635 msgid ""
25636 " drop-caches whattodrop\n"
25637 "\n"
25638 msgstr ""
25639
25640 # type: =head2
25641 #. type: =head2
25642 #: ../fish/guestfish-actions.pod:867
25643 msgid "du"
25644 msgstr ""
25645
25646 # type: verbatim
25647 #. type: verbatim
25648 #: ../fish/guestfish-actions.pod:869
25649 #, no-wrap
25650 msgid ""
25651 " du path\n"
25652 "\n"
25653 msgstr ""
25654
25655 # type: =head2
25656 #. type: =head2
25657 #: ../fish/guestfish-actions.pod:881
25658 msgid "e2fsck-f"
25659 msgstr ""
25660
25661 # type: verbatim
25662 #. type: verbatim
25663 #: ../fish/guestfish-actions.pod:883
25664 #, no-wrap
25665 msgid ""
25666 " e2fsck-f device\n"
25667 "\n"
25668 msgstr ""
25669
25670 # type: textblock
25671 #. type: textblock
25672 #: ../fish/guestfish-actions.pod:889
25673 msgid ""
25674 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
25675 "should use L</fsck>."
25676 msgstr ""
25677
25678 # type: =head2
25679 #. type: =head2
25680 #: ../fish/guestfish-actions.pod:892
25681 msgid "echo-daemon"
25682 msgstr ""
25683
25684 # type: verbatim
25685 #. type: verbatim
25686 #: ../fish/guestfish-actions.pod:894
25687 #, no-wrap
25688 msgid ""
25689 " echo-daemon 'words ...'\n"
25690 "\n"
25691 msgstr ""
25692
25693 # type: textblock
25694 #. type: textblock
25695 #: ../fish/guestfish-actions.pod:901
25696 msgid "See also L</ping-daemon>."
25697 msgstr ""
25698
25699 # type: =head2
25700 #. type: =head2
25701 #: ../fish/guestfish-actions.pod:903
25702 msgid "egrep"
25703 msgstr ""
25704
25705 # type: verbatim
25706 #. type: verbatim
25707 #: ../fish/guestfish-actions.pod:905
25708 #, no-wrap
25709 msgid ""
25710 " egrep regex path\n"
25711 "\n"
25712 msgstr ""
25713
25714 # type: =head2
25715 #. type: =head2
25716 #: ../fish/guestfish-actions.pod:913
25717 msgid "egrepi"
25718 msgstr ""
25719
25720 # type: verbatim
25721 #. type: verbatim
25722 #: ../fish/guestfish-actions.pod:915
25723 #, no-wrap
25724 msgid ""
25725 " egrepi regex path\n"
25726 "\n"
25727 msgstr ""
25728
25729 # type: =head2
25730 #. type: =head2
25731 #: ../fish/guestfish-actions.pod:923
25732 msgid "equal"
25733 msgstr ""
25734
25735 # type: verbatim
25736 #. type: verbatim
25737 #: ../fish/guestfish-actions.pod:925
25738 #, no-wrap
25739 msgid ""
25740 " equal file1 file2\n"
25741 "\n"
25742 msgstr ""
25743
25744 # type: =head2
25745 #. type: =head2
25746 #: ../fish/guestfish-actions.pod:932
25747 msgid "exists"
25748 msgstr ""
25749
25750 # type: verbatim
25751 #. type: verbatim
25752 #: ../fish/guestfish-actions.pod:934
25753 #, no-wrap
25754 msgid ""
25755 " exists path\n"
25756 "\n"
25757 msgstr ""
25758
25759 # type: textblock
25760 #. type: textblock
25761 #: ../fish/guestfish-actions.pod:939
25762 msgid "See also L</is-file>, L</is-dir>, L</stat>."
25763 msgstr ""
25764
25765 # type: =head2
25766 #. type: =head2
25767 #: ../fish/guestfish-actions.pod:941
25768 msgid "fallocate"
25769 msgstr ""
25770
25771 # type: verbatim
25772 #. type: verbatim
25773 #: ../fish/guestfish-actions.pod:943
25774 #, no-wrap
25775 msgid ""
25776 " fallocate path len\n"
25777 "\n"
25778 msgstr ""
25779
25780 # type: =head2
25781 #. type: =head2
25782 #: ../fish/guestfish-actions.pod:960
25783 msgid "fallocate64"
25784 msgstr ""
25785
25786 # type: verbatim
25787 #. type: verbatim
25788 #: ../fish/guestfish-actions.pod:962
25789 #, no-wrap
25790 msgid ""
25791 " fallocate64 path len\n"
25792 "\n"
25793 msgstr ""
25794
25795 # type: textblock
25796 #. type: textblock
25797 #: ../fish/guestfish-actions.pod:968
25798 msgid ""
25799 "Note that this call allocates disk blocks for the file.  To create a sparse "
25800 "file use L</truncate-size> instead."
25801 msgstr ""
25802
25803 # type: textblock
25804 #. type: textblock
25805 #: ../fish/guestfish-actions.pod:971
25806 msgid ""
25807 "The deprecated call L</fallocate> does the same, but owing to an oversight "
25808 "it only allowed 30 bit lengths to be specified, effectively limiting the "
25809 "maximum size of files created through that call to 1GB."
25810 msgstr ""
25811
25812 # type: =head2
25813 #. type: =head2
25814 #: ../fish/guestfish-actions.pod:980
25815 msgid "fgrep"
25816 msgstr ""
25817
25818 # type: verbatim
25819 #. type: verbatim
25820 #: ../fish/guestfish-actions.pod:982
25821 #, no-wrap
25822 msgid ""
25823 " fgrep pattern path\n"
25824 "\n"
25825 msgstr ""
25826
25827 # type: =head2
25828 #. type: =head2
25829 #: ../fish/guestfish-actions.pod:990
25830 msgid "fgrepi"
25831 msgstr ""
25832
25833 # type: verbatim
25834 #. type: verbatim
25835 #: ../fish/guestfish-actions.pod:992
25836 #, no-wrap
25837 msgid ""
25838 " fgrepi pattern path\n"
25839 "\n"
25840 msgstr ""
25841
25842 # type: =head2
25843 #. type: =head2
25844 #: ../fish/guestfish-actions.pod:1000
25845 msgid "file"
25846 msgstr ""
25847
25848 # type: verbatim
25849 #. type: verbatim
25850 #: ../fish/guestfish-actions.pod:1002
25851 #, no-wrap
25852 msgid ""
25853 " file path\n"
25854 "\n"
25855 msgstr ""
25856
25857 #. type: textblock
25858 #: ../fish/guestfish-actions.pod:1018
25859 msgid ""
25860 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
25861 "(etc)."
25862 msgstr ""
25863
25864 # type: =head2
25865 #. type: =head2
25866 #: ../fish/guestfish-actions.pod:1021
25867 msgid "file-architecture"
25868 msgstr ""
25869
25870 # type: verbatim
25871 #. type: verbatim
25872 #: ../fish/guestfish-actions.pod:1023
25873 #, no-wrap
25874 msgid ""
25875 " file-architecture filename\n"
25876 "\n"
25877 msgstr ""
25878
25879 # type: =head2
25880 #. type: =head2
25881 #: ../fish/guestfish-actions.pod:1126
25882 msgid "filesize"
25883 msgstr ""
25884
25885 # type: verbatim
25886 #. type: verbatim
25887 #: ../fish/guestfish-actions.pod:1128
25888 #, no-wrap
25889 msgid ""
25890 " filesize file\n"
25891 "\n"
25892 msgstr ""
25893
25894 # type: textblock
25895 #. type: textblock
25896 #: ../fish/guestfish-actions.pod:1132
25897 msgid ""
25898 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
25899 "file> etc.  To get the size of block devices, use L</blockdev-getsize64>."
25900 msgstr ""
25901
25902 # type: =head2
25903 #. type: =head2
25904 #: ../fish/guestfish-actions.pod:1136
25905 msgid "fill"
25906 msgstr ""
25907
25908 # type: verbatim
25909 #. type: verbatim
25910 #: ../fish/guestfish-actions.pod:1138
25911 #, no-wrap
25912 msgid ""
25913 " fill c len path\n"
25914 "\n"
25915 msgstr ""
25916
25917 # type: textblock
25918 #. type: textblock
25919 #: ../fish/guestfish-actions.pod:1144
25920 msgid ""
25921 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
25922 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
25923 "L</fill-pattern>."
25924 msgstr ""
25925
25926 # type: =head2
25927 #. type: =head2
25928 #: ../fish/guestfish-actions.pod:1149
25929 msgid "fill-pattern"
25930 msgstr ""
25931
25932 # type: verbatim
25933 #. type: verbatim
25934 #: ../fish/guestfish-actions.pod:1151
25935 #, no-wrap
25936 msgid ""
25937 " fill-pattern pattern len path\n"
25938 "\n"
25939 msgstr ""
25940
25941 # type: textblock
25942 #. type: textblock
25943 #: ../fish/guestfish-actions.pod:1153
25944 msgid ""
25945 "This function is like L</fill> except that it creates a new file of length "
25946 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
25947 "is truncated if necessary to ensure the length of the file is exactly C<len> "
25948 "bytes."
25949 msgstr ""
25950
25951 # type: =head2
25952 #. type: =head2
25953 #: ../fish/guestfish-actions.pod:1158
25954 msgid "find"
25955 msgstr ""
25956
25957 # type: verbatim
25958 #. type: verbatim
25959 #: ../fish/guestfish-actions.pod:1160
25960 #, no-wrap
25961 msgid ""
25962 " find directory\n"
25963 "\n"
25964 msgstr ""
25965
25966 # type: textblock
25967 #. type: textblock
25968 #: ../fish/guestfish-actions.pod:1174
25969 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
25970 msgstr ""
25971
25972 # type: textblock
25973 #. type: textblock
25974 #: ../fish/guestfish-actions.pod:1187
25975 msgid "See also L</find0>."
25976 msgstr ""
25977
25978 # type: =head2
25979 #. type: =head2
25980 #: ../fish/guestfish-actions.pod:1192
25981 msgid "find0"
25982 msgstr ""
25983
25984 # type: verbatim
25985 #. type: verbatim
25986 #: ../fish/guestfish-actions.pod:1194
25987 #, no-wrap
25988 msgid ""
25989 " find0 directory (files|-)\n"
25990 "\n"
25991 msgstr ""
25992
25993 # type: textblock
25994 #. type: textblock
25995 #: ../fish/guestfish-actions.pod:1200
25996 msgid ""
25997 "This command works the same way as L</find> with the following exceptions:"
25998 msgstr ""
25999
26000 # type: =head2
26001 #. type: =head2
26002 #: ../fish/guestfish-actions.pod:1227
26003 msgid "findfs-label"
26004 msgstr ""
26005
26006 # type: verbatim
26007 #. type: verbatim
26008 #: ../fish/guestfish-actions.pod:1229
26009 #, no-wrap
26010 msgid ""
26011 " findfs-label label\n"
26012 "\n"
26013 msgstr ""
26014
26015 # type: textblock
26016 #. type: textblock
26017 #: ../fish/guestfish-actions.pod:1235
26018 msgid "To find the label of a filesystem, use L</vfs-label>."
26019 msgstr ""
26020
26021 # type: =head2
26022 #. type: =head2
26023 #: ../fish/guestfish-actions.pod:1237
26024 msgid "findfs-uuid"
26025 msgstr ""
26026
26027 # type: verbatim
26028 #. type: verbatim
26029 #: ../fish/guestfish-actions.pod:1239
26030 #, no-wrap
26031 msgid ""
26032 " findfs-uuid uuid\n"
26033 "\n"
26034 msgstr ""
26035
26036 # type: textblock
26037 #. type: textblock
26038 #: ../fish/guestfish-actions.pod:1245
26039 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
26040 msgstr ""
26041
26042 # type: =head2
26043 #. type: =head2
26044 #: ../fish/guestfish-actions.pod:1247
26045 msgid "fsck"
26046 msgstr ""
26047
26048 # type: verbatim
26049 #. type: verbatim
26050 #: ../fish/guestfish-actions.pod:1249
26051 #, no-wrap
26052 msgid ""
26053 " fsck fstype device\n"
26054 "\n"
26055 msgstr ""
26056
26057 # type: =head2
26058 #. type: =head2
26059 #: ../fish/guestfish-actions.pod:1279
26060 msgid "get-append"
26061 msgstr ""
26062
26063 # type: verbatim
26064 #. type: verbatim
26065 #: ../fish/guestfish-actions.pod:1281
26066 #, no-wrap
26067 msgid ""
26068 " get-append\n"
26069 "\n"
26070 msgstr ""
26071
26072 #. type: =head2
26073 #: ../fish/guestfish-actions.pod:1288
26074 msgid "get-attach-method"
26075 msgstr ""
26076
26077 #. type: verbatim
26078 #: ../fish/guestfish-actions.pod:1290
26079 #, no-wrap
26080 msgid ""
26081 " get-attach-method\n"
26082 "\n"
26083 msgstr ""
26084
26085 #. type: textblock
26086 #: ../fish/guestfish-actions.pod:1292
26087 msgid "Return the current attach method.  See L</set-attach-method>."
26088 msgstr ""
26089
26090 # type: =head2
26091 #. type: =head2
26092 #: ../fish/guestfish-actions.pod:1294
26093 msgid "get-autosync"
26094 msgstr ""
26095
26096 # type: verbatim
26097 #. type: verbatim
26098 #: ../fish/guestfish-actions.pod:1296
26099 #, no-wrap
26100 msgid ""
26101 " get-autosync\n"
26102 "\n"
26103 msgstr ""
26104
26105 # type: =head2
26106 #. type: =head2
26107 #: ../fish/guestfish-actions.pod:1300
26108 msgid "get-direct"
26109 msgstr ""
26110
26111 # type: verbatim
26112 #. type: verbatim
26113 #: ../fish/guestfish-actions.pod:1302
26114 #, no-wrap
26115 msgid ""
26116 " get-direct\n"
26117 "\n"
26118 msgstr ""
26119
26120 # type: =head2
26121 #. type: =head2
26122 #: ../fish/guestfish-actions.pod:1306
26123 msgid "get-e2label"
26124 msgstr ""
26125
26126 # type: verbatim
26127 #. type: verbatim
26128 #: ../fish/guestfish-actions.pod:1308
26129 #, no-wrap
26130 msgid ""
26131 " get-e2label device\n"
26132 "\n"
26133 msgstr ""
26134
26135 # type: =head2
26136 #. type: =head2
26137 #: ../fish/guestfish-actions.pod:1320
26138 msgid "get-e2uuid"
26139 msgstr ""
26140
26141 # type: verbatim
26142 #. type: verbatim
26143 #: ../fish/guestfish-actions.pod:1322
26144 #, no-wrap
26145 msgid ""
26146 " get-e2uuid device\n"
26147 "\n"
26148 msgstr ""
26149
26150 # type: =head2
26151 #. type: =head2
26152 #: ../fish/guestfish-actions.pod:1334
26153 msgid "get-memsize"
26154 msgstr ""
26155
26156 # type: verbatim
26157 #. type: verbatim
26158 #: ../fish/guestfish-actions.pod:1336
26159 #, no-wrap
26160 msgid ""
26161 " get-memsize\n"
26162 "\n"
26163 msgstr ""
26164
26165 # type: textblock
26166 #. type: textblock
26167 #: ../fish/guestfish-actions.pod:1341
26168 msgid ""
26169 "If L</set-memsize> was not called on this handle, and if "
26170 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
26171 "value for memsize."
26172 msgstr ""
26173
26174 # type: =head2
26175 #. type: =head2
26176 #: ../fish/guestfish-actions.pod:1348
26177 msgid "get-network"
26178 msgstr ""
26179
26180 # type: verbatim
26181 #. type: verbatim
26182 #: ../fish/guestfish-actions.pod:1350
26183 #, no-wrap
26184 msgid ""
26185 " get-network\n"
26186 "\n"
26187 msgstr ""
26188
26189 # type: =head2
26190 #. type: =head2
26191 #: ../fish/guestfish-actions.pod:1354
26192 msgid "get-path"
26193 msgstr ""
26194
26195 # type: verbatim
26196 #. type: verbatim
26197 #: ../fish/guestfish-actions.pod:1356
26198 #, no-wrap
26199 msgid ""
26200 " get-path\n"
26201 "\n"
26202 msgstr ""
26203
26204 # type: =head2
26205 #. type: =head2
26206 #: ../fish/guestfish-actions.pod:1363
26207 msgid "get-pid"
26208 msgstr ""
26209
26210 # type: =head2
26211 #. type: =head2
26212 #: ../fish/guestfish-actions.pod:1365
26213 msgid "pid"
26214 msgstr ""
26215
26216 # type: verbatim
26217 #. type: verbatim
26218 #: ../fish/guestfish-actions.pod:1367
26219 #, no-wrap
26220 msgid ""
26221 " get-pid\n"
26222 "\n"
26223 msgstr ""
26224
26225 # type: =head2
26226 #. type: =head2
26227 #: ../fish/guestfish-actions.pod:1374
26228 msgid "get-qemu"
26229 msgstr ""
26230
26231 # type: verbatim
26232 #. type: verbatim
26233 #: ../fish/guestfish-actions.pod:1376
26234 #, no-wrap
26235 msgid ""
26236 " get-qemu\n"
26237 "\n"
26238 msgstr ""
26239
26240 # type: =head2
26241 #. type: =head2
26242 #: ../fish/guestfish-actions.pod:1383
26243 msgid "get-recovery-proc"
26244 msgstr ""
26245
26246 # type: verbatim
26247 #. type: verbatim
26248 #: ../fish/guestfish-actions.pod:1385
26249 #, no-wrap
26250 msgid ""
26251 " get-recovery-proc\n"
26252 "\n"
26253 msgstr ""
26254
26255 # type: =head2
26256 #. type: =head2
26257 #: ../fish/guestfish-actions.pod:1389
26258 msgid "get-selinux"
26259 msgstr ""
26260
26261 # type: verbatim
26262 #. type: verbatim
26263 #: ../fish/guestfish-actions.pod:1391
26264 #, no-wrap
26265 msgid ""
26266 " get-selinux\n"
26267 "\n"
26268 msgstr ""
26269
26270 # type: textblock
26271 #. type: textblock
26272 #: ../fish/guestfish-actions.pod:1393
26273 msgid ""
26274 "This returns the current setting of the selinux flag which is passed to the "
26275 "appliance at boot time.  See L</set-selinux>."
26276 msgstr ""
26277
26278 # type: =head2
26279 #. type: =head2
26280 #: ../fish/guestfish-actions.pod:1399
26281 msgid "get-state"
26282 msgstr ""
26283
26284 # type: verbatim
26285 #. type: verbatim
26286 #: ../fish/guestfish-actions.pod:1401
26287 #, no-wrap
26288 msgid ""
26289 " get-state\n"
26290 "\n"
26291 msgstr ""
26292
26293 # type: =head2
26294 #. type: =head2
26295 #: ../fish/guestfish-actions.pod:1408
26296 msgid "get-trace"
26297 msgstr ""
26298
26299 # type: verbatim
26300 #. type: verbatim
26301 #: ../fish/guestfish-actions.pod:1410
26302 #, no-wrap
26303 msgid ""
26304 " get-trace\n"
26305 "\n"
26306 msgstr ""
26307
26308 # type: =head2
26309 #. type: =head2
26310 #: ../fish/guestfish-actions.pod:1414
26311 msgid "get-umask"
26312 msgstr ""
26313
26314 # type: verbatim
26315 #. type: verbatim
26316 #: ../fish/guestfish-actions.pod:1416
26317 #, no-wrap
26318 msgid ""
26319 " get-umask\n"
26320 "\n"
26321 msgstr ""
26322
26323 # type: textblock
26324 #. type: textblock
26325 #: ../fish/guestfish-actions.pod:1418
26326 msgid ""
26327 "Return the current umask.  By default the umask is C<022> unless it has been "
26328 "set by calling L</umask>."
26329 msgstr ""
26330
26331 # type: =head2
26332 #. type: =head2
26333 #: ../fish/guestfish-actions.pod:1421
26334 msgid "get-verbose"
26335 msgstr ""
26336
26337 # type: verbatim
26338 #. type: verbatim
26339 #: ../fish/guestfish-actions.pod:1423
26340 #, no-wrap
26341 msgid ""
26342 " get-verbose\n"
26343 "\n"
26344 msgstr ""
26345
26346 # type: =head2
26347 #. type: =head2
26348 #: ../fish/guestfish-actions.pod:1427
26349 msgid "getcon"
26350 msgstr ""
26351
26352 # type: verbatim
26353 #. type: verbatim
26354 #: ../fish/guestfish-actions.pod:1429
26355 #, no-wrap
26356 msgid ""
26357 " getcon\n"
26358 "\n"
26359 msgstr ""
26360
26361 # type: textblock
26362 #. type: textblock
26363 #: ../fish/guestfish-actions.pod:1433
26364 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
26365 msgstr ""
26366
26367 # type: =head2
26368 #. type: =head2
26369 #: ../fish/guestfish-actions.pod:1436
26370 msgid "getxattr"
26371 msgstr ""
26372
26373 # type: verbatim
26374 #. type: verbatim
26375 #: ../fish/guestfish-actions.pod:1438
26376 #, no-wrap
26377 msgid ""
26378 " getxattr path name\n"
26379 "\n"
26380 msgstr ""
26381
26382 # type: textblock
26383 #. type: textblock
26384 #: ../fish/guestfish-actions.pod:1440
26385 msgid ""
26386 "Get a single extended attribute from file C<path> named C<name>.  This call "
26387 "follows symlinks.  If you want to lookup an extended attribute for the "
26388 "symlink itself, use L</lgetxattr>."
26389 msgstr ""
26390
26391 # type: textblock
26392 #. type: textblock
26393 #: ../fish/guestfish-actions.pod:1444 ../fish/guestfish-actions.pod:2450
26394 msgid ""
26395 "Normally it is better to get all extended attributes from a file in one go "
26396 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
26397 "buggy and do not provide a way to list out attributes.  For these "
26398 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
26399 "attributes you want in advance and call this function."
26400 msgstr ""
26401
26402 # type: textblock
26403 #. type: textblock
26404 #: ../fish/guestfish-actions.pod:1454
26405 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
26406 msgstr ""
26407
26408 # type: =head2
26409 #. type: =head2
26410 #: ../fish/guestfish-actions.pod:1456
26411 msgid "getxattrs"
26412 msgstr ""
26413
26414 # type: verbatim
26415 #. type: verbatim
26416 #: ../fish/guestfish-actions.pod:1458
26417 #, no-wrap
26418 msgid ""
26419 " getxattrs path\n"
26420 "\n"
26421 msgstr ""
26422
26423 # type: textblock
26424 #. type: textblock
26425 #: ../fish/guestfish-actions.pod:1466
26426 msgid "See also: L</lgetxattrs>, L<attr(5)>."
26427 msgstr ""
26428
26429 # type: =head2
26430 #. type: =head2
26431 #: ../fish/guestfish-actions.pod:1468
26432 msgid "glob-expand"
26433 msgstr ""
26434
26435 # type: verbatim
26436 #. type: verbatim
26437 #: ../fish/guestfish-actions.pod:1470
26438 #, no-wrap
26439 msgid ""
26440 " glob-expand pattern\n"
26441 "\n"
26442 msgstr ""
26443
26444 # type: =head2
26445 #. type: =head2
26446 #: ../fish/guestfish-actions.pod:1483
26447 msgid "grep"
26448 msgstr ""
26449
26450 # type: verbatim
26451 #. type: verbatim
26452 #: ../fish/guestfish-actions.pod:1485
26453 #, no-wrap
26454 msgid ""
26455 " grep regex path\n"
26456 "\n"
26457 msgstr ""
26458
26459 # type: =head2
26460 #. type: =head2
26461 #: ../fish/guestfish-actions.pod:1493
26462 msgid "grepi"
26463 msgstr ""
26464
26465 # type: verbatim
26466 #. type: verbatim
26467 #: ../fish/guestfish-actions.pod:1495
26468 #, no-wrap
26469 msgid ""
26470 " grepi regex path\n"
26471 "\n"
26472 msgstr ""
26473
26474 # type: =head2
26475 #. type: =head2
26476 #: ../fish/guestfish-actions.pod:1503
26477 msgid "grub-install"
26478 msgstr ""
26479
26480 # type: verbatim
26481 #. type: verbatim
26482 #: ../fish/guestfish-actions.pod:1505
26483 #, no-wrap
26484 msgid ""
26485 " grub-install root device\n"
26486 "\n"
26487 msgstr ""
26488
26489 # type: =head2
26490 #. type: =head2
26491 #: ../fish/guestfish-actions.pod:1521
26492 msgid "head"
26493 msgstr ""
26494
26495 # type: verbatim
26496 #. type: verbatim
26497 #: ../fish/guestfish-actions.pod:1523
26498 #, no-wrap
26499 msgid ""
26500 " head path\n"
26501 "\n"
26502 msgstr ""
26503
26504 # type: =head2
26505 #. type: =head2
26506 #: ../fish/guestfish-actions.pod:1531
26507 msgid "head-n"
26508 msgstr ""
26509
26510 # type: verbatim
26511 #. type: verbatim
26512 #: ../fish/guestfish-actions.pod:1533
26513 #, no-wrap
26514 msgid ""
26515 " head-n nrlines path\n"
26516 "\n"
26517 msgstr ""
26518
26519 # type: =head2
26520 #. type: =head2
26521 #: ../fish/guestfish-actions.pod:1546
26522 msgid "hexdump"
26523 msgstr ""
26524
26525 # type: verbatim
26526 #. type: verbatim
26527 #: ../fish/guestfish-actions.pod:1548
26528 #, no-wrap
26529 msgid ""
26530 " hexdump path\n"
26531 "\n"
26532 msgstr ""
26533
26534 # type: =head2
26535 #. type: =head2
26536 #: ../fish/guestfish-actions.pod:1556
26537 msgid "initrd-cat"
26538 msgstr ""
26539
26540 # type: verbatim
26541 #. type: verbatim
26542 #: ../fish/guestfish-actions.pod:1558
26543 #, no-wrap
26544 msgid ""
26545 " initrd-cat initrdpath filename\n"
26546 "\n"
26547 msgstr ""
26548
26549 # type: textblock
26550 #. type: textblock
26551 #: ../fish/guestfish-actions.pod:1570
26552 msgid "See also L</initrd-list>."
26553 msgstr ""
26554
26555 # type: =head2
26556 #. type: =head2
26557 #: ../fish/guestfish-actions.pod:1575
26558 msgid "initrd-list"
26559 msgstr ""
26560
26561 # type: verbatim
26562 #. type: verbatim
26563 #: ../fish/guestfish-actions.pod:1577
26564 #, no-wrap
26565 msgid ""
26566 " initrd-list path\n"
26567 "\n"
26568 msgstr ""
26569
26570 # type: =head2
26571 #. type: =head2
26572 #: ../fish/guestfish-actions.pod:1589
26573 msgid "inotify-add-watch"
26574 msgstr ""
26575
26576 # type: verbatim
26577 #. type: verbatim
26578 #: ../fish/guestfish-actions.pod:1591
26579 #, no-wrap
26580 msgid ""
26581 " inotify-add-watch path mask\n"
26582 "\n"
26583 msgstr ""
26584
26585 # type: =head2
26586 #. type: =head2
26587 #: ../fish/guestfish-actions.pod:1603
26588 msgid "inotify-close"
26589 msgstr ""
26590
26591 # type: verbatim
26592 #. type: verbatim
26593 #: ../fish/guestfish-actions.pod:1605
26594 #, no-wrap
26595 msgid ""
26596 " inotify-close\n"
26597 "\n"
26598 msgstr ""
26599
26600 # type: =head2
26601 #. type: =head2
26602 #: ../fish/guestfish-actions.pod:1611
26603 msgid "inotify-files"
26604 msgstr ""
26605
26606 # type: verbatim
26607 #. type: verbatim
26608 #: ../fish/guestfish-actions.pod:1613
26609 #, no-wrap
26610 msgid ""
26611 " inotify-files\n"
26612 "\n"
26613 msgstr ""
26614
26615 # type: textblock
26616 #. type: textblock
26617 #: ../fish/guestfish-actions.pod:1615
26618 msgid ""
26619 "This function is a helpful wrapper around L</inotify-read> which just "
26620 "returns a list of pathnames of objects that were touched.  The returned "
26621 "pathnames are sorted and deduplicated."
26622 msgstr ""
26623
26624 # type: =head2
26625 #. type: =head2
26626 #: ../fish/guestfish-actions.pod:1619
26627 msgid "inotify-init"
26628 msgstr ""
26629
26630 # type: verbatim
26631 #. type: verbatim
26632 #: ../fish/guestfish-actions.pod:1621
26633 #, no-wrap
26634 msgid ""
26635 " inotify-init maxevents\n"
26636 "\n"
26637 msgstr ""
26638
26639 # type: textblock
26640 #. type: textblock
26641 #: ../fish/guestfish-actions.pod:1627
26642 msgid ""
26643 "C<maxevents> is the maximum number of events which will be queued up between "
26644 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
26645 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
26646 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
26647 "but records the fact that it threw them away by setting a flag "
26648 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
26649 msgstr ""
26650
26651 # type: textblock
26652 #. type: textblock
26653 #: ../fish/guestfish-actions.pod:1637
26654 msgid ""
26655 "Before any events are generated, you have to add some watches to the "
26656 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
26657 "L</inotify-watch-all>."
26658 msgstr ""
26659
26660 # type: textblock
26661 #. type: textblock
26662 #: ../fish/guestfish-actions.pod:1643
26663 msgid ""
26664 "Queued up events should be read periodically by calling L</inotify-read> (or "
26665 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
26666 "If you don't read the events out often enough then you risk the internal "
26667 "queue overflowing."
26668 msgstr ""
26669
26670 # type: textblock
26671 #. type: textblock
26672 #: ../fish/guestfish-actions.pod:1650
26673 msgid ""
26674 "The handle should be closed after use by calling L</inotify-close>.  This "
26675 "also removes any watches automatically."
26676 msgstr ""
26677
26678 # type: =head2
26679 #. type: =head2
26680 #: ../fish/guestfish-actions.pod:1659
26681 msgid "inotify-read"
26682 msgstr ""
26683
26684 # type: verbatim
26685 #. type: verbatim
26686 #: ../fish/guestfish-actions.pod:1661
26687 #, no-wrap
26688 msgid ""
26689 " inotify-read\n"
26690 "\n"
26691 msgstr ""
26692
26693 # type: =head2
26694 #. type: =head2
26695 #: ../fish/guestfish-actions.pod:1674
26696 msgid "inotify-rm-watch"
26697 msgstr ""
26698
26699 # type: verbatim
26700 #. type: verbatim
26701 #: ../fish/guestfish-actions.pod:1676
26702 #, no-wrap
26703 msgid ""
26704 " inotify-rm-watch wd\n"
26705 "\n"
26706 msgstr ""
26707
26708 # type: textblock
26709 #. type: textblock
26710 #: ../fish/guestfish-actions.pod:1678
26711 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
26712 msgstr ""
26713
26714 # type: =head2
26715 #. type: =head2
26716 #: ../fish/guestfish-actions.pod:1681
26717 msgid "inspect-get-arch"
26718 msgstr ""
26719
26720 # type: verbatim
26721 #. type: verbatim
26722 #: ../fish/guestfish-actions.pod:1683
26723 #, no-wrap
26724 msgid ""
26725 " inspect-get-arch root\n"
26726 "\n"
26727 msgstr ""
26728
26729 # type: textblock
26730 #. type: textblock
26731 #: ../fish/guestfish-actions.pod:1685 ../fish/guestfish-actions.pod:1701
26732 #: ../fish/guestfish-actions.pod:1787 ../fish/guestfish-actions.pod:1823
26733 #: ../fish/guestfish-actions.pod:1841 ../fish/guestfish-actions.pod:1875
26734 #: ../fish/guestfish-actions.pod:1890 ../fish/guestfish-actions.pod:1911
26735 #: ../fish/guestfish-actions.pod:1926 ../fish/guestfish-actions.pod:1959
26736 #: ../fish/guestfish-actions.pod:1981 ../fish/guestfish-actions.pod:2005
26737 #: ../fish/guestfish-actions.pod:2022 ../fish/guestfish-actions.pod:2065
26738 #: ../fish/guestfish-actions.pod:2100 ../fish/guestfish-actions.pod:2116
26739 #: ../fish/guestfish-actions.pod:2132 ../fish/guestfish-actions.pod:2145
26740 #: ../fish/guestfish-actions.pod:2158 ../fish/guestfish-actions.pod:2173
26741 msgid ""
26742 "This function should only be called with a root device string as returned by "
26743 "L</inspect-os>."
26744 msgstr ""
26745
26746 # type: textblock
26747 #. type: textblock
26748 #: ../fish/guestfish-actions.pod:1688
26749 msgid ""
26750 "This returns the architecture of the inspected operating system.  The "
26751 "possible return values are listed under L</file-architecture>."
26752 msgstr ""
26753
26754 # type: =head2
26755 #. type: =head2
26756 #: ../fish/guestfish-actions.pod:1697
26757 msgid "inspect-get-distro"
26758 msgstr ""
26759
26760 # type: verbatim
26761 #. type: verbatim
26762 #: ../fish/guestfish-actions.pod:1699
26763 #, no-wrap
26764 msgid ""
26765 " inspect-get-distro root\n"
26766 "\n"
26767 msgstr ""
26768
26769 #. type: =head2
26770 #: ../fish/guestfish-actions.pod:1783
26771 msgid "inspect-get-drive-mappings"
26772 msgstr ""
26773
26774 #. type: verbatim
26775 #: ../fish/guestfish-actions.pod:1785
26776 #, no-wrap
26777 msgid ""
26778 " inspect-get-drive-mappings root\n"
26779 "\n"
26780 msgstr ""
26781
26782 #. type: textblock
26783 #: ../fish/guestfish-actions.pod:1815
26784 msgid ""
26785 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26786 "get-mountpoints>, L</inspect-get-filesystems>."
26787 msgstr ""
26788
26789 # type: =head2
26790 #. type: =head2
26791 #: ../fish/guestfish-actions.pod:1819
26792 msgid "inspect-get-filesystems"
26793 msgstr ""
26794
26795 # type: verbatim
26796 #. type: verbatim
26797 #: ../fish/guestfish-actions.pod:1821
26798 #, no-wrap
26799 msgid ""
26800 " inspect-get-filesystems root\n"
26801 "\n"
26802 msgstr ""
26803
26804 # type: textblock
26805 #. type: textblock
26806 #: ../fish/guestfish-actions.pod:1834
26807 msgid ""
26808 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26809 "get-mountpoints>."
26810 msgstr ""
26811
26812 #. type: =head2
26813 #: ../fish/guestfish-actions.pod:1837
26814 msgid "inspect-get-format"
26815 msgstr ""
26816
26817 #. type: verbatim
26818 #: ../fish/guestfish-actions.pod:1839
26819 #, no-wrap
26820 msgid ""
26821 " inspect-get-format root\n"
26822 "\n"
26823 msgstr ""
26824
26825 # type: =head2
26826 #. type: =head2
26827 #: ../fish/guestfish-actions.pod:1871
26828 msgid "inspect-get-hostname"
26829 msgstr ""
26830
26831 # type: verbatim
26832 #. type: verbatim
26833 #: ../fish/guestfish-actions.pod:1873
26834 #, no-wrap
26835 msgid ""
26836 " inspect-get-hostname root\n"
26837 "\n"
26838 msgstr ""
26839
26840 # type: =head2
26841 #. type: =head2
26842 #: ../fish/guestfish-actions.pod:1886
26843 msgid "inspect-get-major-version"
26844 msgstr ""
26845
26846 # type: verbatim
26847 #. type: verbatim
26848 #: ../fish/guestfish-actions.pod:1888
26849 #, no-wrap
26850 msgid ""
26851 " inspect-get-major-version root\n"
26852 "\n"
26853 msgstr ""
26854
26855 # type: =head2
26856 #. type: =head2
26857 #: ../fish/guestfish-actions.pod:1907
26858 msgid "inspect-get-minor-version"
26859 msgstr ""
26860
26861 # type: verbatim
26862 #. type: verbatim
26863 #: ../fish/guestfish-actions.pod:1909
26864 #, no-wrap
26865 msgid ""
26866 " inspect-get-minor-version root\n"
26867 "\n"
26868 msgstr ""
26869
26870 # type: textblock
26871 #. type: textblock
26872 #: ../fish/guestfish-actions.pod:1919
26873 msgid ""
26874 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26875 "get-major-version>."
26876 msgstr ""
26877
26878 # type: =head2
26879 #. type: =head2
26880 #: ../fish/guestfish-actions.pod:1922
26881 msgid "inspect-get-mountpoints"
26882 msgstr ""
26883
26884 # type: verbatim
26885 #. type: verbatim
26886 #: ../fish/guestfish-actions.pod:1924
26887 #, no-wrap
26888 msgid ""
26889 " inspect-get-mountpoints root\n"
26890 "\n"
26891 msgstr ""
26892
26893 #. type: textblock
26894 #: ../fish/guestfish-actions.pod:1946
26895 msgid ""
26896 "For operating systems like Windows which still use drive letters, this call "
26897 "will only return an entry for the first drive \"mounted on\" C</>.  For "
26898 "information about the mapping of drive letters to partitions, see L</inspect-"
26899 "get-drive-mappings>."
26900 msgstr ""
26901
26902 # type: textblock
26903 #. type: textblock
26904 #: ../fish/guestfish-actions.pod:1952
26905 msgid ""
26906 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26907 "get-filesystems>."
26908 msgstr ""
26909
26910 # type: =head2
26911 #. type: =head2
26912 #: ../fish/guestfish-actions.pod:1955
26913 msgid "inspect-get-package-format"
26914 msgstr ""
26915
26916 # type: verbatim
26917 #. type: verbatim
26918 #: ../fish/guestfish-actions.pod:1957
26919 #, no-wrap
26920 msgid ""
26921 " inspect-get-package-format root\n"
26922 "\n"
26923 msgstr ""
26924
26925 # type: textblock
26926 #. type: textblock
26927 #: ../fish/guestfish-actions.pod:1962
26928 msgid ""
26929 "This function and L</inspect-get-package-management> return the package "
26930 "format and package management tool used by the inspected operating system.  "
26931 "For example for Fedora these functions would return C<rpm> (package format) "
26932 "and C<yum> (package management)."
26933 msgstr ""
26934
26935 # type: =head2
26936 #. type: =head2
26937 #: ../fish/guestfish-actions.pod:1977
26938 msgid "inspect-get-package-management"
26939 msgstr ""
26940
26941 # type: verbatim
26942 #. type: verbatim
26943 #: ../fish/guestfish-actions.pod:1979
26944 #, no-wrap
26945 msgid ""
26946 " inspect-get-package-management root\n"
26947 "\n"
26948 msgstr ""
26949
26950 # type: textblock
26951 #. type: textblock
26952 #: ../fish/guestfish-actions.pod:1984
26953 msgid ""
26954 "L</inspect-get-package-format> and this function return the package format "
26955 "and package management tool used by the inspected operating system.  For "
26956 "example for Fedora these functions would return C<rpm> (package format) and "
26957 "C<yum> (package management)."
26958 msgstr ""
26959
26960 # type: =head2
26961 #. type: =head2
26962 #: ../fish/guestfish-actions.pod:2001
26963 msgid "inspect-get-product-name"
26964 msgstr ""
26965
26966 # type: verbatim
26967 #. type: verbatim
26968 #: ../fish/guestfish-actions.pod:2003
26969 #, no-wrap
26970 msgid ""
26971 " inspect-get-product-name root\n"
26972 "\n"
26973 msgstr ""
26974
26975 #. type: =head2
26976 #: ../fish/guestfish-actions.pod:2018
26977 msgid "inspect-get-product-variant"
26978 msgstr ""
26979
26980 #. type: verbatim
26981 #: ../fish/guestfish-actions.pod:2020
26982 #, no-wrap
26983 msgid ""
26984 " inspect-get-product-variant root\n"
26985 "\n"
26986 msgstr ""
26987
26988 #. type: textblock
26989 #: ../fish/guestfish-actions.pod:2044
26990 msgid ""
26991 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26992 "get-product-name>, L</inspect-get-major-version>."
26993 msgstr ""
26994
26995 # type: =head2
26996 #. type: =head2
26997 #: ../fish/guestfish-actions.pod:2048
26998 msgid "inspect-get-roots"
26999 msgstr ""
27000
27001 # type: verbatim
27002 #. type: verbatim
27003 #: ../fish/guestfish-actions.pod:2050
27004 #, no-wrap
27005 msgid ""
27006 " inspect-get-roots\n"
27007 "\n"
27008 msgstr ""
27009
27010 # type: textblock
27011 #. type: textblock
27012 #: ../fish/guestfish-actions.pod:2052
27013 msgid ""
27014 "This function is a convenient way to get the list of root devices, as "
27015 "returned from a previous call to L</inspect-os>, but without redoing the "
27016 "whole inspection process."
27017 msgstr ""
27018
27019 # type: textblock
27020 #. type: textblock
27021 #: ../fish/guestfish-actions.pod:2056
27022 msgid ""
27023 "This returns an empty list if either no root devices were found or the "
27024 "caller has not called L</inspect-os>."
27025 msgstr ""
27026
27027 # type: =head2
27028 #. type: =head2
27029 #: ../fish/guestfish-actions.pod:2061
27030 msgid "inspect-get-type"
27031 msgstr ""
27032
27033 # type: verbatim
27034 #. type: verbatim
27035 #: ../fish/guestfish-actions.pod:2063
27036 #, no-wrap
27037 msgid ""
27038 " inspect-get-type root\n"
27039 "\n"
27040 msgstr ""
27041
27042 #. type: =head2
27043 #: ../fish/guestfish-actions.pod:2096
27044 msgid "inspect-get-windows-current-control-set"
27045 msgstr ""
27046
27047 #. type: verbatim
27048 #: ../fish/guestfish-actions.pod:2098
27049 #, no-wrap
27050 msgid ""
27051 " inspect-get-windows-current-control-set root\n"
27052 "\n"
27053 msgstr ""
27054
27055 # type: =head2
27056 #. type: =head2
27057 #: ../fish/guestfish-actions.pod:2112
27058 msgid "inspect-get-windows-systemroot"
27059 msgstr ""
27060
27061 # type: verbatim
27062 #. type: verbatim
27063 #: ../fish/guestfish-actions.pod:2114
27064 #, no-wrap
27065 msgid ""
27066 " inspect-get-windows-systemroot root\n"
27067 "\n"
27068 msgstr ""
27069
27070 #. type: =head2
27071 #: ../fish/guestfish-actions.pod:2128
27072 msgid "inspect-is-live"
27073 msgstr ""
27074
27075 #. type: verbatim
27076 #: ../fish/guestfish-actions.pod:2130
27077 #, no-wrap
27078 msgid ""
27079 " inspect-is-live root\n"
27080 "\n"
27081 msgstr ""
27082
27083 #. type: textblock
27084 #: ../fish/guestfish-actions.pod:2135
27085 msgid ""
27086 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
27087 "then this returns true if a live image was detected on the disk."
27088 msgstr ""
27089
27090 #. type: =head2
27091 #: ../fish/guestfish-actions.pod:2141
27092 msgid "inspect-is-multipart"
27093 msgstr ""
27094
27095 #. type: verbatim
27096 #: ../fish/guestfish-actions.pod:2143
27097 #, no-wrap
27098 msgid ""
27099 " inspect-is-multipart root\n"
27100 "\n"
27101 msgstr ""
27102
27103 #. type: textblock
27104 #: ../fish/guestfish-actions.pod:2148
27105 msgid ""
27106 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
27107 "then this returns true if the disk is part of a set."
27108 msgstr ""
27109
27110 #. type: =head2
27111 #: ../fish/guestfish-actions.pod:2154
27112 msgid "inspect-is-netinst"
27113 msgstr ""
27114
27115 #. type: verbatim
27116 #: ../fish/guestfish-actions.pod:2156
27117 #, no-wrap
27118 msgid ""
27119 " inspect-is-netinst root\n"
27120 "\n"
27121 msgstr ""
27122
27123 #. type: textblock
27124 #: ../fish/guestfish-actions.pod:2161
27125 msgid ""
27126 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
27127 "then this returns true if the disk is a network installer, ie. not a self-"
27128 "contained install CD but one which is likely to require network access to "
27129 "complete the install."
27130 msgstr ""
27131
27132 # type: =head2
27133 #. type: =head2
27134 #: ../fish/guestfish-actions.pod:2169
27135 msgid "inspect-list-applications"
27136 msgstr ""
27137
27138 # type: verbatim
27139 #. type: verbatim
27140 #: ../fish/guestfish-actions.pod:2171
27141 #, no-wrap
27142 msgid ""
27143 " inspect-list-applications root\n"
27144 "\n"
27145 msgstr ""
27146
27147 # type: textblock
27148 #. type: textblock
27149 #: ../fish/guestfish-actions.pod:2178
27150 msgid ""
27151 "I<Note:> This call works differently from other parts of the inspection "
27152 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
27153 "then mount up the disks, before calling this.  Listing applications is a "
27154 "significantly more difficult operation which requires access to the full "
27155 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
27156 "are just returning data cached in the libguestfs handle, this call actually "
27157 "reads parts of the mounted filesystems during the call."
27158 msgstr ""
27159
27160 # type: =head2
27161 #. type: =head2
27162 #: ../fish/guestfish-actions.pod:2268
27163 msgid "inspect-os"
27164 msgstr ""
27165
27166 # type: verbatim
27167 #. type: verbatim
27168 #: ../fish/guestfish-actions.pod:2270
27169 #, no-wrap
27170 msgid ""
27171 " inspect-os\n"
27172 "\n"
27173 msgstr ""
27174
27175 # type: textblock
27176 #. type: textblock
27177 #: ../fish/guestfish-actions.pod:2285
27178 msgid ""
27179 "You can pass the root string(s) returned to other L</inspect-get-*> "
27180 "functions in order to query further information about each operating system, "
27181 "such as the name and version."
27182 msgstr ""
27183
27184 # type: textblock
27185 #. type: textblock
27186 #: ../fish/guestfish-actions.pod:2290
27187 msgid ""
27188 "This function uses other libguestfs features such as L</mount-ro> and L</"
27189 "umount-all> in order to mount and unmount filesystems and look at the "
27190 "contents.  This should be called with no disks currently mounted.  The "
27191 "function may also use Augeas, so any existing Augeas handle will be closed."
27192 msgstr ""
27193
27194 # type: textblock
27195 #. type: textblock
27196 #: ../fish/guestfish-actions.pod:2302 ../fish/guestfish-actions.pod:2478
27197 #: ../fish/guestfish-actions.pod:2524
27198 msgid "See also L</list-filesystems>."
27199 msgstr ""
27200
27201 # type: =head2
27202 #. type: =head2
27203 #: ../fish/guestfish-actions.pod:2304
27204 msgid "is-blockdev"
27205 msgstr ""
27206
27207 # type: verbatim
27208 #. type: verbatim
27209 #: ../fish/guestfish-actions.pod:2306
27210 #, no-wrap
27211 msgid ""
27212 " is-blockdev path\n"
27213 "\n"
27214 msgstr ""
27215
27216 # type: textblock
27217 #. type: textblock
27218 #: ../fish/guestfish-actions.pod:2311 ../fish/guestfish-actions.pod:2329
27219 #: ../fish/guestfish-actions.pod:2348 ../fish/guestfish-actions.pod:2357
27220 #: ../fish/guestfish-actions.pod:2367 ../fish/guestfish-actions.pod:2401
27221 #: ../fish/guestfish-actions.pod:2410
27222 msgid "See also L</stat>."
27223 msgstr ""
27224
27225 # type: =head2
27226 #. type: =head2
27227 #: ../fish/guestfish-actions.pod:2313
27228 msgid "is-busy"
27229 msgstr ""
27230
27231 # type: verbatim
27232 #. type: verbatim
27233 #: ../fish/guestfish-actions.pod:2315
27234 #, no-wrap
27235 msgid ""
27236 " is-busy\n"
27237 "\n"
27238 msgstr ""
27239
27240 # type: =head2
27241 #. type: =head2
27242 #: ../fish/guestfish-actions.pod:2322
27243 msgid "is-chardev"
27244 msgstr ""
27245
27246 # type: verbatim
27247 #. type: verbatim
27248 #: ../fish/guestfish-actions.pod:2324
27249 #, no-wrap
27250 msgid ""
27251 " is-chardev path\n"
27252 "\n"
27253 msgstr ""
27254
27255 # type: =head2
27256 #. type: =head2
27257 #: ../fish/guestfish-actions.pod:2331
27258 msgid "is-config"
27259 msgstr ""
27260
27261 # type: verbatim
27262 #. type: verbatim
27263 #: ../fish/guestfish-actions.pod:2333
27264 #, no-wrap
27265 msgid ""
27266 " is-config\n"
27267 "\n"
27268 msgstr ""
27269
27270 # type: =head2
27271 #. type: =head2
27272 #: ../fish/guestfish-actions.pod:2340
27273 msgid "is-dir"
27274 msgstr ""
27275
27276 # type: verbatim
27277 #. type: verbatim
27278 #: ../fish/guestfish-actions.pod:2342
27279 #, no-wrap
27280 msgid ""
27281 " is-dir path\n"
27282 "\n"
27283 msgstr ""
27284
27285 # type: =head2
27286 #. type: =head2
27287 #: ../fish/guestfish-actions.pod:2350
27288 msgid "is-fifo"
27289 msgstr ""
27290
27291 # type: verbatim
27292 #. type: verbatim
27293 #: ../fish/guestfish-actions.pod:2352
27294 #, no-wrap
27295 msgid ""
27296 " is-fifo path\n"
27297 "\n"
27298 msgstr ""
27299
27300 # type: =head2
27301 #. type: =head2
27302 #: ../fish/guestfish-actions.pod:2359
27303 msgid "is-file"
27304 msgstr ""
27305
27306 # type: verbatim
27307 #. type: verbatim
27308 #: ../fish/guestfish-actions.pod:2361
27309 #, no-wrap
27310 msgid ""
27311 " is-file path\n"
27312 "\n"
27313 msgstr ""
27314
27315 # type: =head2
27316 #. type: =head2
27317 #: ../fish/guestfish-actions.pod:2369
27318 msgid "is-launching"
27319 msgstr ""
27320
27321 # type: verbatim
27322 #. type: verbatim
27323 #: ../fish/guestfish-actions.pod:2371
27324 #, no-wrap
27325 msgid ""
27326 " is-launching\n"
27327 "\n"
27328 msgstr ""
27329
27330 # type: =head2
27331 #. type: =head2
27332 #: ../fish/guestfish-actions.pod:2378
27333 msgid "is-lv"
27334 msgstr ""
27335
27336 # type: verbatim
27337 #. type: verbatim
27338 #: ../fish/guestfish-actions.pod:2380
27339 #, no-wrap
27340 msgid ""
27341 " is-lv device\n"
27342 "\n"
27343 msgstr ""
27344
27345 # type: =head2
27346 #. type: =head2
27347 #: ../fish/guestfish-actions.pod:2385
27348 msgid "is-ready"
27349 msgstr ""
27350
27351 # type: verbatim
27352 #. type: verbatim
27353 #: ../fish/guestfish-actions.pod:2387
27354 #, no-wrap
27355 msgid ""
27356 " is-ready\n"
27357 "\n"
27358 msgstr ""
27359
27360 # type: =head2
27361 #. type: =head2
27362 #: ../fish/guestfish-actions.pod:2394
27363 msgid "is-socket"
27364 msgstr ""
27365
27366 # type: verbatim
27367 #. type: verbatim
27368 #: ../fish/guestfish-actions.pod:2396
27369 #, no-wrap
27370 msgid ""
27371 " is-socket path\n"
27372 "\n"
27373 msgstr ""
27374
27375 # type: =head2
27376 #. type: =head2
27377 #: ../fish/guestfish-actions.pod:2403
27378 msgid "is-symlink"
27379 msgstr ""
27380
27381 # type: verbatim
27382 #. type: verbatim
27383 #: ../fish/guestfish-actions.pod:2405
27384 #, no-wrap
27385 msgid ""
27386 " is-symlink path\n"
27387 "\n"
27388 msgstr ""
27389
27390 # type: =head2
27391 #. type: =head2
27392 #: ../fish/guestfish-actions.pod:2412
27393 msgid "kill-subprocess"
27394 msgstr ""
27395
27396 # type: verbatim
27397 #. type: verbatim
27398 #: ../fish/guestfish-actions.pod:2414
27399 #, no-wrap
27400 msgid ""
27401 " kill-subprocess\n"
27402 "\n"
27403 msgstr ""
27404
27405 # type: =head2
27406 #. type: =head2
27407 #: ../fish/guestfish-actions.pod:2418
27408 msgid "launch"
27409 msgstr ""
27410
27411 # type: =head2
27412 #. type: =head2
27413 #: ../fish/guestfish-actions.pod:2420
27414 msgid "run"
27415 msgstr ""
27416
27417 # type: verbatim
27418 #. type: verbatim
27419 #: ../fish/guestfish-actions.pod:2422
27420 #, no-wrap
27421 msgid ""
27422 " launch\n"
27423 "\n"
27424 msgstr ""
27425
27426 # type: =head2
27427 #. type: =head2
27428 #: ../fish/guestfish-actions.pod:2430
27429 msgid "lchown"
27430 msgstr ""
27431
27432 # type: verbatim
27433 #. type: verbatim
27434 #: ../fish/guestfish-actions.pod:2432
27435 #, no-wrap
27436 msgid ""
27437 " lchown owner group path\n"
27438 "\n"
27439 msgstr ""
27440
27441 # type: textblock
27442 #. type: textblock
27443 #: ../fish/guestfish-actions.pod:2434
27444 msgid ""
27445 "Change the file owner to C<owner> and group to C<group>.  This is like L</"
27446 "chown> but if C<path> is a symlink then the link itself is changed, not the "
27447 "target."
27448 msgstr ""
27449
27450 # type: =head2
27451 #. type: =head2
27452 #: ../fish/guestfish-actions.pod:2442
27453 msgid "lgetxattr"
27454 msgstr ""
27455
27456 # type: verbatim
27457 #. type: verbatim
27458 #: ../fish/guestfish-actions.pod:2444
27459 #, no-wrap
27460 msgid ""
27461 " lgetxattr path name\n"
27462 "\n"
27463 msgstr ""
27464
27465 # type: textblock
27466 #. type: textblock
27467 #: ../fish/guestfish-actions.pod:2460
27468 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
27469 msgstr ""
27470
27471 # type: =head2
27472 #. type: =head2
27473 #: ../fish/guestfish-actions.pod:2462
27474 msgid "lgetxattrs"
27475 msgstr ""
27476
27477 # type: verbatim
27478 #. type: verbatim
27479 #: ../fish/guestfish-actions.pod:2464
27480 #, no-wrap
27481 msgid ""
27482 " lgetxattrs path\n"
27483 "\n"
27484 msgstr ""
27485
27486 # type: textblock
27487 #. type: textblock
27488 #: ../fish/guestfish-actions.pod:2466
27489 msgid ""
27490 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
27491 "it returns the extended attributes of the link itself."
27492 msgstr ""
27493
27494 # type: =head2
27495 #. type: =head2
27496 #: ../fish/guestfish-actions.pod:2470
27497 msgid "list-devices"
27498 msgstr ""
27499
27500 # type: verbatim
27501 #. type: verbatim
27502 #: ../fish/guestfish-actions.pod:2472
27503 #, no-wrap
27504 msgid ""
27505 " list-devices\n"
27506 "\n"
27507 msgstr ""
27508
27509 # type: =head2
27510 #. type: =head2
27511 #: ../fish/guestfish-actions.pod:2480
27512 msgid "list-filesystems"
27513 msgstr ""
27514
27515 # type: verbatim
27516 #. type: verbatim
27517 #: ../fish/guestfish-actions.pod:2482
27518 #, no-wrap
27519 msgid ""
27520 " list-filesystems\n"
27521 "\n"
27522 msgstr ""
27523
27524 # type: textblock
27525 #. type: textblock
27526 #: ../fish/guestfish-actions.pod:2501
27527 msgid ""
27528 "This command runs other libguestfs commands, which might include L</mount> "
27529 "and L</umount>, and therefore you should use this soon after launch and only "
27530 "when nothing is mounted."
27531 msgstr ""
27532
27533 # type: textblock
27534 #. type: textblock
27535 #: ../fish/guestfish-actions.pod:2505
27536 msgid ""
27537 "Not all of the filesystems returned will be mountable.  In particular, swap "
27538 "partitions are returned in the list.  Also this command does not check that "
27539 "each filesystem found is valid and mountable, and some filesystems might be "
27540 "mountable but require special options.  Filesystems may not all belong to a "
27541 "single logical operating system (use L</inspect-os> to look for OSes)."
27542 msgstr ""
27543
27544 # type: =head2
27545 #. type: =head2
27546 #: ../fish/guestfish-actions.pod:2513
27547 msgid "list-partitions"
27548 msgstr ""
27549
27550 # type: verbatim
27551 #. type: verbatim
27552 #: ../fish/guestfish-actions.pod:2515
27553 #, no-wrap
27554 msgid ""
27555 " list-partitions\n"
27556 "\n"
27557 msgstr ""
27558
27559 # type: textblock
27560 #. type: textblock
27561 #: ../fish/guestfish-actions.pod:2521
27562 msgid ""
27563 "This does not return logical volumes.  For that you will need to call L</"
27564 "lvs>."
27565 msgstr ""
27566
27567 # type: =head2
27568 #. type: =head2
27569 #: ../fish/guestfish-actions.pod:2526
27570 msgid "ll"
27571 msgstr ""
27572
27573 # type: verbatim
27574 #. type: verbatim
27575 #: ../fish/guestfish-actions.pod:2528
27576 #, no-wrap
27577 msgid ""
27578 " ll directory\n"
27579 "\n"
27580 msgstr ""
27581
27582 # type: =head2
27583 #. type: =head2
27584 #: ../fish/guestfish-actions.pod:2536
27585 msgid "ln"
27586 msgstr ""
27587
27588 # type: verbatim
27589 #. type: verbatim
27590 #: ../fish/guestfish-actions.pod:2538
27591 #, no-wrap
27592 msgid ""
27593 " ln target linkname\n"
27594 "\n"
27595 msgstr ""
27596
27597 # type: =head2
27598 #. type: =head2
27599 #: ../fish/guestfish-actions.pod:2542
27600 msgid "ln-f"
27601 msgstr ""
27602
27603 # type: verbatim
27604 #. type: verbatim
27605 #: ../fish/guestfish-actions.pod:2544
27606 #, no-wrap
27607 msgid ""
27608 " ln-f target linkname\n"
27609 "\n"
27610 msgstr ""
27611
27612 # type: =head2
27613 #. type: =head2
27614 #: ../fish/guestfish-actions.pod:2549
27615 msgid "ln-s"
27616 msgstr ""
27617
27618 # type: verbatim
27619 #. type: verbatim
27620 #: ../fish/guestfish-actions.pod:2551
27621 #, no-wrap
27622 msgid ""
27623 " ln-s target linkname\n"
27624 "\n"
27625 msgstr ""
27626
27627 # type: =head2
27628 #. type: =head2
27629 #: ../fish/guestfish-actions.pod:2555
27630 msgid "ln-sf"
27631 msgstr ""
27632
27633 # type: verbatim
27634 #. type: verbatim
27635 #: ../fish/guestfish-actions.pod:2557
27636 #, no-wrap
27637 msgid ""
27638 " ln-sf target linkname\n"
27639 "\n"
27640 msgstr ""
27641
27642 # type: =head2
27643 #. type: =head2
27644 #: ../fish/guestfish-actions.pod:2562
27645 msgid "lremovexattr"
27646 msgstr ""
27647
27648 # type: verbatim
27649 #. type: verbatim
27650 #: ../fish/guestfish-actions.pod:2564
27651 #, no-wrap
27652 msgid ""
27653 " lremovexattr xattr path\n"
27654 "\n"
27655 msgstr ""
27656
27657 # type: textblock
27658 #. type: textblock
27659 #: ../fish/guestfish-actions.pod:2566
27660 msgid ""
27661 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
27662 "it removes an extended attribute of the link itself."
27663 msgstr ""
27664
27665 # type: =head2
27666 #. type: =head2
27667 #: ../fish/guestfish-actions.pod:2570
27668 msgid "ls"
27669 msgstr ""
27670
27671 # type: verbatim
27672 #. type: verbatim
27673 #: ../fish/guestfish-actions.pod:2572
27674 #, no-wrap
27675 msgid ""
27676 " ls directory\n"
27677 "\n"
27678 msgstr ""
27679
27680 # type: textblock
27681 #. type: textblock
27682 #: ../fish/guestfish-actions.pod:2578
27683 msgid ""
27684 "This command is mostly useful for interactive sessions.  Programs should "
27685 "probably use L</readdir> instead."
27686 msgstr ""
27687
27688 # type: =head2
27689 #. type: =head2
27690 #: ../fish/guestfish-actions.pod:2581
27691 msgid "lsetxattr"
27692 msgstr ""
27693
27694 # type: verbatim
27695 #. type: verbatim
27696 #: ../fish/guestfish-actions.pod:2583
27697 #, no-wrap
27698 msgid ""
27699 " lsetxattr xattr val vallen path\n"
27700 "\n"
27701 msgstr ""
27702
27703 # type: textblock
27704 #. type: textblock
27705 #: ../fish/guestfish-actions.pod:2585
27706 msgid ""
27707 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
27708 "sets an extended attribute of the link itself."
27709 msgstr ""
27710
27711 # type: =head2
27712 #. type: =head2
27713 #: ../fish/guestfish-actions.pod:2589
27714 msgid "lstat"
27715 msgstr ""
27716
27717 # type: verbatim
27718 #. type: verbatim
27719 #: ../fish/guestfish-actions.pod:2591
27720 #, no-wrap
27721 msgid ""
27722 " lstat path\n"
27723 "\n"
27724 msgstr ""
27725
27726 # type: textblock
27727 #. type: textblock
27728 #: ../fish/guestfish-actions.pod:2595
27729 msgid ""
27730 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
27731 "the link is stat-ed, not the file it refers to."
27732 msgstr ""
27733
27734 # type: =head2
27735 #. type: =head2
27736 #: ../fish/guestfish-actions.pod:2601
27737 msgid "lstatlist"
27738 msgstr ""
27739
27740 # type: verbatim
27741 #. type: verbatim
27742 #: ../fish/guestfish-actions.pod:2603
27743 #, no-wrap
27744 msgid ""
27745 " lstatlist path 'names ...'\n"
27746 "\n"
27747 msgstr ""
27748
27749 # type: textblock
27750 #. type: textblock
27751 #: ../fish/guestfish-actions.pod:2605
27752 msgid ""
27753 "This call allows you to perform the L</lstat> operation on multiple files, "
27754 "where all files are in the directory C<path>.  C<names> is the list of files "
27755 "from this directory."
27756 msgstr ""
27757
27758 # type: textblock
27759 #. type: textblock
27760 #: ../fish/guestfish-actions.pod:2614
27761 msgid ""
27762 "This call is intended for programs that want to efficiently list a directory "
27763 "contents without making many round-trips.  See also L</lxattrlist> for a "
27764 "similarly efficient call for getting extended attributes.  Very long "
27765 "directory listings might cause the protocol message size to be exceeded, "
27766 "causing this call to fail.  The caller must split up such requests into "
27767 "smaller groups of names."
27768 msgstr ""
27769
27770 # type: =head2
27771 #. type: =head2
27772 #: ../fish/guestfish-actions.pod:2622
27773 msgid "luks-add-key"
27774 msgstr ""
27775
27776 # type: verbatim
27777 #. type: verbatim
27778 #: ../fish/guestfish-actions.pod:2624
27779 #, no-wrap
27780 msgid ""
27781 " luks-add-key device keyslot\n"
27782 "\n"
27783 msgstr ""
27784
27785 # type: textblock
27786 #. type: textblock
27787 #: ../fish/guestfish-actions.pod:2631
27788 msgid ""
27789 "Note that if C<keyslot> already contains a key, then this command will "
27790 "fail.  You have to use L</luks-kill-slot> first to remove that key."
27791 msgstr ""
27792
27793 # type: textblock
27794 #. type: textblock
27795 #: ../fish/guestfish-actions.pod:2635 ../fish/guestfish-actions.pod:2657
27796 #: ../fish/guestfish-actions.pod:2670 ../fish/guestfish-actions.pod:2684
27797 #: ../fish/guestfish-actions.pod:2707 ../fish/guestfish-actions.pod:2717
27798 msgid ""
27799 "This command has one or more key or passphrase parameters.  Guestfish will "
27800 "prompt for these separately."
27801 msgstr ""
27802
27803 # type: =head2
27804 #. type: =head2
27805 #: ../fish/guestfish-actions.pod:2638
27806 msgid "luks-close"
27807 msgstr ""
27808
27809 # type: verbatim
27810 #. type: verbatim
27811 #: ../fish/guestfish-actions.pod:2640
27812 #, no-wrap
27813 msgid ""
27814 " luks-close device\n"
27815 "\n"
27816 msgstr ""
27817
27818 # type: textblock
27819 #. type: textblock
27820 #: ../fish/guestfish-actions.pod:2642
27821 msgid ""
27822 "This closes a LUKS device that was created earlier by L</luks-open> or L</"
27823 "luks-open-ro>.  The C<device> parameter must be the name of the LUKS mapping "
27824 "device (ie. C</dev/mapper/mapname>) and I<not> the name of the underlying "
27825 "block device."
27826 msgstr ""
27827
27828 # type: =head2
27829 #. type: =head2
27830 #: ../fish/guestfish-actions.pod:2648
27831 msgid "luks-format"
27832 msgstr ""
27833
27834 # type: verbatim
27835 #. type: verbatim
27836 #: ../fish/guestfish-actions.pod:2650
27837 #, no-wrap
27838 msgid ""
27839 " luks-format device keyslot\n"
27840 "\n"
27841 msgstr ""
27842
27843 # type: =head2
27844 #. type: =head2
27845 #: ../fish/guestfish-actions.pod:2663
27846 msgid "luks-format-cipher"
27847 msgstr ""
27848
27849 # type: verbatim
27850 #. type: verbatim
27851 #: ../fish/guestfish-actions.pod:2665
27852 #, no-wrap
27853 msgid ""
27854 " luks-format-cipher device keyslot cipher\n"
27855 "\n"
27856 msgstr ""
27857
27858 # type: textblock
27859 #. type: textblock
27860 #: ../fish/guestfish-actions.pod:2667
27861 msgid ""
27862 "This command is the same as L</luks-format> but it also allows you to set "
27863 "the C<cipher> used."
27864 msgstr ""
27865
27866 # type: =head2
27867 #. type: =head2
27868 #: ../fish/guestfish-actions.pod:2676
27869 msgid "luks-kill-slot"
27870 msgstr ""
27871
27872 # type: verbatim
27873 #. type: verbatim
27874 #: ../fish/guestfish-actions.pod:2678
27875 #, no-wrap
27876 msgid ""
27877 " luks-kill-slot device keyslot\n"
27878 "\n"
27879 msgstr ""
27880
27881 # type: =head2
27882 #. type: =head2
27883 #: ../fish/guestfish-actions.pod:2687
27884 msgid "luks-open"
27885 msgstr ""
27886
27887 # type: verbatim
27888 #. type: verbatim
27889 #: ../fish/guestfish-actions.pod:2689
27890 #, no-wrap
27891 msgid ""
27892 " luks-open device mapname\n"
27893 "\n"
27894 msgstr ""
27895
27896 # type: textblock
27897 #. type: textblock
27898 #: ../fish/guestfish-actions.pod:2703
27899 msgid ""
27900 "If this block device contains LVM volume groups, then calling L</vgscan> "
27901 "followed by L</vg-activate-all> will make them visible."
27902 msgstr ""
27903
27904 # type: =head2
27905 #. type: =head2
27906 #: ../fish/guestfish-actions.pod:2710
27907 msgid "luks-open-ro"
27908 msgstr ""
27909
27910 # type: verbatim
27911 #. type: verbatim
27912 #: ../fish/guestfish-actions.pod:2712
27913 #, no-wrap
27914 msgid ""
27915 " luks-open-ro device mapname\n"
27916 "\n"
27917 msgstr ""
27918
27919 # type: textblock
27920 #. type: textblock
27921 #: ../fish/guestfish-actions.pod:2714
27922 msgid ""
27923 "This is the same as L</luks-open> except that a read-only mapping is created."
27924 msgstr ""
27925
27926 # type: =head2
27927 #. type: =head2
27928 #: ../fish/guestfish-actions.pod:2720
27929 msgid "lvcreate"
27930 msgstr ""
27931
27932 # type: verbatim
27933 #. type: verbatim
27934 #: ../fish/guestfish-actions.pod:2722
27935 #, no-wrap
27936 msgid ""
27937 " lvcreate logvol volgroup mbytes\n"
27938 "\n"
27939 msgstr ""
27940
27941 # type: =head2
27942 #. type: =head2
27943 #: ../fish/guestfish-actions.pod:2727
27944 msgid "lvm-canonical-lv-name"
27945 msgstr ""
27946
27947 # type: verbatim
27948 #. type: verbatim
27949 #: ../fish/guestfish-actions.pod:2729
27950 #, no-wrap
27951 msgid ""
27952 " lvm-canonical-lv-name lvname\n"
27953 "\n"
27954 msgstr ""
27955
27956 # type: textblock
27957 #. type: textblock
27958 #: ../fish/guestfish-actions.pod:2738
27959 msgid "See also L</is-lv>."
27960 msgstr ""
27961
27962 # type: =head2
27963 #. type: =head2
27964 #: ../fish/guestfish-actions.pod:2740
27965 msgid "lvm-clear-filter"
27966 msgstr ""
27967
27968 # type: verbatim
27969 #. type: verbatim
27970 #: ../fish/guestfish-actions.pod:2742
27971 #, no-wrap
27972 msgid ""
27973 " lvm-clear-filter\n"
27974 "\n"
27975 msgstr ""
27976
27977 # type: textblock
27978 #. type: textblock
27979 #: ../fish/guestfish-actions.pod:2744
27980 msgid ""
27981 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
27982 "block device."
27983 msgstr ""
27984
27985 # type: =head2
27986 #. type: =head2
27987 #: ../fish/guestfish-actions.pod:2750
27988 msgid "lvm-remove-all"
27989 msgstr ""
27990
27991 # type: verbatim
27992 #. type: verbatim
27993 #: ../fish/guestfish-actions.pod:2752
27994 #, no-wrap
27995 msgid ""
27996 " lvm-remove-all\n"
27997 "\n"
27998 msgstr ""
27999
28000 # type: =head2
28001 #. type: =head2
28002 #: ../fish/guestfish-actions.pod:2760
28003 msgid "lvm-set-filter"
28004 msgstr ""
28005
28006 # type: verbatim
28007 #. type: verbatim
28008 #: ../fish/guestfish-actions.pod:2762
28009 #, no-wrap
28010 msgid ""
28011 " lvm-set-filter 'devices ...'\n"
28012 "\n"
28013 msgstr ""
28014
28015 # type: =head2
28016 #. type: =head2
28017 #: ../fish/guestfish-actions.pod:2787
28018 msgid "lvremove"
28019 msgstr ""
28020
28021 # type: verbatim
28022 #. type: verbatim
28023 #: ../fish/guestfish-actions.pod:2789
28024 #, no-wrap
28025 msgid ""
28026 " lvremove device\n"
28027 "\n"
28028 msgstr ""
28029
28030 # type: =head2
28031 #. type: =head2
28032 #: ../fish/guestfish-actions.pod:2797
28033 msgid "lvrename"
28034 msgstr ""
28035
28036 # type: verbatim
28037 #. type: verbatim
28038 #: ../fish/guestfish-actions.pod:2799
28039 #, no-wrap
28040 msgid ""
28041 " lvrename logvol newlogvol\n"
28042 "\n"
28043 msgstr ""
28044
28045 # type: =head2
28046 #. type: =head2
28047 #: ../fish/guestfish-actions.pod:2803
28048 msgid "lvresize"
28049 msgstr ""
28050
28051 # type: verbatim
28052 #. type: verbatim
28053 #: ../fish/guestfish-actions.pod:2805
28054 #, no-wrap
28055 msgid ""
28056 " lvresize device mbytes\n"
28057 "\n"
28058 msgstr ""
28059
28060 # type: =head2
28061 #. type: =head2
28062 #: ../fish/guestfish-actions.pod:2811
28063 msgid "lvresize-free"
28064 msgstr ""
28065
28066 # type: verbatim
28067 #. type: verbatim
28068 #: ../fish/guestfish-actions.pod:2813
28069 #, no-wrap
28070 msgid ""
28071 " lvresize-free lv percent\n"
28072 "\n"
28073 msgstr ""
28074
28075 # type: =head2
28076 #. type: =head2
28077 #: ../fish/guestfish-actions.pod:2821
28078 msgid "lvs"
28079 msgstr ""
28080
28081 # type: verbatim
28082 #. type: verbatim
28083 #: ../fish/guestfish-actions.pod:2823
28084 #, no-wrap
28085 msgid ""
28086 " lvs\n"
28087 "\n"
28088 msgstr ""
28089
28090 # type: textblock
28091 #. type: textblock
28092 #: ../fish/guestfish-actions.pod:2831
28093 msgid "See also L</lvs-full>, L</list-filesystems>."
28094 msgstr ""
28095
28096 # type: =head2
28097 #. type: =head2
28098 #: ../fish/guestfish-actions.pod:2833
28099 msgid "lvs-full"
28100 msgstr ""
28101
28102 # type: verbatim
28103 #. type: verbatim
28104 #: ../fish/guestfish-actions.pod:2835
28105 #, no-wrap
28106 msgid ""
28107 " lvs-full\n"
28108 "\n"
28109 msgstr ""
28110
28111 # type: =head2
28112 #. type: =head2
28113 #: ../fish/guestfish-actions.pod:2840
28114 msgid "lvuuid"
28115 msgstr ""
28116
28117 # type: verbatim
28118 #. type: verbatim
28119 #: ../fish/guestfish-actions.pod:2842
28120 #, no-wrap
28121 msgid ""
28122 " lvuuid device\n"
28123 "\n"
28124 msgstr ""
28125
28126 # type: =head2
28127 #. type: =head2
28128 #: ../fish/guestfish-actions.pod:2846
28129 msgid "lxattrlist"
28130 msgstr ""
28131
28132 # type: verbatim
28133 #. type: verbatim
28134 #: ../fish/guestfish-actions.pod:2848
28135 #, no-wrap
28136 msgid ""
28137 " lxattrlist path 'names ...'\n"
28138 "\n"
28139 msgstr ""
28140
28141 # type: textblock
28142 #. type: textblock
28143 #: ../fish/guestfish-actions.pod:2864
28144 msgid ""
28145 "This call is intended for programs that want to efficiently list a directory "
28146 "contents without making many round-trips.  See also L</lstatlist> for a "
28147 "similarly efficient call for getting standard stats.  Very long directory "
28148 "listings might cause the protocol message size to be exceeded, causing this "
28149 "call to fail.  The caller must split up such requests into smaller groups of "
28150 "names."
28151 msgstr ""
28152
28153 # type: =head2
28154 #. type: =head2
28155 #: ../fish/guestfish-actions.pod:2872
28156 msgid "mkdir"
28157 msgstr ""
28158
28159 # type: verbatim
28160 #. type: verbatim
28161 #: ../fish/guestfish-actions.pod:2874
28162 #, no-wrap
28163 msgid ""
28164 " mkdir path\n"
28165 "\n"
28166 msgstr ""
28167
28168 # type: =head2
28169 #. type: =head2
28170 #: ../fish/guestfish-actions.pod:2878
28171 msgid "mkdir-mode"
28172 msgstr ""
28173
28174 # type: verbatim
28175 #. type: verbatim
28176 #: ../fish/guestfish-actions.pod:2880
28177 #, no-wrap
28178 msgid ""
28179 " mkdir-mode path mode\n"
28180 "\n"
28181 msgstr ""
28182
28183 # type: textblock
28184 #. type: textblock
28185 #: ../fish/guestfish-actions.pod:2889
28186 msgid "See also L</mkdir>, L</umask>"
28187 msgstr ""
28188
28189 # type: =head2
28190 #. type: =head2
28191 #: ../fish/guestfish-actions.pod:2891
28192 msgid "mkdir-p"
28193 msgstr ""
28194
28195 # type: verbatim
28196 #. type: verbatim
28197 #: ../fish/guestfish-actions.pod:2893
28198 #, no-wrap
28199 msgid ""
28200 " mkdir-p path\n"
28201 "\n"
28202 msgstr ""
28203
28204 # type: =head2
28205 #. type: =head2
28206 #: ../fish/guestfish-actions.pod:2898
28207 msgid "mkdtemp"
28208 msgstr ""
28209
28210 # type: verbatim
28211 #. type: verbatim
28212 #: ../fish/guestfish-actions.pod:2900
28213 #, no-wrap
28214 msgid ""
28215 " mkdtemp template\n"
28216 "\n"
28217 msgstr ""
28218
28219 # type: =head2
28220 #. type: =head2
28221 #: ../fish/guestfish-actions.pod:2921
28222 msgid "mke2fs-J"
28223 msgstr ""
28224
28225 # type: verbatim
28226 #. type: verbatim
28227 #: ../fish/guestfish-actions.pod:2923
28228 #, no-wrap
28229 msgid ""
28230 " mke2fs-J fstype blocksize device journal\n"
28231 "\n"
28232 msgstr ""
28233
28234 # type: textblock
28235 #. type: textblock
28236 #: ../fish/guestfish-actions.pod:2931
28237 msgid "See also L</mke2journal>."
28238 msgstr ""
28239
28240 # type: =head2
28241 #. type: =head2
28242 #: ../fish/guestfish-actions.pod:2933
28243 msgid "mke2fs-JL"
28244 msgstr ""
28245
28246 # type: verbatim
28247 #. type: verbatim
28248 #: ../fish/guestfish-actions.pod:2935
28249 #, no-wrap
28250 msgid ""
28251 " mke2fs-JL fstype blocksize device label\n"
28252 "\n"
28253 msgstr ""
28254
28255 # type: textblock
28256 #. type: textblock
28257 #: ../fish/guestfish-actions.pod:2940
28258 msgid "See also L</mke2journal-L>."
28259 msgstr ""
28260
28261 # type: =head2
28262 #. type: =head2
28263 #: ../fish/guestfish-actions.pod:2942
28264 msgid "mke2fs-JU"
28265 msgstr ""
28266
28267 # type: verbatim
28268 #. type: verbatim
28269 #: ../fish/guestfish-actions.pod:2944
28270 #, no-wrap
28271 msgid ""
28272 " mke2fs-JU fstype blocksize device uuid\n"
28273 "\n"
28274 msgstr ""
28275
28276 # type: textblock
28277 #. type: textblock
28278 #: ../fish/guestfish-actions.pod:2949
28279 msgid "See also L</mke2journal-U>."
28280 msgstr ""
28281
28282 # type: =head2
28283 #. type: =head2
28284 #: ../fish/guestfish-actions.pod:2951
28285 msgid "mke2journal"
28286 msgstr ""
28287
28288 # type: verbatim
28289 #. type: verbatim
28290 #: ../fish/guestfish-actions.pod:2953
28291 #, no-wrap
28292 msgid ""
28293 " mke2journal blocksize device\n"
28294 "\n"
28295 msgstr ""
28296
28297 # type: =head2
28298 #. type: =head2
28299 #: ../fish/guestfish-actions.pod:2960
28300 msgid "mke2journal-L"
28301 msgstr ""
28302
28303 # type: verbatim
28304 #. type: verbatim
28305 #: ../fish/guestfish-actions.pod:2962
28306 #, no-wrap
28307 msgid ""
28308 " mke2journal-L blocksize label device\n"
28309 "\n"
28310 msgstr ""
28311
28312 # type: =head2
28313 #. type: =head2
28314 #: ../fish/guestfish-actions.pod:2966
28315 msgid "mke2journal-U"
28316 msgstr ""
28317
28318 # type: verbatim
28319 #. type: verbatim
28320 #: ../fish/guestfish-actions.pod:2968
28321 #, no-wrap
28322 msgid ""
28323 " mke2journal-U blocksize uuid device\n"
28324 "\n"
28325 msgstr ""
28326
28327 # type: =head2
28328 #. type: =head2
28329 #: ../fish/guestfish-actions.pod:2972
28330 msgid "mkfifo"
28331 msgstr ""
28332
28333 # type: verbatim
28334 #. type: verbatim
28335 #: ../fish/guestfish-actions.pod:2974
28336 #, no-wrap
28337 msgid ""
28338 " mkfifo mode path\n"
28339 "\n"
28340 msgstr ""
28341
28342 # type: textblock
28343 #. type: textblock
28344 #: ../fish/guestfish-actions.pod:2976
28345 msgid ""
28346 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
28347 "is just a convenient wrapper around L</mknod>."
28348 msgstr ""
28349
28350 # type: =head2
28351 #. type: =head2
28352 #: ../fish/guestfish-actions.pod:2982
28353 msgid "mkfs"
28354 msgstr ""
28355
28356 # type: verbatim
28357 #. type: verbatim
28358 #: ../fish/guestfish-actions.pod:2984
28359 #, no-wrap
28360 msgid ""
28361 " mkfs fstype device\n"
28362 "\n"
28363 msgstr ""
28364
28365 # type: =head2
28366 #. type: =head2
28367 #: ../fish/guestfish-actions.pod:2990
28368 msgid "mkfs-b"
28369 msgstr ""
28370
28371 # type: verbatim
28372 #. type: verbatim
28373 #: ../fish/guestfish-actions.pod:2992
28374 #, no-wrap
28375 msgid ""
28376 " mkfs-b fstype blocksize device\n"
28377 "\n"
28378 msgstr ""
28379
28380 # type: textblock
28381 #. type: textblock
28382 #: ../fish/guestfish-actions.pod:2994
28383 msgid ""
28384 "This call is similar to L</mkfs>, but it allows you to control the block "
28385 "size of the resulting filesystem.  Supported block sizes depend on the "
28386 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
28387 msgstr ""
28388
28389 # type: =head2
28390 #. type: =head2
28391 #: ../fish/guestfish-actions.pod:3009
28392 msgid "mkfs-opts"
28393 msgstr ""
28394
28395 #. type: verbatim
28396 #: ../fish/guestfish-actions.pod:3011
28397 #, no-wrap
28398 msgid ""
28399 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
28400 "\n"
28401 msgstr ""
28402
28403 # type: =head2
28404 #. type: =head2
28405 #: ../fish/guestfish-actions.pod:3046
28406 msgid "mkmountpoint"
28407 msgstr ""
28408
28409 # type: verbatim
28410 #. type: verbatim
28411 #: ../fish/guestfish-actions.pod:3048
28412 #, no-wrap
28413 msgid ""
28414 " mkmountpoint exemptpath\n"
28415 "\n"
28416 msgstr ""
28417
28418 # type: textblock
28419 #. type: textblock
28420 #: ../fish/guestfish-actions.pod:3050
28421 msgid ""
28422 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
28423 "to create extra mountpoints before mounting the first filesystem."
28424 msgstr ""
28425
28426 # type: textblock
28427 #. type: textblock
28428 #: ../fish/guestfish-actions.pod:3074
28429 msgid ""
28430 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
28431 "unexpected errors if you try to mix these calls.  It is safest to manually "
28432 "unmount filesystems and remove mountpoints after use."
28433 msgstr ""
28434
28435 # type: textblock
28436 #. type: textblock
28437 #: ../fish/guestfish-actions.pod:3078
28438 msgid ""
28439 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
28440 "for this to work for manual mountpoints, you must ensure that the innermost "
28441 "mountpoints have the longest pathnames, as in the example code above."
28442 msgstr ""
28443
28444 #. type: textblock
28445 #: ../fish/guestfish-actions.pod:3085
28446 msgid ""
28447 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
28448 "L</umount-all> to be called when the handle is closed which can also trigger "
28449 "these issues."
28450 msgstr ""
28451
28452 # type: =head2
28453 #. type: =head2
28454 #: ../fish/guestfish-actions.pod:3089
28455 msgid "mknod"
28456 msgstr ""
28457
28458 # type: verbatim
28459 #. type: verbatim
28460 #: ../fish/guestfish-actions.pod:3091
28461 #, no-wrap
28462 msgid ""
28463 " mknod mode devmajor devminor path\n"
28464 "\n"
28465 msgstr ""
28466
28467 # type: textblock
28468 #. type: textblock
28469 #: ../fish/guestfish-actions.pod:3101
28470 msgid ""
28471 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
28472 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
28473 "regular file).  These constants are available in the standard Linux header "
28474 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
28475 "wrappers around this command which bitwise OR in the appropriate constant "
28476 "for you."
28477 msgstr ""
28478
28479 # type: =head2
28480 #. type: =head2
28481 #: ../fish/guestfish-actions.pod:3111
28482 msgid "mknod-b"
28483 msgstr ""
28484
28485 # type: verbatim
28486 #. type: verbatim
28487 #: ../fish/guestfish-actions.pod:3113
28488 #, no-wrap
28489 msgid ""
28490 " mknod-b mode devmajor devminor path\n"
28491 "\n"
28492 msgstr ""
28493
28494 # type: textblock
28495 #. type: textblock
28496 #: ../fish/guestfish-actions.pod:3115
28497 msgid ""
28498 "This call creates a block device node called C<path> with mode C<mode> and "
28499 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
28500 "wrapper around L</mknod>."
28501 msgstr ""
28502
28503 # type: =head2
28504 #. type: =head2
28505 #: ../fish/guestfish-actions.pod:3121
28506 msgid "mknod-c"
28507 msgstr ""
28508
28509 # type: verbatim
28510 #. type: verbatim
28511 #: ../fish/guestfish-actions.pod:3123
28512 #, no-wrap
28513 msgid ""
28514 " mknod-c mode devmajor devminor path\n"
28515 "\n"
28516 msgstr ""
28517
28518 # type: textblock
28519 #. type: textblock
28520 #: ../fish/guestfish-actions.pod:3125
28521 msgid ""
28522 "This call creates a char device node called C<path> with mode C<mode> and "
28523 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
28524 "wrapper around L</mknod>."
28525 msgstr ""
28526
28527 # type: =head2
28528 #. type: =head2
28529 #: ../fish/guestfish-actions.pod:3131
28530 msgid "mkswap"
28531 msgstr ""
28532
28533 # type: verbatim
28534 #. type: verbatim
28535 #: ../fish/guestfish-actions.pod:3133
28536 #, no-wrap
28537 msgid ""
28538 " mkswap device\n"
28539 "\n"
28540 msgstr ""
28541
28542 # type: =head2
28543 #. type: =head2
28544 #: ../fish/guestfish-actions.pod:3137
28545 msgid "mkswap-L"
28546 msgstr ""
28547
28548 # type: verbatim
28549 #. type: verbatim
28550 #: ../fish/guestfish-actions.pod:3139
28551 #, no-wrap
28552 msgid ""
28553 " mkswap-L label device\n"
28554 "\n"
28555 msgstr ""
28556
28557 # type: =head2
28558 #. type: =head2
28559 #: ../fish/guestfish-actions.pod:3147
28560 msgid "mkswap-U"
28561 msgstr ""
28562
28563 # type: verbatim
28564 #. type: verbatim
28565 #: ../fish/guestfish-actions.pod:3149
28566 #, no-wrap
28567 msgid ""
28568 " mkswap-U uuid device\n"
28569 "\n"
28570 msgstr ""
28571
28572 # type: =head2
28573 #. type: =head2
28574 #: ../fish/guestfish-actions.pod:3153
28575 msgid "mkswap-file"
28576 msgstr ""
28577
28578 # type: verbatim
28579 #. type: verbatim
28580 #: ../fish/guestfish-actions.pod:3155
28581 #, no-wrap
28582 msgid ""
28583 " mkswap-file path\n"
28584 "\n"
28585 msgstr ""
28586
28587 # type: textblock
28588 #. type: textblock
28589 #: ../fish/guestfish-actions.pod:3159
28590 msgid ""
28591 "This command just writes a swap file signature to an existing file.  To "
28592 "create the file itself, use something like L</fallocate>."
28593 msgstr ""
28594
28595 # type: =head2
28596 #. type: =head2
28597 #: ../fish/guestfish-actions.pod:3162
28598 msgid "modprobe"
28599 msgstr ""
28600
28601 # type: verbatim
28602 #. type: verbatim
28603 #: ../fish/guestfish-actions.pod:3164
28604 #, no-wrap
28605 msgid ""
28606 " modprobe modulename\n"
28607 "\n"
28608 msgstr ""
28609
28610 # type: =head2
28611 #. type: =head2
28612 #: ../fish/guestfish-actions.pod:3171
28613 msgid "mount"
28614 msgstr ""
28615
28616 # type: verbatim
28617 #. type: verbatim
28618 #: ../fish/guestfish-actions.pod:3173
28619 #, no-wrap
28620 msgid ""
28621 " mount device mountpoint\n"
28622 "\n"
28623 msgstr ""
28624
28625 # type: textblock
28626 #. type: textblock
28627 #: ../fish/guestfish-actions.pod:3189
28628 msgid ""
28629 "B<Important note:> When you use this call, the filesystem options C<sync> "
28630 "and C<noatime> are set implicitly.  This was originally done because we "
28631 "thought it would improve reliability, but it turns out that I<-o sync> has a "
28632 "very large negative performance impact and negligible effect on "
28633 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
28634 "code that needs performance, and instead use L</mount-options> (use an empty "
28635 "string for the first parameter if you don't want any options)."
28636 msgstr ""
28637
28638 # type: =head2
28639 #. type: =head2
28640 #: ../fish/guestfish-actions.pod:3206
28641 msgid "mount-loop"
28642 msgstr ""
28643
28644 # type: verbatim
28645 #. type: verbatim
28646 #: ../fish/guestfish-actions.pod:3208
28647 #, no-wrap
28648 msgid ""
28649 " mount-loop file mountpoint\n"
28650 "\n"
28651 msgstr ""
28652
28653 # type: =head2
28654 #. type: =head2
28655 #: ../fish/guestfish-actions.pod:3214
28656 msgid "mount-options"
28657 msgstr ""
28658
28659 # type: verbatim
28660 #. type: verbatim
28661 #: ../fish/guestfish-actions.pod:3216
28662 #, no-wrap
28663 msgid ""
28664 " mount-options options device mountpoint\n"
28665 "\n"
28666 msgstr ""
28667
28668 # type: textblock
28669 #. type: textblock
28670 #: ../fish/guestfish-actions.pod:3218
28671 msgid ""
28672 "This is the same as the L</mount> command, but it allows you to set the "
28673 "mount options as for the L<mount(8)> I<-o> flag."
28674 msgstr ""
28675
28676 # type: =head2
28677 #. type: =head2
28678 #: ../fish/guestfish-actions.pod:3226
28679 msgid "mount-ro"
28680 msgstr ""
28681
28682 # type: verbatim
28683 #. type: verbatim
28684 #: ../fish/guestfish-actions.pod:3228
28685 #, no-wrap
28686 msgid ""
28687 " mount-ro device mountpoint\n"
28688 "\n"
28689 msgstr ""
28690
28691 # type: textblock
28692 #. type: textblock
28693 #: ../fish/guestfish-actions.pod:3230
28694 msgid ""
28695 "This is the same as the L</mount> command, but it mounts the filesystem with "
28696 "the read-only (I<-o ro>) flag."
28697 msgstr ""
28698
28699 # type: =head2
28700 #. type: =head2
28701 #: ../fish/guestfish-actions.pod:3233
28702 msgid "mount-vfs"
28703 msgstr ""
28704
28705 # type: verbatim
28706 #. type: verbatim
28707 #: ../fish/guestfish-actions.pod:3235
28708 #, no-wrap
28709 msgid ""
28710 " mount-vfs options vfstype device mountpoint\n"
28711 "\n"
28712 msgstr ""
28713
28714 # type: textblock
28715 #. type: textblock
28716 #: ../fish/guestfish-actions.pod:3237
28717 msgid ""
28718 "This is the same as the L</mount> command, but it allows you to set both the "
28719 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
28720 msgstr ""
28721
28722 # type: =head2
28723 #. type: =head2
28724 #: ../fish/guestfish-actions.pod:3241
28725 msgid "mountpoints"
28726 msgstr ""
28727
28728 # type: verbatim
28729 #. type: verbatim
28730 #: ../fish/guestfish-actions.pod:3243
28731 #, no-wrap
28732 msgid ""
28733 " mountpoints\n"
28734 "\n"
28735 msgstr ""
28736
28737 # type: textblock
28738 #. type: textblock
28739 #: ../fish/guestfish-actions.pod:3245
28740 msgid ""
28741 "This call is similar to L</mounts>.  That call returns a list of devices.  "
28742 "This one returns a hash table (map) of device name to directory where the "
28743 "device is mounted."
28744 msgstr ""
28745
28746 # type: =head2
28747 #. type: =head2
28748 #: ../fish/guestfish-actions.pod:3249
28749 msgid "mounts"
28750 msgstr ""
28751
28752 # type: verbatim
28753 #. type: verbatim
28754 #: ../fish/guestfish-actions.pod:3251
28755 #, no-wrap
28756 msgid ""
28757 " mounts\n"
28758 "\n"
28759 msgstr ""
28760
28761 # type: textblock
28762 #. type: textblock
28763 #: ../fish/guestfish-actions.pod:3258
28764 msgid "See also: L</mountpoints>"
28765 msgstr ""
28766
28767 # type: =head2
28768 #. type: =head2
28769 #: ../fish/guestfish-actions.pod:3260
28770 msgid "mv"
28771 msgstr ""
28772
28773 # type: verbatim
28774 #. type: verbatim
28775 #: ../fish/guestfish-actions.pod:3262
28776 #, no-wrap
28777 msgid ""
28778 " mv src dest\n"
28779 "\n"
28780 msgstr ""
28781
28782 # type: =head2
28783 #. type: =head2
28784 #: ../fish/guestfish-actions.pod:3267
28785 msgid "ntfs-3g-probe"
28786 msgstr ""
28787
28788 # type: verbatim
28789 #. type: verbatim
28790 #: ../fish/guestfish-actions.pod:3269
28791 #, no-wrap
28792 msgid ""
28793 " ntfs-3g-probe true|false device\n"
28794 "\n"
28795 msgstr ""
28796
28797 # type: =head2
28798 #. type: =head2
28799 #: ../fish/guestfish-actions.pod:3283
28800 msgid "ntfsresize"
28801 msgstr ""
28802
28803 # type: verbatim
28804 #. type: verbatim
28805 #: ../fish/guestfish-actions.pod:3285
28806 #, no-wrap
28807 msgid ""
28808 " ntfsresize device\n"
28809 "\n"
28810 msgstr ""
28811
28812 # type: =head2
28813 #. type: =head2
28814 #: ../fish/guestfish-actions.pod:3300
28815 msgid "ntfsresize-size"
28816 msgstr ""
28817
28818 # type: verbatim
28819 #. type: verbatim
28820 #: ../fish/guestfish-actions.pod:3302
28821 #, no-wrap
28822 msgid ""
28823 " ntfsresize-size device size\n"
28824 "\n"
28825 msgstr ""
28826
28827 # type: textblock
28828 #. type: textblock
28829 #: ../fish/guestfish-actions.pod:3304
28830 msgid ""
28831 "This command is the same as L</ntfsresize> except that it allows you to "
28832 "specify the new size (in bytes) explicitly."
28833 msgstr ""
28834
28835 # type: =head2
28836 #. type: =head2
28837 #: ../fish/guestfish-actions.pod:3307
28838 msgid "part-add"
28839 msgstr ""
28840
28841 # type: verbatim
28842 #. type: verbatim
28843 #: ../fish/guestfish-actions.pod:3309
28844 #, no-wrap
28845 msgid ""
28846 " part-add device prlogex startsect endsect\n"
28847 "\n"
28848 msgstr ""
28849
28850 # type: textblock
28851 #. type: textblock
28852 #: ../fish/guestfish-actions.pod:3311
28853 msgid ""
28854 "This command adds a partition to C<device>.  If there is no partition table "
28855 "on the device, call L</part-init> first."
28856 msgstr ""
28857
28858 # type: textblock
28859 #. type: textblock
28860 #: ../fish/guestfish-actions.pod:3323
28861 msgid ""
28862 "Creating a partition which covers the whole disk is not so easy.  Use L</"
28863 "part-disk> to do that."
28864 msgstr ""
28865
28866 # type: =head2
28867 #. type: =head2
28868 #: ../fish/guestfish-actions.pod:3326
28869 msgid "part-del"
28870 msgstr ""
28871
28872 # type: verbatim
28873 #. type: verbatim
28874 #: ../fish/guestfish-actions.pod:3328
28875 #, no-wrap
28876 msgid ""
28877 " part-del device partnum\n"
28878 "\n"
28879 msgstr ""
28880
28881 # type: =head2
28882 #. type: =head2
28883 #: ../fish/guestfish-actions.pod:3336
28884 msgid "part-disk"
28885 msgstr ""
28886
28887 # type: verbatim
28888 #. type: verbatim
28889 #: ../fish/guestfish-actions.pod:3338
28890 #, no-wrap
28891 msgid ""
28892 " part-disk device parttype\n"
28893 "\n"
28894 msgstr ""
28895
28896 # type: textblock
28897 #. type: textblock
28898 #: ../fish/guestfish-actions.pod:3340
28899 msgid ""
28900 "This command is simply a combination of L</part-init> followed by L</part-"
28901 "add> to create a single primary partition covering the whole disk."
28902 msgstr ""
28903
28904 # type: textblock
28905 #. type: textblock
28906 #: ../fish/guestfish-actions.pod:3344
28907 msgid ""
28908 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
28909 "possible values are described in L</part-init>."
28910 msgstr ""
28911
28912 # type: =head2
28913 #. type: =head2
28914 #: ../fish/guestfish-actions.pod:3350
28915 msgid "part-get-bootable"
28916 msgstr ""
28917
28918 # type: verbatim
28919 #. type: verbatim
28920 #: ../fish/guestfish-actions.pod:3352
28921 #, no-wrap
28922 msgid ""
28923 " part-get-bootable device partnum\n"
28924 "\n"
28925 msgstr ""
28926
28927 # type: textblock
28928 #. type: textblock
28929 #: ../fish/guestfish-actions.pod:3357
28930 msgid "See also L</part-set-bootable>."
28931 msgstr ""
28932
28933 # type: =head2
28934 #. type: =head2
28935 #: ../fish/guestfish-actions.pod:3359
28936 msgid "part-get-mbr-id"
28937 msgstr ""
28938
28939 # type: verbatim
28940 #. type: verbatim
28941 #: ../fish/guestfish-actions.pod:3361
28942 #, no-wrap
28943 msgid ""
28944 " part-get-mbr-id device partnum\n"
28945 "\n"
28946 msgstr ""
28947
28948 # type: textblock
28949 #. type: textblock
28950 #: ../fish/guestfish-actions.pod:3366 ../fish/guestfish-actions.pod:3504
28951 msgid ""
28952 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
28953 "undefined results for other partition table types (see L</part-get-"
28954 "parttype>)."
28955 msgstr ""
28956
28957 # type: =head2
28958 #. type: =head2
28959 #: ../fish/guestfish-actions.pod:3370
28960 msgid "part-get-parttype"
28961 msgstr ""
28962
28963 # type: verbatim
28964 #. type: verbatim
28965 #: ../fish/guestfish-actions.pod:3372
28966 #, no-wrap
28967 msgid ""
28968 " part-get-parttype device\n"
28969 "\n"
28970 msgstr ""
28971
28972 # type: textblock
28973 #. type: textblock
28974 #: ../fish/guestfish-actions.pod:3377
28975 msgid ""
28976 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
28977 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
28978 "possible, although unusual.  See L</part-init> for a full list."
28979 msgstr ""
28980
28981 # type: =head2
28982 #. type: =head2
28983 #: ../fish/guestfish-actions.pod:3382
28984 msgid "part-init"
28985 msgstr ""
28986
28987 # type: verbatim
28988 #. type: verbatim
28989 #: ../fish/guestfish-actions.pod:3384
28990 #, no-wrap
28991 msgid ""
28992 " part-init device parttype\n"
28993 "\n"
28994 msgstr ""
28995
28996 # type: textblock
28997 #. type: textblock
28998 #: ../fish/guestfish-actions.pod:3390
28999 msgid ""
29000 "Initially there are no partitions.  Following this, you should call L</part-"
29001 "add> for each partition required."
29002 msgstr ""
29003
29004 # type: =head2
29005 #. type: =head2
29006 #: ../fish/guestfish-actions.pod:3453
29007 msgid "part-list"
29008 msgstr ""
29009
29010 # type: verbatim
29011 #. type: verbatim
29012 #: ../fish/guestfish-actions.pod:3455
29013 #, no-wrap
29014 msgid ""
29015 " part-list device\n"
29016 "\n"
29017 msgstr ""
29018
29019 # type: textblock
29020 #. type: textblock
29021 #: ../fish/guestfish-actions.pod:3470
29022 msgid ""
29023 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
29024 "the device's sector size, see L</blockdev-getss>."
29025 msgstr ""
29026
29027 # type: =head2
29028 #. type: =head2
29029 #: ../fish/guestfish-actions.pod:3483
29030 msgid "part-set-bootable"
29031 msgstr ""
29032
29033 # type: verbatim
29034 #. type: verbatim
29035 #: ../fish/guestfish-actions.pod:3485
29036 #, no-wrap
29037 msgid ""
29038 " part-set-bootable device partnum true|false\n"
29039 "\n"
29040 msgstr ""
29041
29042 # type: =head2
29043 #. type: =head2
29044 #: ../fish/guestfish-actions.pod:3494
29045 msgid "part-set-mbr-id"
29046 msgstr ""
29047
29048 # type: verbatim
29049 #. type: verbatim
29050 #: ../fish/guestfish-actions.pod:3496
29051 #, no-wrap
29052 msgid ""
29053 " part-set-mbr-id device partnum idbyte\n"
29054 "\n"
29055 msgstr ""
29056
29057 # type: =head2
29058 #. type: =head2
29059 #: ../fish/guestfish-actions.pod:3508
29060 msgid "part-set-name"
29061 msgstr ""
29062
29063 # type: verbatim
29064 #. type: verbatim
29065 #: ../fish/guestfish-actions.pod:3510
29066 #, no-wrap
29067 msgid ""
29068 " part-set-name device partnum name\n"
29069 "\n"
29070 msgstr ""
29071
29072 # type: =head2
29073 #. type: =head2
29074 #: ../fish/guestfish-actions.pod:3518
29075 msgid "part-to-dev"
29076 msgstr ""
29077
29078 # type: verbatim
29079 #. type: verbatim
29080 #: ../fish/guestfish-actions.pod:3520
29081 #, no-wrap
29082 msgid ""
29083 " part-to-dev partition\n"
29084 "\n"
29085 msgstr ""
29086
29087 # type: textblock
29088 #. type: textblock
29089 #: ../fish/guestfish-actions.pod:3526
29090 msgid ""
29091 "The named partition must exist, for example as a string returned from L</"
29092 "list-partitions>."
29093 msgstr ""
29094
29095 # type: =head2
29096 #. type: =head2
29097 #: ../fish/guestfish-actions.pod:3529
29098 msgid "ping-daemon"
29099 msgstr ""
29100
29101 # type: verbatim
29102 #. type: verbatim
29103 #: ../fish/guestfish-actions.pod:3531
29104 #, no-wrap
29105 msgid ""
29106 " ping-daemon\n"
29107 "\n"
29108 msgstr ""
29109
29110 # type: =head2
29111 #. type: =head2
29112 #: ../fish/guestfish-actions.pod:3538
29113 msgid "pread"
29114 msgstr ""
29115
29116 # type: verbatim
29117 #. type: verbatim
29118 #: ../fish/guestfish-actions.pod:3540
29119 #, no-wrap
29120 msgid ""
29121 " pread path count offset\n"
29122 "\n"
29123 msgstr ""
29124
29125 # type: textblock
29126 #. type: textblock
29127 #: ../fish/guestfish-actions.pod:3548
29128 msgid "See also L</pwrite>, L</pread-device>."
29129 msgstr ""
29130
29131 # type: =head2
29132 #. type: =head2
29133 #: ../fish/guestfish-actions.pod:3553
29134 msgid "pread-device"
29135 msgstr ""
29136
29137 # type: verbatim
29138 #. type: verbatim
29139 #: ../fish/guestfish-actions.pod:3555
29140 #, no-wrap
29141 msgid ""
29142 " pread-device device count offset\n"
29143 "\n"
29144 msgstr ""
29145
29146 # type: textblock
29147 #. type: textblock
29148 #: ../fish/guestfish-actions.pod:3563
29149 msgid "See also L</pread>."
29150 msgstr ""
29151
29152 # type: =head2
29153 #. type: =head2
29154 #: ../fish/guestfish-actions.pod:3568
29155 msgid "pvcreate"
29156 msgstr ""
29157
29158 # type: verbatim
29159 #. type: verbatim
29160 #: ../fish/guestfish-actions.pod:3570
29161 #, no-wrap
29162 msgid ""
29163 " pvcreate device\n"
29164 "\n"
29165 msgstr ""
29166
29167 # type: =head2
29168 #. type: =head2
29169 #: ../fish/guestfish-actions.pod:3576
29170 msgid "pvremove"
29171 msgstr ""
29172
29173 # type: verbatim
29174 #. type: verbatim
29175 #: ../fish/guestfish-actions.pod:3578
29176 #, no-wrap
29177 msgid ""
29178 " pvremove device\n"
29179 "\n"
29180 msgstr ""
29181
29182 # type: =head2
29183 #. type: =head2
29184 #: ../fish/guestfish-actions.pod:3587
29185 msgid "pvresize"
29186 msgstr ""
29187
29188 # type: verbatim
29189 #. type: verbatim
29190 #: ../fish/guestfish-actions.pod:3589
29191 #, no-wrap
29192 msgid ""
29193 " pvresize device\n"
29194 "\n"
29195 msgstr ""
29196
29197 # type: =head2
29198 #. type: =head2
29199 #: ../fish/guestfish-actions.pod:3594
29200 msgid "pvresize-size"
29201 msgstr ""
29202
29203 # type: verbatim
29204 #. type: verbatim
29205 #: ../fish/guestfish-actions.pod:3596
29206 #, no-wrap
29207 msgid ""
29208 " pvresize-size device size\n"
29209 "\n"
29210 msgstr ""
29211
29212 # type: textblock
29213 #. type: textblock
29214 #: ../fish/guestfish-actions.pod:3598
29215 msgid ""
29216 "This command is the same as L</pvresize> except that it allows you to "
29217 "specify the new size (in bytes) explicitly."
29218 msgstr ""
29219
29220 # type: =head2
29221 #. type: =head2
29222 #: ../fish/guestfish-actions.pod:3601
29223 msgid "pvs"
29224 msgstr ""
29225
29226 # type: verbatim
29227 #. type: verbatim
29228 #: ../fish/guestfish-actions.pod:3603
29229 #, no-wrap
29230 msgid ""
29231 " pvs\n"
29232 "\n"
29233 msgstr ""
29234
29235 # type: textblock
29236 #. type: textblock
29237 #: ../fish/guestfish-actions.pod:3611
29238 msgid "See also L</pvs-full>."
29239 msgstr ""
29240
29241 # type: =head2
29242 #. type: =head2
29243 #: ../fish/guestfish-actions.pod:3613
29244 msgid "pvs-full"
29245 msgstr ""
29246
29247 # type: verbatim
29248 #. type: verbatim
29249 #: ../fish/guestfish-actions.pod:3615
29250 #, no-wrap
29251 msgid ""
29252 " pvs-full\n"
29253 "\n"
29254 msgstr ""
29255
29256 # type: =head2
29257 #. type: =head2
29258 #: ../fish/guestfish-actions.pod:3620
29259 msgid "pvuuid"
29260 msgstr ""
29261
29262 # type: verbatim
29263 #. type: verbatim
29264 #: ../fish/guestfish-actions.pod:3622
29265 #, no-wrap
29266 msgid ""
29267 " pvuuid device\n"
29268 "\n"
29269 msgstr ""
29270
29271 # type: =head2
29272 #. type: =head2
29273 #: ../fish/guestfish-actions.pod:3626
29274 msgid "pwrite"
29275 msgstr ""
29276
29277 # type: verbatim
29278 #. type: verbatim
29279 #: ../fish/guestfish-actions.pod:3628
29280 #, no-wrap
29281 msgid ""
29282 " pwrite path content offset\n"
29283 "\n"
29284 msgstr ""
29285
29286 # type: textblock
29287 #. type: textblock
29288 #: ../fish/guestfish-actions.pod:3639
29289 msgid "See also L</pread>, L</pwrite-device>."
29290 msgstr ""
29291
29292 # type: =head2
29293 #. type: =head2
29294 #: ../fish/guestfish-actions.pod:3644
29295 msgid "pwrite-device"
29296 msgstr ""
29297
29298 # type: verbatim
29299 #. type: verbatim
29300 #: ../fish/guestfish-actions.pod:3646
29301 #, no-wrap
29302 msgid ""
29303 " pwrite-device device content offset\n"
29304 "\n"
29305 msgstr ""
29306
29307 # type: textblock
29308 #. type: textblock
29309 #: ../fish/guestfish-actions.pod:3656
29310 msgid "See also L</pwrite>."
29311 msgstr ""
29312
29313 # type: =head2
29314 #. type: =head2
29315 #: ../fish/guestfish-actions.pod:3661
29316 msgid "read-file"
29317 msgstr ""
29318
29319 # type: verbatim
29320 #. type: verbatim
29321 #: ../fish/guestfish-actions.pod:3663
29322 #, no-wrap
29323 msgid ""
29324 " read-file path\n"
29325 "\n"
29326 msgstr ""
29327
29328 # type: textblock
29329 #. type: textblock
29330 #: ../fish/guestfish-actions.pod:3668
29331 msgid ""
29332 "Unlike L</cat>, this function can correctly handle files that contain "
29333 "embedded ASCII NUL characters.  However unlike L</download>, this function "
29334 "is limited in the total size of file that can be handled."
29335 msgstr ""
29336
29337 # type: =head2
29338 #. type: =head2
29339 #: ../fish/guestfish-actions.pod:3676
29340 msgid "read-lines"
29341 msgstr ""
29342
29343 # type: verbatim
29344 #. type: verbatim
29345 #: ../fish/guestfish-actions.pod:3678
29346 #, no-wrap
29347 msgid ""
29348 " read-lines path\n"
29349 "\n"
29350 msgstr ""
29351
29352 # type: textblock
29353 #. type: textblock
29354 #: ../fish/guestfish-actions.pod:3685
29355 msgid ""
29356 "Note that this function cannot correctly handle binary files (specifically, "
29357 "files containing C<\\0> character which is treated as end of line).  For "
29358 "those you need to use the L</read-file> function which has a more complex "
29359 "interface."
29360 msgstr ""
29361
29362 # type: =head2
29363 #. type: =head2
29364 #: ../fish/guestfish-actions.pod:3690
29365 msgid "readdir"
29366 msgstr ""
29367
29368 # type: verbatim
29369 #. type: verbatim
29370 #: ../fish/guestfish-actions.pod:3692
29371 #, no-wrap
29372 msgid ""
29373 " readdir dir\n"
29374 "\n"
29375 msgstr ""
29376
29377 # type: textblock
29378 #. type: textblock
29379 #: ../fish/guestfish-actions.pod:3744
29380 msgid ""
29381 "This function is primarily intended for use by programs.  To get a simple "
29382 "list of names, use L</ls>.  To get a printable directory for human "
29383 "consumption, use L</ll>."
29384 msgstr ""
29385
29386 # type: =head2
29387 #. type: =head2
29388 #: ../fish/guestfish-actions.pod:3748
29389 msgid "readlink"
29390 msgstr ""
29391
29392 # type: verbatim
29393 #. type: verbatim
29394 #: ../fish/guestfish-actions.pod:3750
29395 #, no-wrap
29396 msgid ""
29397 " readlink path\n"
29398 "\n"
29399 msgstr ""
29400
29401 # type: =head2
29402 #. type: =head2
29403 #: ../fish/guestfish-actions.pod:3754
29404 msgid "readlinklist"
29405 msgstr ""
29406
29407 # type: verbatim
29408 #. type: verbatim
29409 #: ../fish/guestfish-actions.pod:3756
29410 #, no-wrap
29411 msgid ""
29412 " readlinklist path 'names ...'\n"
29413 "\n"
29414 msgstr ""
29415
29416 # type: =head2
29417 #. type: =head2
29418 #: ../fish/guestfish-actions.pod:3780
29419 msgid "realpath"
29420 msgstr ""
29421
29422 # type: verbatim
29423 #. type: verbatim
29424 #: ../fish/guestfish-actions.pod:3782
29425 #, no-wrap
29426 msgid ""
29427 " realpath path\n"
29428 "\n"
29429 msgstr ""
29430
29431 # type: =head2
29432 #. type: =head2
29433 #: ../fish/guestfish-actions.pod:3787
29434 msgid "removexattr"
29435 msgstr ""
29436
29437 # type: verbatim
29438 #. type: verbatim
29439 #: ../fish/guestfish-actions.pod:3789
29440 #, no-wrap
29441 msgid ""
29442 " removexattr xattr path\n"
29443 "\n"
29444 msgstr ""
29445
29446 # type: textblock
29447 #. type: textblock
29448 #: ../fish/guestfish-actions.pod:3794
29449 msgid "See also: L</lremovexattr>, L<attr(5)>."
29450 msgstr ""
29451
29452 # type: =head2
29453 #. type: =head2
29454 #: ../fish/guestfish-actions.pod:3796
29455 msgid "resize2fs"
29456 msgstr ""
29457
29458 # type: verbatim
29459 #. type: verbatim
29460 #: ../fish/guestfish-actions.pod:3798
29461 #, no-wrap
29462 msgid ""
29463 " resize2fs device\n"
29464 "\n"
29465 msgstr ""
29466
29467 # type: textblock
29468 #. type: textblock
29469 #: ../fish/guestfish-actions.pod:3803
29470 msgid ""
29471 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
29472 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
29473 "gives an error about this and sometimes not.  In any case, it is always safe "
29474 "to call L</e2fsck-f> before calling this function."
29475 msgstr ""
29476
29477 #. type: =head2
29478 #: ../fish/guestfish-actions.pod:3809
29479 msgid "resize2fs-M"
29480 msgstr ""
29481
29482 #. type: verbatim
29483 #: ../fish/guestfish-actions.pod:3811
29484 #, no-wrap
29485 msgid ""
29486 " resize2fs-M device\n"
29487 "\n"
29488 msgstr ""
29489
29490 #. type: textblock
29491 #: ../fish/guestfish-actions.pod:3813
29492 msgid ""
29493 "This command is the same as L</resize2fs>, but the filesystem is resized to "
29494 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
29495 "command."
29496 msgstr ""
29497
29498 #. type: textblock
29499 #: ../fish/guestfish-actions.pod:3817
29500 msgid ""
29501 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
29502 "and read the C<Block size> and C<Block count> values.  These two numbers, "
29503 "multiplied together, give the resulting size of the minimal filesystem in "
29504 "bytes."
29505 msgstr ""
29506
29507 # type: =head2
29508 #. type: =head2
29509 #: ../fish/guestfish-actions.pod:3822
29510 msgid "resize2fs-size"
29511 msgstr ""
29512
29513 # type: verbatim
29514 #. type: verbatim
29515 #: ../fish/guestfish-actions.pod:3824
29516 #, no-wrap
29517 msgid ""
29518 " resize2fs-size device size\n"
29519 "\n"
29520 msgstr ""
29521
29522 # type: textblock
29523 #. type: textblock
29524 #: ../fish/guestfish-actions.pod:3826
29525 msgid ""
29526 "This command is the same as L</resize2fs> except that it allows you to "
29527 "specify the new size (in bytes) explicitly."
29528 msgstr ""
29529
29530 # type: =head2
29531 #. type: =head2
29532 #: ../fish/guestfish-actions.pod:3829
29533 msgid "rm"
29534 msgstr ""
29535
29536 # type: verbatim
29537 #. type: verbatim
29538 #: ../fish/guestfish-actions.pod:3831
29539 #, no-wrap
29540 msgid ""
29541 " rm path\n"
29542 "\n"
29543 msgstr ""
29544
29545 # type: =head2
29546 #. type: =head2
29547 #: ../fish/guestfish-actions.pod:3835
29548 msgid "rm-rf"
29549 msgstr ""
29550
29551 # type: verbatim
29552 #. type: verbatim
29553 #: ../fish/guestfish-actions.pod:3837
29554 #, no-wrap
29555 msgid ""
29556 " rm-rf path\n"
29557 "\n"
29558 msgstr ""
29559
29560 # type: =head2
29561 #. type: =head2
29562 #: ../fish/guestfish-actions.pod:3843
29563 msgid "rmdir"
29564 msgstr ""
29565
29566 # type: verbatim
29567 #. type: verbatim
29568 #: ../fish/guestfish-actions.pod:3845
29569 #, no-wrap
29570 msgid ""
29571 " rmdir path\n"
29572 "\n"
29573 msgstr ""
29574
29575 # type: =head2
29576 #. type: =head2
29577 #: ../fish/guestfish-actions.pod:3849
29578 msgid "rmmountpoint"
29579 msgstr ""
29580
29581 # type: verbatim
29582 #. type: verbatim
29583 #: ../fish/guestfish-actions.pod:3851
29584 #, no-wrap
29585 msgid ""
29586 " rmmountpoint exemptpath\n"
29587 "\n"
29588 msgstr ""
29589
29590 # type: textblock
29591 #. type: textblock
29592 #: ../fish/guestfish-actions.pod:3853
29593 msgid ""
29594 "This calls removes a mountpoint that was previously created with L</"
29595 "mkmountpoint>.  See L</mkmountpoint> for full details."
29596 msgstr ""
29597
29598 # type: =head2
29599 #. type: =head2
29600 #: ../fish/guestfish-actions.pod:3857
29601 msgid "scrub-device"
29602 msgstr ""
29603
29604 # type: verbatim
29605 #. type: verbatim
29606 #: ../fish/guestfish-actions.pod:3859
29607 #, no-wrap
29608 msgid ""
29609 " scrub-device device\n"
29610 "\n"
29611 msgstr ""
29612
29613 # type: =head2
29614 #. type: =head2
29615 #: ../fish/guestfish-actions.pod:3870
29616 msgid "scrub-file"
29617 msgstr ""
29618
29619 # type: verbatim
29620 #. type: verbatim
29621 #: ../fish/guestfish-actions.pod:3872
29622 #, no-wrap
29623 msgid ""
29624 " scrub-file file\n"
29625 "\n"
29626 msgstr ""
29627
29628 # type: =head2
29629 #. type: =head2
29630 #: ../fish/guestfish-actions.pod:3882
29631 msgid "scrub-freespace"
29632 msgstr ""
29633
29634 # type: verbatim
29635 #. type: verbatim
29636 #: ../fish/guestfish-actions.pod:3884
29637 #, no-wrap
29638 msgid ""
29639 " scrub-freespace dir\n"
29640 "\n"
29641 msgstr ""
29642
29643 # type: textblock
29644 #. type: textblock
29645 #: ../fish/guestfish-actions.pod:3886
29646 msgid ""
29647 "This command creates the directory C<dir> and then fills it with files until "
29648 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
29649 "deletes them.  The intention is to scrub any free space on the partition "
29650 "containing C<dir>."
29651 msgstr ""
29652
29653 # type: =head2
29654 #. type: =head2
29655 #: ../fish/guestfish-actions.pod:3895
29656 msgid "set-append"
29657 msgstr ""
29658
29659 # type: =head2
29660 #. type: =head2
29661 #: ../fish/guestfish-actions.pod:3897
29662 msgid "append"
29663 msgstr ""
29664
29665 # type: verbatim
29666 #. type: verbatim
29667 #: ../fish/guestfish-actions.pod:3899
29668 #, no-wrap
29669 msgid ""
29670 " set-append append\n"
29671 "\n"
29672 msgstr ""
29673
29674 #. type: =head2
29675 #: ../fish/guestfish-actions.pod:3910
29676 msgid "set-attach-method"
29677 msgstr ""
29678
29679 #. type: =head2
29680 #: ../fish/guestfish-actions.pod:3912
29681 msgid "attach-method"
29682 msgstr ""
29683
29684 #. type: verbatim
29685 #: ../fish/guestfish-actions.pod:3914
29686 #, no-wrap
29687 msgid ""
29688 " set-attach-method attachmethod\n"
29689 "\n"
29690 msgstr ""
29691
29692 # type: =head2
29693 #. type: =head2
29694 #: ../fish/guestfish-actions.pod:3936
29695 msgid "set-autosync"
29696 msgstr ""
29697
29698 # type: =head2
29699 #. type: =head2
29700 #: ../fish/guestfish-actions.pod:3938
29701 msgid "autosync"
29702 msgstr ""
29703
29704 # type: verbatim
29705 #. type: verbatim
29706 #: ../fish/guestfish-actions.pod:3940
29707 #, no-wrap
29708 msgid ""
29709 " set-autosync true|false\n"
29710 "\n"
29711 msgstr ""
29712
29713 # type: =head2
29714 #. type: =head2
29715 #: ../fish/guestfish-actions.pod:3950
29716 msgid "set-direct"
29717 msgstr ""
29718
29719 # type: =head2
29720 #. type: =head2
29721 #: ../fish/guestfish-actions.pod:3952
29722 msgid "direct"
29723 msgstr ""
29724
29725 # type: verbatim
29726 #. type: verbatim
29727 #: ../fish/guestfish-actions.pod:3954
29728 #, no-wrap
29729 msgid ""
29730 " set-direct true|false\n"
29731 "\n"
29732 msgstr ""
29733
29734 # type: textblock
29735 #. type: textblock
29736 #: ../fish/guestfish-actions.pod:3960
29737 msgid ""
29738 "One consequence of this is that log messages aren't caught by the library "
29739 "and handled by L</set-log-message-callback>, but go straight to stdout."
29740 msgstr ""
29741
29742 # type: =head2
29743 #. type: =head2
29744 #: ../fish/guestfish-actions.pod:3969
29745 msgid "set-e2label"
29746 msgstr ""
29747
29748 # type: verbatim
29749 #. type: verbatim
29750 #: ../fish/guestfish-actions.pod:3971
29751 #, no-wrap
29752 msgid ""
29753 " set-e2label device label\n"
29754 "\n"
29755 msgstr ""
29756
29757 # type: textblock
29758 #. type: textblock
29759 #: ../fish/guestfish-actions.pod:3977
29760 msgid ""
29761 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
29762 "label on a filesystem."
29763 msgstr ""
29764
29765 # type: =head2
29766 #. type: =head2
29767 #: ../fish/guestfish-actions.pod:3980
29768 msgid "set-e2uuid"
29769 msgstr ""
29770
29771 # type: verbatim
29772 #. type: verbatim
29773 #: ../fish/guestfish-actions.pod:3982
29774 #, no-wrap
29775 msgid ""
29776 " set-e2uuid device uuid\n"
29777 "\n"
29778 msgstr ""
29779
29780 # type: textblock
29781 #. type: textblock
29782 #: ../fish/guestfish-actions.pod:3989
29783 msgid ""
29784 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
29785 "UUID of a filesystem."
29786 msgstr ""
29787
29788 # type: =head2
29789 #. type: =head2
29790 #: ../fish/guestfish-actions.pod:3992
29791 msgid "set-memsize"
29792 msgstr ""
29793
29794 # type: =head2
29795 #. type: =head2
29796 #: ../fish/guestfish-actions.pod:3994
29797 msgid "memsize"
29798 msgstr ""
29799
29800 # type: verbatim
29801 #. type: verbatim
29802 #: ../fish/guestfish-actions.pod:3996
29803 #, no-wrap
29804 msgid ""
29805 " set-memsize memsize\n"
29806 "\n"
29807 msgstr ""
29808
29809 # type: textblock
29810 #. type: textblock
29811 #: ../fish/guestfish-actions.pod:3998
29812 msgid ""
29813 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
29814 "This only has any effect if called before L</launch>."
29815 msgstr ""
29816
29817 # type: =head2
29818 #. type: =head2
29819 #: ../fish/guestfish-actions.pod:4009
29820 msgid "set-network"
29821 msgstr ""
29822
29823 # type: =head2
29824 #. type: =head2
29825 #: ../fish/guestfish-actions.pod:4011
29826 msgid "network"
29827 msgstr ""
29828
29829 # type: verbatim
29830 #. type: verbatim
29831 #: ../fish/guestfish-actions.pod:4013
29832 #, no-wrap
29833 msgid ""
29834 " set-network true|false\n"
29835 "\n"
29836 msgstr ""
29837
29838 # type: textblock
29839 #. type: textblock
29840 #: ../fish/guestfish-actions.pod:4021
29841 msgid ""
29842 "You must call this before calling L</launch>, otherwise it has no effect."
29843 msgstr ""
29844
29845 # type: =head2
29846 #. type: =head2
29847 #: ../fish/guestfish-actions.pod:4024
29848 msgid "set-path"
29849 msgstr ""
29850
29851 # type: =head2
29852 #. type: =head2
29853 #: ../fish/guestfish-actions.pod:4026
29854 msgid "path"
29855 msgstr ""
29856
29857 # type: verbatim
29858 #. type: verbatim
29859 #: ../fish/guestfish-actions.pod:4028
29860 #, no-wrap
29861 msgid ""
29862 " set-path searchpath\n"
29863 "\n"
29864 msgstr ""
29865
29866 # type: =head2
29867 #. type: =head2
29868 #: ../fish/guestfish-actions.pod:4037
29869 msgid "set-qemu"
29870 msgstr ""
29871
29872 # type: =head2
29873 #. type: =head2
29874 #: ../fish/guestfish-actions.pod:4039
29875 msgid "qemu"
29876 msgstr ""
29877
29878 # type: verbatim
29879 #. type: verbatim
29880 #: ../fish/guestfish-actions.pod:4041
29881 #, no-wrap
29882 msgid ""
29883 " set-qemu qemu\n"
29884 "\n"
29885 msgstr ""
29886
29887 # type: =head2
29888 #. type: =head2
29889 #: ../fish/guestfish-actions.pod:4061
29890 msgid "set-recovery-proc"
29891 msgstr ""
29892
29893 # type: =head2
29894 #. type: =head2
29895 #: ../fish/guestfish-actions.pod:4063
29896 msgid "recovery-proc"
29897 msgstr ""
29898
29899 # type: verbatim
29900 #. type: verbatim
29901 #: ../fish/guestfish-actions.pod:4065
29902 #, no-wrap
29903 msgid ""
29904 " set-recovery-proc true|false\n"
29905 "\n"
29906 msgstr ""
29907
29908 # type: textblock
29909 #. type: textblock
29910 #: ../fish/guestfish-actions.pod:4067
29911 msgid ""
29912 "If this is called with the parameter C<false> then L</launch> does not "
29913 "create a recovery process.  The purpose of the recovery process is to stop "
29914 "runaway qemu processes in the case where the main program aborts abruptly."
29915 msgstr ""
29916
29917 # type: textblock
29918 #. type: textblock
29919 #: ../fish/guestfish-actions.pod:4072
29920 msgid ""
29921 "This only has any effect if called before L</launch>, and the default is "
29922 "true."
29923 msgstr ""
29924
29925 # type: =head2
29926 #. type: =head2
29927 #: ../fish/guestfish-actions.pod:4081
29928 msgid "set-selinux"
29929 msgstr ""
29930
29931 # type: =head2
29932 #. type: =head2
29933 #: ../fish/guestfish-actions.pod:4083
29934 msgid "selinux"
29935 msgstr ""
29936
29937 # type: verbatim
29938 #. type: verbatim
29939 #: ../fish/guestfish-actions.pod:4085
29940 #, no-wrap
29941 msgid ""
29942 " set-selinux true|false\n"
29943 "\n"
29944 msgstr ""
29945
29946 # type: =head2
29947 #. type: =head2
29948 #: ../fish/guestfish-actions.pod:4096
29949 msgid "set-trace"
29950 msgstr ""
29951
29952 # type: =head2
29953 #. type: =head2
29954 #: ../fish/guestfish-actions.pod:4098
29955 msgid "trace"
29956 msgstr ""
29957
29958 # type: verbatim
29959 #. type: verbatim
29960 #: ../fish/guestfish-actions.pod:4100
29961 #, no-wrap
29962 msgid ""
29963 " set-trace true|false\n"
29964 "\n"
29965 msgstr ""
29966
29967 #. type: textblock
29968 #: ../fish/guestfish-actions.pod:4112
29969 msgid ""
29970 "Trace messages are normally sent to C<stderr>, unless you register a "
29971 "callback to send them somewhere else (see L</set-event-callback>)."
29972 msgstr ""
29973
29974 # type: =head2
29975 #. type: =head2
29976 #: ../fish/guestfish-actions.pod:4116
29977 msgid "set-verbose"
29978 msgstr ""
29979
29980 # type: =head2
29981 #. type: =head2
29982 #: ../fish/guestfish-actions.pod:4118
29983 msgid "verbose"
29984 msgstr ""
29985
29986 # type: verbatim
29987 #. type: verbatim
29988 #: ../fish/guestfish-actions.pod:4120
29989 #, no-wrap
29990 msgid ""
29991 " set-verbose true|false\n"
29992 "\n"
29993 msgstr ""
29994
29995 #. type: textblock
29996 #: ../fish/guestfish-actions.pod:4127
29997 msgid ""
29998 "Verbose messages are normally sent to C<stderr>, unless you register a "
29999 "callback to send them somewhere else (see L</set-event-callback>)."
30000 msgstr ""
30001
30002 # type: =head2
30003 #. type: =head2
30004 #: ../fish/guestfish-actions.pod:4131
30005 msgid "setcon"
30006 msgstr ""
30007
30008 # type: verbatim
30009 #. type: verbatim
30010 #: ../fish/guestfish-actions.pod:4133
30011 #, no-wrap
30012 msgid ""
30013 " setcon context\n"
30014 "\n"
30015 msgstr ""
30016
30017 # type: =head2
30018 #. type: =head2
30019 #: ../fish/guestfish-actions.pod:4140
30020 msgid "setxattr"
30021 msgstr ""
30022
30023 # type: verbatim
30024 #. type: verbatim
30025 #: ../fish/guestfish-actions.pod:4142
30026 #, no-wrap
30027 msgid ""
30028 " setxattr xattr val vallen path\n"
30029 "\n"
30030 msgstr ""
30031
30032 # type: textblock
30033 #. type: textblock
30034 #: ../fish/guestfish-actions.pod:4148
30035 msgid "See also: L</lsetxattr>, L<attr(5)>."
30036 msgstr ""
30037
30038 # type: =head2
30039 #. type: =head2
30040 #: ../fish/guestfish-actions.pod:4150
30041 msgid "sfdisk"
30042 msgstr ""
30043
30044 # type: verbatim
30045 #. type: verbatim
30046 #: ../fish/guestfish-actions.pod:4152
30047 #, no-wrap
30048 msgid ""
30049 " sfdisk device cyls heads sectors 'lines ...'\n"
30050 "\n"
30051 msgstr ""
30052
30053 # type: textblock
30054 #. type: textblock
30055 #: ../fish/guestfish-actions.pod:4174
30056 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
30057 msgstr ""
30058
30059 # type: =head2
30060 #. type: =head2
30061 #: ../fish/guestfish-actions.pod:4187
30062 msgid "sfdiskM"
30063 msgstr ""
30064
30065 # type: verbatim
30066 #. type: verbatim
30067 #: ../fish/guestfish-actions.pod:4189
30068 #, no-wrap
30069 msgid ""
30070 " sfdiskM device 'lines ...'\n"
30071 "\n"
30072 msgstr ""
30073
30074 # type: textblock
30075 #. type: textblock
30076 #: ../fish/guestfish-actions.pod:4191
30077 msgid ""
30078 "This is a simplified interface to the L</sfdisk> command, where partition "
30079 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
30080 "you don't need to specify the cyls, heads and sectors parameters which were "
30081 "rarely if ever used anyway."
30082 msgstr ""
30083
30084 # type: textblock
30085 #. type: textblock
30086 #: ../fish/guestfish-actions.pod:4197
30087 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
30088 msgstr ""
30089
30090 # type: =head2
30091 #. type: =head2
30092 #: ../fish/guestfish-actions.pod:4210
30093 msgid "sfdisk-N"
30094 msgstr ""
30095
30096 # type: verbatim
30097 #. type: verbatim
30098 #: ../fish/guestfish-actions.pod:4212
30099 #, no-wrap
30100 msgid ""
30101 " sfdisk-N device partnum cyls heads sectors line\n"
30102 "\n"
30103 msgstr ""
30104
30105 # type: textblock
30106 #. type: textblock
30107 #: ../fish/guestfish-actions.pod:4217
30108 msgid ""
30109 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
30110 "cyls/heads/sectors parameters."
30111 msgstr ""
30112
30113 # type: textblock
30114 #. type: textblock
30115 #: ../fish/guestfish-actions.pod:4220
30116 msgid "See also: L</part-add>"
30117 msgstr ""
30118
30119 # type: =head2
30120 #. type: =head2
30121 #: ../fish/guestfish-actions.pod:4232
30122 msgid "sfdisk-disk-geometry"
30123 msgstr ""
30124
30125 # type: verbatim
30126 #. type: verbatim
30127 #: ../fish/guestfish-actions.pod:4234
30128 #, no-wrap
30129 msgid ""
30130 " sfdisk-disk-geometry device\n"
30131 "\n"
30132 msgstr ""
30133
30134 # type: textblock
30135 #. type: textblock
30136 #: ../fish/guestfish-actions.pod:4236
30137 msgid ""
30138 "This displays the disk geometry of C<device> read from the partition table.  "
30139 "Especially in the case where the underlying block device has been resized, "
30140 "this can be different from the kernel's idea of the geometry (see L</sfdisk-"
30141 "kernel-geometry>)."
30142 msgstr ""
30143
30144 # type: =head2
30145 #. type: =head2
30146 #: ../fish/guestfish-actions.pod:4244
30147 msgid "sfdisk-kernel-geometry"
30148 msgstr ""
30149
30150 # type: verbatim
30151 #. type: verbatim
30152 #: ../fish/guestfish-actions.pod:4246
30153 #, no-wrap
30154 msgid ""
30155 " sfdisk-kernel-geometry device\n"
30156 "\n"
30157 msgstr ""
30158
30159 # type: =head2
30160 #. type: =head2
30161 #: ../fish/guestfish-actions.pod:4253
30162 msgid "sfdisk-l"
30163 msgstr ""
30164
30165 # type: verbatim
30166 #. type: verbatim
30167 #: ../fish/guestfish-actions.pod:4255
30168 #, no-wrap
30169 msgid ""
30170 " sfdisk-l device\n"
30171 "\n"
30172 msgstr ""
30173
30174 # type: textblock
30175 #. type: textblock
30176 #: ../fish/guestfish-actions.pod:4261
30177 msgid "See also: L</part-list>"
30178 msgstr ""
30179
30180 # type: =head2
30181 #. type: =head2
30182 #: ../fish/guestfish-actions.pod:4270
30183 msgid "sh"
30184 msgstr ""
30185
30186 # type: verbatim
30187 #. type: verbatim
30188 #: ../fish/guestfish-actions.pod:4272
30189 #, no-wrap
30190 msgid ""
30191 " sh command\n"
30192 "\n"
30193 msgstr ""
30194
30195 # type: textblock
30196 #. type: textblock
30197 #: ../fish/guestfish-actions.pod:4277
30198 msgid "This is like L</command>, but passes the command to:"
30199 msgstr ""
30200
30201 # type: textblock
30202 #. type: textblock
30203 #: ../fish/guestfish-actions.pod:4285
30204 msgid "All the provisos about L</command> apply to this call."
30205 msgstr ""
30206
30207 # type: =head2
30208 #. type: =head2
30209 #: ../fish/guestfish-actions.pod:4287
30210 msgid "sh-lines"
30211 msgstr ""
30212
30213 # type: verbatim
30214 #. type: verbatim
30215 #: ../fish/guestfish-actions.pod:4289
30216 #, no-wrap
30217 msgid ""
30218 " sh-lines command\n"
30219 "\n"
30220 msgstr ""
30221
30222 # type: textblock
30223 #. type: textblock
30224 #: ../fish/guestfish-actions.pod:4291
30225 msgid "This is the same as L</sh>, but splits the result into a list of lines."
30226 msgstr ""
30227
30228 # type: textblock
30229 #. type: textblock
30230 #: ../fish/guestfish-actions.pod:4294
30231 msgid "See also: L</command-lines>"
30232 msgstr ""
30233
30234 # type: =head2
30235 #. type: =head2
30236 #: ../fish/guestfish-actions.pod:4296
30237 msgid "sleep"
30238 msgstr ""
30239
30240 # type: verbatim
30241 #. type: verbatim
30242 #: ../fish/guestfish-actions.pod:4298
30243 #, no-wrap
30244 msgid ""
30245 " sleep secs\n"
30246 "\n"
30247 msgstr ""
30248
30249 # type: =head2
30250 #. type: =head2
30251 #: ../fish/guestfish-actions.pod:4302
30252 msgid "stat"
30253 msgstr ""
30254
30255 # type: verbatim
30256 #. type: verbatim
30257 #: ../fish/guestfish-actions.pod:4304
30258 #, no-wrap
30259 msgid ""
30260 " stat path\n"
30261 "\n"
30262 msgstr ""
30263
30264 # type: =head2
30265 #. type: =head2
30266 #: ../fish/guestfish-actions.pod:4310
30267 msgid "statvfs"
30268 msgstr ""
30269
30270 # type: verbatim
30271 #. type: verbatim
30272 #: ../fish/guestfish-actions.pod:4312
30273 #, no-wrap
30274 msgid ""
30275 " statvfs path\n"
30276 "\n"
30277 msgstr ""
30278
30279 # type: =head2
30280 #. type: =head2
30281 #: ../fish/guestfish-actions.pod:4320
30282 msgid "strings"
30283 msgstr ""
30284
30285 # type: verbatim
30286 #. type: verbatim
30287 #: ../fish/guestfish-actions.pod:4322
30288 #, no-wrap
30289 msgid ""
30290 " strings path\n"
30291 "\n"
30292 msgstr ""
30293
30294 # type: =head2
30295 #. type: =head2
30296 #: ../fish/guestfish-actions.pod:4330
30297 msgid "strings-e"
30298 msgstr ""
30299
30300 # type: verbatim
30301 #. type: verbatim
30302 #: ../fish/guestfish-actions.pod:4332
30303 #, no-wrap
30304 msgid ""
30305 " strings-e encoding path\n"
30306 "\n"
30307 msgstr ""
30308
30309 # type: textblock
30310 #. type: textblock
30311 #: ../fish/guestfish-actions.pod:4334
30312 msgid ""
30313 "This is like the L</strings> command, but allows you to specify the encoding "
30314 "of strings that are looked for in the source file C<path>."
30315 msgstr ""
30316
30317 # type: textblock
30318 #. type: textblock
30319 #: ../fish/guestfish-actions.pod:4344
30320 msgid ""
30321 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
30322 "ISO-8859-X (this is what L</strings> uses)."
30323 msgstr ""
30324
30325 # type: =head2
30326 #. type: =head2
30327 #: ../fish/guestfish-actions.pod:4376
30328 msgid "swapoff-device"
30329 msgstr ""
30330
30331 # type: verbatim
30332 #. type: verbatim
30333 #: ../fish/guestfish-actions.pod:4378
30334 #, no-wrap
30335 msgid ""
30336 " swapoff-device device\n"
30337 "\n"
30338 msgstr ""
30339
30340 # type: textblock
30341 #. type: textblock
30342 #: ../fish/guestfish-actions.pod:4380
30343 msgid ""
30344 "This command disables the libguestfs appliance swap device or partition "
30345 "named C<device>.  See L</swapon-device>."
30346 msgstr ""
30347
30348 # type: =head2
30349 #. type: =head2
30350 #: ../fish/guestfish-actions.pod:4384
30351 msgid "swapoff-file"
30352 msgstr ""
30353
30354 # type: verbatim
30355 #. type: verbatim
30356 #: ../fish/guestfish-actions.pod:4386
30357 #, no-wrap
30358 msgid ""
30359 " swapoff-file file\n"
30360 "\n"
30361 msgstr ""
30362
30363 # type: =head2
30364 #. type: =head2
30365 #: ../fish/guestfish-actions.pod:4390
30366 msgid "swapoff-label"
30367 msgstr ""
30368
30369 # type: verbatim
30370 #. type: verbatim
30371 #: ../fish/guestfish-actions.pod:4392
30372 #, no-wrap
30373 msgid ""
30374 " swapoff-label label\n"
30375 "\n"
30376 msgstr ""
30377
30378 # type: =head2
30379 #. type: =head2
30380 #: ../fish/guestfish-actions.pod:4397
30381 msgid "swapoff-uuid"
30382 msgstr ""
30383
30384 # type: verbatim
30385 #. type: verbatim
30386 #: ../fish/guestfish-actions.pod:4399
30387 #, no-wrap
30388 msgid ""
30389 " swapoff-uuid uuid\n"
30390 "\n"
30391 msgstr ""
30392
30393 # type: =head2
30394 #. type: =head2
30395 #: ../fish/guestfish-actions.pod:4404
30396 msgid "swapon-device"
30397 msgstr ""
30398
30399 # type: verbatim
30400 #. type: verbatim
30401 #: ../fish/guestfish-actions.pod:4406
30402 #, no-wrap
30403 msgid ""
30404 " swapon-device device\n"
30405 "\n"
30406 msgstr ""
30407
30408 # type: textblock
30409 #. type: textblock
30410 #: ../fish/guestfish-actions.pod:4408
30411 msgid ""
30412 "This command enables the libguestfs appliance to use the swap device or "
30413 "partition named C<device>.  The increased memory is made available for all "
30414 "commands, for example those run using L</command> or L</sh>."
30415 msgstr ""
30416
30417 # type: =head2
30418 #. type: =head2
30419 #: ../fish/guestfish-actions.pod:4420
30420 msgid "swapon-file"
30421 msgstr ""
30422
30423 # type: verbatim
30424 #. type: verbatim
30425 #: ../fish/guestfish-actions.pod:4422
30426 #, no-wrap
30427 msgid ""
30428 " swapon-file file\n"
30429 "\n"
30430 msgstr ""
30431
30432 # type: textblock
30433 #. type: textblock
30434 #: ../fish/guestfish-actions.pod:4424
30435 msgid ""
30436 "This command enables swap to a file.  See L</swapon-device> for other notes."
30437 msgstr ""
30438
30439 # type: =head2
30440 #. type: =head2
30441 #: ../fish/guestfish-actions.pod:4427
30442 msgid "swapon-label"
30443 msgstr ""
30444
30445 # type: verbatim
30446 #. type: verbatim
30447 #: ../fish/guestfish-actions.pod:4429
30448 #, no-wrap
30449 msgid ""
30450 " swapon-label label\n"
30451 "\n"
30452 msgstr ""
30453
30454 # type: textblock
30455 #. type: textblock
30456 #: ../fish/guestfish-actions.pod:4431
30457 msgid ""
30458 "This command enables swap to a labeled swap partition.  See L</swapon-"
30459 "device> for other notes."
30460 msgstr ""
30461
30462 # type: =head2
30463 #. type: =head2
30464 #: ../fish/guestfish-actions.pod:4434
30465 msgid "swapon-uuid"
30466 msgstr ""
30467
30468 # type: verbatim
30469 #. type: verbatim
30470 #: ../fish/guestfish-actions.pod:4436
30471 #, no-wrap
30472 msgid ""
30473 " swapon-uuid uuid\n"
30474 "\n"
30475 msgstr ""
30476
30477 # type: textblock
30478 #. type: textblock
30479 #: ../fish/guestfish-actions.pod:4438
30480 msgid ""
30481 "This command enables swap to a swap partition with the given UUID.  See L</"
30482 "swapon-device> for other notes."
30483 msgstr ""
30484
30485 # type: =head2
30486 #. type: =head2
30487 #: ../fish/guestfish-actions.pod:4441
30488 msgid "sync"
30489 msgstr ""
30490
30491 # type: verbatim
30492 #. type: verbatim
30493 #: ../fish/guestfish-actions.pod:4443
30494 #, no-wrap
30495 msgid ""
30496 " sync\n"
30497 "\n"
30498 msgstr ""
30499
30500 # type: =head2
30501 #. type: =head2
30502 #: ../fish/guestfish-actions.pod:4451
30503 msgid "tail"
30504 msgstr ""
30505
30506 # type: verbatim
30507 #. type: verbatim
30508 #: ../fish/guestfish-actions.pod:4453
30509 #, no-wrap
30510 msgid ""
30511 " tail path\n"
30512 "\n"
30513 msgstr ""
30514
30515 # type: =head2
30516 #. type: =head2
30517 #: ../fish/guestfish-actions.pod:4461
30518 msgid "tail-n"
30519 msgstr ""
30520
30521 # type: verbatim
30522 #. type: verbatim
30523 #: ../fish/guestfish-actions.pod:4463
30524 #, no-wrap
30525 msgid ""
30526 " tail-n nrlines path\n"
30527 "\n"
30528 msgstr ""
30529
30530 # type: =head2
30531 #. type: =head2
30532 #: ../fish/guestfish-actions.pod:4476
30533 msgid "tar-in"
30534 msgstr ""
30535
30536 # type: verbatim
30537 #. type: verbatim
30538 #: ../fish/guestfish-actions.pod:4478
30539 #, no-wrap
30540 msgid ""
30541 " tar-in (tarfile|-) directory\n"
30542 "\n"
30543 msgstr ""
30544
30545 # type: textblock
30546 #. type: textblock
30547 #: ../fish/guestfish-actions.pod:4483
30548 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
30549 msgstr ""
30550
30551 # type: =head2
30552 #. type: =head2
30553 #: ../fish/guestfish-actions.pod:4488
30554 msgid "tar-out"
30555 msgstr ""
30556
30557 # type: verbatim
30558 #. type: verbatim
30559 #: ../fish/guestfish-actions.pod:4490
30560 #, no-wrap
30561 msgid ""
30562 " tar-out directory (tarfile|-)\n"
30563 "\n"
30564 msgstr ""
30565
30566 # type: textblock
30567 #. type: textblock
30568 #: ../fish/guestfish-actions.pod:4495
30569 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
30570 msgstr ""
30571
30572 # type: =head2
30573 #. type: =head2
30574 #: ../fish/guestfish-actions.pod:4500
30575 msgid "tgz-in"
30576 msgstr ""
30577
30578 # type: verbatim
30579 #. type: verbatim
30580 #: ../fish/guestfish-actions.pod:4502
30581 #, no-wrap
30582 msgid ""
30583 " tgz-in (tarball|-) directory\n"
30584 "\n"
30585 msgstr ""
30586
30587 # type: textblock
30588 #. type: textblock
30589 #: ../fish/guestfish-actions.pod:4507
30590 msgid "To upload an uncompressed tarball, use L</tar-in>."
30591 msgstr ""
30592
30593 # type: =head2
30594 #. type: =head2
30595 #: ../fish/guestfish-actions.pod:4511
30596 msgid "tgz-out"
30597 msgstr ""
30598
30599 # type: verbatim
30600 #. type: verbatim
30601 #: ../fish/guestfish-actions.pod:4513
30602 #, no-wrap
30603 msgid ""
30604 " tgz-out directory (tarball|-)\n"
30605 "\n"
30606 msgstr ""
30607
30608 # type: textblock
30609 #. type: textblock
30610 #: ../fish/guestfish-actions.pod:4518
30611 msgid "To download an uncompressed tarball, use L</tar-out>."
30612 msgstr ""
30613
30614 # type: =head2
30615 #. type: =head2
30616 #: ../fish/guestfish-actions.pod:4522
30617 msgid "touch"
30618 msgstr ""
30619
30620 # type: verbatim
30621 #. type: verbatim
30622 #: ../fish/guestfish-actions.pod:4524
30623 #, no-wrap
30624 msgid ""
30625 " touch path\n"
30626 "\n"
30627 msgstr ""
30628
30629 # type: =head2
30630 #. type: =head2
30631 #: ../fish/guestfish-actions.pod:4533
30632 msgid "truncate"
30633 msgstr ""
30634
30635 # type: verbatim
30636 #. type: verbatim
30637 #: ../fish/guestfish-actions.pod:4535
30638 #, no-wrap
30639 msgid ""
30640 " truncate path\n"
30641 "\n"
30642 msgstr ""
30643
30644 # type: =head2
30645 #. type: =head2
30646 #: ../fish/guestfish-actions.pod:4540
30647 msgid "truncate-size"
30648 msgstr ""
30649
30650 # type: verbatim
30651 #. type: verbatim
30652 #: ../fish/guestfish-actions.pod:4542
30653 #, no-wrap
30654 msgid ""
30655 " truncate-size path size\n"
30656 "\n"
30657 msgstr ""
30658
30659 # type: textblock
30660 #. type: textblock
30661 #: ../fish/guestfish-actions.pod:4547
30662 msgid ""
30663 "If the current file size is less than C<size> then the file is extended to "
30664 "the required size with zero bytes.  This creates a sparse file (ie. disk "
30665 "blocks are not allocated for the file until you write to it).  To create a "
30666 "non-sparse file of zeroes, use L</fallocate64> instead."
30667 msgstr ""
30668
30669 # type: =head2
30670 #. type: =head2
30671 #: ../fish/guestfish-actions.pod:4553
30672 msgid "tune2fs-l"
30673 msgstr ""
30674
30675 # type: verbatim
30676 #. type: verbatim
30677 #: ../fish/guestfish-actions.pod:4555
30678 #, no-wrap
30679 msgid ""
30680 " tune2fs-l device\n"
30681 "\n"
30682 msgstr ""
30683
30684 # type: =head2
30685 #. type: =head2
30686 #: ../fish/guestfish-actions.pod:4565
30687 msgid "txz-in"
30688 msgstr ""
30689
30690 # type: verbatim
30691 #. type: verbatim
30692 #: ../fish/guestfish-actions.pod:4567
30693 #, no-wrap
30694 msgid ""
30695 " txz-in (tarball|-) directory\n"
30696 "\n"
30697 msgstr ""
30698
30699 # type: =head2
30700 #. type: =head2
30701 #: ../fish/guestfish-actions.pod:4574
30702 msgid "txz-out"
30703 msgstr ""
30704
30705 # type: verbatim
30706 #. type: verbatim
30707 #: ../fish/guestfish-actions.pod:4576
30708 #, no-wrap
30709 msgid ""
30710 " txz-out directory (tarball|-)\n"
30711 "\n"
30712 msgstr ""
30713
30714 # type: =head2
30715 #. type: =head2
30716 #: ../fish/guestfish-actions.pod:4583
30717 msgid "umask"
30718 msgstr ""
30719
30720 # type: verbatim
30721 #. type: verbatim
30722 #: ../fish/guestfish-actions.pod:4585
30723 #, no-wrap
30724 msgid ""
30725 " umask mask\n"
30726 "\n"
30727 msgstr ""
30728
30729 # type: textblock
30730 #. type: textblock
30731 #: ../fish/guestfish-actions.pod:4599
30732 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
30733 msgstr ""
30734
30735 # type: =head2
30736 #. type: =head2
30737 #: ../fish/guestfish-actions.pod:4604
30738 msgid "umount"
30739 msgstr ""
30740
30741 # type: =head2
30742 #. type: =head2
30743 #: ../fish/guestfish-actions.pod:4606
30744 msgid "unmount"
30745 msgstr ""
30746
30747 # type: verbatim
30748 #. type: verbatim
30749 #: ../fish/guestfish-actions.pod:4608
30750 #, no-wrap
30751 msgid ""
30752 " umount pathordevice\n"
30753 "\n"
30754 msgstr ""
30755
30756 # type: =head2
30757 #. type: =head2
30758 #: ../fish/guestfish-actions.pod:4614
30759 msgid "umount-all"
30760 msgstr ""
30761
30762 # type: =head2
30763 #. type: =head2
30764 #: ../fish/guestfish-actions.pod:4616
30765 msgid "unmount-all"
30766 msgstr ""
30767
30768 # type: verbatim
30769 #. type: verbatim
30770 #: ../fish/guestfish-actions.pod:4618
30771 #, no-wrap
30772 msgid ""
30773 " umount-all\n"
30774 "\n"
30775 msgstr ""
30776
30777 # type: =head2
30778 #. type: =head2
30779 #: ../fish/guestfish-actions.pod:4624
30780 msgid "upload"
30781 msgstr ""
30782
30783 # type: verbatim
30784 #. type: verbatim
30785 #: ../fish/guestfish-actions.pod:4626
30786 #, no-wrap
30787 msgid ""
30788 " upload (filename|-) remotefilename\n"
30789 "\n"
30790 msgstr ""
30791
30792 # type: textblock
30793 #. type: textblock
30794 #: ../fish/guestfish-actions.pod:4633
30795 msgid "See also L</download>."
30796 msgstr ""
30797
30798 # type: =head2
30799 #. type: =head2
30800 #: ../fish/guestfish-actions.pod:4637
30801 msgid "upload-offset"
30802 msgstr ""
30803
30804 # type: verbatim
30805 #. type: verbatim
30806 #: ../fish/guestfish-actions.pod:4639
30807 #, no-wrap
30808 msgid ""
30809 " upload-offset (filename|-) remotefilename offset\n"
30810 "\n"
30811 msgstr ""
30812
30813 # type: textblock
30814 #. type: textblock
30815 #: ../fish/guestfish-actions.pod:4651
30816 msgid ""
30817 "Note that there is no limit on the amount of data that can be uploaded with "
30818 "this call, unlike with L</pwrite>, and this call always writes the full "
30819 "amount unless an error occurs."
30820 msgstr ""
30821
30822 # type: textblock
30823 #. type: textblock
30824 #: ../fish/guestfish-actions.pod:4656
30825 msgid "See also L</upload>, L</pwrite>."
30826 msgstr ""
30827
30828 # type: =head2
30829 #. type: =head2
30830 #: ../fish/guestfish-actions.pod:4660
30831 msgid "utimens"
30832 msgstr ""
30833
30834 # type: verbatim
30835 #. type: verbatim
30836 #: ../fish/guestfish-actions.pod:4662
30837 #, no-wrap
30838 msgid ""
30839 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
30840 "\n"
30841 msgstr ""
30842
30843 # type: =head2
30844 #. type: =head2
30845 #: ../fish/guestfish-actions.pod:4681
30846 msgid "version"
30847 msgstr ""
30848
30849 # type: verbatim
30850 #. type: verbatim
30851 #: ../fish/guestfish-actions.pod:4683
30852 #, no-wrap
30853 msgid ""
30854 " version\n"
30855 "\n"
30856 msgstr ""
30857
30858 # type: textblock
30859 #. type: textblock
30860 #: ../fish/guestfish-actions.pod:4710
30861 msgid ""
30862 "I<Note:> Don't use this call to test for availability of features.  In "
30863 "enterprise distributions we backport features from later versions into "
30864 "earlier versions, making this an unreliable way to test for features.  Use "
30865 "L</available> instead."
30866 msgstr ""
30867
30868 # type: =head2
30869 #. type: =head2
30870 #: ../fish/guestfish-actions.pod:4716
30871 msgid "vfs-label"
30872 msgstr ""
30873
30874 # type: verbatim
30875 #. type: verbatim
30876 #: ../fish/guestfish-actions.pod:4718
30877 #, no-wrap
30878 msgid ""
30879 " vfs-label device\n"
30880 "\n"
30881 msgstr ""
30882
30883 # type: textblock
30884 #. type: textblock
30885 #: ../fish/guestfish-actions.pod:4725
30886 msgid "To find a filesystem from the label, use L</findfs-label>."
30887 msgstr ""
30888
30889 # type: =head2
30890 #. type: =head2
30891 #: ../fish/guestfish-actions.pod:4727
30892 msgid "vfs-type"
30893 msgstr ""
30894
30895 # type: verbatim
30896 #. type: verbatim
30897 #: ../fish/guestfish-actions.pod:4729
30898 #, no-wrap
30899 msgid ""
30900 " vfs-type device\n"
30901 "\n"
30902 msgstr ""
30903
30904 # type: =head2
30905 #. type: =head2
30906 #: ../fish/guestfish-actions.pod:4739
30907 msgid "vfs-uuid"
30908 msgstr ""
30909
30910 # type: verbatim
30911 #. type: verbatim
30912 #: ../fish/guestfish-actions.pod:4741
30913 #, no-wrap
30914 msgid ""
30915 " vfs-uuid device\n"
30916 "\n"
30917 msgstr ""
30918
30919 # type: textblock
30920 #. type: textblock
30921 #: ../fish/guestfish-actions.pod:4748
30922 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
30923 msgstr ""
30924
30925 # type: =head2
30926 #. type: =head2
30927 #: ../fish/guestfish-actions.pod:4750
30928 msgid "vg-activate"
30929 msgstr ""
30930
30931 # type: verbatim
30932 #. type: verbatim
30933 #: ../fish/guestfish-actions.pod:4752
30934 #, no-wrap
30935 msgid ""
30936 " vg-activate true|false 'volgroups ...'\n"
30937 "\n"
30938 msgstr ""
30939
30940 # type: =head2
30941 #. type: =head2
30942 #: ../fish/guestfish-actions.pod:4765
30943 msgid "vg-activate-all"
30944 msgstr ""
30945
30946 # type: verbatim
30947 #. type: verbatim
30948 #: ../fish/guestfish-actions.pod:4767
30949 #, no-wrap
30950 msgid ""
30951 " vg-activate-all true|false\n"
30952 "\n"
30953 msgstr ""
30954
30955 # type: =head2
30956 #. type: =head2
30957 #: ../fish/guestfish-actions.pod:4777
30958 msgid "vgcreate"
30959 msgstr ""
30960
30961 # type: verbatim
30962 #. type: verbatim
30963 #: ../fish/guestfish-actions.pod:4779
30964 #, no-wrap
30965 msgid ""
30966 " vgcreate volgroup 'physvols ...'\n"
30967 "\n"
30968 msgstr ""
30969
30970 # type: =head2
30971 #. type: =head2
30972 #: ../fish/guestfish-actions.pod:4784
30973 msgid "vglvuuids"
30974 msgstr ""
30975
30976 # type: verbatim
30977 #. type: verbatim
30978 #: ../fish/guestfish-actions.pod:4786
30979 #, no-wrap
30980 msgid ""
30981 " vglvuuids vgname\n"
30982 "\n"
30983 msgstr ""
30984
30985 # type: textblock
30986 #. type: textblock
30987 #: ../fish/guestfish-actions.pod:4791
30988 msgid ""
30989 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
30990 "logical volumes and volume groups."
30991 msgstr ""
30992
30993 # type: textblock
30994 #. type: textblock
30995 #: ../fish/guestfish-actions.pod:4794
30996 msgid "See also L</vgpvuuids>."
30997 msgstr ""
30998
30999 # type: =head2
31000 #. type: =head2
31001 #: ../fish/guestfish-actions.pod:4796
31002 msgid "vgpvuuids"
31003 msgstr ""
31004
31005 # type: verbatim
31006 #. type: verbatim
31007 #: ../fish/guestfish-actions.pod:4798
31008 #, no-wrap
31009 msgid ""
31010 " vgpvuuids vgname\n"
31011 "\n"
31012 msgstr ""
31013
31014 # type: textblock
31015 #. type: textblock
31016 #: ../fish/guestfish-actions.pod:4803
31017 msgid ""
31018 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
31019 "physical volumes and volume groups."
31020 msgstr ""
31021
31022 # type: textblock
31023 #. type: textblock
31024 #: ../fish/guestfish-actions.pod:4806
31025 msgid "See also L</vglvuuids>."
31026 msgstr ""
31027
31028 # type: =head2
31029 #. type: =head2
31030 #: ../fish/guestfish-actions.pod:4808
31031 msgid "vgremove"
31032 msgstr ""
31033
31034 # type: verbatim
31035 #. type: verbatim
31036 #: ../fish/guestfish-actions.pod:4810
31037 #, no-wrap
31038 msgid ""
31039 " vgremove vgname\n"
31040 "\n"
31041 msgstr ""
31042
31043 # type: =head2
31044 #. type: =head2
31045 #: ../fish/guestfish-actions.pod:4817
31046 msgid "vgrename"
31047 msgstr ""
31048
31049 # type: verbatim
31050 #. type: verbatim
31051 #: ../fish/guestfish-actions.pod:4819
31052 #, no-wrap
31053 msgid ""
31054 " vgrename volgroup newvolgroup\n"
31055 "\n"
31056 msgstr ""
31057
31058 # type: =head2
31059 #. type: =head2
31060 #: ../fish/guestfish-actions.pod:4823
31061 msgid "vgs"
31062 msgstr ""
31063
31064 # type: verbatim
31065 #. type: verbatim
31066 #: ../fish/guestfish-actions.pod:4825
31067 #, no-wrap
31068 msgid ""
31069 " vgs\n"
31070 "\n"
31071 msgstr ""
31072
31073 # type: textblock
31074 #. type: textblock
31075 #: ../fish/guestfish-actions.pod:4833
31076 msgid "See also L</vgs-full>."
31077 msgstr ""
31078
31079 # type: =head2
31080 #. type: =head2
31081 #: ../fish/guestfish-actions.pod:4835
31082 msgid "vgs-full"
31083 msgstr ""
31084
31085 # type: verbatim
31086 #. type: verbatim
31087 #: ../fish/guestfish-actions.pod:4837
31088 #, no-wrap
31089 msgid ""
31090 " vgs-full\n"
31091 "\n"
31092 msgstr ""
31093
31094 # type: =head2
31095 #. type: =head2
31096 #: ../fish/guestfish-actions.pod:4842
31097 msgid "vgscan"
31098 msgstr ""
31099
31100 # type: verbatim
31101 #. type: verbatim
31102 #: ../fish/guestfish-actions.pod:4844
31103 #, no-wrap
31104 msgid ""
31105 " vgscan\n"
31106 "\n"
31107 msgstr ""
31108
31109 # type: =head2
31110 #. type: =head2
31111 #: ../fish/guestfish-actions.pod:4849
31112 msgid "vguuid"
31113 msgstr ""
31114
31115 # type: verbatim
31116 #. type: verbatim
31117 #: ../fish/guestfish-actions.pod:4851
31118 #, no-wrap
31119 msgid ""
31120 " vguuid vgname\n"
31121 "\n"
31122 msgstr ""
31123
31124 # type: =head2
31125 #. type: =head2
31126 #: ../fish/guestfish-actions.pod:4855
31127 msgid "wc-c"
31128 msgstr ""
31129
31130 # type: verbatim
31131 #. type: verbatim
31132 #: ../fish/guestfish-actions.pod:4857
31133 #, no-wrap
31134 msgid ""
31135 " wc-c path\n"
31136 "\n"
31137 msgstr ""
31138
31139 # type: =head2
31140 #. type: =head2
31141 #: ../fish/guestfish-actions.pod:4862
31142 msgid "wc-l"
31143 msgstr ""
31144
31145 # type: verbatim
31146 #. type: verbatim
31147 #: ../fish/guestfish-actions.pod:4864
31148 #, no-wrap
31149 msgid ""
31150 " wc-l path\n"
31151 "\n"
31152 msgstr ""
31153
31154 # type: =head2
31155 #. type: =head2
31156 #: ../fish/guestfish-actions.pod:4869
31157 msgid "wc-w"
31158 msgstr ""
31159
31160 # type: verbatim
31161 #. type: verbatim
31162 #: ../fish/guestfish-actions.pod:4871
31163 #, no-wrap
31164 msgid ""
31165 " wc-w path\n"
31166 "\n"
31167 msgstr ""
31168
31169 # type: =head2
31170 #. type: =head2
31171 #: ../fish/guestfish-actions.pod:4876
31172 msgid "write"
31173 msgstr ""
31174
31175 # type: verbatim
31176 #. type: verbatim
31177 #: ../fish/guestfish-actions.pod:4878
31178 #, no-wrap
31179 msgid ""
31180 " write path content\n"
31181 "\n"
31182 msgstr ""
31183
31184 # type: =head2
31185 #. type: =head2
31186 #: ../fish/guestfish-actions.pod:4886
31187 msgid "write-file"
31188 msgstr ""
31189
31190 # type: verbatim
31191 #. type: verbatim
31192 #: ../fish/guestfish-actions.pod:4888
31193 #, no-wrap
31194 msgid ""
31195 " write-file path content size\n"
31196 "\n"
31197 msgstr ""
31198
31199 # type: =head2
31200 #. type: =head2
31201 #: ../fish/guestfish-actions.pod:4911
31202 msgid "zegrep"
31203 msgstr ""
31204
31205 # type: verbatim
31206 #. type: verbatim
31207 #: ../fish/guestfish-actions.pod:4913
31208 #, no-wrap
31209 msgid ""
31210 " zegrep regex path\n"
31211 "\n"
31212 msgstr ""
31213
31214 # type: =head2
31215 #. type: =head2
31216 #: ../fish/guestfish-actions.pod:4921
31217 msgid "zegrepi"
31218 msgstr ""
31219
31220 # type: verbatim
31221 #. type: verbatim
31222 #: ../fish/guestfish-actions.pod:4923
31223 #, no-wrap
31224 msgid ""
31225 " zegrepi regex path\n"
31226 "\n"
31227 msgstr ""
31228
31229 # type: =head2
31230 #. type: =head2
31231 #: ../fish/guestfish-actions.pod:4931
31232 msgid "zero"
31233 msgstr ""
31234
31235 # type: verbatim
31236 #. type: verbatim
31237 #: ../fish/guestfish-actions.pod:4933
31238 #, no-wrap
31239 msgid ""
31240 " zero device\n"
31241 "\n"
31242 msgstr ""
31243
31244 # type: textblock
31245 #. type: textblock
31246 #: ../fish/guestfish-actions.pod:4941
31247 msgid "See also: L</zero-device>, L</scrub-device>."
31248 msgstr ""
31249
31250 # type: =head2
31251 #. type: =head2
31252 #: ../fish/guestfish-actions.pod:4943
31253 msgid "zero-device"
31254 msgstr ""
31255
31256 # type: verbatim
31257 #. type: verbatim
31258 #: ../fish/guestfish-actions.pod:4945
31259 #, no-wrap
31260 msgid ""
31261 " zero-device device\n"
31262 "\n"
31263 msgstr ""
31264
31265 # type: textblock
31266 #. type: textblock
31267 #: ../fish/guestfish-actions.pod:4947
31268 msgid ""
31269 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
31270 "which just zeroes the first few blocks of a device."
31271 msgstr ""
31272
31273 # type: =head2
31274 #. type: =head2
31275 #: ../fish/guestfish-actions.pod:4954
31276 msgid "zerofree"
31277 msgstr ""
31278
31279 # type: verbatim
31280 #. type: verbatim
31281 #: ../fish/guestfish-actions.pod:4956
31282 #, no-wrap
31283 msgid ""
31284 " zerofree device\n"
31285 "\n"
31286 msgstr ""
31287
31288 # type: =head2
31289 #. type: =head2
31290 #: ../fish/guestfish-actions.pod:4969
31291 msgid "zfgrep"
31292 msgstr ""
31293
31294 # type: verbatim
31295 #. type: verbatim
31296 #: ../fish/guestfish-actions.pod:4971
31297 #, no-wrap
31298 msgid ""
31299 " zfgrep pattern path\n"
31300 "\n"
31301 msgstr ""
31302
31303 # type: =head2
31304 #. type: =head2
31305 #: ../fish/guestfish-actions.pod:4979
31306 msgid "zfgrepi"
31307 msgstr ""
31308
31309 # type: verbatim
31310 #. type: verbatim
31311 #: ../fish/guestfish-actions.pod:4981
31312 #, no-wrap
31313 msgid ""
31314 " zfgrepi pattern path\n"
31315 "\n"
31316 msgstr ""
31317
31318 # type: =head2
31319 #. type: =head2
31320 #: ../fish/guestfish-actions.pod:4989
31321 msgid "zfile"
31322 msgstr ""
31323
31324 # type: verbatim
31325 #. type: verbatim
31326 #: ../fish/guestfish-actions.pod:4991
31327 #, no-wrap
31328 msgid ""
31329 " zfile meth path\n"
31330 "\n"
31331 msgstr ""
31332
31333 # type: textblock
31334 #. type: textblock
31335 #: ../fish/guestfish-actions.pod:4998
31336 msgid ""
31337 "Since 1.0.63, use L</file> instead which can now process compressed files."
31338 msgstr ""
31339
31340 # type: =head2
31341 #. type: =head2
31342 #: ../fish/guestfish-actions.pod:5008
31343 msgid "zgrep"
31344 msgstr ""
31345
31346 # type: verbatim
31347 #. type: verbatim
31348 #: ../fish/guestfish-actions.pod:5010
31349 #, no-wrap
31350 msgid ""
31351 " zgrep regex path\n"
31352 "\n"
31353 msgstr ""
31354
31355 # type: =head2
31356 #. type: =head2
31357 #: ../fish/guestfish-actions.pod:5018
31358 msgid "zgrepi"
31359 msgstr ""
31360
31361 # type: verbatim
31362 #. type: verbatim
31363 #: ../fish/guestfish-actions.pod:5020
31364 #, no-wrap
31365 msgid ""
31366 " zgrepi regex path\n"
31367 "\n"
31368 msgstr ""
31369
31370 # type: =head2
31371 #. type: =head2
31372 #: ../fish/guestfish-commands.pod:1
31373 msgid "alloc"
31374 msgstr ""
31375
31376 # type: =head2
31377 #. type: =head2
31378 #: ../fish/guestfish-commands.pod:3
31379 msgid "allocate"
31380 msgstr ""
31381
31382 # type: verbatim
31383 #. type: verbatim
31384 #: ../fish/guestfish-commands.pod:5
31385 #, no-wrap
31386 msgid ""
31387 " alloc filename size\n"
31388 "\n"
31389 msgstr ""
31390
31391 # type: textblock
31392 #. type: textblock
31393 #: ../fish/guestfish-commands.pod:7
31394 msgid ""
31395 "This creates an empty (zeroed) file of the given size, and then adds so it "
31396 "can be further examined."
31397 msgstr ""
31398
31399 # type: textblock
31400 #. type: textblock
31401 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
31402 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
31403 msgstr ""
31404
31405 # type: textblock
31406 #. type: textblock
31407 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
31408 msgid "Size can be specified using standard suffixes, eg. C<1M>."
31409 msgstr ""
31410
31411 # type: textblock
31412 #. type: textblock
31413 #: ../fish/guestfish-commands.pod:14
31414 msgid ""
31415 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
31416 "image, see L</PREPARED DISK IMAGES>."
31417 msgstr ""
31418
31419 # type: =head2
31420 #. type: =head2
31421 #: ../fish/guestfish-commands.pod:17
31422 msgid "copy-in"
31423 msgstr ""
31424
31425 # type: verbatim
31426 #. type: verbatim
31427 #: ../fish/guestfish-commands.pod:19
31428 #, no-wrap
31429 msgid ""
31430 " copy-in local [local ...] /remotedir\n"
31431 "\n"
31432 msgstr ""
31433
31434 # type: textblock
31435 #. type: textblock
31436 #: ../fish/guestfish-commands.pod:21
31437 msgid ""
31438 "C<copy-in> copies local files or directories recursively into the disk "
31439 "image, placing them in the directory called C</remotedir> (which must "
31440 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
31441 "other commands as necessary."
31442 msgstr ""
31443
31444 # type: textblock
31445 #. type: textblock
31446 #: ../fish/guestfish-commands.pod:26
31447 msgid ""
31448 "Multiple local files and directories can be specified, but the last "
31449 "parameter must always be a remote directory.  Wildcards cannot be used."
31450 msgstr ""
31451
31452 # type: =head2
31453 #. type: =head2
31454 #: ../fish/guestfish-commands.pod:30
31455 msgid "copy-out"
31456 msgstr ""
31457
31458 # type: verbatim
31459 #. type: verbatim
31460 #: ../fish/guestfish-commands.pod:32
31461 #, no-wrap
31462 msgid ""
31463 " copy-out remote [remote ...] localdir\n"
31464 "\n"
31465 msgstr ""
31466
31467 # type: textblock
31468 #. type: textblock
31469 #: ../fish/guestfish-commands.pod:34
31470 msgid ""
31471 "C<copy-out> copies remote files or directories recursively out of the disk "
31472 "image, placing them on the host disk in a local directory called C<localdir> "
31473 "(which must exist).  This guestfish meta-command turns into a sequence of L</"
31474 "download>, L</tar-out> and other commands as necessary."
31475 msgstr ""
31476
31477 # type: textblock
31478 #. type: textblock
31479 #: ../fish/guestfish-commands.pod:40
31480 msgid ""
31481 "Multiple remote files and directories can be specified, but the last "
31482 "parameter must always be a local directory.  To download to the current "
31483 "directory, use C<.> as in:"
31484 msgstr ""
31485
31486 # type: verbatim
31487 #. type: verbatim
31488 #: ../fish/guestfish-commands.pod:44
31489 #, no-wrap
31490 msgid ""
31491 " copy-out /home .\n"
31492 "\n"
31493 msgstr ""
31494
31495 # type: textblock
31496 #. type: textblock
31497 #: ../fish/guestfish-commands.pod:46
31498 msgid ""
31499 "Wildcards cannot be used in the ordinary command, but you can use them with "
31500 "the help of L</glob> like this:"
31501 msgstr ""
31502
31503 # type: verbatim
31504 #. type: verbatim
31505 #: ../fish/guestfish-commands.pod:49
31506 #, no-wrap
31507 msgid ""
31508 " glob copy-out /home/* .\n"
31509 "\n"
31510 msgstr ""
31511
31512 # type: =head2
31513 #. type: =head2
31514 #: ../fish/guestfish-commands.pod:51
31515 msgid "echo"
31516 msgstr ""
31517
31518 # type: verbatim
31519 #. type: verbatim
31520 #: ../fish/guestfish-commands.pod:53
31521 #, no-wrap
31522 msgid ""
31523 " echo [params ...]\n"
31524 "\n"
31525 msgstr ""
31526
31527 # type: textblock
31528 #. type: textblock
31529 #: ../fish/guestfish-commands.pod:55
31530 msgid "This echos the parameters to the terminal."
31531 msgstr ""
31532
31533 # type: =head2
31534 #. type: =head2
31535 #: ../fish/guestfish-commands.pod:57
31536 msgid "edit"
31537 msgstr ""
31538
31539 # type: =head2
31540 #. type: =head2
31541 #: ../fish/guestfish-commands.pod:59
31542 msgid "vi"
31543 msgstr ""
31544
31545 # type: =head2
31546 #. type: =head2
31547 #: ../fish/guestfish-commands.pod:61
31548 msgid "emacs"
31549 msgstr ""
31550
31551 # type: verbatim
31552 #. type: verbatim
31553 #: ../fish/guestfish-commands.pod:63
31554 #, no-wrap
31555 msgid ""
31556 " edit filename\n"
31557 "\n"
31558 msgstr ""
31559
31560 # type: textblock
31561 #. type: textblock
31562 #: ../fish/guestfish-commands.pod:65
31563 msgid ""
31564 "This is used to edit a file.  It downloads the file, edits it locally using "
31565 "your editor, then uploads the result."
31566 msgstr ""
31567
31568 # type: textblock
31569 #. type: textblock
31570 #: ../fish/guestfish-commands.pod:68
31571 msgid ""
31572 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
31573 "or C<emacs> you will get those corresponding editors."
31574 msgstr ""
31575
31576 # type: =head2
31577 #. type: =head2
31578 #: ../fish/guestfish-commands.pod:72
31579 msgid "glob"
31580 msgstr ""
31581
31582 # type: verbatim
31583 #. type: verbatim
31584 #: ../fish/guestfish-commands.pod:74
31585 #, no-wrap
31586 msgid ""
31587 " glob command args...\n"
31588 "\n"
31589 msgstr ""
31590
31591 # type: textblock
31592 #. type: textblock
31593 #: ../fish/guestfish-commands.pod:76
31594 msgid ""
31595 "Expand wildcards in any paths in the args list, and run C<command> "
31596 "repeatedly on each matching path."
31597 msgstr ""
31598
31599 # type: textblock
31600 #. type: textblock
31601 #: ../fish/guestfish-commands.pod:79
31602 msgid "See L</WILDCARDS AND GLOBBING>."
31603 msgstr ""
31604
31605 # type: =head2
31606 #. type: =head2
31607 #: ../fish/guestfish-commands.pod:81
31608 msgid "hexedit"
31609 msgstr ""
31610
31611 # type: verbatim
31612 #. type: verbatim
31613 #: ../fish/guestfish-commands.pod:83
31614 #, no-wrap
31615 msgid ""
31616 " hexedit <filename|device>\n"
31617 " hexedit <filename|device> <max>\n"
31618 " hexedit <filename|device> <start> <max>\n"
31619 "\n"
31620 msgstr ""
31621
31622 # type: textblock
31623 #. type: textblock
31624 #: ../fish/guestfish-commands.pod:87
31625 msgid ""
31626 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
31627 "device."
31628 msgstr ""
31629
31630 # type: textblock
31631 #. type: textblock
31632 #: ../fish/guestfish-commands.pod:90
31633 msgid ""
31634 "This command works by downloading potentially the whole file or device, "
31635 "editing it locally, then uploading it.  If the file or device is large, you "
31636 "have to specify which part you wish to edit by using C<max> and/or C<start> "
31637 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
31638 "usual modifiers allowed such as C<1M> (1 megabyte)."
31639 msgstr ""
31640
31641 # type: textblock
31642 #. type: textblock
31643 #: ../fish/guestfish-commands.pod:97
31644 msgid "For example to edit the first few sectors of a disk you might do:"
31645 msgstr ""
31646
31647 # type: verbatim
31648 #. type: verbatim
31649 #: ../fish/guestfish-commands.pod:100
31650 #, no-wrap
31651 msgid ""
31652 " hexedit /dev/sda 1M\n"
31653 "\n"
31654 msgstr ""
31655
31656 # type: textblock
31657 #. type: textblock
31658 #: ../fish/guestfish-commands.pod:102
31659 msgid ""
31660 "which would allow you to edit anywhere within the first megabyte of the disk."
31661 msgstr ""
31662
31663 # type: textblock
31664 #. type: textblock
31665 #: ../fish/guestfish-commands.pod:105
31666 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
31667 msgstr ""
31668
31669 # type: verbatim
31670 #. type: verbatim
31671 #: ../fish/guestfish-commands.pod:107
31672 #, no-wrap
31673 msgid ""
31674 " hexedit /dev/sda1 0x400 0x400\n"
31675 "\n"
31676 msgstr ""
31677
31678 # type: textblock
31679 #. type: textblock
31680 #: ../fish/guestfish-commands.pod:109
31681 msgid "(assuming the superblock is in the standard location)."
31682 msgstr ""
31683
31684 # type: textblock
31685 #. type: textblock
31686 #: ../fish/guestfish-commands.pod:111
31687 msgid ""
31688 "This command requires the external L<hexedit(1)> program.  You can specify "
31689 "another program to use by setting the C<HEXEDITOR> environment variable."
31690 msgstr ""
31691
31692 # type: textblock
31693 #. type: textblock
31694 #: ../fish/guestfish-commands.pod:115
31695 msgid "See also L</hexdump>."
31696 msgstr ""
31697
31698 # type: =head2
31699 #. type: =head2
31700 #: ../fish/guestfish-commands.pod:117
31701 msgid "lcd"
31702 msgstr ""
31703
31704 # type: verbatim
31705 #. type: verbatim
31706 #: ../fish/guestfish-commands.pod:119
31707 #, no-wrap
31708 msgid ""
31709 " lcd directory\n"
31710 "\n"
31711 msgstr ""
31712
31713 # type: textblock
31714 #. type: textblock
31715 #: ../fish/guestfish-commands.pod:121
31716 msgid ""
31717 "Change the local directory, ie. the current directory of guestfish itself."
31718 msgstr ""
31719
31720 # type: textblock
31721 #. type: textblock
31722 #: ../fish/guestfish-commands.pod:124
31723 msgid "Note that C<!cd> won't do what you might expect."
31724 msgstr ""
31725
31726 # type: =head2
31727 #. type: =head2
31728 #: ../fish/guestfish-commands.pod:126
31729 msgid "man"
31730 msgstr ""
31731
31732 # type: =head2
31733 #. type: =head2
31734 #: ../fish/guestfish-commands.pod:128
31735 msgid "manual"
31736 msgstr ""
31737
31738 # type: verbatim
31739 #. type: verbatim
31740 #: ../fish/guestfish-commands.pod:130
31741 #, no-wrap
31742 msgid ""
31743 "  man\n"
31744 "\n"
31745 msgstr ""
31746
31747 # type: textblock
31748 #. type: textblock
31749 #: ../fish/guestfish-commands.pod:132
31750 msgid "Opens the manual page for guestfish."
31751 msgstr ""
31752
31753 # type: =head2
31754 #. type: =head2
31755 #: ../fish/guestfish-commands.pod:134
31756 msgid "more"
31757 msgstr ""
31758
31759 # type: =head2
31760 #. type: =head2
31761 #: ../fish/guestfish-commands.pod:136
31762 msgid "less"
31763 msgstr ""
31764
31765 # type: verbatim
31766 #. type: verbatim
31767 #: ../fish/guestfish-commands.pod:138
31768 #, no-wrap
31769 msgid ""
31770 " more filename\n"
31771 "\n"
31772 msgstr ""
31773
31774 # type: verbatim
31775 #. type: verbatim
31776 #: ../fish/guestfish-commands.pod:140
31777 #, no-wrap
31778 msgid ""
31779 " less filename\n"
31780 "\n"
31781 msgstr ""
31782
31783 # type: textblock
31784 #. type: textblock
31785 #: ../fish/guestfish-commands.pod:142
31786 msgid "This is used to view a file."
31787 msgstr ""
31788
31789 # type: textblock
31790 #. type: textblock
31791 #: ../fish/guestfish-commands.pod:144
31792 msgid ""
31793 "The default viewer is C<$PAGER>.  However if you use the alternate command "
31794 "C<less> you will get the C<less> command specifically."
31795 msgstr ""
31796
31797 # type: =head2
31798 #. type: =head2
31799 #: ../fish/guestfish-commands.pod:147
31800 msgid "reopen"
31801 msgstr ""
31802
31803 # type: verbatim
31804 #. type: verbatim
31805 #: ../fish/guestfish-commands.pod:149
31806 #, no-wrap
31807 msgid ""
31808 "  reopen\n"
31809 "\n"
31810 msgstr ""
31811
31812 # type: textblock
31813 #. type: textblock
31814 #: ../fish/guestfish-commands.pod:151
31815 msgid ""
31816 "Close and reopen the libguestfs handle.  It is not necessary to use this "
31817 "normally, because the handle is closed properly when guestfish exits.  "
31818 "However this is occasionally useful for testing."
31819 msgstr ""
31820
31821 # type: =head2
31822 #. type: =head2
31823 #: ../fish/guestfish-commands.pod:155
31824 msgid "sparse"
31825 msgstr ""
31826
31827 # type: verbatim
31828 #. type: verbatim
31829 #: ../fish/guestfish-commands.pod:157
31830 #, no-wrap
31831 msgid ""
31832 " sparse filename size\n"
31833 "\n"
31834 msgstr ""
31835
31836 # type: textblock
31837 #. type: textblock
31838 #: ../fish/guestfish-commands.pod:159
31839 msgid ""
31840 "This creates an empty sparse file of the given size, and then adds so it can "
31841 "be further examined."
31842 msgstr ""
31843
31844 # type: textblock
31845 #. type: textblock
31846 #: ../fish/guestfish-commands.pod:162
31847 msgid ""
31848 "In all respects it works the same as the L</alloc> command, except that the "
31849 "image file is allocated sparsely, which means that disk blocks are not "
31850 "assigned to the file until they are needed.  Sparse disk files only use "
31851 "space when written to, but they are slower and there is a danger you could "
31852 "run out of real disk space during a write operation."
31853 msgstr ""
31854
31855 # type: =head2
31856 #. type: =head2
31857 #: ../fish/guestfish-commands.pod:172
31858 msgid "supported"
31859 msgstr ""
31860
31861 # type: verbatim
31862 #. type: verbatim
31863 #: ../fish/guestfish-commands.pod:174
31864 #, no-wrap
31865 msgid ""
31866 " supported\n"
31867 "\n"
31868 msgstr ""
31869
31870 # type: textblock
31871 #. type: textblock
31872 #: ../fish/guestfish-commands.pod:176
31873 msgid ""
31874 "This command returns a list of the optional groups known to the daemon, and "
31875 "indicates which ones are supported by this build of the libguestfs appliance."
31876 msgstr ""
31877
31878 # type: textblock
31879 #. type: textblock
31880 #: ../fish/guestfish-commands.pod:180
31881 msgid "See also L<guestfs(3)/AVAILABILITY>."
31882 msgstr ""
31883
31884 # type: =head2
31885 #. type: =head2
31886 #: ../fish/guestfish-commands.pod:182
31887 msgid "time"
31888 msgstr ""
31889
31890 # type: verbatim
31891 #. type: verbatim
31892 #: ../fish/guestfish-commands.pod:184
31893 #, no-wrap
31894 msgid ""
31895 " time command args...\n"
31896 "\n"
31897 msgstr ""
31898
31899 # type: textblock
31900 #. type: textblock
31901 #: ../fish/guestfish-commands.pod:186
31902 msgid ""
31903 "Run the command as usual, but print the elapsed time afterwards.  This can "
31904 "be useful for benchmarking operations."
31905 msgstr ""
31906
31907 # type: textblock
31908 #. type: textblock
31909 #: ../test-tool/libguestfs-test-tool.pod:5
31910 msgid "libguestfs-test-tool - End user tests for libguestfs"
31911 msgstr ""
31912
31913 # type: verbatim
31914 #. type: verbatim
31915 #: ../test-tool/libguestfs-test-tool.pod:9
31916 #, no-wrap
31917 msgid ""
31918 " libguestfs-test-tool [--options]\n"
31919 "\n"
31920 msgstr ""
31921
31922 # type: textblock
31923 #. type: textblock
31924 #: ../test-tool/libguestfs-test-tool.pod:13
31925 msgid ""
31926 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
31927 "and developers, to allow them to check basic libguestfs functionality is "
31928 "working.  This is needed because libguestfs occasionally breaks for reasons "
31929 "beyond our control: usually because of changes in the underlying qemu or "
31930 "kernel packages, or the host environment."
31931 msgstr ""
31932
31933 # type: textblock
31934 #. type: textblock
31935 #: ../test-tool/libguestfs-test-tool.pod:20
31936 msgid "If you suspect a problem in libguestfs, then just run:"
31937 msgstr ""
31938
31939 # type: verbatim
31940 #. type: verbatim
31941 #: ../test-tool/libguestfs-test-tool.pod:22
31942 #, no-wrap
31943 msgid ""
31944 " libguestfs-test-tool\n"
31945 "\n"
31946 msgstr ""
31947
31948 # type: textblock
31949 #. type: textblock
31950 #: ../test-tool/libguestfs-test-tool.pod:24
31951 msgid "It will print lots of diagnostic messages."
31952 msgstr ""
31953
31954 # type: textblock
31955 #. type: textblock
31956 #: ../test-tool/libguestfs-test-tool.pod:26
31957 msgid "If it runs to completion successfully, you will see this near the end:"
31958 msgstr ""
31959
31960 # type: verbatim
31961 #. type: verbatim
31962 #: ../test-tool/libguestfs-test-tool.pod:28
31963 #, no-wrap
31964 msgid ""
31965 " ===== TEST FINISHED OK =====\n"
31966 "\n"
31967 msgstr ""
31968
31969 # type: textblock
31970 #. type: textblock
31971 #: ../test-tool/libguestfs-test-tool.pod:30
31972 msgid "and the test tool will exit with code 0."
31973 msgstr ""
31974
31975 # type: textblock
31976 #. type: textblock
31977 #: ../test-tool/libguestfs-test-tool.pod:32
31978 msgid ""
31979 "If it fails (and/or exits with non-zero error code), please paste the "
31980 "B<complete, unedited> output of the test tool into a bug report.  More "
31981 "information about reporting bugs can be found on the L<http://libguestfs.org/"
31982 "> website."
31983 msgstr ""
31984
31985 # type: =item
31986 #. type: =item
31987 #: ../test-tool/libguestfs-test-tool.pod:41
31988 msgid "I<--help>"
31989 msgstr ""
31990
31991 # type: textblock
31992 #. type: textblock
31993 #: ../test-tool/libguestfs-test-tool.pod:43
31994 msgid "Display short usage information and exit."
31995 msgstr ""
31996
31997 # type: =item
31998 #. type: =item
31999 #: ../test-tool/libguestfs-test-tool.pod:45
32000 msgid "I<--qemu qemu_binary>"
32001 msgstr ""
32002
32003 # type: textblock
32004 #. type: textblock
32005 #: ../test-tool/libguestfs-test-tool.pod:47
32006 msgid ""
32007 "If you have downloaded another qemu binary, point this option at the full "
32008 "path of the binary to try it."
32009 msgstr ""
32010
32011 # type: =item
32012 #. type: =item
32013 #: ../test-tool/libguestfs-test-tool.pod:50
32014 msgid "I<--qemudir qemu_source_dir>"
32015 msgstr ""
32016
32017 # type: textblock
32018 #. type: textblock
32019 #: ../test-tool/libguestfs-test-tool.pod:52
32020 msgid ""
32021 "If you have compiled qemu from source, point this option at the source "
32022 "directory to try it."
32023 msgstr ""
32024
32025 # type: =item
32026 #. type: =item
32027 #: ../test-tool/libguestfs-test-tool.pod:55
32028 msgid "I<--timeout N>"
32029 msgstr ""
32030
32031 # type: textblock
32032 #. type: textblock
32033 #: ../test-tool/libguestfs-test-tool.pod:57
32034 msgid ""
32035 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
32036 "does not usually need to be adjusted unless your machine is very slow."
32037 msgstr ""
32038
32039 # type: =head1
32040 #. type: =head1
32041 #: ../test-tool/libguestfs-test-tool.pod:63
32042 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
32043 msgstr ""
32044
32045 # type: textblock
32046 #. type: textblock
32047 #: ../test-tool/libguestfs-test-tool.pod:65
32048 msgid ""
32049 "If you have compiled another version of qemu from source and would like to "
32050 "try that, then you can use the I<--qemudir> option to point to the qemu "
32051 "source directory."
32052 msgstr ""
32053
32054 # type: textblock
32055 #. type: textblock
32056 #: ../test-tool/libguestfs-test-tool.pod:69
32057 msgid ""
32058 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
32059 "option to point to the binary."
32060 msgstr ""
32061
32062 # type: textblock
32063 #. type: textblock
32064 #: ../test-tool/libguestfs-test-tool.pod:72
32065 msgid ""
32066 "When using an alternate qemu with libguestfs, usually you would need to "
32067 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)"
32068 ">).  libguestfs-test-tool writes a temporary qemu wrapper script when you "
32069 "use either of the I<--qemudir> or I<--qemu> options."
32070 msgstr ""
32071
32072 # type: textblock
32073 #. type: textblock
32074 #: ../test-tool/libguestfs-test-tool.pod:79
32075 msgid ""
32076 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
32077 "I<1> if there was an error."
32078 msgstr ""
32079
32080 # type: textblock
32081 #. type: textblock
32082 #: ../test-tool/libguestfs-test-tool.pod:84
32083 msgid ""
32084 "For the full list of environment variables which may affect libguestfs, "
32085 "please see the L<guestfs(3)> manual page."
32086 msgstr ""
32087
32088 # type: textblock
32089 #. type: textblock
32090 #: ../test-tool/libguestfs-test-tool.pod:89
32091 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
32092 msgstr ""
32093
32094 # type: textblock
32095 #. type: textblock
32096 #: ../fuse/guestmount.pod:5
32097 msgid ""
32098 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
32099 msgstr ""
32100
32101 # type: verbatim
32102 #. type: verbatim
32103 #: ../fuse/guestmount.pod:9
32104 #, no-wrap
32105 msgid ""
32106 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
32107 "\n"
32108 msgstr ""
32109
32110 # type: verbatim
32111 #. type: verbatim
32112 #: ../fuse/guestmount.pod:11
32113 #, no-wrap
32114 msgid ""
32115 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
32116 "\n"
32117 msgstr ""
32118
32119 # type: verbatim
32120 #. type: verbatim
32121 #: ../fuse/guestmount.pod:13
32122 #, no-wrap
32123 msgid ""
32124 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
32125 "\n"
32126 msgstr ""
32127
32128 # type: textblock
32129 #. type: textblock
32130 #: ../fuse/guestmount.pod:17
32131 msgid ""
32132 "You must I<not> use C<guestmount> in read-write mode on live virtual "
32133 "machines.  If you do this, you risk disk corruption in the VM."
32134 msgstr ""
32135
32136 # type: textblock
32137 #. type: textblock
32138 #: ../fuse/guestmount.pod:22
32139 msgid ""
32140 "The guestmount program can be used to mount virtual machine filesystems and "
32141 "other disk images on the host.  It uses libguestfs for access to the guest "
32142 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
32143 "a mountable device."
32144 msgstr ""
32145
32146 # type: textblock
32147 #. type: textblock
32148 #: ../fuse/guestmount.pod:27
32149 msgid ""
32150 "Along with other options, you have to give at least one device (I<-a> "
32151 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
32152 "option) or use the I<-i> inspection option.  How this works is better "
32153 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
32154 "below."
32155 msgstr ""
32156
32157 # type: textblock
32158 #. type: textblock
32159 #: ../fuse/guestmount.pod:33
32160 msgid ""
32161 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
32162 "by you, and the filesystem will not be visible to any other users unless you "
32163 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
32164 "the filesystem, use the C<fusermount -u> command."
32165 msgstr ""
32166
32167 # type: textblock
32168 #. type: textblock
32169 #: ../fuse/guestmount.pod:41
32170 msgid ""
32171 "For a typical Windows guest which has its main filesystem on the first "
32172 "partition:"
32173 msgstr ""
32174
32175 # type: verbatim
32176 #. type: verbatim
32177 #: ../fuse/guestmount.pod:44
32178 #, no-wrap
32179 msgid ""
32180 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
32181 "\n"
32182 msgstr ""
32183
32184 # type: textblock
32185 #. type: textblock
32186 #: ../fuse/guestmount.pod:46
32187 msgid ""
32188 "For a typical Linux guest which has a /boot filesystem on the first "
32189 "partition, and the root filesystem on a logical volume:"
32190 msgstr ""
32191
32192 # type: verbatim
32193 #. type: verbatim
32194 #: ../fuse/guestmount.pod:49
32195 #, no-wrap
32196 msgid ""
32197 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
32198 "\n"
32199 msgstr ""
32200
32201 # type: textblock
32202 #. type: textblock
32203 #: ../fuse/guestmount.pod:51
32204 msgid "To get libguestfs to detect guest mountpoints for you:"
32205 msgstr ""
32206
32207 # type: verbatim
32208 #. type: verbatim
32209 #: ../fuse/guestmount.pod:53
32210 #, no-wrap
32211 msgid ""
32212 " guestmount -a guest.img -i --ro /mnt\n"
32213 "\n"
32214 msgstr ""
32215
32216 # type: textblock
32217 #. type: textblock
32218 #: ../fuse/guestmount.pod:55
32219 msgid "For a libvirt guest called \"Guest\" you could do:"
32220 msgstr ""
32221
32222 # type: verbatim
32223 #. type: verbatim
32224 #: ../fuse/guestmount.pod:57
32225 #, no-wrap
32226 msgid ""
32227 " guestmount -d Guest -i --ro /mnt\n"
32228 "\n"
32229 msgstr ""
32230
32231 # type: textblock
32232 #. type: textblock
32233 #: ../fuse/guestmount.pod:59
32234 msgid ""
32235 "If you don't know what filesystems are contained in a guest or disk image, "
32236 "use L<virt-filesystems(1)> first:"
32237 msgstr ""
32238
32239 # type: verbatim
32240 #. type: verbatim
32241 #: ../fuse/guestmount.pod:62
32242 #, no-wrap
32243 msgid ""
32244 " virt-filesystems MyGuest\n"
32245 "\n"
32246 msgstr ""
32247
32248 # type: textblock
32249 #. type: textblock
32250 #: ../fuse/guestmount.pod:64
32251 msgid ""
32252 "If you want to trace the libguestfs calls but without excessive debugging "
32253 "information, we recommend:"
32254 msgstr ""
32255
32256 # type: verbatim
32257 #. type: verbatim
32258 #: ../fuse/guestmount.pod:67
32259 #, no-wrap
32260 msgid ""
32261 " guestmount [...] --trace /mnt\n"
32262 "\n"
32263 msgstr ""
32264
32265 # type: textblock
32266 #. type: textblock
32267 #: ../fuse/guestmount.pod:69
32268 msgid "If you want to debug the program, we recommend:"
32269 msgstr ""
32270
32271 # type: verbatim
32272 #. type: verbatim
32273 #: ../fuse/guestmount.pod:71
32274 #, no-wrap
32275 msgid ""
32276 " guestmount [...] --trace --verbose /mnt\n"
32277 "\n"
32278 msgstr ""
32279
32280 #. type: =head1
32281 #: ../fuse/guestmount.pod:73
32282 msgid "NOTES"
32283 msgstr ""
32284
32285 #. type: =head2
32286 #: ../fuse/guestmount.pod:75
32287 msgid "Other users cannot see the filesystem by default"
32288 msgstr ""
32289
32290 #. type: textblock
32291 #: ../fuse/guestmount.pod:77
32292 msgid ""
32293 "If you mount a filesystem as one user (eg. root), then other users will not "
32294 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
32295 "option when mounting:"
32296 msgstr ""
32297
32298 #. type: verbatim
32299 #: ../fuse/guestmount.pod:81
32300 #, no-wrap
32301 msgid ""
32302 " sudo guestmount [...] -o allow_other /mnt\n"
32303 "\n"
32304 msgstr ""
32305
32306 # type: =item
32307 #. type: =item
32308 #: ../fuse/guestmount.pod:87
32309 msgid "B<-a image> | B<--add image>"
32310 msgstr ""
32311
32312 # type: textblock
32313 #. type: textblock
32314 #: ../fuse/guestmount.pod:89
32315 msgid "Add a block device or virtual machine image."
32316 msgstr ""
32317
32318 # type: =item
32319 #. type: =item
32320 #: ../fuse/guestmount.pod:94
32321 msgid "B<-c URI> | B<--connect URI>"
32322 msgstr ""
32323
32324 # type: =item
32325 #. type: =item
32326 #: ../fuse/guestmount.pod:100
32327 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
32328 msgstr ""
32329
32330 # type: =item
32331 #. type: =item
32332 #: ../fuse/guestmount.pod:106
32333 msgid "B<--dir-cache-timeout N>"
32334 msgstr ""
32335
32336 # type: textblock
32337 #. type: textblock
32338 #: ../fuse/guestmount.pod:108
32339 msgid ""
32340 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
32341 "seconds.  The readdir cache [actually, there are several semi-independent "
32342 "caches] is populated after a readdir(2) call with the stat and extended "
32343 "attributes of the files in the directory, in anticipation that they will be "
32344 "requested soon after."
32345 msgstr ""
32346
32347 # type: textblock
32348 #. type: textblock
32349 #: ../fuse/guestmount.pod:114
32350 msgid ""
32351 "There is also a different attribute cache implemented by FUSE (see the FUSE "
32352 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
32353 "requests, only cache existing ones."
32354 msgstr ""
32355
32356 # type: =item
32357 #. type: =item
32358 #: ../fuse/guestmount.pod:125
32359 msgid "B<--format=raw|qcow2|..> | B<--format>"
32360 msgstr ""
32361
32362 # type: textblock
32363 #. type: textblock
32364 #: ../fuse/guestmount.pod:132
32365 msgid ""
32366 "If you have untrusted raw-format guest disk images, you should use this "
32367 "option to specify the disk format.  This avoids a possible security problem "
32368 "with malicious guests (CVE-2010-3851).  See also L<guestfs(3)/"
32369 "guestfs_add_drive_opts>."
32370 msgstr ""
32371
32372 # type: =item
32373 #. type: =item
32374 #: ../fuse/guestmount.pod:137
32375 msgid "B<--fuse-help>"
32376 msgstr ""
32377
32378 # type: textblock
32379 #. type: textblock
32380 #: ../fuse/guestmount.pod:139
32381 msgid "Display help on special FUSE options (see I<-o> below)."
32382 msgstr ""
32383
32384 # type: textblock
32385 #. type: textblock
32386 #: ../fuse/guestmount.pod:143
32387 msgid "Display brief help and exit."
32388 msgstr ""
32389
32390 # type: =item
32391 #. type: =item
32392 #: ../fuse/guestmount.pod:145
32393 msgid "B<-i> | B<--inspector>"
32394 msgstr ""
32395
32396 # type: textblock
32397 #. type: textblock
32398 #: ../fuse/guestmount.pod:165
32399 msgid ""
32400 "Mount the named partition or logical volume on the given mountpoint B<in the "
32401 "guest> (this has nothing to do with mountpoints in the host)."
32402 msgstr ""
32403
32404 # type: textblock
32405 #. type: textblock
32406 #: ../fuse/guestmount.pod:168
32407 msgid ""
32408 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
32409 "something on C</>."
32410 msgstr ""
32411
32412 # type: =item
32413 #. type: =item
32414 #: ../fuse/guestmount.pod:181
32415 msgid "B<-n> | B<--no-sync>"
32416 msgstr ""
32417
32418 # type: textblock
32419 #. type: textblock
32420 #: ../fuse/guestmount.pod:183
32421 msgid ""
32422 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
32423 "unmounted.  If you specify this option, then we don't attempt to sync the "
32424 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
32425 msgstr ""
32426
32427 # type: =item
32428 #. type: =item
32429 #: ../fuse/guestmount.pod:188
32430 msgid "B<-o option> | B<--option option>"
32431 msgstr ""
32432
32433 # type: textblock
32434 #. type: textblock
32435 #: ../fuse/guestmount.pod:190
32436 msgid "Pass extra options to FUSE."
32437 msgstr ""
32438
32439 # type: textblock
32440 #. type: textblock
32441 #: ../fuse/guestmount.pod:192
32442 msgid ""
32443 "To get a list of all the extra options supported by FUSE, use the command "
32444 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
32445 "of them are a good idea."
32446 msgstr ""
32447
32448 # type: verbatim
32449 #. type: verbatim
32450 #: ../fuse/guestmount.pod:196
32451 #, no-wrap
32452 msgid ""
32453 " guestmount --fuse-help\n"
32454 "\n"
32455 msgstr ""
32456
32457 # type: textblock
32458 #. type: textblock
32459 #: ../fuse/guestmount.pod:198
32460 msgid "Some potentially useful FUSE options:"
32461 msgstr ""
32462
32463 # type: =item
32464 #. type: =item
32465 #: ../fuse/guestmount.pod:202
32466 msgid "B<-o allow_other>"
32467 msgstr ""
32468
32469 # type: textblock
32470 #. type: textblock
32471 #: ../fuse/guestmount.pod:204
32472 msgid "Allow other users to see the filesystem."
32473 msgstr ""
32474
32475 # type: =item
32476 #. type: =item
32477 #: ../fuse/guestmount.pod:206
32478 msgid "B<-o attr_timeout=N>"
32479 msgstr ""
32480
32481 # type: textblock
32482 #. type: textblock
32483 #: ../fuse/guestmount.pod:208
32484 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
32485 msgstr ""
32486
32487 # type: =item
32488 #. type: =item
32489 #: ../fuse/guestmount.pod:210
32490 msgid "B<-o kernel_cache>"
32491 msgstr ""
32492
32493 # type: textblock
32494 #. type: textblock
32495 #: ../fuse/guestmount.pod:212
32496 msgid ""
32497 "Allow the kernel to cache files (reduces the number of reads that have to go "
32498 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
32499 "afford the extra memory usage."
32500 msgstr ""
32501
32502 # type: =item
32503 #. type: =item
32504 #: ../fuse/guestmount.pod:216
32505 msgid "B<-o uid=N> B<-o gid=N>"
32506 msgstr ""
32507
32508 # type: textblock
32509 #. type: textblock
32510 #: ../fuse/guestmount.pod:218
32511 msgid ""
32512 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
32513 "the chosen values."
32514 msgstr ""
32515
32516 # type: =item
32517 #. type: =item
32518 #: ../fuse/guestmount.pod:223
32519 msgid "B<-r> | B<--ro>"
32520 msgstr ""
32521
32522 # type: textblock
32523 #. type: textblock
32524 #: ../fuse/guestmount.pod:225
32525 msgid ""
32526 "Add devices and mount everything read-only.  Also disallow writes and make "
32527 "the disk appear read-only to FUSE."
32528 msgstr ""
32529
32530 # type: textblock
32531 #. type: textblock
32532 #: ../fuse/guestmount.pod:228
32533 msgid ""
32534 "This is highly recommended if you are not going to edit the guest disk.  If "
32535 "the guest is running and this option is I<not> supplied, then there is a "
32536 "strong risk of disk corruption in the guest.  We try to prevent this from "
32537 "happening, but it is not always possible."
32538 msgstr ""
32539
32540 # type: textblock
32541 #. type: textblock
32542 #: ../fuse/guestmount.pod:233
32543 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
32544 msgstr ""
32545
32546 # type: textblock
32547 #. type: textblock
32548 #: ../fuse/guestmount.pod:237
32549 msgid "Enable SELinux support for the guest."
32550 msgstr ""
32551
32552 # type: =item
32553 #. type: =item
32554 #: ../fuse/guestmount.pod:239
32555 msgid "B<-v> | B<--verbose>"
32556 msgstr ""
32557
32558 # type: textblock
32559 #. type: textblock
32560 #: ../fuse/guestmount.pod:241
32561 msgid "Enable verbose messages from underlying libguestfs."
32562 msgstr ""
32563
32564 # type: =item
32565 #. type: =item
32566 #: ../fuse/guestmount.pod:243
32567 msgid "B<-V> | B<--version>"
32568 msgstr ""
32569
32570 # type: textblock
32571 #. type: textblock
32572 #: ../fuse/guestmount.pod:245
32573 msgid "Display the program version and exit."
32574 msgstr ""
32575
32576 # type: =item
32577 #. type: =item
32578 #: ../fuse/guestmount.pod:247
32579 msgid "B<-w> | B<--rw>"
32580 msgstr ""
32581
32582 #. type: textblock
32583 #: ../fuse/guestmount.pod:252 ../fuse/guestmount.pod:273
32584 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
32585 msgstr ""
32586
32587 # type: =item
32588 #. type: =item
32589 #: ../fuse/guestmount.pod:254
32590 msgid "B<-x> | B<--trace>"
32591 msgstr ""
32592
32593 # type: textblock
32594 #. type: textblock
32595 #: ../fuse/guestmount.pod:256
32596 msgid "Trace libguestfs calls and entry into each FUSE function."
32597 msgstr ""
32598
32599 # type: textblock
32600 #. type: textblock
32601 #: ../fuse/guestmount.pod:258
32602 msgid "This also stops the daemon from forking into the background."
32603 msgstr ""
32604
32605 # type: textblock
32606 #. type: textblock
32607 #: ../fuse/guestmount.pod:279
32608 msgid ""
32609 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
32610 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, L<http://fuse.sf."
32611 "net/>."
32612 msgstr ""
32613
32614 # type: textblock
32615 #. type: textblock
32616 #: ../fuse/guestmount.pod:294
32617 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
32618 msgstr ""
32619
32620 # type: textblock
32621 #. type: textblock
32622 #: ../tools/virt-edit.pl:34
32623 msgid "virt-edit - Edit a file in a virtual machine"
32624 msgstr ""
32625
32626 # type: verbatim
32627 #. type: verbatim
32628 #: ../tools/virt-edit.pl:38
32629 #, no-wrap
32630 msgid ""
32631 " virt-edit [--options] domname file\n"
32632 "\n"
32633 msgstr ""
32634
32635 # type: verbatim
32636 #. type: verbatim
32637 #: ../tools/virt-edit.pl:40
32638 #, no-wrap
32639 msgid ""
32640 " virt-edit [--options] disk.img [disk.img ...] file\n"
32641 "\n"
32642 msgstr ""
32643
32644 # type: verbatim
32645 #. type: verbatim
32646 #: ../tools/virt-edit.pl:42
32647 #, no-wrap
32648 msgid ""
32649 " virt-edit [domname|disk.img] file -e 'expr'\n"
32650 "\n"
32651 msgstr ""
32652
32653 # type: textblock
32654 #. type: textblock
32655 #: ../tools/virt-edit.pl:46
32656 msgid ""
32657 "You must I<not> use C<virt-edit> on live virtual machines.  If you do this, "
32658 "you risk disk corruption in the VM.  C<virt-edit> tries to stop you from "
32659 "doing this, but doesn't catch all cases."
32660 msgstr ""
32661
32662 # type: textblock
32663 #. type: textblock
32664 #: ../tools/virt-edit.pl:52
32665 msgid ""
32666 "C<virt-edit> is a command line tool to edit C<file> where C<file> exists in "
32667 "the named virtual machine (or disk image)."
32668 msgstr ""
32669
32670 #. type: textblock
32671 #: ../tools/virt-edit.pl:55
32672 msgid "If you want to just view a file, use L<virt-cat(1)>."
32673 msgstr ""
32674
32675 #. type: textblock
32676 #: ../tools/virt-edit.pl:57
32677 msgid ""
32678 "For more complex cases you should look at the L<guestfish(1)> tool (see L</"
32679 "USING GUESTFISH> below)."
32680 msgstr ""
32681
32682 #. type: textblock
32683 #: ../tools/virt-edit.pl:60
32684 msgid ""
32685 "C<virt-edit> cannot be used to create a new file, nor to edit multiple "
32686 "files.  L<guestfish(1)> can do that and much more."
32687 msgstr ""
32688
32689 # type: textblock
32690 #. type: textblock
32691 #: ../tools/virt-edit.pl:65
32692 msgid "Edit the named files interactively:"
32693 msgstr ""
32694
32695 # type: verbatim
32696 #. type: verbatim
32697 #: ../tools/virt-edit.pl:67
32698 #, no-wrap
32699 msgid ""
32700 " virt-edit mydomain /boot/grub/grub.conf\n"
32701 "\n"
32702 msgstr ""
32703
32704 # type: verbatim
32705 #. type: verbatim
32706 #: ../tools/virt-edit.pl:69
32707 #, no-wrap
32708 msgid ""
32709 " virt-edit mydomain /etc/passwd\n"
32710 "\n"
32711 msgstr ""
32712
32713 #. type: textblock
32714 #: ../tools/virt-edit.pl:71
32715 msgid "For Windows guests, some Windows paths are understood:"
32716 msgstr ""
32717
32718 #. type: verbatim
32719 #: ../tools/virt-edit.pl:73
32720 #, no-wrap
32721 msgid ""
32722 " virt-edit mywindomain 'c:\\autoexec.bat'\n"
32723 "\n"
32724 msgstr ""
32725
32726 # type: textblock
32727 #. type: textblock
32728 #: ../tools/virt-edit.pl:75
32729 msgid ""
32730 "You can also edit files non-interactively (see L</NON-INTERACTIVE EDITING> "
32731 "below).  To change the init default level to 5:"
32732 msgstr ""
32733
32734 # type: verbatim
32735 #. type: verbatim
32736 #: ../tools/virt-edit.pl:79
32737 #, no-wrap
32738 msgid ""
32739 " virt-edit mydomain /etc/inittab -e 's/^id:.*/id:5:initdefault:/'\n"
32740 "\n"
32741 msgstr ""
32742
32743 # type: textblock
32744 #. type: textblock
32745 #: ../tools/virt-edit.pl:91 ../tools/virt-win-reg.pl:106
32746 #: ../tools/virt-list-filesystems.pl:63 ../tools/virt-tar.pl:113
32747 #: ../tools/virt-make-fs.pl:163 ../tools/virt-list-partitions.pl:64
32748 msgid "Display brief help."
32749 msgstr ""
32750
32751 # type: textblock
32752 #. type: textblock
32753 #: ../tools/virt-edit.pl:99 ../tools/virt-win-reg.pl:114
32754 #: ../tools/virt-list-filesystems.pl:71 ../tools/virt-tar.pl:121
32755 #: ../tools/virt-make-fs.pl:171 ../tools/virt-list-partitions.pl:72
32756 msgid "Display version number and exit."
32757 msgstr ""
32758
32759 # type: =item
32760 #. type: =item
32761 #: ../tools/virt-edit.pl:105
32762 msgid "B<--backup extension> | B<-b extension>"
32763 msgstr ""
32764
32765 # type: textblock
32766 #. type: textblock
32767 #: ../tools/virt-edit.pl:107
32768 msgid ""
32769 "Create a backup of the original file I<in the guest disk image>.  The backup "
32770 "has the original filename with C<extension> added."
32771 msgstr ""
32772
32773 # type: textblock
32774 #. type: textblock
32775 #: ../tools/virt-edit.pl:110
32776 msgid ""
32777 "Usually the first character of C<extension> would be a dot C<.> so you would "
32778 "write:"
32779 msgstr ""
32780
32781 # type: verbatim
32782 #. type: verbatim
32783 #: ../tools/virt-edit.pl:113
32784 #, no-wrap
32785 msgid ""
32786 " virt-edit -b .orig [etc]\n"
32787 "\n"
32788 msgstr ""
32789
32790 # type: textblock
32791 #. type: textblock
32792 #: ../tools/virt-edit.pl:115
32793 msgid "By default, no backup file is made."
32794 msgstr ""
32795
32796 # type: =item
32797 #. type: =item
32798 #: ../tools/virt-edit.pl:121 ../tools/virt-win-reg.pl:128
32799 #: ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127
32800 #: ../tools/virt-list-partitions.pl:78
32801 msgid "B<--connect URI> | B<-c URI>"
32802 msgstr ""
32803
32804 # type: textblock
32805 #. type: textblock
32806 #: ../tools/virt-edit.pl:123 ../tools/virt-win-reg.pl:130
32807 #: ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129
32808 #: ../tools/virt-list-partitions.pl:80
32809 msgid ""
32810 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
32811 "to the default libvirt hypervisor."
32812 msgstr ""
32813
32814 # type: textblock
32815 #. type: textblock
32816 #: ../tools/virt-edit.pl:126 ../tools/virt-win-reg.pl:133
32817 #: ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132
32818 #: ../tools/virt-list-partitions.pl:83
32819 msgid ""
32820 "If you specify guest block devices directly, then libvirt is not used at all."
32821 msgstr ""
32822
32823 # type: =item
32824 #. type: =item
32825 #: ../tools/virt-edit.pl:133 ../tools/virt-win-reg.pl:140
32826 #: ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139
32827 #: ../tools/virt-list-partitions.pl:90
32828 msgid "B<--format> raw"
32829 msgstr ""
32830
32831 # type: textblock
32832 #. type: textblock
32833 #: ../tools/virt-edit.pl:135 ../tools/virt-win-reg.pl:142
32834 #: ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141
32835 #: ../tools/virt-list-partitions.pl:92
32836 msgid ""
32837 "Specify the format of disk images given on the command line.  If this is "
32838 "omitted then the format is autodetected from the content of the disk image."
32839 msgstr ""
32840
32841 # type: textblock
32842 #. type: textblock
32843 #: ../tools/virt-edit.pl:139 ../tools/virt-win-reg.pl:146
32844 #: ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145
32845 #: ../tools/virt-list-partitions.pl:96
32846 msgid ""
32847 "If disk images are requested from libvirt, then this program asks libvirt "
32848 "for this information.  In this case, the value of the format parameter is "
32849 "ignored."
32850 msgstr ""
32851
32852 # type: textblock
32853 #. type: textblock
32854 #: ../tools/virt-edit.pl:143 ../tools/virt-win-reg.pl:150
32855 #: ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149
32856 #: ../tools/virt-list-partitions.pl:100
32857 msgid ""
32858 "If working with untrusted raw-format guest disk images, you should ensure "
32859 "the format is always specified."
32860 msgstr ""
32861
32862 # type: =item
32863 #. type: =item
32864 #: ../tools/virt-edit.pl:150
32865 msgid "B<--expr EXPR> | B<-e EXPR>"
32866 msgstr ""
32867
32868 # type: textblock
32869 #. type: textblock
32870 #: ../tools/virt-edit.pl:152
32871 msgid ""
32872 "Instead of launching the external editor, non-interactively apply the Perl "
32873 "expression C<EXPR> to each line in the file.  See L</NON-INTERACTIVE "
32874 "EDITING> below."
32875 msgstr ""
32876
32877 # type: textblock
32878 #. type: textblock
32879 #: ../tools/virt-edit.pl:156
32880 msgid ""
32881 "Be careful to properly quote the expression to prevent it from being altered "
32882 "by the shell."
32883 msgstr ""
32884
32885 # type: =head1
32886 #. type: =head1
32887 #: ../tools/virt-edit.pl:280
32888 msgid "NON-INTERACTIVE EDITING"
32889 msgstr ""
32890
32891 # type: textblock
32892 #. type: textblock
32893 #: ../tools/virt-edit.pl:282
32894 msgid ""
32895 "C<virt-edit> normally calls out to C<$EDITOR> (or vi) so the system "
32896 "administrator can interactively edit the file."
32897 msgstr ""
32898
32899 # type: textblock
32900 #. type: textblock
32901 #: ../tools/virt-edit.pl:285
32902 msgid ""
32903 "There are two ways also to use C<virt-edit> from scripts in order to make "
32904 "automated edits to files.  (Note that although you I<can> use C<virt-edit> "
32905 "like this, it's less error-prone to write scripts directly using the "
32906 "libguestfs API and Augeas for configuration file editing.)"
32907 msgstr ""
32908
32909 # type: textblock
32910 #. type: textblock
32911 #: ../tools/virt-edit.pl:291
32912 msgid ""
32913 "The first method is to temporarily set C<$EDITOR> to any script or program "
32914 "you want to run.  The script is invoked as C<$EDITOR tmpfile> and it should "
32915 "update C<tmpfile> in place however it likes."
32916 msgstr ""
32917
32918 #. type: textblock
32919 #: ../tools/virt-edit.pl:295
32920 msgid ""
32921 "The second method is to use the I<-e> parameter of C<virt-edit> to run a "
32922 "short Perl snippet in the style of L<sed(1)>.  For example to replace all "
32923 "instances of C<foo> with C<bar> in a file:"
32924 msgstr ""
32925
32926 # type: verbatim
32927 #. type: verbatim
32928 #: ../tools/virt-edit.pl:299
32929 #, no-wrap
32930 msgid ""
32931 " virt-edit domname filename -e 's/foo/bar/'\n"
32932 "\n"
32933 msgstr ""
32934
32935 # type: textblock
32936 #. type: textblock
32937 #: ../tools/virt-edit.pl:301
32938 msgid ""
32939 "The full power of Perl regular expressions can be used (see L<perlre(1)>).  "
32940 "For example to delete root's password you could do:"
32941 msgstr ""
32942
32943 # type: verbatim
32944 #. type: verbatim
32945 #: ../tools/virt-edit.pl:304
32946 #, no-wrap
32947 msgid ""
32948 " virt-edit domname /etc/passwd -e 's/^root:.*?:/root::/'\n"
32949 "\n"
32950 msgstr ""
32951
32952 # type: textblock
32953 #. type: textblock
32954 #: ../tools/virt-edit.pl:306
32955 msgid ""
32956 "What really happens is that the snippet is evaluated as a Perl expression "
32957 "for each line of the file.  The line, including the final C<\\n>, is passed "
32958 "in C<$_> and the expression should update C<$_> or leave it unchanged."
32959 msgstr ""
32960
32961 # type: textblock
32962 #. type: textblock
32963 #: ../tools/virt-edit.pl:311
32964 msgid ""
32965 "To delete a line, set C<$_> to the empty string.  For example, to delete the "
32966 "C<apache> user account from the password file you can do:"
32967 msgstr ""
32968
32969 # type: verbatim
32970 #. type: verbatim
32971 #: ../tools/virt-edit.pl:314
32972 #, no-wrap
32973 msgid ""
32974 " virt-edit mydomain /etc/passwd -e '$_ = \"\" if /^apache:/'\n"
32975 "\n"
32976 msgstr ""
32977
32978 # type: textblock
32979 #. type: textblock
32980 #: ../tools/virt-edit.pl:316
32981 msgid ""
32982 "To insert a line, prepend or append it to C<$_>.  However appending lines to "
32983 "the end of the file is rather difficult this way since there is no concept "
32984 "of \"last line of the file\" - your expression just doesn't get called "
32985 "again.  You might want to use the first method (setting C<$EDITOR>) if you "
32986 "want to do this."
32987 msgstr ""
32988
32989 # type: textblock
32990 #. type: textblock
32991 #: ../tools/virt-edit.pl:322
32992 msgid ""
32993 "The variable C<$lineno> contains the current line number.  As is "
32994 "traditional, the first line in the file is number C<1>."
32995 msgstr ""
32996
32997 # type: textblock
32998 #. type: textblock
32999 #: ../tools/virt-edit.pl:325
33000 msgid ""
33001 "The return value from the expression is ignored, but the expression may call "
33002 "C<die> in order to abort the whole program, leaving the original file "
33003 "untouched."
33004 msgstr ""
33005
33006 # type: textblock
33007 #. type: textblock
33008 #: ../tools/virt-edit.pl:329
33009 msgid ""
33010 "Remember when matching the end of a line that C<$_> may contain the final C<"
33011 "\\n>, or (for DOS files) C<\\r\\n>, or if the file does not end with a "
33012 "newline then neither of these.  Thus to match or substitute some text at the "
33013 "end of a line, use this regular expression:"
33014 msgstr ""
33015
33016 # type: verbatim
33017 #. type: verbatim
33018 #: ../tools/virt-edit.pl:334
33019 #, no-wrap
33020 msgid ""
33021 " /some text(\\r?\\n)?$/\n"
33022 "\n"
33023 msgstr ""
33024
33025 # type: textblock
33026 #. type: textblock
33027 #: ../tools/virt-edit.pl:336
33028 msgid ""
33029 "Alternately, use the perl C<chomp> function, being careful not to chomp C<"
33030 "$_> itself (since that would remove all newlines from the file):"
33031 msgstr ""
33032
33033 # type: verbatim
33034 #. type: verbatim
33035 #: ../tools/virt-edit.pl:340
33036 #, no-wrap
33037 msgid ""
33038 " my $m = $_; chomp $m; $m =~ /some text$/\n"
33039 "\n"
33040 msgstr ""
33041
33042 #. type: textblock
33043 #: ../tools/virt-edit.pl:344
33044 msgid ""
33045 "C<virt-edit> has a limited ability to understand Windows drive letters and "
33046 "paths (eg. C<E:\\foo\\bar.txt>)."
33047 msgstr ""
33048
33049 #. type: textblock
33050 #: ../tools/virt-edit.pl:347
33051 msgid "If and only if the guest is running Windows then:"
33052 msgstr ""
33053
33054 #. type: textblock
33055 #: ../tools/virt-edit.pl:353
33056 msgid ""
33057 "Drive letter prefixes like C<C:> are resolved against the Windows Registry "
33058 "to the correct filesystem."
33059 msgstr ""
33060
33061 #. type: textblock
33062 #: ../tools/virt-edit.pl:358
33063 msgid ""
33064 "Any backslash (C<\\>) characters in the path are replaced with forward "
33065 "slashes so that libguestfs can process it."
33066 msgstr ""
33067
33068 #. type: textblock
33069 #: ../tools/virt-edit.pl:363
33070 msgid ""
33071 "The path is resolved case insensitively to locate the file that should be "
33072 "edited."
33073 msgstr ""
33074
33075 #. type: textblock
33076 #: ../tools/virt-edit.pl:368
33077 msgid "There are some known shortcomings:"
33078 msgstr ""
33079
33080 #. type: textblock
33081 #: ../tools/virt-edit.pl:374
33082 msgid "Some NTFS symbolic links may not be followed correctly."
33083 msgstr ""
33084
33085 #. type: textblock
33086 #: ../tools/virt-edit.pl:378
33087 msgid "NTFS junction points that cross filesystems are not followed."
33088 msgstr ""
33089
33090 #. type: =head1
33091 #: ../tools/virt-edit.pl:435
33092 msgid "USING GUESTFISH"
33093 msgstr ""
33094
33095 #. type: textblock
33096 #: ../tools/virt-edit.pl:437
33097 msgid ""
33098 "L<guestfish(1)> is a more powerful, lower level tool which you can use when "
33099 "C<virt-edit> doesn't work."
33100 msgstr ""
33101
33102 #. type: textblock
33103 #: ../tools/virt-edit.pl:440
33104 msgid "Using C<virt-edit> is approximately equivalent to doing:"
33105 msgstr ""
33106
33107 #. type: verbatim
33108 #: ../tools/virt-edit.pl:442
33109 #, no-wrap
33110 msgid ""
33111 " guestfish --rw -i -d domname edit /file\n"
33112 "\n"
33113 msgstr ""
33114
33115 #. type: textblock
33116 #: ../tools/virt-edit.pl:444
33117 msgid ""
33118 "where C<domname> is the name of the libvirt guest, and C</file> is the full "
33119 "path to the file."
33120 msgstr ""
33121
33122 #. type: textblock
33123 #: ../tools/virt-edit.pl:447
33124 msgid ""
33125 "The command above uses libguestfs's guest inspection feature and so does not "
33126 "work on guests that libguestfs cannot inspect, or on things like arbitrary "
33127 "disk images that don't contain guests.  To edit a file on a disk image "
33128 "directly, use:"
33129 msgstr ""
33130
33131 #. type: verbatim
33132 #: ../tools/virt-edit.pl:452
33133 #, no-wrap
33134 msgid ""
33135 " guestfish --rw -a disk.img -m /dev/sda1 edit /file\n"
33136 "\n"
33137 msgstr ""
33138
33139 #. type: textblock
33140 #: ../tools/virt-edit.pl:454
33141 msgid ""
33142 "where C<disk.img> is the disk image, C</dev/sda1> is the filesystem within "
33143 "the disk image to edit, and C</file> is the full path to the file."
33144 msgstr ""
33145
33146 #. type: textblock
33147 #: ../tools/virt-edit.pl:458
33148 msgid ""
33149 "C<virt-edit> cannot create new files.  Use the guestfish commands C<touch>, "
33150 "C<write> or C<upload> instead:"
33151 msgstr ""
33152
33153 #. type: verbatim
33154 #: ../tools/virt-edit.pl:461
33155 #, no-wrap
33156 msgid ""
33157 " guestfish --rw -i -d domname touch /newfile\n"
33158 "\n"
33159 msgstr ""
33160
33161 #. type: verbatim
33162 #: ../tools/virt-edit.pl:463
33163 #, no-wrap
33164 msgid ""
33165 " guestfish --rw -i -d domname write /newfile \"new content\"\n"
33166 "\n"
33167 msgstr ""
33168
33169 #. type: verbatim
33170 #: ../tools/virt-edit.pl:465
33171 #, no-wrap
33172 msgid ""
33173 " guestfish --rw -i -d domname upload localfile /newfile\n"
33174 "\n"
33175 msgstr ""
33176
33177 #. type: textblock
33178 #: ../tools/virt-edit.pl:467
33179 msgid ""
33180 "C<virt-edit> cannot edit multiple files, but guestfish can do it like this:"
33181 msgstr ""
33182
33183 #. type: verbatim
33184 #: ../tools/virt-edit.pl:470
33185 #, no-wrap
33186 msgid ""
33187 " guestfish --rw -i -d domname edit /file1 : edit /file2\n"
33188 "\n"
33189 msgstr ""
33190
33191 # type: =item
33192 #. type: =item
33193 #: ../tools/virt-edit.pl:480
33194 msgid "C<EDITOR>"
33195 msgstr ""
33196
33197 # type: textblock
33198 #. type: textblock
33199 #: ../tools/virt-edit.pl:482
33200 msgid ""
33201 "If set, this string is used as the editor.  It may contain arguments, eg. C<"
33202 "\"emacs -nw\">"
33203 msgstr ""
33204
33205 # type: textblock
33206 #. type: textblock
33207 #: ../tools/virt-edit.pl:485
33208 msgid "If not set, C<vi> is used."
33209 msgstr ""
33210
33211 # type: =head2
33212 #. type: =head1
33213 #: ../tools/virt-edit.pl:489 ../tools/virt-win-reg.pl:559
33214 #: ../tools/virt-list-filesystems.pl:182 ../tools/virt-tar.pl:279
33215 #: ../tools/virt-make-fs.pl:532 ../tools/virt-list-partitions.pl:250
33216 msgid "SHELL QUOTING"
33217 msgstr ""
33218
33219 # type: textblock
33220 #. type: textblock
33221 #: ../tools/virt-edit.pl:491 ../tools/virt-win-reg.pl:567
33222 #: ../tools/virt-list-filesystems.pl:184 ../tools/virt-tar.pl:281
33223 #: ../tools/virt-make-fs.pl:534 ../tools/virt-list-partitions.pl:252
33224 msgid ""
33225 "Libvirt guest names can contain arbitrary characters, some of which have "
33226 "meaning to the shell such as C<#> and space.  You may need to quote or "
33227 "escape these characters on the command line.  See the shell manual page L<sh"
33228 "(1)> for details."
33229 msgstr ""
33230
33231 #. type: textblock
33232 #: ../tools/virt-edit.pl:498
33233 msgid ""
33234 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-copy-in(1)>, L<virt-"
33235 "tar-in(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
33236 "L<http://libguestfs.org/>, L<perl(1)>, L<perlre(1)>."
33237 msgstr ""
33238
33239 # type: =head1
33240 #. type: =head1
33241 #: ../tools/virt-edit.pl:510 ../tools/virt-win-reg.pl:598
33242 #: ../tools/virt-list-filesystems.pl:202 ../tools/virt-tar.pl:301
33243 #: ../tools/virt-make-fs.pl:564 ../tools/virt-list-partitions.pl:269
33244 msgid "AUTHOR"
33245 msgstr ""
33246
33247 # type: textblock
33248 #. type: textblock
33249 #: ../tools/virt-edit.pl:512 ../tools/virt-win-reg.pl:600
33250 #: ../tools/virt-list-filesystems.pl:204 ../tools/virt-tar.pl:303
33251 #: ../tools/virt-make-fs.pl:566 ../tools/virt-list-partitions.pl:271
33252 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
33253 msgstr ""
33254
33255 #. type: textblock
33256 #: ../tools/virt-edit.pl:516
33257 msgid "Copyright (C) 2009-2011 Red Hat Inc."
33258 msgstr ""
33259
33260 # type: textblock
33261 #. type: textblock
33262 #: ../tools/virt-win-reg.pl:37
33263 msgid ""
33264 "virt-win-reg - Export and merge Windows Registry entries from a Windows guest"
33265 msgstr ""
33266
33267 # type: verbatim
33268 #. type: verbatim
33269 #: ../tools/virt-win-reg.pl:41
33270 #, no-wrap
33271 msgid ""
33272 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
33273 "\n"
33274 msgstr ""
33275
33276 # type: verbatim
33277 #. type: verbatim
33278 #: ../tools/virt-win-reg.pl:43
33279 #, no-wrap
33280 msgid ""
33281 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
33282 "\n"
33283 msgstr ""
33284
33285 # type: verbatim
33286 #. type: verbatim
33287 #: ../tools/virt-win-reg.pl:45
33288 #, no-wrap
33289 msgid ""
33290 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
33291 "\n"
33292 msgstr ""
33293
33294 # type: verbatim
33295 #. type: verbatim
33296 #: ../tools/virt-win-reg.pl:47
33297 #, no-wrap
33298 msgid ""
33299 " virt-win-reg --merge domname [input.reg ...]\n"
33300 "\n"
33301 msgstr ""
33302
33303 # type: verbatim
33304 #. type: verbatim
33305 #: ../tools/virt-win-reg.pl:49
33306 #, no-wrap
33307 msgid ""
33308 " virt-win-reg [--options] disk.img ... # instead of domname\n"
33309 "\n"
33310 msgstr ""
33311
33312 #. type: textblock
33313 #: ../tools/virt-win-reg.pl:53
33314 msgid ""
33315 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
33316 "virtual machines.  If you do this, you I<will> get irreversible disk "
33317 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
33318 "but doesn't catch all cases."
33319 msgstr ""
33320
33321 #. type: textblock
33322 #: ../tools/virt-win-reg.pl:58
33323 msgid ""
33324 "Modifying the Windows Registry is an inherently risky operation.  The format "
33325 "is deliberately obscure and undocumented, and Registry changes can leave the "
33326 "system unbootable.  Therefore when using the I<--merge> option, make sure "
33327 "you have a reliable backup first."
33328 msgstr ""
33329
33330 # type: textblock
33331 #. type: textblock
33332 #: ../tools/virt-win-reg.pl:65
33333 msgid ""
33334 "This program can export and merge Windows Registry entries from a Windows "
33335 "guest."
33336 msgstr ""
33337
33338 # type: textblock
33339 #. type: textblock
33340 #: ../tools/virt-win-reg.pl:68
33341 msgid ""
33342 "The first parameter is the libvirt guest name or the raw disk image of a "
33343 "Windows guest."
33344 msgstr ""
33345
33346 #. type: textblock
33347 #: ../tools/virt-win-reg.pl:71
33348 msgid ""
33349 "If I<--merge> is I<not> specified, then the chosen registry key is displayed/"
33350 "exported (recursively).  For example:"
33351 msgstr ""
33352
33353 # type: verbatim
33354 #. type: verbatim
33355 #: ../tools/virt-win-reg.pl:74
33356 #, no-wrap
33357 msgid ""
33358 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
33359 "\n"
33360 msgstr ""
33361
33362 # type: textblock
33363 #. type: textblock
33364 #: ../tools/virt-win-reg.pl:76
33365 msgid ""
33366 "You can also display single values from within registry keys, for example:"
33367 msgstr ""
33368
33369 # type: verbatim
33370 #. type: verbatim
33371 #: ../tools/virt-win-reg.pl:79
33372 #, no-wrap
33373 msgid ""
33374 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
33375 " $ virt-win-reg Windows7 $cvkey ProductName\n"
33376 " Windows 7 Enterprise\n"
33377 "\n"
33378 msgstr ""
33379
33380 #. type: textblock
33381 #: ../tools/virt-win-reg.pl:83
33382 msgid ""
33383 "With I<--merge>, you can merge a textual regedit file into the Windows "
33384 "Registry:"
33385 msgstr ""
33386
33387 # type: verbatim
33388 #. type: verbatim
33389 #: ../tools/virt-win-reg.pl:86
33390 #, no-wrap
33391 msgid ""
33392 " $ virt-win-reg --merge Windows7 changes.reg\n"
33393 "\n"
33394 msgstr ""
33395
33396 # type: =head2
33397 #. type: =head1
33398 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
33399 msgid "NOTE"
33400 msgstr ""
33401
33402 # type: textblock
33403 #. type: textblock
33404 #: ../tools/virt-win-reg.pl:90
33405 msgid ""
33406 "This program is only meant for simple access to the registry.  If you want "
33407 "to do complicated things with the registry, we suggest you download the "
33408 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
33409 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
33410 "L<hivexregedit(1)>."
33411 msgstr ""
33412
33413 # type: =item
33414 #. type: =item
33415 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
33416 msgid "B<--debug>"
33417 msgstr ""
33418
33419 # type: textblock
33420 #. type: textblock
33421 #: ../tools/virt-win-reg.pl:122
33422 msgid "Enable debugging messages."
33423 msgstr ""
33424
33425 # type: =item
33426 #. type: =item
33427 #: ../tools/virt-win-reg.pl:157
33428 msgid "B<--merge>"
33429 msgstr ""
33430
33431 # type: textblock
33432 #. type: textblock
33433 #: ../tools/virt-win-reg.pl:159
33434 msgid ""
33435 "In merge mode, this merges a textual regedit file into the Windows Registry "
33436 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
33437 "displays or exports Registry entries instead."
33438 msgstr ""
33439
33440 #. type: textblock
33441 #: ../tools/virt-win-reg.pl:163
33442 msgid ""
33443 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
33444 "result in disk corruption.  However exporting (without this flag)  is always "
33445 "safe."
33446 msgstr ""
33447
33448 # type: =item
33449 #. type: =item
33450 #: ../tools/virt-win-reg.pl:171
33451 msgid "B<--encoding> UTF-16LE|ASCII"
33452 msgstr ""
33453
33454 # type: textblock
33455 #. type: textblock
33456 #: ../tools/virt-win-reg.pl:173
33457 msgid ""
33458 "When merging (only), you may need to specify the encoding for strings to be "
33459 "used in the hive file.  This is explained in detail in L<Win::Hivex::Regedit"
33460 "(3)/ENCODING STRINGS>."
33461 msgstr ""
33462
33463 # type: textblock
33464 #. type: textblock
33465 #: ../tools/virt-win-reg.pl:177
33466 msgid ""
33467 "The default is to use UTF-16LE, which should work with recent versions of "
33468 "Windows."
33469 msgstr ""
33470
33471 # type: =head2
33472 #. type: =head1
33473 #: ../tools/virt-win-reg.pl:402
33474 msgid "SUPPORTED SYSTEMS"
33475 msgstr ""
33476
33477 # type: textblock
33478 #. type: textblock
33479 #: ../tools/virt-win-reg.pl:404
33480 msgid ""
33481 "The program currently supports Windows NT-derived guests starting with "
33482 "Windows XP through to at least Windows 7."
33483 msgstr ""
33484
33485 # type: textblock
33486 #. type: textblock
33487 #: ../tools/virt-win-reg.pl:407
33488 msgid ""
33489 "Registry support is done for C<HKEY_LOCAL_MACHINE\\SAM>, C<HKEY_LOCAL_MACHINE"
33490 "\\SECURITY>, C<HKEY_LOCAL_MACHINE\\SOFTWARE>, C<HKEY_LOCAL_MACHINE\\SYSTEM> "
33491 "and C<HKEY_USERS\\.DEFAULT>."
33492 msgstr ""
33493
33494 # type: textblock
33495 #. type: textblock
33496 #: ../tools/virt-win-reg.pl:411
33497 msgid ""
33498 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
33499 "C<HKEY_USERS>."
33500 msgstr ""
33501
33502 # type: textblock
33503 #. type: textblock
33504 #: ../tools/virt-win-reg.pl:414
33505 msgid ""
33506 "C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are B<not> supported at this "
33507 "time."
33508 msgstr ""
33509
33510 # type: =head2
33511 #. type: =head1
33512 #: ../tools/virt-win-reg.pl:417
33513 msgid "ENCODING"
33514 msgstr ""
33515
33516 # type: textblock
33517 #. type: textblock
33518 #: ../tools/virt-win-reg.pl:419
33519 msgid ""
33520 "C<virt-win-reg> expects that regedit files have already been reencoded in "
33521 "the local encoding.  Usually on Linux hosts, this means UTF-8 with Unix-"
33522 "style line endings.  Since Windows regedit files are often in UTF-16LE with "
33523 "Windows-style line endings, you may need to reencode the whole file before "
33524 "or after processing."
33525 msgstr ""
33526
33527 #. type: textblock
33528 #: ../tools/virt-win-reg.pl:425
33529 msgid ""
33530 "To reencode a file from Windows format to Linux (before processing it with "
33531 "the I<--merge> option), you would do something like this:"
33532 msgstr ""
33533
33534 # type: verbatim
33535 #. type: verbatim
33536 #: ../tools/virt-win-reg.pl:428
33537 #, no-wrap
33538 msgid ""
33539 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
33540 "\n"
33541 msgstr ""
33542
33543 # type: textblock
33544 #. type: textblock
33545 #: ../tools/virt-win-reg.pl:430
33546 msgid ""
33547 "To go in the opposite direction, after exporting and before sending the file "
33548 "to a Windows user, do something like this:"
33549 msgstr ""
33550
33551 # type: verbatim
33552 #. type: verbatim
33553 #: ../tools/virt-win-reg.pl:433
33554 #, no-wrap
33555 msgid ""
33556 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
33557 "\n"
33558 msgstr ""
33559
33560 # type: textblock
33561 #. type: textblock
33562 #: ../tools/virt-win-reg.pl:435
33563 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
33564 msgstr ""
33565
33566 # type: textblock
33567 #. type: textblock
33568 #: ../tools/virt-win-reg.pl:437
33569 msgid ""
33570 "If you are unsure about the current encoding, use the L<file(1)> command.  "
33571 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
33572 "style (CRLF) line endings, like this:"
33573 msgstr ""
33574
33575 # type: verbatim
33576 #. type: verbatim
33577 #: ../tools/virt-win-reg.pl:441
33578 #, no-wrap
33579 msgid ""
33580 " $ file software.reg\n"
33581 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
33582 " with CRLF line terminators\n"
33583 "\n"
33584 msgstr ""
33585
33586 #. type: textblock
33587 #: ../tools/virt-win-reg.pl:445
33588 msgid "This file would need conversion before you could I<--merge> it."
33589 msgstr ""
33590
33591 # type: =head2
33592 #. type: =head1
33593 #: ../tools/virt-win-reg.pl:447
33594 msgid "CurrentControlSet etc."
33595 msgstr ""
33596
33597 # type: textblock
33598 #. type: textblock
33599 #: ../tools/virt-win-reg.pl:449
33600 msgid ""
33601 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
33602 "Registry at the level of the hive file, and therefore you cannot modify "
33603 "these."
33604 msgstr ""
33605
33606 # type: textblock
33607 #. type: textblock
33608 #: ../tools/virt-win-reg.pl:453
33609 msgid ""
33610 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
33611 "circumstances it might refer to another control set.  The way to find out is "
33612 "to look at the C<HKLM\\SYSTEM\\Select> key:"
33613 msgstr ""
33614
33615 # type: verbatim
33616 #. type: verbatim
33617 #: ../tools/virt-win-reg.pl:457
33618 #, no-wrap
33619 msgid ""
33620 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
33621 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
33622 " \"Current\"=dword:00000001\n"
33623 " \"Default\"=dword:00000001\n"
33624 " \"Failed\"=dword:00000000\n"
33625 " \"LastKnownGood\"=dword:00000002\n"
33626 "\n"
33627 msgstr ""
33628
33629 # type: textblock
33630 #. type: textblock
33631 #: ../tools/virt-win-reg.pl:464
33632 msgid "\"Current\" is the one which Windows will choose when it boots."
33633 msgstr ""
33634
33635 # type: textblock
33636 #. type: textblock
33637 #: ../tools/virt-win-reg.pl:466
33638 msgid ""
33639 "Similarly, other C<Current...> keys in the path may need to be replaced."
33640 msgstr ""
33641
33642 # type: =head1
33643 #. type: =head1
33644 #: ../tools/virt-win-reg.pl:469
33645 msgid "WINDOWS TIPS"
33646 msgstr ""
33647
33648 # type: textblock
33649 #. type: textblock
33650 #: ../tools/virt-win-reg.pl:471
33651 msgid ""
33652 "Note that some of these tips modify the guest disk image.  The guest I<must> "
33653 "be shut off, else you will get disk corruption."
33654 msgstr ""
33655
33656 # type: =head2
33657 #. type: =head2
33658 #: ../tools/virt-win-reg.pl:474
33659 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
33660 msgstr ""
33661
33662 # type: textblock
33663 #. type: textblock
33664 #: ../tools/virt-win-reg.pl:476
33665 msgid ""
33666 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
33667 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
33668 "is uploaded into C<C:\\>:"
33669 msgstr ""
33670
33671 # type: verbatim
33672 #. type: verbatim
33673 #: ../tools/virt-win-reg.pl:480
33674 #, no-wrap
33675 msgid ""
33676 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
33677 "\n"
33678 msgstr ""
33679
33680 # type: textblock
33681 #. type: textblock
33682 #: ../tools/virt-win-reg.pl:482
33683 msgid "Prepare a regedit file containing the registry change:"
33684 msgstr ""
33685
33686 # type: verbatim
33687 #. type: verbatim
33688 #: ../tools/virt-win-reg.pl:484
33689 #, no-wrap
33690 msgid ""
33691 " cat > test.reg <<'EOF'\n"
33692 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
33693 " \"Test\"=\"c:\\\\test.bat\"\n"
33694 " EOF\n"
33695 "\n"
33696 msgstr ""
33697
33698 # type: textblock
33699 #. type: textblock
33700 #: ../tools/virt-win-reg.pl:489
33701 msgid ""
33702 "In this example we use the key C<RunOnce> which means that the script will "
33703 "run precisely once when the first user logs in.  If you want it to run every "
33704 "time a user logs in, replace C<RunOnce> with C<Run>."
33705 msgstr ""
33706
33707 # type: textblock
33708 #. type: textblock
33709 #: ../tools/virt-win-reg.pl:493
33710 msgid "Now update the registry:"
33711 msgstr ""
33712
33713 # type: verbatim
33714 #. type: verbatim
33715 #: ../tools/virt-win-reg.pl:495
33716 #, no-wrap
33717 msgid ""
33718 " virt-win-reg --merge WindowsGuest test.reg\n"
33719 "\n"
33720 msgstr ""
33721
33722 # type: =head2
33723 #. type: =head2
33724 #: ../tools/virt-win-reg.pl:497
33725 msgid "INSTALLING A SERVICE"
33726 msgstr ""
33727
33728 # type: textblock
33729 #. type: textblock
33730 #: ../tools/virt-win-reg.pl:499
33731 msgid ""
33732 "This section assumes you are familiar with Windows services, and you either "
33733 "have a program which handles the Windows Service Control Protocol directly "
33734 "or you want to run any program using a service wrapper like SrvAny or the "
33735 "free RHSrvAny."
33736 msgstr ""
33737
33738 # type: textblock
33739 #. type: textblock
33740 #: ../tools/virt-win-reg.pl:504
33741 msgid ""
33742 "First upload the program and optionally the service wrapper.  In this case "
33743 "the test program is called C<test.exe> and we are using the RHSrvAny wrapper:"
33744 msgstr ""
33745
33746 # type: verbatim
33747 #. type: verbatim
33748 #: ../tools/virt-win-reg.pl:508
33749 #, no-wrap
33750 msgid ""
33751 " guestfish -i -d WindowsGuest <<EOF\n"
33752 "   upload rhsrvany.exe /rhsrvany.exe\n"
33753 "   upload test.exe /test.exe\n"
33754 " EOF\n"
33755 "\n"
33756 msgstr ""
33757
33758 # type: textblock
33759 #. type: textblock
33760 #: ../tools/virt-win-reg.pl:513
33761 msgid ""
33762 "Prepare a regedit file containing the registry changes.  In this example, "
33763 "the first registry change is needed for the service itself or the service "
33764 "wrapper (if used).  The second registry change is only needed because I am "
33765 "using the RHSrvAny service wrapper."
33766 msgstr ""
33767
33768 # type: verbatim
33769 #. type: verbatim
33770 #: ../tools/virt-win-reg.pl:518
33771 #, no-wrap
33772 msgid ""
33773 " cat > service.reg <<'EOF'\n"
33774 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
33775 " \"Type\"=dword:00000010\n"
33776 " \"Start\"=dword:00000002\n"
33777 " \"ErrorControl\"=dword:00000001\n"
33778 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
33779 " \"DisplayName\"=\"RHSrvAny\"\n"
33780 " \"ObjectName\"=\"NetworkService\"\n"
33781 " \n"
33782 msgstr ""
33783
33784 # type: verbatim
33785 #. type: verbatim
33786 #: ../tools/virt-win-reg.pl:527
33787 #, no-wrap
33788 msgid ""
33789 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
33790 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
33791 " \"PWD\"=\"c:\\\\Temp\"\n"
33792 " EOF\n"
33793 "\n"
33794 msgstr ""
33795
33796 # type: textblock
33797 #. type: textblock
33798 #: ../tools/virt-win-reg.pl:538
33799 msgid ""
33800 "For use of C<ControlSet001> see the section above in this manual page.  You "
33801 "may need to adjust this according to the control set that is in use by the "
33802 "guest."
33803 msgstr ""
33804
33805 # type: textblock
33806 #. type: textblock
33807 #: ../tools/virt-win-reg.pl:544
33808 msgid ""
33809 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
33810 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
33811 "privileged account."
33812 msgstr ""
33813
33814 # type: textblock
33815 #. type: textblock
33816 #: ../tools/virt-win-reg.pl:550
33817 msgid ""
33818 "For the meaning of the magic numbers, see this Microsoft KB article: "
33819 "L<http://support.microsoft.com/kb/103000>."
33820 msgstr ""
33821
33822 # type: textblock
33823 #. type: textblock
33824 #: ../tools/virt-win-reg.pl:555
33825 msgid "Update the registry:"
33826 msgstr ""
33827
33828 # type: verbatim
33829 #. type: verbatim
33830 #: ../tools/virt-win-reg.pl:557
33831 #, no-wrap
33832 msgid ""
33833 " virt-win-reg --merge WindowsGuest service.reg\n"
33834 "\n"
33835 msgstr ""
33836
33837 # type: textblock
33838 #. type: textblock
33839 #: ../tools/virt-win-reg.pl:561
33840 msgid ""
33841 "Be careful when passing parameters containing C<\\> (backslash) in the "
33842 "shell.  Usually you will have to use 'single quotes' or double backslashes "
33843 "(but not both) to protect them from the shell."
33844 msgstr ""
33845
33846 # type: textblock
33847 #. type: textblock
33848 #: ../tools/virt-win-reg.pl:565
33849 msgid "Paths and value names are case-insensitive."
33850 msgstr ""
33851
33852 # type: textblock
33853 #. type: textblock
33854 #: ../tools/virt-win-reg.pl:574
33855 msgid ""
33856 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, L<guestfish(1)"
33857 ">, L<virt-cat(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Win::Hivex"
33858 "(3)>, L<Win::Hivex::Regedit(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
33859 msgstr ""
33860
33861 # type: textblock
33862 #. type: textblock
33863 #: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:555
33864 msgid ""
33865 "When reporting bugs, please enable debugging and capture the I<complete> "
33866 "output:"
33867 msgstr ""
33868
33869 # type: verbatim
33870 #. type: verbatim
33871 #: ../tools/virt-win-reg.pl:592
33872 #, no-wrap
33873 msgid ""
33874 " export LIBGUESTFS_DEBUG=1\n"
33875 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
33876 "\n"
33877 msgstr ""
33878
33879 # type: textblock
33880 #. type: textblock
33881 #: ../tools/virt-win-reg.pl:595
33882 msgid ""
33883 "Attach /tmp/virt-win-reg.log to a new bug report at L<https://bugzilla."
33884 "redhat.com/>"
33885 msgstr ""
33886
33887 # type: textblock
33888 #. type: textblock
33889 #: ../tools/virt-win-reg.pl:604 ../tools/virt-make-fs.pl:570
33890 msgid "Copyright (C) 2010 Red Hat Inc."
33891 msgstr ""
33892
33893 # type: textblock
33894 #. type: textblock
33895 #: ../tools/virt-list-filesystems.pl:32
33896 msgid ""
33897 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
33898 msgstr ""
33899
33900 # type: verbatim
33901 #. type: verbatim
33902 #: ../tools/virt-list-filesystems.pl:36
33903 #, no-wrap
33904 msgid ""
33905 " virt-list-filesystems [--options] domname\n"
33906 "\n"
33907 msgstr ""
33908
33909 # type: verbatim
33910 #. type: verbatim
33911 #: ../tools/virt-list-filesystems.pl:38
33912 #, no-wrap
33913 msgid ""
33914 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
33915 "\n"
33916 msgstr ""
33917
33918 # type: textblock
33919 #. type: textblock
33920 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
33921 msgid ""
33922 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
33923 "replacement."
33924 msgstr ""
33925
33926 # type: textblock
33927 #. type: textblock
33928 #: ../tools/virt-list-filesystems.pl:45
33929 msgid ""
33930 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
33931 "are contained in a virtual machine or disk image."
33932 msgstr ""
33933
33934 # type: textblock
33935 #. type: textblock
33936 #: ../tools/virt-list-filesystems.pl:49
33937 msgid ""
33938 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
33939 "functionality.  For more complex cases you should look at the L<guestfish(1)"
33940 "> tool."
33941 msgstr ""
33942
33943 # type: =item
33944 #. type: =item
33945 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
33946 msgid "B<-l> | B<--long>"
33947 msgstr ""
33948
33949 # type: textblock
33950 #. type: textblock
33951 #: ../tools/virt-list-filesystems.pl:108
33952 msgid ""
33953 "With this option, C<virt-list-filesystems> displays the type of each "
33954 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
33955 msgstr ""
33956
33957 # type: =item
33958 #. type: =item
33959 #: ../tools/virt-list-filesystems.pl:115
33960 msgid "B<-a> | B<--all>"
33961 msgstr ""
33962
33963 # type: textblock
33964 #. type: textblock
33965 #: ../tools/virt-list-filesystems.pl:117
33966 msgid ""
33967 "Normally we only show mountable filesystems.  If this option is given then "
33968 "swap devices are shown too."
33969 msgstr ""
33970
33971 # type: textblock
33972 #. type: textblock
33973 #: ../tools/virt-list-filesystems.pl:191
33974 msgid ""
33975 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
33976 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, L<Sys::"
33977 "Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
33978 msgstr ""
33979
33980 # type: textblock
33981 #. type: textblock
33982 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
33983 msgid "Copyright (C) 2009 Red Hat Inc."
33984 msgstr ""
33985
33986 # type: textblock
33987 #. type: textblock
33988 #: ../tools/virt-tar.pl:33
33989 msgid "virt-tar - Extract or upload files to a virtual machine"
33990 msgstr ""
33991
33992 # type: verbatim
33993 #. type: verbatim
33994 #: ../tools/virt-tar.pl:37
33995 #, no-wrap
33996 msgid ""
33997 " virt-tar [--options] -x domname directory tarball\n"
33998 "\n"
33999 msgstr ""
34000
34001 # type: verbatim
34002 #. type: verbatim
34003 #: ../tools/virt-tar.pl:39
34004 #, no-wrap
34005 msgid ""
34006 " virt-tar [--options] -u domname tarball directory\n"
34007 "\n"
34008 msgstr ""
34009
34010 # type: verbatim
34011 #. type: verbatim
34012 #: ../tools/virt-tar.pl:41
34013 #, no-wrap
34014 msgid ""
34015 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
34016 "\n"
34017 msgstr ""
34018
34019 # type: verbatim
34020 #. type: verbatim
34021 #: ../tools/virt-tar.pl:43
34022 #, no-wrap
34023 msgid ""
34024 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
34025 "\n"
34026 msgstr ""
34027
34028 #. type: textblock
34029 #: ../tools/virt-tar.pl:47
34030 msgid ""
34031 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
34032 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
34033 msgstr ""
34034
34035 # type: textblock
34036 #. type: textblock
34037 #: ../tools/virt-tar.pl:52
34038 msgid "Download C</home> from the VM into a local tarball:"
34039 msgstr ""
34040
34041 # type: verbatim
34042 #. type: verbatim
34043 #: ../tools/virt-tar.pl:54
34044 #, no-wrap
34045 msgid ""
34046 " virt-tar -x domname /home home.tar\n"
34047 "\n"
34048 msgstr ""
34049
34050 # type: verbatim
34051 #. type: verbatim
34052 #: ../tools/virt-tar.pl:56
34053 #, no-wrap
34054 msgid ""
34055 " virt-tar -zx domname /home home.tar.gz\n"
34056 "\n"
34057 msgstr ""
34058
34059 # type: textblock
34060 #. type: textblock
34061 #: ../tools/virt-tar.pl:58
34062 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
34063 msgstr ""
34064
34065 # type: verbatim
34066 #. type: verbatim
34067 #: ../tools/virt-tar.pl:60
34068 #, no-wrap
34069 msgid ""
34070 " virt-tar -u domname uploadstuff.tar /tmp\n"
34071 "\n"
34072 msgstr ""
34073
34074 # type: verbatim
34075 #. type: verbatim
34076 #: ../tools/virt-tar.pl:62
34077 #, no-wrap
34078 msgid ""
34079 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
34080 "\n"
34081 msgstr ""
34082
34083 #. type: textblock
34084 #: ../tools/virt-tar.pl:66
34085 msgid ""
34086 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
34087 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
34088 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
34089 msgstr ""
34090
34091 #. type: textblock
34092 #: ../tools/virt-tar.pl:71
34093 msgid ""
34094 "You can use I<-x> (extract) on live virtual machines, but you might get "
34095 "inconsistent results or errors if there is filesystem activity inside the "
34096 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
34097 "work, but the only way to guarantee consistent results is if the virtual "
34098 "machine is shut down."
34099 msgstr ""
34100
34101 # type: textblock
34102 #. type: textblock
34103 #: ../tools/virt-tar.pl:79
34104 msgid ""
34105 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
34106 "parts of a guest filesystem.  There are many possibilities: making backups, "
34107 "uploading data files, snooping on guest activity, fixing or customizing "
34108 "guests, etc."
34109 msgstr ""
34110
34111 # type: textblock
34112 #. type: textblock
34113 #: ../tools/virt-tar.pl:84
34114 msgid ""
34115 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
34116 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
34117 "should look at the L<guestfish(1)> tool."
34118 msgstr ""
34119
34120 #. type: textblock
34121 #: ../tools/virt-tar.pl:88
34122 msgid ""
34123 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
34124 "its contents (recursively) from the virtual machine into a local tarball.  "
34125 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
34126 "virtual machine.  You cannot use these two options together."
34127 msgstr ""
34128
34129 #. type: textblock
34130 #: ../tools/virt-tar.pl:94
34131 msgid ""
34132 "In addition, you may need to use the I<-z> (gZip) option to enable "
34133 "compression.  When uploading, you have to specify I<-z> if the upload file "
34134 "is compressed because virt-tar won't detect this on its own."
34135 msgstr ""
34136
34137 # type: textblock
34138 #. type: textblock
34139 #: ../tools/virt-tar.pl:98
34140 msgid ""
34141 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
34142 "example it cannot do PKZip files or bzip2 compression.  If you want that "
34143 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
34144 "the L<libguestfs(3)> API)."
34145 msgstr ""
34146
34147 # type: =item
34148 #. type: =item
34149 #: ../tools/virt-tar.pl:156
34150 msgid "B<-x> | B<--extract> | B<--download>"
34151 msgstr ""
34152
34153 # type: =item
34154 #. type: =item
34155 #: ../tools/virt-tar.pl:158
34156 msgid "B<-u> | B<--upload>"
34157 msgstr ""
34158
34159 #. type: textblock
34160 #: ../tools/virt-tar.pl:160
34161 msgid ""
34162 "Use I<-x> to extract (download) a directory from a virtual machine to a "
34163 "local tarball."
34164 msgstr ""
34165
34166 #. type: textblock
34167 #: ../tools/virt-tar.pl:163
34168 msgid ""
34169 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
34170 "Please read the L</WARNING> section above before using this option."
34171 msgstr ""
34172
34173 # type: textblock
34174 #. type: textblock
34175 #: ../tools/virt-tar.pl:167
34176 msgid "You must specify exactly one of these options."
34177 msgstr ""
34178
34179 # type: =item
34180 #. type: =item
34181 #: ../tools/virt-tar.pl:173
34182 msgid "B<-z> | B<--gzip>"
34183 msgstr ""
34184
34185 # type: textblock
34186 #. type: textblock
34187 #: ../tools/virt-tar.pl:175
34188 msgid "Specify that the input or output tarball is gzip-compressed."
34189 msgstr ""
34190
34191 #. type: textblock
34192 #: ../tools/virt-tar.pl:288
34193 msgid ""
34194 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-copy-"
34195 "in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<Sys::"
34196 "Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs."
34197 "org/>."
34198 msgstr ""
34199
34200 # type: textblock
34201 #. type: textblock
34202 #: ../tools/virt-make-fs.pl:37
34203 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
34204 msgstr ""
34205
34206 # type: verbatim
34207 #. type: verbatim
34208 #: ../tools/virt-make-fs.pl:41
34209 #, no-wrap
34210 msgid ""
34211 " virt-make-fs [--options] input.tar output.img\n"
34212 "\n"
34213 msgstr ""
34214
34215 # type: verbatim
34216 #. type: verbatim
34217 #: ../tools/virt-make-fs.pl:43
34218 #, no-wrap
34219 msgid ""
34220 " virt-make-fs [--options] input.tar.gz output.img\n"
34221 "\n"
34222 msgstr ""
34223
34224 # type: verbatim
34225 #. type: verbatim
34226 #: ../tools/virt-make-fs.pl:45
34227 #, no-wrap
34228 msgid ""
34229 " virt-make-fs [--options] directory output.img\n"
34230 "\n"
34231 msgstr ""
34232
34233 # type: textblock
34234 #. type: textblock
34235 #: ../tools/virt-make-fs.pl:49
34236 msgid ""
34237 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
34238 "archive or some files in a directory.  It is similar to tools like L<mkisofs"
34239 "(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, it can "
34240 "create common filesystem types like ext2/3 or NTFS, which can be useful if "
34241 "you want to attach these filesystems to existing virtual machines (eg. to "
34242 "import large amounts of read-only data to a VM)."
34243 msgstr ""
34244
34245 # type: textblock
34246 #. type: textblock
34247 #: ../tools/virt-make-fs.pl:57
34248 msgid "Basic usage is:"
34249 msgstr ""
34250
34251 # type: verbatim
34252 #. type: verbatim
34253 #: ../tools/virt-make-fs.pl:59
34254 #, no-wrap
34255 msgid ""
34256 " virt-make-fs input output\n"
34257 "\n"
34258 msgstr ""
34259
34260 # type: textblock
34261 #. type: textblock
34262 #: ../tools/virt-make-fs.pl:61
34263 msgid ""
34264 "where C<input> is either a directory containing files that you want to add, "
34265 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
34266 "C<output> is a disk image.  The input type is detected automatically.  The "
34267 "output disk image defaults to a raw ext2 image unless you specify extra "
34268 "flags (see L</OPTIONS> below)."
34269 msgstr ""
34270
34271 # type: =head2
34272 #. type: =head2
34273 #: ../tools/virt-make-fs.pl:67
34274 msgid "EXTRA SPACE"
34275 msgstr ""
34276
34277 #. type: textblock
34278 #: ../tools/virt-make-fs.pl:69
34279 msgid ""
34280 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
34281 "the files that it contains, but might have extra space.  Depending on how "
34282 "you are going to use the output, you might think this extra space is wasted "
34283 "and want to minimize it, or you might want to leave space so that more files "
34284 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
34285 "but you can use the I<--size> flag to leave space in the filesystem if you "
34286 "want it."
34287 msgstr ""
34288
34289 #. type: textblock
34290 #: ../tools/virt-make-fs.pl:77
34291 msgid ""
34292 "An alternative way to leave extra space but not make the output image any "
34293 "bigger is to use an alternative disk image format (instead of the default "
34294 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
34295 "image format (check your hypervisor supports this before using it).  This "
34296 "allows you to choose a large I<--size> but the extra space won't actually be "
34297 "allocated in the image until you try to store something in it."
34298 msgstr ""
34299
34300 #. type: textblock
34301 #: ../tools/virt-make-fs.pl:85
34302 msgid ""
34303 "Don't forget that you can also use local commands including L<resize2fs(8)> "
34304 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
34305 "to build another image from scratch."
34306 msgstr ""
34307
34308 # type: =head3
34309 #. type: =head3
34310 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
34311 #: ../tools/virt-make-fs.pl:142
34312 msgid "EXAMPLE"
34313 msgstr ""
34314
34315 # type: verbatim
34316 #. type: verbatim
34317 #: ../tools/virt-make-fs.pl:91
34318 #, no-wrap
34319 msgid ""
34320 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
34321 "\n"
34322 msgstr ""
34323
34324 # type: =head2
34325 #. type: =head2
34326 #: ../tools/virt-make-fs.pl:93
34327 msgid "FILESYSTEM TYPE"
34328 msgstr ""
34329
34330 # type: textblock
34331 #. type: textblock
34332 #: ../tools/virt-make-fs.pl:95
34333 msgid ""
34334 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
34335 "libguestfs supports can be used (but I<not> read-only formats like "
34336 "ISO9660).  Here are some of the more common choices:"
34337 msgstr ""
34338
34339 # type: =item
34340 #. type: =item
34341 #: ../tools/virt-make-fs.pl:101
34342 msgid "I<ext3>"
34343 msgstr ""
34344
34345 # type: textblock
34346 #. type: textblock
34347 #: ../tools/virt-make-fs.pl:103
34348 msgid ""
34349 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
34350 "you are not going to use the filesystem in a way that requires the journal, "
34351 "then this is just wasted overhead."
34352 msgstr ""
34353
34354 # type: =item
34355 #. type: =item
34356 #: ../tools/virt-make-fs.pl:107
34357 msgid "I<ntfs> or I<vfat>"
34358 msgstr ""
34359
34360 # type: textblock
34361 #. type: textblock
34362 #: ../tools/virt-make-fs.pl:109
34363 msgid "Useful if exporting data to a Windows guest."
34364 msgstr ""
34365
34366 # type: textblock
34367 #. type: textblock
34368 #: ../tools/virt-make-fs.pl:111
34369 msgid ""
34370 "I<Note for vfat>: The tar archive or local directory must only contain files "
34371 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
34372 "program running within libguestfs is unable to change the ownership of non-"
34373 "root files, since vfat itself does not support this."
34374 msgstr ""
34375
34376 # type: =item
34377 #. type: =item
34378 #: ../tools/virt-make-fs.pl:116
34379 msgid "I<minix>"
34380 msgstr ""
34381
34382 # type: textblock
34383 #. type: textblock
34384 #: ../tools/virt-make-fs.pl:118
34385 msgid ""
34386 "Lower overhead than C<ext2>, but certain limitations on filename length and "
34387 "total filesystem size."
34388 msgstr ""
34389
34390 # type: verbatim
34391 #. type: verbatim
34392 #: ../tools/virt-make-fs.pl:125
34393 #, no-wrap
34394 msgid ""
34395 " virt-make-fs --type=minix input minixfs.img\n"
34396 "\n"
34397 msgstr ""
34398
34399 # type: =head2
34400 #. type: =head2
34401 #: ../tools/virt-make-fs.pl:127
34402 msgid "TO PARTITION OR NOT TO PARTITION"
34403 msgstr ""
34404
34405 # type: textblock
34406 #. type: textblock
34407 #: ../tools/virt-make-fs.pl:129
34408 msgid "Optionally virt-make-fs can add a partition table to the output disk."
34409 msgstr ""
34410
34411 # type: textblock
34412 #. type: textblock
34413 #: ../tools/virt-make-fs.pl:131
34414 msgid ""
34415 "Adding a partition can make the disk image more compatible with certain "
34416 "virtualized operating systems which don't expect to see a filesystem "
34417 "directly located on a block device (Linux doesn't care and will happily "
34418 "handle both types)."
34419 msgstr ""
34420
34421 # type: textblock
34422 #. type: textblock
34423 #: ../tools/virt-make-fs.pl:136
34424 msgid ""
34425 "On the other hand, if you have a partition table then the output image is no "
34426 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
34427 "directly on a partitioned disk image.  (However libguestfs tools such as "
34428 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
34429 msgstr ""
34430
34431 # type: textblock
34432 #. type: textblock
34433 #: ../tools/virt-make-fs.pl:144
34434 msgid "Add an MBR partition:"
34435 msgstr ""
34436
34437 # type: verbatim
34438 #. type: verbatim
34439 #: ../tools/virt-make-fs.pl:146
34440 #, no-wrap
34441 msgid ""
34442 " virt-make-fs --partition -- input disk.img\n"
34443 "\n"
34444 msgstr ""
34445
34446 # type: textblock
34447 #. type: textblock
34448 #: ../tools/virt-make-fs.pl:148
34449 msgid ""
34450 "If the output disk image could be terabyte-sized or larger, it's better to "
34451 "use an EFI/GPT-compatible partition table:"
34452 msgstr ""
34453
34454 # type: verbatim
34455 #. type: verbatim
34456 #: ../tools/virt-make-fs.pl:151
34457 #, no-wrap
34458 msgid ""
34459 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
34460 "\n"
34461 msgstr ""
34462
34463 # type: textblock
34464 #. type: textblock
34465 #: ../tools/virt-make-fs.pl:179
34466 msgid "Enable debugging information."
34467 msgstr ""
34468
34469 # type: =item
34470 #. type: =item
34471 #: ../tools/virt-make-fs.pl:185
34472 msgid "B<--size=E<lt>NE<gt>>"
34473 msgstr ""
34474
34475 # type: =item
34476 #. type: =item
34477 #: ../tools/virt-make-fs.pl:187
34478 msgid "B<--size=+E<lt>NE<gt>>"
34479 msgstr ""
34480
34481 # type: =item
34482 #. type: =item
34483 #: ../tools/virt-make-fs.pl:189
34484 msgid "B<-s E<lt>NE<gt>>"
34485 msgstr ""
34486
34487 # type: =item
34488 #. type: =item
34489 #: ../tools/virt-make-fs.pl:191
34490 msgid "B<-s +E<lt>NE<gt>>"
34491 msgstr ""
34492
34493 #. type: textblock
34494 #: ../tools/virt-make-fs.pl:193
34495 msgid ""
34496 "Use the I<--size> (or I<-s>) option to choose the size of the output image."
34497 msgstr ""
34498
34499 # type: textblock
34500 #. type: textblock
34501 #: ../tools/virt-make-fs.pl:196
34502 msgid ""
34503 "If this option is I<not> given, then the output image will be just large "
34504 "enough to contain all the files, with not much wasted space."
34505 msgstr ""
34506
34507 # type: textblock
34508 #. type: textblock
34509 #: ../tools/virt-make-fs.pl:199
34510 msgid ""
34511 "To choose a fixed size output disk, specify an absolute number followed by b/"
34512 "K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
34513 "Petabytes or Exabytes.  This must be large enough to contain all the input "
34514 "files, else you will get an error."
34515 msgstr ""
34516
34517 #. type: textblock
34518 #: ../tools/virt-make-fs.pl:204
34519 msgid ""
34520 "To leave extra space, specify C<+> (plus sign) and a number followed by b/K/"
34521 "M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
34522 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
34523 "the input files, and (approximately) an extra 200 MB free space."
34524 msgstr ""
34525
34526 # type: textblock
34527 #. type: textblock
34528 #: ../tools/virt-make-fs.pl:210
34529 msgid ""
34530 "Note that virt-make-fs estimates free space, and therefore will not produce "
34531 "filesystems containing precisely the free space requested.  (It is much more "
34532 "expensive and time-consuming to produce a filesystem which has precisely the "
34533 "desired free space)."
34534 msgstr ""
34535
34536 # type: =item
34537 #. type: =item
34538 #: ../tools/virt-make-fs.pl:219
34539 msgid "B<--format=E<lt>fmtE<gt>>"
34540 msgstr ""
34541
34542 # type: =item
34543 #. type: =item
34544 #: ../tools/virt-make-fs.pl:221
34545 msgid "B<-F E<lt>fmtE<gt>>"
34546 msgstr ""
34547
34548 # type: textblock
34549 #. type: textblock
34550 #: ../tools/virt-make-fs.pl:223
34551 msgid "Choose the output disk image format."
34552 msgstr ""
34553
34554 # type: textblock
34555 #. type: textblock
34556 #: ../tools/virt-make-fs.pl:225
34557 msgid "The default is C<raw> (raw disk image)."
34558 msgstr ""
34559
34560 # type: textblock
34561 #. type: textblock
34562 #: ../tools/virt-make-fs.pl:227
34563 msgid ""
34564 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
34565 "that would really make sense here is C<qcow2>."
34566 msgstr ""
34567
34568 # type: =item
34569 #. type: =item
34570 #: ../tools/virt-make-fs.pl:234
34571 msgid "B<--type=E<lt>fsE<gt>>"
34572 msgstr ""
34573
34574 # type: =item
34575 #. type: =item
34576 #: ../tools/virt-make-fs.pl:236
34577 msgid "B<-t E<lt>fsE<gt>>"
34578 msgstr ""
34579
34580 # type: textblock
34581 #. type: textblock
34582 #: ../tools/virt-make-fs.pl:238
34583 msgid "Choose the output filesystem type."
34584 msgstr ""
34585
34586 # type: textblock
34587 #. type: textblock
34588 #: ../tools/virt-make-fs.pl:240
34589 msgid "The default is C<ext2>."
34590 msgstr ""
34591
34592 # type: textblock
34593 #. type: textblock
34594 #: ../tools/virt-make-fs.pl:242
34595 msgid ""
34596 "Any filesystem which is supported read-write by libguestfs can be used here."
34597 msgstr ""
34598
34599 # type: =item
34600 #. type: =item
34601 #: ../tools/virt-make-fs.pl:249
34602 msgid "B<--partition>"
34603 msgstr ""
34604
34605 # type: =item
34606 #. type: =item
34607 #: ../tools/virt-make-fs.pl:251
34608 msgid "B<--partition=E<lt>parttypeE<gt>>"
34609 msgstr ""
34610
34611 # type: textblock
34612 #. type: textblock
34613 #: ../tools/virt-make-fs.pl:253
34614 msgid ""
34615 "If specified, this flag adds an MBR partition table to the output disk image."
34616 msgstr ""
34617
34618 #. type: textblock
34619 #: ../tools/virt-make-fs.pl:256
34620 msgid ""
34621 "You can change the partition table type, eg. I<--partition=gpt> for large "
34622 "disks."
34623 msgstr ""
34624
34625 #. type: textblock
34626 #: ../tools/virt-make-fs.pl:259
34627 msgid ""
34628 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
34629 "might consider the next parameter to be the partition type.  For example:"
34630 msgstr ""
34631
34632 # type: verbatim
34633 #. type: verbatim
34634 #: ../tools/virt-make-fs.pl:263
34635 #, no-wrap
34636 msgid ""
34637 " virt-make-fs --partition input.tar ...\n"
34638 "\n"
34639 msgstr ""
34640
34641 #. type: textblock
34642 #: ../tools/virt-make-fs.pl:265
34643 msgid ""
34644 "would cause virt-make-fs to think you wanted to use a partition type of "
34645 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
34646 "dash) between options and the input file argument:"
34647 msgstr ""
34648
34649 # type: verbatim
34650 #. type: verbatim
34651 #: ../tools/virt-make-fs.pl:269
34652 #, no-wrap
34653 msgid ""
34654 " virt-make-fs --partition -- input.tar ...\n"
34655 "\n"
34656 msgstr ""
34657
34658 #. type: textblock
34659 #: ../tools/virt-make-fs.pl:541
34660 msgid ""
34661 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
34662 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
34663 "(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
34664 msgstr ""
34665
34666 # type: verbatim
34667 #. type: verbatim
34668 #: ../tools/virt-make-fs.pl:558
34669 #, no-wrap
34670 msgid ""
34671 " export LIBGUESTFS_DEBUG=1\n"
34672 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
34673 "\n"
34674 msgstr ""
34675
34676 # type: textblock
34677 #. type: textblock
34678 #: ../tools/virt-make-fs.pl:561
34679 msgid ""
34680 "Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
34681 "redhat.com/>"
34682 msgstr ""
34683
34684 # type: textblock
34685 #. type: textblock
34686 #: ../tools/virt-list-partitions.pl:32
34687 msgid ""
34688 "virt-list-partitions - List partitions in a virtual machine or disk image"
34689 msgstr ""
34690
34691 # type: verbatim
34692 #. type: verbatim
34693 #: ../tools/virt-list-partitions.pl:36
34694 #, no-wrap
34695 msgid ""
34696 " virt-list-partitions [--options] domname\n"
34697 "\n"
34698 msgstr ""
34699
34700 # type: verbatim
34701 #. type: verbatim
34702 #: ../tools/virt-list-partitions.pl:38
34703 #, no-wrap
34704 msgid ""
34705 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
34706 "\n"
34707 msgstr ""
34708
34709 # type: textblock
34710 #. type: textblock
34711 #: ../tools/virt-list-partitions.pl:45
34712 msgid ""
34713 "C<virt-list-partitions> is a command line tool to list the partitions that "
34714 "are contained in a virtual machine or disk image.  It is mainly useful as a "
34715 "first step to using L<virt-resize(1)>."
34716 msgstr ""
34717
34718 # type: textblock
34719 #. type: textblock
34720 #: ../tools/virt-list-partitions.pl:50
34721 msgid ""
34722 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
34723 "functionality.  For more complex cases you should look at the L<guestfish(1)"
34724 "> tool."
34725 msgstr ""
34726
34727 # type: =item
34728 #. type: =item
34729 #: ../tools/virt-list-partitions.pl:107
34730 msgid "B<-h> | B<--human-readable>"
34731 msgstr ""
34732
34733 # type: textblock
34734 #. type: textblock
34735 #: ../tools/virt-list-partitions.pl:109
34736 msgid "Show sizes in human-readable form (eg. \"1G\")."
34737 msgstr ""
34738
34739 # type: textblock
34740 #. type: textblock
34741 #: ../tools/virt-list-partitions.pl:117
34742 msgid ""
34743 "With this option, C<virt-list-partitions> displays the type and size of each "
34744 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
34745 msgstr ""
34746
34747 # type: =item
34748 #. type: =item
34749 #: ../tools/virt-list-partitions.pl:124
34750 msgid "B<-t> | B<--total>"
34751 msgstr ""
34752
34753 # type: textblock
34754 #. type: textblock
34755 #: ../tools/virt-list-partitions.pl:126
34756 msgid ""
34757 "Display the total size of each block device (as a separate row or rows)."
34758 msgstr ""
34759
34760 # type: textblock
34761 #. type: textblock
34762 #: ../tools/virt-list-partitions.pl:259
34763 msgid ""
34764 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
34765 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib"
34766 "(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
34767 msgstr ""
34768
34769 # type: textblock
34770 #. type: textblock
34771 #: ../tools/virt-list-partitions.pl:275
34772 msgid "Copyright (C) 2009-2010 Red Hat Inc."
34773 msgstr ""