configure: Add --with-extra flag to allow setting the extra version string.
[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-08-17 13: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:582
929 #: ../src/guestfs-actions.pod:590 ../src/guestfs-actions.pod:597
930 #: ../src/guestfs-actions.pod:604 ../src/guestfs-actions.pod:1602
931 #: ../src/guestfs-actions.pod:1606 ../src/guestfs-actions.pod:1610
932 #: ../src/guestfs-actions.pod:1614 ../src/guestfs-actions.pod:1622
933 #: ../src/guestfs-actions.pod:1626 ../src/guestfs-actions.pod:1630
934 #: ../src/guestfs-actions.pod:1640 ../src/guestfs-actions.pod:1644
935 #: ../src/guestfs-actions.pod:1648 ../src/guestfs-actions.pod:1786
936 #: ../src/guestfs-actions.pod:1790 ../src/guestfs-actions.pod:1795
937 #: ../src/guestfs-actions.pod:1800 ../src/guestfs-actions.pod:1861
938 #: ../src/guestfs-actions.pod:1865 ../src/guestfs-actions.pod:1870
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:385 ../fish/guestfish-actions.pod:393
943 #: ../fish/guestfish-actions.pod:400 ../fish/guestfish-actions.pod:407
944 #: ../fish/guestfish-actions.pod:1074 ../fish/guestfish-actions.pod:1078
945 #: ../fish/guestfish-actions.pod:1082 ../fish/guestfish-actions.pod:1086
946 #: ../fish/guestfish-actions.pod:1094 ../fish/guestfish-actions.pod:1098
947 #: ../fish/guestfish-actions.pod:1102 ../fish/guestfish-actions.pod:1112
948 #: ../fish/guestfish-actions.pod:1116 ../fish/guestfish-actions.pod:1120
949 #: ../fish/guestfish-actions.pod:1210 ../fish/guestfish-actions.pod:1214
950 #: ../fish/guestfish-actions.pod:1219 ../fish/guestfish-actions.pod:1224
951 #: ../fish/guestfish-actions.pod:1266 ../fish/guestfish-actions.pod:1270
952 #: ../fish/guestfish-actions.pod:1275 ../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 #: ../src/guestfs.pod:1454
3208 #, no-wrap
3209 msgid ""
3210 " typedef void (*guestfs_abort_cb) (void);\n"
3211 " void guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
3212 "                                         guestfs_abort_cb);\n"
3213 "\n"
3214 msgstr ""
3215
3216 # type: textblock
3217 #. type: textblock
3218 #: ../src/guestfs.pod:1458
3219 msgid ""
3220 "The callback C<cb> will be called if there is an out of memory situation.  "
3221 "I<Note this callback must not return>."
3222 msgstr ""
3223
3224 # type: textblock
3225 #. type: textblock
3226 #: ../src/guestfs.pod:1461
3227 msgid "The default is to call L<abort(3)>."
3228 msgstr ""
3229
3230 # type: textblock
3231 #. type: textblock
3232 #: ../src/guestfs.pod:1463
3233 msgid ""
3234 "You cannot set C<cb> to C<NULL>.  You can't ignore out of memory situations."
3235 msgstr ""
3236
3237 # type: =head2
3238 #. type: =head2
3239 #: ../src/guestfs.pod:1466
3240 msgid "guestfs_get_out_of_memory_handler"
3241 msgstr ""
3242
3243 # type: verbatim
3244 #. type: verbatim
3245 #: ../src/guestfs.pod:1468
3246 #, no-wrap
3247 msgid ""
3248 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
3249 "\n"
3250 msgstr ""
3251
3252 # type: textblock
3253 #. type: textblock
3254 #: ../src/guestfs.pod:1470
3255 msgid "This returns the current out of memory handler."
3256 msgstr ""
3257
3258 # type: =head1
3259 #. type: =head1
3260 #: ../src/guestfs.pod:1472
3261 msgid "API CALLS"
3262 msgstr ""
3263
3264 # type: textblock
3265 #. type: textblock
3266 #: ../src/guestfs.pod:1474 ../fish/guestfish.pod:1019
3267 msgid "@ACTIONS@"
3268 msgstr ""
3269
3270 # type: =head1
3271 #. type: =head1
3272 #: ../src/guestfs.pod:1476
3273 msgid "STRUCTURES"
3274 msgstr ""
3275
3276 # type: textblock
3277 #. type: textblock
3278 #: ../src/guestfs.pod:1478
3279 msgid "@STRUCTS@"
3280 msgstr ""
3281
3282 # type: =head1
3283 #. type: =head1
3284 #: ../src/guestfs.pod:1480
3285 msgid "AVAILABILITY"
3286 msgstr ""
3287
3288 # type: =head2
3289 #. type: =head2
3290 #: ../src/guestfs.pod:1482
3291 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
3292 msgstr ""
3293
3294 # type: textblock
3295 #. type: textblock
3296 #: ../src/guestfs.pod:1484
3297 msgid ""
3298 "Using L</guestfs_available> you can test availability of the following "
3299 "groups of functions.  This test queries the appliance to see if the "
3300 "appliance you are currently using supports the functionality."
3301 msgstr ""
3302
3303 # type: textblock
3304 #. type: textblock
3305 #: ../src/guestfs.pod:1489
3306 msgid "@AVAILABILITY@"
3307 msgstr ""
3308
3309 # type: =head2
3310 #. type: =head2
3311 #: ../src/guestfs.pod:1491
3312 msgid "GUESTFISH supported COMMAND"
3313 msgstr ""
3314
3315 # type: textblock
3316 #. type: textblock
3317 #: ../src/guestfs.pod:1493
3318 msgid ""
3319 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
3320 "prints out the available groups and whether they are supported by this build "
3321 "of libguestfs.  Note however that you have to do C<run> first."
3322 msgstr ""
3323
3324 # type: =head2
3325 #. type: =head2
3326 #: ../src/guestfs.pod:1498
3327 msgid "SINGLE CALLS AT COMPILE TIME"
3328 msgstr ""
3329
3330 # type: textblock
3331 #. type: textblock
3332 #: ../src/guestfs.pod:1500
3333 msgid ""
3334 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
3335 "function, such as:"
3336 msgstr ""
3337
3338 # type: verbatim
3339 #. type: verbatim
3340 #: ../src/guestfs.pod:1503
3341 #, no-wrap
3342 msgid ""
3343 " #define LIBGUESTFS_HAVE_DD 1\n"
3344 "\n"
3345 msgstr ""
3346
3347 # type: textblock
3348 #. type: textblock
3349 #: ../src/guestfs.pod:1505
3350 msgid "if L</guestfs_dd> is available."
3351 msgstr ""
3352
3353 # type: textblock
3354 #. type: textblock
3355 #: ../src/guestfs.pod:1507
3356 msgid ""
3357 "Before version 1.5.8, if you needed to test whether a single libguestfs "
3358 "function is available at compile time, we recommended using build tools such "
3359 "as autoconf or cmake.  For example in autotools you could use:"
3360 msgstr ""
3361
3362 # type: verbatim
3363 #. type: verbatim
3364 #: ../src/guestfs.pod:1512
3365 #, no-wrap
3366 msgid ""
3367 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
3368 " AC_CHECK_FUNCS([guestfs_dd])\n"
3369 "\n"
3370 msgstr ""
3371
3372 # type: textblock
3373 #. type: textblock
3374 #: ../src/guestfs.pod:1515
3375 msgid ""
3376 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
3377 "in your program."
3378 msgstr ""
3379
3380 # type: =head2
3381 #. type: =head2
3382 #: ../src/guestfs.pod:1518
3383 msgid "SINGLE CALLS AT RUN TIME"
3384 msgstr ""
3385
3386 # type: textblock
3387 #. type: textblock
3388 #: ../src/guestfs.pod:1520
3389 msgid ""
3390 "Testing at compile time doesn't guarantee that a function really exists in "
3391 "the library.  The reason is that you might be dynamically linked against a "
3392 "previous I<libguestfs.so> (dynamic library)  which doesn't have the call.  "
3393 "This situation unfortunately results in a segmentation fault, which is a "
3394 "shortcoming of the C dynamic linking system itself."
3395 msgstr ""
3396
3397 # type: textblock
3398 #. type: textblock
3399 #: ../src/guestfs.pod:1527
3400 msgid ""
3401 "You can use L<dlopen(3)> to test if a function is available at run time, as "
3402 "in this example program (note that you still need the compile time check as "
3403 "well):"
3404 msgstr ""
3405
3406 # type: verbatim
3407 #. type: verbatim
3408 #: ../src/guestfs.pod:1531
3409 #, no-wrap
3410 msgid ""
3411 " #include <stdio.h>\n"
3412 " #include <stdlib.h>\n"
3413 " #include <unistd.h>\n"
3414 " #include <dlfcn.h>\n"
3415 " #include <guestfs.h>\n"
3416 " \n"
3417 msgstr ""
3418
3419 # type: verbatim
3420 #. type: verbatim
3421 #: ../src/guestfs.pod:1537
3422 #, no-wrap
3423 msgid ""
3424 " main ()\n"
3425 " {\n"
3426 " #ifdef LIBGUESTFS_HAVE_DD\n"
3427 "   void *dl;\n"
3428 "   int has_function;\n"
3429 " \n"
3430 msgstr ""
3431
3432 # type: verbatim
3433 #. type: verbatim
3434 #: ../src/guestfs.pod:1543
3435 #, no-wrap
3436 msgid ""
3437 "   /* Test if the function guestfs_dd is really available. */\n"
3438 "   dl = dlopen (NULL, RTLD_LAZY);\n"
3439 "   if (!dl) {\n"
3440 "     fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
3441 "     exit (EXIT_FAILURE);\n"
3442 "   }\n"
3443 "   has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
3444 "   dlclose (dl);\n"
3445 " \n"
3446 msgstr ""
3447
3448 # type: verbatim
3449 #. type: verbatim
3450 #: ../src/guestfs.pod:1552
3451 #, no-wrap
3452 msgid ""
3453 "   if (!has_function)\n"
3454 "     printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
3455 "   else {\n"
3456 "     printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
3457 "     /* Now it's safe to call\n"
3458 "     guestfs_dd (g, \"foo\", \"bar\");\n"
3459 "     */\n"
3460 "   }\n"
3461 " #else\n"
3462 "   printf (\"guestfs_dd function was not found at compile time\\n\");\n"
3463 " #endif\n"
3464 "  }\n"
3465 "\n"
3466 msgstr ""
3467
3468 # type: textblock
3469 #. type: textblock
3470 #: ../src/guestfs.pod:1565
3471 msgid ""
3472 "You may think the above is an awful lot of hassle, and it is.  There are "
3473 "other ways outside of the C linking system to ensure that this kind of "
3474 "incompatibility never arises, such as using package versioning:"
3475 msgstr ""
3476
3477 # type: verbatim
3478 #. type: verbatim
3479 #: ../src/guestfs.pod:1570
3480 #, no-wrap
3481 msgid ""
3482 " Requires: libguestfs >= 1.0.80\n"
3483 "\n"
3484 msgstr ""
3485
3486 # type: =head1
3487 #. type: =head1
3488 #: ../src/guestfs.pod:1572
3489 msgid "CALLS WITH OPTIONAL ARGUMENTS"
3490 msgstr ""
3491
3492 # type: textblock
3493 #. type: textblock
3494 #: ../src/guestfs.pod:1574
3495 msgid ""
3496 "A recent feature of the API is the introduction of calls which take optional "
3497 "arguments.  In C these are declared 3 ways.  The main way is as a call which "
3498 "takes variable arguments (ie. C<...>), as in this example:"
3499 msgstr ""
3500
3501 # type: verbatim
3502 #. type: verbatim
3503 #: ../src/guestfs.pod:1579
3504 #, no-wrap
3505 msgid ""
3506 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
3507 "\n"
3508 msgstr ""
3509
3510 # type: textblock
3511 #. type: textblock
3512 #: ../src/guestfs.pod:1581
3513 msgid ""
3514 "Call this with a list of optional arguments, terminated by C<-1>.  So to "
3515 "call with no optional arguments specified:"
3516 msgstr ""
3517
3518 # type: verbatim
3519 #. type: verbatim
3520 #: ../src/guestfs.pod:1584
3521 #, no-wrap
3522 msgid ""
3523 " guestfs_add_drive_opts (g, filename, -1);\n"
3524 "\n"
3525 msgstr ""
3526
3527 # type: textblock
3528 #. type: textblock
3529 #: ../src/guestfs.pod:1586
3530 msgid "With a single optional argument:"
3531 msgstr ""
3532
3533 # type: verbatim
3534 #. type: verbatim
3535 #: ../src/guestfs.pod:1588
3536 #, no-wrap
3537 msgid ""
3538 " guestfs_add_drive_opts (g, filename,\n"
3539 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3540 "                         -1);\n"
3541 "\n"
3542 msgstr ""
3543
3544 # type: textblock
3545 #. type: textblock
3546 #: ../src/guestfs.pod:1592
3547 msgid "With two:"
3548 msgstr ""
3549
3550 # type: verbatim
3551 #. type: verbatim
3552 #: ../src/guestfs.pod:1594
3553 #, no-wrap
3554 msgid ""
3555 " guestfs_add_drive_opts (g, filename,\n"
3556 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3557 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3558 "                         -1);\n"
3559 "\n"
3560 msgstr ""
3561
3562 # type: textblock
3563 #. type: textblock
3564 #: ../src/guestfs.pod:1599
3565 msgid ""
3566 "and so forth.  Don't forget the terminating C<-1> otherwise Bad Things will "
3567 "happen!"
3568 msgstr ""
3569
3570 # type: =head2
3571 #. type: =head2
3572 #: ../src/guestfs.pod:1602
3573 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3574 msgstr ""
3575
3576 # type: textblock
3577 #. type: textblock
3578 #: ../src/guestfs.pod:1604
3579 msgid ""
3580 "The second variant has the same name with the suffix C<_va>, which works the "
3581 "same way but takes a C<va_list>.  See the C manual for details.  For the "
3582 "example function, this is declared:"
3583 msgstr ""
3584
3585 # type: verbatim
3586 #. type: verbatim
3587 #: ../src/guestfs.pod:1608
3588 #, no-wrap
3589 msgid ""
3590 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3591 "                                va_list args);\n"
3592 "\n"
3593 msgstr ""
3594
3595 # type: =head2
3596 #. type: =head2
3597 #: ../src/guestfs.pod:1611
3598 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3599 msgstr ""
3600
3601 # type: textblock
3602 #. type: textblock
3603 #: ../src/guestfs.pod:1613
3604 msgid ""
3605 "The third variant is useful where you need to construct these calls.  You "
3606 "pass in a structure where you fill in the optional fields.  The structure "
3607 "has a bitmask as the first element which you must set to indicate which "
3608 "fields you have filled in.  For our example function the structure and call "
3609 "are declared:"
3610 msgstr ""
3611
3612 # type: verbatim
3613 #. type: verbatim
3614 #: ../src/guestfs.pod:1619
3615 #, no-wrap
3616 msgid ""
3617 " struct guestfs_add_drive_opts_argv {\n"
3618 "   uint64_t bitmask;\n"
3619 "   int readonly;\n"
3620 "   const char *format;\n"
3621 "   /* ... */\n"
3622 " };\n"
3623 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3624 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
3625 "\n"
3626 msgstr ""
3627
3628 # type: textblock
3629 #. type: textblock
3630 #: ../src/guestfs.pod:1628
3631 msgid "You could call it like this:"
3632 msgstr ""
3633
3634 # type: verbatim
3635 #. type: verbatim
3636 #: ../src/guestfs.pod:1630
3637 #, no-wrap
3638 msgid ""
3639 " struct guestfs_add_drive_opts_argv optargs = {\n"
3640 "   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3641 "              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3642 "   .readonly = 1,\n"
3643 "   .format = \"qcow2\"\n"
3644 " };\n"
3645 " \n"
3646 msgstr ""
3647
3648 # type: verbatim
3649 #. type: verbatim
3650 #: ../src/guestfs.pod:1637
3651 #, no-wrap
3652 msgid ""
3653 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3654 "\n"
3655 msgstr ""
3656
3657 # type: textblock
3658 #. type: textblock
3659 #: ../src/guestfs.pod:1639 ../src/guestfs-actions.pod:11
3660 #: ../src/guestfs-actions.pod:1857 ../fish/guestfish-actions.pod:9
3661 #: ../fish/guestfish-actions.pod:1262 ../tools/virt-win-reg.pl:532
3662 msgid "Notes:"
3663 msgstr ""
3664
3665 # type: textblock
3666 #. type: textblock
3667 #: ../src/guestfs.pod:1645
3668 msgid "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3669 msgstr ""
3670
3671 # type: textblock
3672 #. type: textblock
3673 #: ../src/guestfs.pod:1650
3674 msgid "You do not need to fill in all fields of the structure."
3675 msgstr ""
3676
3677 # type: textblock
3678 #. type: textblock
3679 #: ../src/guestfs.pod:1654
3680 msgid ""
3681 "There must be a one-to-one correspondence between fields of the structure "
3682 "that are filled in, and bits set in the bitmask."
3683 msgstr ""
3684
3685 # type: =head2
3686 #. type: =head2
3687 #: ../src/guestfs.pod:1659
3688 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3689 msgstr ""
3690
3691 # type: textblock
3692 #. type: textblock
3693 #: ../src/guestfs.pod:1661
3694 msgid ""
3695 "In other languages, optional arguments are expressed in the way that is "
3696 "natural for that language.  We refer you to the language-specific "
3697 "documentation for more details on that."
3698 msgstr ""
3699
3700 # type: textblock
3701 #. type: textblock
3702 #: ../src/guestfs.pod:1665
3703 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3704 msgstr ""
3705
3706 # type: =head2
3707 #. type: =head2
3708 #: ../src/guestfs.pod:1667
3709 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3710 msgstr ""
3711
3712 #. type: textblock
3713 #: ../src/guestfs.pod:1669
3714 msgid ""
3715 "B<Note:> This section documents the generic event mechanism introduced in "
3716 "libguestfs 1.10, which you should use in new code if possible.  The old "
3717 "functions C<guestfs_set_log_message_callback>, "
3718 "C<guestfs_set_subprocess_quit_callback>, "
3719 "C<guestfs_set_launch_done_callback>, C<guestfs_set_close_callback> and "
3720 "C<guestfs_set_progress_callback> are no longer documented in this manual "
3721 "page."
3722 msgstr ""
3723
3724 #. type: textblock
3725 #: ../src/guestfs.pod:1677
3726 msgid ""
3727 "Handles generate events when certain things happen, such as log messages "
3728 "being generated, progress messages during long-running operations, or the "
3729 "handle being closed.  The API calls described below let you register a "
3730 "callback to be called when events happen.  You can register multiple "
3731 "callbacks (for the same, different or overlapping sets of events), and "
3732 "individually remove callbacks.  If callbacks are not removed, then they "
3733 "remain in force until the handle is closed."
3734 msgstr ""
3735
3736 #. type: textblock
3737 #: ../src/guestfs.pod:1685
3738 msgid ""
3739 "In the current implementation, events are only generated synchronously: that "
3740 "means that events (and hence callbacks) can only happen while you are in the "
3741 "middle of making another libguestfs call.  The callback is called in the "
3742 "same thread."
3743 msgstr ""
3744
3745 #. type: textblock
3746 #: ../src/guestfs.pod:1690
3747 msgid ""
3748 "Events may contain a payload, usually nothing (void), an array of 64 bit "
3749 "unsigned integers, or a message buffer.  Payloads are discussed later on."
3750 msgstr ""
3751
3752 #. type: =head3
3753 #: ../src/guestfs.pod:1694
3754 msgid "CLASSES OF EVENTS"
3755 msgstr ""
3756
3757 #. type: =item
3758 #: ../src/guestfs.pod:1698
3759 msgid "GUESTFS_EVENT_CLOSE (payload type: void)"
3760 msgstr ""
3761
3762 #. type: textblock
3763 #: ../src/guestfs.pod:1701
3764 msgid ""
3765 "The callback function will be called while the handle is being closed "
3766 "(synchronously from L</guestfs_close>)."
3767 msgstr ""
3768
3769 # type: textblock
3770 #. type: textblock
3771 #: ../src/guestfs.pod:1704
3772 msgid ""
3773 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3774 "handles that are open when the program exits.  This means that this callback "
3775 "might be called indirectly from L<exit(3)>, which can cause unexpected "
3776 "problems in higher-level languages (eg. if your HLL interpreter has already "
3777 "been cleaned up by the time this is called, and if your callback then jumps "
3778 "into some HLL function)."
3779 msgstr ""
3780
3781 #. type: textblock
3782 #: ../src/guestfs.pod:1711
3783 msgid ""
3784 "If no callback is registered: the handle is closed without any callback "
3785 "being invoked."
3786 msgstr ""
3787
3788 #. type: =item
3789 #: ../src/guestfs.pod:1714
3790 msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)"
3791 msgstr ""
3792
3793 #. type: textblock
3794 #: ../src/guestfs.pod:1717
3795 msgid ""
3796 "The callback function will be called when the child process quits, either "
3797 "asynchronously or if killed by L</guestfs_kill_subprocess>.  (This "
3798 "corresponds to a transition from any state to the CONFIG state)."
3799 msgstr ""
3800
3801 #. type: textblock
3802 #: ../src/guestfs.pod:1721 ../src/guestfs.pod:1730
3803 msgid "If no callback is registered: the event is ignored."
3804 msgstr ""
3805
3806 #. type: =item
3807 #: ../src/guestfs.pod:1723
3808 msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)"
3809 msgstr ""
3810
3811 #. type: textblock
3812 #: ../src/guestfs.pod:1726
3813 msgid ""
3814 "The callback function will be called when the child process becomes ready "
3815 "first time after it has been launched.  (This corresponds to a transition "
3816 "from LAUNCHING to the READY state)."
3817 msgstr ""
3818
3819 #. type: =item
3820 #: ../src/guestfs.pod:1732
3821 msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)"
3822 msgstr ""
3823
3824 # type: textblock
3825 #. type: textblock
3826 #: ../src/guestfs.pod:1735
3827 msgid ""
3828 "Some long-running operations can generate progress messages.  If this "
3829 "callback is registered, then it will be called each time a progress message "
3830 "is generated (usually two seconds after the operation started, and three "
3831 "times per second thereafter until it completes, although the frequency may "
3832 "change in future versions)."
3833 msgstr ""
3834
3835 #. type: textblock
3836 #: ../src/guestfs.pod:1741
3837 msgid ""
3838 "The callback receives in the payload four unsigned 64 bit numbers which are "
3839 "(in order): C<proc_nr>, C<serial>, C<position>, C<total>."
3840 msgstr ""
3841
3842 #. type: textblock
3843 #: ../src/guestfs.pod:1744
3844 msgid ""
3845 "The units of C<total> are not defined, although for some operations C<total> "
3846 "may relate in some way to the amount of data to be transferred (eg. in bytes "
3847 "or megabytes), and C<position> may be the portion which has been transferred."
3848 msgstr ""
3849
3850 # type: textblock
3851 #. type: textblock
3852 #: ../src/guestfs.pod:1749
3853 msgid "The only defined and stable parts of the API are:"
3854 msgstr ""
3855
3856 # type: textblock
3857 #. type: textblock
3858 #: ../src/guestfs.pod:1755
3859 msgid ""
3860 "The callback can display to the user some type of progress bar or indicator "
3861 "which shows the ratio of C<position>:C<total>."
3862 msgstr ""
3863
3864 # type: textblock
3865 #. type: textblock
3866 #: ../src/guestfs.pod:1760
3867 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3868 msgstr ""
3869
3870 #. type: textblock
3871 #: ../src/guestfs.pod:1764
3872 msgid ""
3873 "If any progress notification is sent during a call, then a final progress "
3874 "notification is always sent when C<position> = C<total> (I<unless> the call "
3875 "fails with an error)."
3876 msgstr ""
3877
3878 # type: textblock
3879 #. type: textblock
3880 #: ../src/guestfs.pod:1768
3881 msgid ""
3882 "This is to simplify caller code, so callers can easily set the progress "
3883 "indicator to \"100%\" at the end of the operation, without requiring special "
3884 "code to detect this case."
3885 msgstr ""
3886
3887 #. type: textblock
3888 #: ../src/guestfs.pod:1774
3889 msgid ""
3890 "For some calls we are unable to estimate the progress of the call, but we "
3891 "can still generate progress messages to indicate activity.  This is known as "
3892 "\"pulse mode\", and is directly supported by certain progress bar "
3893 "implementations (eg. GtkProgressBar)."
3894 msgstr ""
3895
3896 #. type: textblock
3897 #: ../src/guestfs.pod:1779
3898 msgid ""
3899 "For these calls, zero or more progress messages are generated with "
3900 "C<position = 0> and C<total = 1>, followed by a final message with "
3901 "C<position = total = 1>."
3902 msgstr ""
3903
3904 #. type: textblock
3905 #: ../src/guestfs.pod:1783
3906 msgid ""
3907 "As noted above, if the call fails with an error then the final message may "
3908 "not be generated."
3909 msgstr ""
3910
3911 #. type: textblock
3912 #: ../src/guestfs.pod:1788
3913 msgid ""
3914 "The callback also receives the procedure number (C<proc_nr>) and serial "
3915 "number (C<serial>) of the call.  These are only useful for debugging "
3916 "protocol issues, and the callback can normally ignore them.  The callback "
3917 "may want to print these numbers in error messages or debugging messages."
3918 msgstr ""
3919
3920 #. type: textblock
3921 #: ../src/guestfs.pod:1794
3922 msgid "If no callback is registered: progress messages are discarded."
3923 msgstr ""
3924
3925 #. type: =item
3926 #: ../src/guestfs.pod:1796
3927 msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)"
3928 msgstr ""
3929
3930 #. type: textblock
3931 #: ../src/guestfs.pod:1799
3932 msgid ""
3933 "The callback function is called whenever a log message is generated by qemu, "
3934 "the appliance kernel, guestfsd (daemon), or utility programs."
3935 msgstr ""
3936
3937 #. type: textblock
3938 #: ../src/guestfs.pod:1802
3939 msgid ""
3940 "If the verbose flag (L</guestfs_set_verbose>) is set before launch (L</"
3941 "guestfs_launch>) then additional debug messages are generated."
3942 msgstr ""
3943
3944 #. type: textblock
3945 #: ../src/guestfs.pod:1805 ../src/guestfs.pod:1819
3946 msgid ""
3947 "If no callback is registered: the messages are discarded unless the verbose "
3948 "flag is set in which case they are sent to stderr.  You can override the "
3949 "printing of verbose messages to stderr by setting up a callback."
3950 msgstr ""
3951
3952 #. type: =item
3953 #: ../src/guestfs.pod:1810
3954 msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)"
3955 msgstr ""
3956
3957 #. type: textblock
3958 #: ../src/guestfs.pod:1813
3959 msgid ""
3960 "The callback function is called whenever a log message is generated by the "
3961 "library part of libguestfs."
3962 msgstr ""
3963
3964 #. type: textblock
3965 #: ../src/guestfs.pod:1816
3966 msgid ""
3967 "If the verbose flag (L</guestfs_set_verbose>) is set then additional debug "
3968 "messages are generated."
3969 msgstr ""
3970
3971 #. type: =item
3972 #: ../src/guestfs.pod:1824
3973 msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)"
3974 msgstr ""
3975
3976 #. type: textblock
3977 #: ../src/guestfs.pod:1827
3978 msgid ""
3979 "The callback function is called whenever a trace message is generated.  This "
3980 "only applies if the trace flag (L</guestfs_set_trace>) is set."
3981 msgstr ""
3982
3983 #. type: textblock
3984 #: ../src/guestfs.pod:1830
3985 msgid ""
3986 "If no callback is registered: the messages are sent to stderr.  You can "
3987 "override the printing of trace messages to stderr by setting up a callback."
3988 msgstr ""
3989
3990 #. type: =head3
3991 #: ../src/guestfs.pod:1836
3992 msgid "guestfs_set_event_callback"
3993 msgstr ""
3994
3995 #. type: verbatim
3996 #: ../src/guestfs.pod:1838
3997 #, no-wrap
3998 msgid ""
3999 " int guestfs_set_event_callback (guestfs_h *g,\n"
4000 "                                 guestfs_event_callback cb,\n"
4001 "                                 uint64_t event_bitmask,\n"
4002 "                                 int flags,\n"
4003 "                                 void *opaque);\n"
4004 "\n"
4005 msgstr ""
4006
4007 #. type: textblock
4008 #: ../src/guestfs.pod:1844
4009 msgid ""
4010 "This function registers a callback (C<cb>) for all event classes in the "
4011 "C<event_bitmask>."
4012 msgstr ""
4013
4014 #. type: textblock
4015 #: ../src/guestfs.pod:1847
4016 msgid ""
4017 "For example, to register for all log message events, you could call this "
4018 "function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>.  "
4019 "To register a single callback for all possible classes of events, use "
4020 "C<GUESTFS_EVENT_ALL>."
4021 msgstr ""
4022
4023 #. type: textblock
4024 #: ../src/guestfs.pod:1853
4025 msgid "C<flags> should always be passed as 0."
4026 msgstr ""
4027
4028 #. type: textblock
4029 #: ../src/guestfs.pod:1855
4030 msgid ""
4031 "C<opaque> is an opaque pointer which is passed to the callback.  You can use "
4032 "it for any purpose."
4033 msgstr ""
4034
4035 #. type: textblock
4036 #: ../src/guestfs.pod:1858
4037 msgid ""
4038 "The return value is the event handle (an integer) which you can use to "
4039 "delete the callback (see below)."
4040 msgstr ""
4041
4042 #. type: textblock
4043 #: ../src/guestfs.pod:1861
4044 msgid ""
4045 "If there is an error, this function returns C<-1>, and sets the error in the "
4046 "handle in the usual way (see L</guestfs_last_error> etc.)"
4047 msgstr ""
4048
4049 #. type: textblock
4050 #: ../src/guestfs.pod:1864
4051 msgid ""
4052 "Callbacks remain in effect until they are deleted, or until the handle is "
4053 "closed."
4054 msgstr ""
4055
4056 #. type: textblock
4057 #: ../src/guestfs.pod:1867
4058 msgid ""
4059 "In the case where multiple callbacks are registered for a particular event "
4060 "class, all of the callbacks are called.  The order in which multiple "
4061 "callbacks are called is not defined."
4062 msgstr ""
4063
4064 #. type: =head3
4065 #: ../src/guestfs.pod:1871
4066 msgid "guestfs_delete_event_callback"
4067 msgstr ""
4068
4069 #. type: verbatim
4070 #: ../src/guestfs.pod:1873
4071 #, no-wrap
4072 msgid ""
4073 " void guestfs_delete_event_callback (guestfs_h *g, int event_handle);\n"
4074 "\n"
4075 msgstr ""
4076
4077 #. type: textblock
4078 #: ../src/guestfs.pod:1875
4079 msgid ""
4080 "Delete a callback that was previously registered.  C<event_handle> should be "
4081 "the integer that was returned by a previous call to "
4082 "C<guestfs_set_event_callback> on the same handle."
4083 msgstr ""
4084
4085 #. type: =head3
4086 #: ../src/guestfs.pod:1879
4087 msgid "guestfs_event_callback"
4088 msgstr ""
4089
4090 #. type: verbatim
4091 #: ../src/guestfs.pod:1881
4092 #, no-wrap
4093 msgid ""
4094 " typedef void (*guestfs_event_callback) (\n"
4095 "                  guestfs_h *g,\n"
4096 "                  void *opaque,\n"
4097 "                  uint64_t event,\n"
4098 "                  int event_handle,\n"
4099 "                  int flags,\n"
4100 "                  const char *buf, size_t buf_len,\n"
4101 "                  const uint64_t *array, size_t array_len);\n"
4102 "\n"
4103 msgstr ""
4104
4105 #. type: textblock
4106 #: ../src/guestfs.pod:1890
4107 msgid ""
4108 "This is the type of the event callback function that you have to provide."
4109 msgstr ""
4110
4111 #. type: textblock
4112 #: ../src/guestfs.pod:1893
4113 msgid ""
4114 "The basic parameters are: the handle (C<g>), the opaque user pointer "
4115 "(C<opaque>), the event class (eg. C<GUESTFS_EVENT_PROGRESS>), the event "
4116 "handle, and C<flags> which in the current API you should ignore."
4117 msgstr ""
4118
4119 #. type: textblock
4120 #: ../src/guestfs.pod:1897
4121 msgid ""
4122 "The remaining parameters contain the event payload (if any).  Each event may "
4123 "contain a payload, which usually relates to the event class, but for future "
4124 "proofing your code should be written to handle any payload for any event "
4125 "class."
4126 msgstr ""
4127
4128 #. type: textblock
4129 #: ../src/guestfs.pod:1902
4130 msgid ""
4131 "C<buf> and C<buf_len> contain a message buffer (if C<buf_len == 0>, then "
4132 "there is no message buffer).  Note that this message buffer can contain "
4133 "arbitrary 8 bit data, including NUL bytes."
4134 msgstr ""
4135
4136 #. type: textblock
4137 #: ../src/guestfs.pod:1906
4138 msgid ""
4139 "C<array> and C<array_len> is an array of 64 bit unsigned integers.  At the "
4140 "moment this is only used for progress messages."
4141 msgstr ""
4142
4143 #. type: =head3
4144 #: ../src/guestfs.pod:1909
4145 msgid "EXAMPLE: CAPTURING LOG MESSAGES"
4146 msgstr ""
4147
4148 #. type: textblock
4149 #: ../src/guestfs.pod:1911
4150 msgid ""
4151 "One motivation for the generic event API was to allow GUI programs to "
4152 "capture debug and other messages.  In libguestfs E<le> 1.8 these were sent "
4153 "unconditionally to C<stderr>."
4154 msgstr ""
4155
4156 #. type: textblock
4157 #: ../src/guestfs.pod:1915
4158 msgid ""
4159 "Events associated with log messages are: C<GUESTFS_EVENT_LIBRARY>, "
4160 "C<GUESTFS_EVENT_APPLIANCE> and C<GUESTFS_EVENT_TRACE>.  (Note that error "
4161 "messages are not events; you must capture error messages separately)."
4162 msgstr ""
4163
4164 #. type: textblock
4165 #: ../src/guestfs.pod:1920
4166 msgid ""
4167 "Programs have to set up a callback to capture the classes of events of "
4168 "interest:"
4169 msgstr ""
4170
4171 #. type: verbatim
4172 #: ../src/guestfs.pod:1923
4173 #, no-wrap
4174 msgid ""
4175 " int eh =\n"
4176 "   guestfs_set_event_callback\n"
4177 "     (g, message_callback,\n"
4178 "      GUESTFS_EVENT_LIBRARY|GUESTFS_EVENT_APPLIANCE|\n"
4179 "      GUESTFS_EVENT_TRACE,\n"
4180 "      0, NULL) == -1)\n"
4181 " if (eh == -1) {\n"
4182 "   // handle error in the usual way\n"
4183 " }\n"
4184 "\n"
4185 msgstr ""
4186
4187 #. type: textblock
4188 #: ../src/guestfs.pod:1933
4189 msgid ""
4190 "The callback can then direct messages to the appropriate place.  In this "
4191 "example, messages are directed to syslog:"
4192 msgstr ""
4193
4194 #. type: verbatim
4195 #: ../src/guestfs.pod:1936
4196 #, no-wrap
4197 msgid ""
4198 " static void\n"
4199 " message_callback (\n"
4200 "         guestfs_h *g,\n"
4201 "         void *opaque,\n"
4202 "         uint64_t event,\n"
4203 "         int event_handle,\n"
4204 "         int flags,\n"
4205 "         const char *buf, size_t buf_len,\n"
4206 "         const uint64_t *array, size_t array_len)\n"
4207 " {\n"
4208 "   const int priority = LOG_USER|LOG_INFO;\n"
4209 "   if (buf_len > 0)\n"
4210 "     syslog (priority, \"event 0x%lx: %s\", event, buf);\n"
4211 " }\n"
4212 "\n"
4213 msgstr ""
4214
4215 # type: =head1
4216 #. type: =head1
4217 #: ../src/guestfs.pod:1951
4218 msgid "PRIVATE DATA AREA"
4219 msgstr ""
4220
4221 #. type: textblock
4222 #: ../src/guestfs.pod:1953
4223 msgid ""
4224 "You can attach named pieces of private data to the libguestfs handle, fetch "
4225 "them by name, and walk over them, for the lifetime of the handle.  This is "
4226 "called the private data area and is only available from the C API."
4227 msgstr ""
4228
4229 # type: textblock
4230 #. type: textblock
4231 #: ../src/guestfs.pod:1958
4232 msgid "To attach a named piece of data, use the following call:"
4233 msgstr ""
4234
4235 # type: verbatim
4236 #. type: verbatim
4237 #: ../src/guestfs.pod:1960
4238 #, no-wrap
4239 msgid ""
4240 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
4241 "\n"
4242 msgstr ""
4243
4244 #. type: textblock
4245 #: ../src/guestfs.pod:1962
4246 msgid ""
4247 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
4248 "pointer (which can be C<NULL>).  Any previous item with the same key is "
4249 "overwritten."
4250 msgstr ""
4251
4252 #. type: textblock
4253 #: ../src/guestfs.pod:1966
4254 msgid ""
4255 "You can use any C<key> you want, but your key should I<not> start with an "
4256 "underscore character.  Keys beginning with an underscore character are "
4257 "reserved for internal libguestfs purposes (eg. for implementing language "
4258 "bindings).  It is recommended that you prefix the key with some unique "
4259 "string to avoid collisions with other users."
4260 msgstr ""
4261
4262 # type: textblock
4263 #. type: textblock
4264 #: ../src/guestfs.pod:1972
4265 msgid "To retrieve the pointer, use:"
4266 msgstr ""
4267
4268 # type: verbatim
4269 #. type: verbatim
4270 #: ../src/guestfs.pod:1974
4271 #, no-wrap
4272 msgid ""
4273 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
4274 "\n"
4275 msgstr ""
4276
4277 # type: textblock
4278 #. type: textblock
4279 #: ../src/guestfs.pod:1976
4280 msgid ""
4281 "This function returns C<NULL> if either no data is found associated with "
4282 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
4283 "C<NULL>."
4284 msgstr ""
4285
4286 #. type: textblock
4287 #: ../src/guestfs.pod:1980
4288 msgid ""
4289 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
4290 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
4291 "all.  In particular, libguestfs does I<not> try to free the data when the "
4292 "handle is closed.  If the data must be freed, then the caller must either "
4293 "free it before calling L</guestfs_close> or must set up a close callback to "
4294 "do it (see L</GUESTFS_EVENT_CLOSE>)."
4295 msgstr ""
4296
4297 #. type: textblock
4298 #: ../src/guestfs.pod:1987
4299 msgid "To walk over all entries, use these two functions:"
4300 msgstr ""
4301
4302 #. type: verbatim
4303 #: ../src/guestfs.pod:1989
4304 #, no-wrap
4305 msgid ""
4306 " void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n"
4307 "\n"
4308 msgstr ""
4309
4310 #. type: verbatim
4311 #: ../src/guestfs.pod:1991
4312 #, no-wrap
4313 msgid ""
4314 " void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n"
4315 "\n"
4316 msgstr ""
4317
4318 #. type: textblock
4319 #: ../src/guestfs.pod:1993
4320 msgid ""
4321 "C<guestfs_first_private> returns the first key, pointer pair (\"first\" does "
4322 "not have any particular meaning -- keys are not returned in any defined "
4323 "order).  A pointer to the key is returned in C<*key_rtn> and the "
4324 "corresponding data pointer is returned from the function.  C<NULL> is "
4325 "returned if there are no keys stored in the handle."
4326 msgstr ""
4327
4328 #. type: textblock
4329 #: ../src/guestfs.pod:1999
4330 msgid ""
4331 "C<guestfs_next_private> returns the next key, pointer pair.  The return "
4332 "value of this function is also C<NULL> is there are no further entries to "
4333 "return."
4334 msgstr ""
4335
4336 #. type: textblock
4337 #: ../src/guestfs.pod:2003
4338 msgid "Notes about walking over entries:"
4339 msgstr ""
4340
4341 #. type: textblock
4342 #: ../src/guestfs.pod:2009
4343 msgid ""
4344 "You must not call C<guestfs_set_private> while walking over the entries."
4345 msgstr ""
4346
4347 #. type: textblock
4348 #: ../src/guestfs.pod:2014
4349 msgid ""
4350 "The handle maintains an internal iterator which is reset when you call "
4351 "C<guestfs_first_private>.  This internal iterator is invalidated when you "
4352 "call C<guestfs_set_private>."
4353 msgstr ""
4354
4355 #. type: textblock
4356 #: ../src/guestfs.pod:2020
4357 msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
4358 msgstr ""
4359
4360 #. type: verbatim
4361 #: ../src/guestfs.pod:2022
4362 #, no-wrap
4363 msgid ""
4364 " guestfs_set_private (g, key, NULL);\n"
4365 "\n"
4366 msgstr ""
4367
4368 #. type: textblock
4369 #: ../src/guestfs.pod:2024
4370 msgid "then that C<key> is not returned when walking."
4371 msgstr ""
4372
4373 #. type: textblock
4374 #: ../src/guestfs.pod:2028
4375 msgid ""
4376 "C<*key_rtn> is only valid until the next call to C<guestfs_first_private>, "
4377 "C<guestfs_next_private> or C<guestfs_set_private>."
4378 msgstr ""
4379
4380 #. type: textblock
4381 #: ../src/guestfs.pod:2034
4382 msgid ""
4383 "The following example code shows how to print all keys and data pointers "
4384 "that are associated with the handle C<g>:"
4385 msgstr ""
4386
4387 #. type: verbatim
4388 #: ../src/guestfs.pod:2037
4389 #, no-wrap
4390 msgid ""
4391 " const char *key;\n"
4392 " void *data = guestfs_first_private (g, &key);\n"
4393 " while (data != NULL)\n"
4394 "   {\n"
4395 "     printf (\"key = %s, data = %p\\n\", key, data);\n"
4396 "     data = guestfs_next_private (g, &key);\n"
4397 "   }\n"
4398 "\n"
4399 msgstr ""
4400
4401 #. type: textblock
4402 #: ../src/guestfs.pod:2045
4403 msgid ""
4404 "More commonly you are only interested in keys that begin with an application-"
4405 "specific prefix C<foo_>.  Modify the loop like so:"
4406 msgstr ""
4407
4408 #. type: verbatim
4409 #: ../src/guestfs.pod:2048
4410 #, no-wrap
4411 msgid ""
4412 " const char *key;\n"
4413 " void *data = guestfs_first_private (g, &key);\n"
4414 " while (data != NULL)\n"
4415 "   {\n"
4416 "     if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4417 "       printf (\"key = %s, data = %p\\n\", key, data);\n"
4418 "     data = guestfs_next_private (g, &key);\n"
4419 "   }\n"
4420 "\n"
4421 msgstr ""
4422
4423 #. type: textblock
4424 #: ../src/guestfs.pod:2057
4425 msgid ""
4426 "If you need to modify keys while walking, then you have to jump back to the "
4427 "beginning of the loop.  For example, to delete all keys prefixed with "
4428 "C<foo_>:"
4429 msgstr ""
4430
4431 #. type: verbatim
4432 #: ../src/guestfs.pod:2061
4433 #, no-wrap
4434 msgid ""
4435 "  const char *key;\n"
4436 "  void *data;\n"
4437 " again:\n"
4438 "  data = guestfs_first_private (g, &key);\n"
4439 "  while (data != NULL)\n"
4440 "    {\n"
4441 "      if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4442 "        {\n"
4443 "          guestfs_set_private (g, key, NULL);\n"
4444 "          /* note that 'key' pointer is now invalid, and so is\n"
4445 "             the internal iterator */\n"
4446 "          goto again;\n"
4447 "        }\n"
4448 "      data = guestfs_next_private (g, &key);\n"
4449 "    }\n"
4450 "\n"
4451 msgstr ""
4452
4453 #. type: textblock
4454 #: ../src/guestfs.pod:2077
4455 msgid ""
4456 "Note that the above loop is guaranteed to terminate because the keys are "
4457 "being deleted, but other manipulations of keys within the loop might not "
4458 "terminate unless you also maintain an indication of which keys have been "
4459 "visited."
4460 msgstr ""
4461
4462 # type: =end
4463 #. type: =end
4464 #: ../src/guestfs.pod:2082 ../src/guestfs.pod:2087
4465 msgid "html"
4466 msgstr ""
4467
4468 # type: textblock
4469 #. type: textblock
4470 #: ../src/guestfs.pod:2084
4471 msgid ""
4472 "<!-- old anchor for the next section --> <a name="
4473 "\"state_machine_and_low_level_event_api\"/>"
4474 msgstr ""
4475
4476 # type: =head1
4477 #. type: =head1
4478 #: ../src/guestfs.pod:2089
4479 msgid "ARCHITECTURE"
4480 msgstr ""
4481
4482 # type: textblock
4483 #. type: textblock
4484 #: ../src/guestfs.pod:2091
4485 msgid ""
4486 "Internally, libguestfs is implemented by running an appliance (a special "
4487 "type of small virtual machine) using L<qemu(1)>.  Qemu runs as a child "
4488 "process of the main program."
4489 msgstr ""
4490
4491 # type: verbatim
4492 #. type: verbatim
4493 #: ../src/guestfs.pod:2095
4494 #, no-wrap
4495 msgid ""
4496 "  ___________________\n"
4497 " /                   \\\n"
4498 " | main program      |\n"
4499 " |                   |\n"
4500 " |                   |           child process / appliance\n"
4501 " |                   |           __________________________\n"
4502 " |                   |          / qemu                     \\\n"
4503 " +-------------------+   RPC    |      +-----------------+ |\n"
4504 " | libguestfs     <--------------------> guestfsd        | |\n"
4505 " |                   |          |      +-----------------+ |\n"
4506 " \\___________________/          |      | Linux kernel    | |\n"
4507 "                                |      +--^--------------+ |\n"
4508 "                                \\_________|________________/\n"
4509 "                                          |\n"
4510 "                                   _______v______\n"
4511 "                                  /              \\\n"
4512 "                                  | Device or    |\n"
4513 "                                  | disk image   |\n"
4514 "                                  \\______________/\n"
4515 "\n"
4516 msgstr ""
4517
4518 # type: textblock
4519 #. type: textblock
4520 #: ../src/guestfs.pod:2115
4521 msgid ""
4522 "The library, linked to the main program, creates the child process and hence "
4523 "the appliance in the L</guestfs_launch> function."
4524 msgstr ""
4525
4526 # type: textblock
4527 #. type: textblock
4528 #: ../src/guestfs.pod:2118
4529 msgid ""
4530 "Inside the appliance is a Linux kernel and a complete stack of userspace "
4531 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
4532 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
4533 "calls (RPC).  There is a mostly one-to-one correspondence between libguestfs "
4534 "API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
4535 "attached to the qemu process which translates device access by the "
4536 "appliance's Linux kernel into accesses to the image."
4537 msgstr ""
4538
4539 # type: textblock
4540 #. type: textblock
4541 #: ../src/guestfs.pod:2127
4542 msgid ""
4543 "A common misunderstanding is that the appliance \"is\" the virtual machine.  "
4544 "Although the disk image you are attached to might also be used by some "
4545 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
4546 "care if both libguestfs's qemu process and your virtual machine are trying "
4547 "to update the disk image at the same time, since these usually results in "
4548 "massive disk corruption)."
4549 msgstr ""
4550
4551 # type: =head1
4552 #. type: =head1
4553 #: ../src/guestfs.pod:2134
4554 msgid "STATE MACHINE"
4555 msgstr ""
4556
4557 # type: textblock
4558 #. type: textblock
4559 #: ../src/guestfs.pod:2136
4560 msgid "libguestfs uses a state machine to model the child process:"
4561 msgstr ""
4562
4563 # type: verbatim
4564 #. type: verbatim
4565 #: ../src/guestfs.pod:2138
4566 #, no-wrap
4567 msgid ""
4568 "                         |\n"
4569 "                    guestfs_create\n"
4570 "                         |\n"
4571 "                         |\n"
4572 "                     ____V_____\n"
4573 "                    /          \\\n"
4574 "                    |  CONFIG  |\n"
4575 "                    \\__________/\n"
4576 "                     ^ ^   ^  \\\n"
4577 "                    /  |    \\  \\ guestfs_launch\n"
4578 "                   /   |    _\\__V______\n"
4579 "                  /    |   /           \\\n"
4580 "                 /     |   | LAUNCHING |\n"
4581 "                /      |   \\___________/\n"
4582 "               /       |       /\n"
4583 "              /        |  guestfs_launch\n"
4584 "             /         |     /\n"
4585 "    ______  /        __|____V\n"
4586 "   /      \\ ------> /        \\\n"
4587 "   | BUSY |         | READY  |\n"
4588 "   \\______/ <------ \\________/\n"
4589 "\n"
4590 msgstr ""
4591
4592 # type: textblock
4593 #. type: textblock
4594 #: ../src/guestfs.pod:2160
4595 msgid ""
4596 "The normal transitions are (1) CONFIG (when the handle is created, but there "
4597 "is no child process), (2) LAUNCHING (when the child process is booting up), "
4598 "(3) alternating between READY and BUSY as commands are issued to, and "
4599 "carried out by, the child process."
4600 msgstr ""
4601
4602 # type: textblock
4603 #. type: textblock
4604 #: ../src/guestfs.pod:2165
4605 msgid ""
4606 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
4607 "asynchronously at any time (eg. due to some internal error), and that causes "
4608 "the state to transition back to CONFIG."
4609 msgstr ""
4610
4611 # type: textblock
4612 #. type: textblock
4613 #: ../src/guestfs.pod:2169
4614 msgid ""
4615 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
4616 "issued when in the CONFIG state."
4617 msgstr ""
4618
4619 # type: textblock
4620 #. type: textblock
4621 #: ../src/guestfs.pod:2172
4622 msgid ""
4623 "The API offers one call that goes from CONFIG through LAUNCHING to READY.  "
4624 "L</guestfs_launch> blocks until the child process is READY to accept "
4625 "commands (or until some failure or timeout).  L</guestfs_launch> internally "
4626 "moves the state from CONFIG to LAUNCHING while it is running."
4627 msgstr ""
4628
4629 # type: textblock
4630 #. type: textblock
4631 #: ../src/guestfs.pod:2178
4632 msgid ""
4633 "API actions such as L</guestfs_mount> can only be issued when in the READY "
4634 "state.  These API calls block waiting for the command to be carried out (ie. "
4635 "the state to transition to BUSY and then back to READY).  There are no non-"
4636 "blocking versions, and no way to issue more than one command per handle at "
4637 "the same time."
4638 msgstr ""
4639
4640 # type: textblock
4641 #. type: textblock
4642 #: ../src/guestfs.pod:2184
4643 msgid ""
4644 "Finally, the child process sends asynchronous messages back to the main "
4645 "program, such as kernel log messages.  You can register a callback to "
4646 "receive these messages."
4647 msgstr ""
4648
4649 # type: =head1
4650 #. type: =head1
4651 #: ../src/guestfs.pod:2188
4652 msgid "INTERNALS"
4653 msgstr ""
4654
4655 # type: =head2
4656 #. type: =head2
4657 #: ../src/guestfs.pod:2190
4658 msgid "COMMUNICATION PROTOCOL"
4659 msgstr ""
4660
4661 # type: textblock
4662 #. type: textblock
4663 #: ../src/guestfs.pod:2192
4664 msgid ""
4665 "Don't rely on using this protocol directly.  This section documents how it "
4666 "currently works, but it may change at any time."
4667 msgstr ""
4668
4669 # type: textblock
4670 #. type: textblock
4671 #: ../src/guestfs.pod:2195
4672 msgid ""
4673 "The protocol used to talk between the library and the daemon running inside "
4674 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
4675 "1014, RFC 1832, RFC 4506)."
4676 msgstr ""
4677
4678 # type: textblock
4679 #. type: textblock
4680 #: ../src/guestfs.pod:2199
4681 msgid ""
4682 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
4683 "this file is automatically generated)."
4684 msgstr ""
4685
4686 # type: textblock
4687 #. type: textblock
4688 #: ../src/guestfs.pod:2202
4689 msgid ""
4690 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
4691 "and C<FileOut> parameters, which are handled with very simple request/reply "
4692 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
4693 "parameters, which use the same request and reply messages, but they may also "
4694 "be followed by files sent using a chunked encoding."
4695 msgstr ""
4696
4697 # type: =head3
4698 #. type: =head3
4699 #: ../src/guestfs.pod:2209
4700 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4701 msgstr ""
4702
4703 # type: textblock
4704 #. type: textblock
4705 #: ../src/guestfs.pod:2211
4706 msgid "For ordinary functions, the request message is:"
4707 msgstr ""
4708
4709 # type: verbatim
4710 #. type: verbatim
4711 #: ../src/guestfs.pod:2213
4712 #, no-wrap
4713 msgid ""
4714 " total length (header + arguments,\n"
4715 "      but not including the length word itself)\n"
4716 " struct guestfs_message_header (encoded as XDR)\n"
4717 " struct guestfs_<foo>_args (encoded as XDR)\n"
4718 "\n"
4719 msgstr ""
4720
4721 # type: textblock
4722 #. type: textblock
4723 #: ../src/guestfs.pod:2218
4724 msgid ""
4725 "The total length field allows the daemon to allocate a fixed size buffer "
4726 "into which it slurps the rest of the message.  As a result, the total length "
4727 "is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
4728 "effective size of any request is limited to somewhere under this size."
4729 msgstr ""
4730
4731 # type: textblock
4732 #. type: textblock
4733 #: ../src/guestfs.pod:2224
4734 msgid ""
4735 "Note also that many functions don't take any arguments, in which case the "
4736 "C<guestfs_I<foo>_args> is completely omitted."
4737 msgstr ""
4738
4739 # type: textblock
4740 #. type: textblock
4741 #: ../src/guestfs.pod:2227
4742 msgid ""
4743 "The header contains the procedure number (C<guestfs_proc>) which is how the "
4744 "receiver knows what type of args structure to expect, or none at all."
4745 msgstr ""
4746
4747 # type: textblock
4748 #. type: textblock
4749 #: ../src/guestfs.pod:2231
4750 msgid ""
4751 "For functions that take optional arguments, the optional arguments are "
4752 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
4753 "arguments.  A bitmask in the header indicates which optional arguments are "
4754 "meaningful.  The bitmask is also checked to see if it contains bits set "
4755 "which the daemon does not know about (eg. if more optional arguments were "
4756 "added in a later version of the library), and this causes the call to be "
4757 "rejected."
4758 msgstr ""
4759
4760 # type: textblock
4761 #. type: textblock
4762 #: ../src/guestfs.pod:2239
4763 msgid "The reply message for ordinary functions is:"
4764 msgstr ""
4765
4766 # type: verbatim
4767 #. type: verbatim
4768 #: ../src/guestfs.pod:2241
4769 #, no-wrap
4770 msgid ""
4771 " total length (header + ret,\n"
4772 "      but not including the length word itself)\n"
4773 " struct guestfs_message_header (encoded as XDR)\n"
4774 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4775 "\n"
4776 msgstr ""
4777
4778 # type: textblock
4779 #. type: textblock
4780 #: ../src/guestfs.pod:2246
4781 msgid ""
4782 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
4783 "functions that return no formal return values."
4784 msgstr ""
4785
4786 # type: textblock
4787 #. type: textblock
4788 #: ../src/guestfs.pod:2249
4789 msgid ""
4790 "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
4791 msgstr ""
4792
4793 # type: textblock
4794 #. type: textblock
4795 #: ../src/guestfs.pod:2252
4796 msgid ""
4797 "In the case of an error, a flag is set in the header, and the reply message "
4798 "is slightly changed:"
4799 msgstr ""
4800
4801 # type: verbatim
4802 #. type: verbatim
4803 #: ../src/guestfs.pod:2255
4804 #, no-wrap
4805 msgid ""
4806 " total length (header + error,\n"
4807 "      but not including the length word itself)\n"
4808 " struct guestfs_message_header (encoded as XDR)\n"
4809 " struct guestfs_message_error (encoded as XDR)\n"
4810 "\n"
4811 msgstr ""
4812
4813 # type: textblock
4814 #. type: textblock
4815 #: ../src/guestfs.pod:2260
4816 msgid ""
4817 "The C<guestfs_message_error> structure contains the error message as a "
4818 "string."
4819 msgstr ""
4820
4821 # type: =head3
4822 #. type: =head3
4823 #: ../src/guestfs.pod:2263
4824 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4825 msgstr ""
4826
4827 # type: textblock
4828 #. type: textblock
4829 #: ../src/guestfs.pod:2265
4830 msgid ""
4831 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
4832 "The normal request message is sent (see above).  However this is followed by "
4833 "a sequence of file chunks."
4834 msgstr ""
4835
4836 # type: verbatim
4837 #. type: verbatim
4838 #: ../src/guestfs.pod:2269
4839 #, no-wrap
4840 msgid ""
4841 " total length (header + arguments,\n"
4842 "      but not including the length word itself,\n"
4843 "      and not including the chunks)\n"
4844 " struct guestfs_message_header (encoded as XDR)\n"
4845 " struct guestfs_<foo>_args (encoded as XDR)\n"
4846 " sequence of chunks for FileIn param #0\n"
4847 " sequence of chunks for FileIn param #1 etc.\n"
4848 "\n"
4849 msgstr ""
4850
4851 # type: textblock
4852 #. type: textblock
4853 #: ../src/guestfs.pod:2277
4854 msgid "The \"sequence of chunks\" is:"
4855 msgstr ""
4856
4857 # type: verbatim
4858 #. type: verbatim
4859 #: ../src/guestfs.pod:2279
4860 #, no-wrap
4861 msgid ""
4862 " length of chunk (not including length word itself)\n"
4863 " struct guestfs_chunk (encoded as XDR)\n"
4864 " length of chunk\n"
4865 " struct guestfs_chunk (encoded as XDR)\n"
4866 "   ...\n"
4867 " length of chunk\n"
4868 " struct guestfs_chunk (with data.data_len == 0)\n"
4869 "\n"
4870 msgstr ""
4871
4872 # type: textblock
4873 #. type: textblock
4874 #: ../src/guestfs.pod:2287
4875 msgid ""
4876 "The final chunk has the C<data_len> field set to zero.  Additionally a flag "
4877 "is set in the final chunk to indicate either successful completion or early "
4878 "cancellation."
4879 msgstr ""
4880
4881 # type: textblock
4882 #. type: textblock
4883 #: ../src/guestfs.pod:2291
4884 msgid ""
4885 "At time of writing there are no functions that have more than one FileIn "
4886 "parameter.  However this is (theoretically) supported, by sending the "
4887 "sequence of chunks for each FileIn parameter one after another (from left to "
4888 "right)."
4889 msgstr ""
4890
4891 # type: textblock
4892 #. type: textblock
4893 #: ../src/guestfs.pod:2296
4894 msgid ""
4895 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
4896 "transfer.  The library does this by sending a chunk with a special flag set "
4897 "to indicate cancellation.  When the daemon sees this, it cancels the whole "
4898 "RPC, does I<not> send any reply, and goes back to reading the next request."
4899 msgstr ""
4900
4901 # type: textblock
4902 #. type: textblock
4903 #: ../src/guestfs.pod:2302
4904 msgid ""
4905 "The daemon may also cancel.  It does this by writing a special word "
4906 "C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this during "
4907 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
4908 "cancel chunk).  The special word is chosen so that even if cancellation "
4909 "happens right at the end of the transfer (after the library has finished "
4910 "writing and has started listening for the reply), the \"spurious\" cancel "
4911 "flag will not be confused with the reply message."
4912 msgstr ""
4913
4914 # type: textblock
4915 #. type: textblock
4916 #: ../src/guestfs.pod:2311
4917 msgid ""
4918 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
4919 "limit), and also files where the size is not known in advance (eg. from "
4920 "pipes or sockets).  However the chunks are rather small "
4921 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
4922 "to keep much in memory."
4923 msgstr ""
4924
4925 # type: =head3
4926 #. type: =head3
4927 #: ../src/guestfs.pod:2317
4928 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4929 msgstr ""
4930
4931 # type: textblock
4932 #. type: textblock
4933 #: ../src/guestfs.pod:2319
4934 msgid ""
4935 "The protocol for FileOut parameters is exactly the same as for FileIn "
4936 "parameters, but with the roles of daemon and library reversed."
4937 msgstr ""
4938
4939 # type: verbatim
4940 #. type: verbatim
4941 #: ../src/guestfs.pod:2322
4942 #, no-wrap
4943 msgid ""
4944 " total length (header + ret,\n"
4945 "      but not including the length word itself,\n"
4946 "      and not including the chunks)\n"
4947 " struct guestfs_message_header (encoded as XDR)\n"
4948 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4949 " sequence of chunks for FileOut param #0\n"
4950 " sequence of chunks for FileOut param #1 etc.\n"
4951 "\n"
4952 msgstr ""
4953
4954 # type: =head3
4955 #. type: =head3
4956 #: ../src/guestfs.pod:2330
4957 msgid "INITIAL MESSAGE"
4958 msgstr ""
4959
4960 # type: textblock
4961 #. type: textblock
4962 #: ../src/guestfs.pod:2332
4963 msgid ""
4964 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
4965 "which indicates that the guest and daemon is alive.  This is what L</"
4966 "guestfs_launch> waits for."
4967 msgstr ""
4968
4969 # type: =head3
4970 #. type: =head3
4971 #: ../src/guestfs.pod:2336
4972 msgid "PROGRESS NOTIFICATION MESSAGES"
4973 msgstr ""
4974
4975 # type: textblock
4976 #. type: textblock
4977 #: ../src/guestfs.pod:2338
4978 msgid ""
4979 "The daemon may send progress notification messages at any time.  These are "
4980 "distinguished by the normal length word being replaced by "
4981 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
4982 msgstr ""
4983
4984 #. type: textblock
4985 #: ../src/guestfs.pod:2342
4986 msgid ""
4987 "The library turns them into progress callbacks (see L</"
4988 "GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards them "
4989 "if not."
4990 msgstr ""
4991
4992 # type: textblock
4993 #. type: textblock
4994 #: ../src/guestfs.pod:2346
4995 msgid ""
4996 "The daemon self-limits the frequency of progress messages it sends (see "
4997 "C<daemon/proto.c:notify_progress>).  Not all calls generate progress "
4998 "messages."
4999 msgstr ""
5000
5001 # type: =head1
5002 #. type: =head1
5003 #: ../src/guestfs.pod:2350
5004 msgid "LIBGUESTFS VERSION NUMBERS"
5005 msgstr ""
5006
5007 # type: textblock
5008 #. type: textblock
5009 #: ../src/guestfs.pod:2352
5010 msgid ""
5011 "Since April 2010, libguestfs has started to make separate development and "
5012 "stable releases, along with corresponding branches in our git repository.  "
5013 "These separate releases can be identified by version number:"
5014 msgstr ""
5015
5016 # type: verbatim
5017 #. type: verbatim
5018 #: ../src/guestfs.pod:2357
5019 #, no-wrap
5020 msgid ""
5021 "                 even numbers for stable: 1.2.x, 1.4.x, ...\n"
5022 "       .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
5023 "       |\n"
5024 "       v\n"
5025 " 1  .  3  .  5\n"
5026 " ^           ^\n"
5027 " |           |\n"
5028 " |           `-------- sub-version\n"
5029 " |\n"
5030 " `------ always '1' because we don't change the ABI\n"
5031 "\n"
5032 msgstr ""
5033
5034 # type: textblock
5035 #. type: textblock
5036 #: ../src/guestfs.pod:2368
5037 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
5038 msgstr ""
5039
5040 # type: textblock
5041 #. type: textblock
5042 #: ../src/guestfs.pod:2370
5043 msgid ""
5044 "As time passes we cherry pick fixes from the development branch and backport "
5045 "those into the stable branch, the effect being that the stable branch should "
5046 "get more stable and less buggy over time.  So the stable releases are ideal "
5047 "for people who don't need new features but would just like the software to "
5048 "work."
5049 msgstr ""
5050
5051 # type: textblock
5052 #. type: textblock
5053 #: ../src/guestfs.pod:2376
5054 msgid "Our criteria for backporting changes are:"
5055 msgstr ""
5056
5057 # type: textblock
5058 #. type: textblock
5059 #: ../src/guestfs.pod:2382
5060 msgid ""
5061 "Documentation changes which don't affect any code are backported unless the "
5062 "documentation refers to a future feature which is not in stable."
5063 msgstr ""
5064
5065 # type: textblock
5066 #. type: textblock
5067 #: ../src/guestfs.pod:2388
5068 msgid ""
5069 "Bug fixes which are not controversial, fix obvious problems, and have been "
5070 "well tested are backported."
5071 msgstr ""
5072
5073 # type: textblock
5074 #. type: textblock
5075 #: ../src/guestfs.pod:2393
5076 msgid ""
5077 "Simple rearrangements of code which shouldn't affect how it works get "
5078 "backported.  This is so that the code in the two branches doesn't get too "
5079 "far out of step, allowing us to backport future fixes more easily."
5080 msgstr ""
5081
5082 # type: textblock
5083 #. type: textblock
5084 #: ../src/guestfs.pod:2399
5085 msgid ""
5086 "We I<don't> backport new features, new APIs, new tools etc, except in one "
5087 "exceptional case: the new feature is required in order to implement an "
5088 "important bug fix."
5089 msgstr ""
5090
5091 # type: textblock
5092 #. type: textblock
5093 #: ../src/guestfs.pod:2405
5094 msgid ""
5095 "A new stable branch starts when we think the new features in development are "
5096 "substantial and compelling enough over the current stable branch to warrant "
5097 "it.  When that happens we create new stable and development versions 1.N.0 "
5098 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
5099 "stable at this point, but by backporting fixes from development, that branch "
5100 "will stabilize over time."
5101 msgstr ""
5102
5103 #. type: =head1
5104 #: ../src/guestfs.pod:2413
5105 msgid "EXTENDING LIBGUESTFS"
5106 msgstr ""
5107
5108 #. type: =head2
5109 #: ../src/guestfs.pod:2415
5110 msgid "ADDING A NEW API ACTION"
5111 msgstr ""
5112
5113 #. type: textblock
5114 #: ../src/guestfs.pod:2417
5115 msgid ""
5116 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
5117 "documentation) are generated, and this makes it easy to extend the "
5118 "libguestfs API."
5119 msgstr ""
5120
5121 #. type: textblock
5122 #: ../src/guestfs.pod:2421
5123 msgid "To add a new API action there are two changes:"
5124 msgstr ""
5125
5126 #. type: textblock
5127 #: ../src/guestfs.pod:2427
5128 msgid ""
5129 "You need to add a description of the call (name, parameters, return type, "
5130 "tests, documentation) to C<generator/generator_actions.ml>."
5131 msgstr ""
5132
5133 #. type: textblock
5134 #: ../src/guestfs.pod:2430
5135 msgid ""
5136 "There are two sorts of API action, depending on whether the call goes "
5137 "through to the daemon in the appliance, or is serviced entirely by the "
5138 "library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the "
5139 "former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
5140 "an example of the latter, since a trace flag is maintained in the handle and "
5141 "all tracing is done on the library side."
5142 msgstr ""
5143
5144 #. type: textblock
5145 #: ../src/guestfs.pod:2438
5146 msgid ""
5147 "Most new actions are of the first type, and get added to the "
5148 "C<daemon_functions> list.  Each function has a unique procedure number used "
5149 "in the RPC protocol which is assigned to that action when we publish "
5150 "libguestfs and cannot be reused.  Take the latest procedure number and "
5151 "increment it."
5152 msgstr ""
5153
5154 #. type: textblock
5155 #: ../src/guestfs.pod:2444
5156 msgid ""
5157 "For library-only actions of the second type, add to the "
5158 "C<non_daemon_functions> list.  Since these functions are serviced by the "
5159 "library and do not travel over the RPC mechanism to the daemon, these "
5160 "functions do not need a procedure number, and so the procedure number is set "
5161 "to C<-1>."
5162 msgstr ""
5163
5164 #. type: textblock
5165 #: ../src/guestfs.pod:2452
5166 msgid "Implement the action (in C):"
5167 msgstr ""
5168
5169 #. type: textblock
5170 #: ../src/guestfs.pod:2454
5171 msgid ""
5172 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
5173 "C<daemon/> directory."
5174 msgstr ""
5175
5176 #. type: textblock
5177 #: ../src/guestfs.pod:2457
5178 msgid ""
5179 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
5180 "(note: double underscore) in the C<src/> directory."
5181 msgstr ""
5182
5183 #. type: textblock
5184 #: ../src/guestfs.pod:2460
5185 msgid "In either case, use another function as an example of what to do."
5186 msgstr ""
5187
5188 #. type: textblock
5189 #: ../src/guestfs.pod:2464
5190 msgid "After making these changes, use C<make> to compile."
5191 msgstr ""
5192
5193 #. type: textblock
5194 #: ../src/guestfs.pod:2466
5195 msgid ""
5196 "Note that you don't need to implement the RPC, language bindings, manual "
5197 "pages or anything else.  It's all automatically generated from the OCaml "
5198 "description."
5199 msgstr ""
5200
5201 #. type: =head2
5202 #: ../src/guestfs.pod:2470
5203 msgid "ADDING TESTS FOR AN API ACTION"
5204 msgstr ""
5205
5206 #. type: textblock
5207 #: ../src/guestfs.pod:2472
5208 msgid ""
5209 "You can supply zero or as many tests as you want per API call.  The tests "
5210 "can either be added as part of the API description (C<generator/"
5211 "generator_actions.ml>), or in some rarer cases you may want to drop a script "
5212 "into C<regressions/>.  Note that adding a script to C<regressions/> is "
5213 "slower, so if possible use the first method."
5214 msgstr ""
5215
5216 #. type: textblock
5217 #: ../src/guestfs.pod:2478
5218 msgid ""
5219 "The following describes the test environment used when you add an API test "
5220 "in C<generator_actions.ml>."
5221 msgstr ""
5222
5223 #. type: textblock
5224 #: ../src/guestfs.pod:2481
5225 msgid "The test environment has 4 block devices:"
5226 msgstr ""
5227
5228 #. type: =item
5229 #: ../src/guestfs.pod:2485
5230 msgid "C</dev/sda> 500MB"
5231 msgstr ""
5232
5233 #. type: textblock
5234 #: ../src/guestfs.pod:2487
5235 msgid "General block device for testing."
5236 msgstr ""
5237
5238 #. type: =item
5239 #: ../src/guestfs.pod:2489
5240 msgid "C</dev/sdb> 50MB"
5241 msgstr ""
5242
5243 #. type: textblock
5244 #: ../src/guestfs.pod:2491
5245 msgid ""
5246 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
5247 "operations."
5248 msgstr ""
5249
5250 #. type: =item
5251 #: ../src/guestfs.pod:2494
5252 msgid "C</dev/sdc> 10MB"
5253 msgstr ""
5254
5255 #. type: textblock
5256 #: ../src/guestfs.pod:2496
5257 msgid "Used in a few tests where two block devices are needed."
5258 msgstr ""
5259
5260 #. type: =item
5261 #: ../src/guestfs.pod:2498
5262 msgid "C</dev/sdd>"
5263 msgstr ""
5264
5265 #. type: textblock
5266 #: ../src/guestfs.pod:2500
5267 msgid "ISO with fixed content (see C<images/test.iso>)."
5268 msgstr ""
5269
5270 #. type: textblock
5271 #: ../src/guestfs.pod:2504
5272 msgid ""
5273 "To be able to run the tests in a reasonable amount of time, the libguestfs "
5274 "appliance and block devices are reused between tests.  So don't try testing "
5275 "L</guestfs_kill_subprocess> :-x"
5276 msgstr ""
5277
5278 #. type: textblock
5279 #: ../src/guestfs.pod:2508
5280 msgid ""
5281 "Each test starts with an initial scenario, selected using one of the "
5282 "C<Init*> expressions, described in C<generator/generator_types.ml>.  These "
5283 "initialize the disks mentioned above in a particular way as documented in "
5284 "C<generator_types.ml>.  You should not assume anything about the previous "
5285 "contents of other disks that are not initialized."
5286 msgstr ""
5287
5288 #. type: textblock
5289 #: ../src/guestfs.pod:2514
5290 msgid ""
5291 "You can add a prerequisite clause to any individual test.  This is a run-"
5292 "time check, which, if it fails, causes the test to be skipped.  Useful if "
5293 "testing a command which might not work on all variations of libguestfs "
5294 "builds.  A test that has prerequisite of C<Always> means to run "
5295 "unconditionally."
5296 msgstr ""
5297
5298 #. type: textblock
5299 #: ../src/guestfs.pod:2520
5300 msgid ""
5301 "In addition, packagers can skip individual tests by setting environment "
5302 "variables before running C<make check>."
5303 msgstr ""
5304
5305 #. type: verbatim
5306 #: ../src/guestfs.pod:2523
5307 #, no-wrap
5308 msgid ""
5309 " SKIP_TEST_<CMD>_<NUM>=1\n"
5310 "\n"
5311 msgstr ""
5312
5313 #. type: textblock
5314 #: ../src/guestfs.pod:2525
5315 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
5316 msgstr ""
5317
5318 #. type: textblock
5319 #: ../src/guestfs.pod:2527
5320 msgid "or:"
5321 msgstr ""
5322
5323 #. type: verbatim
5324 #: ../src/guestfs.pod:2529
5325 #, no-wrap
5326 msgid ""
5327 " SKIP_TEST_<CMD>=1\n"
5328 "\n"
5329 msgstr ""
5330
5331 #. type: textblock
5332 #: ../src/guestfs.pod:2531
5333 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
5334 msgstr ""
5335
5336 #. type: textblock
5337 #: ../src/guestfs.pod:2533
5338 msgid "Packagers can run only certain tests by setting for example:"
5339 msgstr ""
5340
5341 #. type: verbatim
5342 #: ../src/guestfs.pod:2535
5343 #, no-wrap
5344 msgid ""
5345 " TEST_ONLY=\"vfs_type zerofree\"\n"
5346 "\n"
5347 msgstr ""
5348
5349 #. type: textblock
5350 #: ../src/guestfs.pod:2537
5351 msgid ""
5352 "See C<capitests/tests.c> for more details of how these environment variables "
5353 "work."
5354 msgstr ""
5355
5356 #. type: =head2
5357 #: ../src/guestfs.pod:2540
5358 msgid "DEBUGGING NEW API ACTIONS"
5359 msgstr ""
5360
5361 #. type: textblock
5362 #: ../src/guestfs.pod:2542
5363 msgid "Test new actions work before submitting them."
5364 msgstr ""
5365
5366 #. type: textblock
5367 #: ../src/guestfs.pod:2544
5368 msgid "You can use guestfish to try out new commands."
5369 msgstr ""
5370
5371 #. type: textblock
5372 #: ../src/guestfs.pod:2546
5373 msgid ""
5374 "Debugging the daemon is a problem because it runs inside a minimal "
5375 "environment.  However you can fprintf messages in the daemon to stderr, and "
5376 "they will show up if you use C<guestfish -v>."
5377 msgstr ""
5378
5379 #. type: =head2
5380 #: ../src/guestfs.pod:2550
5381 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
5382 msgstr ""
5383
5384 #. type: textblock
5385 #: ../src/guestfs.pod:2552
5386 msgid ""
5387 "Our C source code generally adheres to some basic code-formatting "
5388 "conventions.  The existing code base is not totally consistent on this "
5389 "front, but we do prefer that contributed code be formatted similarly.  In "
5390 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
5391 "indentation level, and other than that, follow the K&R style."
5392 msgstr ""
5393
5394 #. type: textblock
5395 #: ../src/guestfs.pod:2558
5396 msgid ""
5397 "If you use Emacs, add the following to one of one of your start-up files (e."
5398 "g., ~/.emacs), to help ensure that you get indentation right:"
5399 msgstr ""
5400
5401 #. type: verbatim
5402 #: ../src/guestfs.pod:2561
5403 #, no-wrap
5404 msgid ""
5405 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
5406 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
5407 " (add-hook 'find-file-hook\n"
5408 "     '(lambda () (if (and buffer-file-name\n"
5409 "                          (string-match \"/libguestfs\\\\>\"\n"
5410 "                              (buffer-file-name))\n"
5411 "                          (not (string-equal mode-name \"Change Log\"))\n"
5412 "                          (not (string-equal mode-name \"Makefile\")))\n"
5413 "                     (setq indent-tabs-mode nil))))\n"
5414 " \n"
5415 msgstr ""
5416
5417 #. type: verbatim
5418 #: ../src/guestfs.pod:2571
5419 #, no-wrap
5420 msgid ""
5421 " ;;; When editing C sources in libguestfs, use this style.\n"
5422 " (defun libguestfs-c-mode ()\n"
5423 "   \"C mode with adjusted defaults for use with libguestfs.\"\n"
5424 "   (interactive)\n"
5425 "   (c-set-style \"K&R\")\n"
5426 "   (setq c-indent-level 2)\n"
5427 "   (setq c-basic-offset 2))\n"
5428 " (add-hook 'c-mode-hook\n"
5429 "           '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
5430 "                               (buffer-file-name))\n"
5431 "                           (libguestfs-c-mode))))\n"
5432 "\n"
5433 msgstr ""
5434
5435 #. type: textblock
5436 #: ../src/guestfs.pod:2583
5437 msgid "Enable warnings when compiling (and fix any problems this finds):"
5438 msgstr ""
5439
5440 #. type: verbatim
5441 #: ../src/guestfs.pod:2586
5442 #, no-wrap
5443 msgid ""
5444 " ./configure --enable-gcc-warnings\n"
5445 "\n"
5446 msgstr ""
5447
5448 #. type: textblock
5449 #: ../src/guestfs.pod:2588
5450 msgid "Useful targets are:"
5451 msgstr ""
5452
5453 #. type: verbatim
5454 #: ../src/guestfs.pod:2590
5455 #, no-wrap
5456 msgid ""
5457 " make syntax-check  # checks the syntax of the C code\n"
5458 " make check         # runs the test suite\n"
5459 "\n"
5460 msgstr ""
5461
5462 #. type: =head2
5463 #: ../src/guestfs.pod:2593
5464 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
5465 msgstr ""
5466
5467 #. type: textblock
5468 #: ../src/guestfs.pod:2595
5469 msgid ""
5470 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
5471 "which are used to do shell quoting."
5472 msgstr ""
5473
5474 #. type: =item
5475 #: ../src/guestfs.pod:2600
5476 msgid "%Q"
5477 msgstr ""
5478
5479 #. type: textblock
5480 #: ../src/guestfs.pod:2602
5481 msgid ""
5482 "Simple shell quoted string.  Any spaces or other shell characters are "
5483 "escaped for you."
5484 msgstr ""
5485
5486 #. type: =item
5487 #: ../src/guestfs.pod:2605
5488 msgid "%R"
5489 msgstr ""
5490
5491 #. type: textblock
5492 #: ../src/guestfs.pod:2607
5493 msgid ""
5494 "Same as C<%Q> except the string is treated as a path which is prefixed by "
5495 "the sysroot."
5496 msgstr ""
5497
5498 # type: textblock
5499 #. type: textblock
5500 #: ../src/guestfs.pod:2612 ../fish/guestfish.pod:240 ../fish/guestfish.pod:613
5501 msgid "For example:"
5502 msgstr ""
5503
5504 #. type: verbatim
5505 #: ../src/guestfs.pod:2614
5506 #, no-wrap
5507 msgid ""
5508 " asprintf (&cmd, \"cat %R\", path);\n"
5509 "\n"
5510 msgstr ""
5511
5512 #. type: textblock
5513 #: ../src/guestfs.pod:2616
5514 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
5515 msgstr ""
5516
5517 #. type: textblock
5518 #: ../src/guestfs.pod:2618
5519 msgid ""
5520 "I<Note:> Do I<not> use these when you are passing parameters to the C<command"
5521 "{,r,v,rv}()> functions.  These parameters do NOT need to be quoted because "
5522 "they are not passed via the shell (instead, straight to exec).  You probably "
5523 "want to use the C<sysroot_path()> function however."
5524 msgstr ""
5525
5526 #. type: =head2
5527 #: ../src/guestfs.pod:2624
5528 msgid "SUBMITTING YOUR NEW API ACTIONS"
5529 msgstr ""
5530
5531 #. type: textblock
5532 #: ../src/guestfs.pod:2626
5533 msgid ""
5534 "Submit patches to the mailing list: L<http://www.redhat.com/mailman/listinfo/"
5535 "libguestfs> and CC to L<rjones@redhat.com>."
5536 msgstr ""
5537
5538 #. type: =head2
5539 #: ../src/guestfs.pod:2630
5540 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5541 msgstr ""
5542
5543 #. type: textblock
5544 #: ../src/guestfs.pod:2632
5545 msgid "We support i18n (gettext anyhow) in the library."
5546 msgstr ""
5547
5548 #. type: textblock
5549 #: ../src/guestfs.pod:2634
5550 msgid ""
5551 "However many messages come from the daemon, and we don't translate those at "
5552 "the moment.  One reason is that the appliance generally has all locale files "
5553 "removed from it, because they take up a lot of space.  So we'd have to readd "
5554 "some of those, as well as copying our PO files into the appliance."
5555 msgstr ""
5556
5557 #. type: textblock
5558 #: ../src/guestfs.pod:2640
5559 msgid ""
5560 "Debugging messages are never translated, since they are intended for the "
5561 "programmers."
5562 msgstr ""
5563
5564 #. type: =head2
5565 #: ../src/guestfs.pod:2643
5566 msgid "SOURCE CODE SUBDIRECTORIES"
5567 msgstr ""
5568
5569 #. type: =item
5570 #: ../src/guestfs.pod:2647 ../src/guestfs-actions.pod:5832
5571 #: ../fish/guestfish-actions.pod:3926
5572 msgid "C<appliance>"
5573 msgstr ""
5574
5575 #. type: textblock
5576 #: ../src/guestfs.pod:2649
5577 msgid "The libguestfs appliance, build scripts and so on."
5578 msgstr ""
5579
5580 #. type: =item
5581 #: ../src/guestfs.pod:2651
5582 msgid "C<capitests>"
5583 msgstr ""
5584
5585 #. type: textblock
5586 #: ../src/guestfs.pod:2653
5587 msgid "Automated tests of the C API."
5588 msgstr ""
5589
5590 #. type: =item
5591 #: ../src/guestfs.pod:2655
5592 msgid "C<cat>"
5593 msgstr ""
5594
5595 #. type: textblock
5596 #: ../src/guestfs.pod:2657
5597 msgid ""
5598 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
5599 "documentation."
5600 msgstr ""
5601
5602 #. type: =item
5603 #: ../src/guestfs.pod:2660
5604 msgid "C<caution>"
5605 msgstr ""
5606
5607 #. type: textblock
5608 #: ../src/guestfs.pod:2662
5609 msgid ""
5610 "Safety and liveness tests of components that libguestfs depends upon (not of "
5611 "libguestfs itself).  Mainly this is for qemu and the kernel."
5612 msgstr ""
5613
5614 #. type: =item
5615 #: ../src/guestfs.pod:2665
5616 msgid "C<contrib>"
5617 msgstr ""
5618
5619 #. type: textblock
5620 #: ../src/guestfs.pod:2667
5621 msgid "Outside contributions, experimental parts."
5622 msgstr ""
5623
5624 #. type: =item
5625 #: ../src/guestfs.pod:2669
5626 msgid "C<daemon>"
5627 msgstr ""
5628
5629 #. type: textblock
5630 #: ../src/guestfs.pod:2671
5631 msgid ""
5632 "The daemon that runs inside the libguestfs appliance and carries out actions."
5633 msgstr ""
5634
5635 #. type: =item
5636 #: ../src/guestfs.pod:2674
5637 msgid "C<df>"
5638 msgstr ""
5639
5640 #. type: textblock
5641 #: ../src/guestfs.pod:2676
5642 msgid "L<virt-df(1)> command and documentation."
5643 msgstr ""
5644
5645 #. type: =item
5646 #: ../src/guestfs.pod:2678
5647 msgid "C<examples>"
5648 msgstr ""
5649
5650 #. type: textblock
5651 #: ../src/guestfs.pod:2680
5652 msgid "C API example code."
5653 msgstr ""
5654
5655 #. type: =item
5656 #: ../src/guestfs.pod:2682
5657 msgid "C<fish>"
5658 msgstr ""
5659
5660 #. type: textblock
5661 #: ../src/guestfs.pod:2684
5662 msgid ""
5663 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5664 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
5665 "L<virt-tar-out(1)>."
5666 msgstr ""
5667
5668 #. type: =item
5669 #: ../src/guestfs.pod:2688
5670 msgid "C<fuse>"
5671 msgstr ""
5672
5673 #. type: textblock
5674 #: ../src/guestfs.pod:2690
5675 msgid ""
5676 "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5677 msgstr ""
5678
5679 #. type: =item
5680 #: ../src/guestfs.pod:2692
5681 msgid "C<generator>"
5682 msgstr ""
5683
5684 #. type: textblock
5685 #: ../src/guestfs.pod:2694
5686 msgid ""
5687 "The crucially important generator, used to automatically generate large "
5688 "amounts of boilerplate C code for things like RPC and bindings."
5689 msgstr ""
5690
5691 #. type: =item
5692 #: ../src/guestfs.pod:2697
5693 msgid "C<images>"
5694 msgstr ""
5695
5696 #. type: textblock
5697 #: ../src/guestfs.pod:2699
5698 msgid "Files used by the test suite."
5699 msgstr ""
5700
5701 #. type: textblock
5702 #: ../src/guestfs.pod:2701
5703 msgid "Some \"phony\" guest images which we test against."
5704 msgstr ""
5705
5706 #. type: =item
5707 #: ../src/guestfs.pod:2703
5708 msgid "C<inspector>"
5709 msgstr ""
5710
5711 #. type: textblock
5712 #: ../src/guestfs.pod:2705
5713 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5714 msgstr ""
5715
5716 #. type: =item
5717 #: ../src/guestfs.pod:2707
5718 msgid "C<logo>"
5719 msgstr ""
5720
5721 #. type: textblock
5722 #: ../src/guestfs.pod:2709
5723 msgid "Logo used on the website.  The fish is called Arthur by the way."
5724 msgstr ""
5725
5726 #. type: =item
5727 #: ../src/guestfs.pod:2711
5728 msgid "C<m4>"
5729 msgstr ""
5730
5731 #. type: textblock
5732 #: ../src/guestfs.pod:2713
5733 msgid "M4 macros used by autoconf."
5734 msgstr ""
5735
5736 #. type: =item
5737 #: ../src/guestfs.pod:2715
5738 msgid "C<po>"
5739 msgstr ""
5740
5741 #. type: textblock
5742 #: ../src/guestfs.pod:2717
5743 msgid "Translations of simple gettext strings."
5744 msgstr ""
5745
5746 #. type: =item
5747 #: ../src/guestfs.pod:2719
5748 msgid "C<po-docs>"
5749 msgstr ""
5750
5751 #. type: textblock
5752 #: ../src/guestfs.pod:2721
5753 msgid ""
5754 "The build infrastructure and PO files for translations of manpages and POD "
5755 "files.  Eventually this will be combined with the C<po> directory, but that "
5756 "is rather complicated."
5757 msgstr ""
5758
5759 #. type: =item
5760 #: ../src/guestfs.pod:2725
5761 msgid "C<regressions>"
5762 msgstr ""
5763
5764 #. type: textblock
5765 #: ../src/guestfs.pod:2727
5766 msgid "Regression tests."
5767 msgstr ""
5768
5769 #. type: =item
5770 #: ../src/guestfs.pod:2729
5771 msgid "C<rescue>"
5772 msgstr ""
5773
5774 #. type: textblock
5775 #: ../src/guestfs.pod:2731
5776 msgid "L<virt-rescue(1)> command and documentation."
5777 msgstr ""
5778
5779 #. type: =item
5780 #: ../src/guestfs.pod:2733
5781 msgid "C<src>"
5782 msgstr ""
5783
5784 #. type: textblock
5785 #: ../src/guestfs.pod:2735
5786 msgid "Source code to the C library."
5787 msgstr ""
5788
5789 #. type: =item
5790 #: ../src/guestfs.pod:2737
5791 msgid "C<tools>"
5792 msgstr ""
5793
5794 #. type: textblock
5795 #: ../src/guestfs.pod:2739
5796 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5797 msgstr ""
5798
5799 #. type: =item
5800 #: ../src/guestfs.pod:2741
5801 msgid "C<test-tool>"
5802 msgstr ""
5803
5804 #. type: textblock
5805 #: ../src/guestfs.pod:2743
5806 msgid ""
5807 "Test tool for end users to test if their qemu/kernel combination will work "
5808 "with libguestfs."
5809 msgstr ""
5810
5811 #. type: =item
5812 #: ../src/guestfs.pod:2746
5813 msgid "C<csharp>"
5814 msgstr ""
5815
5816 #. type: =item
5817 #: ../src/guestfs.pod:2748
5818 msgid "C<haskell>"
5819 msgstr ""
5820
5821 #. type: =item
5822 #: ../src/guestfs.pod:2750
5823 msgid "C<java>"
5824 msgstr ""
5825
5826 #. type: =item
5827 #: ../src/guestfs.pod:2752
5828 msgid "C<ocaml>"
5829 msgstr ""
5830
5831 #. type: =item
5832 #: ../src/guestfs.pod:2754
5833 msgid "C<php>"
5834 msgstr ""
5835
5836 #. type: =item
5837 #: ../src/guestfs.pod:2756
5838 msgid "C<perl>"
5839 msgstr ""
5840
5841 #. type: =item
5842 #: ../src/guestfs.pod:2758
5843 msgid "C<python>"
5844 msgstr ""
5845
5846 #. type: =item
5847 #: ../src/guestfs.pod:2760
5848 msgid "C<ruby>"
5849 msgstr ""
5850
5851 #. type: textblock
5852 #: ../src/guestfs.pod:2762
5853 msgid "Language bindings."
5854 msgstr ""
5855
5856 #. type: =head1
5857 #: ../src/guestfs.pod:2766
5858 msgid "LIMITS"
5859 msgstr ""
5860
5861 # type: =head2
5862 #. type: =head2
5863 #: ../src/guestfs.pod:2768
5864 msgid "PROTOCOL LIMITS"
5865 msgstr ""
5866
5867 # type: textblock
5868 #. type: textblock
5869 #: ../src/guestfs.pod:2770
5870 msgid ""
5871 "Internally libguestfs uses a message-based protocol to pass API calls and "
5872 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
5873 "plenty more detail about this).  The maximum message size used by the "
5874 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
5875 "aware of this limit.  The API calls which may be affected are individually "
5876 "documented, with a link back to this section of the documentation."
5877 msgstr ""
5878
5879 # type: textblock
5880 #. type: textblock
5881 #: ../src/guestfs.pod:2778
5882 msgid ""
5883 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
5884 "a simple string.  Because this string is at some point internally encoded as "
5885 "a message, the maximum size that it can return is slightly under 4 MB.  If "
5886 "the requested file is larger than this then you will get an error."
5887 msgstr ""
5888
5889 # type: textblock
5890 #. type: textblock
5891 #: ../src/guestfs.pod:2784
5892 msgid ""
5893 "In order to transfer large files into and out of the guest filesystem, you "
5894 "need to use particular calls that support this.  The sections L</UPLOADING> "
5895 "and L</DOWNLOADING> document how to do this."
5896 msgstr ""
5897
5898 # type: textblock
5899 #. type: textblock
5900 #: ../src/guestfs.pod:2788
5901 msgid ""
5902 "You might also consider mounting the disk image using our FUSE filesystem "
5903 "support (L<guestmount(1)>)."
5904 msgstr ""
5905
5906 #. type: =head2
5907 #: ../src/guestfs.pod:2791
5908 msgid "MAXIMUM NUMBER OF DISKS"
5909 msgstr ""
5910
5911 #. type: textblock
5912 #: ../src/guestfs.pod:2793
5913 msgid "When using virtio disks (the default) the current limit is B<25> disks."
5914 msgstr ""
5915
5916 #. type: textblock
5917 #: ../src/guestfs.pod:2796
5918 msgid ""
5919 "Virtio itself consumes 1 virtual PCI slot per disk, and PCI is limited to 31 "
5920 "slots.  However febootstrap only understands disks with names C</dev/vda> "
5921 "through C</dev/vdz> (26 letters) and it reserves one disk for its own "
5922 "purposes."
5923 msgstr ""
5924
5925 #. type: textblock
5926 #: ../src/guestfs.pod:2801
5927 msgid ""
5928 "We are working to substantially raise this limit in future versions but it "
5929 "requires complex changes to qemu."
5930 msgstr ""
5931
5932 #. type: textblock
5933 #: ../src/guestfs.pod:2804
5934 msgid ""
5935 "In future versions of libguestfs it should also be possible to \"hot plug\" "
5936 "disks (add and remove disks after calling L</guestfs_launch>).  This also "
5937 "requires changes to qemu."
5938 msgstr ""
5939
5940 #. type: =head2
5941 #: ../src/guestfs.pod:2808
5942 msgid "MAXIMUM NUMBER OF PARTITIONS PER DISK"
5943 msgstr ""
5944
5945 #. type: textblock
5946 #: ../src/guestfs.pod:2810
5947 msgid "Virtio limits the maximum number of partitions per disk to B<15>."
5948 msgstr ""
5949
5950 #. type: textblock
5951 #: ../src/guestfs.pod:2812
5952 msgid ""
5953 "This is because it reserves 4 bits for the minor device number (thus C</dev/"
5954 "vda>, and C</dev/vda1> through C</dev/vda15>)."
5955 msgstr ""
5956
5957 #. type: textblock
5958 #: ../src/guestfs.pod:2815
5959 msgid ""
5960 "If you attach a disk with more than 15 partitions, the extra partitions are "
5961 "ignored by libguestfs."
5962 msgstr ""
5963
5964 #. type: =head2
5965 #: ../src/guestfs.pod:2818
5966 msgid "MAXIMUM SIZE OF A DISK"
5967 msgstr ""
5968
5969 #. type: textblock
5970 #: ../src/guestfs.pod:2820
5971 msgid "Probably the limit is between 2**63-1 and 2**64-1 bytes."
5972 msgstr ""
5973
5974 #. type: textblock
5975 #: ../src/guestfs.pod:2822
5976 msgid ""
5977 "We have tested block devices up to 1 exabyte (2**60 or "
5978 "1,152,921,504,606,846,976 bytes) using sparse files backed by an XFS host "
5979 "filesystem."
5980 msgstr ""
5981
5982 #. type: textblock
5983 #: ../src/guestfs.pod:2826
5984 msgid ""
5985 "Although libguestfs probably does not impose any limit, the underlying host "
5986 "storage will.  If you store disk images on a host ext4 filesystem, then the "
5987 "maximum size will be limited by the maximum ext4 file size (currently 16 "
5988 "TB).  If you store disk images as host logical volumes then you are limited "
5989 "by the maximum size of an LV."
5990 msgstr ""
5991
5992 #. type: textblock
5993 #: ../src/guestfs.pod:2832
5994 msgid ""
5995 "For the hugest disk image files, we recommend using XFS on the host for "
5996 "storage."
5997 msgstr ""
5998
5999 #. type: =head2
6000 #: ../src/guestfs.pod:2835
6001 msgid "MAXIMUM SIZE OF A PARTITION"
6002 msgstr ""
6003
6004 #. type: textblock
6005 #: ../src/guestfs.pod:2837
6006 msgid ""
6007 "The MBR (ie. classic MS-DOS) partitioning scheme uses 32 bit sector "
6008 "numbers.  Assuming a 512 byte sector size, this means that MBR cannot "
6009 "address a partition located beyond 2 TB on the disk."
6010 msgstr ""
6011
6012 #. type: textblock
6013 #: ../src/guestfs.pod:2841
6014 msgid ""
6015 "It is recommended that you use GPT partitions on disks which are larger than "
6016 "this size.  GPT uses 64 bit sector numbers and so can address partitions "
6017 "which are theoretically larger than the largest disk we could support."
6018 msgstr ""
6019
6020 #. type: =head2
6021 #: ../src/guestfs.pod:2846
6022 msgid "MAXIMUM SIZE OF A FILESYSTEM, FILES, DIRECTORIES"
6023 msgstr ""
6024
6025 #. type: textblock
6026 #: ../src/guestfs.pod:2848
6027 msgid ""
6028 "This depends on the filesystem type.  libguestfs itself does not impose any "
6029 "known limit.  Consult Wikipedia or the filesystem documentation to find out "
6030 "what these limits are."
6031 msgstr ""
6032
6033 #. type: =head2
6034 #: ../src/guestfs.pod:2852
6035 msgid "MAXIMUM UPLOAD AND DOWNLOAD"
6036 msgstr ""
6037
6038 #. type: textblock
6039 #: ../src/guestfs.pod:2854
6040 msgid ""
6041 "The API functions L</guestfs_upload>, L</guestfs_download>, L</"
6042 "guestfs_tar_in>, L</guestfs_tar_out> and the like allow unlimited sized "
6043 "uploads and downloads."
6044 msgstr ""
6045
6046 #. type: =head2
6047 #: ../src/guestfs.pod:2858
6048 msgid "INSPECTION LIMITS"
6049 msgstr ""
6050
6051 #. type: textblock
6052 #: ../src/guestfs.pod:2860
6053 msgid ""
6054 "The inspection code has several arbitrary limits on things like the size of "
6055 "Windows Registry hive it will read, and the length of product name.  These "
6056 "are intended to stop a malicious guest from consuming arbitrary amounts of "
6057 "memory and disk space on the host, and should not be reached in practice.  "
6058 "See the source code for more information."
6059 msgstr ""
6060
6061 # type: =head1
6062 #. type: =head1
6063 #: ../src/guestfs.pod:2866 ../fish/guestfish.pod:1026
6064 #: ../test-tool/libguestfs-test-tool.pod:82 ../tools/virt-edit.pl:476
6065 msgid "ENVIRONMENT VARIABLES"
6066 msgstr ""
6067
6068 # type: =item
6069 #. type: =item
6070 #: ../src/guestfs.pod:2870 ../fish/guestfish.pod:1052
6071 msgid "LIBGUESTFS_APPEND"
6072 msgstr ""
6073
6074 # type: textblock
6075 #. type: textblock
6076 #: ../src/guestfs.pod:2872 ../fish/guestfish.pod:1054
6077 msgid "Pass additional options to the guest kernel."
6078 msgstr ""
6079
6080 # type: =item
6081 #. type: =item
6082 #: ../src/guestfs.pod:2874 ../fish/guestfish.pod:1056
6083 msgid "LIBGUESTFS_DEBUG"
6084 msgstr ""
6085
6086 # type: textblock
6087 #. type: textblock
6088 #: ../src/guestfs.pod:2876
6089 msgid ""
6090 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
6091 "effect as calling C<guestfs_set_verbose (g, 1)>."
6092 msgstr ""
6093
6094 # type: =item
6095 #. type: =item
6096 #: ../src/guestfs.pod:2879 ../fish/guestfish.pod:1061
6097 msgid "LIBGUESTFS_MEMSIZE"
6098 msgstr ""
6099
6100 # type: textblock
6101 #. type: textblock
6102 #: ../src/guestfs.pod:2881 ../fish/guestfish.pod:1063
6103 msgid ""
6104 "Set the memory allocated to the qemu process, in megabytes.  For example:"
6105 msgstr ""
6106
6107 # type: verbatim
6108 #. type: verbatim
6109 #: ../src/guestfs.pod:2884 ../fish/guestfish.pod:1066
6110 #, no-wrap
6111 msgid ""
6112 " LIBGUESTFS_MEMSIZE=700\n"
6113 "\n"
6114 msgstr ""
6115
6116 # type: =item
6117 #. type: =item
6118 #: ../src/guestfs.pod:2886 ../fish/guestfish.pod:1068
6119 msgid "LIBGUESTFS_PATH"
6120 msgstr ""
6121
6122 #. type: textblock
6123 #: ../src/guestfs.pod:2888
6124 msgid ""
6125 "Set the path that libguestfs uses to search for a supermin appliance.  See "
6126 "the discussion of paths in section L</PATH> above."
6127 msgstr ""
6128
6129 # type: =item
6130 #. type: =item
6131 #: ../src/guestfs.pod:2891 ../fish/guestfish.pod:1073
6132 msgid "LIBGUESTFS_QEMU"
6133 msgstr ""
6134
6135 # type: textblock
6136 #. type: textblock
6137 #: ../src/guestfs.pod:2893 ../fish/guestfish.pod:1075
6138 msgid ""
6139 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
6140 "which was found at compile time by the configure script is used."
6141 msgstr ""
6142
6143 # type: textblock
6144 #. type: textblock
6145 #: ../src/guestfs.pod:2897
6146 msgid "See also L</QEMU WRAPPERS> above."
6147 msgstr ""
6148
6149 # type: =item
6150 #. type: =item
6151 #: ../src/guestfs.pod:2899 ../fish/guestfish.pod:1079
6152 msgid "LIBGUESTFS_TRACE"
6153 msgstr ""
6154
6155 # type: textblock
6156 #. type: textblock
6157 #: ../src/guestfs.pod:2901
6158 msgid ""
6159 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
6160 "effect as calling C<guestfs_set_trace (g, 1)>."
6161 msgstr ""
6162
6163 # type: =item
6164 #. type: =item
6165 #: ../src/guestfs.pod:2904 ../fish/guestfish.pod:1088
6166 msgid "TMPDIR"
6167 msgstr ""
6168
6169 #. type: textblock
6170 #: ../src/guestfs.pod:2906 ../fish/guestfish.pod:1090
6171 msgid ""
6172 "Location of temporary directory, defaults to C</tmp> except for the cached "
6173 "supermin appliance which defaults to C</var/tmp>."
6174 msgstr ""
6175
6176 #. type: textblock
6177 #: ../src/guestfs.pod:2909 ../fish/guestfish.pod:1093
6178 msgid ""
6179 "If libguestfs was compiled to use the supermin appliance then the real "
6180 "appliance is cached in this directory, shared between all handles belonging "
6181 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
6182 "use in case C</var/tmp> is not large enough."
6183 msgstr ""
6184
6185 # type: =head1
6186 #. type: =head1
6187 #: ../src/guestfs.pod:2917 ../fish/guestfish.pod:1160
6188 #: ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:277
6189 #: ../tools/virt-edit.pl:496 ../tools/virt-win-reg.pl:572
6190 #: ../tools/virt-list-filesystems.pl:189 ../tools/virt-tar.pl:286
6191 #: ../tools/virt-make-fs.pl:539 ../tools/virt-list-partitions.pl:257
6192 msgid "SEE ALSO"
6193 msgstr ""
6194
6195 #. type: textblock
6196 #: ../src/guestfs.pod:2919
6197 msgid ""
6198 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-perl(3)>, L<guestfs-"
6199 "python(3)>, L<guestfs-ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat"
6200 "(1)>, L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)"
6201 ">, L<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)"
6202 ">, L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-"
6203 "rescue(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-"
6204 "win-reg(1)>, L<qemu(1)>, L<febootstrap(1)>, L<hivex(3)>, L<http://libguestfs."
6205 "org/>."
6206 msgstr ""
6207
6208 # type: textblock
6209 #. type: textblock
6210 #: ../src/guestfs.pod:2947
6211 msgid ""
6212 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, L<lvm"
6213 "(8)>, L<disktype(1)>."
6214 msgstr ""
6215
6216 # type: =head1
6217 #. type: =head1
6218 #: ../src/guestfs.pod:2954 ../tools/virt-win-reg.pl:587
6219 #: ../tools/virt-make-fs.pl:553
6220 msgid "BUGS"
6221 msgstr ""
6222
6223 # type: textblock
6224 #. type: textblock
6225 #: ../src/guestfs.pod:2956
6226 msgid "To get a list of bugs against libguestfs use this link:"
6227 msgstr ""
6228
6229 # type: textblock
6230 #. type: textblock
6231 #: ../src/guestfs.pod:2958
6232 msgid ""
6233 "L<https://bugzilla.redhat.com/buglist.cgi?"
6234 "component=libguestfs&product=Virtualization+Tools>"
6235 msgstr ""
6236
6237 # type: textblock
6238 #. type: textblock
6239 #: ../src/guestfs.pod:2960
6240 msgid "To report a new bug against libguestfs use this link:"
6241 msgstr ""
6242
6243 # type: textblock
6244 #. type: textblock
6245 #: ../src/guestfs.pod:2962
6246 msgid ""
6247 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
6248 "component=libguestfs&product=Virtualization+Tools>"
6249 msgstr ""
6250
6251 # type: textblock
6252 #. type: textblock
6253 #: ../src/guestfs.pod:2964
6254 msgid "When reporting a bug, please check:"
6255 msgstr ""
6256
6257 # type: textblock
6258 #. type: textblock
6259 #: ../src/guestfs.pod:2970
6260 msgid "That the bug hasn't been reported already."
6261 msgstr ""
6262
6263 # type: textblock
6264 #. type: textblock
6265 #: ../src/guestfs.pod:2974
6266 msgid "That you are testing a recent version."
6267 msgstr ""
6268
6269 # type: textblock
6270 #. type: textblock
6271 #: ../src/guestfs.pod:2978
6272 msgid "Describe the bug accurately, and give a way to reproduce it."
6273 msgstr ""
6274
6275 # type: textblock
6276 #. type: textblock
6277 #: ../src/guestfs.pod:2982
6278 msgid ""
6279 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
6280 "bug report."
6281 msgstr ""
6282
6283 # type: =head1
6284 #. type: =head1
6285 #: ../src/guestfs.pod:2987 ../fish/guestfish.pod:1183
6286 #: ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:288
6287 msgid "AUTHORS"
6288 msgstr ""
6289
6290 # type: textblock
6291 #. type: textblock
6292 #: ../src/guestfs.pod:2989 ../fish/guestfish.pod:1185
6293 #: ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:290
6294 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
6295 msgstr ""
6296
6297 # type: =head1
6298 #. type: =head1
6299 #: ../src/guestfs.pod:2991 ../fish/guestfish.pod:1187
6300 #: ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:292
6301 #: ../tools/virt-edit.pl:514 ../tools/virt-win-reg.pl:602
6302 #: ../tools/virt-list-filesystems.pl:206 ../tools/virt-tar.pl:305
6303 #: ../tools/virt-make-fs.pl:568 ../tools/virt-list-partitions.pl:273
6304 msgid "COPYRIGHT"
6305 msgstr ""
6306
6307 #. type: textblock
6308 #: ../src/guestfs.pod:2993 ../fish/guestfish.pod:1189
6309 #: ../test-tool/libguestfs-test-tool.pod:99
6310 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
6311 msgstr ""
6312
6313 # type: textblock
6314 #. type: textblock
6315 #: ../src/guestfs.pod:2996
6316 msgid ""
6317 "This library is free software; you can redistribute it and/or modify it "
6318 "under the terms of the GNU Lesser General Public License as published by the "
6319 "Free Software Foundation; either version 2 of the License, or (at your "
6320 "option) any later version."
6321 msgstr ""
6322
6323 # type: textblock
6324 #. type: textblock
6325 #: ../src/guestfs.pod:3001
6326 msgid ""
6327 "This library is distributed in the hope that it will be useful, but WITHOUT "
6328 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
6329 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
6330 "for more details."
6331 msgstr ""
6332
6333 # type: textblock
6334 #. type: textblock
6335 #: ../src/guestfs.pod:3006
6336 msgid ""
6337 "You should have received a copy of the GNU Lesser General Public License "
6338 "along with this library; if not, write to the Free Software Foundation, "
6339 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
6340 msgstr ""
6341
6342 # type: =head2
6343 #. type: =head2
6344 #: ../src/guestfs-actions.pod:1
6345 msgid "guestfs_add_cdrom"
6346 msgstr ""
6347
6348 # type: verbatim
6349 #. type: verbatim
6350 #: ../src/guestfs-actions.pod:3
6351 #, no-wrap
6352 msgid ""
6353 " int\n"
6354 " guestfs_add_cdrom (guestfs_h *g,\n"
6355 "                    const char *filename);\n"
6356 "\n"
6357 msgstr ""
6358
6359 # type: textblock
6360 #. type: textblock
6361 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
6362 msgid "This function adds a virtual CD-ROM disk image to the guest."
6363 msgstr ""
6364
6365 #. type: textblock
6366 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
6367 msgid "This is equivalent to the qemu parameter I<-cdrom filename>."
6368 msgstr ""
6369
6370 # type: textblock
6371 #. type: textblock
6372 #: ../src/guestfs-actions.pod:17
6373 msgid ""
6374 "This call checks for the existence of C<filename>.  This stops you from "
6375 "specifying other types of drive which are supported by qemu such as C<nbd:> "
6376 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
6377 "instead."
6378 msgstr ""
6379
6380 # type: textblock
6381 #. type: textblock
6382 #: ../src/guestfs-actions.pod:24
6383 msgid ""
6384 "If you just want to add an ISO file (often you use this as an efficient way "
6385 "to transfer large files into the guest), then you should probably use "
6386 "C<guestfs_add_drive_ro> instead."
6387 msgstr ""
6388
6389 # type: textblock
6390 #. type: textblock
6391 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:134
6392 #: ../src/guestfs-actions.pod:195 ../src/guestfs-actions.pod:232
6393 #: ../src/guestfs-actions.pod:246 ../src/guestfs-actions.pod:267
6394 #: ../src/guestfs-actions.pod:287 ../src/guestfs-actions.pod:301
6395 #: ../src/guestfs-actions.pod:421 ../src/guestfs-actions.pod:441
6396 #: ../src/guestfs-actions.pod:455 ../src/guestfs-actions.pod:500
6397 #: ../src/guestfs-actions.pod:528 ../src/guestfs-actions.pod:546
6398 #: ../src/guestfs-actions.pod:613 ../src/guestfs-actions.pod:646
6399 #: ../src/guestfs-actions.pod:660 ../src/guestfs-actions.pod:675
6400 #: ../src/guestfs-actions.pod:774 ../src/guestfs-actions.pod:792
6401 #: ../src/guestfs-actions.pod:806 ../src/guestfs-actions.pod:820
6402 #: ../src/guestfs-actions.pod:981 ../src/guestfs-actions.pod:1001
6403 #: ../src/guestfs-actions.pod:1019 ../src/guestfs-actions.pod:1103
6404 #: ../src/guestfs-actions.pod:1121 ../src/guestfs-actions.pod:1140
6405 #: ../src/guestfs-actions.pod:1154 ../src/guestfs-actions.pod:1174
6406 #: ../src/guestfs-actions.pod:1244 ../src/guestfs-actions.pod:1275
6407 #: ../src/guestfs-actions.pod:1300 ../src/guestfs-actions.pod:1342
6408 #: ../src/guestfs-actions.pod:1448 ../src/guestfs-actions.pod:1482
6409 #: ../src/guestfs-actions.pod:1697 ../src/guestfs-actions.pod:1719
6410 #: ../src/guestfs-actions.pod:1806 ../src/guestfs-actions.pod:2268
6411 #: ../src/guestfs-actions.pod:2412 ../src/guestfs-actions.pod:2473
6412 #: ../src/guestfs-actions.pod:2508 ../src/guestfs-actions.pod:3461
6413 #: ../src/guestfs-actions.pod:3476 ../src/guestfs-actions.pod:3501
6414 #: ../src/guestfs-actions.pod:3656 ../src/guestfs-actions.pod:3670
6415 #: ../src/guestfs-actions.pod:3683 ../src/guestfs-actions.pod:3697
6416 #: ../src/guestfs-actions.pod:3712 ../src/guestfs-actions.pod:3748
6417 #: ../src/guestfs-actions.pod:3820 ../src/guestfs-actions.pod:3840
6418 #: ../src/guestfs-actions.pod:3857 ../src/guestfs-actions.pod:3880
6419 #: ../src/guestfs-actions.pod:3903 ../src/guestfs-actions.pod:3935
6420 #: ../src/guestfs-actions.pod:3954 ../src/guestfs-actions.pod:3973
6421 #: ../src/guestfs-actions.pod:4008 ../src/guestfs-actions.pod:4020
6422 #: ../src/guestfs-actions.pod:4056 ../src/guestfs-actions.pod:4072
6423 #: ../src/guestfs-actions.pod:4085 ../src/guestfs-actions.pod:4100
6424 #: ../src/guestfs-actions.pod:4117 ../src/guestfs-actions.pod:4210
6425 #: ../src/guestfs-actions.pod:4230 ../src/guestfs-actions.pod:4243
6426 #: ../src/guestfs-actions.pod:4294 ../src/guestfs-actions.pod:4312
6427 #: ../src/guestfs-actions.pod:4330 ../src/guestfs-actions.pod:4346
6428 #: ../src/guestfs-actions.pod:4360 ../src/guestfs-actions.pod:4374
6429 #: ../src/guestfs-actions.pod:4391 ../src/guestfs-actions.pod:4406
6430 #: ../src/guestfs-actions.pod:4426 ../src/guestfs-actions.pod:4484
6431 #: ../src/guestfs-actions.pod:4557 ../src/guestfs-actions.pod:4588
6432 #: ../src/guestfs-actions.pod:4607 ../src/guestfs-actions.pod:4626
6433 #: ../src/guestfs-actions.pod:4638 ../src/guestfs-actions.pod:4655
6434 #: ../src/guestfs-actions.pod:4668 ../src/guestfs-actions.pod:4683
6435 #: ../src/guestfs-actions.pod:4698 ../src/guestfs-actions.pod:4733
6436 #: ../src/guestfs-actions.pod:4755 ../src/guestfs-actions.pod:4775
6437 #: ../src/guestfs-actions.pod:4789 ../src/guestfs-actions.pod:4806
6438 #: ../src/guestfs-actions.pod:4855 ../src/guestfs-actions.pod:4901
6439 #: ../src/guestfs-actions.pod:4915 ../src/guestfs-actions.pod:4943
6440 #: ../src/guestfs-actions.pod:4960 ../src/guestfs-actions.pod:4978
6441 #: ../src/guestfs-actions.pod:5112 ../src/guestfs-actions.pod:5169
6442 #: ../src/guestfs-actions.pod:5191 ../src/guestfs-actions.pod:5209
6443 #: ../src/guestfs-actions.pod:5241 ../src/guestfs-actions.pod:5307
6444 #: ../src/guestfs-actions.pod:5324 ../src/guestfs-actions.pod:5337
6445 #: ../src/guestfs-actions.pod:5351 ../src/guestfs-actions.pod:5640
6446 #: ../src/guestfs-actions.pod:5659 ../src/guestfs-actions.pod:5678
6447 #: ../src/guestfs-actions.pod:5690 ../src/guestfs-actions.pod:5702
6448 #: ../src/guestfs-actions.pod:5716 ../src/guestfs-actions.pod:5728
6449 #: ../src/guestfs-actions.pod:5742 ../src/guestfs-actions.pod:5758
6450 #: ../src/guestfs-actions.pod:5779 ../src/guestfs-actions.pod:5798
6451 #: ../src/guestfs-actions.pod:5817 ../src/guestfs-actions.pod:5847
6452 #: ../src/guestfs-actions.pod:5863 ../src/guestfs-actions.pod:5886
6453 #: ../src/guestfs-actions.pod:5904 ../src/guestfs-actions.pod:5923
6454 #: ../src/guestfs-actions.pod:5944 ../src/guestfs-actions.pod:5963
6455 #: ../src/guestfs-actions.pod:5980 ../src/guestfs-actions.pod:6008
6456 #: ../src/guestfs-actions.pod:6032 ../src/guestfs-actions.pod:6051
6457 #: ../src/guestfs-actions.pod:6075 ../src/guestfs-actions.pod:6094
6458 #: ../src/guestfs-actions.pod:6109 ../src/guestfs-actions.pod:6128
6459 #: ../src/guestfs-actions.pod:6165 ../src/guestfs-actions.pod:6195
6460 #: ../src/guestfs-actions.pod:6228 ../src/guestfs-actions.pod:6350
6461 #: ../src/guestfs-actions.pod:6471 ../src/guestfs-actions.pod:6483
6462 #: ../src/guestfs-actions.pod:6496 ../src/guestfs-actions.pod:6509
6463 #: ../src/guestfs-actions.pod:6531 ../src/guestfs-actions.pod:6544
6464 #: ../src/guestfs-actions.pod:6557 ../src/guestfs-actions.pod:6570
6465 #: ../src/guestfs-actions.pod:6585 ../src/guestfs-actions.pod:6644
6466 #: ../src/guestfs-actions.pod:6661 ../src/guestfs-actions.pod:6677
6467 #: ../src/guestfs-actions.pod:6693 ../src/guestfs-actions.pod:6710
6468 #: ../src/guestfs-actions.pod:6723 ../src/guestfs-actions.pod:6743
6469 #: ../src/guestfs-actions.pod:6779 ../src/guestfs-actions.pod:6793
6470 #: ../src/guestfs-actions.pod:6834 ../src/guestfs-actions.pod:6847
6471 #: ../src/guestfs-actions.pod:6865 ../src/guestfs-actions.pod:6899
6472 #: ../src/guestfs-actions.pod:6935 ../src/guestfs-actions.pod:7054
6473 #: ../src/guestfs-actions.pod:7072 ../src/guestfs-actions.pod:7086
6474 #: ../src/guestfs-actions.pod:7141 ../src/guestfs-actions.pod:7154
6475 #: ../src/guestfs-actions.pod:7199 ../src/guestfs-actions.pod:7232
6476 #: ../src/guestfs-actions.pod:7293 ../src/guestfs-actions.pod:7319
6477 #: ../src/guestfs-actions.pod:7385 ../src/guestfs-actions.pod:7404
6478 #: ../src/guestfs-actions.pod:7433
6479 msgid "This function returns 0 on success or -1 on error."
6480 msgstr ""
6481
6482 #. type: textblock
6483 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:248
6484 #: ../src/guestfs-actions.pod:269
6485 msgid ""
6486 "This function is deprecated.  In new code, use the L</"
6487 "guestfs_add_drive_opts> call instead."
6488 msgstr ""
6489
6490 # type: textblock
6491 #. type: textblock
6492 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:251
6493 #: ../src/guestfs-actions.pod:272 ../src/guestfs-actions.pod:1453
6494 #: ../src/guestfs-actions.pod:1946 ../src/guestfs-actions.pod:1967
6495 #: ../src/guestfs-actions.pod:4431 ../src/guestfs-actions.pod:4738
6496 #: ../src/guestfs-actions.pod:6173 ../src/guestfs-actions.pod:6203
6497 #: ../src/guestfs-actions.pod:6236 ../src/guestfs-actions.pod:6295
6498 #: ../src/guestfs-actions.pod:7237 ../src/guestfs-actions.pod:7327
6499 #: ../src/guestfs-actions.pod:7496 ../fish/guestfish-actions.pod:31
6500 #: ../fish/guestfish-actions.pod:161 ../fish/guestfish-actions.pod:175
6501 #: ../fish/guestfish-actions.pod:961 ../fish/guestfish-actions.pod:1321
6502 #: ../fish/guestfish-actions.pod:1335 ../fish/guestfish-actions.pod:3010
6503 #: ../fish/guestfish-actions.pod:3207 ../fish/guestfish-actions.pod:4188
6504 #: ../fish/guestfish-actions.pod:4211 ../fish/guestfish-actions.pod:4233
6505 #: ../fish/guestfish-actions.pod:4271 ../fish/guestfish-actions.pod:4912
6506 #: ../fish/guestfish-actions.pod:5009
6507 msgid ""
6508 "Deprecated functions will not be removed from the API, but the fact that "
6509 "they are deprecated indicates that there are problems with correct use of "
6510 "these functions."
6511 msgstr ""
6512
6513 # type: textblock
6514 #. type: textblock
6515 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:136
6516 #: ../src/guestfs-actions.pod:1105 ../src/guestfs-actions.pod:1918
6517 #: ../src/guestfs-actions.pod:2016 ../src/guestfs-actions.pod:2119
6518 #: ../src/guestfs-actions.pod:3463 ../src/guestfs-actions.pod:3483
6519 #: ../src/guestfs-actions.pod:4742 ../src/guestfs-actions.pod:5865
6520 #: ../src/guestfs-actions.pod:5982 ../src/guestfs-actions.pod:6096
6521 #: ../src/guestfs-actions.pod:6587 ../src/guestfs-actions.pod:6712
6522 #: ../src/guestfs-actions.pod:7241
6523 msgid "(Added in 0.3)"
6524 msgstr ""
6525
6526 # type: =head2
6527 #. type: =head2
6528 #: ../src/guestfs-actions.pod:41
6529 msgid "guestfs_add_domain"
6530 msgstr ""
6531
6532 # type: verbatim
6533 #. type: verbatim
6534 #: ../src/guestfs-actions.pod:43
6535 #, no-wrap
6536 msgid ""
6537 " int\n"
6538 " guestfs_add_domain (guestfs_h *g,\n"
6539 "                     const char *dom,\n"
6540 "                     ...);\n"
6541 "\n"
6542 msgstr ""
6543
6544 # type: textblock
6545 #. type: textblock
6546 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:145
6547 #: ../src/guestfs-actions.pod:4445
6548 msgid ""
6549 "You may supply a list of optional arguments to this call.  Use zero or more "
6550 "of the following pairs of parameters, and terminate the list with C<-1> on "
6551 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
6552 msgstr ""
6553
6554 #. type: verbatim
6555 #: ../src/guestfs-actions.pod:53
6556 #, no-wrap
6557 msgid ""
6558 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
6559 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
6560 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
6561 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
6562 "\n"
6563 msgstr ""
6564
6565 # type: textblock
6566 #. type: textblock
6567 #: ../src/guestfs-actions.pod:58
6568 msgid ""
6569 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
6570 "It works by connecting to libvirt, requesting the domain and domain XML from "
6571 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
6572 "one."
6573 msgstr ""
6574
6575 # type: textblock
6576 #. type: textblock
6577 #: ../src/guestfs-actions.pod:63 ../fish/guestfish-actions.pod:46
6578 msgid ""
6579 "The number of disks added is returned.  This operation is atomic: if an "
6580 "error is returned, then no disks are added."
6581 msgstr ""
6582
6583 # type: textblock
6584 #. type: textblock
6585 #: ../src/guestfs-actions.pod:66 ../fish/guestfish-actions.pod:49
6586 msgid ""
6587 "This function does some minimal checks to make sure the libvirt domain is "
6588 "not running (unless C<readonly> is true).  In a future version we will try "
6589 "to acquire the libvirt lock on each disk."
6590 msgstr ""
6591
6592 # type: textblock
6593 #. type: textblock
6594 #: ../src/guestfs-actions.pod:70 ../fish/guestfish-actions.pod:53
6595 msgid ""
6596 "Disks must be accessible locally.  This often means that adding disks from a "
6597 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
6598 "unless those disks are accessible via the same device path locally too."
6599 msgstr ""
6600
6601 #. type: textblock
6602 #: ../src/guestfs-actions.pod:75 ../fish/guestfish-actions.pod:58
6603 msgid ""
6604 "The optional C<libvirturi> parameter sets the libvirt URI (see L<http://"
6605 "libvirt.org/uri.html>).  If this is not set then we connect to the default "
6606 "libvirt URI (or one set through an environment variable, see the libvirt "
6607 "documentation for full details)."
6608 msgstr ""
6609
6610 #. type: textblock
6611 #: ../src/guestfs-actions.pod:81 ../fish/guestfish-actions.pod:64
6612 msgid ""
6613 "The optional C<live> flag controls whether this call will try to connect to "
6614 "a running virtual machine C<guestfsd> process if it sees a suitable "
6615 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
6616 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING "
6617 "DAEMONS> for more information."
6618 msgstr ""
6619
6620 # type: textblock
6621 #. type: textblock
6622 #: ../src/guestfs-actions.pod:88
6623 msgid ""
6624 "The other optional parameters are passed directly through to "
6625 "C<guestfs_add_drive_opts>."
6626 msgstr ""
6627
6628 # type: textblock
6629 #. type: textblock
6630 #: ../src/guestfs-actions.pod:91 ../src/guestfs-actions.pod:344
6631 #: ../src/guestfs-actions.pod:514 ../src/guestfs-actions.pod:692
6632 #: ../src/guestfs-actions.pod:723 ../src/guestfs-actions.pod:741
6633 #: ../src/guestfs-actions.pod:760 ../src/guestfs-actions.pod:1320
6634 #: ../src/guestfs-actions.pod:1676 ../src/guestfs-actions.pod:1879
6635 #: ../src/guestfs-actions.pod:1988 ../src/guestfs-actions.pod:2028
6636 #: ../src/guestfs-actions.pod:2083 ../src/guestfs-actions.pod:2106
6637 #: ../src/guestfs-actions.pod:2399 ../src/guestfs-actions.pod:2782
6638 #: ../src/guestfs-actions.pod:2803 ../src/guestfs-actions.pod:4878
6639 #: ../src/guestfs-actions.pod:5015 ../src/guestfs-actions.pod:5421
6640 #: ../src/guestfs-actions.pod:5447 ../src/guestfs-actions.pod:6820
6641 #: ../src/guestfs-actions.pod:7252 ../src/guestfs-actions.pod:7265
6642 #: ../src/guestfs-actions.pod:7278
6643 msgid "On error this function returns -1."
6644 msgstr ""
6645
6646 # type: textblock
6647 #. type: textblock
6648 #: ../src/guestfs-actions.pod:93
6649 msgid "(Added in 1.7.4)"
6650 msgstr ""
6651
6652 # type: =head2
6653 #. type: =head2
6654 #: ../src/guestfs-actions.pod:95
6655 msgid "guestfs_add_domain_va"
6656 msgstr ""
6657
6658 # type: verbatim
6659 #. type: verbatim
6660 #: ../src/guestfs-actions.pod:97
6661 #, no-wrap
6662 msgid ""
6663 " int\n"
6664 " guestfs_add_domain_va (guestfs_h *g,\n"
6665 "                        const char *dom,\n"
6666 "                        va_list args);\n"
6667 "\n"
6668 msgstr ""
6669
6670 # type: textblock
6671 #. type: textblock
6672 #: ../src/guestfs-actions.pod:102
6673 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
6674 msgstr ""
6675
6676 # type: textblock
6677 #. type: textblock
6678 #: ../src/guestfs-actions.pod:104 ../src/guestfs-actions.pod:115
6679 #: ../src/guestfs-actions.pod:208 ../src/guestfs-actions.pod:219
6680 #: ../src/guestfs-actions.pod:4498 ../src/guestfs-actions.pod:4510
6681 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
6682 msgstr ""
6683
6684 # type: =head2
6685 #. type: =head2
6686 #: ../src/guestfs-actions.pod:106
6687 msgid "guestfs_add_domain_argv"
6688 msgstr ""
6689
6690 # type: verbatim
6691 #. type: verbatim
6692 #: ../src/guestfs-actions.pod:108
6693 #, no-wrap
6694 msgid ""
6695 " int\n"
6696 " guestfs_add_domain_argv (guestfs_h *g,\n"
6697 "                          const char *dom,\n"
6698 "                          const struct guestfs_add_domain_argv *optargs);\n"
6699 "\n"
6700 msgstr ""
6701
6702 # type: textblock
6703 #. type: textblock
6704 #: ../src/guestfs-actions.pod:113
6705 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
6706 msgstr ""
6707
6708 # type: =head2
6709 #. type: =head2
6710 #: ../src/guestfs-actions.pod:117
6711 msgid "guestfs_add_drive"
6712 msgstr ""
6713
6714 # type: verbatim
6715 #. type: verbatim
6716 #: ../src/guestfs-actions.pod:119
6717 #, no-wrap
6718 msgid ""
6719 " int\n"
6720 " guestfs_add_drive (guestfs_h *g,\n"
6721 "                    const char *filename);\n"
6722 "\n"
6723 msgstr ""
6724
6725 # type: textblock
6726 #. type: textblock
6727 #: ../src/guestfs-actions.pod:123
6728 msgid ""
6729 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
6730 "optional parameters, so the disk is added writable, with the format being "
6731 "detected automatically."
6732 msgstr ""
6733
6734 # type: textblock
6735 #. type: textblock
6736 #: ../src/guestfs-actions.pod:127
6737 msgid ""
6738 "Automatic detection of the format opens you up to a potential security hole "
6739 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6740 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6741 "you should think about replacing calls to this function with calls to "
6742 "C<guestfs_add_drive_opts>, and specifying the format."
6743 msgstr ""
6744
6745 # type: =head2
6746 #. type: =head2
6747 #: ../src/guestfs-actions.pod:138
6748 msgid "guestfs_add_drive_opts"
6749 msgstr ""
6750
6751 # type: verbatim
6752 #. type: verbatim
6753 #: ../src/guestfs-actions.pod:140
6754 #, no-wrap
6755 msgid ""
6756 " int\n"
6757 " guestfs_add_drive_opts (guestfs_h *g,\n"
6758 "                         const char *filename,\n"
6759 "                         ...);\n"
6760 "\n"
6761 msgstr ""
6762
6763 # type: verbatim
6764 #. type: verbatim
6765 #: ../src/guestfs-actions.pod:150
6766 #, no-wrap
6767 msgid ""
6768 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6769 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6770 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6771 "\n"
6772 msgstr ""
6773
6774 # type: textblock
6775 #. type: textblock
6776 #: ../src/guestfs-actions.pod:154 ../fish/guestfish-actions.pod:97
6777 msgid ""
6778 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6779 "The first time you call this function, the disk appears as C</dev/sda>, the "
6780 "second time as C</dev/sdb>, and so on."
6781 msgstr ""
6782
6783 # type: textblock
6784 #. type: textblock
6785 #: ../src/guestfs-actions.pod:159 ../fish/guestfish-actions.pod:102
6786 msgid ""
6787 "You don't necessarily need to be root when using libguestfs.  However you "
6788 "obviously do need sufficient permissions to access the filename for whatever "
6789 "operations you want to perform (ie. read access if you just want to read the "
6790 "image or write access if you want to modify the image)."
6791 msgstr ""
6792
6793 # type: textblock
6794 #. type: textblock
6795 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:108
6796 msgid "This call checks that C<filename> exists."
6797 msgstr ""
6798
6799 # type: textblock
6800 #. type: textblock
6801 #: ../src/guestfs-actions.pod:167 ../src/guestfs-actions.pod:4456
6802 #: ../fish/guestfish-actions.pod:110 ../fish/guestfish-actions.pod:3021
6803 msgid "The optional arguments are:"
6804 msgstr ""
6805
6806 # type: =item
6807 #. type: =item
6808 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:114
6809 msgid "C<readonly>"
6810 msgstr ""
6811
6812 # type: textblock
6813 #. type: textblock
6814 #: ../src/guestfs-actions.pod:173 ../fish/guestfish-actions.pod:116
6815 msgid ""
6816 "If true then the image is treated as read-only.  Writes are still allowed, "
6817 "but they are stored in a temporary snapshot overlay which is discarded at "
6818 "the end.  The disk that you add is not modified."
6819 msgstr ""
6820
6821 # type: =item
6822 #. type: =item
6823 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:120
6824 msgid "C<format>"
6825 msgstr ""
6826
6827 # type: textblock
6828 #. type: textblock
6829 #: ../src/guestfs-actions.pod:179
6830 msgid ""
6831 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
6832 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6833 "Possible formats include C<raw> and C<qcow2>."
6834 msgstr ""
6835
6836 # type: textblock
6837 #. type: textblock
6838 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:126
6839 msgid ""
6840 "Automatic detection of the format opens you up to a potential security hole "
6841 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6842 "RHBZ#642934.  Specifying the format closes this security hole."
6843 msgstr ""
6844
6845 # type: =item
6846 #. type: =item
6847 #: ../src/guestfs-actions.pod:188 ../fish/guestfish-actions.pod:131
6848 msgid "C<iface>"
6849 msgstr ""
6850
6851 # type: textblock
6852 #. type: textblock
6853 #: ../src/guestfs-actions.pod:190
6854 msgid ""
6855 "This rarely-used option lets you emulate the behaviour of the deprecated "
6856 "C<guestfs_add_drive_with_if> call (q.v.)"
6857 msgstr ""
6858
6859 # type: textblock
6860 #. type: textblock
6861 #: ../src/guestfs-actions.pod:197
6862 msgid "(Added in 1.5.23)"
6863 msgstr ""
6864
6865 # type: =head2
6866 #. type: =head2
6867 #: ../src/guestfs-actions.pod:199
6868 msgid "guestfs_add_drive_opts_va"
6869 msgstr ""
6870
6871 # type: verbatim
6872 #. type: verbatim
6873 #: ../src/guestfs-actions.pod:201
6874 #, no-wrap
6875 msgid ""
6876 " int\n"
6877 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6878 "                            const char *filename,\n"
6879 "                            va_list args);\n"
6880 "\n"
6881 msgstr ""
6882
6883 # type: textblock
6884 #. type: textblock
6885 #: ../src/guestfs-actions.pod:206
6886 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6887 msgstr ""
6888
6889 # type: =head2
6890 #. type: =head2
6891 #: ../src/guestfs-actions.pod:210
6892 msgid "guestfs_add_drive_opts_argv"
6893 msgstr ""
6894
6895 # type: verbatim
6896 #. type: verbatim
6897 #: ../src/guestfs-actions.pod:212
6898 #, no-wrap
6899 msgid ""
6900 " int\n"
6901 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6902 "                              const char *filename,\n"
6903 "                              const struct guestfs_add_drive_opts_argv *optargs);\n"
6904 "\n"
6905 msgstr ""
6906
6907 # type: textblock
6908 #. type: textblock
6909 #: ../src/guestfs-actions.pod:217
6910 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6911 msgstr ""
6912
6913 # type: =head2
6914 #. type: =head2
6915 #: ../src/guestfs-actions.pod:221
6916 msgid "guestfs_add_drive_ro"
6917 msgstr ""
6918
6919 # type: verbatim
6920 #. type: verbatim
6921 #: ../src/guestfs-actions.pod:223
6922 #, no-wrap
6923 msgid ""
6924 " int\n"
6925 " guestfs_add_drive_ro (guestfs_h *g,\n"
6926 "                       const char *filename);\n"
6927 "\n"
6928 msgstr ""
6929
6930 # type: textblock
6931 #. type: textblock
6932 #: ../src/guestfs-actions.pod:227
6933 msgid ""
6934 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6935 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6936 "disk is added read-only, with the format being detected automatically."
6937 msgstr ""
6938
6939 # type: textblock
6940 #. type: textblock
6941 #: ../src/guestfs-actions.pod:234
6942 msgid "(Added in 1.0.38)"
6943 msgstr ""
6944
6945 # type: =head2
6946 #. type: =head2
6947 #: ../src/guestfs-actions.pod:236
6948 msgid "guestfs_add_drive_ro_with_if"
6949 msgstr ""
6950
6951 # type: verbatim
6952 #. type: verbatim
6953 #: ../src/guestfs-actions.pod:238
6954 #, no-wrap
6955 msgid ""
6956 " int\n"
6957 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6958 "                               const char *filename,\n"
6959 "                               const char *iface);\n"
6960 "\n"
6961 msgstr ""
6962
6963 # type: textblock
6964 #. type: textblock
6965 #: ../src/guestfs-actions.pod:243
6966 msgid ""
6967 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6968 "QEMU interface emulation to use at run time."
6969 msgstr ""
6970
6971 # type: textblock
6972 #. type: textblock
6973 #: ../src/guestfs-actions.pod:255 ../src/guestfs-actions.pod:276
6974 #: ../src/guestfs-actions.pod:2358
6975 msgid "(Added in 1.0.84)"
6976 msgstr ""
6977
6978 # type: =head2
6979 #. type: =head2
6980 #: ../src/guestfs-actions.pod:257
6981 msgid "guestfs_add_drive_with_if"
6982 msgstr ""
6983
6984 # type: verbatim
6985 #. type: verbatim
6986 #: ../src/guestfs-actions.pod:259
6987 #, no-wrap
6988 msgid ""
6989 " int\n"
6990 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6991 "                            const char *filename,\n"
6992 "                            const char *iface);\n"
6993 "\n"
6994 msgstr ""
6995
6996 # type: textblock
6997 #. type: textblock
6998 #: ../src/guestfs-actions.pod:264
6999 msgid ""
7000 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
7001 "QEMU interface emulation to use at run time."
7002 msgstr ""
7003
7004 # type: =head2
7005 #. type: =head2
7006 #: ../src/guestfs-actions.pod:278
7007 msgid "guestfs_aug_clear"
7008 msgstr ""
7009
7010 # type: verbatim
7011 #. type: verbatim
7012 #: ../src/guestfs-actions.pod:280
7013 #, no-wrap
7014 msgid ""
7015 " int\n"
7016 " guestfs_aug_clear (guestfs_h *g,\n"
7017 "                    const char *augpath);\n"
7018 "\n"
7019 msgstr ""
7020
7021 # type: textblock
7022 #. type: textblock
7023 #: ../src/guestfs-actions.pod:284 ../fish/guestfish-actions.pod:183
7024 msgid ""
7025 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
7026 "L<augtool(1)> C<clear> command."
7027 msgstr ""
7028
7029 # type: textblock
7030 #. type: textblock
7031 #: ../src/guestfs-actions.pod:289 ../src/guestfs-actions.pod:2108
7032 msgid "(Added in 1.3.4)"
7033 msgstr ""
7034
7035 # type: =head2
7036 #. type: =head2
7037 #: ../src/guestfs-actions.pod:291
7038 msgid "guestfs_aug_close"
7039 msgstr ""
7040
7041 # type: verbatim
7042 #. type: verbatim
7043 #: ../src/guestfs-actions.pod:293
7044 #, no-wrap
7045 msgid ""
7046 " int\n"
7047 " guestfs_aug_close (guestfs_h *g);\n"
7048 "\n"
7049 msgstr ""
7050
7051 # type: textblock
7052 #. type: textblock
7053 #: ../src/guestfs-actions.pod:296
7054 msgid ""
7055 "Close the current Augeas handle and free up any resources used by it.  After "
7056 "calling this, you have to call C<guestfs_aug_init> again before you can use "
7057 "any other Augeas functions."
7058 msgstr ""
7059
7060 # type: textblock
7061 #. type: textblock
7062 #: ../src/guestfs-actions.pod:303 ../src/guestfs-actions.pod:328
7063 #: ../src/guestfs-actions.pod:346 ../src/guestfs-actions.pod:360
7064 #: ../src/guestfs-actions.pod:423 ../src/guestfs-actions.pod:443
7065 #: ../src/guestfs-actions.pod:457 ../src/guestfs-actions.pod:488
7066 #: ../src/guestfs-actions.pod:502 ../src/guestfs-actions.pod:516
7067 #: ../src/guestfs-actions.pod:530 ../src/guestfs-actions.pod:548
7068 #: ../src/guestfs-actions.pod:5498
7069 msgid "(Added in 0.7)"
7070 msgstr ""
7071
7072 # type: =head2
7073 #. type: =head2
7074 #: ../src/guestfs-actions.pod:305
7075 msgid "guestfs_aug_defnode"
7076 msgstr ""
7077
7078 # type: verbatim
7079 #. type: verbatim
7080 #: ../src/guestfs-actions.pod:307
7081 #, no-wrap
7082 msgid ""
7083 " struct guestfs_int_bool *\n"
7084 " guestfs_aug_defnode (guestfs_h *g,\n"
7085 "                      const char *name,\n"
7086 "                      const char *expr,\n"
7087 "                      const char *val);\n"
7088 "\n"
7089 msgstr ""
7090
7091 # type: textblock
7092 #. type: textblock
7093 #: ../src/guestfs-actions.pod:313 ../fish/guestfish-actions.pod:199
7094 msgid ""
7095 "Defines a variable C<name> whose value is the result of evaluating C<expr>."
7096 msgstr ""
7097
7098 # type: textblock
7099 #. type: textblock
7100 #: ../src/guestfs-actions.pod:316
7101 msgid ""
7102 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
7103 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
7104 "containing that single node."
7105 msgstr ""
7106
7107 # type: textblock
7108 #. type: textblock
7109 #: ../src/guestfs-actions.pod:320 ../fish/guestfish-actions.pod:206
7110 msgid ""
7111 "On success this returns a pair containing the number of nodes in the "
7112 "nodeset, and a boolean flag if a node was created."
7113 msgstr ""
7114
7115 # type: textblock
7116 #. type: textblock
7117 #: ../src/guestfs-actions.pod:324
7118 msgid ""
7119 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
7120 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
7121 msgstr ""
7122
7123 # type: =head2
7124 #. type: =head2
7125 #: ../src/guestfs-actions.pod:330
7126 msgid "guestfs_aug_defvar"
7127 msgstr ""
7128
7129 # type: verbatim
7130 #. type: verbatim
7131 #: ../src/guestfs-actions.pod:332
7132 #, no-wrap
7133 msgid ""
7134 " int\n"
7135 " guestfs_aug_defvar (guestfs_h *g,\n"
7136 "                     const char *name,\n"
7137 "                     const char *expr);\n"
7138 "\n"
7139 msgstr ""
7140
7141 # type: textblock
7142 #. type: textblock
7143 #: ../src/guestfs-actions.pod:337 ../fish/guestfish-actions.pod:214
7144 msgid ""
7145 "Defines an Augeas variable C<name> whose value is the result of evaluating "
7146 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
7147 msgstr ""
7148
7149 # type: textblock
7150 #. type: textblock
7151 #: ../src/guestfs-actions.pod:341 ../fish/guestfish-actions.pod:218
7152 msgid ""
7153 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
7154 "evaluates to something which is not a nodeset."
7155 msgstr ""
7156
7157 # type: =head2
7158 #. type: =head2
7159 #: ../src/guestfs-actions.pod:348
7160 msgid "guestfs_aug_get"
7161 msgstr ""
7162
7163 # type: verbatim
7164 #. type: verbatim
7165 #: ../src/guestfs-actions.pod:350
7166 #, no-wrap
7167 msgid ""
7168 " char *\n"
7169 " guestfs_aug_get (guestfs_h *g,\n"
7170 "                  const char *augpath);\n"
7171 "\n"
7172 msgstr ""
7173
7174 # type: textblock
7175 #. type: textblock
7176 #: ../src/guestfs-actions.pod:354 ../fish/guestfish-actions.pod:225
7177 msgid ""
7178 "Look up the value associated with C<path>.  If C<path> matches exactly one "
7179 "node, the C<value> is returned."
7180 msgstr ""
7181
7182 # type: textblock
7183 #. type: textblock
7184 #: ../src/guestfs-actions.pod:357 ../src/guestfs-actions.pod:862
7185 #: ../src/guestfs-actions.pod:880 ../src/guestfs-actions.pod:940
7186 #: ../src/guestfs-actions.pod:956 ../src/guestfs-actions.pod:1059
7187 #: ../src/guestfs-actions.pod:1189 ../src/guestfs-actions.pod:1206
7188 #: ../src/guestfs-actions.pod:1225 ../src/guestfs-actions.pod:1359
7189 #: ../src/guestfs-actions.pod:1547 ../src/guestfs-actions.pod:1659
7190 #: ../src/guestfs-actions.pod:1822 ../src/guestfs-actions.pod:1839
7191 #: ../src/guestfs-actions.pod:1906 ../src/guestfs-actions.pod:1940
7192 #: ../src/guestfs-actions.pod:1961 ../src/guestfs-actions.pod:2131
7193 #: ../src/guestfs-actions.pod:2323 ../src/guestfs-actions.pod:2530
7194 #: ../src/guestfs-actions.pod:2623 ../src/guestfs-actions.pod:2734
7195 #: ../src/guestfs-actions.pod:2754 ../src/guestfs-actions.pod:2874
7196 #: ../src/guestfs-actions.pod:2905 ../src/guestfs-actions.pod:2929
7197 #: ../src/guestfs-actions.pod:2966 ../src/guestfs-actions.pod:3026
7198 #: ../src/guestfs-actions.pod:3049 ../src/guestfs-actions.pod:3070
7199 #: ../src/guestfs-actions.pod:3642 ../src/guestfs-actions.pod:3992
7200 #: ../src/guestfs-actions.pod:4162 ../src/guestfs-actions.pod:4272
7201 #: ../src/guestfs-actions.pod:5033 ../src/guestfs-actions.pod:5226
7202 #: ../src/guestfs-actions.pod:5396 ../src/guestfs-actions.pod:5574
7203 #: ../src/guestfs-actions.pod:5623 ../src/guestfs-actions.pod:6256
7204 #: ../src/guestfs-actions.pod:6272 ../src/guestfs-actions.pod:6289
7205 #: ../src/guestfs-actions.pod:6320 ../src/guestfs-actions.pod:6994
7206 #: ../src/guestfs-actions.pod:7013 ../src/guestfs-actions.pod:7031
7207 #: ../src/guestfs-actions.pod:7211 ../src/guestfs-actions.pod:7490
7208 msgid ""
7209 "This function returns a string, or NULL on error.  I<The caller must free "
7210 "the returned string after use>."
7211 msgstr ""
7212
7213 # type: =head2
7214 #. type: =head2
7215 #: ../src/guestfs-actions.pod:362
7216 msgid "guestfs_aug_init"
7217 msgstr ""
7218
7219 # type: verbatim
7220 #. type: verbatim
7221 #: ../src/guestfs-actions.pod:364
7222 #, no-wrap
7223 msgid ""
7224 " int\n"
7225 " guestfs_aug_init (guestfs_h *g,\n"
7226 "                   const char *root,\n"
7227 "                   int flags);\n"
7228 "\n"
7229 msgstr ""
7230
7231 # type: textblock
7232 #. type: textblock
7233 #: ../src/guestfs-actions.pod:369 ../fish/guestfish-actions.pod:232
7234 msgid ""
7235 "Create a new Augeas handle for editing configuration files.  If there was "
7236 "any previous Augeas handle associated with this guestfs session, then it is "
7237 "closed."
7238 msgstr ""
7239
7240 # type: textblock
7241 #. type: textblock
7242 #: ../src/guestfs-actions.pod:373
7243 msgid "You must call this before using any other C<guestfs_aug_*> commands."
7244 msgstr ""
7245
7246 # type: textblock
7247 #. type: textblock
7248 #: ../src/guestfs-actions.pod:376 ../fish/guestfish-actions.pod:239
7249 msgid ""
7250 "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
7251 msgstr ""
7252
7253 # type: textblock
7254 #. type: textblock
7255 #: ../src/guestfs-actions.pod:379 ../fish/guestfish-actions.pod:242
7256 msgid ""
7257 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
7258 "logical I<or> of the following integers:"
7259 msgstr ""
7260
7261 # type: =item
7262 #. type: =item
7263 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:248
7264 msgid "C<AUG_SAVE_BACKUP> = 1"
7265 msgstr ""
7266
7267 # type: textblock
7268 #. type: textblock
7269 #: ../src/guestfs-actions.pod:387 ../fish/guestfish-actions.pod:250
7270 msgid "Keep the original file with a C<.augsave> extension."
7271 msgstr ""
7272
7273 # type: =item
7274 #. type: =item
7275 #: ../src/guestfs-actions.pod:389 ../fish/guestfish-actions.pod:252
7276 msgid "C<AUG_SAVE_NEWFILE> = 2"
7277 msgstr ""
7278
7279 # type: textblock
7280 #. type: textblock
7281 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:254
7282 msgid ""
7283 "Save changes into a file with extension C<.augnew>, and do not overwrite "
7284 "original.  Overrides C<AUG_SAVE_BACKUP>."
7285 msgstr ""
7286
7287 # type: =item
7288 #. type: =item
7289 #: ../src/guestfs-actions.pod:394 ../fish/guestfish-actions.pod:257
7290 msgid "C<AUG_TYPE_CHECK> = 4"
7291 msgstr ""
7292
7293 #. type: textblock
7294 #: ../src/guestfs-actions.pod:396 ../fish/guestfish-actions.pod:259
7295 msgid "Typecheck lenses."
7296 msgstr ""
7297
7298 #. type: textblock
7299 #: ../src/guestfs-actions.pod:398
7300 msgid ""
7301 "This option is only useful when debugging Augeas lenses.  Use of this option "
7302 "may require additional memory for the libguestfs appliance.  You may need to "
7303 "set the C<LIBGUESTFS_MEMSIZE> environment variable or call "
7304 "C<guestfs_set_memsize>."
7305 msgstr ""
7306
7307 # type: =item
7308 #. type: =item
7309 #: ../src/guestfs-actions.pod:403 ../fish/guestfish-actions.pod:266
7310 msgid "C<AUG_NO_STDINC> = 8"
7311 msgstr ""
7312
7313 # type: textblock
7314 #. type: textblock
7315 #: ../src/guestfs-actions.pod:405 ../fish/guestfish-actions.pod:268
7316 msgid "Do not use standard load path for modules."
7317 msgstr ""
7318
7319 # type: =item
7320 #. type: =item
7321 #: ../src/guestfs-actions.pod:407 ../fish/guestfish-actions.pod:270
7322 msgid "C<AUG_SAVE_NOOP> = 16"
7323 msgstr ""
7324
7325 # type: textblock
7326 #. type: textblock
7327 #: ../src/guestfs-actions.pod:409 ../fish/guestfish-actions.pod:272
7328 msgid "Make save a no-op, just record what would have been changed."
7329 msgstr ""
7330
7331 # type: =item
7332 #. type: =item
7333 #: ../src/guestfs-actions.pod:411 ../fish/guestfish-actions.pod:274
7334 msgid "C<AUG_NO_LOAD> = 32"
7335 msgstr ""
7336
7337 # type: textblock
7338 #. type: textblock
7339 #: ../src/guestfs-actions.pod:413
7340 msgid "Do not load the tree in C<guestfs_aug_init>."
7341 msgstr ""
7342
7343 # type: textblock
7344 #. type: textblock
7345 #: ../src/guestfs-actions.pod:417
7346 msgid "To close the handle, you can call C<guestfs_aug_close>."
7347 msgstr ""
7348
7349 # type: textblock
7350 #. type: textblock
7351 #: ../src/guestfs-actions.pod:419 ../fish/guestfish-actions.pod:282
7352 msgid "To find out more about Augeas, see L<http://augeas.net/>."
7353 msgstr ""
7354
7355 # type: =head2
7356 #. type: =head2
7357 #: ../src/guestfs-actions.pod:425
7358 msgid "guestfs_aug_insert"
7359 msgstr ""
7360
7361 # type: verbatim
7362 #. type: verbatim
7363 #: ../src/guestfs-actions.pod:427
7364 #, no-wrap
7365 msgid ""
7366 " int\n"
7367 " guestfs_aug_insert (guestfs_h *g,\n"
7368 "                     const char *augpath,\n"
7369 "                     const char *label,\n"
7370 "                     int before);\n"
7371 "\n"
7372 msgstr ""
7373
7374 # type: textblock
7375 #. type: textblock
7376 #: ../src/guestfs-actions.pod:433 ../fish/guestfish-actions.pod:288
7377 msgid ""
7378 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
7379 "or after C<path> (depending on the boolean flag C<before>)."
7380 msgstr ""
7381
7382 # type: textblock
7383 #. type: textblock
7384 #: ../src/guestfs-actions.pod:437 ../fish/guestfish-actions.pod:292
7385 msgid ""
7386 "C<path> must match exactly one existing node in the tree, and C<label> must "
7387 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
7388 msgstr ""
7389
7390 # type: =head2
7391 #. type: =head2
7392 #: ../src/guestfs-actions.pod:445
7393 msgid "guestfs_aug_load"
7394 msgstr ""
7395
7396 # type: verbatim
7397 #. type: verbatim
7398 #: ../src/guestfs-actions.pod:447
7399 #, no-wrap
7400 msgid ""
7401 " int\n"
7402 " guestfs_aug_load (guestfs_h *g);\n"
7403 "\n"
7404 msgstr ""
7405
7406 # type: textblock
7407 #. type: textblock
7408 #: ../src/guestfs-actions.pod:450 ../fish/guestfish-actions.pod:300
7409 msgid "Load files into the tree."
7410 msgstr ""
7411
7412 # type: textblock
7413 #. type: textblock
7414 #: ../src/guestfs-actions.pod:452 ../fish/guestfish-actions.pod:302
7415 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
7416 msgstr ""
7417
7418 # type: =head2
7419 #. type: =head2
7420 #: ../src/guestfs-actions.pod:459
7421 msgid "guestfs_aug_ls"
7422 msgstr ""
7423
7424 # type: verbatim
7425 #. type: verbatim
7426 #: ../src/guestfs-actions.pod:461
7427 #, no-wrap
7428 msgid ""
7429 " char **\n"
7430 " guestfs_aug_ls (guestfs_h *g,\n"
7431 "                 const char *augpath);\n"
7432 "\n"
7433 msgstr ""
7434
7435 # type: textblock
7436 #. type: textblock
7437 #: ../src/guestfs-actions.pod:465
7438 msgid ""
7439 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
7440 "sorting the resulting nodes into alphabetical order."
7441 msgstr ""
7442
7443 # type: textblock
7444 #. type: textblock
7445 #: ../src/guestfs-actions.pod:468 ../src/guestfs-actions.pod:484
7446 #: ../src/guestfs-actions.pod:630 ../src/guestfs-actions.pod:1078
7447 #: ../src/guestfs-actions.pod:1374 ../src/guestfs-actions.pod:1393
7448 #: ../src/guestfs-actions.pod:1496 ../src/guestfs-actions.pod:1515
7449 #: ../src/guestfs-actions.pod:1761 ../src/guestfs-actions.pod:2203
7450 #: ../src/guestfs-actions.pod:2219 ../src/guestfs-actions.pod:2238
7451 #: ../src/guestfs-actions.pod:2281 ../src/guestfs-actions.pod:2305
7452 #: ../src/guestfs-actions.pod:2376 ../src/guestfs-actions.pod:2425
7453 #: ../src/guestfs-actions.pod:2692 ../src/guestfs-actions.pod:2983
7454 #: ../src/guestfs-actions.pod:3272 ../src/guestfs-actions.pod:3562
7455 #: ../src/guestfs-actions.pod:3624 ../src/guestfs-actions.pod:3729
7456 #: ../src/guestfs-actions.pod:4134 ../src/guestfs-actions.pod:4839
7457 #: ../src/guestfs-actions.pod:5368 ../src/guestfs-actions.pod:5494
7458 #: ../src/guestfs-actions.pod:5608 ../src/guestfs-actions.pod:6336
7459 #: ../src/guestfs-actions.pod:6397 ../src/guestfs-actions.pod:6452
7460 #: ../src/guestfs-actions.pod:6598 ../src/guestfs-actions.pod:6622
7461 #: ../src/guestfs-actions.pod:7104 ../src/guestfs-actions.pod:7124
7462 #: ../src/guestfs-actions.pod:7171 ../src/guestfs-actions.pod:7343
7463 #: ../src/guestfs-actions.pod:7362 ../src/guestfs-actions.pod:7447
7464 #: ../src/guestfs-actions.pod:7466 ../src/guestfs-actions.pod:7512
7465 #: ../src/guestfs-actions.pod:7531
7466 msgid ""
7467 "This function returns a NULL-terminated array of strings (like L<environ(3)"
7468 ">), or NULL if there was an error.  I<The caller must free the strings and "
7469 "the array after use>."
7470 msgstr ""
7471
7472 # type: textblock
7473 #. type: textblock
7474 #: ../src/guestfs-actions.pod:472 ../src/guestfs-actions.pod:1003
7475 #: ../src/guestfs-actions.pod:1021 ../src/guestfs-actions.pod:1431
7476 #: ../src/guestfs-actions.pod:3350 ../src/guestfs-actions.pod:3381
7477 #: ../src/guestfs-actions.pod:3975 ../src/guestfs-actions.pod:4025
7478 #: ../src/guestfs-actions.pod:4212 ../src/guestfs-actions.pod:4245
7479 #: ../src/guestfs-actions.pod:4408 ../src/guestfs-actions.pod:4843
7480 #: ../src/guestfs-actions.pod:5309 ../src/guestfs-actions.pod:5704
7481 #: ../src/guestfs-actions.pod:5718 ../src/guestfs-actions.pod:5730
7482 #: ../src/guestfs-actions.pod:6177 ../src/guestfs-actions.pod:6836
7483 #: ../src/guestfs-actions.pod:6849 ../src/guestfs-actions.pod:7088
7484 #: ../src/guestfs-actions.pod:7331
7485 msgid "(Added in 0.8)"
7486 msgstr ""
7487
7488 # type: =head2
7489 #. type: =head2
7490 #: ../src/guestfs-actions.pod:474
7491 msgid "guestfs_aug_match"
7492 msgstr ""
7493
7494 # type: verbatim
7495 #. type: verbatim
7496 #: ../src/guestfs-actions.pod:476
7497 #, no-wrap
7498 msgid ""
7499 " char **\n"
7500 " guestfs_aug_match (guestfs_h *g,\n"
7501 "                    const char *augpath);\n"
7502 "\n"
7503 msgstr ""
7504
7505 # type: textblock
7506 #. type: textblock
7507 #: ../src/guestfs-actions.pod:480 ../fish/guestfish-actions.pod:316
7508 msgid ""
7509 "Returns a list of paths which match the path expression C<path>.  The "
7510 "returned paths are sufficiently qualified so that they match exactly one "
7511 "node in the current tree."
7512 msgstr ""
7513
7514 # type: =head2
7515 #. type: =head2
7516 #: ../src/guestfs-actions.pod:490
7517 msgid "guestfs_aug_mv"
7518 msgstr ""
7519
7520 # type: verbatim
7521 #. type: verbatim
7522 #: ../src/guestfs-actions.pod:492
7523 #, no-wrap
7524 msgid ""
7525 " int\n"
7526 " guestfs_aug_mv (guestfs_h *g,\n"
7527 "                 const char *src,\n"
7528 "                 const char *dest);\n"
7529 "\n"
7530 msgstr ""
7531
7532 # type: textblock
7533 #. type: textblock
7534 #: ../src/guestfs-actions.pod:497 ../fish/guestfish-actions.pod:324
7535 msgid ""
7536 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
7537 "C<dest> is overwritten if it exists."
7538 msgstr ""
7539
7540 # type: =head2
7541 #. type: =head2
7542 #: ../src/guestfs-actions.pod:504
7543 msgid "guestfs_aug_rm"
7544 msgstr ""
7545
7546 # type: verbatim
7547 #. type: verbatim
7548 #: ../src/guestfs-actions.pod:506
7549 #, no-wrap
7550 msgid ""
7551 " int\n"
7552 " guestfs_aug_rm (guestfs_h *g,\n"
7553 "                 const char *augpath);\n"
7554 "\n"
7555 msgstr ""
7556
7557 # type: textblock
7558 #. type: textblock
7559 #: ../src/guestfs-actions.pod:510 ../fish/guestfish-actions.pod:331
7560 msgid "Remove C<path> and all of its children."
7561 msgstr ""
7562
7563 # type: textblock
7564 #. type: textblock
7565 #: ../src/guestfs-actions.pod:512 ../fish/guestfish-actions.pod:333
7566 msgid "On success this returns the number of entries which were removed."
7567 msgstr ""
7568
7569 # type: =head2
7570 #. type: =head2
7571 #: ../src/guestfs-actions.pod:518
7572 msgid "guestfs_aug_save"
7573 msgstr ""
7574
7575 # type: verbatim
7576 #. type: verbatim
7577 #: ../src/guestfs-actions.pod:520
7578 #, no-wrap
7579 msgid ""
7580 " int\n"
7581 " guestfs_aug_save (guestfs_h *g);\n"
7582 "\n"
7583 msgstr ""
7584
7585 # type: textblock
7586 #. type: textblock
7587 #: ../src/guestfs-actions.pod:523 ../fish/guestfish-actions.pod:339
7588 msgid "This writes all pending changes to disk."
7589 msgstr ""
7590
7591 # type: textblock
7592 #. type: textblock
7593 #: ../src/guestfs-actions.pod:525
7594 msgid ""
7595 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
7596 "are saved."
7597 msgstr ""
7598
7599 # type: =head2
7600 #. type: =head2
7601 #: ../src/guestfs-actions.pod:532
7602 msgid "guestfs_aug_set"
7603 msgstr ""
7604
7605 # type: verbatim
7606 #. type: verbatim
7607 #: ../src/guestfs-actions.pod:534
7608 #, no-wrap
7609 msgid ""
7610 " int\n"
7611 " guestfs_aug_set (guestfs_h *g,\n"
7612 "                  const char *augpath,\n"
7613 "                  const char *val);\n"
7614 "\n"
7615 msgstr ""
7616
7617 # type: textblock
7618 #. type: textblock
7619 #: ../src/guestfs-actions.pod:539 ../fish/guestfish-actions.pod:348
7620 msgid "Set the value associated with C<path> to C<val>."
7621 msgstr ""
7622
7623 # type: textblock
7624 #. type: textblock
7625 #: ../src/guestfs-actions.pod:541
7626 msgid ""
7627 "In the Augeas API, it is possible to clear a node by setting the value to "
7628 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
7629 "this call.  Instead you must use the C<guestfs_aug_clear> call."
7630 msgstr ""
7631
7632 # type: =head2
7633 #. type: =head2
7634 #: ../src/guestfs-actions.pod:550
7635 msgid "guestfs_available"
7636 msgstr ""
7637
7638 # type: verbatim
7639 #. type: verbatim
7640 #: ../src/guestfs-actions.pod:552
7641 #, no-wrap
7642 msgid ""
7643 " int\n"
7644 " guestfs_available (guestfs_h *g,\n"
7645 "                    char *const *groups);\n"
7646 "\n"
7647 msgstr ""
7648
7649 # type: textblock
7650 #. type: textblock
7651 #: ../src/guestfs-actions.pod:556 ../fish/guestfish-actions.pod:359
7652 msgid ""
7653 "This command is used to check the availability of some groups of "
7654 "functionality in the appliance, which not all builds of the libguestfs "
7655 "appliance will be able to provide."
7656 msgstr ""
7657
7658 # type: textblock
7659 #. type: textblock
7660 #: ../src/guestfs-actions.pod:560
7661 msgid ""
7662 "The libguestfs groups, and the functions that those groups correspond to, "
7663 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
7664 "runtime by calling C<guestfs_available_all_groups>."
7665 msgstr ""
7666
7667 # type: textblock
7668 #. type: textblock
7669 #: ../src/guestfs-actions.pod:565 ../fish/guestfish-actions.pod:368
7670 msgid ""
7671 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", \"augeas"
7672 "\"]> would check for the availability of the Linux inotify functions and "
7673 "Augeas (configuration file editing) functions."
7674 msgstr ""
7675
7676 # type: textblock
7677 #. type: textblock
7678 #: ../src/guestfs-actions.pod:570 ../fish/guestfish-actions.pod:373
7679 msgid "The command returns no error if I<all> requested groups are available."
7680 msgstr ""
7681
7682 # type: textblock
7683 #. type: textblock
7684 #: ../src/guestfs-actions.pod:572 ../fish/guestfish-actions.pod:375
7685 msgid ""
7686 "It fails with an error if one or more of the requested groups is unavailable "
7687 "in the appliance."
7688 msgstr ""
7689
7690 # type: textblock
7691 #. type: textblock
7692 #: ../src/guestfs-actions.pod:575 ../fish/guestfish-actions.pod:378
7693 msgid ""
7694 "If an unknown group name is included in the list of groups then an error is "
7695 "always returned."
7696 msgstr ""
7697
7698 # type: textblock
7699 #. type: textblock
7700 #: ../src/guestfs-actions.pod:578 ../fish/guestfish-actions.pod:381
7701 msgid "I<Notes:>"
7702 msgstr ""
7703
7704 # type: textblock
7705 #. type: textblock
7706 #: ../src/guestfs-actions.pod:584
7707 msgid "You must call C<guestfs_launch> before calling this function."
7708 msgstr ""
7709
7710 # type: textblock
7711 #. type: textblock
7712 #: ../src/guestfs-actions.pod:586 ../fish/guestfish-actions.pod:389
7713 msgid ""
7714 "The reason is because we don't know what groups are supported by the "
7715 "appliance/daemon until it is running and can be queried."
7716 msgstr ""
7717
7718 # type: textblock
7719 #. type: textblock
7720 #: ../src/guestfs-actions.pod:592 ../fish/guestfish-actions.pod:395
7721 msgid ""
7722 "If a group of functions is available, this does not necessarily mean that "
7723 "they will work.  You still have to check for errors when calling individual "
7724 "API functions even if they are available."
7725 msgstr ""
7726
7727 # type: textblock
7728 #. type: textblock
7729 #: ../src/guestfs-actions.pod:599 ../fish/guestfish-actions.pod:402
7730 msgid ""
7731 "It is usually the job of distro packagers to build complete functionality "
7732 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
7733 "with all requirements satisfied, will support everything."
7734 msgstr ""
7735
7736 # type: textblock
7737 #. type: textblock
7738 #: ../src/guestfs-actions.pod:606
7739 msgid ""
7740 "This call was added in version C<1.0.80>.  In previous versions of "
7741 "libguestfs all you could do would be to speculatively execute a command to "
7742 "find out if the daemon implemented it.  See also C<guestfs_version>."
7743 msgstr ""
7744
7745 # type: textblock
7746 #. type: textblock
7747 #: ../src/guestfs-actions.pod:615 ../src/guestfs-actions.pod:1176
7748 msgid "(Added in 1.0.80)"
7749 msgstr ""
7750
7751 # type: =head2
7752 #. type: =head2
7753 #: ../src/guestfs-actions.pod:617
7754 msgid "guestfs_available_all_groups"
7755 msgstr ""
7756
7757 # type: verbatim
7758 #. type: verbatim
7759 #: ../src/guestfs-actions.pod:619
7760 #, no-wrap
7761 msgid ""
7762 " char **\n"
7763 " guestfs_available_all_groups (guestfs_h *g);\n"
7764 "\n"
7765 msgstr ""
7766
7767 # type: textblock
7768 #. type: textblock
7769 #: ../src/guestfs-actions.pod:622
7770 msgid ""
7771 "This command returns a list of all optional groups that this daemon knows "
7772 "about.  Note this returns both supported and unsupported groups.  To find "
7773 "out which ones the daemon can actually support you have to call "
7774 "C<guestfs_available> on each member of the returned list."
7775 msgstr ""
7776
7777 # type: textblock
7778 #. type: textblock
7779 #: ../src/guestfs-actions.pod:628
7780 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
7781 msgstr ""
7782
7783 # type: textblock
7784 #. type: textblock
7785 #: ../src/guestfs-actions.pod:634
7786 msgid "(Added in 1.3.15)"
7787 msgstr ""
7788
7789 # type: =head2
7790 #. type: =head2
7791 #: ../src/guestfs-actions.pod:636
7792 msgid "guestfs_base64_in"
7793 msgstr ""
7794
7795 # type: verbatim
7796 #. type: verbatim
7797 #: ../src/guestfs-actions.pod:638
7798 #, no-wrap
7799 msgid ""
7800 " int\n"
7801 " guestfs_base64_in (guestfs_h *g,\n"
7802 "                    const char *base64file,\n"
7803 "                    const char *filename);\n"
7804 "\n"
7805 msgstr ""
7806
7807 # type: textblock
7808 #. type: textblock
7809 #: ../src/guestfs-actions.pod:643 ../fish/guestfish-actions.pod:432
7810 msgid ""
7811 "This command uploads base64-encoded data from C<base64file> to C<filename>."
7812 msgstr ""
7813
7814 # type: textblock
7815 #. type: textblock
7816 #: ../src/guestfs-actions.pod:648 ../src/guestfs-actions.pod:662
7817 msgid "(Added in 1.3.5)"
7818 msgstr ""
7819
7820 # type: =head2
7821 #. type: =head2
7822 #: ../src/guestfs-actions.pod:650
7823 msgid "guestfs_base64_out"
7824 msgstr ""
7825
7826 # type: verbatim
7827 #. type: verbatim
7828 #: ../src/guestfs-actions.pod:652
7829 #, no-wrap
7830 msgid ""
7831 " int\n"
7832 " guestfs_base64_out (guestfs_h *g,\n"
7833 "                     const char *filename,\n"
7834 "                     const char *base64file);\n"
7835 "\n"
7836 msgstr ""
7837
7838 # type: textblock
7839 #. type: textblock
7840 #: ../src/guestfs-actions.pod:657 ../fish/guestfish-actions.pod:441
7841 msgid ""
7842 "This command downloads the contents of C<filename>, writing it out to local "
7843 "file C<base64file> encoded as base64."
7844 msgstr ""
7845
7846 # type: =head2
7847 #. type: =head2
7848 #: ../src/guestfs-actions.pod:664
7849 msgid "guestfs_blockdev_flushbufs"
7850 msgstr ""
7851
7852 # type: verbatim
7853 #. type: verbatim
7854 #: ../src/guestfs-actions.pod:666
7855 #, no-wrap
7856 msgid ""
7857 " int\n"
7858 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
7859 "                             const char *device);\n"
7860 "\n"
7861 msgstr ""
7862
7863 # type: textblock
7864 #. type: textblock
7865 #: ../src/guestfs-actions.pod:670 ../fish/guestfish-actions.pod:450
7866 msgid ""
7867 "This tells the kernel to flush internal buffers associated with C<device>."
7868 msgstr ""
7869
7870 # type: textblock
7871 #. type: textblock
7872 #: ../src/guestfs-actions.pod:673 ../src/guestfs-actions.pod:690
7873 #: ../src/guestfs-actions.pod:705 ../src/guestfs-actions.pod:721
7874 #: ../src/guestfs-actions.pod:739 ../src/guestfs-actions.pod:758
7875 #: ../src/guestfs-actions.pod:772 ../src/guestfs-actions.pod:790
7876 #: ../src/guestfs-actions.pod:804 ../src/guestfs-actions.pod:818
7877 #: ../fish/guestfish-actions.pod:453 ../fish/guestfish-actions.pod:464
7878 #: ../fish/guestfish-actions.pod:473 ../fish/guestfish-actions.pod:483
7879 #: ../fish/guestfish-actions.pod:495 ../fish/guestfish-actions.pod:508
7880 #: ../fish/guestfish-actions.pod:516 ../fish/guestfish-actions.pod:527
7881 #: ../fish/guestfish-actions.pod:535 ../fish/guestfish-actions.pod:543
7882 msgid "This uses the L<blockdev(8)> command."
7883 msgstr ""
7884
7885 # type: textblock
7886 #. type: textblock
7887 #: ../src/guestfs-actions.pod:677 ../src/guestfs-actions.pod:694
7888 #: ../src/guestfs-actions.pod:709 ../src/guestfs-actions.pod:725
7889 #: ../src/guestfs-actions.pod:743 ../src/guestfs-actions.pod:762
7890 #: ../src/guestfs-actions.pod:776 ../src/guestfs-actions.pod:794
7891 #: ../src/guestfs-actions.pod:808 ../src/guestfs-actions.pod:822
7892 msgid "(Added in 0.9.3)"
7893 msgstr ""
7894
7895 # type: =head2
7896 #. type: =head2
7897 #: ../src/guestfs-actions.pod:679
7898 msgid "guestfs_blockdev_getbsz"
7899 msgstr ""
7900
7901 # type: verbatim
7902 #. type: verbatim
7903 #: ../src/guestfs-actions.pod:681
7904 #, no-wrap
7905 msgid ""
7906 " int\n"
7907 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
7908 "                          const char *device);\n"
7909 "\n"
7910 msgstr ""
7911
7912 # type: textblock
7913 #. type: textblock
7914 #: ../src/guestfs-actions.pod:685 ../fish/guestfish-actions.pod:459
7915 msgid "This returns the block size of a device."
7916 msgstr ""
7917
7918 # type: textblock
7919 #. type: textblock
7920 #: ../src/guestfs-actions.pod:687 ../src/guestfs-actions.pod:787
7921 #: ../fish/guestfish-actions.pod:461 ../fish/guestfish-actions.pod:524
7922 msgid ""
7923 "(Note this is different from both I<size in blocks> and I<filesystem block "
7924 "size>)."
7925 msgstr ""
7926
7927 # type: =head2
7928 #. type: =head2
7929 #: ../src/guestfs-actions.pod:696
7930 msgid "guestfs_blockdev_getro"
7931 msgstr ""
7932
7933 # type: verbatim
7934 #. type: verbatim
7935 #: ../src/guestfs-actions.pod:698
7936 #, no-wrap
7937 msgid ""
7938 " int\n"
7939 " guestfs_blockdev_getro (guestfs_h *g,\n"
7940 "                         const char *device);\n"
7941 "\n"
7942 msgstr ""
7943
7944 # type: textblock
7945 #. type: textblock
7946 #: ../src/guestfs-actions.pod:702 ../fish/guestfish-actions.pod:470
7947 msgid ""
7948 "Returns a boolean indicating if the block device is read-only (true if read-"
7949 "only, false if not)."
7950 msgstr ""
7951
7952 # type: textblock
7953 #. type: textblock
7954 #: ../src/guestfs-actions.pod:707 ../src/guestfs-actions.pod:1414
7955 #: ../src/guestfs-actions.pod:1429 ../src/guestfs-actions.pod:1916
7956 #: ../src/guestfs-actions.pod:1927 ../src/guestfs-actions.pod:1999
7957 #: ../src/guestfs-actions.pod:2054 ../src/guestfs-actions.pod:2069
7958 #: ../src/guestfs-actions.pod:2094 ../src/guestfs-actions.pod:2117
7959 #: ../src/guestfs-actions.pod:3090 ../src/guestfs-actions.pod:3107
7960 #: ../src/guestfs-actions.pod:3126 ../src/guestfs-actions.pod:3289
7961 #: ../src/guestfs-actions.pod:3303 ../src/guestfs-actions.pod:3318
7962 #: ../src/guestfs-actions.pod:3332 ../src/guestfs-actions.pod:3348
7963 #: ../src/guestfs-actions.pod:3363 ../src/guestfs-actions.pod:3379
7964 #: ../src/guestfs-actions.pod:3393 ../src/guestfs-actions.pod:3406
7965 #: ../src/guestfs-actions.pod:3420 ../src/guestfs-actions.pod:3435
7966 #: ../src/guestfs-actions.pod:3450 ../src/guestfs-actions.pod:4997
7967 msgid "This function returns a C truth value on success or -1 on error."
7968 msgstr ""
7969
7970 # type: =head2
7971 #. type: =head2
7972 #: ../src/guestfs-actions.pod:711
7973 msgid "guestfs_blockdev_getsize64"
7974 msgstr ""
7975
7976 # type: verbatim
7977 #. type: verbatim
7978 #: ../src/guestfs-actions.pod:713
7979 #, no-wrap
7980 msgid ""
7981 " int64_t\n"
7982 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7983 "                             const char *device);\n"
7984 "\n"
7985 msgstr ""
7986
7987 # type: textblock
7988 #. type: textblock
7989 #: ../src/guestfs-actions.pod:717 ../fish/guestfish-actions.pod:479
7990 msgid "This returns the size of the device in bytes."
7991 msgstr ""
7992
7993 # type: textblock
7994 #. type: textblock
7995 #: ../src/guestfs-actions.pod:719
7996 msgid "See also C<guestfs_blockdev_getsz>."
7997 msgstr ""
7998
7999 # type: =head2
8000 #. type: =head2
8001 #: ../src/guestfs-actions.pod:727
8002 msgid "guestfs_blockdev_getss"
8003 msgstr ""
8004
8005 # type: verbatim
8006 #. type: verbatim
8007 #: ../src/guestfs-actions.pod:729
8008 #, no-wrap
8009 msgid ""
8010 " int\n"
8011 " guestfs_blockdev_getss (guestfs_h *g,\n"
8012 "                         const char *device);\n"
8013 "\n"
8014 msgstr ""
8015
8016 # type: textblock
8017 #. type: textblock
8018 #: ../src/guestfs-actions.pod:733 ../fish/guestfish-actions.pod:489
8019 msgid ""
8020 "This returns the size of sectors on a block device.  Usually 512, but can be "
8021 "larger for modern devices."
8022 msgstr ""
8023
8024 # type: textblock
8025 #. type: textblock
8026 #: ../src/guestfs-actions.pod:736
8027 msgid ""
8028 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
8029 "that)."
8030 msgstr ""
8031
8032 # type: =head2
8033 #. type: =head2
8034 #: ../src/guestfs-actions.pod:745
8035 msgid "guestfs_blockdev_getsz"
8036 msgstr ""
8037
8038 # type: verbatim
8039 #. type: verbatim
8040 #: ../src/guestfs-actions.pod:747
8041 #, no-wrap
8042 msgid ""
8043 " int64_t\n"
8044 " guestfs_blockdev_getsz (guestfs_h *g,\n"
8045 "                         const char *device);\n"
8046 "\n"
8047 msgstr ""
8048
8049 # type: textblock
8050 #. type: textblock
8051 #: ../src/guestfs-actions.pod:751 ../fish/guestfish-actions.pod:501
8052 msgid ""
8053 "This returns the size of the device in units of 512-byte sectors (even if "
8054 "the sectorsize isn't 512 bytes ... weird)."
8055 msgstr ""
8056
8057 # type: textblock
8058 #. type: textblock
8059 #: ../src/guestfs-actions.pod:754
8060 msgid ""
8061 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
8062 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
8063 msgstr ""
8064
8065 # type: =head2
8066 #. type: =head2
8067 #: ../src/guestfs-actions.pod:764
8068 msgid "guestfs_blockdev_rereadpt"
8069 msgstr ""
8070
8071 # type: verbatim
8072 #. type: verbatim
8073 #: ../src/guestfs-actions.pod:766
8074 #, no-wrap
8075 msgid ""
8076 " int\n"
8077 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
8078 "                            const char *device);\n"
8079 "\n"
8080 msgstr ""
8081
8082 # type: textblock
8083 #. type: textblock
8084 #: ../src/guestfs-actions.pod:770 ../fish/guestfish-actions.pod:514
8085 msgid "Reread the partition table on C<device>."
8086 msgstr ""
8087
8088 # type: =head2
8089 #. type: =head2
8090 #: ../src/guestfs-actions.pod:778
8091 msgid "guestfs_blockdev_setbsz"
8092 msgstr ""
8093
8094 # type: verbatim
8095 #. type: verbatim
8096 #: ../src/guestfs-actions.pod:780
8097 #, no-wrap
8098 msgid ""
8099 " int\n"
8100 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
8101 "                          const char *device,\n"
8102 "                          int blocksize);\n"
8103 "\n"
8104 msgstr ""
8105
8106 # type: textblock
8107 #. type: textblock
8108 #: ../src/guestfs-actions.pod:785 ../fish/guestfish-actions.pod:522
8109 msgid "This sets the block size of a device."
8110 msgstr ""
8111
8112 # type: =head2
8113 #. type: =head2
8114 #: ../src/guestfs-actions.pod:796
8115 msgid "guestfs_blockdev_setro"
8116 msgstr ""
8117
8118 # type: verbatim
8119 #. type: verbatim
8120 #: ../src/guestfs-actions.pod:798
8121 #, no-wrap
8122 msgid ""
8123 " int\n"
8124 " guestfs_blockdev_setro (guestfs_h *g,\n"
8125 "                         const char *device);\n"
8126 "\n"
8127 msgstr ""
8128
8129 # type: textblock
8130 #. type: textblock
8131 #: ../src/guestfs-actions.pod:802 ../fish/guestfish-actions.pod:533
8132 msgid "Sets the block device named C<device> to read-only."
8133 msgstr ""
8134
8135 # type: =head2
8136 #. type: =head2
8137 #: ../src/guestfs-actions.pod:810
8138 msgid "guestfs_blockdev_setrw"
8139 msgstr ""
8140
8141 # type: verbatim
8142 #. type: verbatim
8143 #: ../src/guestfs-actions.pod:812
8144 #, no-wrap
8145 msgid ""
8146 " int\n"
8147 " guestfs_blockdev_setrw (guestfs_h *g,\n"
8148 "                         const char *device);\n"
8149 "\n"
8150 msgstr ""
8151
8152 # type: textblock
8153 #. type: textblock
8154 #: ../src/guestfs-actions.pod:816 ../fish/guestfish-actions.pod:541
8155 msgid "Sets the block device named C<device> to read-write."
8156 msgstr ""
8157
8158 # type: =head2
8159 #. type: =head2
8160 #: ../src/guestfs-actions.pod:824
8161 msgid "guestfs_case_sensitive_path"
8162 msgstr ""
8163
8164 # type: verbatim
8165 #. type: verbatim
8166 #: ../src/guestfs-actions.pod:826
8167 #, no-wrap
8168 msgid ""
8169 " char *\n"
8170 " guestfs_case_sensitive_path (guestfs_h *g,\n"
8171 "                              const char *path);\n"
8172 "\n"
8173 msgstr ""
8174
8175 # type: textblock
8176 #. type: textblock
8177 #: ../src/guestfs-actions.pod:830 ../fish/guestfish-actions.pod:549
8178 msgid ""
8179 "This can be used to resolve case insensitive paths on a filesystem which is "
8180 "case sensitive.  The use case is to resolve paths which you have read from "
8181 "Windows configuration files or the Windows Registry, to the true path."
8182 msgstr ""
8183
8184 # type: textblock
8185 #. type: textblock
8186 #: ../src/guestfs-actions.pod:835 ../fish/guestfish-actions.pod:554
8187 msgid ""
8188 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
8189 "(and probably others), which is that although the underlying filesystem is "
8190 "case-insensitive, the driver exports the filesystem to Linux as case-"
8191 "sensitive."
8192 msgstr ""
8193
8194 # type: textblock
8195 #. type: textblock
8196 #: ../src/guestfs-actions.pod:840 ../fish/guestfish-actions.pod:559
8197 msgid ""
8198 "One consequence of this is that special directories such as C<c:\\windows> "
8199 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
8200 "precise details of how they were created.  In Windows itself this would not "
8201 "be a problem."
8202 msgstr ""
8203
8204 # type: textblock
8205 #. type: textblock
8206 #: ../src/guestfs-actions.pod:846 ../fish/guestfish-actions.pod:565
8207 msgid ""
8208 "Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-faq/"
8209 "#posixfilenames1>"
8210 msgstr ""
8211
8212 # type: textblock
8213 #. type: textblock
8214 #: ../src/guestfs-actions.pod:849 ../fish/guestfish-actions.pod:568
8215 msgid ""
8216 "This function resolves the true case of each element in the path and returns "
8217 "the case-sensitive path."
8218 msgstr ""
8219
8220 # type: textblock
8221 #. type: textblock
8222 #: ../src/guestfs-actions.pod:852
8223 msgid ""
8224 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return C<"
8225 "\"/WINDOWS/system32\"> (the exact return value would depend on details of "
8226 "how the directories were originally created under Windows)."
8227 msgstr ""
8228
8229 # type: textblock
8230 #. type: textblock
8231 #: ../src/guestfs-actions.pod:857 ../fish/guestfish-actions.pod:576
8232 msgid "I<Note>: This function does not handle drive names, backslashes etc."
8233 msgstr ""
8234
8235 # type: textblock
8236 #. type: textblock
8237 #: ../src/guestfs-actions.pod:860
8238 msgid "See also C<guestfs_realpath>."
8239 msgstr ""
8240
8241 # type: textblock
8242 #. type: textblock
8243 #: ../src/guestfs-actions.pod:865 ../src/guestfs-actions.pod:7016
8244 msgid "(Added in 1.0.75)"
8245 msgstr ""
8246
8247 # type: =head2
8248 #. type: =head2
8249 #: ../src/guestfs-actions.pod:867
8250 msgid "guestfs_cat"
8251 msgstr ""
8252
8253 # type: verbatim
8254 #. type: verbatim
8255 #: ../src/guestfs-actions.pod:869
8256 #, no-wrap
8257 msgid ""
8258 " char *\n"
8259 " guestfs_cat (guestfs_h *g,\n"
8260 "              const char *path);\n"
8261 "\n"
8262 msgstr ""
8263
8264 # type: textblock
8265 #. type: textblock
8266 #: ../src/guestfs-actions.pod:873 ../src/guestfs-actions.pod:5484
8267 #: ../fish/guestfish-actions.pod:585 ../fish/guestfish-actions.pod:3685
8268 msgid "Return the contents of the file named C<path>."
8269 msgstr ""
8270
8271 # type: textblock
8272 #. type: textblock
8273 #: ../src/guestfs-actions.pod:875
8274 msgid ""
8275 "Note that this function cannot correctly handle binary files (specifically, "
8276 "files containing C<\\0> character which is treated as end of string).  For "
8277 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
8278 "functions which have a more complex interface."
8279 msgstr ""
8280
8281 # type: textblock
8282 #. type: textblock
8283 #: ../src/guestfs-actions.pod:883 ../src/guestfs-actions.pod:1062
8284 #: ../src/guestfs-actions.pod:1082 ../src/guestfs-actions.pod:1378
8285 #: ../src/guestfs-actions.pod:1397 ../src/guestfs-actions.pod:1500
8286 #: ../src/guestfs-actions.pod:1519 ../src/guestfs-actions.pod:1765
8287 #: ../src/guestfs-actions.pod:2223 ../src/guestfs-actions.pod:2242
8288 #: ../src/guestfs-actions.pod:2285 ../src/guestfs-actions.pod:2309
8289 #: ../src/guestfs-actions.pod:2326 ../src/guestfs-actions.pod:2355
8290 #: ../src/guestfs-actions.pod:5266 ../src/guestfs-actions.pod:5292
8291 #: ../src/guestfs-actions.pod:5423 ../src/guestfs-actions.pod:5449
8292 #: ../src/guestfs-actions.pod:5473 ../src/guestfs-actions.pod:6401
8293 #: ../src/guestfs-actions.pod:6456 ../src/guestfs-actions.pod:6602
8294 #: ../src/guestfs-actions.pod:6626 ../src/guestfs-actions.pod:7295
8295 #: ../src/guestfs-actions.pod:7321 ../src/guestfs-actions.pod:7347
8296 #: ../src/guestfs-actions.pod:7366 ../src/guestfs-actions.pod:7451
8297 #: ../src/guestfs-actions.pod:7470 ../src/guestfs-actions.pod:7516
8298 #: ../src/guestfs-actions.pod:7535 ../fish/guestfish-actions.pod:592
8299 #: ../fish/guestfish-actions.pod:727 ../fish/guestfish-actions.pod:739
8300 #: ../fish/guestfish-actions.pod:915 ../fish/guestfish-actions.pod:925
8301 #: ../fish/guestfish-actions.pod:992 ../fish/guestfish-actions.pod:1002
8302 #: ../fish/guestfish-actions.pod:1194 ../fish/guestfish-actions.pod:1495
8303 #: ../fish/guestfish-actions.pod:1505 ../fish/guestfish-actions.pod:1533
8304 #: ../fish/guestfish-actions.pod:1548 ../fish/guestfish-actions.pod:1558
8305 #: ../fish/guestfish-actions.pod:1577 ../fish/guestfish-actions.pod:3555
8306 #: ../fish/guestfish-actions.pod:3570 ../fish/guestfish-actions.pod:3646
8307 #: ../fish/guestfish-actions.pod:3663 ../fish/guestfish-actions.pod:3678
8308 #: ../fish/guestfish-actions.pod:4332 ../fish/guestfish-actions.pod:4378
8309 #: ../fish/guestfish-actions.pod:4463 ../fish/guestfish-actions.pod:4478
8310 #: ../fish/guestfish-actions.pod:4888 ../fish/guestfish-actions.pod:4906
8311 #: ../fish/guestfish-actions.pod:4923 ../fish/guestfish-actions.pod:4933
8312 #: ../fish/guestfish-actions.pod:4981 ../fish/guestfish-actions.pod:4991
8313 #: ../fish/guestfish-actions.pod:5020 ../fish/guestfish-actions.pod:5030
8314 msgid ""
8315 "Because of the message protocol, there is a transfer limit of somewhere "
8316 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
8317 msgstr ""
8318
8319 # type: textblock
8320 #. type: textblock
8321 #: ../src/guestfs-actions.pod:886 ../src/guestfs-actions.pod:3566
8322 #: ../src/guestfs-actions.pod:3628 ../src/guestfs-actions.pod:3645
8323 #: ../src/guestfs-actions.pod:3733 ../src/guestfs-actions.pod:4138
8324 #: ../src/guestfs-actions.pod:4152 ../src/guestfs-actions.pod:5372
8325 #: ../src/guestfs-actions.pod:5386 ../src/guestfs-actions.pod:7175
8326 #: ../src/guestfs-actions.pod:7189
8327 msgid "(Added in 0.4)"
8328 msgstr ""
8329
8330 # type: =head2
8331 #. type: =head2
8332 #: ../src/guestfs-actions.pod:888
8333 msgid "guestfs_checksum"
8334 msgstr ""
8335
8336 # type: verbatim
8337 #. type: verbatim
8338 #: ../src/guestfs-actions.pod:890
8339 #, no-wrap
8340 msgid ""
8341 " char *\n"
8342 " guestfs_checksum (guestfs_h *g,\n"
8343 "                   const char *csumtype,\n"
8344 "                   const char *path);\n"
8345 "\n"
8346 msgstr ""
8347
8348 # type: textblock
8349 #. type: textblock
8350 #: ../src/guestfs-actions.pod:895 ../fish/guestfish-actions.pod:599
8351 msgid ""
8352 "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
8353 msgstr ""
8354
8355 # type: textblock
8356 #. type: textblock
8357 #: ../src/guestfs-actions.pod:898 ../fish/guestfish-actions.pod:602
8358 msgid ""
8359 "The type of checksum to compute is given by the C<csumtype> parameter which "
8360 "must have one of the following values:"
8361 msgstr ""
8362
8363 # type: =item
8364 #. type: =item
8365 #: ../src/guestfs-actions.pod:903 ../fish/guestfish-actions.pod:607
8366 msgid "C<crc>"
8367 msgstr ""
8368
8369 # type: textblock
8370 #. type: textblock
8371 #: ../src/guestfs-actions.pod:905 ../fish/guestfish-actions.pod:609
8372 msgid ""
8373 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
8374 "C<cksum> command."
8375 msgstr ""
8376
8377 # type: =item
8378 #. type: =item
8379 #: ../src/guestfs-actions.pod:908 ../fish/guestfish-actions.pod:612
8380 msgid "C<md5>"
8381 msgstr ""
8382
8383 # type: textblock
8384 #. type: textblock
8385 #: ../src/guestfs-actions.pod:910 ../fish/guestfish-actions.pod:614
8386 msgid "Compute the MD5 hash (using the C<md5sum> program)."
8387 msgstr ""
8388
8389 # type: =item
8390 #. type: =item
8391 #: ../src/guestfs-actions.pod:912 ../fish/guestfish-actions.pod:616
8392 msgid "C<sha1>"
8393 msgstr ""
8394
8395 # type: textblock
8396 #. type: textblock
8397 #: ../src/guestfs-actions.pod:914 ../fish/guestfish-actions.pod:618
8398 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
8399 msgstr ""
8400
8401 # type: =item
8402 #. type: =item
8403 #: ../src/guestfs-actions.pod:916 ../fish/guestfish-actions.pod:620
8404 msgid "C<sha224>"
8405 msgstr ""
8406
8407 # type: textblock
8408 #. type: textblock
8409 #: ../src/guestfs-actions.pod:918 ../fish/guestfish-actions.pod:622
8410 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
8411 msgstr ""
8412
8413 # type: =item
8414 #. type: =item
8415 #: ../src/guestfs-actions.pod:920 ../fish/guestfish-actions.pod:624
8416 msgid "C<sha256>"
8417 msgstr ""
8418
8419 # type: textblock
8420 #. type: textblock
8421 #: ../src/guestfs-actions.pod:922 ../fish/guestfish-actions.pod:626
8422 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
8423 msgstr ""
8424
8425 # type: =item
8426 #. type: =item
8427 #: ../src/guestfs-actions.pod:924 ../fish/guestfish-actions.pod:628
8428 msgid "C<sha384>"
8429 msgstr ""
8430
8431 # type: textblock
8432 #. type: textblock
8433 #: ../src/guestfs-actions.pod:926 ../fish/guestfish-actions.pod:630
8434 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
8435 msgstr ""
8436
8437 # type: =item
8438 #. type: =item
8439 #: ../src/guestfs-actions.pod:928 ../fish/guestfish-actions.pod:632
8440 msgid "C<sha512>"
8441 msgstr ""
8442
8443 # type: textblock
8444 #. type: textblock
8445 #: ../src/guestfs-actions.pod:930 ../fish/guestfish-actions.pod:634
8446 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
8447 msgstr ""
8448
8449 # type: textblock
8450 #. type: textblock
8451 #: ../src/guestfs-actions.pod:934 ../fish/guestfish-actions.pod:638
8452 msgid "The checksum is returned as a printable string."
8453 msgstr ""
8454
8455 # type: textblock
8456 #. type: textblock
8457 #: ../src/guestfs-actions.pod:936
8458 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
8459 msgstr ""
8460
8461 # type: textblock
8462 #. type: textblock
8463 #: ../src/guestfs-actions.pod:938
8464 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
8465 msgstr ""
8466
8467 # type: textblock
8468 #. type: textblock
8469 #: ../src/guestfs-actions.pod:943 ../src/guestfs-actions.pod:1251
8470 #: ../src/guestfs-actions.pod:2085 ../src/guestfs-actions.pod:3305
8471 #: ../src/guestfs-actions.pod:3334 ../src/guestfs-actions.pod:3395
8472 #: ../src/guestfs-actions.pod:3422 ../src/guestfs-actions.pod:6872
8473 msgid "(Added in 1.0.2)"
8474 msgstr ""
8475
8476 # type: =head2
8477 #. type: =head2
8478 #: ../src/guestfs-actions.pod:945
8479 msgid "guestfs_checksum_device"
8480 msgstr ""
8481
8482 # type: verbatim
8483 #. type: verbatim
8484 #: ../src/guestfs-actions.pod:947
8485 #, no-wrap
8486 msgid ""
8487 " char *\n"
8488 " guestfs_checksum_device (guestfs_h *g,\n"
8489 "                          const char *csumtype,\n"
8490 "                          const char *device);\n"
8491 "\n"
8492 msgstr ""
8493
8494 # type: textblock
8495 #. type: textblock
8496 #: ../src/guestfs-actions.pod:952
8497 msgid ""
8498 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
8499 "device named C<device>.  For the types of checksums supported see the "
8500 "C<guestfs_checksum> command."
8501 msgstr ""
8502
8503 # type: textblock
8504 #. type: textblock
8505 #: ../src/guestfs-actions.pod:959 ../src/guestfs-actions.pod:4903
8506 #: ../src/guestfs-actions.pod:4962 ../src/guestfs-actions.pod:4999
8507 #: ../src/guestfs-actions.pod:5017 ../src/guestfs-actions.pod:5193
8508 #: ../src/guestfs-actions.pod:6781 ../src/guestfs-actions.pod:6795
8509 #: ../src/guestfs-actions.pod:7201
8510 msgid "(Added in 1.3.2)"
8511 msgstr ""
8512
8513 # type: =head2
8514 #. type: =head2
8515 #: ../src/guestfs-actions.pod:961
8516 msgid "guestfs_checksums_out"
8517 msgstr ""
8518
8519 # type: verbatim
8520 #. type: verbatim
8521 #: ../src/guestfs-actions.pod:963
8522 #, no-wrap
8523 msgid ""
8524 " int\n"
8525 " guestfs_checksums_out (guestfs_h *g,\n"
8526 "                        const char *csumtype,\n"
8527 "                        const char *directory,\n"
8528 "                        const char *sumsfile);\n"
8529 "\n"
8530 msgstr ""
8531
8532 # type: textblock
8533 #. type: textblock
8534 #: ../src/guestfs-actions.pod:969 ../fish/guestfish-actions.pod:656
8535 msgid ""
8536 "This command computes the checksums of all regular files in C<directory> and "
8537 "then emits a list of those checksums to the local output file C<sumsfile>."
8538 msgstr ""
8539
8540 # type: textblock
8541 #. type: textblock
8542 #: ../src/guestfs-actions.pod:973 ../fish/guestfish-actions.pod:660
8543 msgid ""
8544 "This can be used for verifying the integrity of a virtual machine.  However "
8545 "to be properly secure you should pay attention to the output of the checksum "
8546 "command (it uses the ones from GNU coreutils).  In particular when the "
8547 "filename is not printable, coreutils uses a special backslash syntax.  For "
8548 "more information, see the GNU coreutils info file."
8549 msgstr ""
8550
8551 # type: textblock
8552 #. type: textblock
8553 #: ../src/guestfs-actions.pod:983
8554 msgid "(Added in 1.3.7)"
8555 msgstr ""
8556
8557 # type: =head2
8558 #. type: =head2
8559 #: ../src/guestfs-actions.pod:985
8560 msgid "guestfs_chmod"
8561 msgstr ""
8562
8563 # type: verbatim
8564 #. type: verbatim
8565 #: ../src/guestfs-actions.pod:987
8566 #, no-wrap
8567 msgid ""
8568 " int\n"
8569 " guestfs_chmod (guestfs_h *g,\n"
8570 "                int mode,\n"
8571 "                const char *path);\n"
8572 "\n"
8573 msgstr ""
8574
8575 # type: textblock
8576 #. type: textblock
8577 #: ../src/guestfs-actions.pod:992 ../fish/guestfish-actions.pod:674
8578 msgid ""
8579 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
8580 "supported."
8581 msgstr ""
8582
8583 # type: textblock
8584 #. type: textblock
8585 #: ../src/guestfs-actions.pod:995 ../fish/guestfish-actions.pod:677
8586 msgid ""
8587 "I<Note>: When using this command from guestfish, C<mode> by default would be "
8588 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
8589 "C<700>."
8590 msgstr ""
8591
8592 # type: textblock
8593 #. type: textblock
8594 #: ../src/guestfs-actions.pod:999 ../src/guestfs-actions.pod:4389
8595 #: ../src/guestfs-actions.pod:4586 ../src/guestfs-actions.pod:4605
8596 #: ../src/guestfs-actions.pod:4624 ../fish/guestfish-actions.pod:681
8597 #: ../fish/guestfish-actions.pod:2985 ../fish/guestfish-actions.pod:3114
8598 #: ../fish/guestfish-actions.pod:3124 ../fish/guestfish-actions.pod:3134
8599 msgid "The mode actually set is affected by the umask."
8600 msgstr ""
8601
8602 # type: =head2
8603 #. type: =head2
8604 #: ../src/guestfs-actions.pod:1005
8605 msgid "guestfs_chown"
8606 msgstr ""
8607
8608 # type: verbatim
8609 #. type: verbatim
8610 #: ../src/guestfs-actions.pod:1007
8611 #, no-wrap
8612 msgid ""
8613 " int\n"
8614 " guestfs_chown (guestfs_h *g,\n"
8615 "                int owner,\n"
8616 "                int group,\n"
8617 "                const char *path);\n"
8618 "\n"
8619 msgstr ""
8620
8621 # type: textblock
8622 #. type: textblock
8623 #: ../src/guestfs-actions.pod:1013 ../fish/guestfish-actions.pod:687
8624 msgid "Change the file owner to C<owner> and group to C<group>."
8625 msgstr ""
8626
8627 # type: textblock
8628 #. type: textblock
8629 #: ../src/guestfs-actions.pod:1015 ../src/guestfs-actions.pod:3497
8630 #: ../fish/guestfish-actions.pod:689 ../fish/guestfish-actions.pod:2443
8631 msgid ""
8632 "Only numeric uid and gid are supported.  If you want to use names, you will "
8633 "need to locate and parse the password file yourself (Augeas support makes "
8634 "this relatively easy)."
8635 msgstr ""
8636
8637 # type: =head2
8638 #. type: =head2
8639 #: ../src/guestfs-actions.pod:1023
8640 msgid "guestfs_command"
8641 msgstr ""
8642
8643 # type: verbatim
8644 #. type: verbatim
8645 #: ../src/guestfs-actions.pod:1025
8646 #, no-wrap
8647 msgid ""
8648 " char *\n"
8649 " guestfs_command (guestfs_h *g,\n"
8650 "                  char *const *arguments);\n"
8651 "\n"
8652 msgstr ""
8653
8654 # type: textblock
8655 #. type: textblock
8656 #: ../src/guestfs-actions.pod:1029 ../fish/guestfish-actions.pod:697
8657 msgid ""
8658 "This call runs a command from the guest filesystem.  The filesystem must be "
8659 "mounted, and must contain a compatible operating system (ie. something "
8660 "Linux, with the same or compatible processor architecture)."
8661 msgstr ""
8662
8663 # type: textblock
8664 #. type: textblock
8665 #: ../src/guestfs-actions.pod:1034
8666 msgid ""
8667 "The single parameter is an argv-style list of arguments.  The first element "
8668 "is the name of the program to run.  Subsequent elements are parameters.  The "
8669 "list must be non-empty (ie. must contain a program name).  Note that the "
8670 "command runs directly, and is I<not> invoked via the shell (see "
8671 "C<guestfs_sh>)."
8672 msgstr ""
8673
8674 # type: textblock
8675 #. type: textblock
8676 #: ../src/guestfs-actions.pod:1041 ../fish/guestfish-actions.pod:709
8677 msgid "The return value is anything printed to I<stdout> by the command."
8678 msgstr ""
8679
8680 # type: textblock
8681 #. type: textblock
8682 #: ../src/guestfs-actions.pod:1044 ../fish/guestfish-actions.pod:712
8683 msgid ""
8684 "If the command returns a non-zero exit status, then this function returns an "
8685 "error message.  The error message string is the content of I<stderr> from "
8686 "the command."
8687 msgstr ""
8688
8689 # type: textblock
8690 #. type: textblock
8691 #: ../src/guestfs-actions.pod:1048 ../fish/guestfish-actions.pod:716
8692 msgid ""
8693 "The C<$PATH> environment variable will contain at least C</usr/bin> and C</"
8694 "bin>.  If you require a program from another location, you should provide "
8695 "the full path in the first parameter."
8696 msgstr ""
8697
8698 # type: textblock
8699 #. type: textblock
8700 #: ../src/guestfs-actions.pod:1053 ../fish/guestfish-actions.pod:721
8701 msgid ""
8702 "Shared libraries and data files required by the program must be available on "
8703 "filesystems which are mounted in the correct places.  It is the caller's "
8704 "responsibility to ensure all filesystems that are needed are mounted at the "
8705 "right locations."
8706 msgstr ""
8707
8708 # type: textblock
8709 #. type: textblock
8710 #: ../src/guestfs-actions.pod:1065 ../src/guestfs-actions.pod:1085
8711 #: ../src/guestfs-actions.pod:1550
8712 msgid "(Added in 0.9.1)"
8713 msgstr ""
8714
8715 # type: =head2
8716 #. type: =head2
8717 #: ../src/guestfs-actions.pod:1067
8718 msgid "guestfs_command_lines"
8719 msgstr ""
8720
8721 # type: verbatim
8722 #. type: verbatim
8723 #: ../src/guestfs-actions.pod:1069
8724 #, no-wrap
8725 msgid ""
8726 " char **\n"
8727 " guestfs_command_lines (guestfs_h *g,\n"
8728 "                        char *const *arguments);\n"
8729 "\n"
8730 msgstr ""
8731
8732 # type: textblock
8733 #. type: textblock
8734 #: ../src/guestfs-actions.pod:1073
8735 msgid ""
8736 "This is the same as C<guestfs_command>, but splits the result into a list of "
8737 "lines."
8738 msgstr ""
8739
8740 # type: textblock
8741 #. type: textblock
8742 #: ../src/guestfs-actions.pod:1076
8743 msgid "See also: C<guestfs_sh_lines>"
8744 msgstr ""
8745
8746 # type: =head2
8747 #. type: =head2
8748 #: ../src/guestfs-actions.pod:1087
8749 msgid "guestfs_config"
8750 msgstr ""
8751
8752 # type: verbatim
8753 #. type: verbatim
8754 #: ../src/guestfs-actions.pod:1089
8755 #, no-wrap
8756 msgid ""
8757 " int\n"
8758 " guestfs_config (guestfs_h *g,\n"
8759 "                 const char *qemuparam,\n"
8760 "                 const char *qemuvalue);\n"
8761 "\n"
8762 msgstr ""
8763
8764 #. type: textblock
8765 #: ../src/guestfs-actions.pod:1094 ../fish/guestfish-actions.pod:746
8766 msgid ""
8767 "This can be used to add arbitrary qemu command line parameters of the form "
8768 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
8769 "setting some parameters which would interfere with parameters that we use."
8770 msgstr ""
8771
8772 # type: textblock
8773 #. type: textblock
8774 #: ../src/guestfs-actions.pod:1099 ../fish/guestfish-actions.pod:751
8775 msgid "The first character of C<param> string must be a C<-> (dash)."
8776 msgstr ""
8777
8778 # type: textblock
8779 #. type: textblock
8780 #: ../src/guestfs-actions.pod:1101 ../fish/guestfish-actions.pod:753
8781 msgid "C<value> can be NULL."
8782 msgstr ""
8783
8784 # type: =head2
8785 #. type: =head2
8786 #: ../src/guestfs-actions.pod:1107
8787 msgid "guestfs_copy_size"
8788 msgstr ""
8789
8790 # type: verbatim
8791 #. type: verbatim
8792 #: ../src/guestfs-actions.pod:1109
8793 #, no-wrap
8794 msgid ""
8795 " int\n"
8796 " guestfs_copy_size (guestfs_h *g,\n"
8797 "                    const char *src,\n"
8798 "                    const char *dest,\n"
8799 "                    int64_t size);\n"
8800 "\n"
8801 msgstr ""
8802
8803 # type: textblock
8804 #. type: textblock
8805 #: ../src/guestfs-actions.pod:1115 ../fish/guestfish-actions.pod:759
8806 msgid ""
8807 "This command copies exactly C<size> bytes from one source device or file "
8808 "C<src> to another destination device or file C<dest>."
8809 msgstr ""
8810
8811 # type: textblock
8812 #. type: textblock
8813 #: ../src/guestfs-actions.pod:1118 ../fish/guestfish-actions.pod:762
8814 msgid ""
8815 "Note this will fail if the source is too short or if the destination is not "
8816 "large enough."
8817 msgstr ""
8818
8819 #. type: textblock
8820 #: ../src/guestfs-actions.pod:1123 ../src/guestfs-actions.pod:1246
8821 #: ../src/guestfs-actions.pod:1277 ../src/guestfs-actions.pod:1322
8822 #: ../src/guestfs-actions.pod:1699 ../src/guestfs-actions.pod:1721
8823 #: ../src/guestfs-actions.pod:3478 ../src/guestfs-actions.pod:6867
8824 #: ../src/guestfs-actions.pod:6901 ../src/guestfs-actions.pod:7387
8825 #: ../src/guestfs-actions.pod:7406
8826 msgid ""
8827 "This long-running command can generate progress notification messages so "
8828 "that the caller can display a progress bar or indicator.  To receive these "
8829 "messages, the caller must register a progress event callback.  See L<guestfs"
8830 "(3)/GUESTFS_EVENT_PROGRESS>."
8831 msgstr ""
8832
8833 # type: textblock
8834 #. type: textblock
8835 #: ../src/guestfs-actions.pod:1128 ../src/guestfs-actions.pod:4165
8836 #: ../src/guestfs-actions.pod:5399 ../src/guestfs-actions.pod:7108
8837 #: ../src/guestfs-actions.pod:7128 ../src/guestfs-actions.pod:7214
8838 msgid "(Added in 1.0.87)"
8839 msgstr ""
8840
8841 # type: =head2
8842 #. type: =head2
8843 #: ../src/guestfs-actions.pod:1130
8844 msgid "guestfs_cp"
8845 msgstr ""
8846
8847 # type: verbatim
8848 #. type: verbatim
8849 #: ../src/guestfs-actions.pod:1132
8850 #, no-wrap
8851 msgid ""
8852 " int\n"
8853 " guestfs_cp (guestfs_h *g,\n"
8854 "             const char *src,\n"
8855 "             const char *dest);\n"
8856 "\n"
8857 msgstr ""
8858
8859 # type: textblock
8860 #. type: textblock
8861 #: ../src/guestfs-actions.pod:1137 ../fish/guestfish-actions.pod:769
8862 msgid ""
8863 "This copies a file from C<src> to C<dest> where C<dest> is either a "
8864 "destination filename or destination directory."
8865 msgstr ""
8866
8867 # type: textblock
8868 #. type: textblock
8869 #: ../src/guestfs-actions.pod:1142 ../src/guestfs-actions.pod:1156
8870 #: ../src/guestfs-actions.pod:1228 ../src/guestfs-actions.pod:1302
8871 #: ../src/guestfs-actions.pod:1416 ../src/guestfs-actions.pod:4857
8872 #: ../src/guestfs-actions.pod:5243
8873 msgid "(Added in 1.0.18)"
8874 msgstr ""
8875
8876 # type: =head2
8877 #. type: =head2
8878 #: ../src/guestfs-actions.pod:1144
8879 msgid "guestfs_cp_a"
8880 msgstr ""
8881
8882 # type: verbatim
8883 #. type: verbatim
8884 #: ../src/guestfs-actions.pod:1146
8885 #, no-wrap
8886 msgid ""
8887 " int\n"
8888 " guestfs_cp_a (guestfs_h *g,\n"
8889 "               const char *src,\n"
8890 "               const char *dest);\n"
8891 "\n"
8892 msgstr ""
8893
8894 # type: textblock
8895 #. type: textblock
8896 #: ../src/guestfs-actions.pod:1151 ../fish/guestfish-actions.pod:776
8897 msgid ""
8898 "This copies a file or directory from C<src> to C<dest> recursively using the "
8899 "C<cp -a> command."
8900 msgstr ""
8901
8902 # type: =head2
8903 #. type: =head2
8904 #: ../src/guestfs-actions.pod:1158
8905 msgid "guestfs_dd"
8906 msgstr ""
8907
8908 # type: verbatim
8909 #. type: verbatim
8910 #: ../src/guestfs-actions.pod:1160
8911 #, no-wrap
8912 msgid ""
8913 " int\n"
8914 " guestfs_dd (guestfs_h *g,\n"
8915 "             const char *src,\n"
8916 "             const char *dest);\n"
8917 "\n"
8918 msgstr ""
8919
8920 # type: textblock
8921 #. type: textblock
8922 #: ../src/guestfs-actions.pod:1165 ../fish/guestfish-actions.pod:783
8923 msgid ""
8924 "This command copies from one source device or file C<src> to another "
8925 "destination device or file C<dest>.  Normally you would use this to copy to "
8926 "or from a device or partition, for example to duplicate a filesystem."
8927 msgstr ""
8928
8929 # type: textblock
8930 #. type: textblock
8931 #: ../src/guestfs-actions.pod:1170
8932 msgid ""
8933 "If the destination is a device, it must be as large or larger than the "
8934 "source file or device, otherwise the copy will fail.  This command cannot do "
8935 "partial copies (see C<guestfs_copy_size>)."
8936 msgstr ""
8937
8938 # type: =head2
8939 #. type: =head2
8940 #: ../src/guestfs-actions.pod:1178
8941 msgid "guestfs_df"
8942 msgstr ""
8943
8944 # type: verbatim
8945 #. type: verbatim
8946 #: ../src/guestfs-actions.pod:1180
8947 #, no-wrap
8948 msgid ""
8949 " char *\n"
8950 " guestfs_df (guestfs_h *g);\n"
8951 "\n"
8952 msgstr ""
8953
8954 # type: textblock
8955 #. type: textblock
8956 #: ../src/guestfs-actions.pod:1183 ../fish/guestfish-actions.pod:796
8957 msgid "This command runs the C<df> command to report disk space used."
8958 msgstr ""
8959
8960 # type: textblock
8961 #. type: textblock
8962 #: ../src/guestfs-actions.pod:1185 ../src/guestfs-actions.pod:1202
8963 msgid ""
8964 "This command is mostly useful for interactive sessions.  It is I<not> "
8965 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
8966 "from programs."
8967 msgstr ""
8968
8969 # type: textblock
8970 #. type: textblock
8971 #: ../src/guestfs-actions.pod:1192 ../src/guestfs-actions.pod:1209
8972 #: ../src/guestfs-actions.pod:1327 ../src/guestfs-actions.pod:2288
8973 #: ../src/guestfs-actions.pod:2312 ../src/guestfs-actions.pod:2380
8974 #: ../src/guestfs-actions.pod:4275 ../src/guestfs-actions.pod:4757
8975 #: ../src/guestfs-actions.pod:6605 ../src/guestfs-actions.pod:6629
8976 #: ../src/guestfs-actions.pod:7254 ../src/guestfs-actions.pod:7267
8977 #: ../src/guestfs-actions.pod:7280
8978 msgid "(Added in 1.0.54)"
8979 msgstr ""
8980
8981 # type: =head2
8982 #. type: =head2
8983 #: ../src/guestfs-actions.pod:1194
8984 msgid "guestfs_df_h"
8985 msgstr ""
8986
8987 # type: verbatim
8988 #. type: verbatim
8989 #: ../src/guestfs-actions.pod:1196
8990 #, no-wrap
8991 msgid ""
8992 " char *\n"
8993 " guestfs_df_h (guestfs_h *g);\n"
8994 "\n"
8995 msgstr ""
8996
8997 # type: textblock
8998 #. type: textblock
8999 #: ../src/guestfs-actions.pod:1199 ../fish/guestfish-actions.pod:806
9000 msgid ""
9001 "This command runs the C<df -h> command to report disk space used in human-"
9002 "readable format."
9003 msgstr ""
9004
9005 # type: =head2
9006 #. type: =head2
9007 #: ../src/guestfs-actions.pod:1211
9008 msgid "guestfs_dmesg"
9009 msgstr ""
9010
9011 # type: verbatim
9012 #. type: verbatim
9013 #: ../src/guestfs-actions.pod:1213
9014 #, no-wrap
9015 msgid ""
9016 " char *\n"
9017 " guestfs_dmesg (guestfs_h *g);\n"
9018 "\n"
9019 msgstr ""
9020
9021 # type: textblock
9022 #. type: textblock
9023 #: ../src/guestfs-actions.pod:1216 ../fish/guestfish-actions.pod:817
9024 msgid ""
9025 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
9026 "This is sometimes useful for extended debugging of problems."
9027 msgstr ""
9028
9029 # type: textblock
9030 #. type: textblock
9031 #: ../src/guestfs-actions.pod:1220
9032 msgid ""
9033 "Another way to get the same information is to enable verbose messages with "
9034 "C<guestfs_set_verbose> or by setting the environment variable "
9035 "C<LIBGUESTFS_DEBUG=1> before running the program."
9036 msgstr ""
9037
9038 # type: =head2
9039 #. type: =head2
9040 #: ../src/guestfs-actions.pod:1230
9041 msgid "guestfs_download"
9042 msgstr ""
9043
9044 # type: verbatim
9045 #. type: verbatim
9046 #: ../src/guestfs-actions.pod:1232
9047 #, no-wrap
9048 msgid ""
9049 " int\n"
9050 " guestfs_download (guestfs_h *g,\n"
9051 "                   const char *remotefilename,\n"
9052 "                   const char *filename);\n"
9053 "\n"
9054 msgstr ""
9055
9056 # type: textblock
9057 #. type: textblock
9058 #: ../src/guestfs-actions.pod:1237 ../src/guestfs-actions.pod:1262
9059 #: ../fish/guestfish-actions.pod:830 ../fish/guestfish-actions.pod:843
9060 msgid ""
9061 "Download file C<remotefilename> and save it as C<filename> on the local "
9062 "machine."
9063 msgstr ""
9064
9065 # type: textblock
9066 #. type: textblock
9067 #: ../src/guestfs-actions.pod:1240 ../src/guestfs-actions.pod:6861
9068 #: ../fish/guestfish-actions.pod:833 ../fish/guestfish-actions.pod:4636
9069 msgid "C<filename> can also be a named pipe."
9070 msgstr ""
9071
9072 # type: textblock
9073 #. type: textblock
9074 #: ../src/guestfs-actions.pod:1242
9075 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
9076 msgstr ""
9077
9078 # type: =head2
9079 #. type: =head2
9080 #: ../src/guestfs-actions.pod:1253
9081 msgid "guestfs_download_offset"
9082 msgstr ""
9083
9084 # type: verbatim
9085 #. type: verbatim
9086 #: ../src/guestfs-actions.pod:1255
9087 #, no-wrap
9088 msgid ""
9089 " int\n"
9090 " guestfs_download_offset (guestfs_h *g,\n"
9091 "                          const char *remotefilename,\n"
9092 "                          const char *filename,\n"
9093 "                          int64_t offset,\n"
9094 "                          int64_t size);\n"
9095 "\n"
9096 msgstr ""
9097
9098 # type: textblock
9099 #. type: textblock
9100 #: ../src/guestfs-actions.pod:1265 ../fish/guestfish-actions.pod:846
9101 msgid ""
9102 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
9103 "region must be within the file or device)."
9104 msgstr ""
9105
9106 # type: textblock
9107 #. type: textblock
9108 #: ../src/guestfs-actions.pod:1268
9109 msgid ""
9110 "Note that there is no limit on the amount of data that can be downloaded "
9111 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
9112 "full amount unless an error occurs."
9113 msgstr ""
9114
9115 # type: textblock
9116 #. type: textblock
9117 #: ../src/guestfs-actions.pod:1273
9118 msgid "See also C<guestfs_download>, C<guestfs_pread>."
9119 msgstr ""
9120
9121 # type: textblock
9122 #. type: textblock
9123 #: ../src/guestfs-actions.pod:1282 ../src/guestfs-actions.pod:6906
9124 msgid "(Added in 1.5.17)"
9125 msgstr ""
9126
9127 # type: =head2
9128 #. type: =head2
9129 #: ../src/guestfs-actions.pod:1284
9130 msgid "guestfs_drop_caches"
9131 msgstr ""
9132
9133 # type: verbatim
9134 #. type: verbatim
9135 #: ../src/guestfs-actions.pod:1286
9136 #, no-wrap
9137 msgid ""
9138 " int\n"
9139 " guestfs_drop_caches (guestfs_h *g,\n"
9140 "                      int whattodrop);\n"
9141 "\n"
9142 msgstr ""
9143
9144 # type: textblock
9145 #. type: textblock
9146 #: ../src/guestfs-actions.pod:1290 ../fish/guestfish-actions.pod:862
9147 msgid ""
9148 "This instructs the guest kernel to drop its page cache, and/or dentries and "
9149 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
9150 "to drop, see L<http://linux-mm.org/Drop_Caches>"
9151 msgstr ""
9152
9153 # type: textblock
9154 #. type: textblock
9155 #: ../src/guestfs-actions.pod:1295 ../fish/guestfish-actions.pod:867
9156 msgid "Setting C<whattodrop> to 3 should drop everything."
9157 msgstr ""
9158
9159 # type: textblock
9160 #. type: textblock
9161 #: ../src/guestfs-actions.pod:1297 ../fish/guestfish-actions.pod:869
9162 msgid ""
9163 "This automatically calls L<sync(2)> before the operation, so that the "
9164 "maximum guest memory is freed."
9165 msgstr ""
9166
9167 # type: =head2
9168 #. type: =head2
9169 #: ../src/guestfs-actions.pod:1304
9170 msgid "guestfs_du"
9171 msgstr ""
9172
9173 # type: verbatim
9174 #. type: verbatim
9175 #: ../src/guestfs-actions.pod:1306
9176 #, no-wrap
9177 msgid ""
9178 " int64_t\n"
9179 " guestfs_du (guestfs_h *g,\n"
9180 "             const char *path);\n"
9181 "\n"
9182 msgstr ""
9183
9184 # type: textblock
9185 #. type: textblock
9186 #: ../src/guestfs-actions.pod:1310 ../fish/guestfish-actions.pod:876
9187 msgid ""
9188 "This command runs the C<du -s> command to estimate file space usage for "
9189 "C<path>."
9190 msgstr ""
9191
9192 # type: textblock
9193 #. type: textblock
9194 #: ../src/guestfs-actions.pod:1313 ../fish/guestfish-actions.pod:879
9195 msgid ""
9196 "C<path> can be a file or a directory.  If C<path> is a directory then the "
9197 "estimate includes the contents of the directory and all subdirectories "
9198 "(recursively)."
9199 msgstr ""
9200
9201 # type: textblock
9202 #. type: textblock
9203 #: ../src/guestfs-actions.pod:1317 ../fish/guestfish-actions.pod:883
9204 msgid ""
9205 "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
9206 msgstr ""
9207
9208 # type: =head2
9209 #. type: =head2
9210 #: ../src/guestfs-actions.pod:1329
9211 msgid "guestfs_e2fsck_f"
9212 msgstr ""
9213
9214 # type: verbatim
9215 #. type: verbatim
9216 #: ../src/guestfs-actions.pod:1331
9217 #, no-wrap
9218 msgid ""
9219 " int\n"
9220 " guestfs_e2fsck_f (guestfs_h *g,\n"
9221 "                   const char *device);\n"
9222 "\n"
9223 msgstr ""
9224
9225 #. type: textblock
9226 #: ../src/guestfs-actions.pod:1335 ../fish/guestfish-actions.pod:890
9227 msgid ""
9228 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
9229 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
9230 "clean (I<-f>)."
9231 msgstr ""
9232
9233 # type: textblock
9234 #. type: textblock
9235 #: ../src/guestfs-actions.pod:1339
9236 msgid ""
9237 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
9238 "Normally you should use C<guestfs_fsck>."
9239 msgstr ""
9240
9241 # type: textblock
9242 #. type: textblock
9243 #: ../src/guestfs-actions.pod:1344
9244 msgid "(Added in 1.0.29)"
9245 msgstr ""
9246
9247 # type: =head2
9248 #. type: =head2
9249 #: ../src/guestfs-actions.pod:1346
9250 msgid "guestfs_echo_daemon"
9251 msgstr ""
9252
9253 # type: verbatim
9254 #. type: verbatim
9255 #: ../src/guestfs-actions.pod:1348
9256 #, no-wrap
9257 msgid ""
9258 " char *\n"
9259 " guestfs_echo_daemon (guestfs_h *g,\n"
9260 "                      char *const *words);\n"
9261 "\n"
9262 msgstr ""
9263
9264 # type: textblock
9265 #. type: textblock
9266 #: ../src/guestfs-actions.pod:1352 ../fish/guestfish-actions.pod:901
9267 msgid ""
9268 "This command concatenates the list of C<words> passed with single spaces "
9269 "between them and returns the resulting string."
9270 msgstr ""
9271
9272 # type: textblock
9273 #. type: textblock
9274 #: ../src/guestfs-actions.pod:1355 ../fish/guestfish-actions.pod:904
9275 msgid "You can use this command to test the connection through to the daemon."
9276 msgstr ""
9277
9278 # type: textblock
9279 #. type: textblock
9280 #: ../src/guestfs-actions.pod:1357
9281 msgid "See also C<guestfs_ping_daemon>."
9282 msgstr ""
9283
9284 # type: textblock
9285 #. type: textblock
9286 #: ../src/guestfs-actions.pod:1362 ../src/guestfs-actions.pod:2096
9287 #: ../src/guestfs-actions.pod:6077
9288 msgid "(Added in 1.0.69)"
9289 msgstr ""
9290
9291 # type: =head2
9292 #. type: =head2
9293 #: ../src/guestfs-actions.pod:1364
9294 msgid "guestfs_egrep"
9295 msgstr ""
9296
9297 # type: verbatim
9298 #. type: verbatim
9299 #: ../src/guestfs-actions.pod:1366
9300 #, no-wrap
9301 msgid ""
9302 " char **\n"
9303 " guestfs_egrep (guestfs_h *g,\n"
9304 "                const char *regex,\n"
9305 "                const char *path);\n"
9306 "\n"
9307 msgstr ""
9308
9309 # type: textblock
9310 #. type: textblock
9311 #: ../src/guestfs-actions.pod:1371 ../fish/guestfish-actions.pod:912
9312 msgid ""
9313 "This calls the external C<egrep> program and returns the matching lines."
9314 msgstr ""
9315
9316 # type: textblock
9317 #. type: textblock
9318 #: ../src/guestfs-actions.pod:1381 ../src/guestfs-actions.pod:1400
9319 #: ../src/guestfs-actions.pod:1457 ../src/guestfs-actions.pod:1503
9320 #: ../src/guestfs-actions.pod:1522 ../src/guestfs-actions.pod:2226
9321 #: ../src/guestfs-actions.pod:2245 ../src/guestfs-actions.pod:2401
9322 #: ../src/guestfs-actions.pod:2414 ../src/guestfs-actions.pod:2429
9323 #: ../src/guestfs-actions.pod:2475 ../src/guestfs-actions.pod:2497
9324 #: ../src/guestfs-actions.pod:2510 ../src/guestfs-actions.pod:3658
9325 #: ../src/guestfs-actions.pod:3672 ../src/guestfs-actions.pod:3685
9326 #: ../src/guestfs-actions.pod:3699 ../src/guestfs-actions.pod:4685
9327 #: ../src/guestfs-actions.pod:5577 ../src/guestfs-actions.pod:5626
9328 #: ../src/guestfs-actions.pod:6473 ../src/guestfs-actions.pod:6485
9329 #: ../src/guestfs-actions.pod:6498 ../src/guestfs-actions.pod:6511
9330 #: ../src/guestfs-actions.pod:6533 ../src/guestfs-actions.pod:6546
9331 #: ../src/guestfs-actions.pod:6559 ../src/guestfs-actions.pod:6572
9332 #: ../src/guestfs-actions.pod:7350 ../src/guestfs-actions.pod:7369
9333 #: ../src/guestfs-actions.pod:7454 ../src/guestfs-actions.pod:7473
9334 #: ../src/guestfs-actions.pod:7519 ../src/guestfs-actions.pod:7538
9335 msgid "(Added in 1.0.66)"
9336 msgstr ""
9337
9338 # type: =head2
9339 #. type: =head2
9340 #: ../src/guestfs-actions.pod:1383
9341 msgid "guestfs_egrepi"
9342 msgstr ""
9343
9344 # type: verbatim
9345 #. type: verbatim
9346 #: ../src/guestfs-actions.pod:1385
9347 #, no-wrap
9348 msgid ""
9349 " char **\n"
9350 " guestfs_egrepi (guestfs_h *g,\n"
9351 "                 const char *regex,\n"
9352 "                 const char *path);\n"
9353 "\n"
9354 msgstr ""
9355
9356 # type: textblock
9357 #. type: textblock
9358 #: ../src/guestfs-actions.pod:1390 ../fish/guestfish-actions.pod:922
9359 msgid ""
9360 "This calls the external C<egrep -i> program and returns the matching lines."
9361 msgstr ""
9362
9363 # type: =head2
9364 #. type: =head2
9365 #: ../src/guestfs-actions.pod:1402
9366 msgid "guestfs_equal"
9367 msgstr ""
9368
9369 # type: verbatim
9370 #. type: verbatim
9371 #: ../src/guestfs-actions.pod:1404
9372 #, no-wrap
9373 msgid ""
9374 " int\n"
9375 " guestfs_equal (guestfs_h *g,\n"
9376 "                const char *file1,\n"
9377 "                const char *file2);\n"
9378 "\n"
9379 msgstr ""
9380
9381 # type: textblock
9382 #. type: textblock
9383 #: ../src/guestfs-actions.pod:1409 ../fish/guestfish-actions.pod:932
9384 msgid ""
9385 "This compares the two files C<file1> and C<file2> and returns true if their "
9386 "content is exactly equal, or false otherwise."
9387 msgstr ""
9388
9389 # type: textblock
9390 #. type: textblock
9391 #: ../src/guestfs-actions.pod:1412 ../fish/guestfish-actions.pod:935
9392 msgid "The external L<cmp(1)> program is used for the comparison."
9393 msgstr ""
9394
9395 # type: =head2
9396 #. type: =head2
9397 #: ../src/guestfs-actions.pod:1418
9398 msgid "guestfs_exists"
9399 msgstr ""
9400
9401 # type: verbatim
9402 #. type: verbatim
9403 #: ../src/guestfs-actions.pod:1420
9404 #, no-wrap
9405 msgid ""
9406 " int\n"
9407 " guestfs_exists (guestfs_h *g,\n"
9408 "                 const char *path);\n"
9409 "\n"
9410 msgstr ""
9411
9412 # type: textblock
9413 #. type: textblock
9414 #: ../src/guestfs-actions.pod:1424 ../fish/guestfish-actions.pod:941
9415 msgid ""
9416 "This returns C<true> if and only if there is a file, directory (or anything) "
9417 "with the given C<path> name."
9418 msgstr ""
9419
9420 # type: textblock
9421 #. type: textblock
9422 #: ../src/guestfs-actions.pod:1427
9423 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
9424 msgstr ""
9425
9426 # type: =head2
9427 #. type: =head2
9428 #: ../src/guestfs-actions.pod:1433
9429 msgid "guestfs_fallocate"
9430 msgstr ""
9431
9432 # type: verbatim
9433 #. type: verbatim
9434 #: ../src/guestfs-actions.pod:1435
9435 #, no-wrap
9436 msgid ""
9437 " int\n"
9438 " guestfs_fallocate (guestfs_h *g,\n"
9439 "                    const char *path,\n"
9440 "                    int len);\n"
9441 "\n"
9442 msgstr ""
9443
9444 # type: textblock
9445 #. type: textblock
9446 #: ../src/guestfs-actions.pod:1440 ../src/guestfs-actions.pod:1466
9447 #: ../fish/guestfish-actions.pod:950 ../fish/guestfish-actions.pod:969
9448 msgid ""
9449 "This command preallocates a file (containing zero bytes) named C<path> of "
9450 "size C<len> bytes.  If the file exists already, it is overwritten."
9451 msgstr ""
9452
9453 # type: textblock
9454 #. type: textblock
9455 #: ../src/guestfs-actions.pod:1444 ../fish/guestfish-actions.pod:954
9456 msgid ""
9457 "Do not confuse this with the guestfish-specific C<alloc> command which "
9458 "allocates a file in the host and attaches it as a device."
9459 msgstr ""
9460
9461 #. type: textblock
9462 #: ../src/guestfs-actions.pod:1450
9463 msgid ""
9464 "This function is deprecated.  In new code, use the L</guestfs_fallocate64> "
9465 "call instead."
9466 msgstr ""
9467
9468 # type: =head2
9469 #. type: =head2
9470 #: ../src/guestfs-actions.pod:1459
9471 msgid "guestfs_fallocate64"
9472 msgstr ""
9473
9474 # type: verbatim
9475 #. type: verbatim
9476 #: ../src/guestfs-actions.pod:1461
9477 #, no-wrap
9478 msgid ""
9479 " int\n"
9480 " guestfs_fallocate64 (guestfs_h *g,\n"
9481 "                      const char *path,\n"
9482 "                      int64_t len);\n"
9483 "\n"
9484 msgstr ""
9485
9486 # type: textblock
9487 #. type: textblock
9488 #: ../src/guestfs-actions.pod:1470
9489 msgid ""
9490 "Note that this call allocates disk blocks for the file.  To create a sparse "
9491 "file use C<guestfs_truncate_size> instead."
9492 msgstr ""
9493
9494 # type: textblock
9495 #. type: textblock
9496 #: ../src/guestfs-actions.pod:1473
9497 msgid ""
9498 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
9499 "oversight it only allowed 30 bit lengths to be specified, effectively "
9500 "limiting the maximum size of files created through that call to 1GB."
9501 msgstr ""
9502
9503 # type: textblock
9504 #. type: textblock
9505 #: ../src/guestfs-actions.pod:1478 ../fish/guestfish-actions.pod:981
9506 msgid ""
9507 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
9508 "commands which create a file in the host and attach it as a device."
9509 msgstr ""
9510
9511 # type: textblock
9512 #. type: textblock
9513 #: ../src/guestfs-actions.pod:1484
9514 msgid "(Added in 1.3.17)"
9515 msgstr ""
9516
9517 # type: =head2
9518 #. type: =head2
9519 #: ../src/guestfs-actions.pod:1486
9520 msgid "guestfs_fgrep"
9521 msgstr ""
9522
9523 # type: verbatim
9524 #. type: verbatim
9525 #: ../src/guestfs-actions.pod:1488
9526 #, no-wrap
9527 msgid ""
9528 " char **\n"
9529 " guestfs_fgrep (guestfs_h *g,\n"
9530 "                const char *pattern,\n"
9531 "                const char *path);\n"
9532 "\n"
9533 msgstr ""
9534
9535 # type: textblock
9536 #. type: textblock
9537 #: ../src/guestfs-actions.pod:1493 ../fish/guestfish-actions.pod:989
9538 msgid ""
9539 "This calls the external C<fgrep> program and returns the matching lines."
9540 msgstr ""
9541
9542 # type: =head2
9543 #. type: =head2
9544 #: ../src/guestfs-actions.pod:1505
9545 msgid "guestfs_fgrepi"
9546 msgstr ""
9547
9548 # type: verbatim
9549 #. type: verbatim
9550 #: ../src/guestfs-actions.pod:1507
9551 #, no-wrap
9552 msgid ""
9553 " char **\n"
9554 " guestfs_fgrepi (guestfs_h *g,\n"
9555 "                 const char *pattern,\n"
9556 "                 const char *path);\n"
9557 "\n"
9558 msgstr ""
9559
9560 # type: textblock
9561 #. type: textblock
9562 #: ../src/guestfs-actions.pod:1512 ../fish/guestfish-actions.pod:999
9563 msgid ""
9564 "This calls the external C<fgrep -i> program and returns the matching lines."
9565 msgstr ""
9566
9567 # type: =head2
9568 #. type: =head2
9569 #: ../src/guestfs-actions.pod:1524
9570 msgid "guestfs_file"
9571 msgstr ""
9572
9573 # type: verbatim
9574 #. type: verbatim
9575 #: ../src/guestfs-actions.pod:1526
9576 #, no-wrap
9577 msgid ""
9578 " char *\n"
9579 " guestfs_file (guestfs_h *g,\n"
9580 "               const char *path);\n"
9581 "\n"
9582 msgstr ""
9583
9584 # type: textblock
9585 #. type: textblock
9586 #: ../src/guestfs-actions.pod:1530 ../fish/guestfish-actions.pod:1009
9587 msgid ""
9588 "This call uses the standard L<file(1)> command to determine the type or "
9589 "contents of the file."
9590 msgstr ""
9591
9592 # type: textblock
9593 #. type: textblock
9594 #: ../src/guestfs-actions.pod:1533 ../fish/guestfish-actions.pod:1012
9595 msgid ""
9596 "This call will also transparently look inside various types of compressed "
9597 "file."
9598 msgstr ""
9599
9600 #. type: textblock
9601 #: ../src/guestfs-actions.pod:1536 ../fish/guestfish-actions.pod:1015
9602 msgid ""
9603 "The exact command which runs is C<file -zb path>.  Note in particular that "
9604 "the filename is not prepended to the output (the I<-b> option)."
9605 msgstr ""
9606
9607 #. type: textblock
9608 #: ../src/guestfs-actions.pod:1540 ../fish/guestfish-actions.pod:1019
9609 msgid ""
9610 "The output depends on the output of the underlying L<file(1)> command and it "
9611 "can change in future in ways beyond our control.  In other words, the output "
9612 "is not guaranteed by the ABI."
9613 msgstr ""
9614
9615 #. type: textblock
9616 #: ../src/guestfs-actions.pod:1544
9617 msgid ""
9618 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
9619 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc)."
9620 msgstr ""
9621
9622 # type: =head2
9623 #. type: =head2
9624 #: ../src/guestfs-actions.pod:1552
9625 msgid "guestfs_file_architecture"
9626 msgstr ""
9627
9628 # type: verbatim
9629 #. type: verbatim
9630 #: ../src/guestfs-actions.pod:1554
9631 #, no-wrap
9632 msgid ""
9633 " char *\n"
9634 " guestfs_file_architecture (guestfs_h *g,\n"
9635 "                            const char *filename);\n"
9636 "\n"
9637 msgstr ""
9638
9639 # type: textblock
9640 #. type: textblock
9641 #: ../src/guestfs-actions.pod:1558 ../fish/guestfish-actions.pod:1030
9642 msgid ""
9643 "This detects the architecture of the binary C<filename>, and returns it if "
9644 "known."
9645 msgstr ""
9646
9647 # type: textblock
9648 #. type: textblock
9649 #: ../src/guestfs-actions.pod:1561 ../fish/guestfish-actions.pod:1033
9650 msgid "Currently defined architectures are:"
9651 msgstr ""
9652
9653 # type: =item
9654 #. type: =item
9655 #: ../src/guestfs-actions.pod:1565 ../fish/guestfish-actions.pod:1037
9656 msgid "\"i386\""
9657 msgstr ""
9658
9659 # type: textblock
9660 #. type: textblock
9661 #: ../src/guestfs-actions.pod:1567 ../fish/guestfish-actions.pod:1039
9662 msgid ""
9663 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
9664 "irrespective of the precise processor requirements of the binary."
9665 msgstr ""
9666
9667 # type: =item
9668 #. type: =item
9669 #: ../src/guestfs-actions.pod:1570 ../fish/guestfish-actions.pod:1042
9670 msgid "\"x86_64\""
9671 msgstr ""
9672
9673 # type: textblock
9674 #. type: textblock
9675 #: ../src/guestfs-actions.pod:1572 ../fish/guestfish-actions.pod:1044
9676 msgid "64 bit x86-64."
9677 msgstr ""
9678
9679 # type: =item
9680 #. type: =item
9681 #: ../src/guestfs-actions.pod:1574 ../fish/guestfish-actions.pod:1046
9682 msgid "\"sparc\""
9683 msgstr ""
9684
9685 # type: textblock
9686 #. type: textblock
9687 #: ../src/guestfs-actions.pod:1576 ../fish/guestfish-actions.pod:1048
9688 msgid "32 bit SPARC."
9689 msgstr ""
9690
9691 # type: =item
9692 #. type: =item
9693 #: ../src/guestfs-actions.pod:1578 ../fish/guestfish-actions.pod:1050
9694 msgid "\"sparc64\""
9695 msgstr ""
9696
9697 # type: textblock
9698 #. type: textblock
9699 #: ../src/guestfs-actions.pod:1580 ../fish/guestfish-actions.pod:1052
9700 msgid "64 bit SPARC V9 and above."
9701 msgstr ""
9702
9703 # type: =item
9704 #. type: =item
9705 #: ../src/guestfs-actions.pod:1582 ../fish/guestfish-actions.pod:1054
9706 msgid "\"ia64\""
9707 msgstr ""
9708
9709 # type: textblock
9710 #. type: textblock
9711 #: ../src/guestfs-actions.pod:1584 ../fish/guestfish-actions.pod:1056
9712 msgid "Intel Itanium."
9713 msgstr ""
9714
9715 # type: =item
9716 #. type: =item
9717 #: ../src/guestfs-actions.pod:1586 ../fish/guestfish-actions.pod:1058
9718 msgid "\"ppc\""
9719 msgstr ""
9720
9721 # type: textblock
9722 #. type: textblock
9723 #: ../src/guestfs-actions.pod:1588 ../fish/guestfish-actions.pod:1060
9724 msgid "32 bit Power PC."
9725 msgstr ""
9726
9727 # type: =item
9728 #. type: =item
9729 #: ../src/guestfs-actions.pod:1590 ../fish/guestfish-actions.pod:1062
9730 msgid "\"ppc64\""
9731 msgstr ""
9732
9733 # type: textblock
9734 #. type: textblock
9735 #: ../src/guestfs-actions.pod:1592 ../fish/guestfish-actions.pod:1064
9736 msgid "64 bit Power PC."
9737 msgstr ""
9738
9739 # type: textblock
9740 #. type: textblock
9741 #: ../src/guestfs-actions.pod:1596 ../fish/guestfish-actions.pod:1068
9742 msgid "Libguestfs may return other architecture strings in future."
9743 msgstr ""
9744
9745 # type: textblock
9746 #. type: textblock
9747 #: ../src/guestfs-actions.pod:1598 ../fish/guestfish-actions.pod:1070
9748 msgid "The function works on at least the following types of files:"
9749 msgstr ""
9750
9751 # type: textblock
9752 #. type: textblock
9753 #: ../src/guestfs-actions.pod:1604 ../fish/guestfish-actions.pod:1076
9754 msgid "many types of Un*x and Linux binary"
9755 msgstr ""
9756
9757 # type: textblock
9758 #. type: textblock
9759 #: ../src/guestfs-actions.pod:1608 ../fish/guestfish-actions.pod:1080
9760 msgid "many types of Un*x and Linux shared library"
9761 msgstr ""
9762
9763 # type: textblock
9764 #. type: textblock
9765 #: ../src/guestfs-actions.pod:1612 ../fish/guestfish-actions.pod:1084
9766 msgid "Windows Win32 and Win64 binaries"
9767 msgstr ""
9768
9769 # type: textblock
9770 #. type: textblock
9771 #: ../src/guestfs-actions.pod:1616 ../fish/guestfish-actions.pod:1088
9772 msgid "Windows Win32 and Win64 DLLs"
9773 msgstr ""
9774
9775 # type: textblock
9776 #. type: textblock
9777 #: ../src/guestfs-actions.pod:1618 ../fish/guestfish-actions.pod:1090
9778 msgid "Win32 binaries and DLLs return C<i386>."
9779 msgstr ""
9780
9781 # type: textblock
9782 #. type: textblock
9783 #: ../src/guestfs-actions.pod:1620 ../fish/guestfish-actions.pod:1092
9784 msgid "Win64 binaries and DLLs return C<x86_64>."
9785 msgstr ""
9786
9787 # type: textblock
9788 #. type: textblock
9789 #: ../src/guestfs-actions.pod:1624 ../fish/guestfish-actions.pod:1096
9790 msgid "Linux kernel modules"
9791 msgstr ""
9792
9793 # type: textblock
9794 #. type: textblock
9795 #: ../src/guestfs-actions.pod:1628 ../fish/guestfish-actions.pod:1100
9796 msgid "Linux new-style initrd images"
9797 msgstr ""
9798
9799 # type: textblock
9800 #. type: textblock
9801 #: ../src/guestfs-actions.pod:1632 ../fish/guestfish-actions.pod:1104
9802 msgid "some non-x86 Linux vmlinuz kernels"
9803 msgstr ""
9804
9805 # type: textblock
9806 #. type: textblock
9807 #: ../src/guestfs-actions.pod:1636 ../fish/guestfish-actions.pod:1108
9808 msgid "What it can't do currently:"
9809 msgstr ""
9810
9811 # type: textblock
9812 #. type: textblock
9813 #: ../src/guestfs-actions.pod:1642 ../fish/guestfish-actions.pod:1114
9814 msgid "static libraries (libfoo.a)"
9815 msgstr ""
9816
9817 # type: textblock
9818 #. type: textblock
9819 #: ../src/guestfs-actions.pod:1646 ../fish/guestfish-actions.pod:1118
9820 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
9821 msgstr ""
9822
9823 # type: textblock
9824 #. type: textblock
9825 #: ../src/guestfs-actions.pod:1650 ../fish/guestfish-actions.pod:1122
9826 msgid "x86 Linux vmlinuz kernels"
9827 msgstr ""
9828
9829 # type: textblock
9830 #. type: textblock
9831 #: ../src/guestfs-actions.pod:1652 ../fish/guestfish-actions.pod:1124
9832 msgid ""
9833 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
9834 "compressed code, and are horribly hard to unpack.  If you want to find the "
9835 "architecture of a kernel, use the architecture of the associated initrd or "
9836 "kernel module(s) instead."
9837 msgstr ""
9838
9839 # type: textblock
9840 #. type: textblock
9841 #: ../src/guestfs-actions.pod:1662 ../src/guestfs-actions.pod:1825
9842 #: ../src/guestfs-actions.pod:1842 ../src/guestfs-actions.pod:2533
9843 #: ../src/guestfs-actions.pod:2626 ../src/guestfs-actions.pod:2696
9844 #: ../src/guestfs-actions.pod:2784 ../src/guestfs-actions.pod:2805
9845 #: ../src/guestfs-actions.pod:2848 ../src/guestfs-actions.pod:2932
9846 #: ../src/guestfs-actions.pod:3029 ../src/guestfs-actions.pod:3276
9847 #: ../src/guestfs-actions.pod:3408
9848 msgid "(Added in 1.5.3)"
9849 msgstr ""
9850
9851 # type: =head2
9852 #. type: =head2
9853 #: ../src/guestfs-actions.pod:1664
9854 msgid "guestfs_filesize"
9855 msgstr ""
9856
9857 # type: verbatim
9858 #. type: verbatim
9859 #: ../src/guestfs-actions.pod:1666
9860 #, no-wrap
9861 msgid ""
9862 " int64_t\n"
9863 " guestfs_filesize (guestfs_h *g,\n"
9864 "                   const char *file);\n"
9865 "\n"
9866 msgstr ""
9867
9868 # type: textblock
9869 #. type: textblock
9870 #: ../src/guestfs-actions.pod:1670 ../fish/guestfish-actions.pod:1135
9871 msgid "This command returns the size of C<file> in bytes."
9872 msgstr ""
9873
9874 # type: textblock
9875 #. type: textblock
9876 #: ../src/guestfs-actions.pod:1672
9877 msgid ""
9878 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
9879 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
9880 "devices, use C<guestfs_blockdev_getsize64>."
9881 msgstr ""
9882
9883 # type: textblock
9884 #. type: textblock
9885 #: ../src/guestfs-actions.pod:1678
9886 msgid "(Added in 1.0.82)"
9887 msgstr ""
9888
9889 # type: =head2
9890 #. type: =head2
9891 #: ../src/guestfs-actions.pod:1680
9892 msgid "guestfs_fill"
9893 msgstr ""
9894
9895 # type: verbatim
9896 #. type: verbatim
9897 #: ../src/guestfs-actions.pod:1682
9898 #, no-wrap
9899 msgid ""
9900 " int\n"
9901 " guestfs_fill (guestfs_h *g,\n"
9902 "               int c,\n"
9903 "               int len,\n"
9904 "               const char *path);\n"
9905 "\n"
9906 msgstr ""
9907
9908 # type: textblock
9909 #. type: textblock
9910 #: ../src/guestfs-actions.pod:1688 ../fish/guestfish-actions.pod:1145
9911 msgid ""
9912 "This command creates a new file called C<path>.  The initial content of the "
9913 "file is C<len> octets of C<c>, where C<c> must be a number in the range C<"
9914 "[0..255]>."
9915 msgstr ""
9916
9917 # type: textblock
9918 #. type: textblock
9919 #: ../src/guestfs-actions.pod:1692
9920 msgid ""
9921 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
9922 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
9923 "bytes use C<guestfs_fill_pattern>."
9924 msgstr ""
9925
9926 # type: textblock
9927 #. type: textblock
9928 #: ../src/guestfs-actions.pod:1704
9929 msgid "(Added in 1.0.79)"
9930 msgstr ""
9931
9932 # type: =head2
9933 #. type: =head2
9934 #: ../src/guestfs-actions.pod:1706
9935 msgid "guestfs_fill_pattern"
9936 msgstr ""
9937
9938 # type: verbatim
9939 #. type: verbatim
9940 #: ../src/guestfs-actions.pod:1708
9941 #, no-wrap
9942 msgid ""
9943 " int\n"
9944 " guestfs_fill_pattern (guestfs_h *g,\n"
9945 "                       const char *pattern,\n"
9946 "                       int len,\n"
9947 "                       const char *path);\n"
9948 "\n"
9949 msgstr ""
9950
9951 # type: textblock
9952 #. type: textblock
9953 #: ../src/guestfs-actions.pod:1714
9954 msgid ""
9955 "This function is like C<guestfs_fill> except that it creates a new file of "
9956 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
9957 "pattern is truncated if necessary to ensure the length of the file is "
9958 "exactly C<len> bytes."
9959 msgstr ""
9960
9961 # type: textblock
9962 #. type: textblock
9963 #: ../src/guestfs-actions.pod:1726
9964 msgid "(Added in 1.3.12)"
9965 msgstr ""
9966
9967 # type: =head2
9968 #. type: =head2
9969 #: ../src/guestfs-actions.pod:1728
9970 msgid "guestfs_find"
9971 msgstr ""
9972
9973 # type: verbatim
9974 #. type: verbatim
9975 #: ../src/guestfs-actions.pod:1730
9976 #, no-wrap
9977 msgid ""
9978 " char **\n"
9979 " guestfs_find (guestfs_h *g,\n"
9980 "               const char *directory);\n"
9981 "\n"
9982 msgstr ""
9983
9984 # type: textblock
9985 #. type: textblock
9986 #: ../src/guestfs-actions.pod:1734 ../fish/guestfish-actions.pod:1167
9987 msgid ""
9988 "This command lists out all files and directories, recursively, starting at "
9989 "C<directory>.  It is essentially equivalent to running the shell command "
9990 "C<find directory -print> but some post-processing happens on the output, "
9991 "described below."
9992 msgstr ""
9993
9994 # type: textblock
9995 #. type: textblock
9996 #: ../src/guestfs-actions.pod:1739 ../fish/guestfish-actions.pod:1172
9997 msgid ""
9998 "This returns a list of strings I<without any prefix>.  Thus if the directory "
9999 "structure was:"
10000 msgstr ""
10001
10002 # type: verbatim
10003 #. type: verbatim
10004 #: ../src/guestfs-actions.pod:1742 ../fish/guestfish-actions.pod:1175
10005 #, no-wrap
10006 msgid ""
10007 " /tmp/a\n"
10008 " /tmp/b\n"
10009 " /tmp/c/d\n"
10010 "\n"
10011 msgstr ""
10012
10013 # type: textblock
10014 #. type: textblock
10015 #: ../src/guestfs-actions.pod:1746
10016 msgid ""
10017 "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
10018 msgstr ""
10019
10020 # type: verbatim
10021 #. type: verbatim
10022 #: ../src/guestfs-actions.pod:1749 ../fish/guestfish-actions.pod:1182
10023 #, no-wrap
10024 msgid ""
10025 " a\n"
10026 " b\n"
10027 " c\n"
10028 " c/d\n"
10029 "\n"
10030 msgstr ""
10031
10032 # type: textblock
10033 #. type: textblock
10034 #: ../src/guestfs-actions.pod:1754 ../fish/guestfish-actions.pod:1187
10035 msgid "If C<directory> is not a directory, then this command returns an error."
10036 msgstr ""
10037
10038 # type: textblock
10039 #. type: textblock
10040 #: ../src/guestfs-actions.pod:1757 ../fish/guestfish-actions.pod:1190
10041 msgid "The returned list is sorted."
10042 msgstr ""
10043
10044 # type: textblock
10045 #. type: textblock
10046 #: ../src/guestfs-actions.pod:1759
10047 msgid "See also C<guestfs_find0>."
10048 msgstr ""
10049
10050 # type: textblock
10051 #. type: textblock
10052 #: ../src/guestfs-actions.pod:1768 ../src/guestfs-actions.pod:4102
10053 #: ../src/guestfs-actions.pod:5661
10054 msgid "(Added in 1.0.27)"
10055 msgstr ""
10056
10057 # type: =head2
10058 #. type: =head2
10059 #: ../src/guestfs-actions.pod:1770
10060 msgid "guestfs_find0"
10061 msgstr ""
10062
10063 # type: verbatim
10064 #. type: verbatim
10065 #: ../src/guestfs-actions.pod:1772
10066 #, no-wrap
10067 msgid ""
10068 " int\n"
10069 " guestfs_find0 (guestfs_h *g,\n"
10070 "                const char *directory,\n"
10071 "                const char *files);\n"
10072 "\n"
10073 msgstr ""
10074
10075 # type: textblock
10076 #. type: textblock
10077 #: ../src/guestfs-actions.pod:1777 ../fish/guestfish-actions.pod:1201
10078 msgid ""
10079 "This command lists out all files and directories, recursively, starting at "
10080 "C<directory>, placing the resulting list in the external file called "
10081 "C<files>."
10082 msgstr ""
10083
10084 # type: textblock
10085 #. type: textblock
10086 #: ../src/guestfs-actions.pod:1781
10087 msgid ""
10088 "This command works the same way as C<guestfs_find> with the following "
10089 "exceptions:"
10090 msgstr ""
10091
10092 # type: textblock
10093 #. type: textblock
10094 #: ../src/guestfs-actions.pod:1788 ../fish/guestfish-actions.pod:1212
10095 msgid "The resulting list is written to an external file."
10096 msgstr ""
10097
10098 # type: textblock
10099 #. type: textblock
10100 #: ../src/guestfs-actions.pod:1792 ../fish/guestfish-actions.pod:1216
10101 msgid ""
10102 "Items (filenames) in the result are separated by C<\\0> characters.  See "
10103 "L<find(1)> option I<-print0>."
10104 msgstr ""
10105
10106 # type: textblock
10107 #. type: textblock
10108 #: ../src/guestfs-actions.pod:1797 ../fish/guestfish-actions.pod:1221
10109 msgid "This command is not limited in the number of names that it can return."
10110 msgstr ""
10111
10112 # type: textblock
10113 #. type: textblock
10114 #: ../src/guestfs-actions.pod:1802 ../fish/guestfish-actions.pod:1226
10115 msgid "The result list is not sorted."
10116 msgstr ""
10117
10118 # type: textblock
10119 #. type: textblock
10120 #: ../src/guestfs-actions.pod:1808
10121 msgid "(Added in 1.0.74)"
10122 msgstr ""
10123
10124 # type: =head2
10125 #. type: =head2
10126 #: ../src/guestfs-actions.pod:1810
10127 msgid "guestfs_findfs_label"
10128 msgstr ""
10129
10130 # type: verbatim
10131 #. type: verbatim
10132 #: ../src/guestfs-actions.pod:1812
10133 #, no-wrap
10134 msgid ""
10135 " char *\n"
10136 " guestfs_findfs_label (guestfs_h *g,\n"
10137 "                       const char *label);\n"
10138 "\n"
10139 msgstr ""
10140
10141 # type: textblock
10142 #. type: textblock
10143 #: ../src/guestfs-actions.pod:1816 ../fish/guestfish-actions.pod:1236
10144 msgid ""
10145 "This command searches the filesystems and returns the one which has the "
10146 "given label.  An error is returned if no such filesystem can be found."
10147 msgstr ""
10148
10149 # type: textblock
10150 #. type: textblock
10151 #: ../src/guestfs-actions.pod:1820
10152 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
10153 msgstr ""
10154
10155 # type: =head2
10156 #. type: =head2
10157 #: ../src/guestfs-actions.pod:1827
10158 msgid "guestfs_findfs_uuid"
10159 msgstr ""
10160
10161 # type: verbatim
10162 #. type: verbatim
10163 #: ../src/guestfs-actions.pod:1829
10164 #, no-wrap
10165 msgid ""
10166 " char *\n"
10167 " guestfs_findfs_uuid (guestfs_h *g,\n"
10168 "                      const char *uuid);\n"
10169 "\n"
10170 msgstr ""
10171
10172 # type: textblock
10173 #. type: textblock
10174 #: ../src/guestfs-actions.pod:1833 ../fish/guestfish-actions.pod:1246
10175 msgid ""
10176 "This command searches the filesystems and returns the one which has the "
10177 "given UUID.  An error is returned if no such filesystem can be found."
10178 msgstr ""
10179
10180 # type: textblock
10181 #. type: textblock
10182 #: ../src/guestfs-actions.pod:1837
10183 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
10184 msgstr ""
10185
10186 # type: =head2
10187 #. type: =head2
10188 #: ../src/guestfs-actions.pod:1844
10189 msgid "guestfs_fsck"
10190 msgstr ""
10191
10192 # type: verbatim
10193 #. type: verbatim
10194 #: ../src/guestfs-actions.pod:1846
10195 #, no-wrap
10196 msgid ""
10197 " int\n"
10198 " guestfs_fsck (guestfs_h *g,\n"
10199 "               const char *fstype,\n"
10200 "               const char *device);\n"
10201 "\n"
10202 msgstr ""
10203
10204 # type: textblock
10205 #. type: textblock
10206 #: ../src/guestfs-actions.pod:1851 ../fish/guestfish-actions.pod:1256
10207 msgid ""
10208 "This runs the filesystem checker (fsck) on C<device> which should have "
10209 "filesystem type C<fstype>."
10210 msgstr ""
10211
10212 # type: textblock
10213 #. type: textblock
10214 #: ../src/guestfs-actions.pod:1854 ../fish/guestfish-actions.pod:1259
10215 msgid ""
10216 "The returned integer is the status.  See L<fsck(8)> for the list of status "
10217 "codes from C<fsck>."
10218 msgstr ""
10219
10220 # type: textblock
10221 #. type: textblock
10222 #: ../src/guestfs-actions.pod:1863 ../fish/guestfish-actions.pod:1268
10223 msgid "Multiple status codes can be summed together."
10224 msgstr ""
10225
10226 # type: textblock
10227 #. type: textblock
10228 #: ../src/guestfs-actions.pod:1867 ../fish/guestfish-actions.pod:1272
10229 msgid ""
10230 "A non-zero return code can mean \"success\", for example if errors have been "
10231 "corrected on the filesystem."
10232 msgstr ""
10233
10234 # type: textblock
10235 #. type: textblock
10236 #: ../src/guestfs-actions.pod:1872 ../fish/guestfish-actions.pod:1277
10237 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
10238 msgstr ""
10239
10240 # type: textblock
10241 #. type: textblock
10242 #: ../src/guestfs-actions.pod:1877 ../fish/guestfish-actions.pod:1282
10243 msgid ""
10244 "This command is entirely equivalent to running C<fsck -a -t fstype device>."
10245 msgstr ""
10246
10247 # type: textblock
10248 #. type: textblock
10249 #: ../src/guestfs-actions.pod:1881 ../src/guestfs-actions.pod:7392
10250 msgid "(Added in 1.0.16)"
10251 msgstr ""
10252
10253 # type: =head2
10254 #. type: =head2
10255 #: ../src/guestfs-actions.pod:1883
10256 msgid "guestfs_get_append"
10257 msgstr ""
10258
10259 # type: verbatim
10260 #. type: verbatim
10261 #: ../src/guestfs-actions.pod:1885
10262 #, no-wrap
10263 msgid ""
10264 " const char *\n"
10265 " guestfs_get_append (guestfs_h *g);\n"
10266 "\n"
10267 msgstr ""
10268
10269 # type: textblock
10270 #. type: textblock
10271 #: ../src/guestfs-actions.pod:1888 ../fish/guestfish-actions.pod:1288
10272 msgid ""
10273 "Return the additional kernel options which are added to the guest kernel "
10274 "command line."
10275 msgstr ""
10276
10277 # type: textblock
10278 #. type: textblock
10279 #: ../src/guestfs-actions.pod:1891 ../fish/guestfish-actions.pod:1291
10280 msgid "If C<NULL> then no options are added."
10281 msgstr ""
10282
10283 # type: textblock
10284 #. type: textblock
10285 #: ../src/guestfs-actions.pod:1893
10286 msgid ""
10287 "This function returns a string which may be NULL.  There is no way to return "
10288 "an error from this function.  The string is owned by the guest handle and "
10289 "must I<not> be freed."
10290 msgstr ""
10291
10292 # type: textblock
10293 #. type: textblock
10294 #: ../src/guestfs-actions.pod:1897 ../src/guestfs-actions.pod:5339
10295 #: ../src/guestfs-actions.pod:5819 ../src/guestfs-actions.pod:6240
10296 #: ../src/guestfs-actions.pod:6259 ../src/guestfs-actions.pod:6275
10297 #: ../src/guestfs-actions.pod:6299 ../src/guestfs-actions.pod:7056
10298 #: ../src/guestfs-actions.pod:7074 ../src/guestfs-actions.pod:7435
10299 msgid "(Added in 1.0.26)"
10300 msgstr ""
10301
10302 #. type: =head2
10303 #: ../src/guestfs-actions.pod:1899
10304 msgid "guestfs_get_attach_method"
10305 msgstr ""
10306
10307 #. type: verbatim
10308 #: ../src/guestfs-actions.pod:1901
10309 #, no-wrap
10310 msgid ""
10311 " char *\n"
10312 " guestfs_get_attach_method (guestfs_h *g);\n"
10313 "\n"
10314 msgstr ""
10315
10316 #. type: textblock
10317 #: ../src/guestfs-actions.pod:1904
10318 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
10319 msgstr ""
10320
10321 # type: =head2
10322 #. type: =head2
10323 #: ../src/guestfs-actions.pod:1909
10324 msgid "guestfs_get_autosync"
10325 msgstr ""
10326
10327 # type: verbatim
10328 #. type: verbatim
10329 #: ../src/guestfs-actions.pod:1911
10330 #, no-wrap
10331 msgid ""
10332 " int\n"
10333 " guestfs_get_autosync (guestfs_h *g);\n"
10334 "\n"
10335 msgstr ""
10336
10337 # type: textblock
10338 #. type: textblock
10339 #: ../src/guestfs-actions.pod:1914 ../fish/guestfish-actions.pod:1303
10340 msgid "Get the autosync flag."
10341 msgstr ""
10342
10343 # type: =head2
10344 #. type: =head2
10345 #: ../src/guestfs-actions.pod:1920
10346 msgid "guestfs_get_direct"
10347 msgstr ""
10348
10349 # type: verbatim
10350 #. type: verbatim
10351 #: ../src/guestfs-actions.pod:1922
10352 #, no-wrap
10353 msgid ""
10354 " int\n"
10355 " guestfs_get_direct (guestfs_h *g);\n"
10356 "\n"
10357 msgstr ""
10358
10359 # type: textblock
10360 #. type: textblock
10361 #: ../src/guestfs-actions.pod:1925 ../fish/guestfish-actions.pod:1309
10362 msgid "Return the direct appliance mode flag."
10363 msgstr ""
10364
10365 # type: textblock
10366 #. type: textblock
10367 #: ../src/guestfs-actions.pod:1929 ../src/guestfs-actions.pod:5888
10368 msgid "(Added in 1.0.72)"
10369 msgstr ""
10370
10371 # type: =head2
10372 #. type: =head2
10373 #: ../src/guestfs-actions.pod:1931
10374 msgid "guestfs_get_e2label"
10375 msgstr ""
10376
10377 # type: verbatim
10378 #. type: verbatim
10379 #: ../src/guestfs-actions.pod:1933
10380 #, no-wrap
10381 msgid ""
10382 " char *\n"
10383 " guestfs_get_e2label (guestfs_h *g,\n"
10384 "                      const char *device);\n"
10385 "\n"
10386 msgstr ""
10387
10388 # type: textblock
10389 #. type: textblock
10390 #: ../src/guestfs-actions.pod:1937 ../fish/guestfish-actions.pod:1315
10391 msgid ""
10392 "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
10393 msgstr ""
10394
10395 #. type: textblock
10396 #: ../src/guestfs-actions.pod:1943
10397 msgid ""
10398 "This function is deprecated.  In new code, use the L</guestfs_vfs_label> "
10399 "call instead."
10400 msgstr ""
10401
10402 # type: textblock
10403 #. type: textblock
10404 #: ../src/guestfs-actions.pod:1950 ../src/guestfs-actions.pod:1971
10405 #: ../src/guestfs-actions.pod:5906 ../src/guestfs-actions.pod:5925
10406 msgid "(Added in 1.0.15)"
10407 msgstr ""
10408
10409 # type: =head2
10410 #. type: =head2
10411 #: ../src/guestfs-actions.pod:1952
10412 msgid "guestfs_get_e2uuid"
10413 msgstr ""
10414
10415 # type: verbatim
10416 #. type: verbatim
10417 #: ../src/guestfs-actions.pod:1954
10418 #, no-wrap
10419 msgid ""
10420 " char *\n"
10421 " guestfs_get_e2uuid (guestfs_h *g,\n"
10422 "                     const char *device);\n"
10423 "\n"
10424 msgstr ""
10425
10426 # type: textblock
10427 #. type: textblock
10428 #: ../src/guestfs-actions.pod:1958 ../fish/guestfish-actions.pod:1329
10429 msgid ""
10430 "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
10431 msgstr ""
10432
10433 #. type: textblock
10434 #: ../src/guestfs-actions.pod:1964
10435 msgid ""
10436 "This function is deprecated.  In new code, use the L</guestfs_vfs_uuid> call "
10437 "instead."
10438 msgstr ""
10439
10440 # type: =head2
10441 #. type: =head2
10442 #: ../src/guestfs-actions.pod:1973
10443 msgid "guestfs_get_memsize"
10444 msgstr ""
10445
10446 # type: verbatim
10447 #. type: verbatim
10448 #: ../src/guestfs-actions.pod:1975
10449 #, no-wrap
10450 msgid ""
10451 " int\n"
10452 " guestfs_get_memsize (guestfs_h *g);\n"
10453 "\n"
10454 msgstr ""
10455
10456 # type: textblock
10457 #. type: textblock
10458 #: ../src/guestfs-actions.pod:1978 ../fish/guestfish-actions.pod:1343
10459 msgid ""
10460 "This gets the memory size in megabytes allocated to the qemu subprocess."
10461 msgstr ""
10462
10463 # type: textblock
10464 #. type: textblock
10465 #: ../src/guestfs-actions.pod:1981
10466 msgid ""
10467 "If C<guestfs_set_memsize> was not called on this handle, and if "
10468 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
10469 "value for memsize."
10470 msgstr ""
10471
10472 # type: textblock
10473 #. type: textblock
10474 #: ../src/guestfs-actions.pod:1985 ../src/guestfs-actions.pod:2066
10475 #: ../src/guestfs-actions.pod:5941 ../src/guestfs-actions.pod:6048
10476 #: ../fish/guestfish-actions.pod:1350 ../fish/guestfish-actions.pod:1401
10477 #: ../fish/guestfish-actions.pod:4011 ../fish/guestfish-actions.pod:4098
10478 msgid ""
10479 "For more information on the architecture of libguestfs, see L<guestfs(3)>."
10480 msgstr ""
10481
10482 # type: textblock
10483 #. type: textblock
10484 #: ../src/guestfs-actions.pod:1990 ../src/guestfs-actions.pod:4393
10485 #: ../src/guestfs-actions.pod:4590 ../src/guestfs-actions.pod:4609
10486 #: ../src/guestfs-actions.pod:4628 ../src/guestfs-actions.pod:4640
10487 #: ../src/guestfs-actions.pod:4657 ../src/guestfs-actions.pod:4670
10488 #: ../src/guestfs-actions.pod:5564 ../src/guestfs-actions.pod:5946
10489 #: ../src/guestfs-actions.pod:6207 ../src/guestfs-actions.pod:6822
10490 msgid "(Added in 1.0.55)"
10491 msgstr ""
10492
10493 # type: =head2
10494 #. type: =head2
10495 #: ../src/guestfs-actions.pod:1992
10496 msgid "guestfs_get_network"
10497 msgstr ""
10498
10499 # type: verbatim
10500 #. type: verbatim
10501 #: ../src/guestfs-actions.pod:1994
10502 #, no-wrap
10503 msgid ""
10504 " int\n"
10505 " guestfs_get_network (guestfs_h *g);\n"
10506 "\n"
10507 msgstr ""
10508
10509 # type: textblock
10510 #. type: textblock
10511 #: ../src/guestfs-actions.pod:1997 ../fish/guestfish-actions.pod:1357
10512 msgid "This returns the enable network flag."
10513 msgstr ""
10514
10515 # type: textblock
10516 #. type: textblock
10517 #: ../src/guestfs-actions.pod:2001 ../src/guestfs-actions.pod:5965
10518 msgid "(Added in 1.5.4)"
10519 msgstr ""
10520
10521 # type: =head2
10522 #. type: =head2
10523 #: ../src/guestfs-actions.pod:2003
10524 msgid "guestfs_get_path"
10525 msgstr ""
10526
10527 # type: verbatim
10528 #. type: verbatim
10529 #: ../src/guestfs-actions.pod:2005
10530 #, no-wrap
10531 msgid ""
10532 " const char *\n"
10533 " guestfs_get_path (guestfs_h *g);\n"
10534 "\n"
10535 msgstr ""
10536
10537 # type: textblock
10538 #. type: textblock
10539 #: ../src/guestfs-actions.pod:2008 ../fish/guestfish-actions.pod:1363
10540 msgid "Return the current search path."
10541 msgstr ""
10542
10543 # type: textblock
10544 #. type: textblock
10545 #: ../src/guestfs-actions.pod:2010 ../fish/guestfish-actions.pod:1365
10546 msgid ""
10547 "This is always non-NULL.  If it wasn't set already, then this will return "
10548 "the default path."
10549 msgstr ""
10550
10551 # type: textblock
10552 #. type: textblock
10553 #: ../src/guestfs-actions.pod:2013 ../src/guestfs-actions.pod:2042
10554 msgid ""
10555 "This function returns a string, or NULL on error.  The string is owned by "
10556 "the guest handle and must I<not> be freed."
10557 msgstr ""
10558
10559 # type: =head2
10560 #. type: =head2
10561 #: ../src/guestfs-actions.pod:2018
10562 msgid "guestfs_get_pid"
10563 msgstr ""
10564
10565 # type: verbatim
10566 #. type: verbatim
10567 #: ../src/guestfs-actions.pod:2020
10568 #, no-wrap
10569 msgid ""
10570 " int\n"
10571 " guestfs_get_pid (guestfs_h *g);\n"
10572 "\n"
10573 msgstr ""
10574
10575 # type: textblock
10576 #. type: textblock
10577 #: ../src/guestfs-actions.pod:2023 ../fish/guestfish-actions.pod:1374
10578 msgid ""
10579 "Return the process ID of the qemu subprocess.  If there is no qemu "
10580 "subprocess, then this will return an error."
10581 msgstr ""
10582
10583 # type: textblock
10584 #. type: textblock
10585 #: ../src/guestfs-actions.pod:2026 ../fish/guestfish-actions.pod:1377
10586 msgid "This is an internal call used for debugging and testing."
10587 msgstr ""
10588
10589 # type: textblock
10590 #. type: textblock
10591 #: ../src/guestfs-actions.pod:2030
10592 msgid "(Added in 1.0.56)"
10593 msgstr ""
10594
10595 # type: =head2
10596 #. type: =head2
10597 #: ../src/guestfs-actions.pod:2032
10598 msgid "guestfs_get_qemu"
10599 msgstr ""
10600
10601 # type: verbatim
10602 #. type: verbatim
10603 #: ../src/guestfs-actions.pod:2034
10604 #, no-wrap
10605 msgid ""
10606 " const char *\n"
10607 " guestfs_get_qemu (guestfs_h *g);\n"
10608 "\n"
10609 msgstr ""
10610
10611 # type: textblock
10612 #. type: textblock
10613 #: ../src/guestfs-actions.pod:2037 ../fish/guestfish-actions.pod:1383
10614 msgid "Return the current qemu binary."
10615 msgstr ""
10616
10617 # type: textblock
10618 #. type: textblock
10619 #: ../src/guestfs-actions.pod:2039 ../fish/guestfish-actions.pod:1385
10620 msgid ""
10621 "This is always non-NULL.  If it wasn't set already, then this will return "
10622 "the default qemu binary name."
10623 msgstr ""
10624
10625 # type: textblock
10626 #. type: textblock
10627 #: ../src/guestfs-actions.pod:2045 ../src/guestfs-actions.pod:6010
10628 msgid "(Added in 1.0.6)"
10629 msgstr ""
10630
10631 # type: =head2
10632 #. type: =head2
10633 #: ../src/guestfs-actions.pod:2047
10634 msgid "guestfs_get_recovery_proc"
10635 msgstr ""
10636
10637 # type: verbatim
10638 #. type: verbatim
10639 #: ../src/guestfs-actions.pod:2049
10640 #, no-wrap
10641 msgid ""
10642 " int\n"
10643 " guestfs_get_recovery_proc (guestfs_h *g);\n"
10644 "\n"
10645 msgstr ""
10646
10647 # type: textblock
10648 #. type: textblock
10649 #: ../src/guestfs-actions.pod:2052 ../fish/guestfish-actions.pod:1392
10650 msgid "Return the recovery process enabled flag."
10651 msgstr ""
10652
10653 # type: textblock
10654 #. type: textblock
10655 #: ../src/guestfs-actions.pod:2056 ../src/guestfs-actions.pod:3503
10656 #: ../src/guestfs-actions.pod:3800 ../src/guestfs-actions.pod:4200
10657 #: ../src/guestfs-actions.pod:4232 ../src/guestfs-actions.pod:5269
10658 #: ../src/guestfs-actions.pod:5612 ../src/guestfs-actions.pod:6034
10659 #: ../src/guestfs-actions.pod:6725 ../src/guestfs-actions.pod:6745
10660 #: ../src/guestfs-actions.pod:6937
10661 msgid "(Added in 1.0.77)"
10662 msgstr ""
10663
10664 # type: =head2
10665 #. type: =head2
10666 #: ../src/guestfs-actions.pod:2058
10667 msgid "guestfs_get_selinux"
10668 msgstr ""
10669
10670 # type: verbatim
10671 #. type: verbatim
10672 #: ../src/guestfs-actions.pod:2060
10673 #, no-wrap
10674 msgid ""
10675 " int\n"
10676 " guestfs_get_selinux (guestfs_h *g);\n"
10677 "\n"
10678 msgstr ""
10679
10680 # type: textblock
10681 #. type: textblock
10682 #: ../src/guestfs-actions.pod:2063
10683 msgid ""
10684 "This returns the current setting of the selinux flag which is passed to the "
10685 "appliance at boot time.  See C<guestfs_set_selinux>."
10686 msgstr ""
10687
10688 # type: textblock
10689 #. type: textblock
10690 #: ../src/guestfs-actions.pod:2071 ../src/guestfs-actions.pod:2134
10691 #: ../src/guestfs-actions.pod:6053 ../src/guestfs-actions.pod:6111
10692 msgid "(Added in 1.0.67)"
10693 msgstr ""
10694
10695 # type: =head2
10696 #. type: =head2
10697 #: ../src/guestfs-actions.pod:2073
10698 msgid "guestfs_get_state"
10699 msgstr ""
10700
10701 # type: verbatim
10702 #. type: verbatim
10703 #: ../src/guestfs-actions.pod:2075
10704 #, no-wrap
10705 msgid ""
10706 " int\n"
10707 " guestfs_get_state (guestfs_h *g);\n"
10708 "\n"
10709 msgstr ""
10710
10711 # type: textblock
10712 #. type: textblock
10713 #: ../src/guestfs-actions.pod:2078 ../fish/guestfish-actions.pod:1408
10714 msgid ""
10715 "This returns the current state as an opaque integer.  This is only useful "
10716 "for printing debug and internal error messages."
10717 msgstr ""
10718
10719 # type: textblock
10720 #. type: textblock
10721 #: ../src/guestfs-actions.pod:2081 ../src/guestfs-actions.pod:3301
10722 #: ../src/guestfs-actions.pod:3330 ../src/guestfs-actions.pod:3391
10723 #: ../src/guestfs-actions.pod:3418 ../fish/guestfish-actions.pod:1411
10724 #: ../fish/guestfish-actions.pod:2325 ../fish/guestfish-actions.pod:2343
10725 #: ../fish/guestfish-actions.pod:2381 ../fish/guestfish-actions.pod:2397
10726 msgid "For more information on states, see L<guestfs(3)>."
10727 msgstr ""
10728
10729 # type: =head2
10730 #. type: =head2
10731 #: ../src/guestfs-actions.pod:2087
10732 msgid "guestfs_get_trace"
10733 msgstr ""
10734
10735 # type: verbatim
10736 #. type: verbatim
10737 #: ../src/guestfs-actions.pod:2089
10738 #, no-wrap
10739 msgid ""
10740 " int\n"
10741 " guestfs_get_trace (guestfs_h *g);\n"
10742 "\n"
10743 msgstr ""
10744
10745 # type: textblock
10746 #. type: textblock
10747 #: ../src/guestfs-actions.pod:2092 ../fish/guestfish-actions.pod:1417
10748 msgid "Return the command trace flag."
10749 msgstr ""
10750
10751 # type: =head2
10752 #. type: =head2
10753 #: ../src/guestfs-actions.pod:2098
10754 msgid "guestfs_get_umask"
10755 msgstr ""
10756
10757 # type: verbatim
10758 #. type: verbatim
10759 #: ../src/guestfs-actions.pod:2100
10760 #, no-wrap
10761 msgid ""
10762 " int\n"
10763 " guestfs_get_umask (guestfs_h *g);\n"
10764 "\n"
10765 msgstr ""
10766
10767 # type: textblock
10768 #. type: textblock
10769 #: ../src/guestfs-actions.pod:2103
10770 msgid ""
10771 "Return the current umask.  By default the umask is C<022> unless it has been "
10772 "set by calling C<guestfs_umask>."
10773 msgstr ""
10774
10775 # type: =head2
10776 #. type: =head2
10777 #: ../src/guestfs-actions.pod:2110
10778 msgid "guestfs_get_verbose"
10779 msgstr ""
10780
10781 # type: verbatim
10782 #. type: verbatim
10783 #: ../src/guestfs-actions.pod:2112
10784 #, no-wrap
10785 msgid ""
10786 " int\n"
10787 " guestfs_get_verbose (guestfs_h *g);\n"
10788 "\n"
10789 msgstr ""
10790
10791 # type: textblock
10792 #. type: textblock
10793 #: ../src/guestfs-actions.pod:2115 ../fish/guestfish-actions.pod:1430
10794 msgid "This returns the verbose messages flag."
10795 msgstr ""
10796
10797 # type: =head2
10798 #. type: =head2
10799 #: ../src/guestfs-actions.pod:2121
10800 msgid "guestfs_getcon"
10801 msgstr ""
10802
10803 # type: verbatim
10804 #. type: verbatim
10805 #: ../src/guestfs-actions.pod:2123
10806 #, no-wrap
10807 msgid ""
10808 " char *\n"
10809 " guestfs_getcon (guestfs_h *g);\n"
10810 "\n"
10811 msgstr ""
10812
10813 # type: textblock
10814 #. type: textblock
10815 #: ../src/guestfs-actions.pod:2126 ../fish/guestfish-actions.pod:1436
10816 msgid "This gets the SELinux security context of the daemon."
10817 msgstr ""
10818
10819 # type: textblock
10820 #. type: textblock
10821 #: ../src/guestfs-actions.pod:2128
10822 msgid ""
10823 "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
10824 msgstr ""
10825
10826 # type: =head2
10827 #. type: =head2
10828 #: ../src/guestfs-actions.pod:2136
10829 msgid "guestfs_getxattr"
10830 msgstr ""
10831
10832 # type: verbatim
10833 #. type: verbatim
10834 #: ../src/guestfs-actions.pod:2138
10835 #, no-wrap
10836 msgid ""
10837 " char *\n"
10838 " guestfs_getxattr (guestfs_h *g,\n"
10839 "                   const char *path,\n"
10840 "                   const char *name,\n"
10841 "                   size_t *size_r);\n"
10842 "\n"
10843 msgstr ""
10844
10845 # type: textblock
10846 #. type: textblock
10847 #: ../src/guestfs-actions.pod:2144
10848 msgid ""
10849 "Get a single extended attribute from file C<path> named C<name>.  This call "
10850 "follows symlinks.  If you want to lookup an extended attribute for the "
10851 "symlink itself, use C<guestfs_lgetxattr>."
10852 msgstr ""
10853
10854 # type: textblock
10855 #. type: textblock
10856 #: ../src/guestfs-actions.pod:2148 ../src/guestfs-actions.pod:3517
10857 msgid ""
10858 "Normally it is better to get all extended attributes from a file in one go "
10859 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
10860 "implementations are buggy and do not provide a way to list out attributes.  "
10861 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
10862 "extended attributes you want in advance and call this function."
10863 msgstr ""
10864
10865 # type: textblock
10866 #. type: textblock
10867 #: ../src/guestfs-actions.pod:2155 ../src/guestfs-actions.pod:3524
10868 #: ../fish/guestfish-actions.pod:1456 ../fish/guestfish-actions.pod:2462
10869 msgid ""
10870 "Extended attribute values are blobs of binary data.  If there is no extended "
10871 "attribute named C<name>, this returns an error."
10872 msgstr ""
10873
10874 # type: textblock
10875 #. type: textblock
10876 #: ../src/guestfs-actions.pod:2158
10877 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
10878 msgstr ""
10879
10880 # type: textblock
10881 #. type: textblock
10882 #: ../src/guestfs-actions.pod:2160 ../src/guestfs-actions.pod:2351
10883 #: ../src/guestfs-actions.pod:3529 ../src/guestfs-actions.pod:5262
10884 #: ../src/guestfs-actions.pod:5288 ../src/guestfs-actions.pod:5469
10885 msgid ""
10886 "This function returns a buffer, or NULL on error.  The size of the returned "
10887 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
10888 "after use>."
10889 msgstr ""
10890
10891 #. type: textblock
10892 #: ../src/guestfs-actions.pod:2164 ../src/guestfs-actions.pod:3533
10893 msgid "(Added in 1.7.24)"
10894 msgstr ""
10895
10896 # type: =head2
10897 #. type: =head2
10898 #: ../src/guestfs-actions.pod:2166
10899 msgid "guestfs_getxattrs"
10900 msgstr ""
10901
10902 # type: verbatim
10903 #. type: verbatim
10904 #: ../src/guestfs-actions.pod:2168
10905 #, no-wrap
10906 msgid ""
10907 " struct guestfs_xattr_list *\n"
10908 " guestfs_getxattrs (guestfs_h *g,\n"
10909 "                    const char *path);\n"
10910 "\n"
10911 msgstr ""
10912
10913 # type: textblock
10914 #. type: textblock
10915 #: ../src/guestfs-actions.pod:2172 ../fish/guestfish-actions.pod:1465
10916 msgid ""
10917 "This call lists the extended attributes of the file or directory C<path>."
10918 msgstr ""
10919
10920 # type: textblock
10921 #. type: textblock
10922 #: ../src/guestfs-actions.pod:2175 ../fish/guestfish-actions.pod:1468
10923 msgid ""
10924 "At the system call level, this is a combination of the L<listxattr(2)> and "
10925 "L<getxattr(2)> calls."
10926 msgstr ""
10927
10928 # type: textblock
10929 #. type: textblock
10930 #: ../src/guestfs-actions.pod:2178
10931 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
10932 msgstr ""
10933
10934 # type: textblock
10935 #. type: textblock
10936 #: ../src/guestfs-actions.pod:2180 ../src/guestfs-actions.pod:3545
10937 #: ../src/guestfs-actions.pod:4196
10938 msgid ""
10939 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
10940 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
10941 msgstr ""
10942
10943 # type: textblock
10944 #. type: textblock
10945 #: ../src/guestfs-actions.pod:2184 ../src/guestfs-actions.pod:3549
10946 #: ../src/guestfs-actions.pod:3714 ../src/guestfs-actions.pod:3750
10947 #: ../src/guestfs-actions.pod:5642 ../src/guestfs-actions.pod:6130
10948 #: ../src/guestfs-actions.pod:7500
10949 msgid "(Added in 1.0.59)"
10950 msgstr ""
10951
10952 # type: =head2
10953 #. type: =head2
10954 #: ../src/guestfs-actions.pod:2186
10955 msgid "guestfs_glob_expand"
10956 msgstr ""
10957
10958 # type: verbatim
10959 #. type: verbatim
10960 #: ../src/guestfs-actions.pod:2188
10961 #, no-wrap
10962 msgid ""
10963 " char **\n"
10964 " guestfs_glob_expand (guestfs_h *g,\n"
10965 "                      const char *pattern);\n"
10966 "\n"
10967 msgstr ""
10968
10969 # type: textblock
10970 #. type: textblock
10971 #: ../src/guestfs-actions.pod:2192 ../fish/guestfish-actions.pod:1477
10972 msgid ""
10973 "This command searches for all the pathnames matching C<pattern> according to "
10974 "the wildcard expansion rules used by the shell."
10975 msgstr ""
10976
10977 # type: textblock
10978 #. type: textblock
10979 #: ../src/guestfs-actions.pod:2196 ../fish/guestfish-actions.pod:1481
10980 msgid ""
10981 "If no paths match, then this returns an empty list (note: not an error)."
10982 msgstr ""
10983
10984 # type: textblock
10985 #. type: textblock
10986 #: ../src/guestfs-actions.pod:2199 ../fish/guestfish-actions.pod:1484
10987 msgid ""
10988 "It is just a wrapper around the C L<glob(3)> function with flags C<GLOB_MARK|"
10989 "GLOB_BRACE>.  See that manual page for more details."
10990 msgstr ""
10991
10992 # type: textblock
10993 #. type: textblock
10994 #: ../src/guestfs-actions.pod:2207 ../src/guestfs-actions.pod:6323
10995 #: ../src/guestfs-actions.pod:6340
10996 msgid "(Added in 1.0.50)"
10997 msgstr ""
10998
10999 # type: =head2
11000 #. type: =head2
11001 #: ../src/guestfs-actions.pod:2209
11002 msgid "guestfs_grep"
11003 msgstr ""
11004
11005 # type: verbatim
11006 #. type: verbatim
11007 #: ../src/guestfs-actions.pod:2211
11008 #, no-wrap
11009 msgid ""
11010 " char **\n"
11011 " guestfs_grep (guestfs_h *g,\n"
11012 "               const char *regex,\n"
11013 "               const char *path);\n"
11014 "\n"
11015 msgstr ""
11016
11017 # type: textblock
11018 #. type: textblock
11019 #: ../src/guestfs-actions.pod:2216 ../fish/guestfish-actions.pod:1492
11020 msgid "This calls the external C<grep> program and returns the matching lines."
11021 msgstr ""
11022
11023 # type: =head2
11024 #. type: =head2
11025 #: ../src/guestfs-actions.pod:2228
11026 msgid "guestfs_grepi"
11027 msgstr ""
11028
11029 # type: verbatim
11030 #. type: verbatim
11031 #: ../src/guestfs-actions.pod:2230
11032 #, no-wrap
11033 msgid ""
11034 " char **\n"
11035 " guestfs_grepi (guestfs_h *g,\n"
11036 "                const char *regex,\n"
11037 "                const char *path);\n"
11038 "\n"
11039 msgstr ""
11040
11041 # type: textblock
11042 #. type: textblock
11043 #: ../src/guestfs-actions.pod:2235 ../fish/guestfish-actions.pod:1502
11044 msgid ""
11045 "This calls the external C<grep -i> program and returns the matching lines."
11046 msgstr ""
11047
11048 # type: =head2
11049 #. type: =head2
11050 #: ../src/guestfs-actions.pod:2247
11051 msgid "guestfs_grub_install"
11052 msgstr ""
11053
11054 # type: verbatim
11055 #. type: verbatim
11056 #: ../src/guestfs-actions.pod:2249
11057 #, no-wrap
11058 msgid ""
11059 " int\n"
11060 " guestfs_grub_install (guestfs_h *g,\n"
11061 "                       const char *root,\n"
11062 "                       const char *device);\n"
11063 "\n"
11064 msgstr ""
11065
11066 # type: textblock
11067 #. type: textblock
11068 #: ../src/guestfs-actions.pod:2254 ../fish/guestfish-actions.pod:1512
11069 msgid ""
11070 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
11071 "the root directory being C<root>."
11072 msgstr ""
11073
11074 # type: textblock
11075 #. type: textblock
11076 #: ../src/guestfs-actions.pod:2257 ../fish/guestfish-actions.pod:1515
11077 msgid ""
11078 "Note: If grub-install reports the error \"No suitable drive was found in the "
11079 "generated device map.\" it may be that you need to create a C</boot/grub/"
11080 "device.map> file first that contains the mapping between grub device names "
11081 "and Linux device names.  It is usually sufficient to create a file "
11082 "containing:"
11083 msgstr ""
11084
11085 # type: verbatim
11086 #. type: verbatim
11087 #: ../src/guestfs-actions.pod:2264 ../fish/guestfish-actions.pod:1522
11088 #, no-wrap
11089 msgid ""
11090 " (hd0) /dev/vda\n"
11091 "\n"
11092 msgstr ""
11093
11094 # type: textblock
11095 #. type: textblock
11096 #: ../src/guestfs-actions.pod:2266 ../fish/guestfish-actions.pod:1524
11097 msgid "replacing C</dev/vda> with the name of the installation device."
11098 msgstr ""
11099
11100 # type: textblock
11101 #. type: textblock
11102 #: ../src/guestfs-actions.pod:2270
11103 msgid "(Added in 1.0.17)"
11104 msgstr ""
11105
11106 # type: =head2
11107 #. type: =head2
11108 #: ../src/guestfs-actions.pod:2272
11109 msgid "guestfs_head"
11110 msgstr ""
11111
11112 # type: verbatim
11113 #. type: verbatim
11114 #: ../src/guestfs-actions.pod:2274
11115 #, no-wrap
11116 msgid ""
11117 " char **\n"
11118 " guestfs_head (guestfs_h *g,\n"
11119 "               const char *path);\n"
11120 "\n"
11121 msgstr ""
11122
11123 # type: textblock
11124 #. type: textblock
11125 #: ../src/guestfs-actions.pod:2278 ../fish/guestfish-actions.pod:1530
11126 msgid ""
11127 "This command returns up to the first 10 lines of a file as a list of strings."
11128 msgstr ""
11129
11130 # type: =head2
11131 #. type: =head2
11132 #: ../src/guestfs-actions.pod:2290
11133 msgid "guestfs_head_n"
11134 msgstr ""
11135
11136 # type: verbatim
11137 #. type: verbatim
11138 #: ../src/guestfs-actions.pod:2292
11139 #, no-wrap
11140 msgid ""
11141 " char **\n"
11142 " guestfs_head_n (guestfs_h *g,\n"
11143 "                 int nrlines,\n"
11144 "                 const char *path);\n"
11145 "\n"
11146 msgstr ""
11147
11148 # type: textblock
11149 #. type: textblock
11150 #: ../src/guestfs-actions.pod:2297 ../fish/guestfish-actions.pod:1540
11151 msgid ""
11152 "If the parameter C<nrlines> is a positive number, this returns the first "
11153 "C<nrlines> lines of the file C<path>."
11154 msgstr ""
11155
11156 # type: textblock
11157 #. type: textblock
11158 #: ../src/guestfs-actions.pod:2300 ../fish/guestfish-actions.pod:1543
11159 msgid ""
11160 "If the parameter C<nrlines> is a negative number, this returns lines from "
11161 "the file C<path>, excluding the last C<nrlines> lines."
11162 msgstr ""
11163
11164 # type: textblock
11165 #. type: textblock
11166 #: ../src/guestfs-actions.pod:2303 ../src/guestfs-actions.pod:6620
11167 #: ../fish/guestfish-actions.pod:1546 ../fish/guestfish-actions.pod:4476
11168 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
11169 msgstr ""
11170
11171 # type: =head2
11172 #. type: =head2
11173 #: ../src/guestfs-actions.pod:2314
11174 msgid "guestfs_hexdump"
11175 msgstr ""
11176
11177 # type: verbatim
11178 #. type: verbatim
11179 #: ../src/guestfs-actions.pod:2316
11180 #, no-wrap
11181 msgid ""
11182 " char *\n"
11183 " guestfs_hexdump (guestfs_h *g,\n"
11184 "                  const char *path);\n"
11185 "\n"
11186 msgstr ""
11187
11188 # type: textblock
11189 #. type: textblock
11190 #: ../src/guestfs-actions.pod:2320 ../fish/guestfish-actions.pod:1555
11191 msgid ""
11192 "This runs C<hexdump -C> on the given C<path>.  The result is the human-"
11193 "readable, canonical hex dump of the file."
11194 msgstr ""
11195
11196 # type: textblock
11197 #. type: textblock
11198 #: ../src/guestfs-actions.pod:2329 ../src/guestfs-actions.pod:6404
11199 #: ../src/guestfs-actions.pod:6459
11200 msgid "(Added in 1.0.22)"
11201 msgstr ""
11202
11203 # type: =head2
11204 #. type: =head2
11205 #: ../src/guestfs-actions.pod:2331
11206 msgid "guestfs_initrd_cat"
11207 msgstr ""
11208
11209 # type: verbatim
11210 #. type: verbatim
11211 #: ../src/guestfs-actions.pod:2333
11212 #, no-wrap
11213 msgid ""
11214 " char *\n"
11215 " guestfs_initrd_cat (guestfs_h *g,\n"
11216 "                     const char *initrdpath,\n"
11217 "                     const char *filename,\n"
11218 "                     size_t *size_r);\n"
11219 "\n"
11220 msgstr ""
11221
11222 # type: textblock
11223 #. type: textblock
11224 #: ../src/guestfs-actions.pod:2339 ../fish/guestfish-actions.pod:1565
11225 msgid ""
11226 "This command unpacks the file C<filename> from the initrd file called "
11227 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
11228 "character."
11229 msgstr ""
11230
11231 # type: textblock
11232 #. type: textblock
11233 #: ../src/guestfs-actions.pod:2343 ../fish/guestfish-actions.pod:1569
11234 msgid ""
11235 "For example, in guestfish you could use the following command to examine the "
11236 "boot script (usually called C</init>)  contained in a Linux initrd or "
11237 "initramfs image:"
11238 msgstr ""
11239
11240 # type: verbatim
11241 #. type: verbatim
11242 #: ../src/guestfs-actions.pod:2347 ../fish/guestfish-actions.pod:1573
11243 #, no-wrap
11244 msgid ""
11245 " initrd-cat /boot/initrd-<version>.img init\n"
11246 "\n"
11247 msgstr ""
11248
11249 # type: textblock
11250 #. type: textblock
11251 #: ../src/guestfs-actions.pod:2349
11252 msgid "See also C<guestfs_initrd_list>."
11253 msgstr ""
11254
11255 # type: =head2
11256 #. type: =head2
11257 #: ../src/guestfs-actions.pod:2360
11258 msgid "guestfs_initrd_list"
11259 msgstr ""
11260
11261 # type: verbatim
11262 #. type: verbatim
11263 #: ../src/guestfs-actions.pod:2362
11264 #, no-wrap
11265 msgid ""
11266 " char **\n"
11267 " guestfs_initrd_list (guestfs_h *g,\n"
11268 "                      const char *path);\n"
11269 "\n"
11270 msgstr ""
11271
11272 # type: textblock
11273 #. type: textblock
11274 #: ../src/guestfs-actions.pod:2366 ../fish/guestfish-actions.pod:1584
11275 msgid "This command lists out files contained in an initrd."
11276 msgstr ""
11277
11278 # type: textblock
11279 #. type: textblock
11280 #: ../src/guestfs-actions.pod:2368 ../fish/guestfish-actions.pod:1586
11281 msgid ""
11282 "The files are listed without any initial C</> character.  The files are "
11283 "listed in the order they appear (not necessarily alphabetical).  Directory "
11284 "names are listed as separate items."
11285 msgstr ""
11286
11287 # type: textblock
11288 #. type: textblock
11289 #: ../src/guestfs-actions.pod:2372 ../fish/guestfish-actions.pod:1590
11290 msgid ""
11291 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
11292 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
11293 "files)."
11294 msgstr ""
11295
11296 # type: =head2
11297 #. type: =head2
11298 #: ../src/guestfs-actions.pod:2382
11299 msgid "guestfs_inotify_add_watch"
11300 msgstr ""
11301
11302 # type: verbatim
11303 #. type: verbatim
11304 #: ../src/guestfs-actions.pod:2384
11305 #, no-wrap
11306 msgid ""
11307 " int64_t\n"
11308 " guestfs_inotify_add_watch (guestfs_h *g,\n"
11309 "                            const char *path,\n"
11310 "                            int mask);\n"
11311 "\n"
11312 msgstr ""
11313
11314 # type: textblock
11315 #. type: textblock
11316 #: ../src/guestfs-actions.pod:2389 ../fish/guestfish-actions.pod:1598
11317 msgid "Watch C<path> for the events listed in C<mask>."
11318 msgstr ""
11319
11320 # type: textblock
11321 #. type: textblock
11322 #: ../src/guestfs-actions.pod:2391 ../fish/guestfish-actions.pod:1600
11323 msgid ""
11324 "Note that if C<path> is a directory then events within that directory are "
11325 "watched, but this does I<not> happen recursively (in subdirectories)."
11326 msgstr ""
11327
11328 # type: textblock
11329 #. type: textblock
11330 #: ../src/guestfs-actions.pod:2395 ../fish/guestfish-actions.pod:1604
11331 msgid ""
11332 "Note for non-C or non-Linux callers: the inotify events are defined by the "
11333 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
11334 msgstr ""
11335
11336 # type: =head2
11337 #. type: =head2
11338 #: ../src/guestfs-actions.pod:2403
11339 msgid "guestfs_inotify_close"
11340 msgstr ""
11341
11342 # type: verbatim
11343 #. type: verbatim
11344 #: ../src/guestfs-actions.pod:2405
11345 #, no-wrap
11346 msgid ""
11347 " int\n"
11348 " guestfs_inotify_close (guestfs_h *g);\n"
11349 "\n"
11350 msgstr ""
11351
11352 # type: textblock
11353 #. type: textblock
11354 #: ../src/guestfs-actions.pod:2408 ../fish/guestfish-actions.pod:1612
11355 msgid ""
11356 "This closes the inotify handle which was previously opened by inotify_init.  "
11357 "It removes all watches, throws away any pending events, and deallocates all "
11358 "resources."
11359 msgstr ""
11360
11361 # type: =head2
11362 #. type: =head2
11363 #: ../src/guestfs-actions.pod:2416
11364 msgid "guestfs_inotify_files"
11365 msgstr ""
11366
11367 # type: verbatim
11368 #. type: verbatim
11369 #: ../src/guestfs-actions.pod:2418
11370 #, no-wrap
11371 msgid ""
11372 " char **\n"
11373 " guestfs_inotify_files (guestfs_h *g);\n"
11374 "\n"
11375 msgstr ""
11376
11377 # type: textblock
11378 #. type: textblock
11379 #: ../src/guestfs-actions.pod:2421
11380 msgid ""
11381 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
11382 "returns a list of pathnames of objects that were touched.  The returned "
11383 "pathnames are sorted and deduplicated."
11384 msgstr ""
11385
11386 # type: =head2
11387 #. type: =head2
11388 #: ../src/guestfs-actions.pod:2431
11389 msgid "guestfs_inotify_init"
11390 msgstr ""
11391
11392 # type: verbatim
11393 #. type: verbatim
11394 #: ../src/guestfs-actions.pod:2433
11395 #, no-wrap
11396 msgid ""
11397 " int\n"
11398 " guestfs_inotify_init (guestfs_h *g,\n"
11399 "                       int maxevents);\n"
11400 "\n"
11401 msgstr ""
11402
11403 # type: textblock
11404 #. type: textblock
11405 #: ../src/guestfs-actions.pod:2437 ../fish/guestfish-actions.pod:1628
11406 msgid ""
11407 "This command creates a new inotify handle.  The inotify subsystem can be "
11408 "used to notify events which happen to objects in the guest filesystem."
11409 msgstr ""
11410
11411 # type: textblock
11412 #. type: textblock
11413 #: ../src/guestfs-actions.pod:2441
11414 msgid ""
11415 "C<maxevents> is the maximum number of events which will be queued up between "
11416 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
11417 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
11418 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
11419 "throws away events, but records the fact that it threw them away by setting "
11420 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
11421 "C<guestfs_inotify_read>)."
11422 msgstr ""
11423
11424 # type: textblock
11425 #. type: textblock
11426 #: ../src/guestfs-actions.pod:2451
11427 msgid ""
11428 "Before any events are generated, you have to add some watches to the "
11429 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
11430 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
11431 msgstr ""
11432
11433 # type: textblock
11434 #. type: textblock
11435 #: ../src/guestfs-actions.pod:2457
11436 msgid ""
11437 "Queued up events should be read periodically by calling "
11438 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
11439 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
11440 "often enough then you risk the internal queue overflowing."
11441 msgstr ""
11442
11443 # type: textblock
11444 #. type: textblock
11445 #: ../src/guestfs-actions.pod:2464
11446 msgid ""
11447 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
11448 "This also removes any watches automatically."
11449 msgstr ""
11450
11451 # type: textblock
11452 #. type: textblock
11453 #: ../src/guestfs-actions.pod:2468 ../fish/guestfish-actions.pod:1659
11454 msgid ""
11455 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
11456 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
11457 "that there is one global inotify handle per libguestfs instance."
11458 msgstr ""
11459
11460 # type: =head2
11461 #. type: =head2
11462 #: ../src/guestfs-actions.pod:2477
11463 msgid "guestfs_inotify_read"
11464 msgstr ""
11465
11466 # type: verbatim
11467 #. type: verbatim
11468 #: ../src/guestfs-actions.pod:2479
11469 #, no-wrap
11470 msgid ""
11471 " struct guestfs_inotify_event_list *\n"
11472 " guestfs_inotify_read (guestfs_h *g);\n"
11473 "\n"
11474 msgstr ""
11475
11476 # type: textblock
11477 #. type: textblock
11478 #: ../src/guestfs-actions.pod:2482 ../fish/guestfish-actions.pod:1668
11479 msgid ""
11480 "Return the complete queue of events that have happened since the previous "
11481 "read call."
11482 msgstr ""
11483
11484 # type: textblock
11485 #. type: textblock
11486 #: ../src/guestfs-actions.pod:2485 ../fish/guestfish-actions.pod:1671
11487 msgid "If no events have happened, this returns an empty list."
11488 msgstr ""
11489
11490 # type: textblock
11491 #. type: textblock
11492 #: ../src/guestfs-actions.pod:2487 ../fish/guestfish-actions.pod:1673
11493 msgid ""
11494 "I<Note>: In order to make sure that all events have been read, you must call "
11495 "this function repeatedly until it returns an empty list.  The reason is that "
11496 "the call will read events up to the maximum appliance-to-host message size "
11497 "and leave remaining events in the queue."
11498 msgstr ""
11499
11500 # type: textblock
11501 #. type: textblock
11502 #: ../src/guestfs-actions.pod:2493
11503 msgid ""
11504 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
11505 "there was an error.  I<The caller must call "
11506 "C<guestfs_free_inotify_event_list> after use>."
11507 msgstr ""
11508
11509 # type: =head2
11510 #. type: =head2
11511 #: ../src/guestfs-actions.pod:2499
11512 msgid "guestfs_inotify_rm_watch"
11513 msgstr ""
11514
11515 # type: verbatim
11516 #. type: verbatim
11517 #: ../src/guestfs-actions.pod:2501
11518 #, no-wrap
11519 msgid ""
11520 " int\n"
11521 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
11522 "                           int wd);\n"
11523 "\n"
11524 msgstr ""
11525
11526 # type: textblock
11527 #. type: textblock
11528 #: ../src/guestfs-actions.pod:2505
11529 msgid ""
11530 "Remove a previously defined inotify watch.  See C<guestfs_inotify_add_watch>."
11531 msgstr ""
11532
11533 # type: =head2
11534 #. type: =head2
11535 #: ../src/guestfs-actions.pod:2512
11536 msgid "guestfs_inspect_get_arch"
11537 msgstr ""
11538
11539 # type: verbatim
11540 #. type: verbatim
11541 #: ../src/guestfs-actions.pod:2514
11542 #, no-wrap
11543 msgid ""
11544 " char *\n"
11545 " guestfs_inspect_get_arch (guestfs_h *g,\n"
11546 "                           const char *root);\n"
11547 "\n"
11548 msgstr ""
11549
11550 # type: textblock
11551 #. type: textblock
11552 #: ../src/guestfs-actions.pod:2518 ../src/guestfs-actions.pod:2541
11553 #: ../src/guestfs-actions.pod:2634 ../src/guestfs-actions.pod:2678
11554 #: ../src/guestfs-actions.pod:2704 ../src/guestfs-actions.pod:2743
11555 #: ../src/guestfs-actions.pod:2765 ../src/guestfs-actions.pod:2792
11556 #: ../src/guestfs-actions.pod:2813 ../src/guestfs-actions.pod:2856
11557 #: ../src/guestfs-actions.pod:2885 ../src/guestfs-actions.pod:2916
11558 #: ../src/guestfs-actions.pod:2940 ../src/guestfs-actions.pod:2995
11559 #: ../src/guestfs-actions.pod:3037 ../src/guestfs-actions.pod:3058
11560 #: ../src/guestfs-actions.pod:3081 ../src/guestfs-actions.pod:3098
11561 #: ../src/guestfs-actions.pod:3115 ../src/guestfs-actions.pod:3134
11562 msgid ""
11563 "This function should only be called with a root device string as returned by "
11564 "C<guestfs_inspect_os>."
11565 msgstr ""
11566
11567 # type: textblock
11568 #. type: textblock
11569 #: ../src/guestfs-actions.pod:2521
11570 msgid ""
11571 "This returns the architecture of the inspected operating system.  The "
11572 "possible return values are listed under C<guestfs_file_architecture>."
11573 msgstr ""
11574
11575 # type: textblock
11576 #. type: textblock
11577 #: ../src/guestfs-actions.pod:2525 ../fish/guestfish-actions.pod:1697
11578 msgid ""
11579 "If the architecture could not be determined, then the string C<unknown> is "
11580 "returned."
11581 msgstr ""
11582
11583 # type: textblock
11584 #. type: textblock
11585 #: ../src/guestfs-actions.pod:2528 ../src/guestfs-actions.pod:2621
11586 #: ../src/guestfs-actions.pod:2732 ../src/guestfs-actions.pod:2752
11587 #: ../src/guestfs-actions.pod:2780 ../src/guestfs-actions.pod:2872
11588 #: ../src/guestfs-actions.pod:2903 ../src/guestfs-actions.pod:2927
11589 #: ../src/guestfs-actions.pod:2981 ../src/guestfs-actions.pod:3024
11590 #: ../src/guestfs-actions.pod:3047 ../src/guestfs-actions.pod:3068
11591 #: ../src/guestfs-actions.pod:3088 ../src/guestfs-actions.pod:3105
11592 #: ../src/guestfs-actions.pod:3124 ../src/guestfs-actions.pod:3227
11593 #: ../src/guestfs-actions.pod:3268 ../fish/guestfish-actions.pod:1700
11594 #: ../fish/guestfish-actions.pod:1786 ../fish/guestfish-actions.pod:1874
11595 #: ../fish/guestfish-actions.pod:1889 ../fish/guestfish-actions.pod:1910
11596 #: ../fish/guestfish-actions.pod:1980 ../fish/guestfish-actions.pod:2004
11597 #: ../fish/guestfish-actions.pod:2021 ../fish/guestfish-actions.pod:2064
11598 #: ../fish/guestfish-actions.pod:2099 ../fish/guestfish-actions.pod:2115
11599 #: ../fish/guestfish-actions.pod:2131 ../fish/guestfish-actions.pod:2144
11600 #: ../fish/guestfish-actions.pod:2157 ../fish/guestfish-actions.pod:2172
11601 #: ../fish/guestfish-actions.pod:2271 ../fish/guestfish-actions.pod:2305
11602 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
11603 msgstr ""
11604
11605 # type: =head2
11606 #. type: =head2
11607 #: ../src/guestfs-actions.pod:2535
11608 msgid "guestfs_inspect_get_distro"
11609 msgstr ""
11610
11611 # type: verbatim
11612 #. type: verbatim
11613 #: ../src/guestfs-actions.pod:2537
11614 #, no-wrap
11615 msgid ""
11616 " char *\n"
11617 " guestfs_inspect_get_distro (guestfs_h *g,\n"
11618 "                             const char *root);\n"
11619 "\n"
11620 msgstr ""
11621
11622 # type: textblock
11623 #. type: textblock
11624 #: ../src/guestfs-actions.pod:2544 ../fish/guestfish-actions.pod:1709
11625 msgid ""
11626 "This returns the distro (distribution) of the inspected operating system."
11627 msgstr ""
11628
11629 # type: textblock
11630 #. type: textblock
11631 #: ../src/guestfs-actions.pod:2547 ../fish/guestfish-actions.pod:1712
11632 msgid "Currently defined distros are:"
11633 msgstr ""
11634
11635 # type: =item
11636 #. type: =item
11637 #: ../src/guestfs-actions.pod:2551 ../fish/guestfish-actions.pod:1716
11638 msgid "\"archlinux\""
11639 msgstr ""
11640
11641 # type: textblock
11642 #. type: textblock
11643 #: ../src/guestfs-actions.pod:2553 ../fish/guestfish-actions.pod:1718
11644 msgid "Arch Linux."
11645 msgstr ""
11646
11647 #. type: =item
11648 #: ../src/guestfs-actions.pod:2555 ../fish/guestfish-actions.pod:1720
11649 msgid "\"centos\""
11650 msgstr ""
11651
11652 #. type: textblock
11653 #: ../src/guestfs-actions.pod:2557 ../fish/guestfish-actions.pod:1722
11654 msgid "CentOS."
11655 msgstr ""
11656
11657 # type: =item
11658 #. type: =item
11659 #: ../src/guestfs-actions.pod:2559 ../fish/guestfish-actions.pod:1724
11660 msgid "\"debian\""
11661 msgstr ""
11662
11663 # type: textblock
11664 #. type: textblock
11665 #: ../src/guestfs-actions.pod:2561 ../fish/guestfish-actions.pod:1726
11666 msgid "Debian."
11667 msgstr ""
11668
11669 # type: =item
11670 #. type: =item
11671 #: ../src/guestfs-actions.pod:2563 ../fish/guestfish-actions.pod:1728
11672 msgid "\"fedora\""
11673 msgstr ""
11674
11675 # type: textblock
11676 #. type: textblock
11677 #: ../src/guestfs-actions.pod:2565 ../fish/guestfish-actions.pod:1730
11678 msgid "Fedora."
11679 msgstr ""
11680
11681 # type: =item
11682 #. type: =item
11683 #: ../src/guestfs-actions.pod:2567 ../fish/guestfish-actions.pod:1732
11684 msgid "\"gentoo\""
11685 msgstr ""
11686
11687 # type: textblock
11688 #. type: textblock
11689 #: ../src/guestfs-actions.pod:2569 ../fish/guestfish-actions.pod:1734
11690 msgid "Gentoo."
11691 msgstr ""
11692
11693 # type: =item
11694 #. type: =item
11695 #: ../src/guestfs-actions.pod:2571 ../fish/guestfish-actions.pod:1736
11696 msgid "\"linuxmint\""
11697 msgstr ""
11698
11699 # type: textblock
11700 #. type: textblock
11701 #: ../src/guestfs-actions.pod:2573 ../fish/guestfish-actions.pod:1738
11702 msgid "Linux Mint."
11703 msgstr ""
11704
11705 # type: =item
11706 #. type: =item
11707 #: ../src/guestfs-actions.pod:2575 ../fish/guestfish-actions.pod:1740
11708 msgid "\"mandriva\""
11709 msgstr ""
11710
11711 # type: textblock
11712 #. type: textblock
11713 #: ../src/guestfs-actions.pod:2577 ../fish/guestfish-actions.pod:1742
11714 msgid "Mandriva."
11715 msgstr ""
11716
11717 # type: =item
11718 #. type: =item
11719 #: ../src/guestfs-actions.pod:2579 ../fish/guestfish-actions.pod:1744
11720 msgid "\"meego\""
11721 msgstr ""
11722
11723 # type: textblock
11724 #. type: textblock
11725 #: ../src/guestfs-actions.pod:2581 ../fish/guestfish-actions.pod:1746
11726 msgid "MeeGo."
11727 msgstr ""
11728
11729 # type: =item
11730 #. type: =item
11731 #: ../src/guestfs-actions.pod:2583 ../fish/guestfish-actions.pod:1748
11732 msgid "\"pardus\""
11733 msgstr ""
11734
11735 # type: textblock
11736 #. type: textblock
11737 #: ../src/guestfs-actions.pod:2585 ../fish/guestfish-actions.pod:1750
11738 msgid "Pardus."
11739 msgstr ""
11740
11741 # type: =item
11742 #. type: =item
11743 #: ../src/guestfs-actions.pod:2587 ../fish/guestfish-actions.pod:1752
11744 msgid "\"redhat-based\""
11745 msgstr ""
11746
11747 # type: textblock
11748 #. type: textblock
11749 #: ../src/guestfs-actions.pod:2589 ../fish/guestfish-actions.pod:1754
11750 msgid "Some Red Hat-derived distro."
11751 msgstr ""
11752
11753 # type: =item
11754 #. type: =item
11755 #: ../src/guestfs-actions.pod:2591 ../fish/guestfish-actions.pod:1756
11756 msgid "\"rhel\""
11757 msgstr ""
11758
11759 #. type: textblock
11760 #: ../src/guestfs-actions.pod:2593 ../fish/guestfish-actions.pod:1758
11761 msgid "Red Hat Enterprise Linux."
11762 msgstr ""
11763
11764 #. type: =item
11765 #: ../src/guestfs-actions.pod:2595 ../fish/guestfish-actions.pod:1760
11766 msgid "\"scientificlinux\""
11767 msgstr ""
11768
11769 #. type: textblock
11770 #: ../src/guestfs-actions.pod:2597 ../fish/guestfish-actions.pod:1762
11771 msgid "Scientific Linux."
11772 msgstr ""
11773
11774 #. type: =item
11775 #: ../src/guestfs-actions.pod:2599 ../fish/guestfish-actions.pod:1764
11776 msgid "\"slackware\""
11777 msgstr ""
11778
11779 #. type: textblock
11780 #: ../src/guestfs-actions.pod:2601 ../fish/guestfish-actions.pod:1766
11781 msgid "Slackware."
11782 msgstr ""
11783
11784 # type: =item
11785 #. type: =item
11786 #: ../src/guestfs-actions.pod:2603 ../fish/guestfish-actions.pod:1768
11787 msgid "\"ubuntu\""
11788 msgstr ""
11789
11790 # type: textblock
11791 #. type: textblock
11792 #: ../src/guestfs-actions.pod:2605 ../fish/guestfish-actions.pod:1770
11793 msgid "Ubuntu."
11794 msgstr ""
11795
11796 # type: =item
11797 #. type: =item
11798 #: ../src/guestfs-actions.pod:2607 ../src/guestfs-actions.pod:2723
11799 #: ../src/guestfs-actions.pod:3015 ../fish/guestfish-actions.pod:1772
11800 #: ../fish/guestfish-actions.pod:1865 ../fish/guestfish-actions.pod:2090
11801 msgid "\"unknown\""
11802 msgstr ""
11803
11804 # type: textblock
11805 #. type: textblock
11806 #: ../src/guestfs-actions.pod:2609 ../fish/guestfish-actions.pod:1774
11807 msgid "The distro could not be determined."
11808 msgstr ""
11809
11810 # type: =item
11811 #. type: =item
11812 #: ../src/guestfs-actions.pod:2611 ../src/guestfs-actions.pod:3007
11813 #: ../fish/guestfish-actions.pod:1776 ../fish/guestfish-actions.pod:2082
11814 msgid "\"windows\""
11815 msgstr ""
11816
11817 # type: textblock
11818 #. type: textblock
11819 #: ../src/guestfs-actions.pod:2613 ../fish/guestfish-actions.pod:1778
11820 msgid ""
11821 "Windows does not have distributions.  This string is returned if the OS type "
11822 "is Windows."
11823 msgstr ""
11824
11825 # type: textblock
11826 #. type: textblock
11827 #: ../src/guestfs-actions.pod:2618 ../src/guestfs-actions.pod:2729
11828 #: ../src/guestfs-actions.pod:3021 ../fish/guestfish-actions.pod:1783
11829 #: ../fish/guestfish-actions.pod:1871 ../fish/guestfish-actions.pod:2096
11830 msgid ""
11831 "Future versions of libguestfs may return other strings here.  The caller "
11832 "should be prepared to handle any string."
11833 msgstr ""
11834
11835 #. type: =head2
11836 #: ../src/guestfs-actions.pod:2628
11837 msgid "guestfs_inspect_get_drive_mappings"
11838 msgstr ""
11839
11840 #. type: verbatim
11841 #: ../src/guestfs-actions.pod:2630
11842 #, no-wrap
11843 msgid ""
11844 " char **\n"
11845 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
11846 "                                     const char *root);\n"
11847 "\n"
11848 msgstr ""
11849
11850 #. type: textblock
11851 #: ../src/guestfs-actions.pod:2637 ../fish/guestfish-actions.pod:1795
11852 msgid ""
11853 "This call is useful for Windows which uses a primitive system of assigning "
11854 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
11855 "Windows Registry to find out how disks/partitions are mapped to drive "
11856 "letters, and returns a hash table as in the example below:"
11857 msgstr ""
11858
11859 #. type: verbatim
11860 #: ../src/guestfs-actions.pod:2643 ../fish/guestfish-actions.pod:1801
11861 #, no-wrap
11862 msgid ""
11863 " C      =>     /dev/vda2\n"
11864 " E      =>     /dev/vdb1\n"
11865 " F      =>     /dev/vdc1\n"
11866 "\n"
11867 msgstr ""
11868
11869 #. type: textblock
11870 #: ../src/guestfs-actions.pod:2647 ../fish/guestfish-actions.pod:1805
11871 msgid ""
11872 "Note that keys are drive letters.  For Windows, the key is case insensitive "
11873 "and just contains the drive letter, without the customary colon separator "
11874 "character."
11875 msgstr ""
11876
11877 #. type: textblock
11878 #: ../src/guestfs-actions.pod:2651 ../fish/guestfish-actions.pod:1809
11879 msgid ""
11880 "In future we may support other operating systems that also used drive "
11881 "letters, but the keys for those might not be case insensitive and might be "
11882 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
11883 "C<h1> etc."
11884 msgstr ""
11885
11886 #. type: textblock
11887 #: ../src/guestfs-actions.pod:2656 ../fish/guestfish-actions.pod:1814
11888 msgid ""
11889 "For Windows guests, currently only hard drive mappings are returned.  "
11890 "Removable disks (eg. DVD-ROMs) are ignored."
11891 msgstr ""
11892
11893 #. type: textblock
11894 #: ../src/guestfs-actions.pod:2659 ../fish/guestfish-actions.pod:1817
11895 msgid ""
11896 "For guests that do not use drive mappings, or if the drive mappings could "
11897 "not be determined, this returns an empty hash table."
11898 msgstr ""
11899
11900 #. type: textblock
11901 #: ../src/guestfs-actions.pod:2662
11902 msgid ""
11903 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11904 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
11905 msgstr ""
11906
11907 # type: textblock
11908 #. type: textblock
11909 #: ../src/guestfs-actions.pod:2666 ../src/guestfs-actions.pod:2842
11910 #: ../src/guestfs-actions.pod:3602 ../src/guestfs-actions.pod:4819
11911 #: ../src/guestfs-actions.pod:6761
11912 msgid ""
11913 "This function returns a NULL-terminated array of strings, or NULL if there "
11914 "was an error.  The array of strings will always have length C<2n+1>, where "
11915 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
11916 "caller must free the strings and the array after use>."
11917 msgstr ""
11918
11919 # type: =head2
11920 #. type: =head2
11921 #: ../src/guestfs-actions.pod:2672
11922 msgid "guestfs_inspect_get_filesystems"
11923 msgstr ""
11924
11925 # type: verbatim
11926 #. type: verbatim
11927 #: ../src/guestfs-actions.pod:2674
11928 #, no-wrap
11929 msgid ""
11930 " char **\n"
11931 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
11932 "                                  const char *root);\n"
11933 "\n"
11934 msgstr ""
11935
11936 # type: textblock
11937 #. type: textblock
11938 #: ../src/guestfs-actions.pod:2681 ../fish/guestfish-actions.pod:1831
11939 msgid ""
11940 "This returns a list of all the filesystems that we think are associated with "
11941 "this operating system.  This includes the root filesystem, other ordinary "
11942 "filesystems, and non-mounted devices like swap partitions."
11943 msgstr ""
11944
11945 # type: textblock
11946 #. type: textblock
11947 #: ../src/guestfs-actions.pod:2686 ../fish/guestfish-actions.pod:1836
11948 msgid ""
11949 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
11950 "to be shared between operating systems."
11951 msgstr ""
11952
11953 # type: textblock
11954 #. type: textblock
11955 #: ../src/guestfs-actions.pod:2689
11956 msgid ""
11957 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11958 "C<guestfs_inspect_get_mountpoints>."
11959 msgstr ""
11960
11961 #. type: =head2
11962 #: ../src/guestfs-actions.pod:2698
11963 msgid "guestfs_inspect_get_format"
11964 msgstr ""
11965
11966 #. type: verbatim
11967 #: ../src/guestfs-actions.pod:2700
11968 #, no-wrap
11969 msgid ""
11970 " char *\n"
11971 " guestfs_inspect_get_format (guestfs_h *g,\n"
11972 "                             const char *root);\n"
11973 "\n"
11974 msgstr ""
11975
11976 #. type: textblock
11977 #: ../src/guestfs-actions.pod:2707 ../fish/guestfish-actions.pod:1849
11978 msgid ""
11979 "This returns the format of the inspected operating system.  You can use it "
11980 "to detect install images, live CDs and similar."
11981 msgstr ""
11982
11983 #. type: textblock
11984 #: ../src/guestfs-actions.pod:2710 ../fish/guestfish-actions.pod:1852
11985 msgid "Currently defined formats are:"
11986 msgstr ""
11987
11988 #. type: =item
11989 #: ../src/guestfs-actions.pod:2714 ../fish/guestfish-actions.pod:1856
11990 msgid "\"installed\""
11991 msgstr ""
11992
11993 #. type: textblock
11994 #: ../src/guestfs-actions.pod:2716 ../fish/guestfish-actions.pod:1858
11995 msgid "This is an installed operating system."
11996 msgstr ""
11997
11998 #. type: =item
11999 #: ../src/guestfs-actions.pod:2718 ../fish/guestfish-actions.pod:1860
12000 msgid "\"installer\""
12001 msgstr ""
12002
12003 #. type: textblock
12004 #: ../src/guestfs-actions.pod:2720 ../fish/guestfish-actions.pod:1862
12005 msgid ""
12006 "The disk image being inspected is not an installed operating system, but a "
12007 "I<bootable> install disk, live CD, or similar."
12008 msgstr ""
12009
12010 #. type: textblock
12011 #: ../src/guestfs-actions.pod:2725 ../fish/guestfish-actions.pod:1867
12012 msgid "The format of this disk image is not known."
12013 msgstr ""
12014
12015 # type: =head2
12016 #. type: =head2
12017 #: ../src/guestfs-actions.pod:2737
12018 msgid "guestfs_inspect_get_hostname"
12019 msgstr ""
12020
12021 # type: verbatim
12022 #. type: verbatim
12023 #: ../src/guestfs-actions.pod:2739
12024 #, no-wrap
12025 msgid ""
12026 " char *\n"
12027 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
12028 "                               const char *root);\n"
12029 "\n"
12030 msgstr ""
12031
12032 # type: textblock
12033 #. type: textblock
12034 #: ../src/guestfs-actions.pod:2746 ../fish/guestfish-actions.pod:1883
12035 msgid ""
12036 "This function returns the hostname of the operating system as found by "
12037 "inspection of the guest's configuration files."
12038 msgstr ""
12039
12040 # type: textblock
12041 #. type: textblock
12042 #: ../src/guestfs-actions.pod:2749 ../fish/guestfish-actions.pod:1886
12043 msgid ""
12044 "If the hostname could not be determined, then the string C<unknown> is "
12045 "returned."
12046 msgstr ""
12047
12048 # type: textblock
12049 #. type: textblock
12050 #: ../src/guestfs-actions.pod:2757
12051 msgid "(Added in 1.7.9)"
12052 msgstr ""
12053
12054 # type: =head2
12055 #. type: =head2
12056 #: ../src/guestfs-actions.pod:2759
12057 msgid "guestfs_inspect_get_major_version"
12058 msgstr ""
12059
12060 # type: verbatim
12061 #. type: verbatim
12062 #: ../src/guestfs-actions.pod:2761
12063 #, no-wrap
12064 msgid ""
12065 " int\n"
12066 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
12067 "                                    const char *root);\n"
12068 "\n"
12069 msgstr ""
12070
12071 # type: textblock
12072 #. type: textblock
12073 #: ../src/guestfs-actions.pod:2768 ../fish/guestfish-actions.pod:1898
12074 msgid ""
12075 "This returns the major version number of the inspected operating system."
12076 msgstr ""
12077
12078 # type: textblock
12079 #. type: textblock
12080 #: ../src/guestfs-actions.pod:2771 ../fish/guestfish-actions.pod:1901
12081 msgid ""
12082 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
12083 "popular public names used by the operating system.  Notably the operating "
12084 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
12085 "1).  You can find out the real versions corresponding to releases of Windows "
12086 "by consulting Wikipedia or MSDN."
12087 msgstr ""
12088
12089 # type: textblock
12090 #. type: textblock
12091 #: ../src/guestfs-actions.pod:2778 ../src/guestfs-actions.pod:2798
12092 #: ../fish/guestfish-actions.pod:1908 ../fish/guestfish-actions.pod:1922
12093 msgid "If the version could not be determined, then C<0> is returned."
12094 msgstr ""
12095
12096 # type: =head2
12097 #. type: =head2
12098 #: ../src/guestfs-actions.pod:2786
12099 msgid "guestfs_inspect_get_minor_version"
12100 msgstr ""
12101
12102 # type: verbatim
12103 #. type: verbatim
12104 #: ../src/guestfs-actions.pod:2788
12105 #, no-wrap
12106 msgid ""
12107 " int\n"
12108 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
12109 "                                    const char *root);\n"
12110 "\n"
12111 msgstr ""
12112
12113 # type: textblock
12114 #. type: textblock
12115 #: ../src/guestfs-actions.pod:2795 ../fish/guestfish-actions.pod:1919
12116 msgid ""
12117 "This returns the minor version number of the inspected operating system."
12118 msgstr ""
12119
12120 # type: textblock
12121 #. type: textblock
12122 #: ../src/guestfs-actions.pod:2800
12123 msgid ""
12124 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
12125 "C<guestfs_inspect_get_major_version>."
12126 msgstr ""
12127
12128 # type: =head2
12129 #. type: =head2
12130 #: ../src/guestfs-actions.pod:2807
12131 msgid "guestfs_inspect_get_mountpoints"
12132 msgstr ""
12133
12134 # type: verbatim
12135 #. type: verbatim
12136 #: ../src/guestfs-actions.pod:2809
12137 #, no-wrap
12138 msgid ""
12139 " char **\n"
12140 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
12141 "                                  const char *root);\n"
12142 "\n"
12143 msgstr ""
12144
12145 #. type: textblock
12146 #: ../src/guestfs-actions.pod:2816 ../fish/guestfish-actions.pod:1934
12147 msgid ""
12148 "This returns a hash of where we think the filesystems associated with this "
12149 "operating system should be mounted.  Callers should note that this is at "
12150 "best an educated guess made by reading configuration files such as C</etc/"
12151 "fstab>.  I<In particular note> that this may return filesystems which are "
12152 "non-existent or not mountable and callers should be prepared to handle or "
12153 "ignore failures if they try to mount them."
12154 msgstr ""
12155
12156 # type: textblock
12157 #. type: textblock
12158 #: ../src/guestfs-actions.pod:2825 ../fish/guestfish-actions.pod:1943
12159 msgid ""
12160 "Each element in the returned hashtable has a key which is the path of the "
12161 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
12162 "mounted there (eg. C</dev/sda1>)."
12163 msgstr ""
12164
12165 # type: textblock
12166 #. type: textblock
12167 #: ../src/guestfs-actions.pod:2830 ../fish/guestfish-actions.pod:1948
12168 msgid ""
12169 "Non-mounted devices such as swap devices are I<not> returned in this list."
12170 msgstr ""
12171
12172 #. type: textblock
12173 #: ../src/guestfs-actions.pod:2833
12174 msgid ""
12175 "For operating systems like Windows which still use drive letters, this call "
12176 "will only return an entry for the first drive \"mounted on\" C</>.  For "
12177 "information about the mapping of drive letters to partitions, see "
12178 "C<guestfs_inspect_get_drive_mappings>."
12179 msgstr ""
12180
12181 # type: textblock
12182 #. type: textblock
12183 #: ../src/guestfs-actions.pod:2839
12184 msgid ""
12185 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
12186 "C<guestfs_inspect_get_filesystems>."
12187 msgstr ""
12188
12189 # type: =head2
12190 #. type: =head2
12191 #: ../src/guestfs-actions.pod:2850
12192 msgid "guestfs_inspect_get_package_format"
12193 msgstr ""
12194
12195 # type: verbatim
12196 #. type: verbatim
12197 #: ../src/guestfs-actions.pod:2852
12198 #, no-wrap
12199 msgid ""
12200 " char *\n"
12201 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
12202 "                                     const char *root);\n"
12203 "\n"
12204 msgstr ""
12205
12206 # type: textblock
12207 #. type: textblock
12208 #: ../src/guestfs-actions.pod:2859
12209 msgid ""
12210 "This function and C<guestfs_inspect_get_package_management> return the "
12211 "package format and package management tool used by the inspected operating "
12212 "system.  For example for Fedora these functions would return C<rpm> (package "
12213 "format) and C<yum> (package management)."
12214 msgstr ""
12215
12216 # type: textblock
12217 #. type: textblock
12218 #: ../src/guestfs-actions.pod:2865 ../fish/guestfish-actions.pod:1973
12219 msgid ""
12220 "This returns the string C<unknown> if we could not determine the package "
12221 "format I<or> if the operating system does not have a real packaging system "
12222 "(eg. Windows)."
12223 msgstr ""
12224
12225 # type: textblock
12226 #. type: textblock
12227 #: ../src/guestfs-actions.pod:2869 ../fish/guestfish-actions.pod:1977
12228 msgid ""
12229 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
12230 "Future versions of libguestfs may return other strings."
12231 msgstr ""
12232
12233 # type: textblock
12234 #. type: textblock
12235 #: ../src/guestfs-actions.pod:2877 ../src/guestfs-actions.pod:2908
12236 msgid "(Added in 1.7.5)"
12237 msgstr ""
12238
12239 # type: =head2
12240 #. type: =head2
12241 #: ../src/guestfs-actions.pod:2879
12242 msgid "guestfs_inspect_get_package_management"
12243 msgstr ""
12244
12245 # type: verbatim
12246 #. type: verbatim
12247 #: ../src/guestfs-actions.pod:2881
12248 #, no-wrap
12249 msgid ""
12250 " char *\n"
12251 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
12252 "                                         const char *root);\n"
12253 "\n"
12254 msgstr ""
12255
12256 # type: textblock
12257 #. type: textblock
12258 #: ../src/guestfs-actions.pod:2888
12259 msgid ""
12260 "C<guestfs_inspect_get_package_format> and this function return the package "
12261 "format and package management tool used by the inspected operating system.  "
12262 "For example for Fedora these functions would return C<rpm> (package format) "
12263 "and C<yum> (package management)."
12264 msgstr ""
12265
12266 # type: textblock
12267 #. type: textblock
12268 #: ../src/guestfs-actions.pod:2894 ../fish/guestfish-actions.pod:1995
12269 msgid ""
12270 "This returns the string C<unknown> if we could not determine the package "
12271 "management tool I<or> if the operating system does not have a real packaging "
12272 "system (eg. Windows)."
12273 msgstr ""
12274
12275 # type: textblock
12276 #. type: textblock
12277 #: ../src/guestfs-actions.pod:2898 ../fish/guestfish-actions.pod:1999
12278 msgid ""
12279 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
12280 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
12281 "libguestfs may return other strings."
12282 msgstr ""
12283
12284 # type: =head2
12285 #. type: =head2
12286 #: ../src/guestfs-actions.pod:2910
12287 msgid "guestfs_inspect_get_product_name"
12288 msgstr ""
12289
12290 # type: verbatim
12291 #. type: verbatim
12292 #: ../src/guestfs-actions.pod:2912
12293 #, no-wrap
12294 msgid ""
12295 " char *\n"
12296 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
12297 "                                   const char *root);\n"
12298 "\n"
12299 msgstr ""
12300
12301 # type: textblock
12302 #. type: textblock
12303 #: ../src/guestfs-actions.pod:2919 ../fish/guestfish-actions.pod:2013
12304 msgid ""
12305 "This returns the product name of the inspected operating system.  The "
12306 "product name is generally some freeform string which can be displayed to the "
12307 "user, but should not be parsed by programs."
12308 msgstr ""
12309
12310 # type: textblock
12311 #. type: textblock
12312 #: ../src/guestfs-actions.pod:2924 ../fish/guestfish-actions.pod:2018
12313 msgid ""
12314 "If the product name could not be determined, then the string C<unknown> is "
12315 "returned."
12316 msgstr ""
12317
12318 #. type: =head2
12319 #: ../src/guestfs-actions.pod:2934
12320 msgid "guestfs_inspect_get_product_variant"
12321 msgstr ""
12322
12323 #. type: verbatim
12324 #: ../src/guestfs-actions.pod:2936
12325 #, no-wrap
12326 msgid ""
12327 " char *\n"
12328 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
12329 "                                      const char *root);\n"
12330 "\n"
12331 msgstr ""
12332
12333 #. type: textblock
12334 #: ../src/guestfs-actions.pod:2943 ../fish/guestfish-actions.pod:2030
12335 msgid "This returns the product variant of the inspected operating system."
12336 msgstr ""
12337
12338 #. type: textblock
12339 #: ../src/guestfs-actions.pod:2946 ../fish/guestfish-actions.pod:2033
12340 msgid ""
12341 "For Windows guests, this returns the contents of the Registry key C<HKLM"
12342 "\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
12343 "is usually a string such as C<Client> or C<Server> (other values are "
12344 "possible).  This can be used to distinguish consumer and enterprise versions "
12345 "of Windows that have the same version number (for example, Windows 7 and "
12346 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
12347 "the latter is C<Server>)."
12348 msgstr ""
12349
12350 #. type: textblock
12351 #: ../src/guestfs-actions.pod:2955 ../fish/guestfish-actions.pod:2042
12352 msgid ""
12353 "For enterprise Linux guests, in future we intend this to return the product "
12354 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
12355 "implemented at present."
12356 msgstr ""
12357
12358 #. type: textblock
12359 #: ../src/guestfs-actions.pod:2959 ../fish/guestfish-actions.pod:2046
12360 msgid ""
12361 "If the product variant could not be determined, then the string C<unknown> "
12362 "is returned."
12363 msgstr ""
12364
12365 #. type: textblock
12366 #: ../src/guestfs-actions.pod:2962
12367 msgid ""
12368 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
12369 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
12370 msgstr ""
12371
12372 # type: =head2
12373 #. type: =head2
12374 #: ../src/guestfs-actions.pod:2969
12375 msgid "guestfs_inspect_get_roots"
12376 msgstr ""
12377
12378 # type: verbatim
12379 #. type: verbatim
12380 #: ../src/guestfs-actions.pod:2971
12381 #, no-wrap
12382 msgid ""
12383 " char **\n"
12384 " guestfs_inspect_get_roots (guestfs_h *g);\n"
12385 "\n"
12386 msgstr ""
12387
12388 # type: textblock
12389 #. type: textblock
12390 #: ../src/guestfs-actions.pod:2974
12391 msgid ""
12392 "This function is a convenient way to get the list of root devices, as "
12393 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
12394 "the whole inspection process."
12395 msgstr ""
12396
12397 # type: textblock
12398 #. type: textblock
12399 #: ../src/guestfs-actions.pod:2978
12400 msgid ""
12401 "This returns an empty list if either no root devices were found or the "
12402 "caller has not called C<guestfs_inspect_os>."
12403 msgstr ""
12404
12405 # type: textblock
12406 #. type: textblock
12407 #: ../src/guestfs-actions.pod:2987
12408 msgid "(Added in 1.7.3)"
12409 msgstr ""
12410
12411 # type: =head2
12412 #. type: =head2
12413 #: ../src/guestfs-actions.pod:2989
12414 msgid "guestfs_inspect_get_type"
12415 msgstr ""
12416
12417 # type: verbatim
12418 #. type: verbatim
12419 #: ../src/guestfs-actions.pod:2991
12420 #, no-wrap
12421 msgid ""
12422 " char *\n"
12423 " guestfs_inspect_get_type (guestfs_h *g,\n"
12424 "                           const char *root);\n"
12425 "\n"
12426 msgstr ""
12427
12428 # type: textblock
12429 #. type: textblock
12430 #: ../src/guestfs-actions.pod:2998 ../fish/guestfish-actions.pod:2073
12431 msgid ""
12432 "This returns the type of the inspected operating system.  Currently defined "
12433 "types are:"
12434 msgstr ""
12435
12436 # type: =item
12437 #. type: =item
12438 #: ../src/guestfs-actions.pod:3003 ../fish/guestfish-actions.pod:2078
12439 msgid "\"linux\""
12440 msgstr ""
12441
12442 # type: textblock
12443 #. type: textblock
12444 #: ../src/guestfs-actions.pod:3005 ../fish/guestfish-actions.pod:2080
12445 msgid "Any Linux-based operating system."
12446 msgstr ""
12447
12448 # type: textblock
12449 #. type: textblock
12450 #: ../src/guestfs-actions.pod:3009 ../fish/guestfish-actions.pod:2084
12451 msgid "Any Microsoft Windows operating system."
12452 msgstr ""
12453
12454 # type: =item
12455 #. type: =item
12456 #: ../src/guestfs-actions.pod:3011 ../fish/guestfish-actions.pod:2086
12457 msgid "\"freebsd\""
12458 msgstr ""
12459
12460 # type: textblock
12461 #. type: textblock
12462 #: ../src/guestfs-actions.pod:3013 ../fish/guestfish-actions.pod:2088
12463 msgid "FreeBSD."
12464 msgstr ""
12465
12466 # type: textblock
12467 #. type: textblock
12468 #: ../src/guestfs-actions.pod:3017 ../fish/guestfish-actions.pod:2092
12469 msgid "The operating system type could not be determined."
12470 msgstr ""
12471
12472 #. type: =head2
12473 #: ../src/guestfs-actions.pod:3031
12474 msgid "guestfs_inspect_get_windows_current_control_set"
12475 msgstr ""
12476
12477 #. type: verbatim
12478 #: ../src/guestfs-actions.pod:3033
12479 #, no-wrap
12480 msgid ""
12481 " char *\n"
12482 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
12483 "                                                  const char *root);\n"
12484 "\n"
12485 msgstr ""
12486
12487 #. type: textblock
12488 #: ../src/guestfs-actions.pod:3040 ../fish/guestfish-actions.pod:2108
12489 msgid ""
12490 "This returns the Windows CurrentControlSet of the inspected guest.  The "
12491 "CurrentControlSet is a registry key name such as C<ControlSet001>."
12492 msgstr ""
12493
12494 #. type: textblock
12495 #: ../src/guestfs-actions.pod:3043 ../fish/guestfish-actions.pod:2111
12496 msgid ""
12497 "This call assumes that the guest is Windows and that the Registry could be "
12498 "examined by inspection.  If this is not the case then an error is returned."
12499 msgstr ""
12500
12501 # type: =head2
12502 #. type: =head2
12503 #: ../src/guestfs-actions.pod:3052
12504 msgid "guestfs_inspect_get_windows_systemroot"
12505 msgstr ""
12506
12507 # type: verbatim
12508 #. type: verbatim
12509 #: ../src/guestfs-actions.pod:3054
12510 #, no-wrap
12511 msgid ""
12512 " char *\n"
12513 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
12514 "                                         const char *root);\n"
12515 "\n"
12516 msgstr ""
12517
12518 # type: textblock
12519 #. type: textblock
12520 #: ../src/guestfs-actions.pod:3061 ../fish/guestfish-actions.pod:2124
12521 msgid ""
12522 "This returns the Windows systemroot of the inspected guest.  The systemroot "
12523 "is a directory path such as C</WINDOWS>."
12524 msgstr ""
12525
12526 # type: textblock
12527 #. type: textblock
12528 #: ../src/guestfs-actions.pod:3064 ../fish/guestfish-actions.pod:2127
12529 msgid ""
12530 "This call assumes that the guest is Windows and that the systemroot could be "
12531 "determined by inspection.  If this is not the case then an error is returned."
12532 msgstr ""
12533
12534 # type: textblock
12535 #. type: textblock
12536 #: ../src/guestfs-actions.pod:3073
12537 msgid "(Added in 1.5.25)"
12538 msgstr ""
12539
12540 #. type: =head2
12541 #: ../src/guestfs-actions.pod:3075
12542 msgid "guestfs_inspect_is_live"
12543 msgstr ""
12544
12545 #. type: verbatim
12546 #: ../src/guestfs-actions.pod:3077
12547 #, no-wrap
12548 msgid ""
12549 " int\n"
12550 " guestfs_inspect_is_live (guestfs_h *g,\n"
12551 "                          const char *root);\n"
12552 "\n"
12553 msgstr ""
12554
12555 #. type: textblock
12556 #: ../src/guestfs-actions.pod:3084
12557 msgid ""
12558 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12559 "disk), then this returns true if a live image was detected on the disk."
12560 msgstr ""
12561
12562 #. type: =head2
12563 #: ../src/guestfs-actions.pod:3092
12564 msgid "guestfs_inspect_is_multipart"
12565 msgstr ""
12566
12567 #. type: verbatim
12568 #: ../src/guestfs-actions.pod:3094
12569 #, no-wrap
12570 msgid ""
12571 " int\n"
12572 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
12573 "                               const char *root);\n"
12574 "\n"
12575 msgstr ""
12576
12577 #. type: textblock
12578 #: ../src/guestfs-actions.pod:3101
12579 msgid ""
12580 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12581 "disk), then this returns true if the disk is part of a set."
12582 msgstr ""
12583
12584 #. type: =head2
12585 #: ../src/guestfs-actions.pod:3109
12586 msgid "guestfs_inspect_is_netinst"
12587 msgstr ""
12588
12589 #. type: verbatim
12590 #: ../src/guestfs-actions.pod:3111
12591 #, no-wrap
12592 msgid ""
12593 " int\n"
12594 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
12595 "                             const char *root);\n"
12596 "\n"
12597 msgstr ""
12598
12599 #. type: textblock
12600 #: ../src/guestfs-actions.pod:3118
12601 msgid ""
12602 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12603 "disk), then this returns true if the disk is a network installer, ie. not a "
12604 "self-contained install CD but one which is likely to require network access "
12605 "to complete the install."
12606 msgstr ""
12607
12608 # type: =head2
12609 #. type: =head2
12610 #: ../src/guestfs-actions.pod:3128
12611 msgid "guestfs_inspect_list_applications"
12612 msgstr ""
12613
12614 # type: verbatim
12615 #. type: verbatim
12616 #: ../src/guestfs-actions.pod:3130
12617 #, no-wrap
12618 msgid ""
12619 " struct guestfs_application_list *\n"
12620 " guestfs_inspect_list_applications (guestfs_h *g,\n"
12621 "                                    const char *root);\n"
12622 "\n"
12623 msgstr ""
12624
12625 # type: textblock
12626 #. type: textblock
12627 #: ../src/guestfs-actions.pod:3137 ../fish/guestfish-actions.pod:2181
12628 msgid "Return the list of applications installed in the operating system."
12629 msgstr ""
12630
12631 # type: textblock
12632 #. type: textblock
12633 #: ../src/guestfs-actions.pod:3139
12634 msgid ""
12635 "I<Note:> This call works differently from other parts of the inspection "
12636 "API.  You have to call C<guestfs_inspect_os>, then "
12637 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
12638 "this.  Listing applications is a significantly more difficult operation "
12639 "which requires access to the full filesystem.  Also note that unlike the "
12640 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
12641 "the libguestfs handle, this call actually reads parts of the mounted "
12642 "filesystems during the call."
12643 msgstr ""
12644
12645 # type: textblock
12646 #. type: textblock
12647 #: ../src/guestfs-actions.pod:3149 ../fish/guestfish-actions.pod:2193
12648 msgid ""
12649 "This returns an empty list if the inspection code was not able to determine "
12650 "the list of applications."
12651 msgstr ""
12652
12653 # type: textblock
12654 #. type: textblock
12655 #: ../src/guestfs-actions.pod:3152 ../fish/guestfish-actions.pod:2196
12656 msgid "The application structure contains the following fields:"
12657 msgstr ""
12658
12659 # type: =item
12660 #. type: =item
12661 #: ../src/guestfs-actions.pod:3156 ../fish/guestfish-actions.pod:2200
12662 msgid "C<app_name>"
12663 msgstr ""
12664
12665 # type: textblock
12666 #. type: textblock
12667 #: ../src/guestfs-actions.pod:3158 ../fish/guestfish-actions.pod:2202
12668 msgid ""
12669 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
12670 "guests, this is the package name."
12671 msgstr ""
12672
12673 # type: =item
12674 #. type: =item
12675 #: ../src/guestfs-actions.pod:3161 ../fish/guestfish-actions.pod:2205
12676 msgid "C<app_display_name>"
12677 msgstr ""
12678
12679 # type: textblock
12680 #. type: textblock
12681 #: ../src/guestfs-actions.pod:3163 ../fish/guestfish-actions.pod:2207
12682 msgid ""
12683 "The display name of the application, sometimes localized to the install "
12684 "language of the guest operating system."
12685 msgstr ""
12686
12687 # type: textblock
12688 #. type: textblock
12689 #: ../src/guestfs-actions.pod:3166 ../fish/guestfish-actions.pod:2210
12690 msgid ""
12691 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
12692 "to display something can use C<app_name> instead."
12693 msgstr ""
12694
12695 # type: =item
12696 #. type: =item
12697 #: ../src/guestfs-actions.pod:3169 ../fish/guestfish-actions.pod:2213
12698 msgid "C<app_epoch>"
12699 msgstr ""
12700
12701 # type: textblock
12702 #. type: textblock
12703 #: ../src/guestfs-actions.pod:3171 ../fish/guestfish-actions.pod:2215
12704 msgid ""
12705 "For package managers which use epochs, this contains the epoch of the "
12706 "package (an integer).  If unavailable, this is returned as C<0>."
12707 msgstr ""
12708
12709 # type: =item
12710 #. type: =item
12711 #: ../src/guestfs-actions.pod:3174 ../fish/guestfish-actions.pod:2218
12712 msgid "C<app_version>"
12713 msgstr ""
12714
12715 # type: textblock
12716 #. type: textblock
12717 #: ../src/guestfs-actions.pod:3176 ../fish/guestfish-actions.pod:2220
12718 msgid ""
12719 "The version string of the application or package.  If unavailable this is "
12720 "returned as an empty string C<\"\">."
12721 msgstr ""
12722
12723 # type: =item
12724 #. type: =item
12725 #: ../src/guestfs-actions.pod:3179 ../fish/guestfish-actions.pod:2223
12726 msgid "C<app_release>"
12727 msgstr ""
12728
12729 # type: textblock
12730 #. type: textblock
12731 #: ../src/guestfs-actions.pod:3181 ../fish/guestfish-actions.pod:2225
12732 msgid ""
12733 "The release string of the application or package, for package managers that "
12734 "use this.  If unavailable this is returned as an empty string C<\"\">."
12735 msgstr ""
12736
12737 # type: =item
12738 #. type: =item
12739 #: ../src/guestfs-actions.pod:3185 ../fish/guestfish-actions.pod:2229
12740 msgid "C<app_install_path>"
12741 msgstr ""
12742
12743 # type: textblock
12744 #. type: textblock
12745 #: ../src/guestfs-actions.pod:3187 ../fish/guestfish-actions.pod:2231
12746 msgid ""
12747 "The installation path of the application (on operating systems such as "
12748 "Windows which use installation paths).  This path is in the format used by "
12749 "the guest operating system, it is not a libguestfs path."
12750 msgstr ""
12751
12752 # type: textblock
12753 #. type: textblock
12754 #: ../src/guestfs-actions.pod:3192 ../fish/guestfish-actions.pod:2236
12755 msgid "If unavailable this is returned as an empty string C<\"\">."
12756 msgstr ""
12757
12758 # type: =item
12759 #. type: =item
12760 #: ../src/guestfs-actions.pod:3194 ../fish/guestfish-actions.pod:2238
12761 msgid "C<app_trans_path>"
12762 msgstr ""
12763
12764 # type: textblock
12765 #. type: textblock
12766 #: ../src/guestfs-actions.pod:3196 ../fish/guestfish-actions.pod:2240
12767 msgid ""
12768 "The install path translated into a libguestfs path.  If unavailable this is "
12769 "returned as an empty string C<\"\">."
12770 msgstr ""
12771
12772 # type: =item
12773 #. type: =item
12774 #: ../src/guestfs-actions.pod:3199 ../fish/guestfish-actions.pod:2243
12775 msgid "C<app_publisher>"
12776 msgstr ""
12777
12778 # type: textblock
12779 #. type: textblock
12780 #: ../src/guestfs-actions.pod:3201 ../fish/guestfish-actions.pod:2245
12781 msgid ""
12782 "The name of the publisher of the application, for package managers that use "
12783 "this.  If unavailable this is returned as an empty string C<\"\">."
12784 msgstr ""
12785
12786 # type: =item
12787 #. type: =item
12788 #: ../src/guestfs-actions.pod:3205 ../fish/guestfish-actions.pod:2249
12789 msgid "C<app_url>"
12790 msgstr ""
12791
12792 # type: textblock
12793 #. type: textblock
12794 #: ../src/guestfs-actions.pod:3207 ../fish/guestfish-actions.pod:2251
12795 msgid ""
12796 "The URL (eg. upstream URL) of the application.  If unavailable this is "
12797 "returned as an empty string C<\"\">."
12798 msgstr ""
12799
12800 # type: =item
12801 #. type: =item
12802 #: ../src/guestfs-actions.pod:3210 ../fish/guestfish-actions.pod:2254
12803 msgid "C<app_source_package>"
12804 msgstr ""
12805
12806 # type: textblock
12807 #. type: textblock
12808 #: ../src/guestfs-actions.pod:3212 ../fish/guestfish-actions.pod:2256
12809 msgid ""
12810 "For packaging systems which support this, the name of the source package.  "
12811 "If unavailable this is returned as an empty string C<\"\">."
12812 msgstr ""
12813
12814 # type: =item
12815 #. type: =item
12816 #: ../src/guestfs-actions.pod:3215 ../fish/guestfish-actions.pod:2259
12817 msgid "C<app_summary>"
12818 msgstr ""
12819
12820 # type: textblock
12821 #. type: textblock
12822 #: ../src/guestfs-actions.pod:3217 ../fish/guestfish-actions.pod:2261
12823 msgid ""
12824 "A short (usually one line) description of the application or package.  If "
12825 "unavailable this is returned as an empty string C<\"\">."
12826 msgstr ""
12827
12828 # type: =item
12829 #. type: =item
12830 #: ../src/guestfs-actions.pod:3220 ../fish/guestfish-actions.pod:2264
12831 msgid "C<app_description>"
12832 msgstr ""
12833
12834 # type: textblock
12835 #. type: textblock
12836 #: ../src/guestfs-actions.pod:3222 ../fish/guestfish-actions.pod:2266
12837 msgid ""
12838 "A longer description of the application or package.  If unavailable this is "
12839 "returned as an empty string C<\"\">."
12840 msgstr ""
12841
12842 # type: textblock
12843 #. type: textblock
12844 #: ../src/guestfs-actions.pod:3229
12845 msgid ""
12846 "This function returns a C<struct guestfs_application_list *>, or NULL if "
12847 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
12848 "after use>."
12849 msgstr ""
12850
12851 # type: textblock
12852 #. type: textblock
12853 #: ../src/guestfs-actions.pod:3233
12854 msgid "(Added in 1.7.8)"
12855 msgstr ""
12856
12857 # type: =head2
12858 #. type: =head2
12859 #: ../src/guestfs-actions.pod:3235
12860 msgid "guestfs_inspect_os"
12861 msgstr ""
12862
12863 # type: verbatim
12864 #. type: verbatim
12865 #: ../src/guestfs-actions.pod:3237
12866 #, no-wrap
12867 msgid ""
12868 " char **\n"
12869 " guestfs_inspect_os (guestfs_h *g);\n"
12870 "\n"
12871 msgstr ""
12872
12873 # type: textblock
12874 #. type: textblock
12875 #: ../src/guestfs-actions.pod:3240 ../fish/guestfish-actions.pod:2277
12876 msgid ""
12877 "This function uses other libguestfs functions and certain heuristics to "
12878 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
12879 "for operating systems."
12880 msgstr ""
12881
12882 # type: textblock
12883 #. type: textblock
12884 #: ../src/guestfs-actions.pod:3244 ../fish/guestfish-actions.pod:2281
12885 msgid "The list returned is empty if no operating systems were found."
12886 msgstr ""
12887
12888 # type: textblock
12889 #. type: textblock
12890 #: ../src/guestfs-actions.pod:3246 ../fish/guestfish-actions.pod:2283
12891 msgid ""
12892 "If one operating system was found, then this returns a list with a single "
12893 "element, which is the name of the root filesystem of this operating system.  "
12894 "It is also possible for this function to return a list containing more than "
12895 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
12896 "element being the root filesystem of one of the operating systems."
12897 msgstr ""
12898
12899 # type: textblock
12900 #. type: textblock
12901 #: ../src/guestfs-actions.pod:3253
12902 msgid ""
12903 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
12904 "functions in order to query further information about each operating system, "
12905 "such as the name and version."
12906 msgstr ""
12907
12908 # type: textblock
12909 #. type: textblock
12910 #: ../src/guestfs-actions.pod:3258
12911 msgid ""
12912 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
12913 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
12914 "the contents.  This should be called with no disks currently mounted.  The "
12915 "function may also use Augeas, so any existing Augeas handle will be closed."
12916 msgstr ""
12917
12918 # type: textblock
12919 #. type: textblock
12920 #: ../src/guestfs-actions.pod:3264 ../fish/guestfish-actions.pod:2301
12921 msgid ""
12922 "This function cannot decrypt encrypted disks.  The caller must do that first "
12923 "(supplying the necessary keys) if the disk is encrypted."
12924 msgstr ""
12925
12926 # type: textblock
12927 #. type: textblock
12928 #: ../src/guestfs-actions.pod:3270 ../src/guestfs-actions.pod:3560
12929 #: ../src/guestfs-actions.pod:3622
12930 msgid "See also C<guestfs_list_filesystems>."
12931 msgstr ""
12932
12933 # type: =head2
12934 #. type: =head2
12935 #: ../src/guestfs-actions.pod:3278
12936 msgid "guestfs_is_blockdev"
12937 msgstr ""
12938
12939 # type: verbatim
12940 #. type: verbatim
12941 #: ../src/guestfs-actions.pod:3280
12942 #, no-wrap
12943 msgid ""
12944 " int\n"
12945 " guestfs_is_blockdev (guestfs_h *g,\n"
12946 "                      const char *path);\n"
12947 "\n"
12948 msgstr ""
12949
12950 # type: textblock
12951 #. type: textblock
12952 #: ../src/guestfs-actions.pod:3284 ../fish/guestfish-actions.pod:2313
12953 msgid ""
12954 "This returns C<true> if and only if there is a block device with the given "
12955 "C<path> name."
12956 msgstr ""
12957
12958 # type: textblock
12959 #. type: textblock
12960 #: ../src/guestfs-actions.pod:3287 ../src/guestfs-actions.pod:3316
12961 #: ../src/guestfs-actions.pod:3346 ../src/guestfs-actions.pod:3361
12962 #: ../src/guestfs-actions.pod:3377 ../src/guestfs-actions.pod:3433
12963 #: ../src/guestfs-actions.pod:3448
12964 msgid "See also C<guestfs_stat>."
12965 msgstr ""
12966
12967 # type: textblock
12968 #. type: textblock
12969 #: ../src/guestfs-actions.pod:3291 ../src/guestfs-actions.pod:3320
12970 #: ../src/guestfs-actions.pod:3365 ../src/guestfs-actions.pod:3437
12971 #: ../src/guestfs-actions.pod:3452
12972 msgid "(Added in 1.5.10)"
12973 msgstr ""
12974
12975 # type: =head2
12976 #. type: =head2
12977 #: ../src/guestfs-actions.pod:3293
12978 msgid "guestfs_is_busy"
12979 msgstr ""
12980
12981 # type: verbatim
12982 #. type: verbatim
12983 #: ../src/guestfs-actions.pod:3295
12984 #, no-wrap
12985 msgid ""
12986 " int\n"
12987 " guestfs_is_busy (guestfs_h *g);\n"
12988 "\n"
12989 msgstr ""
12990
12991 # type: textblock
12992 #. type: textblock
12993 #: ../src/guestfs-actions.pod:3298 ../fish/guestfish-actions.pod:2322
12994 msgid ""
12995 "This returns true iff this handle is busy processing a command (in the "
12996 "C<BUSY> state)."
12997 msgstr ""
12998
12999 # type: =head2
13000 #. type: =head2
13001 #: ../src/guestfs-actions.pod:3307
13002 msgid "guestfs_is_chardev"
13003 msgstr ""
13004
13005 # type: verbatim
13006 #. type: verbatim
13007 #: ../src/guestfs-actions.pod:3309
13008 #, no-wrap
13009 msgid ""
13010 " int\n"
13011 " guestfs_is_chardev (guestfs_h *g,\n"
13012 "                     const char *path);\n"
13013 "\n"
13014 msgstr ""
13015
13016 # type: textblock
13017 #. type: textblock
13018 #: ../src/guestfs-actions.pod:3313 ../fish/guestfish-actions.pod:2331
13019 msgid ""
13020 "This returns C<true> if and only if there is a character device with the "
13021 "given C<path> name."
13022 msgstr ""
13023
13024 # type: =head2
13025 #. type: =head2
13026 #: ../src/guestfs-actions.pod:3322
13027 msgid "guestfs_is_config"
13028 msgstr ""
13029
13030 # type: verbatim
13031 #. type: verbatim
13032 #: ../src/guestfs-actions.pod:3324
13033 #, no-wrap
13034 msgid ""
13035 " int\n"
13036 " guestfs_is_config (guestfs_h *g);\n"
13037 "\n"
13038 msgstr ""
13039
13040 # type: textblock
13041 #. type: textblock
13042 #: ../src/guestfs-actions.pod:3327 ../fish/guestfish-actions.pod:2340
13043 msgid ""
13044 "This returns true iff this handle is being configured (in the C<CONFIG> "
13045 "state)."
13046 msgstr ""
13047
13048 # type: =head2
13049 #. type: =head2
13050 #: ../src/guestfs-actions.pod:3336
13051 msgid "guestfs_is_dir"
13052 msgstr ""
13053
13054 # type: verbatim
13055 #. type: verbatim
13056 #: ../src/guestfs-actions.pod:3338
13057 #, no-wrap
13058 msgid ""
13059 " int\n"
13060 " guestfs_is_dir (guestfs_h *g,\n"
13061 "                 const char *path);\n"
13062 "\n"
13063 msgstr ""
13064
13065 # type: textblock
13066 #. type: textblock
13067 #: ../src/guestfs-actions.pod:3342 ../fish/guestfish-actions.pod:2349
13068 msgid ""
13069 "This returns C<true> if and only if there is a directory with the given "
13070 "C<path> name.  Note that it returns false for other objects like files."
13071 msgstr ""
13072
13073 # type: =head2
13074 #. type: =head2
13075 #: ../src/guestfs-actions.pod:3352
13076 msgid "guestfs_is_fifo"
13077 msgstr ""
13078
13079 # type: verbatim
13080 #. type: verbatim
13081 #: ../src/guestfs-actions.pod:3354
13082 #, no-wrap
13083 msgid ""
13084 " int\n"
13085 " guestfs_is_fifo (guestfs_h *g,\n"
13086 "                  const char *path);\n"
13087 "\n"
13088 msgstr ""
13089
13090 # type: textblock
13091 #. type: textblock
13092 #: ../src/guestfs-actions.pod:3358 ../fish/guestfish-actions.pod:2359
13093 msgid ""
13094 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
13095 "given C<path> name."
13096 msgstr ""
13097
13098 # type: =head2
13099 #. type: =head2
13100 #: ../src/guestfs-actions.pod:3367
13101 msgid "guestfs_is_file"
13102 msgstr ""
13103
13104 # type: verbatim
13105 #. type: verbatim
13106 #: ../src/guestfs-actions.pod:3369
13107 #, no-wrap
13108 msgid ""
13109 " int\n"
13110 " guestfs_is_file (guestfs_h *g,\n"
13111 "                  const char *path);\n"
13112 "\n"
13113 msgstr ""
13114
13115 # type: textblock
13116 #. type: textblock
13117 #: ../src/guestfs-actions.pod:3373 ../fish/guestfish-actions.pod:2368
13118 msgid ""
13119 "This returns C<true> if and only if there is a regular file with the given "
13120 "C<path> name.  Note that it returns false for other objects like directories."
13121 msgstr ""
13122
13123 # type: =head2
13124 #. type: =head2
13125 #: ../src/guestfs-actions.pod:3383
13126 msgid "guestfs_is_launching"
13127 msgstr ""
13128
13129 # type: verbatim
13130 #. type: verbatim
13131 #: ../src/guestfs-actions.pod:3385
13132 #, no-wrap
13133 msgid ""
13134 " int\n"
13135 " guestfs_is_launching (guestfs_h *g);\n"
13136 "\n"
13137 msgstr ""
13138
13139 # type: textblock
13140 #. type: textblock
13141 #: ../src/guestfs-actions.pod:3388 ../fish/guestfish-actions.pod:2378
13142 msgid ""
13143 "This returns true iff this handle is launching the subprocess (in the "
13144 "C<LAUNCHING> state)."
13145 msgstr ""
13146
13147 # type: =head2
13148 #. type: =head2
13149 #: ../src/guestfs-actions.pod:3397
13150 msgid "guestfs_is_lv"
13151 msgstr ""
13152
13153 # type: verbatim
13154 #. type: verbatim
13155 #: ../src/guestfs-actions.pod:3399
13156 #, no-wrap
13157 msgid ""
13158 " int\n"
13159 " guestfs_is_lv (guestfs_h *g,\n"
13160 "                const char *device);\n"
13161 "\n"
13162 msgstr ""
13163
13164 # type: textblock
13165 #. type: textblock
13166 #: ../src/guestfs-actions.pod:3403 ../fish/guestfish-actions.pod:2387
13167 msgid ""
13168 "This command tests whether C<device> is a logical volume, and returns true "
13169 "iff this is the case."
13170 msgstr ""
13171
13172 # type: =head2
13173 #. type: =head2
13174 #: ../src/guestfs-actions.pod:3410
13175 msgid "guestfs_is_ready"
13176 msgstr ""
13177
13178 # type: verbatim
13179 #. type: verbatim
13180 #: ../src/guestfs-actions.pod:3412
13181 #, no-wrap
13182 msgid ""
13183 " int\n"
13184 " guestfs_is_ready (guestfs_h *g);\n"
13185 "\n"
13186 msgstr ""
13187
13188 # type: textblock
13189 #. type: textblock
13190 #: ../src/guestfs-actions.pod:3415 ../fish/guestfish-actions.pod:2394
13191 msgid ""
13192 "This returns true iff this handle is ready to accept commands (in the "
13193 "C<READY> state)."
13194 msgstr ""
13195
13196 # type: =head2
13197 #. type: =head2
13198 #: ../src/guestfs-actions.pod:3424
13199 msgid "guestfs_is_socket"
13200 msgstr ""
13201
13202 # type: verbatim
13203 #. type: verbatim
13204 #: ../src/guestfs-actions.pod:3426
13205 #, no-wrap
13206 msgid ""
13207 " int\n"
13208 " guestfs_is_socket (guestfs_h *g,\n"
13209 "                    const char *path);\n"
13210 "\n"
13211 msgstr ""
13212
13213 # type: textblock
13214 #. type: textblock
13215 #: ../src/guestfs-actions.pod:3430 ../fish/guestfish-actions.pod:2403
13216 msgid ""
13217 "This returns C<true> if and only if there is a Unix domain socket with the "
13218 "given C<path> name."
13219 msgstr ""
13220
13221 # type: =head2
13222 #. type: =head2
13223 #: ../src/guestfs-actions.pod:3439
13224 msgid "guestfs_is_symlink"
13225 msgstr ""
13226
13227 # type: verbatim
13228 #. type: verbatim
13229 #: ../src/guestfs-actions.pod:3441
13230 #, no-wrap
13231 msgid ""
13232 " int\n"
13233 " guestfs_is_symlink (guestfs_h *g,\n"
13234 "                     const char *path);\n"
13235 "\n"
13236 msgstr ""
13237
13238 # type: textblock
13239 #. type: textblock
13240 #: ../src/guestfs-actions.pod:3445 ../fish/guestfish-actions.pod:2412
13241 msgid ""
13242 "This returns C<true> if and only if there is a symbolic link with the given "
13243 "C<path> name."
13244 msgstr ""
13245
13246 # type: =head2
13247 #. type: =head2
13248 #: ../src/guestfs-actions.pod:3454
13249 msgid "guestfs_kill_subprocess"
13250 msgstr ""
13251
13252 # type: verbatim
13253 #. type: verbatim
13254 #: ../src/guestfs-actions.pod:3456
13255 #, no-wrap
13256 msgid ""
13257 " int\n"
13258 " guestfs_kill_subprocess (guestfs_h *g);\n"
13259 "\n"
13260 msgstr ""
13261
13262 # type: textblock
13263 #. type: textblock
13264 #: ../src/guestfs-actions.pod:3459 ../fish/guestfish-actions.pod:2421
13265 msgid "This kills the qemu subprocess.  You should never need to call this."
13266 msgstr ""
13267
13268 # type: =head2
13269 #. type: =head2
13270 #: ../src/guestfs-actions.pod:3465
13271 msgid "guestfs_launch"
13272 msgstr ""
13273
13274 # type: verbatim
13275 #. type: verbatim
13276 #: ../src/guestfs-actions.pod:3467
13277 #, no-wrap
13278 msgid ""
13279 " int\n"
13280 " guestfs_launch (guestfs_h *g);\n"
13281 "\n"
13282 msgstr ""
13283
13284 # type: textblock
13285 #. type: textblock
13286 #: ../src/guestfs-actions.pod:3470 ../fish/guestfish-actions.pod:2429
13287 msgid ""
13288 "Internally libguestfs is implemented by running a virtual machine using "
13289 "L<qemu(1)>."
13290 msgstr ""
13291
13292 # type: textblock
13293 #. type: textblock
13294 #: ../src/guestfs-actions.pod:3473 ../fish/guestfish-actions.pod:2432
13295 msgid ""
13296 "You should call this after configuring the handle (eg. adding drives) but "
13297 "before performing any actions."
13298 msgstr ""
13299
13300 # type: =head2
13301 #. type: =head2
13302 #: ../src/guestfs-actions.pod:3485
13303 msgid "guestfs_lchown"
13304 msgstr ""
13305
13306 # type: verbatim
13307 #. type: verbatim
13308 #: ../src/guestfs-actions.pod:3487
13309 #, no-wrap
13310 msgid ""
13311 " int\n"
13312 " guestfs_lchown (guestfs_h *g,\n"
13313 "                 int owner,\n"
13314 "                 int group,\n"
13315 "                 const char *path);\n"
13316 "\n"
13317 msgstr ""
13318
13319 # type: textblock
13320 #. type: textblock
13321 #: ../src/guestfs-actions.pod:3493
13322 msgid ""
13323 "Change the file owner to C<owner> and group to C<group>.  This is like "
13324 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
13325 "changed, not the target."
13326 msgstr ""
13327
13328 # type: =head2
13329 #. type: =head2
13330 #: ../src/guestfs-actions.pod:3505
13331 msgid "guestfs_lgetxattr"
13332 msgstr ""
13333
13334 # type: verbatim
13335 #. type: verbatim
13336 #: ../src/guestfs-actions.pod:3507
13337 #, no-wrap
13338 msgid ""
13339 " char *\n"
13340 " guestfs_lgetxattr (guestfs_h *g,\n"
13341 "                    const char *path,\n"
13342 "                    const char *name,\n"
13343 "                    size_t *size_r);\n"
13344 "\n"
13345 msgstr ""
13346
13347 # type: textblock
13348 #. type: textblock
13349 #: ../src/guestfs-actions.pod:3513 ../fish/guestfish-actions.pod:2451
13350 msgid ""
13351 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
13352 "is a symlink, then this call returns an extended attribute from the symlink."
13353 msgstr ""
13354
13355 # type: textblock
13356 #. type: textblock
13357 #: ../src/guestfs-actions.pod:3527
13358 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
13359 msgstr ""
13360
13361 # type: =head2
13362 #. type: =head2
13363 #: ../src/guestfs-actions.pod:3535
13364 msgid "guestfs_lgetxattrs"
13365 msgstr ""
13366
13367 # type: verbatim
13368 #. type: verbatim
13369 #: ../src/guestfs-actions.pod:3537
13370 #, no-wrap
13371 msgid ""
13372 " struct guestfs_xattr_list *\n"
13373 " guestfs_lgetxattrs (guestfs_h *g,\n"
13374 "                     const char *path);\n"
13375 "\n"
13376 msgstr ""
13377
13378 # type: textblock
13379 #. type: textblock
13380 #: ../src/guestfs-actions.pod:3541
13381 msgid ""
13382 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
13383 "then it returns the extended attributes of the link itself."
13384 msgstr ""
13385
13386 # type: =head2
13387 #. type: =head2
13388 #: ../src/guestfs-actions.pod:3551
13389 msgid "guestfs_list_devices"
13390 msgstr ""
13391
13392 # type: verbatim
13393 #. type: verbatim
13394 #: ../src/guestfs-actions.pod:3553
13395 #, no-wrap
13396 msgid ""
13397 " char **\n"
13398 " guestfs_list_devices (guestfs_h *g);\n"
13399 "\n"
13400 msgstr ""
13401
13402 # type: textblock
13403 #. type: textblock
13404 #: ../src/guestfs-actions.pod:3556 ../fish/guestfish-actions.pod:2479
13405 msgid "List all the block devices."
13406 msgstr ""
13407
13408 # type: textblock
13409 #. type: textblock
13410 #: ../src/guestfs-actions.pod:3558 ../fish/guestfish-actions.pod:2481
13411 msgid "The full block device names are returned, eg. C</dev/sda>."
13412 msgstr ""
13413
13414 # type: =head2
13415 #. type: =head2
13416 #: ../src/guestfs-actions.pod:3568
13417 msgid "guestfs_list_filesystems"
13418 msgstr ""
13419
13420 # type: verbatim
13421 #. type: verbatim
13422 #: ../src/guestfs-actions.pod:3570
13423 #, no-wrap
13424 msgid ""
13425 " char **\n"
13426 " guestfs_list_filesystems (guestfs_h *g);\n"
13427 "\n"
13428 msgstr ""
13429
13430 # type: textblock
13431 #. type: textblock
13432 #: ../src/guestfs-actions.pod:3573 ../fish/guestfish-actions.pod:2489
13433 msgid ""
13434 "This inspection command looks for filesystems on partitions, block devices "
13435 "and logical volumes, returning a list of devices containing filesystems and "
13436 "their type."
13437 msgstr ""
13438
13439 # type: textblock
13440 #. type: textblock
13441 #: ../src/guestfs-actions.pod:3577 ../fish/guestfish-actions.pod:2493
13442 msgid ""
13443 "The return value is a hash, where the keys are the devices containing "
13444 "filesystems, and the values are the filesystem types.  For example:"
13445 msgstr ""
13446
13447 # type: verbatim
13448 #. type: verbatim
13449 #: ../src/guestfs-actions.pod:3581 ../fish/guestfish-actions.pod:2497
13450 #, no-wrap
13451 msgid ""
13452 " \"/dev/sda1\" => \"ntfs\"\n"
13453 " \"/dev/sda2\" => \"ext2\"\n"
13454 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
13455 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
13456 "\n"
13457 msgstr ""
13458
13459 # type: textblock
13460 #. type: textblock
13461 #: ../src/guestfs-actions.pod:3586 ../fish/guestfish-actions.pod:2502
13462 msgid ""
13463 "The value can have the special value \"unknown\", meaning the content of the "
13464 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
13465 msgstr ""
13466
13467 # type: textblock
13468 #. type: textblock
13469 #: ../src/guestfs-actions.pod:3590
13470 msgid ""
13471 "This command runs other libguestfs commands, which might include "
13472 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
13473 "soon after launch and only when nothing is mounted."
13474 msgstr ""
13475
13476 # type: textblock
13477 #. type: textblock
13478 #: ../src/guestfs-actions.pod:3594
13479 msgid ""
13480 "Not all of the filesystems returned will be mountable.  In particular, swap "
13481 "partitions are returned in the list.  Also this command does not check that "
13482 "each filesystem found is valid and mountable, and some filesystems might be "
13483 "mountable but require special options.  Filesystems may not all belong to a "
13484 "single logical operating system (use C<guestfs_inspect_os> to look for OSes)."
13485 msgstr ""
13486
13487 # type: textblock
13488 #. type: textblock
13489 #: ../src/guestfs-actions.pod:3608 ../src/guestfs-actions.pod:5229
13490 msgid "(Added in 1.5.15)"
13491 msgstr ""
13492
13493 # type: =head2
13494 #. type: =head2
13495 #: ../src/guestfs-actions.pod:3610
13496 msgid "guestfs_list_partitions"
13497 msgstr ""
13498
13499 # type: verbatim
13500 #. type: verbatim
13501 #: ../src/guestfs-actions.pod:3612
13502 #, no-wrap
13503 msgid ""
13504 " char **\n"
13505 " guestfs_list_partitions (guestfs_h *g);\n"
13506 "\n"
13507 msgstr ""
13508
13509 # type: textblock
13510 #. type: textblock
13511 #: ../src/guestfs-actions.pod:3615 ../fish/guestfish-actions.pod:2522
13512 msgid "List all the partitions detected on all block devices."
13513 msgstr ""
13514
13515 # type: textblock
13516 #. type: textblock
13517 #: ../src/guestfs-actions.pod:3617 ../fish/guestfish-actions.pod:2524
13518 msgid "The full partition device names are returned, eg. C</dev/sda1>"
13519 msgstr ""
13520
13521 # type: textblock
13522 #. type: textblock
13523 #: ../src/guestfs-actions.pod:3619
13524 msgid ""
13525 "This does not return logical volumes.  For that you will need to call "
13526 "C<guestfs_lvs>."
13527 msgstr ""
13528
13529 # type: =head2
13530 #. type: =head2
13531 #: ../src/guestfs-actions.pod:3630
13532 msgid "guestfs_ll"
13533 msgstr ""
13534
13535 # type: verbatim
13536 #. type: verbatim
13537 #: ../src/guestfs-actions.pod:3632
13538 #, no-wrap
13539 msgid ""
13540 " char *\n"
13541 " guestfs_ll (guestfs_h *g,\n"
13542 "             const char *directory);\n"
13543 "\n"
13544 msgstr ""
13545
13546 # type: textblock
13547 #. type: textblock
13548 #: ../src/guestfs-actions.pod:3636 ../fish/guestfish-actions.pod:2535
13549 msgid ""
13550 "List the files in C<directory> (relative to the root directory, there is no "
13551 "cwd) in the format of 'ls -la'."
13552 msgstr ""
13553
13554 # type: textblock
13555 #. type: textblock
13556 #: ../src/guestfs-actions.pod:3639 ../fish/guestfish-actions.pod:2538
13557 msgid ""
13558 "This command is mostly useful for interactive sessions.  It is I<not> "
13559 "intended that you try to parse the output string."
13560 msgstr ""
13561
13562 # type: =head2
13563 #. type: =head2
13564 #: ../src/guestfs-actions.pod:3647
13565 msgid "guestfs_ln"
13566 msgstr ""
13567
13568 # type: verbatim
13569 #. type: verbatim
13570 #: ../src/guestfs-actions.pod:3649
13571 #, no-wrap
13572 msgid ""
13573 " int\n"
13574 " guestfs_ln (guestfs_h *g,\n"
13575 "             const char *target,\n"
13576 "             const char *linkname);\n"
13577 "\n"
13578 msgstr ""
13579
13580 # type: textblock
13581 #. type: textblock
13582 #: ../src/guestfs-actions.pod:3654 ../fish/guestfish-actions.pod:2545
13583 msgid "This command creates a hard link using the C<ln> command."
13584 msgstr ""
13585
13586 # type: =head2
13587 #. type: =head2
13588 #: ../src/guestfs-actions.pod:3660
13589 msgid "guestfs_ln_f"
13590 msgstr ""
13591
13592 # type: verbatim
13593 #. type: verbatim
13594 #: ../src/guestfs-actions.pod:3662
13595 #, no-wrap
13596 msgid ""
13597 " int\n"
13598 " guestfs_ln_f (guestfs_h *g,\n"
13599 "               const char *target,\n"
13600 "               const char *linkname);\n"
13601 "\n"
13602 msgstr ""
13603
13604 #. type: textblock
13605 #: ../src/guestfs-actions.pod:3667 ../fish/guestfish-actions.pod:2551
13606 msgid ""
13607 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
13608 "option removes the link (C<linkname>) if it exists already."
13609 msgstr ""
13610
13611 # type: =head2
13612 #. type: =head2
13613 #: ../src/guestfs-actions.pod:3674
13614 msgid "guestfs_ln_s"
13615 msgstr ""
13616
13617 # type: verbatim
13618 #. type: verbatim
13619 #: ../src/guestfs-actions.pod:3676
13620 #, no-wrap
13621 msgid ""
13622 " int\n"
13623 " guestfs_ln_s (guestfs_h *g,\n"
13624 "               const char *target,\n"
13625 "               const char *linkname);\n"
13626 "\n"
13627 msgstr ""
13628
13629 # type: textblock
13630 #. type: textblock
13631 #: ../src/guestfs-actions.pod:3681 ../fish/guestfish-actions.pod:2558
13632 msgid "This command creates a symbolic link using the C<ln -s> command."
13633 msgstr ""
13634
13635 # type: =head2
13636 #. type: =head2
13637 #: ../src/guestfs-actions.pod:3687
13638 msgid "guestfs_ln_sf"
13639 msgstr ""
13640
13641 # type: verbatim
13642 #. type: verbatim
13643 #: ../src/guestfs-actions.pod:3689
13644 #, no-wrap
13645 msgid ""
13646 " int\n"
13647 " guestfs_ln_sf (guestfs_h *g,\n"
13648 "                const char *target,\n"
13649 "                const char *linkname);\n"
13650 "\n"
13651 msgstr ""
13652
13653 #. type: textblock
13654 #: ../src/guestfs-actions.pod:3694 ../fish/guestfish-actions.pod:2564
13655 msgid ""
13656 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
13657 "option removes the link (C<linkname>) if it exists already."
13658 msgstr ""
13659
13660 # type: =head2
13661 #. type: =head2
13662 #: ../src/guestfs-actions.pod:3701
13663 msgid "guestfs_lremovexattr"
13664 msgstr ""
13665
13666 # type: verbatim
13667 #. type: verbatim
13668 #: ../src/guestfs-actions.pod:3703
13669 #, no-wrap
13670 msgid ""
13671 " int\n"
13672 " guestfs_lremovexattr (guestfs_h *g,\n"
13673 "                       const char *xattr,\n"
13674 "                       const char *path);\n"
13675 "\n"
13676 msgstr ""
13677
13678 # type: textblock
13679 #. type: textblock
13680 #: ../src/guestfs-actions.pod:3708
13681 msgid ""
13682 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
13683 "link, then it removes an extended attribute of the link itself."
13684 msgstr ""
13685
13686 # type: =head2
13687 #. type: =head2
13688 #: ../src/guestfs-actions.pod:3716
13689 msgid "guestfs_ls"
13690 msgstr ""
13691
13692 # type: verbatim
13693 #. type: verbatim
13694 #: ../src/guestfs-actions.pod:3718
13695 #, no-wrap
13696 msgid ""
13697 " char **\n"
13698 " guestfs_ls (guestfs_h *g,\n"
13699 "             const char *directory);\n"
13700 "\n"
13701 msgstr ""
13702
13703 # type: textblock
13704 #. type: textblock
13705 #: ../src/guestfs-actions.pod:3722 ../fish/guestfish-actions.pod:2579
13706 msgid ""
13707 "List the files in C<directory> (relative to the root directory, there is no "
13708 "cwd).  The '.' and '..' entries are not returned, but hidden files are shown."
13709 msgstr ""
13710
13711 # type: textblock
13712 #. type: textblock
13713 #: ../src/guestfs-actions.pod:3726
13714 msgid ""
13715 "This command is mostly useful for interactive sessions.  Programs should "
13716 "probably use C<guestfs_readdir> instead."
13717 msgstr ""
13718
13719 # type: =head2
13720 #. type: =head2
13721 #: ../src/guestfs-actions.pod:3735
13722 msgid "guestfs_lsetxattr"
13723 msgstr ""
13724
13725 # type: verbatim
13726 #. type: verbatim
13727 #: ../src/guestfs-actions.pod:3737
13728 #, no-wrap
13729 msgid ""
13730 " int\n"
13731 " guestfs_lsetxattr (guestfs_h *g,\n"
13732 "                    const char *xattr,\n"
13733 "                    const char *val,\n"
13734 "                    int vallen,\n"
13735 "                    const char *path);\n"
13736 "\n"
13737 msgstr ""
13738
13739 # type: textblock
13740 #. type: textblock
13741 #: ../src/guestfs-actions.pod:3744
13742 msgid ""
13743 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
13744 "then it sets an extended attribute of the link itself."
13745 msgstr ""
13746
13747 # type: =head2
13748 #. type: =head2
13749 #: ../src/guestfs-actions.pod:3752
13750 msgid "guestfs_lstat"
13751 msgstr ""
13752
13753 # type: verbatim
13754 #. type: verbatim
13755 #: ../src/guestfs-actions.pod:3754
13756 #, no-wrap
13757 msgid ""
13758 " struct guestfs_stat *\n"
13759 " guestfs_lstat (guestfs_h *g,\n"
13760 "                const char *path);\n"
13761 "\n"
13762 msgstr ""
13763
13764 # type: textblock
13765 #. type: textblock
13766 #: ../src/guestfs-actions.pod:3758 ../src/guestfs-actions.pod:6360
13767 #: ../fish/guestfish-actions.pod:2598 ../fish/guestfish-actions.pod:4311
13768 msgid "Returns file information for the given C<path>."
13769 msgstr ""
13770
13771 # type: textblock
13772 #. type: textblock
13773 #: ../src/guestfs-actions.pod:3760
13774 msgid ""
13775 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
13776 "link, then the link is stat-ed, not the file it refers to."
13777 msgstr ""
13778
13779 # type: textblock
13780 #. type: textblock
13781 #: ../src/guestfs-actions.pod:3764 ../fish/guestfish-actions.pod:2604
13782 msgid "This is the same as the C<lstat(2)> system call."
13783 msgstr ""
13784
13785 # type: textblock
13786 #. type: textblock
13787 #: ../src/guestfs-actions.pod:3766 ../src/guestfs-actions.pod:6364
13788 msgid ""
13789 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
13790 "error.  I<The caller must call C<guestfs_free_stat> after use>."
13791 msgstr ""
13792
13793 # type: textblock
13794 #. type: textblock
13795 #: ../src/guestfs-actions.pod:3770 ../src/guestfs-actions.pod:6368
13796 #: ../src/guestfs-actions.pod:6386 ../src/guestfs-actions.pod:6767
13797 msgid "(Added in 0.9.2)"
13798 msgstr ""
13799
13800 # type: =head2
13801 #. type: =head2
13802 #: ../src/guestfs-actions.pod:3772
13803 msgid "guestfs_lstatlist"
13804 msgstr ""
13805
13806 # type: verbatim
13807 #. type: verbatim
13808 #: ../src/guestfs-actions.pod:3774
13809 #, no-wrap
13810 msgid ""
13811 " struct guestfs_stat_list *\n"
13812 " guestfs_lstatlist (guestfs_h *g,\n"
13813 "                    const char *path,\n"
13814 "                    char *const *names);\n"
13815 "\n"
13816 msgstr ""
13817
13818 # type: textblock
13819 #. type: textblock
13820 #: ../src/guestfs-actions.pod:3779
13821 msgid ""
13822 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
13823 "files, where all files are in the directory C<path>.  C<names> is the list "
13824 "of files from this directory."
13825 msgstr ""
13826
13827 # type: textblock
13828 #. type: textblock
13829 #: ../src/guestfs-actions.pod:3783 ../fish/guestfish-actions.pod:2614
13830 msgid ""
13831 "On return you get a list of stat structs, with a one-to-one correspondence "
13832 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
13833 "then the C<ino> field of that structure is set to C<-1>."
13834 msgstr ""
13835
13836 # type: textblock
13837 #. type: textblock
13838 #: ../src/guestfs-actions.pod:3788
13839 msgid ""
13840 "This call is intended for programs that want to efficiently list a directory "
13841 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
13842 "for a similarly efficient call for getting extended attributes.  Very long "
13843 "directory listings might cause the protocol message size to be exceeded, "
13844 "causing this call to fail.  The caller must split up such requests into "
13845 "smaller groups of names."
13846 msgstr ""
13847
13848 # type: textblock
13849 #. type: textblock
13850 #: ../src/guestfs-actions.pod:3796
13851 msgid ""
13852 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
13853 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
13854 msgstr ""
13855
13856 # type: =head2
13857 #. type: =head2
13858 #: ../src/guestfs-actions.pod:3802
13859 msgid "guestfs_luks_add_key"
13860 msgstr ""
13861
13862 # type: verbatim
13863 #. type: verbatim
13864 #: ../src/guestfs-actions.pod:3804
13865 #, no-wrap
13866 msgid ""
13867 " int\n"
13868 " guestfs_luks_add_key (guestfs_h *g,\n"
13869 "                       const char *device,\n"
13870 "                       const char *key,\n"
13871 "                       const char *newkey,\n"
13872 "                       int keyslot);\n"
13873 "\n"
13874 msgstr ""
13875
13876 # type: textblock
13877 #. type: textblock
13878 #: ../src/guestfs-actions.pod:3811 ../fish/guestfish-actions.pod:2631
13879 msgid ""
13880 "This command adds a new key on LUKS device C<device>.  C<key> is any "
13881 "existing key, and is used to access the device.  C<newkey> is the new key to "
13882 "add.  C<keyslot> is the key slot that will be replaced."
13883 msgstr ""
13884
13885 # type: textblock
13886 #. type: textblock
13887 #: ../src/guestfs-actions.pod:3816
13888 msgid ""
13889 "Note that if C<keyslot> already contains a key, then this command will "
13890 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
13891 msgstr ""
13892
13893 # type: textblock
13894 #. type: textblock
13895 #: ../src/guestfs-actions.pod:3822 ../src/guestfs-actions.pod:3862
13896 #: ../src/guestfs-actions.pod:3885 ../src/guestfs-actions.pod:3905
13897 #: ../src/guestfs-actions.pod:3937 ../src/guestfs-actions.pod:3956
13898 msgid ""
13899 "This function takes a key or passphrase parameter which could contain "
13900 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
13901 "information."
13902 msgstr ""
13903
13904 # type: textblock
13905 #. type: textblock
13906 #: ../src/guestfs-actions.pod:3826 ../src/guestfs-actions.pod:3866
13907 #: ../src/guestfs-actions.pod:3889 ../src/guestfs-actions.pod:3909
13908 msgid "(Added in 1.5.2)"
13909 msgstr ""
13910
13911 # type: =head2
13912 #. type: =head2
13913 #: ../src/guestfs-actions.pod:3828
13914 msgid "guestfs_luks_close"
13915 msgstr ""
13916
13917 # type: verbatim
13918 #. type: verbatim
13919 #: ../src/guestfs-actions.pod:3830
13920 #, no-wrap
13921 msgid ""
13922 " int\n"
13923 " guestfs_luks_close (guestfs_h *g,\n"
13924 "                     const char *device);\n"
13925 "\n"
13926 msgstr ""
13927
13928 # type: textblock
13929 #. type: textblock
13930 #: ../src/guestfs-actions.pod:3834
13931 msgid ""
13932 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
13933 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
13934 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
13935 "underlying block device."
13936 msgstr ""
13937
13938 # type: textblock
13939 #. type: textblock
13940 #: ../src/guestfs-actions.pod:3842 ../src/guestfs-actions.pod:3941
13941 #: ../src/guestfs-actions.pod:3960 ../src/guestfs-actions.pod:4010
13942 #: ../src/guestfs-actions.pod:4058
13943 msgid "(Added in 1.5.1)"
13944 msgstr ""
13945
13946 # type: =head2
13947 #. type: =head2
13948 #: ../src/guestfs-actions.pod:3844
13949 msgid "guestfs_luks_format"
13950 msgstr ""
13951
13952 # type: verbatim
13953 #. type: verbatim
13954 #: ../src/guestfs-actions.pod:3846
13955 #, no-wrap
13956 msgid ""
13957 " int\n"
13958 " guestfs_luks_format (guestfs_h *g,\n"
13959 "                      const char *device,\n"
13960 "                      const char *key,\n"
13961 "                      int keyslot);\n"
13962 "\n"
13963 msgstr ""
13964
13965 # type: textblock
13966 #. type: textblock
13967 #: ../src/guestfs-actions.pod:3852 ../fish/guestfish-actions.pod:2657
13968 msgid ""
13969 "This command erases existing data on C<device> and formats the device as a "
13970 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
13971 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
13972 msgstr ""
13973
13974 # type: textblock
13975 #. type: textblock
13976 #: ../src/guestfs-actions.pod:3859 ../src/guestfs-actions.pod:3882
13977 #: ../src/guestfs-actions.pod:4022 ../src/guestfs-actions.pod:4980
13978 #: ../src/guestfs-actions.pod:5760 ../src/guestfs-actions.pod:6167
13979 #: ../src/guestfs-actions.pod:6197 ../src/guestfs-actions.pod:6230
13980 #: ../src/guestfs-actions.pod:7411 ../fish/guestfish-actions.pod:2665
13981 #: ../fish/guestfish-actions.pod:2678 ../fish/guestfish-actions.pod:2762
13982 #: ../fish/guestfish-actions.pod:3352 ../fish/guestfish-actions.pod:3872
13983 #: ../fish/guestfish-actions.pod:4182 ../fish/guestfish-actions.pod:4205
13984 #: ../fish/guestfish-actions.pod:4227 ../fish/guestfish-actions.pod:4956
13985 msgid ""
13986 "B<This command is dangerous.  Without careful use you can easily destroy all "
13987 "your data>."
13988 msgstr ""
13989
13990 # type: =head2
13991 #. type: =head2
13992 #: ../src/guestfs-actions.pod:3868
13993 msgid "guestfs_luks_format_cipher"
13994 msgstr ""
13995
13996 # type: verbatim
13997 #. type: verbatim
13998 #: ../src/guestfs-actions.pod:3870
13999 #, no-wrap
14000 msgid ""
14001 " int\n"
14002 " guestfs_luks_format_cipher (guestfs_h *g,\n"
14003 "                             const char *device,\n"
14004 "                             const char *key,\n"
14005 "                             int keyslot,\n"
14006 "                             const char *cipher);\n"
14007 "\n"
14008 msgstr ""
14009
14010 # type: textblock
14011 #. type: textblock
14012 #: ../src/guestfs-actions.pod:3877
14013 msgid ""
14014 "This command is the same as C<guestfs_luks_format> but it also allows you to "
14015 "set the C<cipher> used."
14016 msgstr ""
14017
14018 # type: =head2
14019 #. type: =head2
14020 #: ../src/guestfs-actions.pod:3891
14021 msgid "guestfs_luks_kill_slot"
14022 msgstr ""
14023
14024 # type: verbatim
14025 #. type: verbatim
14026 #: ../src/guestfs-actions.pod:3893
14027 #, no-wrap
14028 msgid ""
14029 " int\n"
14030 " guestfs_luks_kill_slot (guestfs_h *g,\n"
14031 "                         const char *device,\n"
14032 "                         const char *key,\n"
14033 "                         int keyslot);\n"
14034 "\n"
14035 msgstr ""
14036
14037 # type: textblock
14038 #. type: textblock
14039 #: ../src/guestfs-actions.pod:3899 ../fish/guestfish-actions.pod:2685
14040 msgid ""
14041 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
14042 "device C<device>.  C<key> must be one of the I<other> keys."
14043 msgstr ""
14044
14045 # type: =head2
14046 #. type: =head2
14047 #: ../src/guestfs-actions.pod:3911
14048 msgid "guestfs_luks_open"
14049 msgstr ""
14050
14051 # type: verbatim
14052 #. type: verbatim
14053 #: ../src/guestfs-actions.pod:3913
14054 #, no-wrap
14055 msgid ""
14056 " int\n"
14057 " guestfs_luks_open (guestfs_h *g,\n"
14058 "                    const char *device,\n"
14059 "                    const char *key,\n"
14060 "                    const char *mapname);\n"
14061 "\n"
14062 msgstr ""
14063
14064 # type: textblock
14065 #. type: textblock
14066 #: ../src/guestfs-actions.pod:3919 ../fish/guestfish-actions.pod:2696
14067 msgid ""
14068 "This command opens a block device which has been encrypted according to the "
14069 "Linux Unified Key Setup (LUKS) standard."
14070 msgstr ""
14071
14072 # type: textblock
14073 #. type: textblock
14074 #: ../src/guestfs-actions.pod:3922 ../fish/guestfish-actions.pod:2699
14075 msgid "C<device> is the encrypted block device or partition."
14076 msgstr ""
14077
14078 # type: textblock
14079 #. type: textblock
14080 #: ../src/guestfs-actions.pod:3924 ../fish/guestfish-actions.pod:2701
14081 msgid ""
14082 "The caller must supply one of the keys associated with the LUKS block "
14083 "device, in the C<key> parameter."
14084 msgstr ""
14085
14086 # type: textblock
14087 #. type: textblock
14088 #: ../src/guestfs-actions.pod:3927 ../fish/guestfish-actions.pod:2704
14089 msgid ""
14090 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
14091 "writes to this block device are decrypted from and encrypted to the "
14092 "underlying C<device> respectively."
14093 msgstr ""
14094
14095 # type: textblock
14096 #. type: textblock
14097 #: ../src/guestfs-actions.pod:3931
14098 msgid ""
14099 "If this block device contains LVM volume groups, then calling "
14100 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
14101 "visible."
14102 msgstr ""
14103
14104 # type: =head2
14105 #. type: =head2
14106 #: ../src/guestfs-actions.pod:3943
14107 msgid "guestfs_luks_open_ro"
14108 msgstr ""
14109
14110 # type: verbatim
14111 #. type: verbatim
14112 #: ../src/guestfs-actions.pod:3945
14113 #, no-wrap
14114 msgid ""
14115 " int\n"
14116 " guestfs_luks_open_ro (guestfs_h *g,\n"
14117 "                       const char *device,\n"
14118 "                       const char *key,\n"
14119 "                       const char *mapname);\n"
14120 "\n"
14121 msgstr ""
14122
14123 # type: textblock
14124 #. type: textblock
14125 #: ../src/guestfs-actions.pod:3951
14126 msgid ""
14127 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
14128 "created."
14129 msgstr ""
14130
14131 # type: =head2
14132 #. type: =head2
14133 #: ../src/guestfs-actions.pod:3962
14134 msgid "guestfs_lvcreate"
14135 msgstr ""
14136
14137 # type: verbatim
14138 #. type: verbatim
14139 #: ../src/guestfs-actions.pod:3964
14140 #, no-wrap
14141 msgid ""
14142 " int\n"
14143 " guestfs_lvcreate (guestfs_h *g,\n"
14144 "                   const char *logvol,\n"
14145 "                   const char *volgroup,\n"
14146 "                   int mbytes);\n"
14147 "\n"
14148 msgstr ""
14149
14150 # type: textblock
14151 #. type: textblock
14152 #: ../src/guestfs-actions.pod:3970 ../fish/guestfish-actions.pod:2729
14153 msgid ""
14154 "This creates an LVM logical volume called C<logvol> on the volume group "
14155 "C<volgroup>, with C<size> megabytes."
14156 msgstr ""
14157
14158 # type: =head2
14159 #. type: =head2
14160 #: ../src/guestfs-actions.pod:3977
14161 msgid "guestfs_lvm_canonical_lv_name"
14162 msgstr ""
14163
14164 # type: verbatim
14165 #. type: verbatim
14166 #: ../src/guestfs-actions.pod:3979
14167 #, no-wrap
14168 msgid ""
14169 " char *\n"
14170 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
14171 "                                const char *lvname);\n"
14172 "\n"
14173 msgstr ""
14174
14175 # type: textblock
14176 #. type: textblock
14177 #: ../src/guestfs-actions.pod:3983 ../fish/guestfish-actions.pod:2736
14178 msgid ""
14179 "This converts alternative naming schemes for LVs that you might find to the "
14180 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to C</dev/VG/"
14181 "LV>."
14182 msgstr ""
14183
14184 # type: textblock
14185 #. type: textblock
14186 #: ../src/guestfs-actions.pod:3987 ../fish/guestfish-actions.pod:2740
14187 msgid ""
14188 "This command returns an error if the C<lvname> parameter does not refer to a "
14189 "logical volume."
14190 msgstr ""
14191
14192 # type: textblock
14193 #. type: textblock
14194 #: ../src/guestfs-actions.pod:3990
14195 msgid "See also C<guestfs_is_lv>."
14196 msgstr ""
14197
14198 # type: textblock
14199 #. type: textblock
14200 #: ../src/guestfs-actions.pod:3995
14201 msgid "(Added in 1.5.24)"
14202 msgstr ""
14203
14204 # type: =head2
14205 #. type: =head2
14206 #: ../src/guestfs-actions.pod:3997
14207 msgid "guestfs_lvm_clear_filter"
14208 msgstr ""
14209
14210 # type: verbatim
14211 #. type: verbatim
14212 #: ../src/guestfs-actions.pod:3999
14213 #, no-wrap
14214 msgid ""
14215 " int\n"
14216 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
14217 "\n"
14218 msgstr ""
14219
14220 # type: textblock
14221 #. type: textblock
14222 #: ../src/guestfs-actions.pod:4002
14223 msgid ""
14224 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
14225 "see every block device."
14226 msgstr ""
14227
14228 # type: textblock
14229 #. type: textblock
14230 #: ../src/guestfs-actions.pod:4005 ../src/guestfs-actions.pod:4047
14231 #: ../fish/guestfish-actions.pod:2752 ../fish/guestfish-actions.pod:2783
14232 msgid ""
14233 "This command also clears the LVM cache and performs a volume group scan."
14234 msgstr ""
14235
14236 # type: =head2
14237 #. type: =head2
14238 #: ../src/guestfs-actions.pod:4012
14239 msgid "guestfs_lvm_remove_all"
14240 msgstr ""
14241
14242 # type: verbatim
14243 #. type: verbatim
14244 #: ../src/guestfs-actions.pod:4014
14245 #, no-wrap
14246 msgid ""
14247 " int\n"
14248 " guestfs_lvm_remove_all (guestfs_h *g);\n"
14249 "\n"
14250 msgstr ""
14251
14252 # type: textblock
14253 #. type: textblock
14254 #: ../src/guestfs-actions.pod:4017 ../fish/guestfish-actions.pod:2759
14255 msgid ""
14256 "This command removes all LVM logical volumes, volume groups and physical "
14257 "volumes."
14258 msgstr ""
14259
14260 # type: =head2
14261 #. type: =head2
14262 #: ../src/guestfs-actions.pod:4027
14263 msgid "guestfs_lvm_set_filter"
14264 msgstr ""
14265
14266 # type: verbatim
14267 #. type: verbatim
14268 #: ../src/guestfs-actions.pod:4029
14269 #, no-wrap
14270 msgid ""
14271 " int\n"
14272 " guestfs_lvm_set_filter (guestfs_h *g,\n"
14273 "                         char *const *devices);\n"
14274 "\n"
14275 msgstr ""
14276
14277 # type: textblock
14278 #. type: textblock
14279 #: ../src/guestfs-actions.pod:4033 ../fish/guestfish-actions.pod:2769
14280 msgid ""
14281 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
14282 "block devices in the list C<devices>, and will ignore all other attached "
14283 "block devices."
14284 msgstr ""
14285
14286 # type: textblock
14287 #. type: textblock
14288 #: ../src/guestfs-actions.pod:4037 ../fish/guestfish-actions.pod:2773
14289 msgid ""
14290 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
14291 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
14292 "there are two types of duplication possible: either cloned PVs/VGs which "
14293 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
14294 "same name.  In normal operation you cannot create this situation, but you "
14295 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
14296 "inside the LVM metadata."
14297 msgstr ""
14298
14299 # type: textblock
14300 #. type: textblock
14301 #: ../src/guestfs-actions.pod:4050 ../fish/guestfish-actions.pod:2786
14302 msgid "You can filter whole block devices or individual partitions."
14303 msgstr ""
14304
14305 # type: textblock
14306 #. type: textblock
14307 #: ../src/guestfs-actions.pod:4052 ../fish/guestfish-actions.pod:2788
14308 msgid ""
14309 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
14310 "filesystem), even if you are not filtering out that VG."
14311 msgstr ""
14312
14313 # type: =head2
14314 #. type: =head2
14315 #: ../src/guestfs-actions.pod:4060
14316 msgid "guestfs_lvremove"
14317 msgstr ""
14318
14319 # type: verbatim
14320 #. type: verbatim
14321 #: ../src/guestfs-actions.pod:4062
14322 #, no-wrap
14323 msgid ""
14324 " int\n"
14325 " guestfs_lvremove (guestfs_h *g,\n"
14326 "                   const char *device);\n"
14327 "\n"
14328 msgstr ""
14329
14330 # type: textblock
14331 #. type: textblock
14332 #: ../src/guestfs-actions.pod:4066 ../fish/guestfish-actions.pod:2796
14333 msgid ""
14334 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
14335 "LV, such as C</dev/VG/LV>."
14336 msgstr ""
14337
14338 # type: textblock
14339 #. type: textblock
14340 #: ../src/guestfs-actions.pod:4069 ../fish/guestfish-actions.pod:2799
14341 msgid ""
14342 "You can also remove all LVs in a volume group by specifying the VG name, C</"
14343 "dev/VG>."
14344 msgstr ""
14345
14346 # type: textblock
14347 #. type: textblock
14348 #: ../src/guestfs-actions.pod:4074 ../src/guestfs-actions.pod:5326
14349 #: ../src/guestfs-actions.pod:7143
14350 msgid "(Added in 1.0.13)"
14351 msgstr ""
14352
14353 # type: =head2
14354 #. type: =head2
14355 #: ../src/guestfs-actions.pod:4076
14356 msgid "guestfs_lvrename"
14357 msgstr ""
14358
14359 # type: verbatim
14360 #. type: verbatim
14361 #: ../src/guestfs-actions.pod:4078
14362 #, no-wrap
14363 msgid ""
14364 " int\n"
14365 " guestfs_lvrename (guestfs_h *g,\n"
14366 "                   const char *logvol,\n"
14367 "                   const char *newlogvol);\n"
14368 "\n"
14369 msgstr ""
14370
14371 # type: textblock
14372 #. type: textblock
14373 #: ../src/guestfs-actions.pod:4083 ../fish/guestfish-actions.pod:2806
14374 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
14375 msgstr ""
14376
14377 # type: textblock
14378 #. type: textblock
14379 #: ../src/guestfs-actions.pod:4087 ../src/guestfs-actions.pod:7156
14380 msgid "(Added in 1.0.83)"
14381 msgstr ""
14382
14383 # type: =head2
14384 #. type: =head2
14385 #: ../src/guestfs-actions.pod:4089
14386 msgid "guestfs_lvresize"
14387 msgstr ""
14388
14389 # type: verbatim
14390 #. type: verbatim
14391 #: ../src/guestfs-actions.pod:4091
14392 #, no-wrap
14393 msgid ""
14394 " int\n"
14395 " guestfs_lvresize (guestfs_h *g,\n"
14396 "                   const char *device,\n"
14397 "                   int mbytes);\n"
14398 "\n"
14399 msgstr ""
14400
14401 # type: textblock
14402 #. type: textblock
14403 #: ../src/guestfs-actions.pod:4096 ../fish/guestfish-actions.pod:2812
14404 msgid ""
14405 "This resizes (expands or shrinks) an existing LVM logical volume to "
14406 "C<mbytes>.  When reducing, data in the reduced part is lost."
14407 msgstr ""
14408
14409 # type: =head2
14410 #. type: =head2
14411 #: ../src/guestfs-actions.pod:4104
14412 msgid "guestfs_lvresize_free"
14413 msgstr ""
14414
14415 # type: verbatim
14416 #. type: verbatim
14417 #: ../src/guestfs-actions.pod:4106
14418 #, no-wrap
14419 msgid ""
14420 " int\n"
14421 " guestfs_lvresize_free (guestfs_h *g,\n"
14422 "                        const char *lv,\n"
14423 "                        int percent);\n"
14424 "\n"
14425 msgstr ""
14426
14427 # type: textblock
14428 #. type: textblock
14429 #: ../src/guestfs-actions.pod:4111 ../fish/guestfish-actions.pod:2820
14430 msgid ""
14431 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
14432 "remaining free space in the volume group.  Commonly you would call this with "
14433 "pc = 100 which expands the logical volume as much as possible, using all "
14434 "remaining free space in the volume group."
14435 msgstr ""
14436
14437 # type: textblock
14438 #. type: textblock
14439 #: ../src/guestfs-actions.pod:4119
14440 msgid "(Added in 1.3.3)"
14441 msgstr ""
14442
14443 # type: =head2
14444 #. type: =head2
14445 #: ../src/guestfs-actions.pod:4121
14446 msgid "guestfs_lvs"
14447 msgstr ""
14448
14449 # type: verbatim
14450 #. type: verbatim
14451 #: ../src/guestfs-actions.pod:4123
14452 #, no-wrap
14453 msgid ""
14454 " char **\n"
14455 " guestfs_lvs (guestfs_h *g);\n"
14456 "\n"
14457 msgstr ""
14458
14459 # type: textblock
14460 #. type: textblock
14461 #: ../src/guestfs-actions.pod:4126 ../fish/guestfish-actions.pod:2830
14462 msgid ""
14463 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
14464 "(8)> command."
14465 msgstr ""
14466
14467 # type: textblock
14468 #. type: textblock
14469 #: ../src/guestfs-actions.pod:4129 ../fish/guestfish-actions.pod:2833
14470 msgid ""
14471 "This returns a list of the logical volume device names (eg. C</dev/"
14472 "VolGroup00/LogVol00>)."
14473 msgstr ""
14474
14475 # type: textblock
14476 #. type: textblock
14477 #: ../src/guestfs-actions.pod:4132
14478 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
14479 msgstr ""
14480
14481 # type: =head2
14482 #. type: =head2
14483 #: ../src/guestfs-actions.pod:4140
14484 msgid "guestfs_lvs_full"
14485 msgstr ""
14486
14487 # type: verbatim
14488 #. type: verbatim
14489 #: ../src/guestfs-actions.pod:4142
14490 #, no-wrap
14491 msgid ""
14492 " struct guestfs_lvm_lv_list *\n"
14493 " guestfs_lvs_full (guestfs_h *g);\n"
14494 "\n"
14495 msgstr ""
14496
14497 # type: textblock
14498 #. type: textblock
14499 #: ../src/guestfs-actions.pod:4145 ../fish/guestfish-actions.pod:2842
14500 msgid ""
14501 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
14502 "(8)> command.  The \"full\" version includes all fields."
14503 msgstr ""
14504
14505 # type: textblock
14506 #. type: textblock
14507 #: ../src/guestfs-actions.pod:4148
14508 msgid ""
14509 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
14510 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after use>."
14511 msgstr ""
14512
14513 # type: =head2
14514 #. type: =head2
14515 #: ../src/guestfs-actions.pod:4154
14516 msgid "guestfs_lvuuid"
14517 msgstr ""
14518
14519 # type: verbatim
14520 #. type: verbatim
14521 #: ../src/guestfs-actions.pod:4156
14522 #, no-wrap
14523 msgid ""
14524 " char *\n"
14525 " guestfs_lvuuid (guestfs_h *g,\n"
14526 "                 const char *device);\n"
14527 "\n"
14528 msgstr ""
14529
14530 # type: textblock
14531 #. type: textblock
14532 #: ../src/guestfs-actions.pod:4160 ../fish/guestfish-actions.pod:2849
14533 msgid "This command returns the UUID of the LVM LV C<device>."
14534 msgstr ""
14535
14536 # type: =head2
14537 #. type: =head2
14538 #: ../src/guestfs-actions.pod:4167
14539 msgid "guestfs_lxattrlist"
14540 msgstr ""
14541
14542 # type: verbatim
14543 #. type: verbatim
14544 #: ../src/guestfs-actions.pod:4169
14545 #, no-wrap
14546 msgid ""
14547 " struct guestfs_xattr_list *\n"
14548 " guestfs_lxattrlist (guestfs_h *g,\n"
14549 "                     const char *path,\n"
14550 "                     char *const *names);\n"
14551 "\n"
14552 msgstr ""
14553
14554 # type: textblock
14555 #. type: textblock
14556 #: ../src/guestfs-actions.pod:4174 ../fish/guestfish-actions.pod:2855
14557 msgid ""
14558 "This call allows you to get the extended attributes of multiple files, where "
14559 "all files are in the directory C<path>.  C<names> is the list of files from "
14560 "this directory."
14561 msgstr ""
14562
14563 # type: textblock
14564 #. type: textblock
14565 #: ../src/guestfs-actions.pod:4178 ../fish/guestfish-actions.pod:2859
14566 msgid ""
14567 "On return you get a flat list of xattr structs which must be interpreted "
14568 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
14569 "C<attrval> in this struct is zero-length to indicate there was an error "
14570 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
14571 "number (the number of following attributes for this file, which could be C<"
14572 "\"0\">).  Then after the first xattr struct are the zero or more attributes "
14573 "for the first named file.  This repeats for the second and subsequent files."
14574 msgstr ""
14575
14576 # type: textblock
14577 #. type: textblock
14578 #: ../src/guestfs-actions.pod:4188
14579 msgid ""
14580 "This call is intended for programs that want to efficiently list a directory "
14581 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
14582 "a similarly efficient call for getting standard stats.  Very long directory "
14583 "listings might cause the protocol message size to be exceeded, causing this "
14584 "call to fail.  The caller must split up such requests into smaller groups of "
14585 "names."
14586 msgstr ""
14587
14588 # type: =head2
14589 #. type: =head2
14590 #: ../src/guestfs-actions.pod:4202
14591 msgid "guestfs_mkdir"
14592 msgstr ""
14593
14594 # type: verbatim
14595 #. type: verbatim
14596 #: ../src/guestfs-actions.pod:4204
14597 #, no-wrap
14598 msgid ""
14599 " int\n"
14600 " guestfs_mkdir (guestfs_h *g,\n"
14601 "                const char *path);\n"
14602 "\n"
14603 msgstr ""
14604
14605 # type: textblock
14606 #. type: textblock
14607 #: ../src/guestfs-actions.pod:4208 ../fish/guestfish-actions.pod:2881
14608 msgid "Create a directory named C<path>."
14609 msgstr ""
14610
14611 # type: =head2
14612 #. type: =head2
14613 #: ../src/guestfs-actions.pod:4214
14614 msgid "guestfs_mkdir_mode"
14615 msgstr ""
14616
14617 # type: verbatim
14618 #. type: verbatim
14619 #: ../src/guestfs-actions.pod:4216
14620 #, no-wrap
14621 msgid ""
14622 " int\n"
14623 " guestfs_mkdir_mode (guestfs_h *g,\n"
14624 "                     const char *path,\n"
14625 "                     int mode);\n"
14626 "\n"
14627 msgstr ""
14628
14629 # type: textblock
14630 #. type: textblock
14631 #: ../src/guestfs-actions.pod:4221 ../fish/guestfish-actions.pod:2887
14632 msgid ""
14633 "This command creates a directory, setting the initial permissions of the "
14634 "directory to C<mode>."
14635 msgstr ""
14636
14637 # type: textblock
14638 #. type: textblock
14639 #: ../src/guestfs-actions.pod:4224 ../fish/guestfish-actions.pod:2890
14640 msgid ""
14641 "For common Linux filesystems, the actual mode which is set will be C<mode & "
14642 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
14643 "other ways."
14644 msgstr ""
14645
14646 # type: textblock
14647 #. type: textblock
14648 #: ../src/guestfs-actions.pod:4228
14649 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
14650 msgstr ""
14651
14652 # type: =head2
14653 #. type: =head2
14654 #: ../src/guestfs-actions.pod:4234
14655 msgid "guestfs_mkdir_p"
14656 msgstr ""
14657
14658 # type: verbatim
14659 #. type: verbatim
14660 #: ../src/guestfs-actions.pod:4236
14661 #, no-wrap
14662 msgid ""
14663 " int\n"
14664 " guestfs_mkdir_p (guestfs_h *g,\n"
14665 "                  const char *path);\n"
14666 "\n"
14667 msgstr ""
14668
14669 # type: textblock
14670 #. type: textblock
14671 #: ../src/guestfs-actions.pod:4240 ../fish/guestfish-actions.pod:2900
14672 msgid ""
14673 "Create a directory named C<path>, creating any parent directories as "
14674 "necessary.  This is like the C<mkdir -p> shell command."
14675 msgstr ""
14676
14677 # type: =head2
14678 #. type: =head2
14679 #: ../src/guestfs-actions.pod:4247
14680 msgid "guestfs_mkdtemp"
14681 msgstr ""
14682
14683 # type: verbatim
14684 #. type: verbatim
14685 #: ../src/guestfs-actions.pod:4249
14686 #, no-wrap
14687 msgid ""
14688 " char *\n"
14689 " guestfs_mkdtemp (guestfs_h *g,\n"
14690 "                  const char *template);\n"
14691 "\n"
14692 msgstr ""
14693
14694 # type: textblock
14695 #. type: textblock
14696 #: ../src/guestfs-actions.pod:4253 ../fish/guestfish-actions.pod:2907
14697 msgid ""
14698 "This command creates a temporary directory.  The C<template> parameter "
14699 "should be a full pathname for the temporary directory name with the final "
14700 "six characters being \"XXXXXX\"."
14701 msgstr ""
14702
14703 # type: textblock
14704 #. type: textblock
14705 #: ../src/guestfs-actions.pod:4258 ../fish/guestfish-actions.pod:2912
14706 msgid ""
14707 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
14708 "being suitable for Windows filesystems."
14709 msgstr ""
14710
14711 # type: textblock
14712 #. type: textblock
14713 #: ../src/guestfs-actions.pod:4261 ../fish/guestfish-actions.pod:2915
14714 msgid "The name of the temporary directory that was created is returned."
14715 msgstr ""
14716
14717 # type: textblock
14718 #. type: textblock
14719 #: ../src/guestfs-actions.pod:4264 ../fish/guestfish-actions.pod:2918
14720 msgid "The temporary directory is created with mode 0700 and is owned by root."
14721 msgstr ""
14722
14723 # type: textblock
14724 #. type: textblock
14725 #: ../src/guestfs-actions.pod:4267 ../fish/guestfish-actions.pod:2921
14726 msgid ""
14727 "The caller is responsible for deleting the temporary directory and its "
14728 "contents after use."
14729 msgstr ""
14730
14731 # type: textblock
14732 #. type: textblock
14733 #: ../src/guestfs-actions.pod:4270 ../fish/guestfish-actions.pod:2924
14734 msgid "See also: L<mkdtemp(3)>"
14735 msgstr ""
14736
14737 # type: =head2
14738 #. type: =head2
14739 #: ../src/guestfs-actions.pod:4277
14740 msgid "guestfs_mke2fs_J"
14741 msgstr ""
14742
14743 # type: verbatim
14744 #. type: verbatim
14745 #: ../src/guestfs-actions.pod:4279
14746 #, no-wrap
14747 msgid ""
14748 " int\n"
14749 " guestfs_mke2fs_J (guestfs_h *g,\n"
14750 "                   const char *fstype,\n"
14751 "                   int blocksize,\n"
14752 "                   const char *device,\n"
14753 "                   const char *journal);\n"
14754 "\n"
14755 msgstr ""
14756
14757 # type: textblock
14758 #. type: textblock
14759 #: ../src/guestfs-actions.pod:4286 ../fish/guestfish-actions.pod:2930
14760 msgid ""
14761 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14762 "C<journal>.  It is equivalent to the command:"
14763 msgstr ""
14764
14765 # type: verbatim
14766 #. type: verbatim
14767 #: ../src/guestfs-actions.pod:4290 ../fish/guestfish-actions.pod:2934
14768 #, no-wrap
14769 msgid ""
14770 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
14771 "\n"
14772 msgstr ""
14773
14774 # type: textblock
14775 #. type: textblock
14776 #: ../src/guestfs-actions.pod:4292
14777 msgid "See also C<guestfs_mke2journal>."
14778 msgstr ""
14779
14780 # type: textblock
14781 #. type: textblock
14782 #: ../src/guestfs-actions.pod:4296 ../src/guestfs-actions.pod:4314
14783 #: ../src/guestfs-actions.pod:4332 ../src/guestfs-actions.pod:4348
14784 #: ../src/guestfs-actions.pod:4362 ../src/guestfs-actions.pod:4376
14785 #: ../src/guestfs-actions.pod:4435 ../src/guestfs-actions.pod:4700
14786 msgid "(Added in 1.0.68)"
14787 msgstr ""
14788
14789 # type: =head2
14790 #. type: =head2
14791 #: ../src/guestfs-actions.pod:4298
14792 msgid "guestfs_mke2fs_JL"
14793 msgstr ""
14794
14795 # type: verbatim
14796 #. type: verbatim
14797 #: ../src/guestfs-actions.pod:4300
14798 #, no-wrap
14799 msgid ""
14800 " int\n"
14801 " guestfs_mke2fs_JL (guestfs_h *g,\n"
14802 "                    const char *fstype,\n"
14803 "                    int blocksize,\n"
14804 "                    const char *device,\n"
14805 "                    const char *label);\n"
14806 "\n"
14807 msgstr ""
14808
14809 # type: textblock
14810 #. type: textblock
14811 #: ../src/guestfs-actions.pod:4307 ../fish/guestfish-actions.pod:2942
14812 msgid ""
14813 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14814 "the journal labeled C<label>."
14815 msgstr ""
14816
14817 # type: textblock
14818 #. type: textblock
14819 #: ../src/guestfs-actions.pod:4310
14820 msgid "See also C<guestfs_mke2journal_L>."
14821 msgstr ""
14822
14823 # type: =head2
14824 #. type: =head2
14825 #: ../src/guestfs-actions.pod:4316
14826 msgid "guestfs_mke2fs_JU"
14827 msgstr ""
14828
14829 # type: verbatim
14830 #. type: verbatim
14831 #: ../src/guestfs-actions.pod:4318
14832 #, no-wrap
14833 msgid ""
14834 " int\n"
14835 " guestfs_mke2fs_JU (guestfs_h *g,\n"
14836 "                    const char *fstype,\n"
14837 "                    int blocksize,\n"
14838 "                    const char *device,\n"
14839 "                    const char *uuid);\n"
14840 "\n"
14841 msgstr ""
14842
14843 # type: textblock
14844 #. type: textblock
14845 #: ../src/guestfs-actions.pod:4325 ../fish/guestfish-actions.pod:2951
14846 msgid ""
14847 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14848 "the journal with UUID C<uuid>."
14849 msgstr ""
14850
14851 # type: textblock
14852 #. type: textblock
14853 #: ../src/guestfs-actions.pod:4328
14854 msgid "See also C<guestfs_mke2journal_U>."
14855 msgstr ""
14856
14857 # type: =head2
14858 #. type: =head2
14859 #: ../src/guestfs-actions.pod:4334
14860 msgid "guestfs_mke2journal"
14861 msgstr ""
14862
14863 # type: verbatim
14864 #. type: verbatim
14865 #: ../src/guestfs-actions.pod:4336
14866 #, no-wrap
14867 msgid ""
14868 " int\n"
14869 " guestfs_mke2journal (guestfs_h *g,\n"
14870 "                      int blocksize,\n"
14871 "                      const char *device);\n"
14872 "\n"
14873 msgstr ""
14874
14875 # type: textblock
14876 #. type: textblock
14877 #: ../src/guestfs-actions.pod:4341 ../fish/guestfish-actions.pod:2960
14878 msgid ""
14879 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
14880 "command:"
14881 msgstr ""
14882
14883 # type: verbatim
14884 #. type: verbatim
14885 #: ../src/guestfs-actions.pod:4344 ../fish/guestfish-actions.pod:2963
14886 #, no-wrap
14887 msgid ""
14888 " mke2fs -O journal_dev -b blocksize device\n"
14889 "\n"
14890 msgstr ""
14891
14892 # type: =head2
14893 #. type: =head2
14894 #: ../src/guestfs-actions.pod:4350
14895 msgid "guestfs_mke2journal_L"
14896 msgstr ""
14897
14898 # type: verbatim
14899 #. type: verbatim
14900 #: ../src/guestfs-actions.pod:4352
14901 #, no-wrap
14902 msgid ""
14903 " int\n"
14904 " guestfs_mke2journal_L (guestfs_h *g,\n"
14905 "                        int blocksize,\n"
14906 "                        const char *label,\n"
14907 "                        const char *device);\n"
14908 "\n"
14909 msgstr ""
14910
14911 # type: textblock
14912 #. type: textblock
14913 #: ../src/guestfs-actions.pod:4358 ../fish/guestfish-actions.pod:2969
14914 msgid "This creates an ext2 external journal on C<device> with label C<label>."
14915 msgstr ""
14916
14917 # type: =head2
14918 #. type: =head2
14919 #: ../src/guestfs-actions.pod:4364
14920 msgid "guestfs_mke2journal_U"
14921 msgstr ""
14922
14923 # type: verbatim
14924 #. type: verbatim
14925 #: ../src/guestfs-actions.pod:4366
14926 #, no-wrap
14927 msgid ""
14928 " int\n"
14929 " guestfs_mke2journal_U (guestfs_h *g,\n"
14930 "                        int blocksize,\n"
14931 "                        const char *uuid,\n"
14932 "                        const char *device);\n"
14933 "\n"
14934 msgstr ""
14935
14936 # type: textblock
14937 #. type: textblock
14938 #: ../src/guestfs-actions.pod:4372 ../fish/guestfish-actions.pod:2975
14939 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
14940 msgstr ""
14941
14942 # type: =head2
14943 #. type: =head2
14944 #: ../src/guestfs-actions.pod:4378
14945 msgid "guestfs_mkfifo"
14946 msgstr ""
14947
14948 # type: verbatim
14949 #. type: verbatim
14950 #: ../src/guestfs-actions.pod:4380
14951 #, no-wrap
14952 msgid ""
14953 " int\n"
14954 " guestfs_mkfifo (guestfs_h *g,\n"
14955 "                 int mode,\n"
14956 "                 const char *path);\n"
14957 "\n"
14958 msgstr ""
14959
14960 # type: textblock
14961 #. type: textblock
14962 #: ../src/guestfs-actions.pod:4385
14963 msgid ""
14964 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
14965 "is just a convenient wrapper around C<guestfs_mknod>."
14966 msgstr ""
14967
14968 # type: =head2
14969 #. type: =head2
14970 #: ../src/guestfs-actions.pod:4395
14971 msgid "guestfs_mkfs"
14972 msgstr ""
14973
14974 # type: verbatim
14975 #. type: verbatim
14976 #: ../src/guestfs-actions.pod:4397
14977 #, no-wrap
14978 msgid ""
14979 " int\n"
14980 " guestfs_mkfs (guestfs_h *g,\n"
14981 "               const char *fstype,\n"
14982 "               const char *device);\n"
14983 "\n"
14984 msgstr ""
14985
14986 # type: textblock
14987 #. type: textblock
14988 #: ../src/guestfs-actions.pod:4402 ../fish/guestfish-actions.pod:2991
14989 msgid ""
14990 "This creates a filesystem on C<device> (usually a partition or LVM logical "
14991 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
14992 msgstr ""
14993
14994 # type: =head2
14995 #. type: =head2
14996 #: ../src/guestfs-actions.pod:4410
14997 msgid "guestfs_mkfs_b"
14998 msgstr ""
14999
15000 # type: verbatim
15001 #. type: verbatim
15002 #: ../src/guestfs-actions.pod:4412
15003 #, no-wrap
15004 msgid ""
15005 " int\n"
15006 " guestfs_mkfs_b (guestfs_h *g,\n"
15007 "                 const char *fstype,\n"
15008 "                 int blocksize,\n"
15009 "                 const char *device);\n"
15010 "\n"
15011 msgstr ""
15012
15013 # type: textblock
15014 #. type: textblock
15015 #: ../src/guestfs-actions.pod:4418
15016 msgid ""
15017 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
15018 "block size of the resulting filesystem.  Supported block sizes depend on the "
15019 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
15020 msgstr ""
15021
15022 # type: textblock
15023 #. type: textblock
15024 #: ../src/guestfs-actions.pod:4423 ../src/guestfs-actions.pod:4466
15025 #: ../fish/guestfish-actions.pod:3004 ../fish/guestfish-actions.pod:3031
15026 msgid ""
15027 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
15028 "cluster size."
15029 msgstr ""
15030
15031 #. type: textblock
15032 #: ../src/guestfs-actions.pod:4428
15033 msgid ""
15034 "This function is deprecated.  In new code, use the L</guestfs_mkfs_opts> "
15035 "call instead."
15036 msgstr ""
15037
15038 # type: =head2
15039 #. type: =head2
15040 #: ../src/guestfs-actions.pod:4437
15041 msgid "guestfs_mkfs_opts"
15042 msgstr ""
15043
15044 # type: verbatim
15045 #. type: verbatim
15046 #: ../src/guestfs-actions.pod:4439
15047 #, no-wrap
15048 msgid ""
15049 " int\n"
15050 " guestfs_mkfs_opts (guestfs_h *g,\n"
15051 "                    const char *fstype,\n"
15052 "                    const char *device,\n"
15053 "                    ...);\n"
15054 "\n"
15055 msgstr ""
15056
15057 #. type: verbatim
15058 #: ../src/guestfs-actions.pod:4450
15059 #, no-wrap
15060 msgid ""
15061 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
15062 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
15063 "\n"
15064 msgstr ""
15065
15066 # type: textblock
15067 #. type: textblock
15068 #: ../src/guestfs-actions.pod:4453 ../fish/guestfish-actions.pod:3018
15069 msgid ""
15070 "This function creates a filesystem on C<device>.  The filesystem type is "
15071 "C<fstype>, for example C<ext3>."
15072 msgstr ""
15073
15074 # type: =item
15075 #. type: =item
15076 #: ../src/guestfs-actions.pod:4460 ../fish/guestfish-actions.pod:3025
15077 msgid "C<blocksize>"
15078 msgstr ""
15079
15080 # type: textblock
15081 #. type: textblock
15082 #: ../src/guestfs-actions.pod:4462 ../fish/guestfish-actions.pod:3027
15083 msgid ""
15084 "The filesystem block size.  Supported block sizes depend on the filesystem "
15085 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
15086 "filesystems."
15087 msgstr ""
15088
15089 #. type: textblock
15090 #: ../src/guestfs-actions.pod:4469 ../fish/guestfish-actions.pod:3034
15091 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
15092 msgstr ""
15093
15094 #. type: =item
15095 #: ../src/guestfs-actions.pod:4471 ../fish/guestfish-actions.pod:3036
15096 msgid "C<features>"
15097 msgstr ""
15098
15099 #. type: textblock
15100 #: ../src/guestfs-actions.pod:4473 ../fish/guestfish-actions.pod:3038
15101 msgid "This passes the I<-O> parameter to the external mkfs program."
15102 msgstr ""
15103
15104 #. type: textblock
15105 #: ../src/guestfs-actions.pod:4475 ../fish/guestfish-actions.pod:3040
15106 msgid ""
15107 "For certain filesystem types, this allows extra filesystem features to be "
15108 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
15109 msgstr ""
15110
15111 #. type: textblock
15112 #: ../src/guestfs-actions.pod:4479 ../fish/guestfish-actions.pod:3044
15113 msgid ""
15114 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
15115 "type."
15116 msgstr ""
15117
15118 #. type: textblock
15119 #: ../src/guestfs-actions.pod:4486
15120 msgid "(Added in 1.7.19)"
15121 msgstr ""
15122
15123 # type: =head2
15124 #. type: =head2
15125 #: ../src/guestfs-actions.pod:4488
15126 msgid "guestfs_mkfs_opts_va"
15127 msgstr ""
15128
15129 # type: verbatim
15130 #. type: verbatim
15131 #: ../src/guestfs-actions.pod:4490
15132 #, no-wrap
15133 msgid ""
15134 " int\n"
15135 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
15136 "                       const char *fstype,\n"
15137 "                       const char *device,\n"
15138 "                       va_list args);\n"
15139 "\n"
15140 msgstr ""
15141
15142 # type: textblock
15143 #. type: textblock
15144 #: ../src/guestfs-actions.pod:4496
15145 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
15146 msgstr ""
15147
15148 # type: =head2
15149 #. type: =head2
15150 #: ../src/guestfs-actions.pod:4500
15151 msgid "guestfs_mkfs_opts_argv"
15152 msgstr ""
15153
15154 # type: verbatim
15155 #. type: verbatim
15156 #: ../src/guestfs-actions.pod:4502
15157 #, no-wrap
15158 msgid ""
15159 " int\n"
15160 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
15161 "                         const char *fstype,\n"
15162 "                         const char *device,\n"
15163 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
15164 "\n"
15165 msgstr ""
15166
15167 # type: textblock
15168 #. type: textblock
15169 #: ../src/guestfs-actions.pod:4508
15170 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
15171 msgstr ""
15172
15173 # type: =head2
15174 #. type: =head2
15175 #: ../src/guestfs-actions.pod:4512
15176 msgid "guestfs_mkmountpoint"
15177 msgstr ""
15178
15179 # type: verbatim
15180 #. type: verbatim
15181 #: ../src/guestfs-actions.pod:4514
15182 #, no-wrap
15183 msgid ""
15184 " int\n"
15185 " guestfs_mkmountpoint (guestfs_h *g,\n"
15186 "                       const char *exemptpath);\n"
15187 "\n"
15188 msgstr ""
15189
15190 # type: textblock
15191 #. type: textblock
15192 #: ../src/guestfs-actions.pod:4518
15193 msgid ""
15194 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
15195 "that can be used to create extra mountpoints before mounting the first "
15196 "filesystem."
15197 msgstr ""
15198
15199 # type: textblock
15200 #. type: textblock
15201 #: ../src/guestfs-actions.pod:4522 ../fish/guestfish-actions.pod:3059
15202 msgid ""
15203 "These calls are I<only> necessary in some very limited circumstances, mainly "
15204 "the case where you want to mount a mix of unrelated and/or read-only "
15205 "filesystems together."
15206 msgstr ""
15207
15208 # type: textblock
15209 #. type: textblock
15210 #: ../src/guestfs-actions.pod:4526 ../fish/guestfish-actions.pod:3063
15211 msgid ""
15212 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
15213 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
15214 "inside that.  You can unpack this as follows in guestfish:"
15215 msgstr ""
15216
15217 # type: verbatim
15218 #. type: verbatim
15219 #: ../src/guestfs-actions.pod:4531 ../fish/guestfish-actions.pod:3068
15220 #, no-wrap
15221 msgid ""
15222 " add-ro Fedora-11-i686-Live.iso\n"
15223 " run\n"
15224 " mkmountpoint /cd\n"
15225 " mkmountpoint /sqsh\n"
15226 " mkmountpoint /ext3fs\n"
15227 " mount /dev/sda /cd\n"
15228 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
15229 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
15230 "\n"
15231 msgstr ""
15232
15233 # type: textblock
15234 #. type: textblock
15235 #: ../src/guestfs-actions.pod:4540 ../fish/guestfish-actions.pod:3077
15236 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
15237 msgstr ""
15238
15239 # type: textblock
15240 #. type: textblock
15241 #: ../src/guestfs-actions.pod:4542
15242 msgid ""
15243 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
15244 "may get unexpected errors if you try to mix these calls.  It is safest to "
15245 "manually unmount filesystems and remove mountpoints after use."
15246 msgstr ""
15247
15248 # type: textblock
15249 #. type: textblock
15250 #: ../src/guestfs-actions.pod:4546
15251 msgid ""
15252 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
15253 "first, so for this to work for manual mountpoints, you must ensure that the "
15254 "innermost mountpoints have the longest pathnames, as in the example code "
15255 "above."
15256 msgstr ""
15257
15258 # type: textblock
15259 #. type: textblock
15260 #: ../src/guestfs-actions.pod:4551 ../fish/guestfish-actions.pod:3088
15261 msgid ""
15262 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
15263 msgstr ""
15264
15265 #. type: textblock
15266 #: ../src/guestfs-actions.pod:4553
15267 msgid ""
15268 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
15269 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
15270 "can also trigger these issues."
15271 msgstr ""
15272
15273 # type: textblock
15274 #. type: textblock
15275 #: ../src/guestfs-actions.pod:4559 ../src/guestfs-actions.pod:4825
15276 #: ../src/guestfs-actions.pod:5744
15277 msgid "(Added in 1.0.62)"
15278 msgstr ""
15279
15280 # type: =head2
15281 #. type: =head2
15282 #: ../src/guestfs-actions.pod:4561
15283 msgid "guestfs_mknod"
15284 msgstr ""
15285
15286 # type: verbatim
15287 #. type: verbatim
15288 #: ../src/guestfs-actions.pod:4563
15289 #, no-wrap
15290 msgid ""
15291 " int\n"
15292 " guestfs_mknod (guestfs_h *g,\n"
15293 "                int mode,\n"
15294 "                int devmajor,\n"
15295 "                int devminor,\n"
15296 "                const char *path);\n"
15297 "\n"
15298 msgstr ""
15299
15300 # type: textblock
15301 #. type: textblock
15302 #: ../src/guestfs-actions.pod:4570 ../fish/guestfish-actions.pod:3098
15303 msgid ""
15304 "This call creates block or character special devices, or named pipes (FIFOs)."
15305 msgstr ""
15306
15307 # type: textblock
15308 #. type: textblock
15309 #: ../src/guestfs-actions.pod:4573 ../fish/guestfish-actions.pod:3101
15310 msgid ""
15311 "The C<mode> parameter should be the mode, using the standard constants.  "
15312 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
15313 "used when creating block and character special devices."
15314 msgstr ""
15315
15316 # type: textblock
15317 #. type: textblock
15318 #: ../src/guestfs-actions.pod:4578
15319 msgid ""
15320 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
15321 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
15322 "regular file).  These constants are available in the standard Linux header "
15323 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
15324 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
15325 "the appropriate constant for you."
15326 msgstr ""
15327
15328 # type: =head2
15329 #. type: =head2
15330 #: ../src/guestfs-actions.pod:4592
15331 msgid "guestfs_mknod_b"
15332 msgstr ""
15333
15334 # type: verbatim
15335 #. type: verbatim
15336 #: ../src/guestfs-actions.pod:4594
15337 #, no-wrap
15338 msgid ""
15339 " int\n"
15340 " guestfs_mknod_b (guestfs_h *g,\n"
15341 "                  int mode,\n"
15342 "                  int devmajor,\n"
15343 "                  int devminor,\n"
15344 "                  const char *path);\n"
15345 "\n"
15346 msgstr ""
15347
15348 # type: textblock
15349 #. type: textblock
15350 #: ../src/guestfs-actions.pod:4601
15351 msgid ""
15352 "This call creates a block device node called C<path> with mode C<mode> and "
15353 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
15354 "wrapper around C<guestfs_mknod>."
15355 msgstr ""
15356
15357 # type: =head2
15358 #. type: =head2
15359 #: ../src/guestfs-actions.pod:4611
15360 msgid "guestfs_mknod_c"
15361 msgstr ""
15362
15363 # type: verbatim
15364 #. type: verbatim
15365 #: ../src/guestfs-actions.pod:4613
15366 #, no-wrap
15367 msgid ""
15368 " int\n"
15369 " guestfs_mknod_c (guestfs_h *g,\n"
15370 "                  int mode,\n"
15371 "                  int devmajor,\n"
15372 "                  int devminor,\n"
15373 "                  const char *path);\n"
15374 "\n"
15375 msgstr ""
15376
15377 # type: textblock
15378 #. type: textblock
15379 #: ../src/guestfs-actions.pod:4620
15380 msgid ""
15381 "This call creates a char device node called C<path> with mode C<mode> and "
15382 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
15383 "wrapper around C<guestfs_mknod>."
15384 msgstr ""
15385
15386 # type: =head2
15387 #. type: =head2
15388 #: ../src/guestfs-actions.pod:4630
15389 msgid "guestfs_mkswap"
15390 msgstr ""
15391
15392 # type: verbatim
15393 #. type: verbatim
15394 #: ../src/guestfs-actions.pod:4632
15395 #, no-wrap
15396 msgid ""
15397 " int\n"
15398 " guestfs_mkswap (guestfs_h *g,\n"
15399 "                 const char *device);\n"
15400 "\n"
15401 msgstr ""
15402
15403 # type: textblock
15404 #. type: textblock
15405 #: ../src/guestfs-actions.pod:4636 ../fish/guestfish-actions.pod:3140
15406 msgid "Create a swap partition on C<device>."
15407 msgstr ""
15408
15409 # type: =head2
15410 #. type: =head2
15411 #: ../src/guestfs-actions.pod:4642
15412 msgid "guestfs_mkswap_L"
15413 msgstr ""
15414
15415 # type: verbatim
15416 #. type: verbatim
15417 #: ../src/guestfs-actions.pod:4644
15418 #, no-wrap
15419 msgid ""
15420 " int\n"
15421 " guestfs_mkswap_L (guestfs_h *g,\n"
15422 "                   const char *label,\n"
15423 "                   const char *device);\n"
15424 "\n"
15425 msgstr ""
15426
15427 # type: textblock
15428 #. type: textblock
15429 #: ../src/guestfs-actions.pod:4649 ../fish/guestfish-actions.pod:3146
15430 msgid "Create a swap partition on C<device> with label C<label>."
15431 msgstr ""
15432
15433 # type: textblock
15434 #. type: textblock
15435 #: ../src/guestfs-actions.pod:4651 ../fish/guestfish-actions.pod:3148
15436 msgid ""
15437 "Note that you cannot attach a swap label to a block device (eg. C</dev/"
15438 "sda>), just to a partition.  This appears to be a limitation of the kernel "
15439 "or swap tools."
15440 msgstr ""
15441
15442 # type: =head2
15443 #. type: =head2
15444 #: ../src/guestfs-actions.pod:4659
15445 msgid "guestfs_mkswap_U"
15446 msgstr ""
15447
15448 # type: verbatim
15449 #. type: verbatim
15450 #: ../src/guestfs-actions.pod:4661
15451 #, no-wrap
15452 msgid ""
15453 " int\n"
15454 " guestfs_mkswap_U (guestfs_h *g,\n"
15455 "                   const char *uuid,\n"
15456 "                   const char *device);\n"
15457 "\n"
15458 msgstr ""
15459
15460 # type: textblock
15461 #. type: textblock
15462 #: ../src/guestfs-actions.pod:4666 ../fish/guestfish-actions.pod:3156
15463 msgid "Create a swap partition on C<device> with UUID C<uuid>."
15464 msgstr ""
15465
15466 # type: =head2
15467 #. type: =head2
15468 #: ../src/guestfs-actions.pod:4672
15469 msgid "guestfs_mkswap_file"
15470 msgstr ""
15471
15472 # type: verbatim
15473 #. type: verbatim
15474 #: ../src/guestfs-actions.pod:4674
15475 #, no-wrap
15476 msgid ""
15477 " int\n"
15478 " guestfs_mkswap_file (guestfs_h *g,\n"
15479 "                      const char *path);\n"
15480 "\n"
15481 msgstr ""
15482
15483 # type: textblock
15484 #. type: textblock
15485 #: ../src/guestfs-actions.pod:4678 ../fish/guestfish-actions.pod:3162
15486 msgid "Create a swap file."
15487 msgstr ""
15488
15489 # type: textblock
15490 #. type: textblock
15491 #: ../src/guestfs-actions.pod:4680
15492 msgid ""
15493 "This command just writes a swap file signature to an existing file.  To "
15494 "create the file itself, use something like C<guestfs_fallocate>."
15495 msgstr ""
15496
15497 # type: =head2
15498 #. type: =head2
15499 #: ../src/guestfs-actions.pod:4687
15500 msgid "guestfs_modprobe"
15501 msgstr ""
15502
15503 # type: verbatim
15504 #. type: verbatim
15505 #: ../src/guestfs-actions.pod:4689
15506 #, no-wrap
15507 msgid ""
15508 " int\n"
15509 " guestfs_modprobe (guestfs_h *g,\n"
15510 "                   const char *modulename);\n"
15511 "\n"
15512 msgstr ""
15513
15514 # type: textblock
15515 #. type: textblock
15516 #: ../src/guestfs-actions.pod:4693 ../fish/guestfish-actions.pod:3171
15517 msgid "This loads a kernel module in the appliance."
15518 msgstr ""
15519
15520 # type: textblock
15521 #. type: textblock
15522 #: ../src/guestfs-actions.pod:4695 ../fish/guestfish-actions.pod:3173
15523 msgid ""
15524 "The kernel module must have been whitelisted when libguestfs was built (see "
15525 "C<appliance/kmod.whitelist.in> in the source)."
15526 msgstr ""
15527
15528 # type: =head2
15529 #. type: =head2
15530 #: ../src/guestfs-actions.pod:4702
15531 msgid "guestfs_mount"
15532 msgstr ""
15533
15534 # type: verbatim
15535 #. type: verbatim
15536 #: ../src/guestfs-actions.pod:4704
15537 #, no-wrap
15538 msgid ""
15539 " int\n"
15540 " guestfs_mount (guestfs_h *g,\n"
15541 "                const char *device,\n"
15542 "                const char *mountpoint);\n"
15543 "\n"
15544 msgstr ""
15545
15546 # type: textblock
15547 #. type: textblock
15548 #: ../src/guestfs-actions.pod:4709 ../fish/guestfish-actions.pod:3180
15549 msgid ""
15550 "Mount a guest disk at a position in the filesystem.  Block devices are named "
15551 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
15552 "those block devices contain partitions, they will have the usual names (eg. "
15553 "C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
15554 msgstr ""
15555
15556 # type: textblock
15557 #. type: textblock
15558 #: ../src/guestfs-actions.pod:4715 ../fish/guestfish-actions.pod:3186
15559 msgid ""
15560 "The rules are the same as for L<mount(2)>: A filesystem must first be "
15561 "mounted on C</> before others can be mounted.  Other filesystems can only be "
15562 "mounted on directories which already exist."
15563 msgstr ""
15564
15565 # type: textblock
15566 #. type: textblock
15567 #: ../src/guestfs-actions.pod:4720 ../fish/guestfish-actions.pod:3191
15568 msgid ""
15569 "The mounted filesystem is writable, if we have sufficient permissions on the "
15570 "underlying device."
15571 msgstr ""
15572
15573 # type: textblock
15574 #. type: textblock
15575 #: ../src/guestfs-actions.pod:4723
15576 msgid ""
15577 "B<Important note:> When you use this call, the filesystem options C<sync> "
15578 "and C<noatime> are set implicitly.  This was originally done because we "
15579 "thought it would improve reliability, but it turns out that I<-o sync> has a "
15580 "very large negative performance impact and negligible effect on "
15581 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
15582 "in any code that needs performance, and instead use C<guestfs_mount_options> "
15583 "(use an empty string for the first parameter if you don't want any options)."
15584 msgstr ""
15585
15586 #. type: textblock
15587 #: ../src/guestfs-actions.pod:4735
15588 msgid ""
15589 "This function is deprecated.  In new code, use the L</guestfs_mount_options> "
15590 "call instead."
15591 msgstr ""
15592
15593 # type: =head2
15594 #. type: =head2
15595 #: ../src/guestfs-actions.pod:4744
15596 msgid "guestfs_mount_loop"
15597 msgstr ""
15598
15599 # type: verbatim
15600 #. type: verbatim
15601 #: ../src/guestfs-actions.pod:4746
15602 #, no-wrap
15603 msgid ""
15604 " int\n"
15605 " guestfs_mount_loop (guestfs_h *g,\n"
15606 "                     const char *file,\n"
15607 "                     const char *mountpoint);\n"
15608 "\n"
15609 msgstr ""
15610
15611 # type: textblock
15612 #. type: textblock
15613 #: ../src/guestfs-actions.pod:4751 ../fish/guestfish-actions.pod:3215
15614 msgid ""
15615 "This command lets you mount C<file> (a filesystem image in a file) on a "
15616 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
15617 "mountpoint>."
15618 msgstr ""
15619
15620 # type: =head2
15621 #. type: =head2
15622 #: ../src/guestfs-actions.pod:4759
15623 msgid "guestfs_mount_options"
15624 msgstr ""
15625
15626 # type: verbatim
15627 #. type: verbatim
15628 #: ../src/guestfs-actions.pod:4761
15629 #, no-wrap
15630 msgid ""
15631 " int\n"
15632 " guestfs_mount_options (guestfs_h *g,\n"
15633 "                        const char *options,\n"
15634 "                        const char *device,\n"
15635 "                        const char *mountpoint);\n"
15636 "\n"
15637 msgstr ""
15638
15639 # type: textblock
15640 #. type: textblock
15641 #: ../src/guestfs-actions.pod:4767
15642 msgid ""
15643 "This is the same as the C<guestfs_mount> command, but it allows you to set "
15644 "the mount options as for the L<mount(8)> I<-o> flag."
15645 msgstr ""
15646
15647 # type: textblock
15648 #. type: textblock
15649 #: ../src/guestfs-actions.pod:4771 ../fish/guestfish-actions.pod:3227
15650 msgid ""
15651 "If the C<options> parameter is an empty string, then no options are passed "
15652 "(all options default to whatever the filesystem uses)."
15653 msgstr ""
15654
15655 # type: textblock
15656 #. type: textblock
15657 #: ../src/guestfs-actions.pod:4777 ../src/guestfs-actions.pod:4791
15658 #: ../src/guestfs-actions.pod:4808
15659 msgid "(Added in 1.0.10)"
15660 msgstr ""
15661
15662 # type: =head2
15663 #. type: =head2
15664 #: ../src/guestfs-actions.pod:4779
15665 msgid "guestfs_mount_ro"
15666 msgstr ""
15667
15668 # type: verbatim
15669 #. type: verbatim
15670 #: ../src/guestfs-actions.pod:4781
15671 #, no-wrap
15672 msgid ""
15673 " int\n"
15674 " guestfs_mount_ro (guestfs_h *g,\n"
15675 "                   const char *device,\n"
15676 "                   const char *mountpoint);\n"
15677 "\n"
15678 msgstr ""
15679
15680 # type: textblock
15681 #. type: textblock
15682 #: ../src/guestfs-actions.pod:4786
15683 msgid ""
15684 "This is the same as the C<guestfs_mount> command, but it mounts the "
15685 "filesystem with the read-only (I<-o ro>) flag."
15686 msgstr ""
15687
15688 # type: =head2
15689 #. type: =head2
15690 #: ../src/guestfs-actions.pod:4793
15691 msgid "guestfs_mount_vfs"
15692 msgstr ""
15693
15694 # type: verbatim
15695 #. type: verbatim
15696 #: ../src/guestfs-actions.pod:4795
15697 #, no-wrap
15698 msgid ""
15699 " int\n"
15700 " guestfs_mount_vfs (guestfs_h *g,\n"
15701 "                    const char *options,\n"
15702 "                    const char *vfstype,\n"
15703 "                    const char *device,\n"
15704 "                    const char *mountpoint);\n"
15705 "\n"
15706 msgstr ""
15707
15708 # type: textblock
15709 #. type: textblock
15710 #: ../src/guestfs-actions.pod:4802
15711 msgid ""
15712 "This is the same as the C<guestfs_mount> command, but it allows you to set "
15713 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
15714 "t> flags."
15715 msgstr ""
15716
15717 # type: =head2
15718 #. type: =head2
15719 #: ../src/guestfs-actions.pod:4810
15720 msgid "guestfs_mountpoints"
15721 msgstr ""
15722
15723 # type: verbatim
15724 #. type: verbatim
15725 #: ../src/guestfs-actions.pod:4812
15726 #, no-wrap
15727 msgid ""
15728 " char **\n"
15729 " guestfs_mountpoints (guestfs_h *g);\n"
15730 "\n"
15731 msgstr ""
15732
15733 # type: textblock
15734 #. type: textblock
15735 #: ../src/guestfs-actions.pod:4815
15736 msgid ""
15737 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
15738 "devices.  This one returns a hash table (map) of device name to directory "
15739 "where the device is mounted."
15740 msgstr ""
15741
15742 # type: =head2
15743 #. type: =head2
15744 #: ../src/guestfs-actions.pod:4827
15745 msgid "guestfs_mounts"
15746 msgstr ""
15747
15748 # type: verbatim
15749 #. type: verbatim
15750 #: ../src/guestfs-actions.pod:4829
15751 #, no-wrap
15752 msgid ""
15753 " char **\n"
15754 " guestfs_mounts (guestfs_h *g);\n"
15755 "\n"
15756 msgstr ""
15757
15758 # type: textblock
15759 #. type: textblock
15760 #: ../src/guestfs-actions.pod:4832 ../fish/guestfish-actions.pod:3258
15761 msgid ""
15762 "This returns the list of currently mounted filesystems.  It returns the list "
15763 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
15764 msgstr ""
15765
15766 # type: textblock
15767 #. type: textblock
15768 #: ../src/guestfs-actions.pod:4835 ../fish/guestfish-actions.pod:3261
15769 msgid "Some internal mounts are not shown."
15770 msgstr ""
15771
15772 # type: textblock
15773 #. type: textblock
15774 #: ../src/guestfs-actions.pod:4837
15775 msgid "See also: C<guestfs_mountpoints>"
15776 msgstr ""
15777
15778 # type: =head2
15779 #. type: =head2
15780 #: ../src/guestfs-actions.pod:4845
15781 msgid "guestfs_mv"
15782 msgstr ""
15783
15784 # type: verbatim
15785 #. type: verbatim
15786 #: ../src/guestfs-actions.pod:4847
15787 #, no-wrap
15788 msgid ""
15789 " int\n"
15790 " guestfs_mv (guestfs_h *g,\n"
15791 "             const char *src,\n"
15792 "             const char *dest);\n"
15793 "\n"
15794 msgstr ""
15795
15796 # type: textblock
15797 #. type: textblock
15798 #: ../src/guestfs-actions.pod:4852 ../fish/guestfish-actions.pod:3269
15799 msgid ""
15800 "This moves a file from C<src> to C<dest> where C<dest> is either a "
15801 "destination filename or destination directory."
15802 msgstr ""
15803
15804 # type: =head2
15805 #. type: =head2
15806 #: ../src/guestfs-actions.pod:4859
15807 msgid "guestfs_ntfs_3g_probe"
15808 msgstr ""
15809
15810 # type: verbatim
15811 #. type: verbatim
15812 #: ../src/guestfs-actions.pod:4861
15813 #, no-wrap
15814 msgid ""
15815 " int\n"
15816 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
15817 "                        int rw,\n"
15818 "                        const char *device);\n"
15819 "\n"
15820 msgstr ""
15821
15822 # type: textblock
15823 #. type: textblock
15824 #: ../src/guestfs-actions.pod:4866 ../fish/guestfish-actions.pod:3276
15825 msgid ""
15826 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
15827 "C<device> for mountability.  (Not all NTFS volumes can be mounted read-"
15828 "write, and some cannot be mounted at all)."
15829 msgstr ""
15830
15831 # type: textblock
15832 #. type: textblock
15833 #: ../src/guestfs-actions.pod:4870 ../fish/guestfish-actions.pod:3280
15834 msgid ""
15835 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
15836 "can be mounted read-write.  Set it to false if you want to test if the "
15837 "volume can be mounted read-only."
15838 msgstr ""
15839
15840 # type: textblock
15841 #. type: textblock
15842 #: ../src/guestfs-actions.pod:4874 ../fish/guestfish-actions.pod:3284
15843 msgid ""
15844 "The return value is an integer which C<0> if the operation would succeed, or "
15845 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
15846 msgstr ""
15847
15848 # type: textblock
15849 #. type: textblock
15850 #: ../src/guestfs-actions.pod:4880
15851 msgid "(Added in 1.0.43)"
15852 msgstr ""
15853
15854 # type: =head2
15855 #. type: =head2
15856 #: ../src/guestfs-actions.pod:4882
15857 msgid "guestfs_ntfsresize"
15858 msgstr ""
15859
15860 # type: verbatim
15861 #. type: verbatim
15862 #: ../src/guestfs-actions.pod:4884
15863 #, no-wrap
15864 msgid ""
15865 " int\n"
15866 " guestfs_ntfsresize (guestfs_h *g,\n"
15867 "                     const char *device);\n"
15868 "\n"
15869 msgstr ""
15870
15871 #. type: textblock
15872 #: ../src/guestfs-actions.pod:4888 ../fish/guestfish-actions.pod:3292
15873 msgid ""
15874 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
15875 "size of the underlying device."
15876 msgstr ""
15877
15878 #. type: textblock
15879 #: ../src/guestfs-actions.pod:4891 ../fish/guestfish-actions.pod:3295
15880 msgid ""
15881 "I<Note:> After the resize operation, the filesystem is marked as requiring a "
15882 "consistency check (for safety).  You have to boot into Windows to perform "
15883 "this check and clear this condition.  Furthermore, ntfsresize refuses to "
15884 "resize filesystems which have been marked in this way.  So in effect it is "
15885 "not possible to call ntfsresize multiple times on a single filesystem "
15886 "without booting into Windows between each resize."
15887 msgstr ""
15888
15889 #. type: textblock
15890 #: ../src/guestfs-actions.pod:4899 ../fish/guestfish-actions.pod:3303
15891 msgid "See also L<ntfsresize(8)>."
15892 msgstr ""
15893
15894 # type: =head2
15895 #. type: =head2
15896 #: ../src/guestfs-actions.pod:4905
15897 msgid "guestfs_ntfsresize_size"
15898 msgstr ""
15899
15900 # type: verbatim
15901 #. type: verbatim
15902 #: ../src/guestfs-actions.pod:4907
15903 #, no-wrap
15904 msgid ""
15905 " int\n"
15906 " guestfs_ntfsresize_size (guestfs_h *g,\n"
15907 "                          const char *device,\n"
15908 "                          int64_t size);\n"
15909 "\n"
15910 msgstr ""
15911
15912 # type: textblock
15913 #. type: textblock
15914 #: ../src/guestfs-actions.pod:4912
15915 msgid ""
15916 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
15917 "to specify the new size (in bytes) explicitly."
15918 msgstr ""
15919
15920 # type: textblock
15921 #. type: textblock
15922 #: ../src/guestfs-actions.pod:4917 ../src/guestfs-actions.pod:5353
15923 #: ../src/guestfs-actions.pod:5426 ../src/guestfs-actions.pod:5692
15924 #: ../src/guestfs-actions.pod:7298
15925 msgid "(Added in 1.3.14)"
15926 msgstr ""
15927
15928 # type: =head2
15929 #. type: =head2
15930 #: ../src/guestfs-actions.pod:4919
15931 msgid "guestfs_part_add"
15932 msgstr ""
15933
15934 # type: verbatim
15935 #. type: verbatim
15936 #: ../src/guestfs-actions.pod:4921
15937 #, no-wrap
15938 msgid ""
15939 " int\n"
15940 " guestfs_part_add (guestfs_h *g,\n"
15941 "                   const char *device,\n"
15942 "                   const char *prlogex,\n"
15943 "                   int64_t startsect,\n"
15944 "                   int64_t endsect);\n"
15945 "\n"
15946 msgstr ""
15947
15948 # type: textblock
15949 #. type: textblock
15950 #: ../src/guestfs-actions.pod:4928
15951 msgid ""
15952 "This command adds a partition to C<device>.  If there is no partition table "
15953 "on the device, call C<guestfs_part_init> first."
15954 msgstr ""
15955
15956 # type: textblock
15957 #. type: textblock
15958 #: ../src/guestfs-actions.pod:4931 ../fish/guestfish-actions.pod:3319
15959 msgid ""
15960 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
15961 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
15962 "C<logical>) and C<e> (or C<extended>) partition types."
15963 msgstr ""
15964
15965 # type: textblock
15966 #. type: textblock
15967 #: ../src/guestfs-actions.pod:4936 ../fish/guestfish-actions.pod:3324
15968 msgid ""
15969 "C<startsect> and C<endsect> are the start and end of the partition in "
15970 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
15971 "from the end of the disk (C<-1> is the last sector)."
15972 msgstr ""
15973
15974 # type: textblock
15975 #. type: textblock
15976 #: ../src/guestfs-actions.pod:4940
15977 msgid ""
15978 "Creating a partition which covers the whole disk is not so easy.  Use "
15979 "C<guestfs_part_disk> to do that."
15980 msgstr ""
15981
15982 # type: textblock
15983 #. type: textblock
15984 #: ../src/guestfs-actions.pod:4945 ../src/guestfs-actions.pod:4983
15985 #: ../src/guestfs-actions.pod:5036 ../src/guestfs-actions.pod:5114
15986 #: ../src/guestfs-actions.pod:5152 ../src/guestfs-actions.pod:5171
15987 #: ../src/guestfs-actions.pod:5211
15988 msgid "(Added in 1.0.78)"
15989 msgstr ""
15990
15991 # type: =head2
15992 #. type: =head2
15993 #: ../src/guestfs-actions.pod:4947
15994 msgid "guestfs_part_del"
15995 msgstr ""
15996
15997 # type: verbatim
15998 #. type: verbatim
15999 #: ../src/guestfs-actions.pod:4949
16000 #, no-wrap
16001 msgid ""
16002 " int\n"
16003 " guestfs_part_del (guestfs_h *g,\n"
16004 "                   const char *device,\n"
16005 "                   int partnum);\n"
16006 "\n"
16007 msgstr ""
16008
16009 # type: textblock
16010 #. type: textblock
16011 #: ../src/guestfs-actions.pod:4954 ../fish/guestfish-actions.pod:3335
16012 msgid "This command deletes the partition numbered C<partnum> on C<device>."
16013 msgstr ""
16014
16015 # type: textblock
16016 #. type: textblock
16017 #: ../src/guestfs-actions.pod:4956 ../fish/guestfish-actions.pod:3337
16018 msgid ""
16019 "Note that in the case of MBR partitioning, deleting an extended partition "
16020 "also deletes any logical partitions it contains."
16021 msgstr ""
16022
16023 # type: =head2
16024 #. type: =head2
16025 #: ../src/guestfs-actions.pod:4964
16026 msgid "guestfs_part_disk"
16027 msgstr ""
16028
16029 # type: verbatim
16030 #. type: verbatim
16031 #: ../src/guestfs-actions.pod:4966
16032 #, no-wrap
16033 msgid ""
16034 " int\n"
16035 " guestfs_part_disk (guestfs_h *g,\n"
16036 "                    const char *device,\n"
16037 "                    const char *parttype);\n"
16038 "\n"
16039 msgstr ""
16040
16041 # type: textblock
16042 #. type: textblock
16043 #: ../src/guestfs-actions.pod:4971
16044 msgid ""
16045 "This command is simply a combination of C<guestfs_part_init> followed by "
16046 "C<guestfs_part_add> to create a single primary partition covering the whole "
16047 "disk."
16048 msgstr ""
16049
16050 # type: textblock
16051 #. type: textblock
16052 #: ../src/guestfs-actions.pod:4975
16053 msgid ""
16054 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
16055 "possible values are described in C<guestfs_part_init>."
16056 msgstr ""
16057
16058 # type: =head2
16059 #. type: =head2
16060 #: ../src/guestfs-actions.pod:4985
16061 msgid "guestfs_part_get_bootable"
16062 msgstr ""
16063
16064 # type: verbatim
16065 #. type: verbatim
16066 #: ../src/guestfs-actions.pod:4987
16067 #, no-wrap
16068 msgid ""
16069 " int\n"
16070 " guestfs_part_get_bootable (guestfs_h *g,\n"
16071 "                            const char *device,\n"
16072 "                            int partnum);\n"
16073 "\n"
16074 msgstr ""
16075
16076 # type: textblock
16077 #. type: textblock
16078 #: ../src/guestfs-actions.pod:4992 ../fish/guestfish-actions.pod:3359
16079 msgid ""
16080 "This command returns true if the partition C<partnum> on C<device> has the "
16081 "bootable flag set."
16082 msgstr ""
16083
16084 # type: textblock
16085 #. type: textblock
16086 #: ../src/guestfs-actions.pod:4995
16087 msgid "See also C<guestfs_part_set_bootable>."
16088 msgstr ""
16089
16090 # type: =head2
16091 #. type: =head2
16092 #: ../src/guestfs-actions.pod:5001
16093 msgid "guestfs_part_get_mbr_id"
16094 msgstr ""
16095
16096 # type: verbatim
16097 #. type: verbatim
16098 #: ../src/guestfs-actions.pod:5003
16099 #, no-wrap
16100 msgid ""
16101 " int\n"
16102 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
16103 "                          const char *device,\n"
16104 "                          int partnum);\n"
16105 "\n"
16106 msgstr ""
16107
16108 # type: textblock
16109 #. type: textblock
16110 #: ../src/guestfs-actions.pod:5008 ../fish/guestfish-actions.pod:3368
16111 msgid ""
16112 "Returns the MBR type byte (also known as the ID byte) from the numbered "
16113 "partition C<partnum>."
16114 msgstr ""
16115
16116 # type: textblock
16117 #. type: textblock
16118 #: ../src/guestfs-actions.pod:5011 ../src/guestfs-actions.pod:5187
16119 msgid ""
16120 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
16121 "undefined results for other partition table types (see "
16122 "C<guestfs_part_get_parttype>)."
16123 msgstr ""
16124
16125 # type: =head2
16126 #. type: =head2
16127 #: ../src/guestfs-actions.pod:5019
16128 msgid "guestfs_part_get_parttype"
16129 msgstr ""
16130
16131 # type: verbatim
16132 #. type: verbatim
16133 #: ../src/guestfs-actions.pod:5021
16134 #, no-wrap
16135 msgid ""
16136 " char *\n"
16137 " guestfs_part_get_parttype (guestfs_h *g,\n"
16138 "                            const char *device);\n"
16139 "\n"
16140 msgstr ""
16141
16142 # type: textblock
16143 #. type: textblock
16144 #: ../src/guestfs-actions.pod:5025 ../fish/guestfish-actions.pod:3379
16145 msgid ""
16146 "This command examines the partition table on C<device> and returns the "
16147 "partition table type (format) being used."
16148 msgstr ""
16149
16150 # type: textblock
16151 #. type: textblock
16152 #: ../src/guestfs-actions.pod:5028
16153 msgid ""
16154 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
16155 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
16156 "possible, although unusual.  See C<guestfs_part_init> for a full list."
16157 msgstr ""
16158
16159 # type: =head2
16160 #. type: =head2
16161 #: ../src/guestfs-actions.pod:5038
16162 msgid "guestfs_part_init"
16163 msgstr ""
16164
16165 # type: verbatim
16166 #. type: verbatim
16167 #: ../src/guestfs-actions.pod:5040
16168 #, no-wrap
16169 msgid ""
16170 " int\n"
16171 " guestfs_part_init (guestfs_h *g,\n"
16172 "                    const char *device,\n"
16173 "                    const char *parttype);\n"
16174 "\n"
16175 msgstr ""
16176
16177 # type: textblock
16178 #. type: textblock
16179 #: ../src/guestfs-actions.pod:5045 ../fish/guestfish-actions.pod:3391
16180 msgid ""
16181 "This creates an empty partition table on C<device> of one of the partition "
16182 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
16183 "(for large disks)."
16184 msgstr ""
16185
16186 # type: textblock
16187 #. type: textblock
16188 #: ../src/guestfs-actions.pod:5049
16189 msgid ""
16190 "Initially there are no partitions.  Following this, you should call "
16191 "C<guestfs_part_add> for each partition required."
16192 msgstr ""
16193
16194 # type: textblock
16195 #. type: textblock
16196 #: ../src/guestfs-actions.pod:5052 ../fish/guestfish-actions.pod:3398
16197 msgid "Possible values for C<parttype> are:"
16198 msgstr ""
16199
16200 # type: =item
16201 #. type: =item
16202 #: ../src/guestfs-actions.pod:5056 ../fish/guestfish-actions.pod:3402
16203 msgid "B<efi> | B<gpt>"
16204 msgstr ""
16205
16206 # type: textblock
16207 #. type: textblock
16208 #: ../src/guestfs-actions.pod:5058 ../fish/guestfish-actions.pod:3404
16209 msgid "Intel EFI / GPT partition table."
16210 msgstr ""
16211
16212 # type: textblock
16213 #. type: textblock
16214 #: ../src/guestfs-actions.pod:5060 ../fish/guestfish-actions.pod:3406
16215 msgid ""
16216 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
16217 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
16218 "the C<mbr> format."
16219 msgstr ""
16220
16221 # type: =item
16222 #. type: =item
16223 #: ../src/guestfs-actions.pod:5064 ../fish/guestfish-actions.pod:3410
16224 msgid "B<mbr> | B<msdos>"
16225 msgstr ""
16226
16227 # type: textblock
16228 #. type: textblock
16229 #: ../src/guestfs-actions.pod:5066 ../fish/guestfish-actions.pod:3412
16230 msgid ""
16231 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
16232 "Windows.  This partition type will B<only> work for device sizes up to 2 "
16233 "TB.  For large disks we recommend using C<gpt>."
16234 msgstr ""
16235
16236 # type: textblock
16237 #. type: textblock
16238 #: ../src/guestfs-actions.pod:5073 ../fish/guestfish-actions.pod:3419
16239 msgid ""
16240 "Other partition table types that may work but are not supported include:"
16241 msgstr ""
16242
16243 # type: =item
16244 #. type: =item
16245 #: ../src/guestfs-actions.pod:5078 ../fish/guestfish-actions.pod:3424
16246 msgid "B<aix>"
16247 msgstr ""
16248
16249 # type: textblock
16250 #. type: textblock
16251 #: ../src/guestfs-actions.pod:5080 ../fish/guestfish-actions.pod:3426
16252 msgid "AIX disk labels."
16253 msgstr ""
16254
16255 # type: =item
16256 #. type: =item
16257 #: ../src/guestfs-actions.pod:5082 ../fish/guestfish-actions.pod:3428
16258 msgid "B<amiga> | B<rdb>"
16259 msgstr ""
16260
16261 # type: textblock
16262 #. type: textblock
16263 #: ../src/guestfs-actions.pod:5084 ../fish/guestfish-actions.pod:3430
16264 msgid "Amiga \"Rigid Disk Block\" format."
16265 msgstr ""
16266
16267 # type: =item
16268 #. type: =item
16269 #: ../src/guestfs-actions.pod:5086 ../fish/guestfish-actions.pod:3432
16270 msgid "B<bsd>"
16271 msgstr ""
16272
16273 # type: textblock
16274 #. type: textblock
16275 #: ../src/guestfs-actions.pod:5088 ../fish/guestfish-actions.pod:3434
16276 msgid "BSD disk labels."
16277 msgstr ""
16278
16279 # type: =item
16280 #. type: =item
16281 #: ../src/guestfs-actions.pod:5090 ../fish/guestfish-actions.pod:3436
16282 msgid "B<dasd>"
16283 msgstr ""
16284
16285 # type: textblock
16286 #. type: textblock
16287 #: ../src/guestfs-actions.pod:5092 ../fish/guestfish-actions.pod:3438
16288 msgid "DASD, used on IBM mainframes."
16289 msgstr ""
16290
16291 # type: =item
16292 #. type: =item
16293 #: ../src/guestfs-actions.pod:5094 ../fish/guestfish-actions.pod:3440
16294 msgid "B<dvh>"
16295 msgstr ""
16296
16297 # type: textblock
16298 #. type: textblock
16299 #: ../src/guestfs-actions.pod:5096 ../fish/guestfish-actions.pod:3442
16300 msgid "MIPS/SGI volumes."
16301 msgstr ""
16302
16303 # type: =item
16304 #. type: =item
16305 #: ../src/guestfs-actions.pod:5098 ../fish/guestfish-actions.pod:3444
16306 msgid "B<mac>"
16307 msgstr ""
16308
16309 # type: textblock
16310 #. type: textblock
16311 #: ../src/guestfs-actions.pod:5100 ../fish/guestfish-actions.pod:3446
16312 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
16313 msgstr ""
16314
16315 # type: =item
16316 #. type: =item
16317 #: ../src/guestfs-actions.pod:5102 ../fish/guestfish-actions.pod:3448
16318 msgid "B<pc98>"
16319 msgstr ""
16320
16321 # type: textblock
16322 #. type: textblock
16323 #: ../src/guestfs-actions.pod:5104 ../fish/guestfish-actions.pod:3450
16324 msgid "NEC PC-98 format, common in Japan apparently."
16325 msgstr ""
16326
16327 # type: =item
16328 #. type: =item
16329 #: ../src/guestfs-actions.pod:5106 ../fish/guestfish-actions.pod:3452
16330 msgid "B<sun>"
16331 msgstr ""
16332
16333 # type: textblock
16334 #. type: textblock
16335 #: ../src/guestfs-actions.pod:5108 ../fish/guestfish-actions.pod:3454
16336 msgid "Sun disk labels."
16337 msgstr ""
16338
16339 # type: =head2
16340 #. type: =head2
16341 #: ../src/guestfs-actions.pod:5116
16342 msgid "guestfs_part_list"
16343 msgstr ""
16344
16345 # type: verbatim
16346 #. type: verbatim
16347 #: ../src/guestfs-actions.pod:5118
16348 #, no-wrap
16349 msgid ""
16350 " struct guestfs_partition_list *\n"
16351 " guestfs_part_list (guestfs_h *g,\n"
16352 "                    const char *device);\n"
16353 "\n"
16354 msgstr ""
16355
16356 # type: textblock
16357 #. type: textblock
16358 #: ../src/guestfs-actions.pod:5122 ../fish/guestfish-actions.pod:3462
16359 msgid ""
16360 "This command parses the partition table on C<device> and returns the list of "
16361 "partitions found."
16362 msgstr ""
16363
16364 # type: textblock
16365 #. type: textblock
16366 #: ../src/guestfs-actions.pod:5125 ../fish/guestfish-actions.pod:3465
16367 msgid "The fields in the returned structure are:"
16368 msgstr ""
16369
16370 # type: =item
16371 #. type: =item
16372 #: ../src/guestfs-actions.pod:5129 ../fish/guestfish-actions.pod:3469
16373 msgid "B<part_num>"
16374 msgstr ""
16375
16376 # type: textblock
16377 #. type: textblock
16378 #: ../src/guestfs-actions.pod:5131 ../fish/guestfish-actions.pod:3471
16379 msgid "Partition number, counting from 1."
16380 msgstr ""
16381
16382 # type: =item
16383 #. type: =item
16384 #: ../src/guestfs-actions.pod:5133 ../fish/guestfish-actions.pod:3473
16385 msgid "B<part_start>"
16386 msgstr ""
16387
16388 # type: textblock
16389 #. type: textblock
16390 #: ../src/guestfs-actions.pod:5135
16391 msgid ""
16392 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
16393 "the device's sector size, see C<guestfs_blockdev_getss>."
16394 msgstr ""
16395
16396 # type: =item
16397 #. type: =item
16398 #: ../src/guestfs-actions.pod:5138 ../fish/guestfish-actions.pod:3478
16399 msgid "B<part_end>"
16400 msgstr ""
16401
16402 # type: textblock
16403 #. type: textblock
16404 #: ../src/guestfs-actions.pod:5140 ../fish/guestfish-actions.pod:3480
16405 msgid "End of the partition in bytes."
16406 msgstr ""
16407
16408 # type: =item
16409 #. type: =item
16410 #: ../src/guestfs-actions.pod:5142 ../fish/guestfish-actions.pod:3482
16411 msgid "B<part_size>"
16412 msgstr ""
16413
16414 # type: textblock
16415 #. type: textblock
16416 #: ../src/guestfs-actions.pod:5144 ../fish/guestfish-actions.pod:3484
16417 msgid "Size of the partition in bytes."
16418 msgstr ""
16419
16420 # type: textblock
16421 #. type: textblock
16422 #: ../src/guestfs-actions.pod:5148
16423 msgid ""
16424 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
16425 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
16426 "use>."
16427 msgstr ""
16428
16429 # type: =head2
16430 #. type: =head2
16431 #: ../src/guestfs-actions.pod:5154
16432 msgid "guestfs_part_set_bootable"
16433 msgstr ""
16434
16435 # type: verbatim
16436 #. type: verbatim
16437 #: ../src/guestfs-actions.pod:5156
16438 #, no-wrap
16439 msgid ""
16440 " int\n"
16441 " guestfs_part_set_bootable (guestfs_h *g,\n"
16442 "                            const char *device,\n"
16443 "                            int partnum,\n"
16444 "                            int bootable);\n"
16445 "\n"
16446 msgstr ""
16447
16448 # type: textblock
16449 #. type: textblock
16450 #: ../src/guestfs-actions.pod:5162 ../fish/guestfish-actions.pod:3492
16451 msgid ""
16452 "This sets the bootable flag on partition numbered C<partnum> on device "
16453 "C<device>.  Note that partitions are numbered from 1."
16454 msgstr ""
16455
16456 # type: textblock
16457 #. type: textblock
16458 #: ../src/guestfs-actions.pod:5165 ../fish/guestfish-actions.pod:3495
16459 msgid ""
16460 "The bootable flag is used by some operating systems (notably Windows) to "
16461 "determine which partition to boot from.  It is by no means universally "
16462 "recognized."
16463 msgstr ""
16464
16465 # type: =head2
16466 #. type: =head2
16467 #: ../src/guestfs-actions.pod:5173
16468 msgid "guestfs_part_set_mbr_id"
16469 msgstr ""
16470
16471 # type: verbatim
16472 #. type: verbatim
16473 #: ../src/guestfs-actions.pod:5175
16474 #, no-wrap
16475 msgid ""
16476 " int\n"
16477 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
16478 "                          const char *device,\n"
16479 "                          int partnum,\n"
16480 "                          int idbyte);\n"
16481 "\n"
16482 msgstr ""
16483
16484 # type: textblock
16485 #. type: textblock
16486 #: ../src/guestfs-actions.pod:5181 ../fish/guestfish-actions.pod:3503
16487 msgid ""
16488 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
16489 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
16490 "documentation are in fact hexadecimal numbers, but usually documented "
16491 "without any leading \"0x\" which might be confusing."
16492 msgstr ""
16493
16494 # type: =head2
16495 #. type: =head2
16496 #: ../src/guestfs-actions.pod:5195
16497 msgid "guestfs_part_set_name"
16498 msgstr ""
16499
16500 # type: verbatim
16501 #. type: verbatim
16502 #: ../src/guestfs-actions.pod:5197
16503 #, no-wrap
16504 msgid ""
16505 " int\n"
16506 " guestfs_part_set_name (guestfs_h *g,\n"
16507 "                        const char *device,\n"
16508 "                        int partnum,\n"
16509 "                        const char *name);\n"
16510 "\n"
16511 msgstr ""
16512
16513 # type: textblock
16514 #. type: textblock
16515 #: ../src/guestfs-actions.pod:5203 ../fish/guestfish-actions.pod:3517
16516 msgid ""
16517 "This sets the partition name on partition numbered C<partnum> on device "
16518 "C<device>.  Note that partitions are numbered from 1."
16519 msgstr ""
16520
16521 # type: textblock
16522 #. type: textblock
16523 #: ../src/guestfs-actions.pod:5206 ../fish/guestfish-actions.pod:3520
16524 msgid ""
16525 "The partition name can only be set on certain types of partition table.  "
16526 "This works on C<gpt> but not on C<mbr> partitions."
16527 msgstr ""
16528
16529 # type: =head2
16530 #. type: =head2
16531 #: ../src/guestfs-actions.pod:5213
16532 msgid "guestfs_part_to_dev"
16533 msgstr ""
16534
16535 # type: verbatim
16536 #. type: verbatim
16537 #: ../src/guestfs-actions.pod:5215
16538 #, no-wrap
16539 msgid ""
16540 " char *\n"
16541 " guestfs_part_to_dev (guestfs_h *g,\n"
16542 "                      const char *partition);\n"
16543 "\n"
16544 msgstr ""
16545
16546 # type: textblock
16547 #. type: textblock
16548 #: ../src/guestfs-actions.pod:5219 ../fish/guestfish-actions.pod:3527
16549 msgid ""
16550 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
16551 "partition number, returning the device name (eg. \"/dev/sdb\")."
16552 msgstr ""
16553
16554 # type: textblock
16555 #. type: textblock
16556 #: ../src/guestfs-actions.pod:5223
16557 msgid ""
16558 "The named partition must exist, for example as a string returned from "
16559 "C<guestfs_list_partitions>."
16560 msgstr ""
16561
16562 # type: =head2
16563 #. type: =head2
16564 #: ../src/guestfs-actions.pod:5231
16565 msgid "guestfs_ping_daemon"
16566 msgstr ""
16567
16568 # type: verbatim
16569 #. type: verbatim
16570 #: ../src/guestfs-actions.pod:5233
16571 #, no-wrap
16572 msgid ""
16573 " int\n"
16574 " guestfs_ping_daemon (guestfs_h *g);\n"
16575 "\n"
16576 msgstr ""
16577
16578 # type: textblock
16579 #. type: textblock
16580 #: ../src/guestfs-actions.pod:5236 ../fish/guestfish-actions.pod:3538
16581 msgid ""
16582 "This is a test probe into the guestfs daemon running inside the qemu "
16583 "subprocess.  Calling this function checks that the daemon responds to the "
16584 "ping message, without affecting the daemon or attached block device(s) in "
16585 "any other way."
16586 msgstr ""
16587
16588 # type: =head2
16589 #. type: =head2
16590 #: ../src/guestfs-actions.pod:5245
16591 msgid "guestfs_pread"
16592 msgstr ""
16593
16594 # type: verbatim
16595 #. type: verbatim
16596 #: ../src/guestfs-actions.pod:5247
16597 #, no-wrap
16598 msgid ""
16599 " char *\n"
16600 " guestfs_pread (guestfs_h *g,\n"
16601 "                const char *path,\n"
16602 "                int count,\n"
16603 "                int64_t offset,\n"
16604 "                size_t *size_r);\n"
16605 "\n"
16606 msgstr ""
16607
16608 # type: textblock
16609 #. type: textblock
16610 #: ../src/guestfs-actions.pod:5254 ../fish/guestfish-actions.pod:3547
16611 msgid ""
16612 "This command lets you read part of a file.  It reads C<count> bytes of the "
16613 "file, starting at C<offset>, from file C<path>."
16614 msgstr ""
16615
16616 # type: textblock
16617 #. type: textblock
16618 #: ../src/guestfs-actions.pod:5257 ../src/guestfs-actions.pod:5283
16619 #: ../fish/guestfish-actions.pod:3550 ../fish/guestfish-actions.pod:3565
16620 msgid ""
16621 "This may read fewer bytes than requested.  For further details see the "
16622 "L<pread(2)> system call."
16623 msgstr ""
16624
16625 # type: textblock
16626 #. type: textblock
16627 #: ../src/guestfs-actions.pod:5260
16628 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
16629 msgstr ""
16630
16631 # type: =head2
16632 #. type: =head2
16633 #: ../src/guestfs-actions.pod:5271
16634 msgid "guestfs_pread_device"
16635 msgstr ""
16636
16637 # type: verbatim
16638 #. type: verbatim
16639 #: ../src/guestfs-actions.pod:5273
16640 #, no-wrap
16641 msgid ""
16642 " char *\n"
16643 " guestfs_pread_device (guestfs_h *g,\n"
16644 "                       const char *device,\n"
16645 "                       int count,\n"
16646 "                       int64_t offset,\n"
16647 "                       size_t *size_r);\n"
16648 "\n"
16649 msgstr ""
16650
16651 # type: textblock
16652 #. type: textblock
16653 #: ../src/guestfs-actions.pod:5280 ../fish/guestfish-actions.pod:3562
16654 msgid ""
16655 "This command lets you read part of a file.  It reads C<count> bytes of "
16656 "C<device>, starting at C<offset>."
16657 msgstr ""
16658
16659 # type: textblock
16660 #. type: textblock
16661 #: ../src/guestfs-actions.pod:5286
16662 msgid "See also C<guestfs_pread>."
16663 msgstr ""
16664
16665 # type: textblock
16666 #. type: textblock
16667 #: ../src/guestfs-actions.pod:5295
16668 msgid "(Added in 1.5.21)"
16669 msgstr ""
16670
16671 # type: =head2
16672 #. type: =head2
16673 #: ../src/guestfs-actions.pod:5297
16674 msgid "guestfs_pvcreate"
16675 msgstr ""
16676
16677 # type: verbatim
16678 #. type: verbatim
16679 #: ../src/guestfs-actions.pod:5299
16680 #, no-wrap
16681 msgid ""
16682 " int\n"
16683 " guestfs_pvcreate (guestfs_h *g,\n"
16684 "                   const char *device);\n"
16685 "\n"
16686 msgstr ""
16687
16688 # type: textblock
16689 #. type: textblock
16690 #: ../src/guestfs-actions.pod:5303 ../fish/guestfish-actions.pod:3577
16691 msgid ""
16692 "This creates an LVM physical volume on the named C<device>, where C<device> "
16693 "should usually be a partition name such as C</dev/sda1>."
16694 msgstr ""
16695
16696 # type: =head2
16697 #. type: =head2
16698 #: ../src/guestfs-actions.pod:5311
16699 msgid "guestfs_pvremove"
16700 msgstr ""
16701
16702 # type: verbatim
16703 #. type: verbatim
16704 #: ../src/guestfs-actions.pod:5313
16705 #, no-wrap
16706 msgid ""
16707 " int\n"
16708 " guestfs_pvremove (guestfs_h *g,\n"
16709 "                   const char *device);\n"
16710 "\n"
16711 msgstr ""
16712
16713 # type: textblock
16714 #. type: textblock
16715 #: ../src/guestfs-actions.pod:5317 ../fish/guestfish-actions.pod:3585
16716 msgid ""
16717 "This wipes a physical volume C<device> so that LVM will no longer recognise "
16718 "it."
16719 msgstr ""
16720
16721 # type: textblock
16722 #. type: textblock
16723 #: ../src/guestfs-actions.pod:5320 ../fish/guestfish-actions.pod:3588
16724 msgid ""
16725 "The implementation uses the C<pvremove> command which refuses to wipe "
16726 "physical volumes that contain any volume groups, so you have to remove those "
16727 "first."
16728 msgstr ""
16729
16730 # type: =head2
16731 #. type: =head2
16732 #: ../src/guestfs-actions.pod:5328
16733 msgid "guestfs_pvresize"
16734 msgstr ""
16735
16736 # type: verbatim
16737 #. type: verbatim
16738 #: ../src/guestfs-actions.pod:5330
16739 #, no-wrap
16740 msgid ""
16741 " int\n"
16742 " guestfs_pvresize (guestfs_h *g,\n"
16743 "                   const char *device);\n"
16744 "\n"
16745 msgstr ""
16746
16747 # type: textblock
16748 #. type: textblock
16749 #: ../src/guestfs-actions.pod:5334 ../fish/guestfish-actions.pod:3596
16750 msgid ""
16751 "This resizes (expands or shrinks) an existing LVM physical volume to match "
16752 "the new size of the underlying device."
16753 msgstr ""
16754
16755 # type: =head2
16756 #. type: =head2
16757 #: ../src/guestfs-actions.pod:5341
16758 msgid "guestfs_pvresize_size"
16759 msgstr ""
16760
16761 # type: verbatim
16762 #. type: verbatim
16763 #: ../src/guestfs-actions.pod:5343
16764 #, no-wrap
16765 msgid ""
16766 " int\n"
16767 " guestfs_pvresize_size (guestfs_h *g,\n"
16768 "                        const char *device,\n"
16769 "                        int64_t size);\n"
16770 "\n"
16771 msgstr ""
16772
16773 # type: textblock
16774 #. type: textblock
16775 #: ../src/guestfs-actions.pod:5348
16776 msgid ""
16777 "This command is the same as C<guestfs_pvresize> except that it allows you to "
16778 "specify the new size (in bytes) explicitly."
16779 msgstr ""
16780
16781 # type: =head2
16782 #. type: =head2
16783 #: ../src/guestfs-actions.pod:5355
16784 msgid "guestfs_pvs"
16785 msgstr ""
16786
16787 # type: verbatim
16788 #. type: verbatim
16789 #: ../src/guestfs-actions.pod:5357
16790 #, no-wrap
16791 msgid ""
16792 " char **\n"
16793 " guestfs_pvs (guestfs_h *g);\n"
16794 "\n"
16795 msgstr ""
16796
16797 # type: textblock
16798 #. type: textblock
16799 #: ../src/guestfs-actions.pod:5360 ../fish/guestfish-actions.pod:3610
16800 msgid ""
16801 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
16802 "(8)> command."
16803 msgstr ""
16804
16805 # type: textblock
16806 #. type: textblock
16807 #: ../src/guestfs-actions.pod:5363 ../fish/guestfish-actions.pod:3613
16808 msgid ""
16809 "This returns a list of just the device names that contain PVs (eg. C</dev/"
16810 "sda2>)."
16811 msgstr ""
16812
16813 # type: textblock
16814 #. type: textblock
16815 #: ../src/guestfs-actions.pod:5366
16816 msgid "See also C<guestfs_pvs_full>."
16817 msgstr ""
16818
16819 # type: =head2
16820 #. type: =head2
16821 #: ../src/guestfs-actions.pod:5374
16822 msgid "guestfs_pvs_full"
16823 msgstr ""
16824
16825 # type: verbatim
16826 #. type: verbatim
16827 #: ../src/guestfs-actions.pod:5376
16828 #, no-wrap
16829 msgid ""
16830 " struct guestfs_lvm_pv_list *\n"
16831 " guestfs_pvs_full (guestfs_h *g);\n"
16832 "\n"
16833 msgstr ""
16834
16835 # type: textblock
16836 #. type: textblock
16837 #: ../src/guestfs-actions.pod:5379 ../fish/guestfish-actions.pod:3622
16838 msgid ""
16839 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
16840 "(8)> command.  The \"full\" version includes all fields."
16841 msgstr ""
16842
16843 # type: textblock
16844 #. type: textblock
16845 #: ../src/guestfs-actions.pod:5382
16846 msgid ""
16847 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
16848 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
16849 msgstr ""
16850
16851 # type: =head2
16852 #. type: =head2
16853 #: ../src/guestfs-actions.pod:5388
16854 msgid "guestfs_pvuuid"
16855 msgstr ""
16856
16857 # type: verbatim
16858 #. type: verbatim
16859 #: ../src/guestfs-actions.pod:5390
16860 #, no-wrap
16861 msgid ""
16862 " char *\n"
16863 " guestfs_pvuuid (guestfs_h *g,\n"
16864 "                 const char *device);\n"
16865 "\n"
16866 msgstr ""
16867
16868 # type: textblock
16869 #. type: textblock
16870 #: ../src/guestfs-actions.pod:5394 ../fish/guestfish-actions.pod:3629
16871 msgid "This command returns the UUID of the LVM PV C<device>."
16872 msgstr ""
16873
16874 # type: =head2
16875 #. type: =head2
16876 #: ../src/guestfs-actions.pod:5401
16877 msgid "guestfs_pwrite"
16878 msgstr ""
16879
16880 # type: verbatim
16881 #. type: verbatim
16882 #: ../src/guestfs-actions.pod:5403
16883 #, no-wrap
16884 msgid ""
16885 " int\n"
16886 " guestfs_pwrite (guestfs_h *g,\n"
16887 "                 const char *path,\n"
16888 "                 const char *content,\n"
16889 "                 size_t content_size,\n"
16890 "                 int64_t offset);\n"
16891 "\n"
16892 msgstr ""
16893
16894 # type: textblock
16895 #. type: textblock
16896 #: ../src/guestfs-actions.pod:5410 ../fish/guestfish-actions.pod:3635
16897 msgid ""
16898 "This command writes to part of a file.  It writes the data buffer C<content> "
16899 "to the file C<path> starting at offset C<offset>."
16900 msgstr ""
16901
16902 # type: textblock
16903 #. type: textblock
16904 #: ../src/guestfs-actions.pod:5413 ../fish/guestfish-actions.pod:3638
16905 msgid ""
16906 "This command implements the L<pwrite(2)> system call, and like that system "
16907 "call it may not write the full data requested.  The return value is the "
16908 "number of bytes that were actually written to the file.  This could even be "
16909 "0, although short writes are unlikely for regular files in ordinary "
16910 "circumstances."
16911 msgstr ""
16912
16913 # type: textblock
16914 #. type: textblock
16915 #: ../src/guestfs-actions.pod:5419
16916 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
16917 msgstr ""
16918
16919 # type: =head2
16920 #. type: =head2
16921 #: ../src/guestfs-actions.pod:5428
16922 msgid "guestfs_pwrite_device"
16923 msgstr ""
16924
16925 # type: verbatim
16926 #. type: verbatim
16927 #: ../src/guestfs-actions.pod:5430
16928 #, no-wrap
16929 msgid ""
16930 " int\n"
16931 " guestfs_pwrite_device (guestfs_h *g,\n"
16932 "                        const char *device,\n"
16933 "                        const char *content,\n"
16934 "                        size_t content_size,\n"
16935 "                        int64_t offset);\n"
16936 "\n"
16937 msgstr ""
16938
16939 # type: textblock
16940 #. type: textblock
16941 #: ../src/guestfs-actions.pod:5437 ../fish/guestfish-actions.pod:3653
16942 msgid ""
16943 "This command writes to part of a device.  It writes the data buffer "
16944 "C<content> to C<device> starting at offset C<offset>."
16945 msgstr ""
16946
16947 # type: textblock
16948 #. type: textblock
16949 #: ../src/guestfs-actions.pod:5440 ../fish/guestfish-actions.pod:3656
16950 msgid ""
16951 "This command implements the L<pwrite(2)> system call, and like that system "
16952 "call it may not write the full data requested (although short writes to disk "
16953 "devices and partitions are probably impossible with standard Linux kernels)."
16954 msgstr ""
16955
16956 # type: textblock
16957 #. type: textblock
16958 #: ../src/guestfs-actions.pod:5445
16959 msgid "See also C<guestfs_pwrite>."
16960 msgstr ""
16961
16962 # type: textblock
16963 #. type: textblock
16964 #: ../src/guestfs-actions.pod:5452
16965 msgid "(Added in 1.5.20)"
16966 msgstr ""
16967
16968 # type: =head2
16969 #. type: =head2
16970 #: ../src/guestfs-actions.pod:5454
16971 msgid "guestfs_read_file"
16972 msgstr ""
16973
16974 # type: verbatim
16975 #. type: verbatim
16976 #: ../src/guestfs-actions.pod:5456
16977 #, no-wrap
16978 msgid ""
16979 " char *\n"
16980 " guestfs_read_file (guestfs_h *g,\n"
16981 "                    const char *path,\n"
16982 "                    size_t *size_r);\n"
16983 "\n"
16984 msgstr ""
16985
16986 # type: textblock
16987 #. type: textblock
16988 #: ../src/guestfs-actions.pod:5461 ../fish/guestfish-actions.pod:3670
16989 msgid "This calls returns the contents of the file C<path> as a buffer."
16990 msgstr ""
16991
16992 # type: textblock
16993 #. type: textblock
16994 #: ../src/guestfs-actions.pod:5464
16995 msgid ""
16996 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
16997 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
16998 "function is limited in the total size of file that can be handled."
16999 msgstr ""
17000
17001 # type: textblock
17002 #. type: textblock
17003 #: ../src/guestfs-actions.pod:5476
17004 msgid "(Added in 1.0.63)"
17005 msgstr ""
17006
17007 # type: =head2
17008 #. type: =head2
17009 #: ../src/guestfs-actions.pod:5478
17010 msgid "guestfs_read_lines"
17011 msgstr ""
17012
17013 # type: verbatim
17014 #. type: verbatim
17015 #: ../src/guestfs-actions.pod:5480
17016 #, no-wrap
17017 msgid ""
17018 " char **\n"
17019 " guestfs_read_lines (guestfs_h *g,\n"
17020 "                     const char *path);\n"
17021 "\n"
17022 msgstr ""
17023
17024 # type: textblock
17025 #. type: textblock
17026 #: ../src/guestfs-actions.pod:5486 ../fish/guestfish-actions.pod:3687
17027 msgid ""
17028 "The file contents are returned as a list of lines.  Trailing C<LF> and "
17029 "C<CRLF> character sequences are I<not> returned."
17030 msgstr ""
17031
17032 # type: textblock
17033 #. type: textblock
17034 #: ../src/guestfs-actions.pod:5489
17035 msgid ""
17036 "Note that this function cannot correctly handle binary files (specifically, "
17037 "files containing C<\\0> character which is treated as end of line).  For "
17038 "those you need to use the C<guestfs_read_file> function which has a more "
17039 "complex interface."
17040 msgstr ""
17041
17042 # type: =head2
17043 #. type: =head2
17044 #: ../src/guestfs-actions.pod:5500
17045 msgid "guestfs_readdir"
17046 msgstr ""
17047
17048 # type: verbatim
17049 #. type: verbatim
17050 #: ../src/guestfs-actions.pod:5502
17051 #, no-wrap
17052 msgid ""
17053 " struct guestfs_dirent_list *\n"
17054 " guestfs_readdir (guestfs_h *g,\n"
17055 "                  const char *dir);\n"
17056 "\n"
17057 msgstr ""
17058
17059 # type: textblock
17060 #. type: textblock
17061 #: ../src/guestfs-actions.pod:5506 ../fish/guestfish-actions.pod:3699
17062 msgid "This returns the list of directory entries in directory C<dir>."
17063 msgstr ""
17064
17065 # type: textblock
17066 #. type: textblock
17067 #: ../src/guestfs-actions.pod:5508 ../fish/guestfish-actions.pod:3701
17068 msgid ""
17069 "All entries in the directory are returned, including C<.> and C<..>.  The "
17070 "entries are I<not> sorted, but returned in the same order as the underlying "
17071 "filesystem."
17072 msgstr ""
17073
17074 # type: textblock
17075 #. type: textblock
17076 #: ../src/guestfs-actions.pod:5512 ../fish/guestfish-actions.pod:3705
17077 msgid ""
17078 "Also this call returns basic file type information about each file.  The "
17079 "C<ftyp> field will contain one of the following characters:"
17080 msgstr ""
17081
17082 # type: =item
17083 #. type: =item
17084 #: ../src/guestfs-actions.pod:5517 ../fish/guestfish-actions.pod:3710
17085 msgid "'b'"
17086 msgstr ""
17087
17088 # type: textblock
17089 #. type: textblock
17090 #: ../src/guestfs-actions.pod:5519 ../fish/guestfish-actions.pod:3712
17091 msgid "Block special"
17092 msgstr ""
17093
17094 # type: =item
17095 #. type: =item
17096 #: ../src/guestfs-actions.pod:5521 ../fish/guestfish-actions.pod:3714
17097 msgid "'c'"
17098 msgstr ""
17099
17100 # type: textblock
17101 #. type: textblock
17102 #: ../src/guestfs-actions.pod:5523 ../fish/guestfish-actions.pod:3716
17103 msgid "Char special"
17104 msgstr ""
17105
17106 # type: =item
17107 #. type: =item
17108 #: ../src/guestfs-actions.pod:5525 ../fish/guestfish-actions.pod:3718
17109 msgid "'d'"
17110 msgstr ""
17111
17112 # type: textblock
17113 #. type: textblock
17114 #: ../src/guestfs-actions.pod:5527 ../fish/guestfish-actions.pod:3720
17115 msgid "Directory"
17116 msgstr ""
17117
17118 # type: =item
17119 #. type: =item
17120 #: ../src/guestfs-actions.pod:5529 ../fish/guestfish-actions.pod:3722
17121 msgid "'f'"
17122 msgstr ""
17123
17124 # type: textblock
17125 #. type: textblock
17126 #: ../src/guestfs-actions.pod:5531 ../fish/guestfish-actions.pod:3724
17127 msgid "FIFO (named pipe)"
17128 msgstr ""
17129
17130 # type: =item
17131 #. type: =item
17132 #: ../src/guestfs-actions.pod:5533 ../fish/guestfish-actions.pod:3726
17133 msgid "'l'"
17134 msgstr ""
17135
17136 # type: textblock
17137 #. type: textblock
17138 #: ../src/guestfs-actions.pod:5535 ../fish/guestfish-actions.pod:3728
17139 msgid "Symbolic link"
17140 msgstr ""
17141
17142 # type: =item
17143 #. type: =item
17144 #: ../src/guestfs-actions.pod:5537 ../fish/guestfish-actions.pod:3730
17145 msgid "'r'"
17146 msgstr ""
17147
17148 # type: textblock
17149 #. type: textblock
17150 #: ../src/guestfs-actions.pod:5539 ../fish/guestfish-actions.pod:3732
17151 msgid "Regular file"
17152 msgstr ""
17153
17154 # type: =item
17155 #. type: =item
17156 #: ../src/guestfs-actions.pod:5541 ../fish/guestfish-actions.pod:3734
17157 msgid "'s'"
17158 msgstr ""
17159
17160 # type: textblock
17161 #. type: textblock
17162 #: ../src/guestfs-actions.pod:5543 ../fish/guestfish-actions.pod:3736
17163 msgid "Socket"
17164 msgstr ""
17165
17166 # type: =item
17167 #. type: =item
17168 #: ../src/guestfs-actions.pod:5545 ../fish/guestfish-actions.pod:3738
17169 msgid "'u'"
17170 msgstr ""
17171
17172 # type: textblock
17173 #. type: textblock
17174 #: ../src/guestfs-actions.pod:5547 ../fish/guestfish-actions.pod:3740
17175 msgid "Unknown file type"
17176 msgstr ""
17177
17178 # type: =item
17179 #. type: =item
17180 #: ../src/guestfs-actions.pod:5549 ../fish/guestfish-actions.pod:3742
17181 msgid "'?'"
17182 msgstr ""
17183
17184 # type: textblock
17185 #. type: textblock
17186 #: ../src/guestfs-actions.pod:5551 ../fish/guestfish-actions.pod:3744
17187 msgid ""
17188 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
17189 msgstr ""
17190
17191 # type: textblock
17192 #. type: textblock
17193 #: ../src/guestfs-actions.pod:5556
17194 msgid ""
17195 "This function is primarily intended for use by programs.  To get a simple "
17196 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
17197 "consumption, use C<guestfs_ll>."
17198 msgstr ""
17199
17200 # type: textblock
17201 #. type: textblock
17202 #: ../src/guestfs-actions.pod:5560
17203 msgid ""
17204 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
17205 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after use>."
17206 msgstr ""
17207
17208 # type: =head2
17209 #. type: =head2
17210 #: ../src/guestfs-actions.pod:5566
17211 msgid "guestfs_readlink"
17212 msgstr ""
17213
17214 # type: verbatim
17215 #. type: verbatim
17216 #: ../src/guestfs-actions.pod:5568
17217 #, no-wrap
17218 msgid ""
17219 " char *\n"
17220 " guestfs_readlink (guestfs_h *g,\n"
17221 "                   const char *path);\n"
17222 "\n"
17223 msgstr ""
17224
17225 # type: textblock
17226 #. type: textblock
17227 #: ../src/guestfs-actions.pod:5572 ../fish/guestfish-actions.pod:3757
17228 msgid "This command reads the target of a symbolic link."
17229 msgstr ""
17230
17231 # type: =head2
17232 #. type: =head2
17233 #: ../src/guestfs-actions.pod:5579
17234 msgid "guestfs_readlinklist"
17235 msgstr ""
17236
17237 # type: verbatim
17238 #. type: verbatim
17239 #: ../src/guestfs-actions.pod:5581
17240 #, no-wrap
17241 msgid ""
17242 " char **\n"
17243 " guestfs_readlinklist (guestfs_h *g,\n"
17244 "                       const char *path,\n"
17245 "                       char *const *names);\n"
17246 "\n"
17247 msgstr ""
17248
17249 # type: textblock
17250 #. type: textblock
17251 #: ../src/guestfs-actions.pod:5586 ../fish/guestfish-actions.pod:3763
17252 msgid ""
17253 "This call allows you to do a C<readlink> operation on multiple files, where "
17254 "all files are in the directory C<path>.  C<names> is the list of files from "
17255 "this directory."
17256 msgstr ""
17257
17258 # type: textblock
17259 #. type: textblock
17260 #: ../src/guestfs-actions.pod:5590 ../fish/guestfish-actions.pod:3767
17261 msgid ""
17262 "On return you get a list of strings, with a one-to-one correspondence to the "
17263 "C<names> list.  Each string is the value of the symbolic link."
17264 msgstr ""
17265
17266 # type: textblock
17267 #. type: textblock
17268 #: ../src/guestfs-actions.pod:5594 ../fish/guestfish-actions.pod:3771
17269 msgid ""
17270 "If the C<readlink(2)> operation fails on any name, then the corresponding "
17271 "result string is the empty string C<\"\">.  However the whole operation is "
17272 "completed even if there were C<readlink(2)> errors, and so you can call this "
17273 "function with names where you don't know if they are symbolic links already "
17274 "(albeit slightly less efficient)."
17275 msgstr ""
17276
17277 # type: textblock
17278 #. type: textblock
17279 #: ../src/guestfs-actions.pod:5601 ../fish/guestfish-actions.pod:3778
17280 msgid ""
17281 "This call is intended for programs that want to efficiently list a directory "
17282 "contents without making many round-trips.  Very long directory listings "
17283 "might cause the protocol message size to be exceeded, causing this call to "
17284 "fail.  The caller must split up such requests into smaller groups of names."
17285 msgstr ""
17286
17287 # type: =head2
17288 #. type: =head2
17289 #: ../src/guestfs-actions.pod:5614
17290 msgid "guestfs_realpath"
17291 msgstr ""
17292
17293 # type: verbatim
17294 #. type: verbatim
17295 #: ../src/guestfs-actions.pod:5616
17296 #, no-wrap
17297 msgid ""
17298 " char *\n"
17299 " guestfs_realpath (guestfs_h *g,\n"
17300 "                   const char *path);\n"
17301 "\n"
17302 msgstr ""
17303
17304 # type: textblock
17305 #. type: textblock
17306 #: ../src/guestfs-actions.pod:5620 ../fish/guestfish-actions.pod:3789
17307 msgid ""
17308 "Return the canonicalized absolute pathname of C<path>.  The returned path "
17309 "has no C<.>, C<..> or symbolic link path elements."
17310 msgstr ""
17311
17312 # type: =head2
17313 #. type: =head2
17314 #: ../src/guestfs-actions.pod:5628
17315 msgid "guestfs_removexattr"
17316 msgstr ""
17317
17318 # type: verbatim
17319 #. type: verbatim
17320 #: ../src/guestfs-actions.pod:5630
17321 #, no-wrap
17322 msgid ""
17323 " int\n"
17324 " guestfs_removexattr (guestfs_h *g,\n"
17325 "                      const char *xattr,\n"
17326 "                      const char *path);\n"
17327 "\n"
17328 msgstr ""
17329
17330 # type: textblock
17331 #. type: textblock
17332 #: ../src/guestfs-actions.pod:5635 ../fish/guestfish-actions.pod:3796
17333 msgid ""
17334 "This call removes the extended attribute named C<xattr> of the file C<path>."
17335 msgstr ""
17336
17337 # type: textblock
17338 #. type: textblock
17339 #: ../src/guestfs-actions.pod:5638
17340 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
17341 msgstr ""
17342
17343 # type: =head2
17344 #. type: =head2
17345 #: ../src/guestfs-actions.pod:5644
17346 msgid "guestfs_resize2fs"
17347 msgstr ""
17348
17349 # type: verbatim
17350 #. type: verbatim
17351 #: ../src/guestfs-actions.pod:5646
17352 #, no-wrap
17353 msgid ""
17354 " int\n"
17355 " guestfs_resize2fs (guestfs_h *g,\n"
17356 "                    const char *device);\n"
17357 "\n"
17358 msgstr ""
17359
17360 # type: textblock
17361 #. type: textblock
17362 #: ../src/guestfs-actions.pod:5650 ../fish/guestfish-actions.pod:3805
17363 msgid ""
17364 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
17365 "underlying device."
17366 msgstr ""
17367
17368 # type: textblock
17369 #. type: textblock
17370 #: ../src/guestfs-actions.pod:5653
17371 msgid ""
17372 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
17373 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
17374 "sometimes gives an error about this and sometimes not.  In any case, it is "
17375 "always safe to call C<guestfs_e2fsck_f> before calling this function."
17376 msgstr ""
17377
17378 #. type: =head2
17379 #: ../src/guestfs-actions.pod:5663
17380 msgid "guestfs_resize2fs_M"
17381 msgstr ""
17382
17383 #. type: verbatim
17384 #: ../src/guestfs-actions.pod:5665
17385 #, no-wrap
17386 msgid ""
17387 " int\n"
17388 " guestfs_resize2fs_M (guestfs_h *g,\n"
17389 "                      const char *device);\n"
17390 "\n"
17391 msgstr ""
17392
17393 #. type: textblock
17394 #: ../src/guestfs-actions.pod:5669
17395 msgid ""
17396 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
17397 "resized to its minimum size.  This works like the I<-M> option to the "
17398 "C<resize2fs> command."
17399 msgstr ""
17400
17401 #. type: textblock
17402 #: ../src/guestfs-actions.pod:5673
17403 msgid ""
17404 "To get the resulting size of the filesystem you should call "
17405 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
17406 "These two numbers, multiplied together, give the resulting size of the "
17407 "minimal filesystem in bytes."
17408 msgstr ""
17409
17410 # type: =head2
17411 #. type: =head2
17412 #: ../src/guestfs-actions.pod:5680
17413 msgid "guestfs_resize2fs_size"
17414 msgstr ""
17415
17416 # type: verbatim
17417 #. type: verbatim
17418 #: ../src/guestfs-actions.pod:5682
17419 #, no-wrap
17420 msgid ""
17421 " int\n"
17422 " guestfs_resize2fs_size (guestfs_h *g,\n"
17423 "                         const char *device,\n"
17424 "                         int64_t size);\n"
17425 "\n"
17426 msgstr ""
17427
17428 # type: textblock
17429 #. type: textblock
17430 #: ../src/guestfs-actions.pod:5687
17431 msgid ""
17432 "This command is the same as C<guestfs_resize2fs> except that it allows you "
17433 "to specify the new size (in bytes) explicitly."
17434 msgstr ""
17435
17436 # type: =head2
17437 #. type: =head2
17438 #: ../src/guestfs-actions.pod:5694
17439 msgid "guestfs_rm"
17440 msgstr ""
17441
17442 # type: verbatim
17443 #. type: verbatim
17444 #: ../src/guestfs-actions.pod:5696
17445 #, no-wrap
17446 msgid ""
17447 " int\n"
17448 " guestfs_rm (guestfs_h *g,\n"
17449 "             const char *path);\n"
17450 "\n"
17451 msgstr ""
17452
17453 # type: textblock
17454 #. type: textblock
17455 #: ../src/guestfs-actions.pod:5700 ../fish/guestfish-actions.pod:3838
17456 msgid "Remove the single file C<path>."
17457 msgstr ""
17458
17459 # type: =head2
17460 #. type: =head2
17461 #: ../src/guestfs-actions.pod:5706
17462 msgid "guestfs_rm_rf"
17463 msgstr ""
17464
17465 # type: verbatim
17466 #. type: verbatim
17467 #: ../src/guestfs-actions.pod:5708
17468 #, no-wrap
17469 msgid ""
17470 " int\n"
17471 " guestfs_rm_rf (guestfs_h *g,\n"
17472 "                const char *path);\n"
17473 "\n"
17474 msgstr ""
17475
17476 # type: textblock
17477 #. type: textblock
17478 #: ../src/guestfs-actions.pod:5712 ../fish/guestfish-actions.pod:3844
17479 msgid ""
17480 "Remove the file or directory C<path>, recursively removing the contents if "
17481 "its a directory.  This is like the C<rm -rf> shell command."
17482 msgstr ""
17483
17484 # type: =head2
17485 #. type: =head2
17486 #: ../src/guestfs-actions.pod:5720
17487 msgid "guestfs_rmdir"
17488 msgstr ""
17489
17490 # type: verbatim
17491 #. type: verbatim
17492 #: ../src/guestfs-actions.pod:5722
17493 #, no-wrap
17494 msgid ""
17495 " int\n"
17496 " guestfs_rmdir (guestfs_h *g,\n"
17497 "                const char *path);\n"
17498 "\n"
17499 msgstr ""
17500
17501 # type: textblock
17502 #. type: textblock
17503 #: ../src/guestfs-actions.pod:5726 ../fish/guestfish-actions.pod:3852
17504 msgid "Remove the single directory C<path>."
17505 msgstr ""
17506
17507 # type: =head2
17508 #. type: =head2
17509 #: ../src/guestfs-actions.pod:5732
17510 msgid "guestfs_rmmountpoint"
17511 msgstr ""
17512
17513 # type: verbatim
17514 #. type: verbatim
17515 #: ../src/guestfs-actions.pod:5734
17516 #, no-wrap
17517 msgid ""
17518 " int\n"
17519 " guestfs_rmmountpoint (guestfs_h *g,\n"
17520 "                       const char *exemptpath);\n"
17521 "\n"
17522 msgstr ""
17523
17524 # type: textblock
17525 #. type: textblock
17526 #: ../src/guestfs-actions.pod:5738
17527 msgid ""
17528 "This calls removes a mountpoint that was previously created with "
17529 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
17530 msgstr ""
17531
17532 # type: =head2
17533 #. type: =head2
17534 #: ../src/guestfs-actions.pod:5746
17535 msgid "guestfs_scrub_device"
17536 msgstr ""
17537
17538 # type: verbatim
17539 #. type: verbatim
17540 #: ../src/guestfs-actions.pod:5748
17541 #, no-wrap
17542 msgid ""
17543 " int\n"
17544 " guestfs_scrub_device (guestfs_h *g,\n"
17545 "                       const char *device);\n"
17546 "\n"
17547 msgstr ""
17548
17549 # type: textblock
17550 #. type: textblock
17551 #: ../src/guestfs-actions.pod:5752 ../fish/guestfish-actions.pod:3866
17552 msgid ""
17553 "This command writes patterns over C<device> to make data retrieval more "
17554 "difficult."
17555 msgstr ""
17556
17557 # type: textblock
17558 #. type: textblock
17559 #: ../src/guestfs-actions.pod:5755 ../src/guestfs-actions.pod:5776
17560 #: ../src/guestfs-actions.pod:5795 ../fish/guestfish-actions.pod:3869
17561 #: ../fish/guestfish-actions.pod:3884 ../fish/guestfish-actions.pod:3897
17562 msgid ""
17563 "It is an interface to the L<scrub(1)> program.  See that manual page for "
17564 "more details."
17565 msgstr ""
17566
17567 # type: textblock
17568 #. type: textblock
17569 #: ../src/guestfs-actions.pod:5763 ../src/guestfs-actions.pod:5781
17570 #: ../src/guestfs-actions.pod:5800
17571 msgid "(Added in 1.0.52)"
17572 msgstr ""
17573
17574 # type: =head2
17575 #. type: =head2
17576 #: ../src/guestfs-actions.pod:5765
17577 msgid "guestfs_scrub_file"
17578 msgstr ""
17579
17580 # type: verbatim
17581 #. type: verbatim
17582 #: ../src/guestfs-actions.pod:5767
17583 #, no-wrap
17584 msgid ""
17585 " int\n"
17586 " guestfs_scrub_file (guestfs_h *g,\n"
17587 "                     const char *file);\n"
17588 "\n"
17589 msgstr ""
17590
17591 # type: textblock
17592 #. type: textblock
17593 #: ../src/guestfs-actions.pod:5771 ../fish/guestfish-actions.pod:3879
17594 msgid ""
17595 "This command writes patterns over a file to make data retrieval more "
17596 "difficult."
17597 msgstr ""
17598
17599 # type: textblock
17600 #. type: textblock
17601 #: ../src/guestfs-actions.pod:5774 ../fish/guestfish-actions.pod:3882
17602 msgid "The file is I<removed> after scrubbing."
17603 msgstr ""
17604
17605 # type: =head2
17606 #. type: =head2
17607 #: ../src/guestfs-actions.pod:5783
17608 msgid "guestfs_scrub_freespace"
17609 msgstr ""
17610
17611 # type: verbatim
17612 #. type: verbatim
17613 #: ../src/guestfs-actions.pod:5785
17614 #, no-wrap
17615 msgid ""
17616 " int\n"
17617 " guestfs_scrub_freespace (guestfs_h *g,\n"
17618 "                          const char *dir);\n"
17619 "\n"
17620 msgstr ""
17621
17622 # type: textblock
17623 #. type: textblock
17624 #: ../src/guestfs-actions.pod:5789
17625 msgid ""
17626 "This command creates the directory C<dir> and then fills it with files until "
17627 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
17628 "and deletes them.  The intention is to scrub any free space on the partition "
17629 "containing C<dir>."
17630 msgstr ""
17631
17632 # type: =head2
17633 #. type: =head2
17634 #: ../src/guestfs-actions.pod:5802
17635 msgid "guestfs_set_append"
17636 msgstr ""
17637
17638 # type: verbatim
17639 #. type: verbatim
17640 #: ../src/guestfs-actions.pod:5804
17641 #, no-wrap
17642 msgid ""
17643 " int\n"
17644 " guestfs_set_append (guestfs_h *g,\n"
17645 "                     const char *append);\n"
17646 "\n"
17647 msgstr ""
17648
17649 # type: textblock
17650 #. type: textblock
17651 #: ../src/guestfs-actions.pod:5808 ../fish/guestfish-actions.pod:3906
17652 msgid ""
17653 "This function is used to add additional options to the guest kernel command "
17654 "line."
17655 msgstr ""
17656
17657 # type: textblock
17658 #. type: textblock
17659 #: ../src/guestfs-actions.pod:5811 ../fish/guestfish-actions.pod:3909
17660 msgid ""
17661 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
17662 "environment variable."
17663 msgstr ""
17664
17665 # type: textblock
17666 #. type: textblock
17667 #: ../src/guestfs-actions.pod:5814 ../fish/guestfish-actions.pod:3912
17668 msgid ""
17669 "Setting C<append> to C<NULL> means I<no> additional options are passed "
17670 "(libguestfs always adds a few of its own)."
17671 msgstr ""
17672
17673 #. type: =head2
17674 #: ../src/guestfs-actions.pod:5821
17675 msgid "guestfs_set_attach_method"
17676 msgstr ""
17677
17678 #. type: verbatim
17679 #: ../src/guestfs-actions.pod:5823
17680 #, no-wrap
17681 msgid ""
17682 " int\n"
17683 " guestfs_set_attach_method (guestfs_h *g,\n"
17684 "                            const char *attachmethod);\n"
17685 "\n"
17686 msgstr ""
17687
17688 #. type: textblock
17689 #: ../src/guestfs-actions.pod:5827 ../fish/guestfish-actions.pod:3921
17690 msgid ""
17691 "Set the method that libguestfs uses to connect to the back end guestfsd "
17692 "daemon.  Possible methods are:"
17693 msgstr ""
17694
17695 #. type: textblock
17696 #: ../src/guestfs-actions.pod:5834 ../fish/guestfish-actions.pod:3928
17697 msgid ""
17698 "Launch an appliance and connect to it.  This is the ordinary method and the "
17699 "default."
17700 msgstr ""
17701
17702 #. type: =item
17703 #: ../src/guestfs-actions.pod:5837 ../fish/guestfish-actions.pod:3931
17704 msgid "C<unix:I<path>>"
17705 msgstr ""
17706
17707 #. type: textblock
17708 #: ../src/guestfs-actions.pod:5839 ../fish/guestfish-actions.pod:3933
17709 msgid "Connect to the Unix domain socket I<path>."
17710 msgstr ""
17711
17712 #. type: textblock
17713 #: ../src/guestfs-actions.pod:5841 ../fish/guestfish-actions.pod:3935
17714 msgid ""
17715 "This method lets you connect to an existing daemon or (using virtio-serial) "
17716 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
17717 "RUNNING DAEMONS>."
17718 msgstr ""
17719
17720 # type: =head2
17721 #. type: =head2
17722 #: ../src/guestfs-actions.pod:5849
17723 msgid "guestfs_set_autosync"
17724 msgstr ""
17725
17726 # type: verbatim
17727 #. type: verbatim
17728 #: ../src/guestfs-actions.pod:5851
17729 #, no-wrap
17730 msgid ""
17731 " int\n"
17732 " guestfs_set_autosync (guestfs_h *g,\n"
17733 "                       int autosync);\n"
17734 "\n"
17735 msgstr ""
17736
17737 #. type: textblock
17738 #: ../src/guestfs-actions.pod:5855 ../fish/guestfish-actions.pod:3947
17739 msgid ""
17740 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
17741 "effort attempt to make filesystems consistent and synchronized when the "
17742 "handle is closed (also if the program exits without closing handles)."
17743 msgstr ""
17744
17745 # type: textblock
17746 #. type: textblock
17747 #: ../src/guestfs-actions.pod:5860 ../fish/guestfish-actions.pod:3952
17748 msgid ""
17749 "This is enabled by default (since libguestfs 1.5.24, previously it was "
17750 "disabled by default)."
17751 msgstr ""
17752
17753 # type: =head2
17754 #. type: =head2
17755 #: ../src/guestfs-actions.pod:5867
17756 msgid "guestfs_set_direct"
17757 msgstr ""
17758
17759 # type: verbatim
17760 #. type: verbatim
17761 #: ../src/guestfs-actions.pod:5869
17762 #, no-wrap
17763 msgid ""
17764 " int\n"
17765 " guestfs_set_direct (guestfs_h *g,\n"
17766 "                     int direct);\n"
17767 "\n"
17768 msgstr ""
17769
17770 # type: textblock
17771 #. type: textblock
17772 #: ../src/guestfs-actions.pod:5873 ../fish/guestfish-actions.pod:3961
17773 msgid ""
17774 "If the direct appliance mode flag is enabled, then stdin and stdout are "
17775 "passed directly through to the appliance once it is launched."
17776 msgstr ""
17777
17778 # type: textblock
17779 #. type: textblock
17780 #: ../src/guestfs-actions.pod:5877
17781 msgid ""
17782 "One consequence of this is that log messages aren't caught by the library "
17783 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
17784 "stdout."
17785 msgstr ""
17786
17787 # type: textblock
17788 #. type: textblock
17789 #: ../src/guestfs-actions.pod:5881 ../fish/guestfish-actions.pod:3969
17790 msgid "You probably don't want to use this unless you know what you are doing."
17791 msgstr ""
17792
17793 # type: textblock
17794 #. type: textblock
17795 #: ../src/guestfs-actions.pod:5884 ../fish/guestfish-actions.pod:3972
17796 msgid "The default is disabled."
17797 msgstr ""
17798
17799 # type: =head2
17800 #. type: =head2
17801 #: ../src/guestfs-actions.pod:5890
17802 msgid "guestfs_set_e2label"
17803 msgstr ""
17804
17805 # type: verbatim
17806 #. type: verbatim
17807 #: ../src/guestfs-actions.pod:5892
17808 #, no-wrap
17809 msgid ""
17810 " int\n"
17811 " guestfs_set_e2label (guestfs_h *g,\n"
17812 "                      const char *device,\n"
17813 "                      const char *label);\n"
17814 "\n"
17815 msgstr ""
17816
17817 # type: textblock
17818 #. type: textblock
17819 #: ../src/guestfs-actions.pod:5897 ../fish/guestfish-actions.pod:3978
17820 msgid ""
17821 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
17822 "C<label>.  Filesystem labels are limited to 16 characters."
17823 msgstr ""
17824
17825 # type: textblock
17826 #. type: textblock
17827 #: ../src/guestfs-actions.pod:5901
17828 msgid ""
17829 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
17830 "the existing label on a filesystem."
17831 msgstr ""
17832
17833 # type: =head2
17834 #. type: =head2
17835 #: ../src/guestfs-actions.pod:5908
17836 msgid "guestfs_set_e2uuid"
17837 msgstr ""
17838
17839 # type: verbatim
17840 #. type: verbatim
17841 #: ../src/guestfs-actions.pod:5910
17842 #, no-wrap
17843 msgid ""
17844 " int\n"
17845 " guestfs_set_e2uuid (guestfs_h *g,\n"
17846 "                     const char *device,\n"
17847 "                     const char *uuid);\n"
17848 "\n"
17849 msgstr ""
17850
17851 # type: textblock
17852 #. type: textblock
17853 #: ../src/guestfs-actions.pod:5915 ../fish/guestfish-actions.pod:3989
17854 msgid ""
17855 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
17856 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
17857 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
17858 msgstr ""
17859
17860 # type: textblock
17861 #. type: textblock
17862 #: ../src/guestfs-actions.pod:5920
17863 msgid ""
17864 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
17865 "the existing UUID of a filesystem."
17866 msgstr ""
17867
17868 # type: =head2
17869 #. type: =head2
17870 #: ../src/guestfs-actions.pod:5927
17871 msgid "guestfs_set_memsize"
17872 msgstr ""
17873
17874 # type: verbatim
17875 #. type: verbatim
17876 #: ../src/guestfs-actions.pod:5929
17877 #, no-wrap
17878 msgid ""
17879 " int\n"
17880 " guestfs_set_memsize (guestfs_h *g,\n"
17881 "                      int memsize);\n"
17882 "\n"
17883 msgstr ""
17884
17885 # type: textblock
17886 #. type: textblock
17887 #: ../src/guestfs-actions.pod:5933
17888 msgid ""
17889 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
17890 "This only has any effect if called before C<guestfs_launch>."
17891 msgstr ""
17892
17893 # type: textblock
17894 #. type: textblock
17895 #: ../src/guestfs-actions.pod:5937 ../fish/guestfish-actions.pod:4007
17896 msgid ""
17897 "You can also change this by setting the environment variable "
17898 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
17899 msgstr ""
17900
17901 # type: =head2
17902 #. type: =head2
17903 #: ../src/guestfs-actions.pod:5948
17904 msgid "guestfs_set_network"
17905 msgstr ""
17906
17907 # type: verbatim
17908 #. type: verbatim
17909 #: ../src/guestfs-actions.pod:5950
17910 #, no-wrap
17911 msgid ""
17912 " int\n"
17913 " guestfs_set_network (guestfs_h *g,\n"
17914 "                      int network);\n"
17915 "\n"
17916 msgstr ""
17917
17918 # type: textblock
17919 #. type: textblock
17920 #: ../src/guestfs-actions.pod:5954 ../fish/guestfish-actions.pod:4020
17921 msgid ""
17922 "If C<network> is true, then the network is enabled in the libguestfs "
17923 "appliance.  The default is false."
17924 msgstr ""
17925
17926 # type: textblock
17927 #. type: textblock
17928 #: ../src/guestfs-actions.pod:5957 ../fish/guestfish-actions.pod:4023
17929 msgid ""
17930 "This affects whether commands are able to access the network (see L<guestfs"
17931 "(3)/RUNNING COMMANDS>)."
17932 msgstr ""
17933
17934 # type: textblock
17935 #. type: textblock
17936 #: ../src/guestfs-actions.pod:5960
17937 msgid ""
17938 "You must call this before calling C<guestfs_launch>, otherwise it has no "
17939 "effect."
17940 msgstr ""
17941
17942 # type: =head2
17943 #. type: =head2
17944 #: ../src/guestfs-actions.pod:5967
17945 msgid "guestfs_set_path"
17946 msgstr ""
17947
17948 # type: verbatim
17949 #. type: verbatim
17950 #: ../src/guestfs-actions.pod:5969
17951 #, no-wrap
17952 msgid ""
17953 " int\n"
17954 " guestfs_set_path (guestfs_h *g,\n"
17955 "                   const char *searchpath);\n"
17956 "\n"
17957 msgstr ""
17958
17959 # type: textblock
17960 #. type: textblock
17961 #: ../src/guestfs-actions.pod:5973 ../fish/guestfish-actions.pod:4035
17962 msgid "Set the path that libguestfs searches for kernel and initrd.img."
17963 msgstr ""
17964
17965 # type: textblock
17966 #. type: textblock
17967 #: ../src/guestfs-actions.pod:5975 ../fish/guestfish-actions.pod:4037
17968 msgid ""
17969 "The default is C<$libdir/guestfs> unless overridden by setting "
17970 "C<LIBGUESTFS_PATH> environment variable."
17971 msgstr ""
17972
17973 # type: textblock
17974 #. type: textblock
17975 #: ../src/guestfs-actions.pod:5978 ../fish/guestfish-actions.pod:4040
17976 msgid "Setting C<path> to C<NULL> restores the default path."
17977 msgstr ""
17978
17979 # type: =head2
17980 #. type: =head2
17981 #: ../src/guestfs-actions.pod:5984
17982 msgid "guestfs_set_qemu"
17983 msgstr ""
17984
17985 # type: verbatim
17986 #. type: verbatim
17987 #: ../src/guestfs-actions.pod:5986
17988 #, no-wrap
17989 msgid ""
17990 " int\n"
17991 " guestfs_set_qemu (guestfs_h *g,\n"
17992 "                   const char *qemu);\n"
17993 "\n"
17994 msgstr ""
17995
17996 # type: textblock
17997 #. type: textblock
17998 #: ../src/guestfs-actions.pod:5990 ../fish/guestfish-actions.pod:4048
17999 msgid "Set the qemu binary that we will use."
18000 msgstr ""
18001
18002 # type: textblock
18003 #. type: textblock
18004 #: ../src/guestfs-actions.pod:5992 ../fish/guestfish-actions.pod:4050
18005 msgid ""
18006 "The default is chosen when the library was compiled by the configure script."
18007 msgstr ""
18008
18009 # type: textblock
18010 #. type: textblock
18011 #: ../src/guestfs-actions.pod:5995 ../fish/guestfish-actions.pod:4053
18012 msgid ""
18013 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
18014 "variable."
18015 msgstr ""
18016
18017 # type: textblock
18018 #. type: textblock
18019 #: ../src/guestfs-actions.pod:5998 ../fish/guestfish-actions.pod:4056
18020 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
18021 msgstr ""
18022
18023 # type: textblock
18024 #. type: textblock
18025 #: ../src/guestfs-actions.pod:6000 ../fish/guestfish-actions.pod:4058
18026 msgid ""
18027 "Note that you should call this function as early as possible after creating "
18028 "the handle.  This is because some pre-launch operations depend on testing "
18029 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
18030 "don't retest features, and so you might see inconsistent results.  Using the "
18031 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
18032 "the qemu binary at the same time as the handle is created."
18033 msgstr ""
18034
18035 # type: =head2
18036 #. type: =head2
18037 #: ../src/guestfs-actions.pod:6012
18038 msgid "guestfs_set_recovery_proc"
18039 msgstr ""
18040
18041 # type: verbatim
18042 #. type: verbatim
18043 #: ../src/guestfs-actions.pod:6014
18044 #, no-wrap
18045 msgid ""
18046 " int\n"
18047 " guestfs_set_recovery_proc (guestfs_h *g,\n"
18048 "                            int recoveryproc);\n"
18049 "\n"
18050 msgstr ""
18051
18052 # type: textblock
18053 #. type: textblock
18054 #: ../src/guestfs-actions.pod:6018
18055 msgid ""
18056 "If this is called with the parameter C<false> then C<guestfs_launch> does "
18057 "not create a recovery process.  The purpose of the recovery process is to "
18058 "stop runaway qemu processes in the case where the main program aborts "
18059 "abruptly."
18060 msgstr ""
18061
18062 # type: textblock
18063 #. type: textblock
18064 #: ../src/guestfs-actions.pod:6023
18065 msgid ""
18066 "This only has any effect if called before C<guestfs_launch>, and the default "
18067 "is true."
18068 msgstr ""
18069
18070 # type: textblock
18071 #. type: textblock
18072 #: ../src/guestfs-actions.pod:6026 ../fish/guestfish-actions.pod:4080
18073 msgid ""
18074 "About the only time when you would want to disable this is if the main "
18075 "process will fork itself into the background (\"daemonize\" itself).  In "
18076 "this case the recovery process thinks that the main program has disappeared "
18077 "and so kills qemu, which is not very helpful."
18078 msgstr ""
18079
18080 # type: =head2
18081 #. type: =head2
18082 #: ../src/guestfs-actions.pod:6036
18083 msgid "guestfs_set_selinux"
18084 msgstr ""
18085
18086 # type: verbatim
18087 #. type: verbatim
18088 #: ../src/guestfs-actions.pod:6038
18089 #, no-wrap
18090 msgid ""
18091 " int\n"
18092 " guestfs_set_selinux (guestfs_h *g,\n"
18093 "                      int selinux);\n"
18094 "\n"
18095 msgstr ""
18096
18097 # type: textblock
18098 #. type: textblock
18099 #: ../src/guestfs-actions.pod:6042 ../fish/guestfish-actions.pod:4092
18100 msgid ""
18101 "This sets the selinux flag that is passed to the appliance at boot time.  "
18102 "The default is C<selinux=0> (disabled)."
18103 msgstr ""
18104
18105 # type: textblock
18106 #. type: textblock
18107 #: ../src/guestfs-actions.pod:6045 ../fish/guestfish-actions.pod:4095
18108 msgid ""
18109 "Note that if SELinux is enabled, it is always in Permissive mode "
18110 "(C<enforcing=0>)."
18111 msgstr ""
18112
18113 # type: =head2
18114 #. type: =head2
18115 #: ../src/guestfs-actions.pod:6055
18116 msgid "guestfs_set_trace"
18117 msgstr ""
18118
18119 # type: verbatim
18120 #. type: verbatim
18121 #: ../src/guestfs-actions.pod:6057
18122 #, no-wrap
18123 msgid ""
18124 " int\n"
18125 " guestfs_set_trace (guestfs_h *g,\n"
18126 "                    int trace);\n"
18127 "\n"
18128 msgstr ""
18129
18130 #. type: textblock
18131 #: ../src/guestfs-actions.pod:6061 ../fish/guestfish-actions.pod:4107
18132 msgid ""
18133 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
18134 "return values are traced."
18135 msgstr ""
18136
18137 # type: textblock
18138 #. type: textblock
18139 #: ../src/guestfs-actions.pod:6064 ../fish/guestfish-actions.pod:4110
18140 msgid ""
18141 "If you want to trace C API calls into libguestfs (and other libraries) then "
18142 "possibly a better way is to use the external ltrace(1) command."
18143 msgstr ""
18144
18145 # type: textblock
18146 #. type: textblock
18147 #: ../src/guestfs-actions.pod:6068 ../fish/guestfish-actions.pod:4114
18148 msgid ""
18149 "Command traces are disabled unless the environment variable "
18150 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
18151 msgstr ""
18152
18153 #. type: textblock
18154 #: ../src/guestfs-actions.pod:6071
18155 msgid ""
18156 "Trace messages are normally sent to C<stderr>, unless you register a "
18157 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
18158 msgstr ""
18159
18160 # type: =head2
18161 #. type: =head2
18162 #: ../src/guestfs-actions.pod:6079
18163 msgid "guestfs_set_verbose"
18164 msgstr ""
18165
18166 # type: verbatim
18167 #. type: verbatim
18168 #: ../src/guestfs-actions.pod:6081
18169 #, no-wrap
18170 msgid ""
18171 " int\n"
18172 " guestfs_set_verbose (guestfs_h *g,\n"
18173 "                      int verbose);\n"
18174 "\n"
18175 msgstr ""
18176
18177 #. type: textblock
18178 #: ../src/guestfs-actions.pod:6085 ../fish/guestfish-actions.pod:4127
18179 msgid "If C<verbose> is true, this turns on verbose messages."
18180 msgstr ""
18181
18182 # type: textblock
18183 #. type: textblock
18184 #: ../src/guestfs-actions.pod:6087 ../fish/guestfish-actions.pod:4129
18185 msgid ""
18186 "Verbose messages are disabled unless the environment variable "
18187 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
18188 msgstr ""
18189
18190 #. type: textblock
18191 #: ../src/guestfs-actions.pod:6090
18192 msgid ""
18193 "Verbose messages are normally sent to C<stderr>, unless you register a "
18194 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
18195 msgstr ""
18196
18197 # type: =head2
18198 #. type: =head2
18199 #: ../src/guestfs-actions.pod:6098
18200 msgid "guestfs_setcon"
18201 msgstr ""
18202
18203 # type: verbatim
18204 #. type: verbatim
18205 #: ../src/guestfs-actions.pod:6100
18206 #, no-wrap
18207 msgid ""
18208 " int\n"
18209 " guestfs_setcon (guestfs_h *g,\n"
18210 "                 const char *context);\n"
18211 "\n"
18212 msgstr ""
18213
18214 # type: textblock
18215 #. type: textblock
18216 #: ../src/guestfs-actions.pod:6104 ../fish/guestfish-actions.pod:4140
18217 msgid ""
18218 "This sets the SELinux security context of the daemon to the string "
18219 "C<context>."
18220 msgstr ""
18221
18222 # type: textblock
18223 #. type: textblock
18224 #: ../src/guestfs-actions.pod:6107 ../fish/guestfish-actions.pod:4143
18225 msgid "See the documentation about SELINUX in L<guestfs(3)>."
18226 msgstr ""
18227
18228 # type: =head2
18229 #. type: =head2
18230 #: ../src/guestfs-actions.pod:6113
18231 msgid "guestfs_setxattr"
18232 msgstr ""
18233
18234 # type: verbatim
18235 #. type: verbatim
18236 #: ../src/guestfs-actions.pod:6115
18237 #, no-wrap
18238 msgid ""
18239 " int\n"
18240 " guestfs_setxattr (guestfs_h *g,\n"
18241 "                   const char *xattr,\n"
18242 "                   const char *val,\n"
18243 "                   int vallen,\n"
18244 "                   const char *path);\n"
18245 "\n"
18246 msgstr ""
18247
18248 # type: textblock
18249 #. type: textblock
18250 #: ../src/guestfs-actions.pod:6122 ../fish/guestfish-actions.pod:4149
18251 msgid ""
18252 "This call sets the extended attribute named C<xattr> of the file C<path> to "
18253 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
18254 msgstr ""
18255
18256 # type: textblock
18257 #. type: textblock
18258 #: ../src/guestfs-actions.pod:6126
18259 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
18260 msgstr ""
18261
18262 # type: =head2
18263 #. type: =head2
18264 #: ../src/guestfs-actions.pod:6132
18265 msgid "guestfs_sfdisk"
18266 msgstr ""
18267
18268 # type: verbatim
18269 #. type: verbatim
18270 #: ../src/guestfs-actions.pod:6134
18271 #, no-wrap
18272 msgid ""
18273 " int\n"
18274 " guestfs_sfdisk (guestfs_h *g,\n"
18275 "                 const char *device,\n"
18276 "                 int cyls,\n"
18277 "                 int heads,\n"
18278 "                 int sectors,\n"
18279 "                 char *const *lines);\n"
18280 "\n"
18281 msgstr ""
18282
18283 # type: textblock
18284 #. type: textblock
18285 #: ../src/guestfs-actions.pod:6142 ../fish/guestfish-actions.pod:4159
18286 msgid ""
18287 "This is a direct interface to the L<sfdisk(8)> program for creating "
18288 "partitions on block devices."
18289 msgstr ""
18290
18291 # type: textblock
18292 #. type: textblock
18293 #: ../src/guestfs-actions.pod:6145 ../fish/guestfish-actions.pod:4162
18294 msgid "C<device> should be a block device, for example C</dev/sda>."
18295 msgstr ""
18296
18297 # type: textblock
18298 #. type: textblock
18299 #: ../src/guestfs-actions.pod:6147 ../fish/guestfish-actions.pod:4164
18300 msgid ""
18301 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
18302 "sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
18303 "H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
18304 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
18305 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
18306 "the kernel) cannot work out the right geometry and you will need to tell it."
18307 msgstr ""
18308
18309 # type: textblock
18310 #. type: textblock
18311 #: ../src/guestfs-actions.pod:6155 ../fish/guestfish-actions.pod:4172
18312 msgid ""
18313 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
18314 "refer to the L<sfdisk(8)> manpage."
18315 msgstr ""
18316
18317 # type: textblock
18318 #. type: textblock
18319 #: ../src/guestfs-actions.pod:6158 ../fish/guestfish-actions.pod:4175
18320 msgid ""
18321 "To create a single partition occupying the whole disk, you would pass "
18322 "C<lines> as a single element list, when the single element being the string "
18323 "C<,> (comma)."
18324 msgstr ""
18325
18326 # type: textblock
18327 #. type: textblock
18328 #: ../src/guestfs-actions.pod:6162
18329 msgid ""
18330 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
18331 msgstr ""
18332
18333 #. type: textblock
18334 #: ../src/guestfs-actions.pod:6170 ../src/guestfs-actions.pod:6200
18335 #: ../src/guestfs-actions.pod:6233
18336 msgid ""
18337 "This function is deprecated.  In new code, use the L</guestfs_part_add> call "
18338 "instead."
18339 msgstr ""
18340
18341 # type: =head2
18342 #. type: =head2
18343 #: ../src/guestfs-actions.pod:6179
18344 msgid "guestfs_sfdiskM"
18345 msgstr ""
18346
18347 # type: verbatim
18348 #. type: verbatim
18349 #: ../src/guestfs-actions.pod:6181
18350 #, no-wrap
18351 msgid ""
18352 " int\n"
18353 " guestfs_sfdiskM (guestfs_h *g,\n"
18354 "                  const char *device,\n"
18355 "                  char *const *lines);\n"
18356 "\n"
18357 msgstr ""
18358
18359 # type: textblock
18360 #. type: textblock
18361 #: ../src/guestfs-actions.pod:6186
18362 msgid ""
18363 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
18364 "partition sizes are specified in megabytes only (rounded to the nearest "
18365 "cylinder) and you don't need to specify the cyls, heads and sectors "
18366 "parameters which were rarely if ever used anyway."
18367 msgstr ""
18368
18369 # type: textblock
18370 #. type: textblock
18371 #: ../src/guestfs-actions.pod:6192
18372 msgid ""
18373 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
18374 "C<guestfs_part_disk>"
18375 msgstr ""
18376
18377 # type: =head2
18378 #. type: =head2
18379 #: ../src/guestfs-actions.pod:6209
18380 msgid "guestfs_sfdisk_N"
18381 msgstr ""
18382
18383 # type: verbatim
18384 #. type: verbatim
18385 #: ../src/guestfs-actions.pod:6211
18386 #, no-wrap
18387 msgid ""
18388 " int\n"
18389 " guestfs_sfdisk_N (guestfs_h *g,\n"
18390 "                   const char *device,\n"
18391 "                   int partnum,\n"
18392 "                   int cyls,\n"
18393 "                   int heads,\n"
18394 "                   int sectors,\n"
18395 "                   const char *line);\n"
18396 "\n"
18397 msgstr ""
18398
18399 # type: textblock
18400 #. type: textblock
18401 #: ../src/guestfs-actions.pod:6220 ../fish/guestfish-actions.pod:4219
18402 msgid ""
18403 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
18404 "(note: C<n> counts from 1)."
18405 msgstr ""
18406
18407 # type: textblock
18408 #. type: textblock
18409 #: ../src/guestfs-actions.pod:6223
18410 msgid ""
18411 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
18412 "for the cyls/heads/sectors parameters."
18413 msgstr ""
18414
18415 # type: textblock
18416 #. type: textblock
18417 #: ../src/guestfs-actions.pod:6226
18418 msgid "See also: C<guestfs_part_add>"
18419 msgstr ""
18420
18421 # type: =head2
18422 #. type: =head2
18423 #: ../src/guestfs-actions.pod:6242
18424 msgid "guestfs_sfdisk_disk_geometry"
18425 msgstr ""
18426
18427 # type: verbatim
18428 #. type: verbatim
18429 #: ../src/guestfs-actions.pod:6244
18430 #, no-wrap
18431 msgid ""
18432 " char *\n"
18433 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
18434 "                               const char *device);\n"
18435 "\n"
18436 msgstr ""
18437
18438 # type: textblock
18439 #. type: textblock
18440 #: ../src/guestfs-actions.pod:6248
18441 msgid ""
18442 "This displays the disk geometry of C<device> read from the partition table.  "
18443 "Especially in the case where the underlying block device has been resized, "
18444 "this can be different from the kernel's idea of the geometry (see "
18445 "C<guestfs_sfdisk_kernel_geometry>)."
18446 msgstr ""
18447
18448 # type: textblock
18449 #. type: textblock
18450 #: ../src/guestfs-actions.pod:6253 ../src/guestfs-actions.pod:6269
18451 #: ../fish/guestfish-actions.pod:4246 ../fish/guestfish-actions.pod:4255
18452 msgid "The result is in human-readable format, and not designed to be parsed."
18453 msgstr ""
18454
18455 # type: =head2
18456 #. type: =head2
18457 #: ../src/guestfs-actions.pod:6261
18458 msgid "guestfs_sfdisk_kernel_geometry"
18459 msgstr ""
18460
18461 # type: verbatim
18462 #. type: verbatim
18463 #: ../src/guestfs-actions.pod:6263
18464 #, no-wrap
18465 msgid ""
18466 " char *\n"
18467 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
18468 "                                 const char *device);\n"
18469 "\n"
18470 msgstr ""
18471
18472 # type: textblock
18473 #. type: textblock
18474 #: ../src/guestfs-actions.pod:6267 ../fish/guestfish-actions.pod:4253
18475 msgid "This displays the kernel's idea of the geometry of C<device>."
18476 msgstr ""
18477
18478 # type: =head2
18479 #. type: =head2
18480 #: ../src/guestfs-actions.pod:6277
18481 msgid "guestfs_sfdisk_l"
18482 msgstr ""
18483
18484 # type: verbatim
18485 #. type: verbatim
18486 #: ../src/guestfs-actions.pod:6279
18487 #, no-wrap
18488 msgid ""
18489 " char *\n"
18490 " guestfs_sfdisk_l (guestfs_h *g,\n"
18491 "                   const char *device);\n"
18492 "\n"
18493 msgstr ""
18494
18495 # type: textblock
18496 #. type: textblock
18497 #: ../src/guestfs-actions.pod:6283 ../fish/guestfish-actions.pod:4262
18498 msgid ""
18499 "This displays the partition table on C<device>, in the human-readable output "
18500 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
18501 msgstr ""
18502
18503 # type: textblock
18504 #. type: textblock
18505 #: ../src/guestfs-actions.pod:6287
18506 msgid "See also: C<guestfs_part_list>"
18507 msgstr ""
18508
18509 #. type: textblock
18510 #: ../src/guestfs-actions.pod:6292
18511 msgid ""
18512 "This function is deprecated.  In new code, use the L</guestfs_part_list> "
18513 "call instead."
18514 msgstr ""
18515
18516 # type: =head2
18517 #. type: =head2
18518 #: ../src/guestfs-actions.pod:6301
18519 msgid "guestfs_sh"
18520 msgstr ""
18521
18522 # type: verbatim
18523 #. type: verbatim
18524 #: ../src/guestfs-actions.pod:6303
18525 #, no-wrap
18526 msgid ""
18527 " char *\n"
18528 " guestfs_sh (guestfs_h *g,\n"
18529 "             const char *command);\n"
18530 "\n"
18531 msgstr ""
18532
18533 # type: textblock
18534 #. type: textblock
18535 #: ../src/guestfs-actions.pod:6307 ../fish/guestfish-actions.pod:4279
18536 msgid ""
18537 "This call runs a command from the guest filesystem via the guest's C</bin/"
18538 "sh>."
18539 msgstr ""
18540
18541 # type: textblock
18542 #. type: textblock
18543 #: ../src/guestfs-actions.pod:6310
18544 msgid "This is like C<guestfs_command>, but passes the command to:"
18545 msgstr ""
18546
18547 # type: verbatim
18548 #. type: verbatim
18549 #: ../src/guestfs-actions.pod:6312 ../fish/guestfish-actions.pod:4284
18550 #, no-wrap
18551 msgid ""
18552 " /bin/sh -c \"command\"\n"
18553 "\n"
18554 msgstr ""
18555
18556 # type: textblock
18557 #. type: textblock
18558 #: ../src/guestfs-actions.pod:6314 ../fish/guestfish-actions.pod:4286
18559 msgid ""
18560 "Depending on the guest's shell, this usually results in wildcards being "
18561 "expanded, shell expressions being interpolated and so on."
18562 msgstr ""
18563
18564 # type: textblock
18565 #. type: textblock
18566 #: ../src/guestfs-actions.pod:6318
18567 msgid "All the provisos about C<guestfs_command> apply to this call."
18568 msgstr ""
18569
18570 # type: =head2
18571 #. type: =head2
18572 #: ../src/guestfs-actions.pod:6325
18573 msgid "guestfs_sh_lines"
18574 msgstr ""
18575
18576 # type: verbatim
18577 #. type: verbatim
18578 #: ../src/guestfs-actions.pod:6327
18579 #, no-wrap
18580 msgid ""
18581 " char **\n"
18582 " guestfs_sh_lines (guestfs_h *g,\n"
18583 "                   const char *command);\n"
18584 "\n"
18585 msgstr ""
18586
18587 # type: textblock
18588 #. type: textblock
18589 #: ../src/guestfs-actions.pod:6331
18590 msgid ""
18591 "This is the same as C<guestfs_sh>, but splits the result into a list of "
18592 "lines."
18593 msgstr ""
18594
18595 # type: textblock
18596 #. type: textblock
18597 #: ../src/guestfs-actions.pod:6334
18598 msgid "See also: C<guestfs_command_lines>"
18599 msgstr ""
18600
18601 # type: =head2
18602 #. type: =head2
18603 #: ../src/guestfs-actions.pod:6342
18604 msgid "guestfs_sleep"
18605 msgstr ""
18606
18607 # type: verbatim
18608 #. type: verbatim
18609 #: ../src/guestfs-actions.pod:6344
18610 #, no-wrap
18611 msgid ""
18612 " int\n"
18613 " guestfs_sleep (guestfs_h *g,\n"
18614 "                int secs);\n"
18615 "\n"
18616 msgstr ""
18617
18618 # type: textblock
18619 #. type: textblock
18620 #: ../src/guestfs-actions.pod:6348 ../fish/guestfish-actions.pod:4305
18621 msgid "Sleep for C<secs> seconds."
18622 msgstr ""
18623
18624 # type: textblock
18625 #. type: textblock
18626 #: ../src/guestfs-actions.pod:6352
18627 msgid "(Added in 1.0.41)"
18628 msgstr ""
18629
18630 # type: =head2
18631 #. type: =head2
18632 #: ../src/guestfs-actions.pod:6354 ../src/guestfs-structs.pod:109
18633 msgid "guestfs_stat"
18634 msgstr ""
18635
18636 # type: verbatim
18637 #. type: verbatim
18638 #: ../src/guestfs-actions.pod:6356
18639 #, no-wrap
18640 msgid ""
18641 " struct guestfs_stat *\n"
18642 " guestfs_stat (guestfs_h *g,\n"
18643 "               const char *path);\n"
18644 "\n"
18645 msgstr ""
18646
18647 # type: textblock
18648 #. type: textblock
18649 #: ../src/guestfs-actions.pod:6362 ../fish/guestfish-actions.pod:4313
18650 msgid "This is the same as the C<stat(2)> system call."
18651 msgstr ""
18652
18653 # type: =head2
18654 #. type: =head2
18655 #: ../src/guestfs-actions.pod:6370 ../src/guestfs-structs.pod:135
18656 msgid "guestfs_statvfs"
18657 msgstr ""
18658
18659 # type: verbatim
18660 #. type: verbatim
18661 #: ../src/guestfs-actions.pod:6372
18662 #, no-wrap
18663 msgid ""
18664 " struct guestfs_statvfs *\n"
18665 " guestfs_statvfs (guestfs_h *g,\n"
18666 "                  const char *path);\n"
18667 "\n"
18668 msgstr ""
18669
18670 # type: textblock
18671 #. type: textblock
18672 #: ../src/guestfs-actions.pod:6376 ../fish/guestfish-actions.pod:4319
18673 msgid ""
18674 "Returns file system statistics for any mounted file system.  C<path> should "
18675 "be a file or directory in the mounted file system (typically it is the mount "
18676 "point itself, but it doesn't need to be)."
18677 msgstr ""
18678
18679 # type: textblock
18680 #. type: textblock
18681 #: ../src/guestfs-actions.pod:6380 ../fish/guestfish-actions.pod:4323
18682 msgid "This is the same as the C<statvfs(2)> system call."
18683 msgstr ""
18684
18685 # type: textblock
18686 #. type: textblock
18687 #: ../src/guestfs-actions.pod:6382
18688 msgid ""
18689 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
18690 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
18691 msgstr ""
18692
18693 # type: =head2
18694 #. type: =head2
18695 #: ../src/guestfs-actions.pod:6388
18696 msgid "guestfs_strings"
18697 msgstr ""
18698
18699 # type: verbatim
18700 #. type: verbatim
18701 #: ../src/guestfs-actions.pod:6390
18702 #, no-wrap
18703 msgid ""
18704 " char **\n"
18705 " guestfs_strings (guestfs_h *g,\n"
18706 "                  const char *path);\n"
18707 "\n"
18708 msgstr ""
18709
18710 # type: textblock
18711 #. type: textblock
18712 #: ../src/guestfs-actions.pod:6394 ../fish/guestfish-actions.pod:4329
18713 msgid ""
18714 "This runs the L<strings(1)> command on a file and returns the list of "
18715 "printable strings found."
18716 msgstr ""
18717
18718 # type: =head2
18719 #. type: =head2
18720 #: ../src/guestfs-actions.pod:6406
18721 msgid "guestfs_strings_e"
18722 msgstr ""
18723
18724 # type: verbatim
18725 #. type: verbatim
18726 #: ../src/guestfs-actions.pod:6408
18727 #, no-wrap
18728 msgid ""
18729 " char **\n"
18730 " guestfs_strings_e (guestfs_h *g,\n"
18731 "                    const char *encoding,\n"
18732 "                    const char *path);\n"
18733 "\n"
18734 msgstr ""
18735
18736 # type: textblock
18737 #. type: textblock
18738 #: ../src/guestfs-actions.pod:6413
18739 msgid ""
18740 "This is like the C<guestfs_strings> command, but allows you to specify the "
18741 "encoding of strings that are looked for in the source file C<path>."
18742 msgstr ""
18743
18744 # type: textblock
18745 #. type: textblock
18746 #: ../src/guestfs-actions.pod:6417 ../fish/guestfish-actions.pod:4343
18747 msgid "Allowed encodings are:"
18748 msgstr ""
18749
18750 # type: =item
18751 #. type: =item
18752 #: ../src/guestfs-actions.pod:6421 ../fish/guestfish-actions.pod:4347
18753 msgid "s"
18754 msgstr ""
18755
18756 # type: textblock
18757 #. type: textblock
18758 #: ../src/guestfs-actions.pod:6423
18759 msgid ""
18760 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
18761 "ISO-8859-X (this is what C<guestfs_strings> uses)."
18762 msgstr ""
18763
18764 # type: =item
18765 #. type: =item
18766 #: ../src/guestfs-actions.pod:6426 ../fish/guestfish-actions.pod:4352
18767 msgid "S"
18768 msgstr ""
18769
18770 # type: textblock
18771 #. type: textblock
18772 #: ../src/guestfs-actions.pod:6428 ../fish/guestfish-actions.pod:4354
18773 msgid "Single 8-bit-byte characters."
18774 msgstr ""
18775
18776 # type: =item
18777 #. type: =item
18778 #: ../src/guestfs-actions.pod:6430 ../fish/guestfish-actions.pod:4356
18779 msgid "b"
18780 msgstr ""
18781
18782 # type: textblock
18783 #. type: textblock
18784 #: ../src/guestfs-actions.pod:6432 ../fish/guestfish-actions.pod:4358
18785 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
18786 msgstr ""
18787
18788 # type: =item
18789 #. type: =item
18790 #: ../src/guestfs-actions.pod:6435 ../fish/guestfish-actions.pod:4361
18791 msgid "l (lower case letter L)"
18792 msgstr ""
18793
18794 # type: textblock
18795 #. type: textblock
18796 #: ../src/guestfs-actions.pod:6437 ../fish/guestfish-actions.pod:4363
18797 msgid ""
18798 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
18799 "examining binaries in Windows guests."
18800 msgstr ""
18801
18802 # type: =item
18803 #. type: =item
18804 #: ../src/guestfs-actions.pod:6440 ../fish/guestfish-actions.pod:4366
18805 msgid "B"
18806 msgstr ""
18807
18808 # type: textblock
18809 #. type: textblock
18810 #: ../src/guestfs-actions.pod:6442 ../fish/guestfish-actions.pod:4368
18811 msgid "32-bit big endian such as UCS-4BE."
18812 msgstr ""
18813
18814 # type: =item
18815 #. type: =item
18816 #: ../src/guestfs-actions.pod:6444 ../fish/guestfish-actions.pod:4370
18817 msgid "L"
18818 msgstr ""
18819
18820 # type: textblock
18821 #. type: textblock
18822 #: ../src/guestfs-actions.pod:6446 ../fish/guestfish-actions.pod:4372
18823 msgid "32-bit little endian such as UCS-4LE."
18824 msgstr ""
18825
18826 # type: textblock
18827 #. type: textblock
18828 #: ../src/guestfs-actions.pod:6450 ../fish/guestfish-actions.pod:4376
18829 msgid "The returned strings are transcoded to UTF-8."
18830 msgstr ""
18831
18832 # type: =head2
18833 #. type: =head2
18834 #: ../src/guestfs-actions.pod:6461
18835 msgid "guestfs_swapoff_device"
18836 msgstr ""
18837
18838 # type: verbatim
18839 #. type: verbatim
18840 #: ../src/guestfs-actions.pod:6463
18841 #, no-wrap
18842 msgid ""
18843 " int\n"
18844 " guestfs_swapoff_device (guestfs_h *g,\n"
18845 "                         const char *device);\n"
18846 "\n"
18847 msgstr ""
18848
18849 # type: textblock
18850 #. type: textblock
18851 #: ../src/guestfs-actions.pod:6467
18852 msgid ""
18853 "This command disables the libguestfs appliance swap device or partition "
18854 "named C<device>.  See C<guestfs_swapon_device>."
18855 msgstr ""
18856
18857 # type: =head2
18858 #. type: =head2
18859 #: ../src/guestfs-actions.pod:6475
18860 msgid "guestfs_swapoff_file"
18861 msgstr ""
18862
18863 # type: verbatim
18864 #. type: verbatim
18865 #: ../src/guestfs-actions.pod:6477
18866 #, no-wrap
18867 msgid ""
18868 " int\n"
18869 " guestfs_swapoff_file (guestfs_h *g,\n"
18870 "                       const char *file);\n"
18871 "\n"
18872 msgstr ""
18873
18874 # type: textblock
18875 #. type: textblock
18876 #: ../src/guestfs-actions.pod:6481 ../fish/guestfish-actions.pod:4393
18877 msgid "This command disables the libguestfs appliance swap on file."
18878 msgstr ""
18879
18880 # type: =head2
18881 #. type: =head2
18882 #: ../src/guestfs-actions.pod:6487
18883 msgid "guestfs_swapoff_label"
18884 msgstr ""
18885
18886 # type: verbatim
18887 #. type: verbatim
18888 #: ../src/guestfs-actions.pod:6489
18889 #, no-wrap
18890 msgid ""
18891 " int\n"
18892 " guestfs_swapoff_label (guestfs_h *g,\n"
18893 "                        const char *label);\n"
18894 "\n"
18895 msgstr ""
18896
18897 # type: textblock
18898 #. type: textblock
18899 #: ../src/guestfs-actions.pod:6493 ../fish/guestfish-actions.pod:4399
18900 msgid ""
18901 "This command disables the libguestfs appliance swap on labeled swap "
18902 "partition."
18903 msgstr ""
18904
18905 # type: =head2
18906 #. type: =head2
18907 #: ../src/guestfs-actions.pod:6500
18908 msgid "guestfs_swapoff_uuid"
18909 msgstr ""
18910
18911 # type: verbatim
18912 #. type: verbatim
18913 #: ../src/guestfs-actions.pod:6502
18914 #, no-wrap
18915 msgid ""
18916 " int\n"
18917 " guestfs_swapoff_uuid (guestfs_h *g,\n"
18918 "                       const char *uuid);\n"
18919 "\n"
18920 msgstr ""
18921
18922 # type: textblock
18923 #. type: textblock
18924 #: ../src/guestfs-actions.pod:6506 ../fish/guestfish-actions.pod:4406
18925 msgid ""
18926 "This command disables the libguestfs appliance swap partition with the given "
18927 "UUID."
18928 msgstr ""
18929
18930 # type: =head2
18931 #. type: =head2
18932 #: ../src/guestfs-actions.pod:6513
18933 msgid "guestfs_swapon_device"
18934 msgstr ""
18935
18936 # type: verbatim
18937 #. type: verbatim
18938 #: ../src/guestfs-actions.pod:6515
18939 #, no-wrap
18940 msgid ""
18941 " int\n"
18942 " guestfs_swapon_device (guestfs_h *g,\n"
18943 "                        const char *device);\n"
18944 "\n"
18945 msgstr ""
18946
18947 # type: textblock
18948 #. type: textblock
18949 #: ../src/guestfs-actions.pod:6519
18950 msgid ""
18951 "This command enables the libguestfs appliance to use the swap device or "
18952 "partition named C<device>.  The increased memory is made available for all "
18953 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
18954 msgstr ""
18955
18956 # type: textblock
18957 #. type: textblock
18958 #: ../src/guestfs-actions.pod:6524 ../fish/guestfish-actions.pod:4418
18959 msgid ""
18960 "Note that you should not swap to existing guest swap partitions unless you "
18961 "know what you are doing.  They may contain hibernation information, or other "
18962 "information that the guest doesn't want you to trash.  You also risk leaking "
18963 "information about the host to the guest this way.  Instead, attach a new "
18964 "host device to the guest and swap on that."
18965 msgstr ""
18966
18967 # type: =head2
18968 #. type: =head2
18969 #: ../src/guestfs-actions.pod:6535
18970 msgid "guestfs_swapon_file"
18971 msgstr ""
18972
18973 # type: verbatim
18974 #. type: verbatim
18975 #: ../src/guestfs-actions.pod:6537
18976 #, no-wrap
18977 msgid ""
18978 " int\n"
18979 " guestfs_swapon_file (guestfs_h *g,\n"
18980 "                      const char *file);\n"
18981 "\n"
18982 msgstr ""
18983
18984 # type: textblock
18985 #. type: textblock
18986 #: ../src/guestfs-actions.pod:6541
18987 msgid ""
18988 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
18989 "notes."
18990 msgstr ""
18991
18992 # type: =head2
18993 #. type: =head2
18994 #: ../src/guestfs-actions.pod:6548
18995 msgid "guestfs_swapon_label"
18996 msgstr ""
18997
18998 # type: verbatim
18999 #. type: verbatim
19000 #: ../src/guestfs-actions.pod:6550
19001 #, no-wrap
19002 msgid ""
19003 " int\n"
19004 " guestfs_swapon_label (guestfs_h *g,\n"
19005 "                       const char *label);\n"
19006 "\n"
19007 msgstr ""
19008
19009 # type: textblock
19010 #. type: textblock
19011 #: ../src/guestfs-actions.pod:6554
19012 msgid ""
19013 "This command enables swap to a labeled swap partition.  See "
19014 "C<guestfs_swapon_device> for other notes."
19015 msgstr ""
19016
19017 # type: =head2
19018 #. type: =head2
19019 #: ../src/guestfs-actions.pod:6561
19020 msgid "guestfs_swapon_uuid"
19021 msgstr ""
19022
19023 # type: verbatim
19024 #. type: verbatim
19025 #: ../src/guestfs-actions.pod:6563
19026 #, no-wrap
19027 msgid ""
19028 " int\n"
19029 " guestfs_swapon_uuid (guestfs_h *g,\n"
19030 "                      const char *uuid);\n"
19031 "\n"
19032 msgstr ""
19033
19034 # type: textblock
19035 #. type: textblock
19036 #: ../src/guestfs-actions.pod:6567
19037 msgid ""
19038 "This command enables swap to a swap partition with the given UUID.  See "
19039 "C<guestfs_swapon_device> for other notes."
19040 msgstr ""
19041
19042 # type: =head2
19043 #. type: =head2
19044 #: ../src/guestfs-actions.pod:6574
19045 msgid "guestfs_sync"
19046 msgstr ""
19047
19048 # type: verbatim
19049 #. type: verbatim
19050 #: ../src/guestfs-actions.pod:6576
19051 #, no-wrap
19052 msgid ""
19053 " int\n"
19054 " guestfs_sync (guestfs_h *g);\n"
19055 "\n"
19056 msgstr ""
19057
19058 # type: textblock
19059 #. type: textblock
19060 #: ../src/guestfs-actions.pod:6579 ../fish/guestfish-actions.pod:4450
19061 msgid ""
19062 "This syncs the disk, so that any writes are flushed through to the "
19063 "underlying disk image."
19064 msgstr ""
19065
19066 # type: textblock
19067 #. type: textblock
19068 #: ../src/guestfs-actions.pod:6582 ../fish/guestfish-actions.pod:4453
19069 msgid ""
19070 "You should always call this if you have modified a disk image, before "
19071 "closing the handle."
19072 msgstr ""
19073
19074 # type: =head2
19075 #. type: =head2
19076 #: ../src/guestfs-actions.pod:6589
19077 msgid "guestfs_tail"
19078 msgstr ""
19079
19080 # type: verbatim
19081 #. type: verbatim
19082 #: ../src/guestfs-actions.pod:6591
19083 #, no-wrap
19084 msgid ""
19085 " char **\n"
19086 " guestfs_tail (guestfs_h *g,\n"
19087 "               const char *path);\n"
19088 "\n"
19089 msgstr ""
19090
19091 # type: textblock
19092 #. type: textblock
19093 #: ../src/guestfs-actions.pod:6595 ../fish/guestfish-actions.pod:4460
19094 msgid ""
19095 "This command returns up to the last 10 lines of a file as a list of strings."
19096 msgstr ""
19097
19098 # type: =head2
19099 #. type: =head2
19100 #: ../src/guestfs-actions.pod:6607
19101 msgid "guestfs_tail_n"
19102 msgstr ""
19103
19104 # type: verbatim
19105 #. type: verbatim
19106 #: ../src/guestfs-actions.pod:6609
19107 #, no-wrap
19108 msgid ""
19109 " char **\n"
19110 " guestfs_tail_n (guestfs_h *g,\n"
19111 "                 int nrlines,\n"
19112 "                 const char *path);\n"
19113 "\n"
19114 msgstr ""
19115
19116 # type: textblock
19117 #. type: textblock
19118 #: ../src/guestfs-actions.pod:6614 ../fish/guestfish-actions.pod:4470
19119 msgid ""
19120 "If the parameter C<nrlines> is a positive number, this returns the last "
19121 "C<nrlines> lines of the file C<path>."
19122 msgstr ""
19123
19124 # type: textblock
19125 #. type: textblock
19126 #: ../src/guestfs-actions.pod:6617 ../fish/guestfish-actions.pod:4473
19127 msgid ""
19128 "If the parameter C<nrlines> is a negative number, this returns lines from "
19129 "the file C<path>, starting with the C<-nrlines>th line."
19130 msgstr ""
19131
19132 # type: =head2
19133 #. type: =head2
19134 #: ../src/guestfs-actions.pod:6631
19135 msgid "guestfs_tar_in"
19136 msgstr ""
19137
19138 # type: verbatim
19139 #. type: verbatim
19140 #: ../src/guestfs-actions.pod:6633
19141 #, no-wrap
19142 msgid ""
19143 " int\n"
19144 " guestfs_tar_in (guestfs_h *g,\n"
19145 "                 const char *tarfile,\n"
19146 "                 const char *directory);\n"
19147 "\n"
19148 msgstr ""
19149
19150 # type: textblock
19151 #. type: textblock
19152 #: ../src/guestfs-actions.pod:6638 ../fish/guestfish-actions.pod:4485
19153 msgid ""
19154 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
19155 "tar file) into C<directory>."
19156 msgstr ""
19157
19158 # type: textblock
19159 #. type: textblock
19160 #: ../src/guestfs-actions.pod:6641
19161 msgid ""
19162 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
19163 msgstr ""
19164
19165 # type: textblock
19166 #. type: textblock
19167 #: ../src/guestfs-actions.pod:6646 ../src/guestfs-actions.pod:6663
19168 #: ../src/guestfs-actions.pod:6679 ../src/guestfs-actions.pod:6695
19169 msgid "(Added in 1.0.3)"
19170 msgstr ""
19171
19172 # type: =head2
19173 #. type: =head2
19174 #: ../src/guestfs-actions.pod:6648
19175 msgid "guestfs_tar_out"
19176 msgstr ""
19177
19178 # type: verbatim
19179 #. type: verbatim
19180 #: ../src/guestfs-actions.pod:6650
19181 #, no-wrap
19182 msgid ""
19183 " int\n"
19184 " guestfs_tar_out (guestfs_h *g,\n"
19185 "                  const char *directory,\n"
19186 "                  const char *tarfile);\n"
19187 "\n"
19188 msgstr ""
19189
19190 # type: textblock
19191 #. type: textblock
19192 #: ../src/guestfs-actions.pod:6655 ../fish/guestfish-actions.pod:4497
19193 msgid ""
19194 "This command packs the contents of C<directory> and downloads it to local "
19195 "file C<tarfile>."
19196 msgstr ""
19197
19198 # type: textblock
19199 #. type: textblock
19200 #: ../src/guestfs-actions.pod:6658
19201 msgid ""
19202 "To download a compressed tarball, use C<guestfs_tgz_out> or "
19203 "C<guestfs_txz_out>."
19204 msgstr ""
19205
19206 # type: =head2
19207 #. type: =head2
19208 #: ../src/guestfs-actions.pod:6665
19209 msgid "guestfs_tgz_in"
19210 msgstr ""
19211
19212 # type: verbatim
19213 #. type: verbatim
19214 #: ../src/guestfs-actions.pod:6667
19215 #, no-wrap
19216 msgid ""
19217 " int\n"
19218 " guestfs_tgz_in (guestfs_h *g,\n"
19219 "                 const char *tarball,\n"
19220 "                 const char *directory);\n"
19221 "\n"
19222 msgstr ""
19223
19224 # type: textblock
19225 #. type: textblock
19226 #: ../src/guestfs-actions.pod:6672 ../fish/guestfish-actions.pod:4509
19227 msgid ""
19228 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
19229 "tar file) into C<directory>."
19230 msgstr ""
19231
19232 # type: textblock
19233 #. type: textblock
19234 #: ../src/guestfs-actions.pod:6675
19235 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
19236 msgstr ""
19237
19238 # type: =head2
19239 #. type: =head2
19240 #: ../src/guestfs-actions.pod:6681
19241 msgid "guestfs_tgz_out"
19242 msgstr ""
19243
19244 # type: verbatim
19245 #. type: verbatim
19246 #: ../src/guestfs-actions.pod:6683
19247 #, no-wrap
19248 msgid ""
19249 " int\n"
19250 " guestfs_tgz_out (guestfs_h *g,\n"
19251 "                  const char *directory,\n"
19252 "                  const char *tarball);\n"
19253 "\n"
19254 msgstr ""
19255
19256 # type: textblock
19257 #. type: textblock
19258 #: ../src/guestfs-actions.pod:6688 ../fish/guestfish-actions.pod:4520
19259 msgid ""
19260 "This command packs the contents of C<directory> and downloads it to local "
19261 "file C<tarball>."
19262 msgstr ""
19263
19264 # type: textblock
19265 #. type: textblock
19266 #: ../src/guestfs-actions.pod:6691
19267 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
19268 msgstr ""
19269
19270 # type: =head2
19271 #. type: =head2
19272 #: ../src/guestfs-actions.pod:6697
19273 msgid "guestfs_touch"
19274 msgstr ""
19275
19276 # type: verbatim
19277 #. type: verbatim
19278 #: ../src/guestfs-actions.pod:6699
19279 #, no-wrap
19280 msgid ""
19281 " int\n"
19282 " guestfs_touch (guestfs_h *g,\n"
19283 "                const char *path);\n"
19284 "\n"
19285 msgstr ""
19286
19287 # type: textblock
19288 #. type: textblock
19289 #: ../src/guestfs-actions.pod:6703 ../fish/guestfish-actions.pod:4531
19290 msgid ""
19291 "Touch acts like the L<touch(1)> command.  It can be used to update the "
19292 "timestamps on a file, or, if the file does not exist, to create a new zero-"
19293 "length file."
19294 msgstr ""
19295
19296 # type: textblock
19297 #. type: textblock
19298 #: ../src/guestfs-actions.pod:6707 ../fish/guestfish-actions.pod:4535
19299 msgid ""
19300 "This command only works on regular files, and will fail on other file types "
19301 "such as directories, symbolic links, block special etc."
19302 msgstr ""
19303
19304 # type: =head2
19305 #. type: =head2
19306 #: ../src/guestfs-actions.pod:6714
19307 msgid "guestfs_truncate"
19308 msgstr ""
19309
19310 # type: verbatim
19311 #. type: verbatim
19312 #: ../src/guestfs-actions.pod:6716
19313 #, no-wrap
19314 msgid ""
19315 " int\n"
19316 " guestfs_truncate (guestfs_h *g,\n"
19317 "                   const char *path);\n"
19318 "\n"
19319 msgstr ""
19320
19321 # type: textblock
19322 #. type: textblock
19323 #: ../src/guestfs-actions.pod:6720 ../fish/guestfish-actions.pod:4542
19324 msgid ""
19325 "This command truncates C<path> to a zero-length file.  The file must exist "
19326 "already."
19327 msgstr ""
19328
19329 # type: =head2
19330 #. type: =head2
19331 #: ../src/guestfs-actions.pod:6727
19332 msgid "guestfs_truncate_size"
19333 msgstr ""
19334
19335 # type: verbatim
19336 #. type: verbatim
19337 #: ../src/guestfs-actions.pod:6729
19338 #, no-wrap
19339 msgid ""
19340 " int\n"
19341 " guestfs_truncate_size (guestfs_h *g,\n"
19342 "                        const char *path,\n"
19343 "                        int64_t size);\n"
19344 "\n"
19345 msgstr ""
19346
19347 # type: textblock
19348 #. type: textblock
19349 #: ../src/guestfs-actions.pod:6734 ../fish/guestfish-actions.pod:4549
19350 msgid ""
19351 "This command truncates C<path> to size C<size> bytes.  The file must exist "
19352 "already."
19353 msgstr ""
19354
19355 # type: textblock
19356 #. type: textblock
19357 #: ../src/guestfs-actions.pod:6737
19358 msgid ""
19359 "If the current file size is less than C<size> then the file is extended to "
19360 "the required size with zero bytes.  This creates a sparse file (ie. disk "
19361 "blocks are not allocated for the file until you write to it).  To create a "
19362 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
19363 msgstr ""
19364
19365 # type: =head2
19366 #. type: =head2
19367 #: ../src/guestfs-actions.pod:6747
19368 msgid "guestfs_tune2fs_l"
19369 msgstr ""
19370
19371 # type: verbatim
19372 #. type: verbatim
19373 #: ../src/guestfs-actions.pod:6749
19374 #, no-wrap
19375 msgid ""
19376 " char **\n"
19377 " guestfs_tune2fs_l (guestfs_h *g,\n"
19378 "                    const char *device);\n"
19379 "\n"
19380 msgstr ""
19381
19382 # type: textblock
19383 #. type: textblock
19384 #: ../src/guestfs-actions.pod:6753 ../fish/guestfish-actions.pod:4562
19385 msgid ""
19386 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
19387 "C<device>."
19388 msgstr ""
19389
19390 # type: textblock
19391 #. type: textblock
19392 #: ../src/guestfs-actions.pod:6756 ../fish/guestfish-actions.pod:4565
19393 msgid ""
19394 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
19395 "for more details.  The list of fields returned isn't clearly defined, and "
19396 "depends on both the version of C<tune2fs> that libguestfs was built against, "
19397 "and the filesystem itself."
19398 msgstr ""
19399
19400 # type: =head2
19401 #. type: =head2
19402 #: ../src/guestfs-actions.pod:6769
19403 msgid "guestfs_txz_in"
19404 msgstr ""
19405
19406 # type: verbatim
19407 #. type: verbatim
19408 #: ../src/guestfs-actions.pod:6771
19409 #, no-wrap
19410 msgid ""
19411 " int\n"
19412 " guestfs_txz_in (guestfs_h *g,\n"
19413 "                 const char *tarball,\n"
19414 "                 const char *directory);\n"
19415 "\n"
19416 msgstr ""
19417
19418 # type: textblock
19419 #. type: textblock
19420 #: ../src/guestfs-actions.pod:6776 ../fish/guestfish-actions.pod:4574
19421 msgid ""
19422 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
19423 "tar file) into C<directory>."
19424 msgstr ""
19425
19426 # type: =head2
19427 #. type: =head2
19428 #: ../src/guestfs-actions.pod:6783
19429 msgid "guestfs_txz_out"
19430 msgstr ""
19431
19432 # type: verbatim
19433 #. type: verbatim
19434 #: ../src/guestfs-actions.pod:6785
19435 #, no-wrap
19436 msgid ""
19437 " int\n"
19438 " guestfs_txz_out (guestfs_h *g,\n"
19439 "                  const char *directory,\n"
19440 "                  const char *tarball);\n"
19441 "\n"
19442 msgstr ""
19443
19444 # type: textblock
19445 #. type: textblock
19446 #: ../src/guestfs-actions.pod:6790 ../fish/guestfish-actions.pod:4583
19447 msgid ""
19448 "This command packs the contents of C<directory> and downloads it to local "
19449 "file C<tarball> (as an xz compressed tar archive)."
19450 msgstr ""
19451
19452 # type: =head2
19453 #. type: =head2
19454 #: ../src/guestfs-actions.pod:6797
19455 msgid "guestfs_umask"
19456 msgstr ""
19457
19458 # type: verbatim
19459 #. type: verbatim
19460 #: ../src/guestfs-actions.pod:6799
19461 #, no-wrap
19462 msgid ""
19463 " int\n"
19464 " guestfs_umask (guestfs_h *g,\n"
19465 "                int mask);\n"
19466 "\n"
19467 msgstr ""
19468
19469 # type: textblock
19470 #. type: textblock
19471 #: ../src/guestfs-actions.pod:6803 ../fish/guestfish-actions.pod:4592
19472 msgid ""
19473 "This function sets the mask used for creating new files and device nodes to "
19474 "C<mask & 0777>."
19475 msgstr ""
19476
19477 # type: textblock
19478 #. type: textblock
19479 #: ../src/guestfs-actions.pod:6806 ../fish/guestfish-actions.pod:4595
19480 msgid ""
19481 "Typical umask values would be C<022> which creates new files with "
19482 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
19483 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
19484 msgstr ""
19485
19486 # type: textblock
19487 #. type: textblock
19488 #: ../src/guestfs-actions.pod:6811 ../fish/guestfish-actions.pod:4600
19489 msgid ""
19490 "The default umask is C<022>.  This is important because it means that "
19491 "directories and device nodes will be created with C<0644> or C<0755> mode "
19492 "even if you specify C<0777>."
19493 msgstr ""
19494
19495 # type: textblock
19496 #. type: textblock
19497 #: ../src/guestfs-actions.pod:6815
19498 msgid ""
19499 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
19500 "C<guestfs_mkdir>."
19501 msgstr ""
19502
19503 # type: textblock
19504 #. type: textblock
19505 #: ../src/guestfs-actions.pod:6818 ../fish/guestfish-actions.pod:4607
19506 msgid "This call returns the previous umask."
19507 msgstr ""
19508
19509 # type: =head2
19510 #. type: =head2
19511 #: ../src/guestfs-actions.pod:6824
19512 msgid "guestfs_umount"
19513 msgstr ""
19514
19515 # type: verbatim
19516 #. type: verbatim
19517 #: ../src/guestfs-actions.pod:6826
19518 #, no-wrap
19519 msgid ""
19520 " int\n"
19521 " guestfs_umount (guestfs_h *g,\n"
19522 "                 const char *pathordevice);\n"
19523 "\n"
19524 msgstr ""
19525
19526 # type: textblock
19527 #. type: textblock
19528 #: ../src/guestfs-actions.pod:6830 ../fish/guestfish-actions.pod:4615
19529 msgid ""
19530 "This unmounts the given filesystem.  The filesystem may be specified either "
19531 "by its mountpoint (path) or the device which contains the filesystem."
19532 msgstr ""
19533
19534 # type: =head2
19535 #. type: =head2
19536 #: ../src/guestfs-actions.pod:6838
19537 msgid "guestfs_umount_all"
19538 msgstr ""
19539
19540 # type: verbatim
19541 #. type: verbatim
19542 #: ../src/guestfs-actions.pod:6840
19543 #, no-wrap
19544 msgid ""
19545 " int\n"
19546 " guestfs_umount_all (guestfs_h *g);\n"
19547 "\n"
19548 msgstr ""
19549
19550 # type: textblock
19551 #. type: textblock
19552 #: ../src/guestfs-actions.pod:6843 ../fish/guestfish-actions.pod:4625
19553 msgid "This unmounts all mounted filesystems."
19554 msgstr ""
19555
19556 # type: textblock
19557 #. type: textblock
19558 #: ../src/guestfs-actions.pod:6845 ../fish/guestfish-actions.pod:4627
19559 msgid "Some internal mounts are not unmounted by this call."
19560 msgstr ""
19561
19562 # type: =head2
19563 #. type: =head2
19564 #: ../src/guestfs-actions.pod:6851
19565 msgid "guestfs_upload"
19566 msgstr ""
19567
19568 # type: verbatim
19569 #. type: verbatim
19570 #: ../src/guestfs-actions.pod:6853
19571 #, no-wrap
19572 msgid ""
19573 " int\n"
19574 " guestfs_upload (guestfs_h *g,\n"
19575 "                 const char *filename,\n"
19576 "                 const char *remotefilename);\n"
19577 "\n"
19578 msgstr ""
19579
19580 # type: textblock
19581 #. type: textblock
19582 #: ../src/guestfs-actions.pod:6858 ../src/guestfs-actions.pod:6882
19583 #: ../fish/guestfish-actions.pod:4633 ../fish/guestfish-actions.pod:4646
19584 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
19585 msgstr ""
19586
19587 # type: textblock
19588 #. type: textblock
19589 #: ../src/guestfs-actions.pod:6863
19590 msgid "See also C<guestfs_download>."
19591 msgstr ""
19592
19593 # type: =head2
19594 #. type: =head2
19595 #: ../src/guestfs-actions.pod:6874
19596 msgid "guestfs_upload_offset"
19597 msgstr ""
19598
19599 # type: verbatim
19600 #. type: verbatim
19601 #: ../src/guestfs-actions.pod:6876
19602 #, no-wrap
19603 msgid ""
19604 " int\n"
19605 " guestfs_upload_offset (guestfs_h *g,\n"
19606 "                        const char *filename,\n"
19607 "                        const char *remotefilename,\n"
19608 "                        int64_t offset);\n"
19609 "\n"
19610 msgstr ""
19611
19612 # type: textblock
19613 #. type: textblock
19614 #: ../src/guestfs-actions.pod:6885 ../fish/guestfish-actions.pod:4649
19615 msgid ""
19616 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
19617 "The intention is to overwrite parts of existing files or devices, although "
19618 "if a non-existant file is specified then it is created with a \"hole\" "
19619 "before C<offset>.  The size of the data written is implicit in the size of "
19620 "the source C<filename>."
19621 msgstr ""
19622
19623 # type: textblock
19624 #. type: textblock
19625 #: ../src/guestfs-actions.pod:6892
19626 msgid ""
19627 "Note that there is no limit on the amount of data that can be uploaded with "
19628 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
19629 "full amount unless an error occurs."
19630 msgstr ""
19631
19632 # type: textblock
19633 #. type: textblock
19634 #: ../src/guestfs-actions.pod:6897
19635 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
19636 msgstr ""
19637
19638 # type: =head2
19639 #. type: =head2
19640 #: ../src/guestfs-actions.pod:6908
19641 msgid "guestfs_utimens"
19642 msgstr ""
19643
19644 # type: verbatim
19645 #. type: verbatim
19646 #: ../src/guestfs-actions.pod:6910
19647 #, no-wrap
19648 msgid ""
19649 " int\n"
19650 " guestfs_utimens (guestfs_h *g,\n"
19651 "                  const char *path,\n"
19652 "                  int64_t atsecs,\n"
19653 "                  int64_t atnsecs,\n"
19654 "                  int64_t mtsecs,\n"
19655 "                  int64_t mtnsecs);\n"
19656 "\n"
19657 msgstr ""
19658
19659 # type: textblock
19660 #. type: textblock
19661 #: ../src/guestfs-actions.pod:6918 ../fish/guestfish-actions.pod:4669
19662 msgid "This command sets the timestamps of a file with nanosecond precision."
19663 msgstr ""
19664
19665 # type: textblock
19666 #. type: textblock
19667 #: ../src/guestfs-actions.pod:6921 ../fish/guestfish-actions.pod:4672
19668 msgid ""
19669 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
19670 "from the epoch."
19671 msgstr ""
19672
19673 # type: textblock
19674 #. type: textblock
19675 #: ../src/guestfs-actions.pod:6924 ../fish/guestfish-actions.pod:4675
19676 msgid ""
19677 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
19678 "nanoseconds from the epoch."
19679 msgstr ""
19680
19681 # type: textblock
19682 #. type: textblock
19683 #: ../src/guestfs-actions.pod:6927 ../fish/guestfish-actions.pod:4678
19684 msgid ""
19685 "If the C<*nsecs> field contains the special value C<-1> then the "
19686 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
19687 "ignored in this case)."
19688 msgstr ""
19689
19690 # type: textblock
19691 #. type: textblock
19692 #: ../src/guestfs-actions.pod:6931 ../fish/guestfish-actions.pod:4682
19693 msgid ""
19694 "If the C<*nsecs> field contains the special value C<-2> then the "
19695 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
19696 "in this case)."
19697 msgstr ""
19698
19699 # type: =head2
19700 #. type: =head2
19701 #: ../src/guestfs-actions.pod:6939 ../src/guestfs-structs.pod:175
19702 msgid "guestfs_version"
19703 msgstr ""
19704
19705 # type: verbatim
19706 #. type: verbatim
19707 #: ../src/guestfs-actions.pod:6941
19708 #, no-wrap
19709 msgid ""
19710 " struct guestfs_version *\n"
19711 " guestfs_version (guestfs_h *g);\n"
19712 "\n"
19713 msgstr ""
19714
19715 # type: textblock
19716 #. type: textblock
19717 #: ../src/guestfs-actions.pod:6944 ../fish/guestfish-actions.pod:4690
19718 msgid ""
19719 "Return the libguestfs version number that the program is linked against."
19720 msgstr ""
19721
19722 # type: textblock
19723 #. type: textblock
19724 #: ../src/guestfs-actions.pod:6947 ../fish/guestfish-actions.pod:4693
19725 msgid ""
19726 "Note that because of dynamic linking this is not necessarily the version of "
19727 "libguestfs that you compiled against.  You can compile the program, and then "
19728 "at runtime dynamically link against a completely different C<libguestfs.so> "
19729 "library."
19730 msgstr ""
19731
19732 # type: textblock
19733 #. type: textblock
19734 #: ../src/guestfs-actions.pod:6952 ../fish/guestfish-actions.pod:4698
19735 msgid ""
19736 "This call was added in version C<1.0.58>.  In previous versions of "
19737 "libguestfs there was no way to get the version number.  From C code you can "
19738 "use dynamic linker functions to find out if this symbol exists (if it "
19739 "doesn't, then it's an earlier version)."
19740 msgstr ""
19741
19742 # type: textblock
19743 #. type: textblock
19744 #: ../src/guestfs-actions.pod:6958 ../fish/guestfish-actions.pod:4704
19745 msgid ""
19746 "The call returns a structure with four elements.  The first three (C<major>, "
19747 "C<minor> and C<release>) are numbers and correspond to the usual version "
19748 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
19749 "but may be used for distro-specific information."
19750 msgstr ""
19751
19752 # type: textblock
19753 #. type: textblock
19754 #: ../src/guestfs-actions.pod:6964 ../fish/guestfish-actions.pod:4710
19755 msgid ""
19756 "To construct the original version string: C<$major.$minor.$release$extra>"
19757 msgstr ""
19758
19759 # type: textblock
19760 #. type: textblock
19761 #: ../src/guestfs-actions.pod:6967 ../fish/guestfish-actions.pod:4713
19762 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
19763 msgstr ""
19764
19765 # type: textblock
19766 #. type: textblock
19767 #: ../src/guestfs-actions.pod:6969
19768 msgid ""
19769 "I<Note:> Don't use this call to test for availability of features.  In "
19770 "enterprise distributions we backport features from later versions into "
19771 "earlier versions, making this an unreliable way to test for features.  Use "
19772 "C<guestfs_available> instead."
19773 msgstr ""
19774
19775 # type: textblock
19776 #. type: textblock
19777 #: ../src/guestfs-actions.pod:6975
19778 msgid ""
19779 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
19780 "error.  I<The caller must call C<guestfs_free_version> after use>."
19781 msgstr ""
19782
19783 # type: textblock
19784 #. type: textblock
19785 #: ../src/guestfs-actions.pod:6979
19786 msgid "(Added in 1.0.58)"
19787 msgstr ""
19788
19789 # type: =head2
19790 #. type: =head2
19791 #: ../src/guestfs-actions.pod:6981
19792 msgid "guestfs_vfs_label"
19793 msgstr ""
19794
19795 # type: verbatim
19796 #. type: verbatim
19797 #: ../src/guestfs-actions.pod:6983
19798 #, no-wrap
19799 msgid ""
19800 " char *\n"
19801 " guestfs_vfs_label (guestfs_h *g,\n"
19802 "                    const char *device);\n"
19803 "\n"
19804 msgstr ""
19805
19806 # type: textblock
19807 #. type: textblock
19808 #: ../src/guestfs-actions.pod:6987 ../fish/guestfish-actions.pod:4725
19809 msgid "This returns the filesystem label of the filesystem on C<device>."
19810 msgstr ""
19811
19812 # type: textblock
19813 #. type: textblock
19814 #: ../src/guestfs-actions.pod:6990 ../fish/guestfish-actions.pod:4728
19815 msgid "If the filesystem is unlabeled, this returns the empty string."
19816 msgstr ""
19817
19818 # type: textblock
19819 #. type: textblock
19820 #: ../src/guestfs-actions.pod:6992
19821 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
19822 msgstr ""
19823
19824 # type: textblock
19825 #. type: textblock
19826 #: ../src/guestfs-actions.pod:6997 ../src/guestfs-actions.pod:7034
19827 msgid "(Added in 1.3.18)"
19828 msgstr ""
19829
19830 # type: =head2
19831 #. type: =head2
19832 #: ../src/guestfs-actions.pod:6999
19833 msgid "guestfs_vfs_type"
19834 msgstr ""
19835
19836 # type: verbatim
19837 #. type: verbatim
19838 #: ../src/guestfs-actions.pod:7001
19839 #, no-wrap
19840 msgid ""
19841 " char *\n"
19842 " guestfs_vfs_type (guestfs_h *g,\n"
19843 "                   const char *device);\n"
19844 "\n"
19845 msgstr ""
19846
19847 # type: textblock
19848 #. type: textblock
19849 #: ../src/guestfs-actions.pod:7005 ../fish/guestfish-actions.pod:4736
19850 msgid ""
19851 "This command gets the filesystem type corresponding to the filesystem on "
19852 "C<device>."
19853 msgstr ""
19854
19855 # type: textblock
19856 #. type: textblock
19857 #: ../src/guestfs-actions.pod:7008 ../fish/guestfish-actions.pod:4739
19858 msgid ""
19859 "For most filesystems, the result is the name of the Linux VFS module which "
19860 "would be used to mount this filesystem if you mounted it without specifying "
19861 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
19862 msgstr ""
19863
19864 # type: =head2
19865 #. type: =head2
19866 #: ../src/guestfs-actions.pod:7018
19867 msgid "guestfs_vfs_uuid"
19868 msgstr ""
19869
19870 # type: verbatim
19871 #. type: verbatim
19872 #: ../src/guestfs-actions.pod:7020
19873 #, no-wrap
19874 msgid ""
19875 " char *\n"
19876 " guestfs_vfs_uuid (guestfs_h *g,\n"
19877 "                   const char *device);\n"
19878 "\n"
19879 msgstr ""
19880
19881 # type: textblock
19882 #. type: textblock
19883 #: ../src/guestfs-actions.pod:7024 ../fish/guestfish-actions.pod:4748
19884 msgid "This returns the filesystem UUID of the filesystem on C<device>."
19885 msgstr ""
19886
19887 # type: textblock
19888 #. type: textblock
19889 #: ../src/guestfs-actions.pod:7027 ../fish/guestfish-actions.pod:4751
19890 msgid "If the filesystem does not have a UUID, this returns the empty string."
19891 msgstr ""
19892
19893 # type: textblock
19894 #. type: textblock
19895 #: ../src/guestfs-actions.pod:7029
19896 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
19897 msgstr ""
19898
19899 # type: =head2
19900 #. type: =head2
19901 #: ../src/guestfs-actions.pod:7036
19902 msgid "guestfs_vg_activate"
19903 msgstr ""
19904
19905 # type: verbatim
19906 #. type: verbatim
19907 #: ../src/guestfs-actions.pod:7038
19908 #, no-wrap
19909 msgid ""
19910 " int\n"
19911 " guestfs_vg_activate (guestfs_h *g,\n"
19912 "                      int activate,\n"
19913 "                      char *const *volgroups);\n"
19914 "\n"
19915 msgstr ""
19916
19917 # type: textblock
19918 #. type: textblock
19919 #: ../src/guestfs-actions.pod:7043 ../fish/guestfish-actions.pod:4759
19920 msgid ""
19921 "This command activates or (if C<activate> is false) deactivates all logical "
19922 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
19923 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
19924 "deactivated, then those devices disappear."
19925 msgstr ""
19926
19927 # type: textblock
19928 #. type: textblock
19929 #: ../src/guestfs-actions.pod:7049 ../fish/guestfish-actions.pod:4765
19930 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
19931 msgstr ""
19932
19933 # type: textblock
19934 #. type: textblock
19935 #: ../src/guestfs-actions.pod:7051 ../fish/guestfish-actions.pod:4767
19936 msgid ""
19937 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
19938 "activated or deactivated."
19939 msgstr ""
19940
19941 # type: =head2
19942 #. type: =head2
19943 #: ../src/guestfs-actions.pod:7058
19944 msgid "guestfs_vg_activate_all"
19945 msgstr ""
19946
19947 # type: verbatim
19948 #. type: verbatim
19949 #: ../src/guestfs-actions.pod:7060
19950 #, no-wrap
19951 msgid ""
19952 " int\n"
19953 " guestfs_vg_activate_all (guestfs_h *g,\n"
19954 "                          int activate);\n"
19955 "\n"
19956 msgstr ""
19957
19958 # type: textblock
19959 #. type: textblock
19960 #: ../src/guestfs-actions.pod:7064 ../fish/guestfish-actions.pod:4774
19961 msgid ""
19962 "This command activates or (if C<activate> is false) deactivates all logical "
19963 "volumes in all volume groups.  If activated, then they are made known to the "
19964 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
19965 "those devices disappear."
19966 msgstr ""
19967
19968 # type: textblock
19969 #. type: textblock
19970 #: ../src/guestfs-actions.pod:7070 ../fish/guestfish-actions.pod:4780
19971 msgid "This command is the same as running C<vgchange -a y|n>"
19972 msgstr ""
19973
19974 # type: =head2
19975 #. type: =head2
19976 #: ../src/guestfs-actions.pod:7076
19977 msgid "guestfs_vgcreate"
19978 msgstr ""
19979
19980 # type: verbatim
19981 #. type: verbatim
19982 #: ../src/guestfs-actions.pod:7078
19983 #, no-wrap
19984 msgid ""
19985 " int\n"
19986 " guestfs_vgcreate (guestfs_h *g,\n"
19987 "                   const char *volgroup,\n"
19988 "                   char *const *physvols);\n"
19989 "\n"
19990 msgstr ""
19991
19992 # type: textblock
19993 #. type: textblock
19994 #: ../src/guestfs-actions.pod:7083 ../fish/guestfish-actions.pod:4786
19995 msgid ""
19996 "This creates an LVM volume group called C<volgroup> from the non-empty list "
19997 "of physical volumes C<physvols>."
19998 msgstr ""
19999
20000 # type: =head2
20001 #. type: =head2
20002 #: ../src/guestfs-actions.pod:7090
20003 msgid "guestfs_vglvuuids"
20004 msgstr ""
20005
20006 # type: verbatim
20007 #. type: verbatim
20008 #: ../src/guestfs-actions.pod:7092
20009 #, no-wrap
20010 msgid ""
20011 " char **\n"
20012 " guestfs_vglvuuids (guestfs_h *g,\n"
20013 "                    const char *vgname);\n"
20014 "\n"
20015 msgstr ""
20016
20017 # type: textblock
20018 #. type: textblock
20019 #: ../src/guestfs-actions.pod:7096 ../fish/guestfish-actions.pod:4793
20020 msgid ""
20021 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
20022 "volumes created in this volume group."
20023 msgstr ""
20024
20025 # type: textblock
20026 #. type: textblock
20027 #: ../src/guestfs-actions.pod:7099
20028 msgid ""
20029 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
20030 "associate logical volumes and volume groups."
20031 msgstr ""
20032
20033 # type: textblock
20034 #. type: textblock
20035 #: ../src/guestfs-actions.pod:7102
20036 msgid "See also C<guestfs_vgpvuuids>."
20037 msgstr ""
20038
20039 # type: =head2
20040 #. type: =head2
20041 #: ../src/guestfs-actions.pod:7110
20042 msgid "guestfs_vgpvuuids"
20043 msgstr ""
20044
20045 # type: verbatim
20046 #. type: verbatim
20047 #: ../src/guestfs-actions.pod:7112
20048 #, no-wrap
20049 msgid ""
20050 " char **\n"
20051 " guestfs_vgpvuuids (guestfs_h *g,\n"
20052 "                    const char *vgname);\n"
20053 "\n"
20054 msgstr ""
20055
20056 # type: textblock
20057 #. type: textblock
20058 #: ../src/guestfs-actions.pod:7116 ../fish/guestfish-actions.pod:4805
20059 msgid ""
20060 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
20061 "volumes that this volume group resides on."
20062 msgstr ""
20063
20064 # type: textblock
20065 #. type: textblock
20066 #: ../src/guestfs-actions.pod:7119
20067 msgid ""
20068 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
20069 "associate physical volumes and volume groups."
20070 msgstr ""
20071
20072 # type: textblock
20073 #. type: textblock
20074 #: ../src/guestfs-actions.pod:7122
20075 msgid "See also C<guestfs_vglvuuids>."
20076 msgstr ""
20077
20078 # type: =head2
20079 #. type: =head2
20080 #: ../src/guestfs-actions.pod:7130
20081 msgid "guestfs_vgremove"
20082 msgstr ""
20083
20084 # type: verbatim
20085 #. type: verbatim
20086 #: ../src/guestfs-actions.pod:7132
20087 #, no-wrap
20088 msgid ""
20089 " int\n"
20090 " guestfs_vgremove (guestfs_h *g,\n"
20091 "                   const char *vgname);\n"
20092 "\n"
20093 msgstr ""
20094
20095 # type: textblock
20096 #. type: textblock
20097 #: ../src/guestfs-actions.pod:7136 ../fish/guestfish-actions.pod:4817
20098 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
20099 msgstr ""
20100
20101 # type: textblock
20102 #. type: textblock
20103 #: ../src/guestfs-actions.pod:7138 ../fish/guestfish-actions.pod:4819
20104 msgid ""
20105 "This also forcibly removes all logical volumes in the volume group (if any)."
20106 msgstr ""
20107
20108 # type: =head2
20109 #. type: =head2
20110 #: ../src/guestfs-actions.pod:7145
20111 msgid "guestfs_vgrename"
20112 msgstr ""
20113
20114 # type: verbatim
20115 #. type: verbatim
20116 #: ../src/guestfs-actions.pod:7147
20117 #, no-wrap
20118 msgid ""
20119 " int\n"
20120 " guestfs_vgrename (guestfs_h *g,\n"
20121 "                   const char *volgroup,\n"
20122 "                   const char *newvolgroup);\n"
20123 "\n"
20124 msgstr ""
20125
20126 # type: textblock
20127 #. type: textblock
20128 #: ../src/guestfs-actions.pod:7152 ../fish/guestfish-actions.pod:4826
20129 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
20130 msgstr ""
20131
20132 # type: =head2
20133 #. type: =head2
20134 #: ../src/guestfs-actions.pod:7158
20135 msgid "guestfs_vgs"
20136 msgstr ""
20137
20138 # type: verbatim
20139 #. type: verbatim
20140 #: ../src/guestfs-actions.pod:7160
20141 #, no-wrap
20142 msgid ""
20143 " char **\n"
20144 " guestfs_vgs (guestfs_h *g);\n"
20145 "\n"
20146 msgstr ""
20147
20148 # type: textblock
20149 #. type: textblock
20150 #: ../src/guestfs-actions.pod:7163 ../fish/guestfish-actions.pod:4832
20151 msgid ""
20152 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
20153 "> command."
20154 msgstr ""
20155
20156 # type: textblock
20157 #. type: textblock
20158 #: ../src/guestfs-actions.pod:7166 ../fish/guestfish-actions.pod:4835
20159 msgid ""
20160 "This returns a list of just the volume group names that were detected (eg. "
20161 "C<VolGroup00>)."
20162 msgstr ""
20163
20164 # type: textblock
20165 #. type: textblock
20166 #: ../src/guestfs-actions.pod:7169
20167 msgid "See also C<guestfs_vgs_full>."
20168 msgstr ""
20169
20170 # type: =head2
20171 #. type: =head2
20172 #: ../src/guestfs-actions.pod:7177
20173 msgid "guestfs_vgs_full"
20174 msgstr ""
20175
20176 # type: verbatim
20177 #. type: verbatim
20178 #: ../src/guestfs-actions.pod:7179
20179 #, no-wrap
20180 msgid ""
20181 " struct guestfs_lvm_vg_list *\n"
20182 " guestfs_vgs_full (guestfs_h *g);\n"
20183 "\n"
20184 msgstr ""
20185
20186 # type: textblock
20187 #. type: textblock
20188 #: ../src/guestfs-actions.pod:7182 ../fish/guestfish-actions.pod:4844
20189 msgid ""
20190 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
20191 "> command.  The \"full\" version includes all fields."
20192 msgstr ""
20193
20194 # type: textblock
20195 #. type: textblock
20196 #: ../src/guestfs-actions.pod:7185
20197 msgid ""
20198 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
20199 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
20200 msgstr ""
20201
20202 # type: =head2
20203 #. type: =head2
20204 #: ../src/guestfs-actions.pod:7191
20205 msgid "guestfs_vgscan"
20206 msgstr ""
20207
20208 # type: verbatim
20209 #. type: verbatim
20210 #: ../src/guestfs-actions.pod:7193
20211 #, no-wrap
20212 msgid ""
20213 " int\n"
20214 " guestfs_vgscan (guestfs_h *g);\n"
20215 "\n"
20216 msgstr ""
20217
20218 # type: textblock
20219 #. type: textblock
20220 #: ../src/guestfs-actions.pod:7196 ../fish/guestfish-actions.pod:4851
20221 msgid ""
20222 "This rescans all block devices and rebuilds the list of LVM physical "
20223 "volumes, volume groups and logical volumes."
20224 msgstr ""
20225
20226 # type: =head2
20227 #. type: =head2
20228 #: ../src/guestfs-actions.pod:7203
20229 msgid "guestfs_vguuid"
20230 msgstr ""
20231
20232 # type: verbatim
20233 #. type: verbatim
20234 #: ../src/guestfs-actions.pod:7205
20235 #, no-wrap
20236 msgid ""
20237 " char *\n"
20238 " guestfs_vguuid (guestfs_h *g,\n"
20239 "                 const char *vgname);\n"
20240 "\n"
20241 msgstr ""
20242
20243 # type: textblock
20244 #. type: textblock
20245 #: ../src/guestfs-actions.pod:7209 ../fish/guestfish-actions.pod:4858
20246 msgid "This command returns the UUID of the LVM VG named C<vgname>."
20247 msgstr ""
20248
20249 # type: =head2
20250 #. type: =head2
20251 #: ../src/guestfs-actions.pod:7216
20252 msgid "guestfs_wait_ready"
20253 msgstr ""
20254
20255 # type: verbatim
20256 #. type: verbatim
20257 #: ../src/guestfs-actions.pod:7218
20258 #, no-wrap
20259 msgid ""
20260 " int\n"
20261 " guestfs_wait_ready (guestfs_h *g);\n"
20262 "\n"
20263 msgstr ""
20264
20265 # type: textblock
20266 #. type: textblock
20267 #: ../src/guestfs-actions.pod:7221
20268 msgid "This function is a no op."
20269 msgstr ""
20270
20271 # type: textblock
20272 #. type: textblock
20273 #: ../src/guestfs-actions.pod:7223
20274 msgid ""
20275 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
20276 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
20277 "is no longer necessary because C<guestfs_launch> now does the waiting."
20278 msgstr ""
20279
20280 # type: textblock
20281 #. type: textblock
20282 #: ../src/guestfs-actions.pod:7228
20283 msgid ""
20284 "If you see any calls to this function in code then you can just remove them, "
20285 "unless you want to retain compatibility with older versions of the API."
20286 msgstr ""
20287
20288 #. type: textblock
20289 #: ../src/guestfs-actions.pod:7234
20290 msgid ""
20291 "This function is deprecated.  In new code, use the L</guestfs_launch> call "
20292 "instead."
20293 msgstr ""
20294
20295 # type: =head2
20296 #. type: =head2
20297 #: ../src/guestfs-actions.pod:7243
20298 msgid "guestfs_wc_c"
20299 msgstr ""
20300
20301 # type: verbatim
20302 #. type: verbatim
20303 #: ../src/guestfs-actions.pod:7245
20304 #, no-wrap
20305 msgid ""
20306 " int\n"
20307 " guestfs_wc_c (guestfs_h *g,\n"
20308 "               const char *path);\n"
20309 "\n"
20310 msgstr ""
20311
20312 # type: textblock
20313 #. type: textblock
20314 #: ../src/guestfs-actions.pod:7249 ../fish/guestfish-actions.pod:4864
20315 msgid ""
20316 "This command counts the characters in a file, using the C<wc -c> external "
20317 "command."
20318 msgstr ""
20319
20320 # type: =head2
20321 #. type: =head2
20322 #: ../src/guestfs-actions.pod:7256
20323 msgid "guestfs_wc_l"
20324 msgstr ""
20325
20326 # type: verbatim
20327 #. type: verbatim
20328 #: ../src/guestfs-actions.pod:7258
20329 #, no-wrap
20330 msgid ""
20331 " int\n"
20332 " guestfs_wc_l (guestfs_h *g,\n"
20333 "               const char *path);\n"
20334 "\n"
20335 msgstr ""
20336
20337 # type: textblock
20338 #. type: textblock
20339 #: ../src/guestfs-actions.pod:7262 ../fish/guestfish-actions.pod:4871
20340 msgid ""
20341 "This command counts the lines in a file, using the C<wc -l> external command."
20342 msgstr ""
20343
20344 # type: =head2
20345 #. type: =head2
20346 #: ../src/guestfs-actions.pod:7269
20347 msgid "guestfs_wc_w"
20348 msgstr ""
20349
20350 # type: verbatim
20351 #. type: verbatim
20352 #: ../src/guestfs-actions.pod:7271
20353 #, no-wrap
20354 msgid ""
20355 " int\n"
20356 " guestfs_wc_w (guestfs_h *g,\n"
20357 "               const char *path);\n"
20358 "\n"
20359 msgstr ""
20360
20361 # type: textblock
20362 #. type: textblock
20363 #: ../src/guestfs-actions.pod:7275 ../fish/guestfish-actions.pod:4878
20364 msgid ""
20365 "This command counts the words in a file, using the C<wc -w> external command."
20366 msgstr ""
20367
20368 # type: =head2
20369 #. type: =head2
20370 #: ../src/guestfs-actions.pod:7282
20371 msgid "guestfs_write"
20372 msgstr ""
20373
20374 # type: verbatim
20375 #. type: verbatim
20376 #: ../src/guestfs-actions.pod:7284
20377 #, no-wrap
20378 msgid ""
20379 " int\n"
20380 " guestfs_write (guestfs_h *g,\n"
20381 "                const char *path,\n"
20382 "                const char *content,\n"
20383 "                size_t content_size);\n"
20384 "\n"
20385 msgstr ""
20386
20387 # type: textblock
20388 #. type: textblock
20389 #: ../src/guestfs-actions.pod:7290 ../fish/guestfish-actions.pod:4885
20390 msgid ""
20391 "This call creates a file called C<path>.  The content of the file is the "
20392 "string C<content> (which can contain any 8 bit data)."
20393 msgstr ""
20394
20395 # type: =head2
20396 #. type: =head2
20397 #: ../src/guestfs-actions.pod:7300
20398 msgid "guestfs_write_file"
20399 msgstr ""
20400
20401 # type: verbatim
20402 #. type: verbatim
20403 #: ../src/guestfs-actions.pod:7302
20404 #, no-wrap
20405 msgid ""
20406 " int\n"
20407 " guestfs_write_file (guestfs_h *g,\n"
20408 "                     const char *path,\n"
20409 "                     const char *content,\n"
20410 "                     int size);\n"
20411 "\n"
20412 msgstr ""
20413
20414 # type: textblock
20415 #. type: textblock
20416 #: ../src/guestfs-actions.pod:7308 ../fish/guestfish-actions.pod:4895
20417 msgid ""
20418 "This call creates a file called C<path>.  The contents of the file is the "
20419 "string C<content> (which can contain any 8 bit data), with length C<size>."
20420 msgstr ""
20421
20422 # type: textblock
20423 #. type: textblock
20424 #: ../src/guestfs-actions.pod:7312 ../fish/guestfish-actions.pod:4899
20425 msgid ""
20426 "As a special case, if C<size> is C<0> then the length is calculated using "
20427 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
20428 msgstr ""
20429
20430 # type: textblock
20431 #. type: textblock
20432 #: ../src/guestfs-actions.pod:7316 ../fish/guestfish-actions.pod:4903
20433 msgid ""
20434 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
20435 "I<not> work, even if the length is specified."
20436 msgstr ""
20437
20438 #. type: textblock
20439 #: ../src/guestfs-actions.pod:7324
20440 msgid ""
20441 "This function is deprecated.  In new code, use the L</guestfs_write> call "
20442 "instead."
20443 msgstr ""
20444
20445 # type: =head2
20446 #. type: =head2
20447 #: ../src/guestfs-actions.pod:7333
20448 msgid "guestfs_zegrep"
20449 msgstr ""
20450
20451 # type: verbatim
20452 #. type: verbatim
20453 #: ../src/guestfs-actions.pod:7335
20454 #, no-wrap
20455 msgid ""
20456 " char **\n"
20457 " guestfs_zegrep (guestfs_h *g,\n"
20458 "                 const char *regex,\n"
20459 "                 const char *path);\n"
20460 "\n"
20461 msgstr ""
20462
20463 # type: textblock
20464 #. type: textblock
20465 #: ../src/guestfs-actions.pod:7340 ../fish/guestfish-actions.pod:4920
20466 msgid ""
20467 "This calls the external C<zegrep> program and returns the matching lines."
20468 msgstr ""
20469
20470 # type: =head2
20471 #. type: =head2
20472 #: ../src/guestfs-actions.pod:7352
20473 msgid "guestfs_zegrepi"
20474 msgstr ""
20475
20476 # type: verbatim
20477 #. type: verbatim
20478 #: ../src/guestfs-actions.pod:7354
20479 #, no-wrap
20480 msgid ""
20481 " char **\n"
20482 " guestfs_zegrepi (guestfs_h *g,\n"
20483 "                  const char *regex,\n"
20484 "                  const char *path);\n"
20485 "\n"
20486 msgstr ""
20487
20488 # type: textblock
20489 #. type: textblock
20490 #: ../src/guestfs-actions.pod:7359 ../fish/guestfish-actions.pod:4930
20491 msgid ""
20492 "This calls the external C<zegrep -i> program and returns the matching lines."
20493 msgstr ""
20494
20495 # type: =head2
20496 #. type: =head2
20497 #: ../src/guestfs-actions.pod:7371
20498 msgid "guestfs_zero"
20499 msgstr ""
20500
20501 # type: verbatim
20502 #. type: verbatim
20503 #: ../src/guestfs-actions.pod:7373
20504 #, no-wrap
20505 msgid ""
20506 " int\n"
20507 " guestfs_zero (guestfs_h *g,\n"
20508 "               const char *device);\n"
20509 "\n"
20510 msgstr ""
20511
20512 # type: textblock
20513 #. type: textblock
20514 #: ../src/guestfs-actions.pod:7377 ../fish/guestfish-actions.pod:4940
20515 msgid "This command writes zeroes over the first few blocks of C<device>."
20516 msgstr ""
20517
20518 # type: textblock
20519 #. type: textblock
20520 #: ../src/guestfs-actions.pod:7379 ../fish/guestfish-actions.pod:4942
20521 msgid ""
20522 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
20523 "securely wipe the device).  It should be sufficient to remove any partition "
20524 "tables, filesystem superblocks and so on."
20525 msgstr ""
20526
20527 # type: textblock
20528 #. type: textblock
20529 #: ../src/guestfs-actions.pod:7383
20530 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
20531 msgstr ""
20532
20533 # type: =head2
20534 #. type: =head2
20535 #: ../src/guestfs-actions.pod:7394
20536 msgid "guestfs_zero_device"
20537 msgstr ""
20538
20539 # type: verbatim
20540 #. type: verbatim
20541 #: ../src/guestfs-actions.pod:7396
20542 #, no-wrap
20543 msgid ""
20544 " int\n"
20545 " guestfs_zero_device (guestfs_h *g,\n"
20546 "                      const char *device);\n"
20547 "\n"
20548 msgstr ""
20549
20550 # type: textblock
20551 #. type: textblock
20552 #: ../src/guestfs-actions.pod:7400
20553 msgid ""
20554 "This command writes zeroes over the entire C<device>.  Compare with "
20555 "C<guestfs_zero> which just zeroes the first few blocks of a device."
20556 msgstr ""
20557
20558 # type: textblock
20559 #. type: textblock
20560 #: ../src/guestfs-actions.pod:7414
20561 msgid "(Added in 1.3.1)"
20562 msgstr ""
20563
20564 # type: =head2
20565 #. type: =head2
20566 #: ../src/guestfs-actions.pod:7416
20567 msgid "guestfs_zerofree"
20568 msgstr ""
20569
20570 # type: verbatim
20571 #. type: verbatim
20572 #: ../src/guestfs-actions.pod:7418
20573 #, no-wrap
20574 msgid ""
20575 " int\n"
20576 " guestfs_zerofree (guestfs_h *g,\n"
20577 "                   const char *device);\n"
20578 "\n"
20579 msgstr ""
20580
20581 # type: textblock
20582 #. type: textblock
20583 #: ../src/guestfs-actions.pod:7422 ../fish/guestfish-actions.pod:4963
20584 msgid ""
20585 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
20586 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
20587 "possible to compress the filesystem more effectively."
20588 msgstr ""
20589
20590 # type: textblock
20591 #. type: textblock
20592 #: ../src/guestfs-actions.pod:7427 ../fish/guestfish-actions.pod:4968
20593 msgid "You should B<not> run this program if the filesystem is mounted."
20594 msgstr ""
20595
20596 # type: textblock
20597 #. type: textblock
20598 #: ../src/guestfs-actions.pod:7430 ../fish/guestfish-actions.pod:4971
20599 msgid ""
20600 "It is possible that using this program can damage the filesystem or data on "
20601 "the filesystem."
20602 msgstr ""
20603
20604 # type: =head2
20605 #. type: =head2
20606 #: ../src/guestfs-actions.pod:7437
20607 msgid "guestfs_zfgrep"
20608 msgstr ""
20609
20610 # type: verbatim
20611 #. type: verbatim
20612 #: ../src/guestfs-actions.pod:7439
20613 #, no-wrap
20614 msgid ""
20615 " char **\n"
20616 " guestfs_zfgrep (guestfs_h *g,\n"
20617 "                 const char *pattern,\n"
20618 "                 const char *path);\n"
20619 "\n"
20620 msgstr ""
20621
20622 # type: textblock
20623 #. type: textblock
20624 #: ../src/guestfs-actions.pod:7444 ../fish/guestfish-actions.pod:4978
20625 msgid ""
20626 "This calls the external C<zfgrep> program and returns the matching lines."
20627 msgstr ""
20628
20629 # type: =head2
20630 #. type: =head2
20631 #: ../src/guestfs-actions.pod:7456
20632 msgid "guestfs_zfgrepi"
20633 msgstr ""
20634
20635 # type: verbatim
20636 #. type: verbatim
20637 #: ../src/guestfs-actions.pod:7458
20638 #, no-wrap
20639 msgid ""
20640 " char **\n"
20641 " guestfs_zfgrepi (guestfs_h *g,\n"
20642 "                  const char *pattern,\n"
20643 "                  const char *path);\n"
20644 "\n"
20645 msgstr ""
20646
20647 # type: textblock
20648 #. type: textblock
20649 #: ../src/guestfs-actions.pod:7463 ../fish/guestfish-actions.pod:4988
20650 msgid ""
20651 "This calls the external C<zfgrep -i> program and returns the matching lines."
20652 msgstr ""
20653
20654 # type: =head2
20655 #. type: =head2
20656 #: ../src/guestfs-actions.pod:7475
20657 msgid "guestfs_zfile"
20658 msgstr ""
20659
20660 # type: verbatim
20661 #. type: verbatim
20662 #: ../src/guestfs-actions.pod:7477
20663 #, no-wrap
20664 msgid ""
20665 " char *\n"
20666 " guestfs_zfile (guestfs_h *g,\n"
20667 "                const char *meth,\n"
20668 "                const char *path);\n"
20669 "\n"
20670 msgstr ""
20671
20672 # type: textblock
20673 #. type: textblock
20674 #: ../src/guestfs-actions.pod:7482 ../fish/guestfish-actions.pod:4998
20675 msgid ""
20676 "This command runs C<file> after first decompressing C<path> using C<method>."
20677 msgstr ""
20678
20679 # type: textblock
20680 #. type: textblock
20681 #: ../src/guestfs-actions.pod:7485 ../fish/guestfish-actions.pod:5001
20682 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
20683 msgstr ""
20684
20685 # type: textblock
20686 #. type: textblock
20687 #: ../src/guestfs-actions.pod:7487
20688 msgid ""
20689 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
20690 "files."
20691 msgstr ""
20692
20693 #. type: textblock
20694 #: ../src/guestfs-actions.pod:7493
20695 msgid ""
20696 "This function is deprecated.  In new code, use the L</guestfs_file> call "
20697 "instead."
20698 msgstr ""
20699
20700 # type: =head2
20701 #. type: =head2
20702 #: ../src/guestfs-actions.pod:7502
20703 msgid "guestfs_zgrep"
20704 msgstr ""
20705
20706 # type: verbatim
20707 #. type: verbatim
20708 #: ../src/guestfs-actions.pod:7504
20709 #, no-wrap
20710 msgid ""
20711 " char **\n"
20712 " guestfs_zgrep (guestfs_h *g,\n"
20713 "                const char *regex,\n"
20714 "                const char *path);\n"
20715 "\n"
20716 msgstr ""
20717
20718 # type: textblock
20719 #. type: textblock
20720 #: ../src/guestfs-actions.pod:7509 ../fish/guestfish-actions.pod:5017
20721 msgid ""
20722 "This calls the external C<zgrep> program and returns the matching lines."
20723 msgstr ""
20724
20725 # type: =head2
20726 #. type: =head2
20727 #: ../src/guestfs-actions.pod:7521
20728 msgid "guestfs_zgrepi"
20729 msgstr ""
20730
20731 # type: verbatim
20732 #. type: verbatim
20733 #: ../src/guestfs-actions.pod:7523
20734 #, no-wrap
20735 msgid ""
20736 " char **\n"
20737 " guestfs_zgrepi (guestfs_h *g,\n"
20738 "                 const char *regex,\n"
20739 "                 const char *path);\n"
20740 "\n"
20741 msgstr ""
20742
20743 # type: textblock
20744 #. type: textblock
20745 #: ../src/guestfs-actions.pod:7528 ../fish/guestfish-actions.pod:5027
20746 msgid ""
20747 "This calls the external C<zgrep -i> program and returns the matching lines."
20748 msgstr ""
20749
20750 # type: =item
20751 #. type: =item
20752 #: ../src/guestfs-availability.pod:3
20753 msgid "B<augeas>"
20754 msgstr ""
20755
20756 # type: textblock
20757 #. type: textblock
20758 #: ../src/guestfs-availability.pod:5
20759 msgid ""
20760 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> L</"
20761 "guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> L</"
20762 "guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> L</"
20763 "guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> L</guestfs_aug_rm> "
20764 "L</guestfs_aug_save> L</guestfs_aug_set>"
20765 msgstr ""
20766
20767 # type: =item
20768 #. type: =item
20769 #: ../src/guestfs-availability.pod:21
20770 msgid "B<inotify>"
20771 msgstr ""
20772
20773 # type: textblock
20774 #. type: textblock
20775 #: ../src/guestfs-availability.pod:23
20776 msgid ""
20777 "The following functions: L</guestfs_inotify_add_watch> L</"
20778 "guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> L</"
20779 "guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
20780 msgstr ""
20781
20782 # type: =item
20783 #. type: =item
20784 #: ../src/guestfs-availability.pod:31
20785 msgid "B<linuxfsuuid>"
20786 msgstr ""
20787
20788 # type: textblock
20789 #. type: textblock
20790 #: ../src/guestfs-availability.pod:33
20791 msgid ""
20792 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> L</"
20793 "guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
20794 msgstr ""
20795
20796 # type: =item
20797 #. type: =item
20798 #: ../src/guestfs-availability.pod:40
20799 msgid "B<linuxmodules>"
20800 msgstr ""
20801
20802 # type: textblock
20803 #. type: textblock
20804 #: ../src/guestfs-availability.pod:42
20805 msgid "The following functions: L</guestfs_modprobe>"
20806 msgstr ""
20807
20808 # type: =item
20809 #. type: =item
20810 #: ../src/guestfs-availability.pod:45
20811 msgid "B<linuxxattrs>"
20812 msgstr ""
20813
20814 # type: textblock
20815 #. type: textblock
20816 #: ../src/guestfs-availability.pod:47
20817 msgid ""
20818 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> L</"
20819 "guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> L</"
20820 "guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> L</"
20821 "guestfs_setxattr>"
20822 msgstr ""
20823
20824 # type: =item
20825 #. type: =item
20826 #: ../src/guestfs-availability.pod:58
20827 msgid "B<luks>"
20828 msgstr ""
20829
20830 # type: textblock
20831 #. type: textblock
20832 #: ../src/guestfs-availability.pod:60
20833 msgid ""
20834 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> L</"
20835 "guestfs_luks_format> L</guestfs_luks_format_cipher> L</"
20836 "guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
20837 msgstr ""
20838
20839 # type: =item
20840 #. type: =item
20841 #: ../src/guestfs-availability.pod:69
20842 msgid "B<lvm2>"
20843 msgstr ""
20844
20845 # type: textblock
20846 #. type: textblock
20847 #: ../src/guestfs-availability.pod:71
20848 msgid ""
20849 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> L</"
20850 "guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> L</"
20851 "guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> L</"
20852 "guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> L</"
20853 "guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> L</"
20854 "guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> L</"
20855 "guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> L</guestfs_vgs_full>"
20856 msgstr ""
20857
20858 # type: =item
20859 #. type: =item
20860 #: ../src/guestfs-availability.pod:94
20861 msgid "B<mknod>"
20862 msgstr ""
20863
20864 # type: textblock
20865 #. type: textblock
20866 #: ../src/guestfs-availability.pod:96
20867 msgid ""
20868 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> L</"
20869 "guestfs_mknod_b> L</guestfs_mknod_c>"
20870 msgstr ""
20871
20872 # type: =item
20873 #. type: =item
20874 #: ../src/guestfs-availability.pod:102
20875 msgid "B<ntfs3g>"
20876 msgstr ""
20877
20878 # type: textblock
20879 #. type: textblock
20880 #: ../src/guestfs-availability.pod:104
20881 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
20882 msgstr ""
20883
20884 # type: =item
20885 #. type: =item
20886 #: ../src/guestfs-availability.pod:107
20887 msgid "B<ntfsprogs>"
20888 msgstr ""
20889
20890 # type: textblock
20891 #. type: textblock
20892 #: ../src/guestfs-availability.pod:109
20893 msgid ""
20894 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
20895 msgstr ""
20896
20897 # type: =item
20898 #. type: =item
20899 #: ../src/guestfs-availability.pod:113
20900 msgid "B<realpath>"
20901 msgstr ""
20902
20903 # type: textblock
20904 #. type: textblock
20905 #: ../src/guestfs-availability.pod:115
20906 msgid "The following functions: L</guestfs_realpath>"
20907 msgstr ""
20908
20909 # type: =item
20910 #. type: =item
20911 #: ../src/guestfs-availability.pod:118
20912 msgid "B<scrub>"
20913 msgstr ""
20914
20915 # type: textblock
20916 #. type: textblock
20917 #: ../src/guestfs-availability.pod:120
20918 msgid ""
20919 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> L</"
20920 "guestfs_scrub_freespace>"
20921 msgstr ""
20922
20923 # type: =item
20924 #. type: =item
20925 #: ../src/guestfs-availability.pod:125
20926 msgid "B<selinux>"
20927 msgstr ""
20928
20929 # type: textblock
20930 #. type: textblock
20931 #: ../src/guestfs-availability.pod:127
20932 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
20933 msgstr ""
20934
20935 # type: =item
20936 #. type: =item
20937 #: ../src/guestfs-availability.pod:131
20938 msgid "B<xz>"
20939 msgstr ""
20940
20941 # type: textblock
20942 #. type: textblock
20943 #: ../src/guestfs-availability.pod:133
20944 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
20945 msgstr ""
20946
20947 # type: =item
20948 #. type: =item
20949 #: ../src/guestfs-availability.pod:137
20950 msgid "B<zerofree>"
20951 msgstr ""
20952
20953 # type: textblock
20954 #. type: textblock
20955 #: ../src/guestfs-availability.pod:139
20956 msgid "The following functions: L</guestfs_zerofree>"
20957 msgstr ""
20958
20959 # type: =head2
20960 #. type: =head2
20961 #: ../src/guestfs-structs.pod:1
20962 msgid "guestfs_int_bool"
20963 msgstr ""
20964
20965 # type: verbatim
20966 #. type: verbatim
20967 #: ../src/guestfs-structs.pod:3
20968 #, no-wrap
20969 msgid ""
20970 " struct guestfs_int_bool {\n"
20971 "   int32_t i;\n"
20972 "   int32_t b;\n"
20973 " };\n"
20974 " \n"
20975 msgstr ""
20976
20977 # type: verbatim
20978 #. type: verbatim
20979 #: ../src/guestfs-structs.pod:8
20980 #, no-wrap
20981 msgid ""
20982 " struct guestfs_int_bool_list {\n"
20983 "   uint32_t len; /* Number of elements in list. */\n"
20984 "   struct guestfs_int_bool *val; /* Elements. */\n"
20985 " };\n"
20986 " \n"
20987 msgstr ""
20988
20989 # type: verbatim
20990 #. type: verbatim
20991 #: ../src/guestfs-structs.pod:13
20992 #, no-wrap
20993 msgid ""
20994 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
20995 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
20996 "\n"
20997 msgstr ""
20998
20999 # type: =head2
21000 #. type: =head2
21001 #: ../src/guestfs-structs.pod:16
21002 msgid "guestfs_lvm_pv"
21003 msgstr ""
21004
21005 # type: verbatim
21006 #. type: verbatim
21007 #: ../src/guestfs-structs.pod:18
21008 #, no-wrap
21009 msgid ""
21010 " struct guestfs_lvm_pv {\n"
21011 "   char *pv_name;\n"
21012 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
21013 "   char pv_uuid[32];\n"
21014 "   char *pv_fmt;\n"
21015 "   uint64_t pv_size;\n"
21016 "   uint64_t dev_size;\n"
21017 "   uint64_t pv_free;\n"
21018 "   uint64_t pv_used;\n"
21019 "   char *pv_attr;\n"
21020 "   int64_t pv_pe_count;\n"
21021 "   int64_t pv_pe_alloc_count;\n"
21022 "   char *pv_tags;\n"
21023 "   uint64_t pe_start;\n"
21024 "   int64_t pv_mda_count;\n"
21025 "   uint64_t pv_mda_free;\n"
21026 " };\n"
21027 " \n"
21028 msgstr ""
21029
21030 # type: verbatim
21031 #. type: verbatim
21032 #: ../src/guestfs-structs.pod:36
21033 #, no-wrap
21034 msgid ""
21035 " struct guestfs_lvm_pv_list {\n"
21036 "   uint32_t len; /* Number of elements in list. */\n"
21037 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
21038 " };\n"
21039 " \n"
21040 msgstr ""
21041
21042 # type: verbatim
21043 #. type: verbatim
21044 #: ../src/guestfs-structs.pod:41
21045 #, no-wrap
21046 msgid ""
21047 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
21048 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
21049 "\n"
21050 msgstr ""
21051
21052 # type: =head2
21053 #. type: =head2
21054 #: ../src/guestfs-structs.pod:44
21055 msgid "guestfs_lvm_vg"
21056 msgstr ""
21057
21058 # type: verbatim
21059 #. type: verbatim
21060 #: ../src/guestfs-structs.pod:46
21061 #, no-wrap
21062 msgid ""
21063 " struct guestfs_lvm_vg {\n"
21064 "   char *vg_name;\n"
21065 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
21066 "   char vg_uuid[32];\n"
21067 "   char *vg_fmt;\n"
21068 "   char *vg_attr;\n"
21069 "   uint64_t vg_size;\n"
21070 "   uint64_t vg_free;\n"
21071 "   char *vg_sysid;\n"
21072 "   uint64_t vg_extent_size;\n"
21073 "   int64_t vg_extent_count;\n"
21074 "   int64_t vg_free_count;\n"
21075 "   int64_t max_lv;\n"
21076 "   int64_t max_pv;\n"
21077 "   int64_t pv_count;\n"
21078 "   int64_t lv_count;\n"
21079 "   int64_t snap_count;\n"
21080 "   int64_t vg_seqno;\n"
21081 "   char *vg_tags;\n"
21082 "   int64_t vg_mda_count;\n"
21083 "   uint64_t vg_mda_free;\n"
21084 " };\n"
21085 " \n"
21086 msgstr ""
21087
21088 # type: verbatim
21089 #. type: verbatim
21090 #: ../src/guestfs-structs.pod:69
21091 #, no-wrap
21092 msgid ""
21093 " struct guestfs_lvm_vg_list {\n"
21094 "   uint32_t len; /* Number of elements in list. */\n"
21095 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
21096 " };\n"
21097 " \n"
21098 msgstr ""
21099
21100 # type: verbatim
21101 #. type: verbatim
21102 #: ../src/guestfs-structs.pod:74
21103 #, no-wrap
21104 msgid ""
21105 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
21106 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
21107 "\n"
21108 msgstr ""
21109
21110 # type: =head2
21111 #. type: =head2
21112 #: ../src/guestfs-structs.pod:77
21113 msgid "guestfs_lvm_lv"
21114 msgstr ""
21115
21116 # type: verbatim
21117 #. type: verbatim
21118 #: ../src/guestfs-structs.pod:79
21119 #, no-wrap
21120 msgid ""
21121 " struct guestfs_lvm_lv {\n"
21122 "   char *lv_name;\n"
21123 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
21124 "   char lv_uuid[32];\n"
21125 "   char *lv_attr;\n"
21126 "   int64_t lv_major;\n"
21127 "   int64_t lv_minor;\n"
21128 "   int64_t lv_kernel_major;\n"
21129 "   int64_t lv_kernel_minor;\n"
21130 "   uint64_t lv_size;\n"
21131 "   int64_t seg_count;\n"
21132 "   char *origin;\n"
21133 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
21134 "   float snap_percent;\n"
21135 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
21136 "   float copy_percent;\n"
21137 "   char *move_pv;\n"
21138 "   char *lv_tags;\n"
21139 "   char *mirror_log;\n"
21140 "   char *modules;\n"
21141 " };\n"
21142 " \n"
21143 msgstr ""
21144
21145 # type: verbatim
21146 #. type: verbatim
21147 #: ../src/guestfs-structs.pod:101
21148 #, no-wrap
21149 msgid ""
21150 " struct guestfs_lvm_lv_list {\n"
21151 "   uint32_t len; /* Number of elements in list. */\n"
21152 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
21153 " };\n"
21154 " \n"
21155 msgstr ""
21156
21157 # type: verbatim
21158 #. type: verbatim
21159 #: ../src/guestfs-structs.pod:106
21160 #, no-wrap
21161 msgid ""
21162 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
21163 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
21164 "\n"
21165 msgstr ""
21166
21167 # type: verbatim
21168 #. type: verbatim
21169 #: ../src/guestfs-structs.pod:111
21170 #, no-wrap
21171 msgid ""
21172 " struct guestfs_stat {\n"
21173 "   int64_t dev;\n"
21174 "   int64_t ino;\n"
21175 "   int64_t mode;\n"
21176 "   int64_t nlink;\n"
21177 "   int64_t uid;\n"
21178 "   int64_t gid;\n"
21179 "   int64_t rdev;\n"
21180 "   int64_t size;\n"
21181 "   int64_t blksize;\n"
21182 "   int64_t blocks;\n"
21183 "   int64_t atime;\n"
21184 "   int64_t mtime;\n"
21185 "   int64_t ctime;\n"
21186 " };\n"
21187 " \n"
21188 msgstr ""
21189
21190 # type: verbatim
21191 #. type: verbatim
21192 #: ../src/guestfs-structs.pod:127
21193 #, no-wrap
21194 msgid ""
21195 " struct guestfs_stat_list {\n"
21196 "   uint32_t len; /* Number of elements in list. */\n"
21197 "   struct guestfs_stat *val; /* Elements. */\n"
21198 " };\n"
21199 " \n"
21200 msgstr ""
21201
21202 # type: verbatim
21203 #. type: verbatim
21204 #: ../src/guestfs-structs.pod:132
21205 #, no-wrap
21206 msgid ""
21207 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
21208 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
21209 "\n"
21210 msgstr ""
21211
21212 # type: verbatim
21213 #. type: verbatim
21214 #: ../src/guestfs-structs.pod:137
21215 #, no-wrap
21216 msgid ""
21217 " struct guestfs_statvfs {\n"
21218 "   int64_t bsize;\n"
21219 "   int64_t frsize;\n"
21220 "   int64_t blocks;\n"
21221 "   int64_t bfree;\n"
21222 "   int64_t bavail;\n"
21223 "   int64_t files;\n"
21224 "   int64_t ffree;\n"
21225 "   int64_t favail;\n"
21226 "   int64_t fsid;\n"
21227 "   int64_t flag;\n"
21228 "   int64_t namemax;\n"
21229 " };\n"
21230 " \n"
21231 msgstr ""
21232
21233 # type: verbatim
21234 #. type: verbatim
21235 #: ../src/guestfs-structs.pod:151
21236 #, no-wrap
21237 msgid ""
21238 " struct guestfs_statvfs_list {\n"
21239 "   uint32_t len; /* Number of elements in list. */\n"
21240 "   struct guestfs_statvfs *val; /* Elements. */\n"
21241 " };\n"
21242 " \n"
21243 msgstr ""
21244
21245 # type: verbatim
21246 #. type: verbatim
21247 #: ../src/guestfs-structs.pod:156
21248 #, no-wrap
21249 msgid ""
21250 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
21251 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
21252 "\n"
21253 msgstr ""
21254
21255 # type: =head2
21256 #. type: =head2
21257 #: ../src/guestfs-structs.pod:159
21258 msgid "guestfs_dirent"
21259 msgstr ""
21260
21261 # type: verbatim
21262 #. type: verbatim
21263 #: ../src/guestfs-structs.pod:161
21264 #, no-wrap
21265 msgid ""
21266 " struct guestfs_dirent {\n"
21267 "   int64_t ino;\n"
21268 "   char ftyp;\n"
21269 "   char *name;\n"
21270 " };\n"
21271 " \n"
21272 msgstr ""
21273
21274 # type: verbatim
21275 #. type: verbatim
21276 #: ../src/guestfs-structs.pod:167
21277 #, no-wrap
21278 msgid ""
21279 " struct guestfs_dirent_list {\n"
21280 "   uint32_t len; /* Number of elements in list. */\n"
21281 "   struct guestfs_dirent *val; /* Elements. */\n"
21282 " };\n"
21283 " \n"
21284 msgstr ""
21285
21286 # type: verbatim
21287 #. type: verbatim
21288 #: ../src/guestfs-structs.pod:172
21289 #, no-wrap
21290 msgid ""
21291 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
21292 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
21293 "\n"
21294 msgstr ""
21295
21296 # type: verbatim
21297 #. type: verbatim
21298 #: ../src/guestfs-structs.pod:177
21299 #, no-wrap
21300 msgid ""
21301 " struct guestfs_version {\n"
21302 "   int64_t major;\n"
21303 "   int64_t minor;\n"
21304 "   int64_t release;\n"
21305 "   char *extra;\n"
21306 " };\n"
21307 " \n"
21308 msgstr ""
21309
21310 # type: verbatim
21311 #. type: verbatim
21312 #: ../src/guestfs-structs.pod:184
21313 #, no-wrap
21314 msgid ""
21315 " struct guestfs_version_list {\n"
21316 "   uint32_t len; /* Number of elements in list. */\n"
21317 "   struct guestfs_version *val; /* Elements. */\n"
21318 " };\n"
21319 " \n"
21320 msgstr ""
21321
21322 # type: verbatim
21323 #. type: verbatim
21324 #: ../src/guestfs-structs.pod:189
21325 #, no-wrap
21326 msgid ""
21327 " void guestfs_free_version (struct guestfs_free_version *);\n"
21328 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
21329 "\n"
21330 msgstr ""
21331
21332 # type: =head2
21333 #. type: =head2
21334 #: ../src/guestfs-structs.pod:192
21335 msgid "guestfs_xattr"
21336 msgstr ""
21337
21338 # type: verbatim
21339 #. type: verbatim
21340 #: ../src/guestfs-structs.pod:194
21341 #, no-wrap
21342 msgid ""
21343 " struct guestfs_xattr {\n"
21344 "   char *attrname;\n"
21345 "   /* The next two fields describe a byte array. */\n"
21346 "   uint32_t attrval_len;\n"
21347 "   char *attrval;\n"
21348 " };\n"
21349 " \n"
21350 msgstr ""
21351
21352 # type: verbatim
21353 #. type: verbatim
21354 #: ../src/guestfs-structs.pod:201
21355 #, no-wrap
21356 msgid ""
21357 " struct guestfs_xattr_list {\n"
21358 "   uint32_t len; /* Number of elements in list. */\n"
21359 "   struct guestfs_xattr *val; /* Elements. */\n"
21360 " };\n"
21361 " \n"
21362 msgstr ""
21363
21364 # type: verbatim
21365 #. type: verbatim
21366 #: ../src/guestfs-structs.pod:206
21367 #, no-wrap
21368 msgid ""
21369 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
21370 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
21371 "\n"
21372 msgstr ""
21373
21374 # type: =head2
21375 #. type: =head2
21376 #: ../src/guestfs-structs.pod:209
21377 msgid "guestfs_inotify_event"
21378 msgstr ""
21379
21380 # type: verbatim
21381 #. type: verbatim
21382 #: ../src/guestfs-structs.pod:211
21383 #, no-wrap
21384 msgid ""
21385 " struct guestfs_inotify_event {\n"
21386 "   int64_t in_wd;\n"
21387 "   uint32_t in_mask;\n"
21388 "   uint32_t in_cookie;\n"
21389 "   char *in_name;\n"
21390 " };\n"
21391 " \n"
21392 msgstr ""
21393
21394 # type: verbatim
21395 #. type: verbatim
21396 #: ../src/guestfs-structs.pod:218
21397 #, no-wrap
21398 msgid ""
21399 " struct guestfs_inotify_event_list {\n"
21400 "   uint32_t len; /* Number of elements in list. */\n"
21401 "   struct guestfs_inotify_event *val; /* Elements. */\n"
21402 " };\n"
21403 " \n"
21404 msgstr ""
21405
21406 # type: verbatim
21407 #. type: verbatim
21408 #: ../src/guestfs-structs.pod:223
21409 #, no-wrap
21410 msgid ""
21411 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
21412 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
21413 "\n"
21414 msgstr ""
21415
21416 # type: =head2
21417 #. type: =head2
21418 #: ../src/guestfs-structs.pod:226
21419 msgid "guestfs_partition"
21420 msgstr ""
21421
21422 # type: verbatim
21423 #. type: verbatim
21424 #: ../src/guestfs-structs.pod:228
21425 #, no-wrap
21426 msgid ""
21427 " struct guestfs_partition {\n"
21428 "   int32_t part_num;\n"
21429 "   uint64_t part_start;\n"
21430 "   uint64_t part_end;\n"
21431 "   uint64_t part_size;\n"
21432 " };\n"
21433 " \n"
21434 msgstr ""
21435
21436 # type: verbatim
21437 #. type: verbatim
21438 #: ../src/guestfs-structs.pod:235
21439 #, no-wrap
21440 msgid ""
21441 " struct guestfs_partition_list {\n"
21442 "   uint32_t len; /* Number of elements in list. */\n"
21443 "   struct guestfs_partition *val; /* Elements. */\n"
21444 " };\n"
21445 " \n"
21446 msgstr ""
21447
21448 # type: verbatim
21449 #. type: verbatim
21450 #: ../src/guestfs-structs.pod:240
21451 #, no-wrap
21452 msgid ""
21453 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
21454 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
21455 "\n"
21456 msgstr ""
21457
21458 # type: =head2
21459 #. type: =head2
21460 #: ../src/guestfs-structs.pod:243
21461 msgid "guestfs_application"
21462 msgstr ""
21463
21464 # type: verbatim
21465 #. type: verbatim
21466 #: ../src/guestfs-structs.pod:245
21467 #, no-wrap
21468 msgid ""
21469 " struct guestfs_application {\n"
21470 "   char *app_name;\n"
21471 "   char *app_display_name;\n"
21472 "   int32_t app_epoch;\n"
21473 "   char *app_version;\n"
21474 "   char *app_release;\n"
21475 "   char *app_install_path;\n"
21476 "   char *app_trans_path;\n"
21477 "   char *app_publisher;\n"
21478 "   char *app_url;\n"
21479 "   char *app_source_package;\n"
21480 "   char *app_summary;\n"
21481 "   char *app_description;\n"
21482 " };\n"
21483 " \n"
21484 msgstr ""
21485
21486 # type: verbatim
21487 #. type: verbatim
21488 #: ../src/guestfs-structs.pod:260
21489 #, no-wrap
21490 msgid ""
21491 " struct guestfs_application_list {\n"
21492 "   uint32_t len; /* Number of elements in list. */\n"
21493 "   struct guestfs_application *val; /* Elements. */\n"
21494 " };\n"
21495 " \n"
21496 msgstr ""
21497
21498 # type: verbatim
21499 #. type: verbatim
21500 #: ../src/guestfs-structs.pod:265
21501 #, no-wrap
21502 msgid ""
21503 " void guestfs_free_application (struct guestfs_free_application *);\n"
21504 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
21505 "\n"
21506 msgstr ""
21507
21508 # type: textblock
21509 #. type: textblock
21510 #: ../fish/guestfish.pod:5
21511 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
21512 msgstr ""
21513
21514 # type: verbatim
21515 #. type: verbatim
21516 #: ../fish/guestfish.pod:9
21517 #, no-wrap
21518 msgid ""
21519 " guestfish [--options] [commands]\n"
21520 "\n"
21521 msgstr ""
21522
21523 # type: verbatim
21524 #. type: verbatim
21525 #: ../fish/guestfish.pod:11
21526 #, no-wrap
21527 msgid ""
21528 " guestfish\n"
21529 "\n"
21530 msgstr ""
21531
21532 # type: verbatim
21533 #. type: verbatim
21534 #: ../fish/guestfish.pod:13
21535 #, no-wrap
21536 msgid ""
21537 " guestfish [--ro|--rw] -a disk.img\n"
21538 "\n"
21539 msgstr ""
21540
21541 # type: verbatim
21542 #. type: verbatim
21543 #: ../fish/guestfish.pod:15
21544 #, no-wrap
21545 msgid ""
21546 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
21547 "\n"
21548 msgstr ""
21549
21550 # type: verbatim
21551 #. type: verbatim
21552 #: ../fish/guestfish.pod:17
21553 #, no-wrap
21554 msgid ""
21555 " guestfish -d libvirt-domain\n"
21556 "\n"
21557 msgstr ""
21558
21559 # type: verbatim
21560 #. type: verbatim
21561 #: ../fish/guestfish.pod:19
21562 #, no-wrap
21563 msgid ""
21564 " guestfish [--ro|--rw] -a disk.img -i\n"
21565 "\n"
21566 msgstr ""
21567
21568 # type: verbatim
21569 #. type: verbatim
21570 #: ../fish/guestfish.pod:21
21571 #, no-wrap
21572 msgid ""
21573 " guestfish -d libvirt-domain -i\n"
21574 "\n"
21575 msgstr ""
21576
21577 # type: =head1
21578 #. type: =head1
21579 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-edit.pl:44
21580 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
21581 msgid "WARNING"
21582 msgstr ""
21583
21584 # type: textblock
21585 #. type: textblock
21586 #: ../fish/guestfish.pod:25
21587 msgid ""
21588 "Using guestfish in read/write mode on live virtual machines can be "
21589 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
21590 "option to use guestfish safely if the disk image or virtual machine might be "
21591 "live."
21592 msgstr ""
21593
21594 # type: textblock
21595 #. type: textblock
21596 #: ../fish/guestfish.pod:32
21597 msgid ""
21598 "Guestfish is a shell and command-line tool for examining and modifying "
21599 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
21600 "functionality of the guestfs API, see L<guestfs(3)>."
21601 msgstr ""
21602
21603 # type: textblock
21604 #. type: textblock
21605 #: ../fish/guestfish.pod:36
21606 msgid ""
21607 "Guestfish gives you structured access to the libguestfs API, from shell "
21608 "scripts or the command line or interactively.  If you want to rescue a "
21609 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
21610 "command."
21611 msgstr ""
21612
21613 # type: =head1
21614 #. type: =head1
21615 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:958
21616 #: ../fuse/guestmount.pod:39 ../tools/virt-edit.pl:63 ../tools/virt-tar.pl:50
21617 msgid "EXAMPLES"
21618 msgstr ""
21619
21620 # type: =head2
21621 #. type: =head2
21622 #: ../fish/guestfish.pod:43
21623 msgid "As an interactive shell"
21624 msgstr ""
21625
21626 # type: verbatim
21627 #. type: verbatim
21628 #: ../fish/guestfish.pod:45
21629 #, no-wrap
21630 msgid ""
21631 " $ guestfish\n"
21632 " \n"
21633 msgstr ""
21634
21635 # type: verbatim
21636 #. type: verbatim
21637 #: ../fish/guestfish.pod:47
21638 #, no-wrap
21639 msgid ""
21640 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
21641 " editing virtual machine filesystems.\n"
21642 " \n"
21643 msgstr ""
21644
21645 # type: verbatim
21646 #. type: verbatim
21647 #: ../fish/guestfish.pod:50
21648 #, no-wrap
21649 msgid ""
21650 " Type: 'help' for a list of commands\n"
21651 "       'man' to read the manual\n"
21652 "       'quit' to quit the shell\n"
21653 " \n"
21654 msgstr ""
21655
21656 # type: verbatim
21657 #. type: verbatim
21658 #: ../fish/guestfish.pod:54
21659 #, no-wrap
21660 msgid ""
21661 " ><fs> add-ro disk.img\n"
21662 " ><fs> run\n"
21663 " ><fs> list-filesystems\n"
21664 " /dev/sda1: ext4\n"
21665 " /dev/vg_guest/lv_root: ext4\n"
21666 " /dev/vg_guest/lv_swap: swap\n"
21667 " ><fs> mount /dev/vg_guest/lv_root /\n"
21668 " ><fs> cat /etc/fstab\n"
21669 " # /etc/fstab\n"
21670 " # Created by anaconda\n"
21671 " [...]\n"
21672 " ><fs> exit\n"
21673 "\n"
21674 msgstr ""
21675
21676 # type: =head2
21677 #. type: =head2
21678 #: ../fish/guestfish.pod:67
21679 msgid "From shell scripts"
21680 msgstr ""
21681
21682 # type: textblock
21683 #. type: textblock
21684 #: ../fish/guestfish.pod:69
21685 msgid "Create a new C</etc/motd> file in a guest or disk image:"
21686 msgstr ""
21687
21688 # type: verbatim
21689 #. type: verbatim
21690 #: ../fish/guestfish.pod:71
21691 #, no-wrap
21692 msgid ""
21693 " guestfish <<_EOF_\n"
21694 " add disk.img\n"
21695 " run\n"
21696 " mount /dev/vg_guest/lv_root /\n"
21697 " write /etc/motd \"Welcome, new users\"\n"
21698 " _EOF_\n"
21699 "\n"
21700 msgstr ""
21701
21702 # type: textblock
21703 #. type: textblock
21704 #: ../fish/guestfish.pod:78
21705 msgid "List the LVM logical volumes in a disk image:"
21706 msgstr ""
21707
21708 # type: verbatim
21709 #. type: verbatim
21710 #: ../fish/guestfish.pod:80
21711 #, no-wrap
21712 msgid ""
21713 " guestfish -a disk.img --ro <<_EOF_\n"
21714 " run\n"
21715 " lvs\n"
21716 " _EOF_\n"
21717 "\n"
21718 msgstr ""
21719
21720 # type: textblock
21721 #. type: textblock
21722 #: ../fish/guestfish.pod:85
21723 msgid "List all the filesystems in a disk image:"
21724 msgstr ""
21725
21726 # type: verbatim
21727 #. type: verbatim
21728 #: ../fish/guestfish.pod:87
21729 #, no-wrap
21730 msgid ""
21731 " guestfish -a disk.img --ro <<_EOF_\n"
21732 " run\n"
21733 " list-filesystems\n"
21734 " _EOF_\n"
21735 "\n"
21736 msgstr ""
21737
21738 # type: =head2
21739 #. type: =head2
21740 #: ../fish/guestfish.pod:92
21741 msgid "On one command line"
21742 msgstr ""
21743
21744 # type: textblock
21745 #. type: textblock
21746 #: ../fish/guestfish.pod:94
21747 msgid "Update C</etc/resolv.conf> in a guest:"
21748 msgstr ""
21749
21750 # type: verbatim
21751 #. type: verbatim
21752 #: ../fish/guestfish.pod:96
21753 #, no-wrap
21754 msgid ""
21755 " guestfish \\\n"
21756 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
21757 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
21758 "\n"
21759 msgstr ""
21760
21761 # type: textblock
21762 #. type: textblock
21763 #: ../fish/guestfish.pod:100
21764 msgid "Edit C</boot/grub/grub.conf> interactively:"
21765 msgstr ""
21766
21767 # type: verbatim
21768 #. type: verbatim
21769 #: ../fish/guestfish.pod:102
21770 #, no-wrap
21771 msgid ""
21772 " guestfish --rw --add disk.img \\\n"
21773 "   --mount /dev/vg_guest/lv_root \\\n"
21774 "   --mount /dev/sda1:/boot \\\n"
21775 "   edit /boot/grub/grub.conf\n"
21776 "\n"
21777 msgstr ""
21778
21779 # type: =head2
21780 #. type: =head2
21781 #: ../fish/guestfish.pod:107
21782 msgid "Mount disks automatically"
21783 msgstr ""
21784
21785 # type: textblock
21786 #. type: textblock
21787 #: ../fish/guestfish.pod:109
21788 msgid ""
21789 "Use the I<-i> option to automatically mount the disks from a virtual machine:"
21790 msgstr ""
21791
21792 # type: verbatim
21793 #. type: verbatim
21794 #: ../fish/guestfish.pod:112
21795 #, no-wrap
21796 msgid ""
21797 " guestfish --ro -a disk.img -i cat /etc/group\n"
21798 "\n"
21799 msgstr ""
21800
21801 # type: verbatim
21802 #. type: verbatim
21803 #: ../fish/guestfish.pod:114
21804 #, no-wrap
21805 msgid ""
21806 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
21807 "\n"
21808 msgstr ""
21809
21810 # type: textblock
21811 #. type: textblock
21812 #: ../fish/guestfish.pod:116
21813 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
21814 msgstr ""
21815
21816 # type: verbatim
21817 #. type: verbatim
21818 #: ../fish/guestfish.pod:118
21819 #, no-wrap
21820 msgid ""
21821 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
21822 "\n"
21823 msgstr ""
21824
21825 # type: =head2
21826 #. type: =head2
21827 #: ../fish/guestfish.pod:120
21828 msgid "As a script interpreter"
21829 msgstr ""
21830
21831 # type: textblock
21832 #. type: textblock
21833 #: ../fish/guestfish.pod:122
21834 msgid "Create a 100MB disk containing an ext2-formatted partition:"
21835 msgstr ""
21836
21837 # type: verbatim
21838 #. type: verbatim
21839 #: ../fish/guestfish.pod:124
21840 #, no-wrap
21841 msgid ""
21842 " #!/usr/bin/guestfish -f\n"
21843 " sparse test1.img 100M\n"
21844 " run\n"
21845 " part-disk /dev/sda mbr\n"
21846 " mkfs ext2 /dev/sda1\n"
21847 "\n"
21848 msgstr ""
21849
21850 # type: =head2
21851 #. type: =head2
21852 #: ../fish/guestfish.pod:130
21853 msgid "Start with a prepared disk"
21854 msgstr ""
21855
21856 # type: textblock
21857 #. type: textblock
21858 #: ../fish/guestfish.pod:132
21859 msgid ""
21860 "An alternate way to create a 100MB disk called C<test1.img> containing a "
21861 "single ext2-formatted partition:"
21862 msgstr ""
21863
21864 # type: verbatim
21865 #. type: verbatim
21866 #: ../fish/guestfish.pod:135
21867 #, no-wrap
21868 msgid ""
21869 " guestfish -N fs\n"
21870 "\n"
21871 msgstr ""
21872
21873 # type: textblock
21874 #. type: textblock
21875 #: ../fish/guestfish.pod:137
21876 msgid "To list what is available do:"
21877 msgstr ""
21878
21879 # type: verbatim
21880 #. type: verbatim
21881 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:949
21882 #, no-wrap
21883 msgid ""
21884 " guestfish -N help | less\n"
21885 "\n"
21886 msgstr ""
21887
21888 # type: =head2
21889 #. type: =head2
21890 #: ../fish/guestfish.pod:141
21891 msgid "Remote control"
21892 msgstr ""
21893
21894 # type: verbatim
21895 #. type: verbatim
21896 #: ../fish/guestfish.pod:143
21897 #, no-wrap
21898 msgid ""
21899 " eval \"`guestfish --listen`\"\n"
21900 " guestfish --remote add-ro disk.img\n"
21901 " guestfish --remote run\n"
21902 " guestfish --remote lvs\n"
21903 "\n"
21904 msgstr ""
21905
21906 # type: =head1
21907 #. type: =head1
21908 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
21909 #: ../fuse/guestmount.pod:83 ../tools/virt-edit.pl:81
21910 #: ../tools/virt-win-reg.pl:96 ../tools/virt-list-filesystems.pl:53
21911 #: ../tools/virt-tar.pl:103 ../tools/virt-make-fs.pl:153
21912 #: ../tools/virt-list-partitions.pl:54
21913 msgid "OPTIONS"
21914 msgstr ""
21915
21916 # type: =item
21917 #. type: =item
21918 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:141
21919 #: ../tools/virt-edit.pl:89 ../tools/virt-win-reg.pl:104
21920 #: ../tools/virt-list-filesystems.pl:61 ../tools/virt-tar.pl:111
21921 #: ../tools/virt-make-fs.pl:161 ../tools/virt-list-partitions.pl:62
21922 msgid "B<--help>"
21923 msgstr ""
21924
21925 # type: textblock
21926 #. type: textblock
21927 #: ../fish/guestfish.pod:154
21928 msgid "Displays general help on options."
21929 msgstr ""
21930
21931 # type: =item
21932 #. type: =item
21933 #: ../fish/guestfish.pod:156
21934 msgid "B<-h>"
21935 msgstr ""
21936
21937 # type: =item
21938 #. type: =item
21939 #: ../fish/guestfish.pod:158
21940 msgid "B<--cmd-help>"
21941 msgstr ""
21942
21943 # type: textblock
21944 #. type: textblock
21945 #: ../fish/guestfish.pod:160
21946 msgid "Lists all available guestfish commands."
21947 msgstr ""
21948
21949 # type: =item
21950 #. type: =item
21951 #: ../fish/guestfish.pod:162
21952 msgid "B<-h cmd>"
21953 msgstr ""
21954
21955 # type: =item
21956 #. type: =item
21957 #: ../fish/guestfish.pod:164
21958 msgid "B<--cmd-help cmd>"
21959 msgstr ""
21960
21961 # type: textblock
21962 #. type: textblock
21963 #: ../fish/guestfish.pod:166
21964 msgid "Displays detailed help on a single command C<cmd>."
21965 msgstr ""
21966
21967 # type: =item
21968 #. type: =item
21969 #: ../fish/guestfish.pod:168
21970 msgid "B<-a image>"
21971 msgstr ""
21972
21973 # type: =item
21974 #. type: =item
21975 #: ../fish/guestfish.pod:170
21976 msgid "B<--add image>"
21977 msgstr ""
21978
21979 # type: textblock
21980 #. type: textblock
21981 #: ../fish/guestfish.pod:172
21982 msgid "Add a block device or virtual machine image to the shell."
21983 msgstr ""
21984
21985 # type: textblock
21986 #. type: textblock
21987 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
21988 msgid ""
21989 "The format of the disk image is auto-detected.  To override this and force a "
21990 "particular format use the I<--format=..> option."
21991 msgstr ""
21992
21993 #. type: textblock
21994 #: ../fish/guestfish.pod:177
21995 msgid ""
21996 "Using this flag is mostly equivalent to using the C<add> command, with "
21997 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
21998 "the I<--format=...> flag was given."
21999 msgstr ""
22000
22001 # type: =item
22002 #. type: =item
22003 #: ../fish/guestfish.pod:181
22004 msgid "B<-c URI>"
22005 msgstr ""
22006
22007 # type: =item
22008 #. type: =item
22009 #: ../fish/guestfish.pod:183
22010 msgid "B<--connect URI>"
22011 msgstr ""
22012
22013 # type: textblock
22014 #. type: textblock
22015 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
22016 msgid ""
22017 "When used in conjunction with the I<-d> option, this specifies the libvirt "
22018 "URI to use.  The default is to use the default libvirt connection."
22019 msgstr ""
22020
22021 # type: =item
22022 #. type: =item
22023 #: ../fish/guestfish.pod:189
22024 msgid "B<--csh>"
22025 msgstr ""
22026
22027 # type: textblock
22028 #. type: textblock
22029 #: ../fish/guestfish.pod:191
22030 msgid ""
22031 "If using the I<--listen> option and a csh-like shell, use this option.  See "
22032 "section L</REMOTE CONTROL AND CSH> below."
22033 msgstr ""
22034
22035 # type: =item
22036 #. type: =item
22037 #: ../fish/guestfish.pod:194
22038 msgid "B<-d libvirt-domain>"
22039 msgstr ""
22040
22041 # type: =item
22042 #. type: =item
22043 #: ../fish/guestfish.pod:196
22044 msgid "B<--domain libvirt-domain>"
22045 msgstr ""
22046
22047 # type: textblock
22048 #. type: textblock
22049 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
22050 msgid ""
22051 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
22052 "used, then any libvirt domain can be used.  However in write mode, only "
22053 "libvirt domains which are shut down can be named here."
22054 msgstr ""
22055
22056 # type: textblock
22057 #. type: textblock
22058 #: ../fish/guestfish.pod:202
22059 msgid ""
22060 "Using this flag is mostly equivalent to using the C<add-domain> command, "
22061 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
22062 "if the I<--format:...> flag was given."
22063 msgstr ""
22064
22065 # type: =item
22066 #. type: =item
22067 #: ../fish/guestfish.pod:206
22068 msgid "B<-D>"
22069 msgstr ""
22070
22071 # type: =item
22072 #. type: =item
22073 #: ../fish/guestfish.pod:208
22074 msgid "B<--no-dest-paths>"
22075 msgstr ""
22076
22077 # type: textblock
22078 #. type: textblock
22079 #: ../fish/guestfish.pod:210
22080 msgid ""
22081 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
22082 "to hit the tab key to complete paths on the guest filesystem, but this "
22083 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
22084 "allow this feature to be disabled."
22085 msgstr ""
22086
22087 # type: =item
22088 #. type: =item
22089 #: ../fish/guestfish.pod:215 ../fuse/guestmount.pod:118
22090 msgid "B<--echo-keys>"
22091 msgstr ""
22092
22093 # type: textblock
22094 #. type: textblock
22095 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
22096 msgid ""
22097 "When prompting for keys and passphrases, guestfish normally turns echoing "
22098 "off so you cannot see what you are typing.  If you are not worried about "
22099 "Tempest attacks and there is no one else in the room you can specify this "
22100 "flag to see what you are typing."
22101 msgstr ""
22102
22103 # type: =item
22104 #. type: =item
22105 #: ../fish/guestfish.pod:222
22106 msgid "B<-f file>"
22107 msgstr ""
22108
22109 # type: =item
22110 #. type: =item
22111 #: ../fish/guestfish.pod:224
22112 msgid "B<--file file>"
22113 msgstr ""
22114
22115 # type: textblock
22116 #. type: textblock
22117 #: ../fish/guestfish.pod:226
22118 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
22119 msgstr ""
22120
22121 # type: verbatim
22122 #. type: verbatim
22123 #: ../fish/guestfish.pod:229
22124 #, no-wrap
22125 msgid ""
22126 " #!/usr/bin/guestfish -f\n"
22127 "\n"
22128 msgstr ""
22129
22130 # type: =item
22131 #. type: =item
22132 #: ../fish/guestfish.pod:231
22133 msgid "B<--format=raw|qcow2|..>"
22134 msgstr ""
22135
22136 # type: =item
22137 #. type: =item
22138 #: ../fish/guestfish.pod:233
22139 msgid "B<--format>"
22140 msgstr ""
22141
22142 # type: textblock
22143 #. type: textblock
22144 #: ../fish/guestfish.pod:235 ../fuse/guestmount.pod:127
22145 msgid ""
22146 "The default for the I<-a> option is to auto-detect the format of the disk "
22147 "image.  Using this forces the disk format for I<-a> options which follow on "
22148 "the command line.  Using I<--format> with no argument switches back to auto-"
22149 "detection for subsequent I<-a> options."
22150 msgstr ""
22151
22152 # type: verbatim
22153 #. type: verbatim
22154 #: ../fish/guestfish.pod:242
22155 #, no-wrap
22156 msgid ""
22157 " guestfish --format=raw -a disk.img\n"
22158 "\n"
22159 msgstr ""
22160
22161 # type: textblock
22162 #. type: textblock
22163 #: ../fish/guestfish.pod:244
22164 msgid "forces raw format (no auto-detection) for C<disk.img>."
22165 msgstr ""
22166
22167 # type: verbatim
22168 #. type: verbatim
22169 #: ../fish/guestfish.pod:246
22170 #, no-wrap
22171 msgid ""
22172 " guestfish --format=raw -a disk.img --format -a another.img\n"
22173 "\n"
22174 msgstr ""
22175
22176 # type: textblock
22177 #. type: textblock
22178 #: ../fish/guestfish.pod:248
22179 msgid ""
22180 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
22181 "detection for C<another.img>."
22182 msgstr ""
22183
22184 # type: textblock
22185 #. type: textblock
22186 #: ../fish/guestfish.pod:251
22187 msgid ""
22188 "If you have untrusted raw-format guest disk images, you should use this "
22189 "option to specify the disk format.  This avoids a possible security problem "
22190 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
22191 msgstr ""
22192
22193 # type: =item
22194 #. type: =item
22195 #: ../fish/guestfish.pod:256
22196 msgid "B<-i>"
22197 msgstr ""
22198
22199 # type: =item
22200 #. type: =item
22201 #: ../fish/guestfish.pod:258
22202 msgid "B<--inspector>"
22203 msgstr ""
22204
22205 # type: textblock
22206 #. type: textblock
22207 #: ../fish/guestfish.pod:260 ../fuse/guestmount.pod:147
22208 msgid ""
22209 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
22210 "system and mount filesystems as they would be mounted on the real virtual "
22211 "machine."
22212 msgstr ""
22213
22214 # type: textblock
22215 #. type: textblock
22216 #: ../fish/guestfish.pod:264
22217 msgid "Typical usage is either:"
22218 msgstr ""
22219
22220 # type: verbatim
22221 #. type: verbatim
22222 #: ../fish/guestfish.pod:266
22223 #, no-wrap
22224 msgid ""
22225 " guestfish -d myguest -i\n"
22226 "\n"
22227 msgstr ""
22228
22229 # type: textblock
22230 #. type: textblock
22231 #: ../fish/guestfish.pod:268
22232 msgid "(for an inactive libvirt domain called I<myguest>), or:"
22233 msgstr ""
22234
22235 # type: verbatim
22236 #. type: verbatim
22237 #: ../fish/guestfish.pod:270
22238 #, no-wrap
22239 msgid ""
22240 " guestfish --ro -d myguest -i\n"
22241 "\n"
22242 msgstr ""
22243
22244 # type: textblock
22245 #. type: textblock
22246 #: ../fish/guestfish.pod:272
22247 msgid "(for active domains, readonly), or specify the block device directly:"
22248 msgstr ""
22249
22250 # type: verbatim
22251 #. type: verbatim
22252 #: ../fish/guestfish.pod:274
22253 #, no-wrap
22254 msgid ""
22255 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
22256 "\n"
22257 msgstr ""
22258
22259 # type: textblock
22260 #. type: textblock
22261 #: ../fish/guestfish.pod:276
22262 msgid ""
22263 "Note that the command line syntax changed slightly over older versions of "
22264 "guestfish.  You can still use the old syntax:"
22265 msgstr ""
22266
22267 # type: verbatim
22268 #. type: verbatim
22269 #: ../fish/guestfish.pod:279
22270 #, no-wrap
22271 msgid ""
22272 " guestfish [--ro] -i disk.img\n"
22273 "\n"
22274 msgstr ""
22275
22276 # type: verbatim
22277 #. type: verbatim
22278 #: ../fish/guestfish.pod:281
22279 #, no-wrap
22280 msgid ""
22281 " guestfish [--ro] -i libvirt-domain\n"
22282 "\n"
22283 msgstr ""
22284
22285 # type: textblock
22286 #. type: textblock
22287 #: ../fish/guestfish.pod:283
22288 msgid ""
22289 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
22290 "then using other commands to mount the filesystems that were found."
22291 msgstr ""
22292
22293 # type: =item
22294 #. type: =item
22295 #: ../fish/guestfish.pod:287 ../fuse/guestmount.pod:151
22296 msgid "B<--keys-from-stdin>"
22297 msgstr ""
22298
22299 # type: textblock
22300 #. type: textblock
22301 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
22302 msgid ""
22303 "Read key or passphrase parameters from stdin.  The default is to try to read "
22304 "passphrases from the user by opening C</dev/tty>."
22305 msgstr ""
22306
22307 # type: =item
22308 #. type: =item
22309 #: ../fish/guestfish.pod:292
22310 msgid "B<--listen>"
22311 msgstr ""
22312
22313 # type: textblock
22314 #. type: textblock
22315 #: ../fish/guestfish.pod:294
22316 msgid ""
22317 "Fork into the background and listen for remote commands.  See section L</"
22318 "REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
22319 msgstr ""
22320
22321 #. type: =item
22322 #: ../fish/guestfish.pod:297 ../fuse/guestmount.pod:156
22323 msgid "B<--live>"
22324 msgstr ""
22325
22326 #. type: textblock
22327 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
22328 msgid ""
22329 "Connect to a live virtual machine.  (Experimental, see L<guestfs(3)/"
22330 "ATTACHING TO RUNNING DAEMONS>)."
22331 msgstr ""
22332
22333 #. type: =item
22334 #: ../fish/guestfish.pod:302 ../fuse/guestmount.pod:161
22335 msgid "B<-m dev[:mountpoint[:options]]>"
22336 msgstr ""
22337
22338 #. type: =item
22339 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
22340 msgid "B<--mount dev[:mountpoint[:options]]>"
22341 msgstr ""
22342
22343 # type: textblock
22344 #. type: textblock
22345 #: ../fish/guestfish.pod:306
22346 msgid "Mount the named partition or logical volume on the given mountpoint."
22347 msgstr ""
22348
22349 # type: textblock
22350 #. type: textblock
22351 #: ../fish/guestfish.pod:308
22352 msgid "If the mountpoint is omitted, it defaults to C</>."
22353 msgstr ""
22354
22355 # type: textblock
22356 #. type: textblock
22357 #: ../fish/guestfish.pod:310
22358 msgid "You have to mount something on C</> before most commands will work."
22359 msgstr ""
22360
22361 # type: textblock
22362 #. type: textblock
22363 #: ../fish/guestfish.pod:312
22364 msgid ""
22365 "If any I<-m> or I<--mount> options are given, the guest is automatically "
22366 "launched."
22367 msgstr ""
22368
22369 # type: textblock
22370 #. type: textblock
22371 #: ../fish/guestfish.pod:315
22372 msgid ""
22373 "If you don't know what filesystems a disk image contains, you can either run "
22374 "guestfish without this option, then list the partitions, filesystems and LVs "
22375 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
22376 "commands), or you can use the L<virt-filesystems(1)> program."
22377 msgstr ""
22378
22379 #. type: textblock
22380 #: ../fish/guestfish.pod:321 ../fuse/guestmount.pod:171
22381 msgid ""
22382 "The third (and rarely used) part of the mount parameter is the list of mount "
22383 "options used to mount the underlying filesystem.  If this is not given, then "
22384 "the mount options are either the empty string or C<ro> (the latter if the "
22385 "I<--ro> flag is used).  By specifying the mount options, you override this "
22386 "default choice.  Probably the only time you would use this is to enable ACLs "
22387 "and/or extended attributes if the filesystem can support them:"
22388 msgstr ""
22389
22390 #. type: verbatim
22391 #: ../fish/guestfish.pod:329 ../fuse/guestmount.pod:179
22392 #, no-wrap
22393 msgid ""
22394 " -m /dev/sda1:/:acl,user_xattr\n"
22395 "\n"
22396 msgstr ""
22397
22398 #. type: textblock
22399 #: ../fish/guestfish.pod:331
22400 msgid "Using this flag is equivalent to using the C<mount-options> command."
22401 msgstr ""
22402
22403 # type: =item
22404 #. type: =item
22405 #: ../fish/guestfish.pod:333
22406 msgid "B<-n>"
22407 msgstr ""
22408
22409 # type: =item
22410 #. type: =item
22411 #: ../fish/guestfish.pod:335
22412 msgid "B<--no-sync>"
22413 msgstr ""
22414
22415 # type: textblock
22416 #. type: textblock
22417 #: ../fish/guestfish.pod:337
22418 msgid ""
22419 "Disable autosync.  This is enabled by default.  See the discussion of "
22420 "autosync in the L<guestfs(3)> manpage."
22421 msgstr ""
22422
22423 # type: =item
22424 #. type: =item
22425 #: ../fish/guestfish.pod:340
22426 msgid "B<-N type>"
22427 msgstr ""
22428
22429 # type: =item
22430 #. type: =item
22431 #: ../fish/guestfish.pod:342
22432 msgid "B<--new type>"
22433 msgstr ""
22434
22435 # type: =item
22436 #. type: =item
22437 #: ../fish/guestfish.pod:344
22438 msgid "B<-N help>"
22439 msgstr ""
22440
22441 # type: textblock
22442 #. type: textblock
22443 #: ../fish/guestfish.pod:346
22444 msgid ""
22445 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
22446 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
22447 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
22448 "IMAGES> below."
22449 msgstr ""
22450
22451 # type: =item
22452 #. type: =item
22453 #: ../fish/guestfish.pod:351
22454 msgid "B<--progress-bars>"
22455 msgstr ""
22456
22457 # type: textblock
22458 #. type: textblock
22459 #: ../fish/guestfish.pod:353
22460 msgid "Enable progress bars, even when guestfish is used non-interactively."
22461 msgstr ""
22462
22463 # type: textblock
22464 #. type: textblock
22465 #: ../fish/guestfish.pod:355
22466 msgid ""
22467 "Progress bars are enabled by default when guestfish is used as an "
22468 "interactive shell."
22469 msgstr ""
22470
22471 # type: =item
22472 #. type: =item
22473 #: ../fish/guestfish.pod:358
22474 msgid "B<--no-progress-bars>"
22475 msgstr ""
22476
22477 # type: textblock
22478 #. type: textblock
22479 #: ../fish/guestfish.pod:360
22480 msgid "Disable progress bars."
22481 msgstr ""
22482
22483 # type: =item
22484 #. type: =item
22485 #: ../fish/guestfish.pod:362
22486 msgid "B<--remote[=pid]>"
22487 msgstr ""
22488
22489 # type: textblock
22490 #. type: textblock
22491 #: ../fish/guestfish.pod:364
22492 msgid ""
22493 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
22494 "CONTROL GUESTFISH OVER A SOCKET> below."
22495 msgstr ""
22496
22497 # type: =item
22498 #. type: =item
22499 #: ../fish/guestfish.pod:367
22500 msgid "B<-r>"
22501 msgstr ""
22502
22503 # type: =item
22504 #. type: =item
22505 #: ../fish/guestfish.pod:369
22506 msgid "B<--ro>"
22507 msgstr ""
22508
22509 # type: textblock
22510 #. type: textblock
22511 #: ../fish/guestfish.pod:371
22512 msgid ""
22513 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
22514 "mounts are done read-only."
22515 msgstr ""
22516
22517 # type: textblock
22518 #. type: textblock
22519 #: ../fish/guestfish.pod:374
22520 msgid ""
22521 "The option must always be used if the disk image or virtual machine might be "
22522 "running, and is generally recommended in cases where you don't need write "
22523 "access to the disk."
22524 msgstr ""
22525
22526 # type: textblock
22527 #. type: textblock
22528 #: ../fish/guestfish.pod:378
22529 msgid ""
22530 "Note that prepared disk images created with I<-N> are not affected by this "
22531 "option.  Also commands like C<add> are not affected - you have to specify "
22532 "the C<readonly:true> option explicitly if you need it."
22533 msgstr ""
22534
22535 # type: textblock
22536 #. type: textblock
22537 #: ../fish/guestfish.pod:382
22538 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
22539 msgstr ""
22540
22541 # type: =item
22542 #. type: =item
22543 #: ../fish/guestfish.pod:384 ../fuse/guestmount.pod:235
22544 msgid "B<--selinux>"
22545 msgstr ""
22546
22547 # type: textblock
22548 #. type: textblock
22549 #: ../fish/guestfish.pod:386
22550 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
22551 msgstr ""
22552
22553 # type: =item
22554 #. type: =item
22555 #: ../fish/guestfish.pod:388
22556 msgid "B<-v>"
22557 msgstr ""
22558
22559 # type: =item
22560 #. type: =item
22561 #: ../fish/guestfish.pod:390
22562 msgid "B<--verbose>"
22563 msgstr ""
22564
22565 # type: textblock
22566 #. type: textblock
22567 #: ../fish/guestfish.pod:392
22568 msgid ""
22569 "Enable very verbose messages.  This is particularly useful if you find a bug."
22570 msgstr ""
22571
22572 # type: =item
22573 #. type: =item
22574 #: ../fish/guestfish.pod:395
22575 msgid "B<-V>"
22576 msgstr ""
22577
22578 # type: =item
22579 #. type: =item
22580 #: ../fish/guestfish.pod:397 ../tools/virt-edit.pl:97
22581 #: ../tools/virt-win-reg.pl:112 ../tools/virt-list-filesystems.pl:69
22582 #: ../tools/virt-tar.pl:119 ../tools/virt-make-fs.pl:169
22583 #: ../tools/virt-list-partitions.pl:70
22584 msgid "B<--version>"
22585 msgstr ""
22586
22587 # type: textblock
22588 #. type: textblock
22589 #: ../fish/guestfish.pod:399
22590 msgid "Display the guestfish / libguestfs version number and exit."
22591 msgstr ""
22592
22593 # type: =item
22594 #. type: =item
22595 #: ../fish/guestfish.pod:401
22596 msgid "B<-w>"
22597 msgstr ""
22598
22599 # type: =item
22600 #. type: =item
22601 #: ../fish/guestfish.pod:403
22602 msgid "B<--rw>"
22603 msgstr ""
22604
22605 #. type: textblock
22606 #: ../fish/guestfish.pod:405 ../fuse/guestmount.pod:249
22607 msgid ""
22608 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
22609 "mounts are done read-write."
22610 msgstr ""
22611
22612 #. type: textblock
22613 #: ../fish/guestfish.pod:408
22614 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
22615 msgstr ""
22616
22617 # type: =item
22618 #. type: =item
22619 #: ../fish/guestfish.pod:410
22620 msgid "B<-x>"
22621 msgstr ""
22622
22623 # type: textblock
22624 #. type: textblock
22625 #: ../fish/guestfish.pod:412
22626 msgid "Echo each command before executing it."
22627 msgstr ""
22628
22629 # type: =head1
22630 #. type: =head1
22631 #: ../fish/guestfish.pod:416
22632 msgid "COMMANDS ON COMMAND LINE"
22633 msgstr ""
22634
22635 # type: textblock
22636 #. type: textblock
22637 #: ../fish/guestfish.pod:418
22638 msgid ""
22639 "Any additional (non-option) arguments are treated as commands to execute."
22640 msgstr ""
22641
22642 # type: textblock
22643 #. type: textblock
22644 #: ../fish/guestfish.pod:421
22645 msgid ""
22646 "Commands to execute should be separated by a colon (C<:>), where the colon "
22647 "is a separate parameter.  Thus:"
22648 msgstr ""
22649
22650 # type: verbatim
22651 #. type: verbatim
22652 #: ../fish/guestfish.pod:424
22653 #, no-wrap
22654 msgid ""
22655 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
22656 "\n"
22657 msgstr ""
22658
22659 # type: textblock
22660 #. type: textblock
22661 #: ../fish/guestfish.pod:426
22662 msgid ""
22663 "If there are no additional arguments, then we enter a shell, either an "
22664 "interactive shell with a prompt (if the input is a terminal) or a non-"
22665 "interactive shell."
22666 msgstr ""
22667
22668 # type: textblock
22669 #. type: textblock
22670 #: ../fish/guestfish.pod:430
22671 msgid ""
22672 "In either command line mode or non-interactive shell, the first command that "
22673 "gives an error causes the whole shell to exit.  In interactive mode (with a "
22674 "prompt) if a command fails, you can continue to enter commands."
22675 msgstr ""
22676
22677 # type: =head1
22678 #. type: =head1
22679 #: ../fish/guestfish.pod:435
22680 msgid "USING launch (OR run)"
22681 msgstr ""
22682
22683 # type: textblock
22684 #. type: textblock
22685 #: ../fish/guestfish.pod:437
22686 msgid ""
22687 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
22688 "then launch it, then mount any disks you need, and finally issue actions/"
22689 "commands.  So the general order of the day is:"
22690 msgstr ""
22691
22692 # type: textblock
22693 #. type: textblock
22694 #: ../fish/guestfish.pod:445
22695 msgid "add or -a/--add"
22696 msgstr ""
22697
22698 # type: textblock
22699 #. type: textblock
22700 #: ../fish/guestfish.pod:449
22701 msgid "launch (aka run)"
22702 msgstr ""
22703
22704 # type: textblock
22705 #. type: textblock
22706 #: ../fish/guestfish.pod:453
22707 msgid "mount or -m/--mount"
22708 msgstr ""
22709
22710 # type: textblock
22711 #. type: textblock
22712 #: ../fish/guestfish.pod:457
22713 msgid "any other commands"
22714 msgstr ""
22715
22716 # type: textblock
22717 #. type: textblock
22718 #: ../fish/guestfish.pod:461
22719 msgid ""
22720 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
22721 "guest before mounting or performing any other commands."
22722 msgstr ""
22723
22724 # type: textblock
22725 #. type: textblock
22726 #: ../fish/guestfish.pod:464
22727 msgid ""
22728 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
22729 "I<--new> options were given then C<run> is done automatically, simply "
22730 "because guestfish can't perform the action you asked for without doing this."
22731 msgstr ""
22732
22733 # type: =head1
22734 #. type: =head1
22735 #: ../fish/guestfish.pod:469
22736 msgid "OPENING DISKS FOR READ AND WRITE"
22737 msgstr ""
22738
22739 #. type: textblock
22740 #: ../fish/guestfish.pod:471
22741 msgid ""
22742 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
22743 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
22744 "I<-i> and I<-m> open disk images read-only or for writing."
22745 msgstr ""
22746
22747 #. type: textblock
22748 #: ../fish/guestfish.pod:476
22749 msgid ""
22750 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
22751 "opening disk images supplied on the command line for write.  To open a disk "
22752 "image read-only you have to do I<-a image --ro>."
22753 msgstr ""
22754
22755 # type: textblock
22756 #. type: textblock
22757 #: ../fish/guestfish.pod:480
22758 msgid ""
22759 "This matters: If you accidentally open a live VM disk image writable then "
22760 "you will cause irreversible disk corruption."
22761 msgstr ""
22762
22763 #. type: textblock
22764 #: ../fish/guestfish.pod:483
22765 msgid ""
22766 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
22767 "images will be opened read-only.  You will have to either specify "
22768 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
22769 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
22770 "access for disk images specified by those other command line options."
22771 msgstr ""
22772
22773 #. type: textblock
22774 #: ../fish/guestfish.pod:490
22775 msgid ""
22776 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
22777 "which does nothing (it is already the default).  However it is highly "
22778 "recommended that you use this option to indicate that you need write access, "
22779 "and prepare your scripts for the day when this option will be required for "
22780 "write access."
22781 msgstr ""
22782
22783 # type: textblock
22784 #. type: textblock
22785 #: ../fish/guestfish.pod:496
22786 msgid ""
22787 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
22788 "other libguestfs program apart from guestfish and guestmount."
22789 msgstr ""
22790
22791 # type: =head1
22792 #. type: =head1
22793 #: ../fish/guestfish.pod:499
22794 msgid "QUOTING"
22795 msgstr ""
22796
22797 # type: textblock
22798 #. type: textblock
22799 #: ../fish/guestfish.pod:501
22800 msgid ""
22801 "You can quote ordinary parameters using either single or double quotes.  For "
22802 "example:"
22803 msgstr ""
22804
22805 # type: verbatim
22806 #. type: verbatim
22807 #: ../fish/guestfish.pod:504
22808 #, no-wrap
22809 msgid ""
22810 " add \"file with a space.img\"\n"
22811 "\n"
22812 msgstr ""
22813
22814 # type: verbatim
22815 #. type: verbatim
22816 #: ../fish/guestfish.pod:506
22817 #, no-wrap
22818 msgid ""
22819 " rm '/file name'\n"
22820 "\n"
22821 msgstr ""
22822
22823 # type: verbatim
22824 #. type: verbatim
22825 #: ../fish/guestfish.pod:508
22826 #, no-wrap
22827 msgid ""
22828 " rm '/\"'\n"
22829 "\n"
22830 msgstr ""
22831
22832 # type: textblock
22833 #. type: textblock
22834 #: ../fish/guestfish.pod:510
22835 msgid ""
22836 "A few commands require a list of strings to be passed.  For these, use a "
22837 "whitespace-separated list, enclosed in quotes.  Strings containing "
22838 "whitespace to be passed through must be enclosed in single quotes.  A "
22839 "literal single quote must be escaped with a backslash."
22840 msgstr ""
22841
22842 # type: verbatim
22843 #. type: verbatim
22844 #: ../fish/guestfish.pod:515
22845 #, no-wrap
22846 msgid ""
22847 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
22848 " command \"/bin/echo 'foo      bar'\"\n"
22849 " command \"/bin/echo \\'foo\\'\"\n"
22850 "\n"
22851 msgstr ""
22852
22853 # type: =head1
22854 #. type: =head1
22855 #: ../fish/guestfish.pod:519
22856 msgid "OPTIONAL ARGUMENTS"
22857 msgstr ""
22858
22859 # type: textblock
22860 #. type: textblock
22861 #: ../fish/guestfish.pod:521
22862 msgid ""
22863 "Some commands take optional arguments.  These arguments appear in this "
22864 "documentation as C<[argname:..]>.  You can use them as in these examples:"
22865 msgstr ""
22866
22867 # type: verbatim
22868 #. type: verbatim
22869 #: ../fish/guestfish.pod:525
22870 #, no-wrap
22871 msgid ""
22872 " add-drive-opts filename\n"
22873 "\n"
22874 msgstr ""
22875
22876 # type: verbatim
22877 #. type: verbatim
22878 #: ../fish/guestfish.pod:527
22879 #, no-wrap
22880 msgid ""
22881 " add-drive-opts filename readonly:true\n"
22882 "\n"
22883 msgstr ""
22884
22885 # type: verbatim
22886 #. type: verbatim
22887 #: ../fish/guestfish.pod:529
22888 #, no-wrap
22889 msgid ""
22890 " add-drive-opts filename format:qcow2 readonly:false\n"
22891 "\n"
22892 msgstr ""
22893
22894 # type: textblock
22895 #. type: textblock
22896 #: ../fish/guestfish.pod:531
22897 msgid ""
22898 "Each optional argument can appear at most once.  All optional arguments must "
22899 "appear after the required ones."
22900 msgstr ""
22901
22902 # type: =head1
22903 #. type: =head1
22904 #: ../fish/guestfish.pod:534
22905 msgid "NUMBERS"
22906 msgstr ""
22907
22908 # type: textblock
22909 #. type: textblock
22910 #: ../fish/guestfish.pod:536
22911 msgid ""
22912 "This section applies to all commands which can take integers as parameters."
22913 msgstr ""
22914
22915 # type: =head2
22916 #. type: =head2
22917 #: ../fish/guestfish.pod:539
22918 msgid "SIZE SUFFIX"
22919 msgstr ""
22920
22921 # type: textblock
22922 #. type: textblock
22923 #: ../fish/guestfish.pod:541
22924 msgid ""
22925 "When the command takes a parameter measured in bytes, you can use one of the "
22926 "following suffixes to specify kilobytes, megabytes and larger sizes:"
22927 msgstr ""
22928
22929 # type: =item
22930 #. type: =item
22931 #: ../fish/guestfish.pod:547
22932 msgid "B<k> or B<K> or B<KiB>"
22933 msgstr ""
22934
22935 # type: textblock
22936 #. type: textblock
22937 #: ../fish/guestfish.pod:549
22938 msgid "The size in kilobytes (multiplied by 1024)."
22939 msgstr ""
22940
22941 # type: =item
22942 #. type: =item
22943 #: ../fish/guestfish.pod:551
22944 msgid "B<KB>"
22945 msgstr ""
22946
22947 # type: textblock
22948 #. type: textblock
22949 #: ../fish/guestfish.pod:553
22950 msgid "The size in SI 1000 byte units."
22951 msgstr ""
22952
22953 # type: =item
22954 #. type: =item
22955 #: ../fish/guestfish.pod:555
22956 msgid "B<M> or B<MiB>"
22957 msgstr ""
22958
22959 # type: textblock
22960 #. type: textblock
22961 #: ../fish/guestfish.pod:557
22962 msgid "The size in megabytes (multiplied by 1048576)."
22963 msgstr ""
22964
22965 # type: =item
22966 #. type: =item
22967 #: ../fish/guestfish.pod:559
22968 msgid "B<MB>"
22969 msgstr ""
22970
22971 # type: textblock
22972 #. type: textblock
22973 #: ../fish/guestfish.pod:561
22974 msgid "The size in SI 1000000 byte units."
22975 msgstr ""
22976
22977 # type: =item
22978 #. type: =item
22979 #: ../fish/guestfish.pod:563
22980 msgid "B<G> or B<GiB>"
22981 msgstr ""
22982
22983 # type: textblock
22984 #. type: textblock
22985 #: ../fish/guestfish.pod:565
22986 msgid "The size in gigabytes (multiplied by 2**30)."
22987 msgstr ""
22988
22989 # type: =item
22990 #. type: =item
22991 #: ../fish/guestfish.pod:567
22992 msgid "B<GB>"
22993 msgstr ""
22994
22995 # type: textblock
22996 #. type: textblock
22997 #: ../fish/guestfish.pod:569
22998 msgid "The size in SI 10**9 byte units."
22999 msgstr ""
23000
23001 # type: =item
23002 #. type: =item
23003 #: ../fish/guestfish.pod:571
23004 msgid "B<T> or B<TiB>"
23005 msgstr ""
23006
23007 # type: textblock
23008 #. type: textblock
23009 #: ../fish/guestfish.pod:573
23010 msgid "The size in terabytes (multiplied by 2**40)."
23011 msgstr ""
23012
23013 # type: =item
23014 #. type: =item
23015 #: ../fish/guestfish.pod:575
23016 msgid "B<TB>"
23017 msgstr ""
23018
23019 # type: textblock
23020 #. type: textblock
23021 #: ../fish/guestfish.pod:577
23022 msgid "The size in SI 10**12 byte units."
23023 msgstr ""
23024
23025 # type: =item
23026 #. type: =item
23027 #: ../fish/guestfish.pod:579
23028 msgid "B<P> or B<PiB>"
23029 msgstr ""
23030
23031 # type: textblock
23032 #. type: textblock
23033 #: ../fish/guestfish.pod:581
23034 msgid "The size in petabytes (multiplied by 2**50)."
23035 msgstr ""
23036
23037 # type: =item
23038 #. type: =item
23039 #: ../fish/guestfish.pod:583
23040 msgid "B<PB>"
23041 msgstr ""
23042
23043 # type: textblock
23044 #. type: textblock
23045 #: ../fish/guestfish.pod:585
23046 msgid "The size in SI 10**15 byte units."
23047 msgstr ""
23048
23049 # type: =item
23050 #. type: =item
23051 #: ../fish/guestfish.pod:587
23052 msgid "B<E> or B<EiB>"
23053 msgstr ""
23054
23055 # type: textblock
23056 #. type: textblock
23057 #: ../fish/guestfish.pod:589
23058 msgid "The size in exabytes (multiplied by 2**60)."
23059 msgstr ""
23060
23061 # type: =item
23062 #. type: =item
23063 #: ../fish/guestfish.pod:591
23064 msgid "B<EB>"
23065 msgstr ""
23066
23067 # type: textblock
23068 #. type: textblock
23069 #: ../fish/guestfish.pod:593
23070 msgid "The size in SI 10**18 byte units."
23071 msgstr ""
23072
23073 # type: =item
23074 #. type: =item
23075 #: ../fish/guestfish.pod:595
23076 msgid "B<Z> or B<ZiB>"
23077 msgstr ""
23078
23079 # type: textblock
23080 #. type: textblock
23081 #: ../fish/guestfish.pod:597
23082 msgid "The size in zettabytes (multiplied by 2**70)."
23083 msgstr ""
23084
23085 # type: =item
23086 #. type: =item
23087 #: ../fish/guestfish.pod:599
23088 msgid "B<ZB>"
23089 msgstr ""
23090
23091 # type: textblock
23092 #. type: textblock
23093 #: ../fish/guestfish.pod:601
23094 msgid "The size in SI 10**21 byte units."
23095 msgstr ""
23096
23097 # type: =item
23098 #. type: =item
23099 #: ../fish/guestfish.pod:603
23100 msgid "B<Y> or B<YiB>"
23101 msgstr ""
23102
23103 # type: textblock
23104 #. type: textblock
23105 #: ../fish/guestfish.pod:605
23106 msgid "The size in yottabytes (multiplied by 2**80)."
23107 msgstr ""
23108
23109 # type: =item
23110 #. type: =item
23111 #: ../fish/guestfish.pod:607
23112 msgid "B<YB>"
23113 msgstr ""
23114
23115 # type: textblock
23116 #. type: textblock
23117 #: ../fish/guestfish.pod:609
23118 msgid "The size in SI 10**24 byte units."
23119 msgstr ""
23120
23121 # type: verbatim
23122 #. type: verbatim
23123 #: ../fish/guestfish.pod:615
23124 #, no-wrap
23125 msgid ""
23126 " truncate-size /file 1G\n"
23127 "\n"
23128 msgstr ""
23129
23130 # type: textblock
23131 #. type: textblock
23132 #: ../fish/guestfish.pod:617
23133 msgid "would truncate the file to 1 gigabyte."
23134 msgstr ""
23135
23136 # type: textblock
23137 #. type: textblock
23138 #: ../fish/guestfish.pod:619
23139 msgid ""
23140 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
23141 "the parameter to L</memsize> is specified in megabytes already).  Adding a "
23142 "suffix will probably not do what you expect."
23143 msgstr ""
23144
23145 # type: =head2
23146 #. type: =head2
23147 #: ../fish/guestfish.pod:623
23148 msgid "OCTAL AND HEXADECIMAL NUMBERS"
23149 msgstr ""
23150
23151 # type: textblock
23152 #. type: textblock
23153 #: ../fish/guestfish.pod:625
23154 msgid ""
23155 "For specifying the radix (base) use the C convention: C<0> to prefix an "
23156 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
23157 msgstr ""
23158
23159 # type: verbatim
23160 #. type: verbatim
23161 #: ../fish/guestfish.pod:628
23162 #, no-wrap
23163 msgid ""
23164 " 1234      decimal number 1234\n"
23165 " 02322     octal number, equivalent to decimal 1234\n"
23166 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
23167 "\n"
23168 msgstr ""
23169
23170 # type: textblock
23171 #. type: textblock
23172 #: ../fish/guestfish.pod:632
23173 msgid ""
23174 "When using the C<chmod> command, you almost always want to specify an octal "
23175 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
23176 "L<chmod(1)> program):"
23177 msgstr ""
23178
23179 # type: verbatim
23180 #. type: verbatim
23181 #: ../fish/guestfish.pod:636
23182 #, no-wrap
23183 msgid ""
23184 " chmod 0777 /public  # OK\n"
23185 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
23186 "\n"
23187 msgstr ""
23188
23189 # type: textblock
23190 #. type: textblock
23191 #: ../fish/guestfish.pod:639
23192 msgid ""
23193 "Commands that return numbers usually print them in decimal, but some "
23194 "commands print numbers in other radices (eg. C<umask> prints the mode in "
23195 "octal, preceeded by C<0>)."
23196 msgstr ""
23197
23198 # type: =head1
23199 #. type: =head1
23200 #: ../fish/guestfish.pod:643
23201 msgid "WILDCARDS AND GLOBBING"
23202 msgstr ""
23203
23204 # type: textblock
23205 #. type: textblock
23206 #: ../fish/guestfish.pod:645
23207 msgid ""
23208 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
23209 "(globbing) by default.  So for example the following will not do what you "
23210 "expect:"
23211 msgstr ""
23212
23213 # type: verbatim
23214 #. type: verbatim
23215 #: ../fish/guestfish.pod:649
23216 #, no-wrap
23217 msgid ""
23218 " rm-rf /home/*\n"
23219 "\n"
23220 msgstr ""
23221
23222 # type: textblock
23223 #. type: textblock
23224 #: ../fish/guestfish.pod:651
23225 msgid ""
23226 "Assuming you don't have a directory called literally C</home/*> then the "
23227 "above command will return an error."
23228 msgstr ""
23229
23230 # type: textblock
23231 #. type: textblock
23232 #: ../fish/guestfish.pod:654
23233 msgid "To perform wildcard expansion, use the C<glob> command."
23234 msgstr ""
23235
23236 # type: verbatim
23237 #. type: verbatim
23238 #: ../fish/guestfish.pod:656
23239 #, no-wrap
23240 msgid ""
23241 " glob rm-rf /home/*\n"
23242 "\n"
23243 msgstr ""
23244
23245 # type: textblock
23246 #. type: textblock
23247 #: ../fish/guestfish.pod:658
23248 msgid ""
23249 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
23250 "many times), equivalent to:"
23251 msgstr ""
23252
23253 # type: verbatim
23254 #. type: verbatim
23255 #: ../fish/guestfish.pod:661
23256 #, no-wrap
23257 msgid ""
23258 " rm-rf /home/jim\n"
23259 " rm-rf /home/joe\n"
23260 " rm-rf /home/mary\n"
23261 "\n"
23262 msgstr ""
23263
23264 # type: textblock
23265 #. type: textblock
23266 #: ../fish/guestfish.pod:665
23267 msgid "C<glob> only works on simple guest paths and not on device names."
23268 msgstr ""
23269
23270 # type: textblock
23271 #. type: textblock
23272 #: ../fish/guestfish.pod:667
23273 msgid ""
23274 "If you have several parameters, each containing a wildcard, then glob will "
23275 "perform a Cartesian product."
23276 msgstr ""
23277
23278 # type: =head1
23279 #. type: =head1
23280 #: ../fish/guestfish.pod:670
23281 msgid "COMMENTS"
23282 msgstr ""
23283
23284 # type: textblock
23285 #. type: textblock
23286 #: ../fish/guestfish.pod:672
23287 msgid ""
23288 "Any line which starts with a I<#> character is treated as a comment and "
23289 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
23290 "a command.  For example:"
23291 msgstr ""
23292
23293 # type: verbatim
23294 #. type: verbatim
23295 #: ../fish/guestfish.pod:676
23296 #, no-wrap
23297 msgid ""
23298 " # this is a comment\n"
23299 "         # this is a comment\n"
23300 " foo # NOT a comment\n"
23301 "\n"
23302 msgstr ""
23303
23304 # type: textblock
23305 #. type: textblock
23306 #: ../fish/guestfish.pod:680
23307 msgid "Blank lines are also ignored."
23308 msgstr ""
23309
23310 # type: =head1
23311 #. type: =head1
23312 #: ../fish/guestfish.pod:682
23313 msgid "RUNNING COMMANDS LOCALLY"
23314 msgstr ""
23315
23316 # type: textblock
23317 #. type: textblock
23318 #: ../fish/guestfish.pod:684
23319 msgid ""
23320 "Any line which starts with a I<!> character is treated as a command sent to "
23321 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
23322 msgstr ""
23323
23324 # type: verbatim
23325 #. type: verbatim
23326 #: ../fish/guestfish.pod:688
23327 #, no-wrap
23328 msgid ""
23329 " !mkdir local\n"
23330 " tgz-out /remote local/remote-data.tar.gz\n"
23331 "\n"
23332 msgstr ""
23333
23334 # type: textblock
23335 #. type: textblock
23336 #: ../fish/guestfish.pod:691
23337 msgid ""
23338 "will create a directory C<local> on the host, and then export the contents "
23339 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
23340 "(See C<tgz-out>)."
23341 msgstr ""
23342
23343 # type: textblock
23344 #. type: textblock
23345 #: ../fish/guestfish.pod:695
23346 msgid ""
23347 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
23348 "effect, due to the way that subprocesses work in Unix."
23349 msgstr ""
23350
23351 #. type: =head2
23352 #: ../fish/guestfish.pod:698
23353 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
23354 msgstr ""
23355
23356 #. type: textblock
23357 #: ../fish/guestfish.pod:700
23358 msgid ""
23359 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
23360 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
23361 "and executed as guestfish commands."
23362 msgstr ""
23363
23364 #. type: textblock
23365 #: ../fish/guestfish.pod:704
23366 msgid ""
23367 "Thus you can use shell script to construct arbitrary guestfish commands "
23368 "which are then parsed by guestfish."
23369 msgstr ""
23370
23371 #. type: textblock
23372 #: ../fish/guestfish.pod:707
23373 msgid ""
23374 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
23375 "through C</foo.100>) using guestfish commands alone.  However this is simple "
23376 "if we use a shell script to create the guestfish commands for us:"
23377 msgstr ""
23378
23379 #. type: verbatim
23380 #: ../fish/guestfish.pod:712
23381 #, no-wrap
23382 msgid ""
23383 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
23384 "\n"
23385 msgstr ""
23386
23387 #. type: textblock
23388 #: ../fish/guestfish.pod:714
23389 msgid "or with names like C</foo.001>:"
23390 msgstr ""
23391
23392 #. type: verbatim
23393 #: ../fish/guestfish.pod:716
23394 #, no-wrap
23395 msgid ""
23396 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
23397 "\n"
23398 msgstr ""
23399
23400 #. type: textblock
23401 #: ../fish/guestfish.pod:718
23402 msgid ""
23403 "When using guestfish interactively it can be helpful to just run the shell "
23404 "script first (ie. remove the initial C<E<lt>> character so it is just an "
23405 "ordinary I<!> local command), see what guestfish commands it would run, and "
23406 "when you are happy with those prepend the C<E<lt>> character to run the "
23407 "guestfish commands for real."
23408 msgstr ""
23409
23410 # type: =head1
23411 #. type: =head1
23412 #: ../fish/guestfish.pod:724
23413 msgid "PIPES"
23414 msgstr ""
23415
23416 # type: textblock
23417 #. type: textblock
23418 #: ../fish/guestfish.pod:726
23419 msgid ""
23420 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
23421 "command (a guestfish command) to the second command (any host command).  For "
23422 "example:"
23423 msgstr ""
23424
23425 # type: verbatim
23426 #. type: verbatim
23427 #: ../fish/guestfish.pod:730
23428 #, no-wrap
23429 msgid ""
23430 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
23431 "\n"
23432 msgstr ""
23433
23434 # type: textblock
23435 #. type: textblock
23436 #: ../fish/guestfish.pod:732
23437 msgid ""
23438 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
23439 "program).  The above command would list all accounts in the guest filesystem "
23440 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
23441 msgstr ""
23442
23443 # type: verbatim
23444 #. type: verbatim
23445 #: ../fish/guestfish.pod:737
23446 #, no-wrap
23447 msgid ""
23448 " hexdump /bin/ls | head\n"
23449 " list-devices | tail -1\n"
23450 " tgz-out / - | tar ztf -\n"
23451 "\n"
23452 msgstr ""
23453
23454 # type: textblock
23455 #. type: textblock
23456 #: ../fish/guestfish.pod:741
23457 msgid ""
23458 "The space before the pipe symbol is required, any space after the pipe "
23459 "symbol is optional.  Everything after the pipe symbol is just passed "
23460 "straight to the host shell, so it can contain redirections, globs and "
23461 "anything else that makes sense on the host side."
23462 msgstr ""
23463
23464 # type: textblock
23465 #. type: textblock
23466 #: ../fish/guestfish.pod:746
23467 msgid ""
23468 "To use a literal argument which begins with a pipe symbol, you have to quote "
23469 "it, eg:"
23470 msgstr ""
23471
23472 # type: verbatim
23473 #. type: verbatim
23474 #: ../fish/guestfish.pod:749
23475 #, no-wrap
23476 msgid ""
23477 " echo \"|\"\n"
23478 "\n"
23479 msgstr ""
23480
23481 # type: =head1
23482 #. type: =head1
23483 #: ../fish/guestfish.pod:751
23484 msgid "HOME DIRECTORIES"
23485 msgstr ""
23486
23487 # type: textblock
23488 #. type: textblock
23489 #: ../fish/guestfish.pod:753
23490 msgid ""
23491 "If a parameter starts with the character C<~> then the tilde may be expanded "
23492 "as a home directory path (either C<~> for the current user's home directory, "
23493 "or C<~user> for another user)."
23494 msgstr ""
23495
23496 # type: textblock
23497 #. type: textblock
23498 #: ../fish/guestfish.pod:757
23499 msgid ""
23500 "Note that home directory expansion happens for users known I<on the host>, "
23501 "not in the guest filesystem."
23502 msgstr ""
23503
23504 # type: textblock
23505 #. type: textblock
23506 #: ../fish/guestfish.pod:760
23507 msgid ""
23508 "To use a literal argument which begins with a tilde, you have to quote it, "
23509 "eg:"
23510 msgstr ""
23511
23512 # type: verbatim
23513 #. type: verbatim
23514 #: ../fish/guestfish.pod:763
23515 #, no-wrap
23516 msgid ""
23517 " echo \"~\"\n"
23518 "\n"
23519 msgstr ""
23520
23521 # type: textblock
23522 #. type: textblock
23523 #: ../fish/guestfish.pod:767
23524 msgid ""
23525 "Libguestfs has some support for Linux guests encrypted according to the "
23526 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
23527 "disk encryption systems used by modern Linux guests.  Currently only LVM-on-"
23528 "LUKS is supported."
23529 msgstr ""
23530
23531 # type: textblock
23532 #. type: textblock
23533 #: ../fish/guestfish.pod:772
23534 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
23535 msgstr ""
23536
23537 # type: verbatim
23538 #. type: verbatim
23539 #: ../fish/guestfish.pod:774
23540 #, no-wrap
23541 msgid ""
23542 " ><fs> vfs-type /dev/sda2\n"
23543 " crypto_LUKS\n"
23544 "\n"
23545 msgstr ""
23546
23547 # type: textblock
23548 #. type: textblock
23549 #: ../fish/guestfish.pod:777
23550 msgid ""
23551 "Then open those devices using L</luks-open>.  This creates a device-mapper "
23552 "device called C</dev/mapper/luksdev>."
23553 msgstr ""
23554
23555 # type: verbatim
23556 #. type: verbatim
23557 #: ../fish/guestfish.pod:780
23558 #, no-wrap
23559 msgid ""
23560 " ><fs> luks-open /dev/sda2 luksdev\n"
23561 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
23562 "\n"
23563 msgstr ""
23564
23565 # type: textblock
23566 #. type: textblock
23567 #: ../fish/guestfish.pod:783
23568 msgid ""
23569 "Finally you have to tell LVM to scan for volume groups on the newly created "
23570 "mapper device:"
23571 msgstr ""
23572
23573 # type: verbatim
23574 #. type: verbatim
23575 #: ../fish/guestfish.pod:786
23576 #, no-wrap
23577 msgid ""
23578 " vgscan\n"
23579 " vg-activate-all true\n"
23580 "\n"
23581 msgstr ""
23582
23583 # type: textblock
23584 #. type: textblock
23585 #: ../fish/guestfish.pod:789
23586 msgid "The logical volume(s) can now be mounted in the usual way."
23587 msgstr ""
23588
23589 # type: textblock
23590 #. type: textblock
23591 #: ../fish/guestfish.pod:791
23592 msgid ""
23593 "Before closing a LUKS device you must unmount any logical volumes on it and "
23594 "deactivate the volume groups by calling C<vg-activate false VG> on each "
23595 "one.  Then you can close the mapper device:"
23596 msgstr ""
23597
23598 # type: verbatim
23599 #. type: verbatim
23600 #: ../fish/guestfish.pod:795
23601 #, no-wrap
23602 msgid ""
23603 " vg-activate false /dev/VG\n"
23604 " luks-close /dev/mapper/luksdev\n"
23605 "\n"
23606 msgstr ""
23607
23608 # type: =head1
23609 #. type: =head1
23610 #: ../fish/guestfish.pod:798 ../tools/virt-edit.pl:342
23611 msgid "WINDOWS PATHS"
23612 msgstr ""
23613
23614 #. type: textblock
23615 #: ../fish/guestfish.pod:800
23616 msgid ""
23617 "If a path is prefixed with C<win:> then you can use Windows-style drive "
23618 "letters and paths (with some limitations).  The following commands are "
23619 "equivalent:"
23620 msgstr ""
23621
23622 # type: verbatim
23623 #. type: verbatim
23624 #: ../fish/guestfish.pod:804
23625 #, no-wrap
23626 msgid ""
23627 " file /WINDOWS/system32/config/system.LOG\n"
23628 "\n"
23629 msgstr ""
23630
23631 # type: verbatim
23632 #. type: verbatim
23633 #: ../fish/guestfish.pod:806
23634 #, no-wrap
23635 msgid ""
23636 " file win:\\windows\\system32\\config\\system.log\n"
23637 "\n"
23638 msgstr ""
23639
23640 #. type: verbatim
23641 #: ../fish/guestfish.pod:808
23642 #, no-wrap
23643 msgid ""
23644 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
23645 "\n"
23646 msgstr ""
23647
23648 #. type: textblock
23649 #: ../fish/guestfish.pod:810
23650 msgid ""
23651 "The parameter is rewritten \"behind the scenes\" by looking up the position "
23652 "where the drive is mounted, prepending that to the path, changing all "
23653 "backslash characters to forward slash, then resolving the result using L</"
23654 "case-sensitive-path>.  For example if the E: drive was mounted on C</e> then "
23655 "the parameter might be rewritten like this:"
23656 msgstr ""
23657
23658 #. type: verbatim
23659 #: ../fish/guestfish.pod:816
23660 #, no-wrap
23661 msgid ""
23662 " win:e:\\foo\\bar => /e/FOO/bar\n"
23663 "\n"
23664 msgstr ""
23665
23666 #. type: textblock
23667 #: ../fish/guestfish.pod:818
23668 msgid "This only works in argument positions that expect a path."
23669 msgstr ""
23670
23671 # type: =head1
23672 #. type: =head1
23673 #: ../fish/guestfish.pod:820
23674 msgid "UPLOADING AND DOWNLOADING FILES"
23675 msgstr ""
23676
23677 # type: textblock
23678 #. type: textblock
23679 #: ../fish/guestfish.pod:822
23680 msgid ""
23681 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
23682 "others which upload from or download to a local file, you can use the "
23683 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
23684 msgstr ""
23685
23686 # type: verbatim
23687 #. type: verbatim
23688 #: ../fish/guestfish.pod:826
23689 #, no-wrap
23690 msgid ""
23691 " upload - /foo\n"
23692 "\n"
23693 msgstr ""
23694
23695 # type: textblock
23696 #. type: textblock
23697 #: ../fish/guestfish.pod:828
23698 msgid ""
23699 "reads stdin and creates from that a file C</foo> in the disk image, and:"
23700 msgstr ""
23701
23702 # type: verbatim
23703 #. type: verbatim
23704 #: ../fish/guestfish.pod:831
23705 #, no-wrap
23706 msgid ""
23707 " tar-out /etc - | tar tf -\n"
23708 "\n"
23709 msgstr ""
23710
23711 # type: textblock
23712 #. type: textblock
23713 #: ../fish/guestfish.pod:833
23714 msgid ""
23715 "writes the tarball to stdout and then pipes that into the external \"tar\" "
23716 "command (see L</PIPES>)."
23717 msgstr ""
23718
23719 # type: textblock
23720 #. type: textblock
23721 #: ../fish/guestfish.pod:836
23722 msgid ""
23723 "When using C<-> to read from stdin, the input is read up to the end of "
23724 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
23725 "some arbitrary end marker:"
23726 msgstr ""
23727
23728 # type: verbatim
23729 #. type: verbatim
23730 #: ../fish/guestfish.pod:840
23731 #, no-wrap
23732 msgid ""
23733 " upload -<<END /foo\n"
23734 " input line 1\n"
23735 " input line 2\n"
23736 " input line 3\n"
23737 " END\n"
23738 "\n"
23739 msgstr ""
23740
23741 # type: textblock
23742 #. type: textblock
23743 #: ../fish/guestfish.pod:846
23744 msgid ""
23745 "Any string of characters can be used instead of C<END>.  The end marker must "
23746 "appear on a line of its own, without any preceeding or following characters "
23747 "(not even spaces)."
23748 msgstr ""
23749
23750 # type: textblock
23751 #. type: textblock
23752 #: ../fish/guestfish.pod:850
23753 msgid ""
23754 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
23755 "upload local files (so-called \"FileIn\" parameters in the generator)."
23756 msgstr ""
23757
23758 # type: =head1
23759 #. type: =head1
23760 #: ../fish/guestfish.pod:853
23761 msgid "EXIT ON ERROR BEHAVIOUR"
23762 msgstr ""
23763
23764 # type: textblock
23765 #. type: textblock
23766 #: ../fish/guestfish.pod:855
23767 msgid ""
23768 "By default, guestfish will ignore any errors when in interactive mode (ie. "
23769 "taking commands from a human over a tty), and will exit on the first error "
23770 "in non-interactive mode (scripts, commands given on the command line)."
23771 msgstr ""
23772
23773 # type: textblock
23774 #. type: textblock
23775 #: ../fish/guestfish.pod:860
23776 msgid ""
23777 "If you prefix a command with a I<-> character, then that command will not "
23778 "cause guestfish to exit, even if that (one) command returns an error."
23779 msgstr ""
23780
23781 # type: =head1
23782 #. type: =head1
23783 #: ../fish/guestfish.pod:864
23784 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
23785 msgstr ""
23786
23787 # type: textblock
23788 #. type: textblock
23789 #: ../fish/guestfish.pod:866
23790 msgid ""
23791 "Guestfish can be remote-controlled over a socket.  This is useful "
23792 "particularly in shell scripts where you want to make several different "
23793 "changes to a filesystem, but you don't want the overhead of starting up a "
23794 "guestfish process each time."
23795 msgstr ""
23796
23797 # type: textblock
23798 #. type: textblock
23799 #: ../fish/guestfish.pod:871
23800 msgid "Start a guestfish server process using:"
23801 msgstr ""
23802
23803 # type: verbatim
23804 #. type: verbatim
23805 #: ../fish/guestfish.pod:873
23806 #, no-wrap
23807 msgid ""
23808 " eval \"`guestfish --listen`\"\n"
23809 "\n"
23810 msgstr ""
23811
23812 # type: textblock
23813 #. type: textblock
23814 #: ../fish/guestfish.pod:875
23815 msgid "and then send it commands by doing:"
23816 msgstr ""
23817
23818 # type: verbatim
23819 #. type: verbatim
23820 #: ../fish/guestfish.pod:877
23821 #, no-wrap
23822 msgid ""
23823 " guestfish --remote cmd [...]\n"
23824 "\n"
23825 msgstr ""
23826
23827 # type: textblock
23828 #. type: textblock
23829 #: ../fish/guestfish.pod:879
23830 msgid "To cause the server to exit, send it the exit command:"
23831 msgstr ""
23832
23833 # type: verbatim
23834 #. type: verbatim
23835 #: ../fish/guestfish.pod:881
23836 #, no-wrap
23837 msgid ""
23838 " guestfish --remote exit\n"
23839 "\n"
23840 msgstr ""
23841
23842 # type: textblock
23843 #. type: textblock
23844 #: ../fish/guestfish.pod:883
23845 msgid ""
23846 "Note that the server will normally exit if there is an error in a command.  "
23847 "You can change this in the usual way.  See section L</EXIT ON ERROR "
23848 "BEHAVIOUR>."
23849 msgstr ""
23850
23851 # type: =head2
23852 #. type: =head2
23853 #: ../fish/guestfish.pod:887
23854 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
23855 msgstr ""
23856
23857 # type: textblock
23858 #. type: textblock
23859 #: ../fish/guestfish.pod:889
23860 msgid ""
23861 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
23862 "is how the I<--remote> option knows where to send the commands.  You can "
23863 "have several guestfish listener processes running using:"
23864 msgstr ""
23865
23866 # type: verbatim
23867 #. type: verbatim
23868 #: ../fish/guestfish.pod:893
23869 #, no-wrap
23870 msgid ""
23871 " eval \"`guestfish --listen`\"\n"
23872 " pid1=$GUESTFISH_PID\n"
23873 " eval \"`guestfish --listen`\"\n"
23874 " pid2=$GUESTFISH_PID\n"
23875 " ...\n"
23876 " guestfish --remote=$pid1 cmd\n"
23877 " guestfish --remote=$pid2 cmd\n"
23878 "\n"
23879 msgstr ""
23880
23881 # type: =head2
23882 #. type: =head2
23883 #: ../fish/guestfish.pod:901
23884 msgid "REMOTE CONTROL AND CSH"
23885 msgstr ""
23886
23887 # type: textblock
23888 #. type: textblock
23889 #: ../fish/guestfish.pod:903
23890 msgid ""
23891 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
23892 "option:"
23893 msgstr ""
23894
23895 # type: verbatim
23896 #. type: verbatim
23897 #: ../fish/guestfish.pod:906
23898 #, no-wrap
23899 msgid ""
23900 " eval \"`guestfish --listen --csh`\"\n"
23901 "\n"
23902 msgstr ""
23903
23904 # type: =head2
23905 #. type: =head2
23906 #: ../fish/guestfish.pod:908
23907 msgid "REMOTE CONTROL DETAILS"
23908 msgstr ""
23909
23910 # type: textblock
23911 #. type: textblock
23912 #: ../fish/guestfish.pod:910
23913 msgid ""
23914 "Remote control happens over a Unix domain socket called C</tmp/.guestfish-"
23915 "$UID/socket-$PID>, where C<$UID> is the effective user ID of the process, "
23916 "and C<$PID> is the process ID of the server."
23917 msgstr ""
23918
23919 # type: textblock
23920 #. type: textblock
23921 #: ../fish/guestfish.pod:914
23922 msgid "Guestfish client and server versions must match exactly."
23923 msgstr ""
23924
23925 #. type: =head2
23926 #: ../fish/guestfish.pod:916
23927 msgid "REMOTE CONTROL RUN COMMAND HANGING"
23928 msgstr ""
23929
23930 #. type: textblock
23931 #: ../fish/guestfish.pod:918
23932 msgid ""
23933 "Using the C<run> (or C<launch>) command remotely in a command substitution "
23934 "context hangs, ie. don't do (note the backquotes):"
23935 msgstr ""
23936
23937 #. type: verbatim
23938 #: ../fish/guestfish.pod:921
23939 #, no-wrap
23940 msgid ""
23941 " a=`guestfish --remote run`\n"
23942 "\n"
23943 msgstr ""
23944
23945 #. type: textblock
23946 #: ../fish/guestfish.pod:923
23947 msgid ""
23948 "Since the C<run> command produces no output on stdout, this is not useful "
23949 "anyway.  For further information see L<https://bugzilla.redhat.com/show_bug."
23950 "cgi?id=592910>."
23951 msgstr ""
23952
23953 # type: =head1
23954 #. type: =head1
23955 #: ../fish/guestfish.pod:927
23956 msgid "PREPARED DISK IMAGES"
23957 msgstr ""
23958
23959 # type: textblock
23960 #. type: textblock
23961 #: ../fish/guestfish.pod:929
23962 msgid ""
23963 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
23964 "preformatted disk images that guestfish can make for you to save typing.  "
23965 "This is particularly useful for testing purposes.  This option is used "
23966 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
23967 "can be mixed with I<-a>)."
23968 msgstr ""
23969
23970 # type: textblock
23971 #. type: textblock
23972 #: ../fish/guestfish.pod:935
23973 msgid ""
23974 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
23975 "the second and so on.  Existing files in the current directory are "
23976 "I<overwritten>."
23977 msgstr ""
23978
23979 # type: textblock
23980 #. type: textblock
23981 #: ../fish/guestfish.pod:939
23982 msgid ""
23983 "The type briefly describes how the disk should be sized, partitioned, how "
23984 "filesystem(s) should be created, and how content should be added.  "
23985 "Optionally the type can be followed by extra parameters, separated by C<:> "
23986 "(colon) characters.  For example, I<-N fs> creates a default 100MB, sparsely-"
23987 "allocated disk, containing a single partition, with the partition formatted "
23988 "as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem on a 1GB "
23989 "disk instead."
23990 msgstr ""
23991
23992 # type: textblock
23993 #. type: textblock
23994 #: ../fish/guestfish.pod:947
23995 msgid "To list the available types and any extra parameters they take, run:"
23996 msgstr ""
23997
23998 # type: textblock
23999 #. type: textblock
24000 #: ../fish/guestfish.pod:951
24001 msgid ""
24002 "Note that the prepared filesystem is not mounted.  You would usually have to "
24003 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
24004 msgstr ""
24005
24006 # type: textblock
24007 #. type: textblock
24008 #: ../fish/guestfish.pod:955
24009 msgid ""
24010 "If any I<-N> or I<--new> options are given, the guest is automatically "
24011 "launched."
24012 msgstr ""
24013
24014 # type: textblock
24015 #. type: textblock
24016 #: ../fish/guestfish.pod:960
24017 msgid "Create a 100MB disk with an ext4-formatted partition:"
24018 msgstr ""
24019
24020 # type: verbatim
24021 #. type: verbatim
24022 #: ../fish/guestfish.pod:962
24023 #, no-wrap
24024 msgid ""
24025 " guestfish -N fs:ext4\n"
24026 "\n"
24027 msgstr ""
24028
24029 # type: textblock
24030 #. type: textblock
24031 #: ../fish/guestfish.pod:964
24032 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
24033 msgstr ""
24034
24035 # type: verbatim
24036 #. type: verbatim
24037 #: ../fish/guestfish.pod:966
24038 #, no-wrap
24039 msgid ""
24040 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
24041 "\n"
24042 msgstr ""
24043
24044 # type: textblock
24045 #. type: textblock
24046 #: ../fish/guestfish.pod:968
24047 msgid "Create a blank 200MB disk:"
24048 msgstr ""
24049
24050 # type: verbatim
24051 #. type: verbatim
24052 #: ../fish/guestfish.pod:970
24053 #, no-wrap
24054 msgid ""
24055 " guestfish -N disk:200M\n"
24056 "\n"
24057 msgstr ""
24058
24059 # type: =head1
24060 #. type: =head1
24061 #: ../fish/guestfish.pod:972
24062 msgid "PROGRESS BARS"
24063 msgstr ""
24064
24065 # type: textblock
24066 #. type: textblock
24067 #: ../fish/guestfish.pod:974
24068 msgid ""
24069 "Some (not all) long-running commands send progress notification messages as "
24070 "they are running.  Guestfish turns these messages into progress bars."
24071 msgstr ""
24072
24073 # type: textblock
24074 #. type: textblock
24075 #: ../fish/guestfish.pod:978
24076 msgid ""
24077 "When a command that supports progress bars takes longer than two seconds to "
24078 "run, and if progress bars are enabled, then you will see one appearing below "
24079 "the command:"
24080 msgstr ""
24081
24082 # type: verbatim
24083 #. type: verbatim
24084 #: ../fish/guestfish.pod:982
24085 #, no-wrap
24086 msgid ""
24087 " ><fs> copy-size /large-file /another-file 2048M\n"
24088 " / 10% [#####-----------------------------------------] 00:30\n"
24089 "\n"
24090 msgstr ""
24091
24092 # type: textblock
24093 #. type: textblock
24094 #: ../fish/guestfish.pod:985
24095 msgid ""
24096 "The spinner on the left hand side moves round once for every progress "
24097 "notification received from the backend.  This is a (reasonably) golden "
24098 "assurance that the command is \"doing something\" even if the progress bar "
24099 "is not moving, because the command is able to send the progress "
24100 "notifications.  When the bar reaches 100% and the command finishes, the "
24101 "spinner disappears."
24102 msgstr ""
24103
24104 # type: textblock
24105 #. type: textblock
24106 #: ../fish/guestfish.pod:992
24107 msgid ""
24108 "Progress bars are enabled by default when guestfish is used interactively.  "
24109 "You can enable them even for non-interactive modes using I<--progress-bars>, "
24110 "and you can disable them completely using I<--no-progress-bars>."
24111 msgstr ""
24112
24113 # type: =head1
24114 #. type: =head1
24115 #: ../fish/guestfish.pod:997
24116 msgid "GUESTFISH COMMANDS"
24117 msgstr ""
24118
24119 # type: textblock
24120 #. type: textblock
24121 #: ../fish/guestfish.pod:999
24122 msgid ""
24123 "The commands in this section are guestfish convenience commands, in other "
24124 "words, they are not part of the L<guestfs(3)> API."
24125 msgstr ""
24126
24127 # type: =head2
24128 #. type: =head2
24129 #: ../fish/guestfish.pod:1002
24130 msgid "help"
24131 msgstr ""
24132
24133 # type: verbatim
24134 #. type: verbatim
24135 #: ../fish/guestfish.pod:1004
24136 #, no-wrap
24137 msgid ""
24138 " help\n"
24139 " help cmd\n"
24140 "\n"
24141 msgstr ""
24142
24143 # type: textblock
24144 #. type: textblock
24145 #: ../fish/guestfish.pod:1007
24146 msgid "Without any parameter, this provides general help."
24147 msgstr ""
24148
24149 # type: textblock
24150 #. type: textblock
24151 #: ../fish/guestfish.pod:1009
24152 msgid "With a C<cmd> parameter, this displays detailed help for that command."
24153 msgstr ""
24154
24155 # type: =head2
24156 #. type: =head2
24157 #: ../fish/guestfish.pod:1011
24158 msgid "quit | exit"
24159 msgstr ""
24160
24161 # type: textblock
24162 #. type: textblock
24163 #: ../fish/guestfish.pod:1013
24164 msgid "This exits guestfish.  You can also use C<^D> key."
24165 msgstr ""
24166
24167 # type: textblock
24168 #. type: textblock
24169 #: ../fish/guestfish.pod:1015
24170 msgid "@FISH_COMMANDS@"
24171 msgstr ""
24172
24173 # type: =head1
24174 #. type: =head1
24175 #: ../fish/guestfish.pod:1017
24176 msgid "COMMANDS"
24177 msgstr ""
24178
24179 # type: =head1
24180 #. type: =head1
24181 #: ../fish/guestfish.pod:1021 ../test-tool/libguestfs-test-tool.pod:77
24182 msgid "EXIT CODE"
24183 msgstr ""
24184
24185 # type: textblock
24186 #. type: textblock
24187 #: ../fish/guestfish.pod:1023
24188 msgid ""
24189 "guestfish returns 0 if the commands completed without error, or 1 if there "
24190 "was an error."
24191 msgstr ""
24192
24193 # type: =item
24194 #. type: =item
24195 #: ../fish/guestfish.pod:1030
24196 msgid "EDITOR"
24197 msgstr ""
24198
24199 # type: textblock
24200 #. type: textblock
24201 #: ../fish/guestfish.pod:1032
24202 msgid ""
24203 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
24204 "C<vi>."
24205 msgstr ""
24206
24207 # type: =item
24208 #. type: =item
24209 #: ../fish/guestfish.pod:1035
24210 msgid "GUESTFISH_PID"
24211 msgstr ""
24212
24213 # type: textblock
24214 #. type: textblock
24215 #: ../fish/guestfish.pod:1037
24216 msgid ""
24217 "Used with the I<--remote> option to specify the remote guestfish process to "
24218 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
24219 msgstr ""
24220
24221 # type: =item
24222 #. type: =item
24223 #: ../fish/guestfish.pod:1041
24224 msgid "HEXEDITOR"
24225 msgstr ""
24226
24227 # type: textblock
24228 #. type: textblock
24229 #: ../fish/guestfish.pod:1043
24230 msgid ""
24231 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
24232 "not specified, the external L<hexedit(1)> program is used."
24233 msgstr ""
24234
24235 # type: =item
24236 #. type: =item
24237 #: ../fish/guestfish.pod:1047
24238 msgid "HOME"
24239 msgstr ""
24240
24241 # type: textblock
24242 #. type: textblock
24243 #: ../fish/guestfish.pod:1049
24244 msgid ""
24245 "If compiled with GNU readline support, various files in the home directory "
24246 "can be used.  See L</FILES>."
24247 msgstr ""
24248
24249 # type: textblock
24250 #. type: textblock
24251 #: ../fish/guestfish.pod:1058
24252 msgid ""
24253 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
24254 "effect as using the B<-v> option."
24255 msgstr ""
24256
24257 # type: textblock
24258 #. type: textblock
24259 #: ../fish/guestfish.pod:1070
24260 msgid ""
24261 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
24262 "the discussion of paths in L<guestfs(3)>."
24263 msgstr ""
24264
24265 # type: textblock
24266 #. type: textblock
24267 #: ../fish/guestfish.pod:1081
24268 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
24269 msgstr ""
24270
24271 # type: =item
24272 #. type: =item
24273 #: ../fish/guestfish.pod:1083
24274 msgid "PAGER"
24275 msgstr ""
24276
24277 # type: textblock
24278 #. type: textblock
24279 #: ../fish/guestfish.pod:1085
24280 msgid ""
24281 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
24282 "C<more>."
24283 msgstr ""
24284
24285 # type: =head1
24286 #. type: =head1
24287 #: ../fish/guestfish.pod:1101 ../fuse/guestmount.pod:262
24288 msgid "FILES"
24289 msgstr ""
24290
24291 #. type: =item
24292 #: ../fish/guestfish.pod:1105 ../fuse/guestmount.pod:266
24293 msgid "$HOME/.libguestfs-tools.rc"
24294 msgstr ""
24295
24296 #. type: =item
24297 #: ../fish/guestfish.pod:1107 ../fuse/guestmount.pod:268
24298 msgid "/etc/libguestfs-tools.conf"
24299 msgstr ""
24300
24301 #. type: textblock
24302 #: ../fish/guestfish.pod:1109 ../fuse/guestmount.pod:270
24303 msgid ""
24304 "This configuration file controls the default read-only or read-write mode "
24305 "(I<--ro> or I<--rw>)."
24306 msgstr ""
24307
24308 #. type: textblock
24309 #: ../fish/guestfish.pod:1112
24310 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
24311 msgstr ""
24312
24313 # type: =item
24314 #. type: =item
24315 #: ../fish/guestfish.pod:1114
24316 msgid "$HOME/.guestfish"
24317 msgstr ""
24318
24319 # type: textblock
24320 #. type: textblock
24321 #: ../fish/guestfish.pod:1116
24322 msgid ""
24323 "If compiled with GNU readline support, then the command history is saved in "
24324 "this file."
24325 msgstr ""
24326
24327 # type: =item
24328 #. type: =item
24329 #: ../fish/guestfish.pod:1119
24330 msgid "$HOME/.inputrc"
24331 msgstr ""
24332
24333 # type: =item
24334 #. type: =item
24335 #: ../fish/guestfish.pod:1121
24336 msgid "/etc/inputrc"
24337 msgstr ""
24338
24339 # type: textblock
24340 #. type: textblock
24341 #: ../fish/guestfish.pod:1123
24342 msgid ""
24343 "If compiled with GNU readline support, then these files can be used to "
24344 "configure readline.  For further information, please see L<readline(3)/"
24345 "INITIALIZATION FILE>."
24346 msgstr ""
24347
24348 # type: textblock
24349 #. type: textblock
24350 #: ../fish/guestfish.pod:1127
24351 msgid "To write rules which only apply to guestfish, use:"
24352 msgstr ""
24353
24354 # type: verbatim
24355 #. type: verbatim
24356 #: ../fish/guestfish.pod:1129
24357 #, no-wrap
24358 msgid ""
24359 " $if guestfish\n"
24360 " ...\n"
24361 " $endif\n"
24362 "\n"
24363 msgstr ""
24364
24365 # type: textblock
24366 #. type: textblock
24367 #: ../fish/guestfish.pod:1133
24368 msgid ""
24369 "Variables that you can set in inputrc that change the behaviour of guestfish "
24370 "in useful ways include:"
24371 msgstr ""
24372
24373 # type: =item
24374 #. type: =item
24375 #: ../fish/guestfish.pod:1138
24376 msgid "completion-ignore-case (default: on)"
24377 msgstr ""
24378
24379 # type: textblock
24380 #. type: textblock
24381 #: ../fish/guestfish.pod:1140
24382 msgid ""
24383 "By default, guestfish will ignore case when tab-completing paths on the "
24384 "disk.  Use:"
24385 msgstr ""
24386
24387 # type: verbatim
24388 #. type: verbatim
24389 #: ../fish/guestfish.pod:1143
24390 #, no-wrap
24391 msgid ""
24392 " set completion-ignore-case off\n"
24393 "\n"
24394 msgstr ""
24395
24396 # type: textblock
24397 #. type: textblock
24398 #: ../fish/guestfish.pod:1145
24399 msgid "to make guestfish case sensitive."
24400 msgstr ""
24401
24402 # type: =item
24403 #. type: =item
24404 #: ../fish/guestfish.pod:1149
24405 msgid "test1.img"
24406 msgstr ""
24407
24408 # type: =item
24409 #. type: =item
24410 #: ../fish/guestfish.pod:1151
24411 msgid "test2.img (etc)"
24412 msgstr ""
24413
24414 #. type: textblock
24415 #: ../fish/guestfish.pod:1153
24416 msgid ""
24417 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
24418 "will be created in the file C<test1.img> in the current directory.  The "
24419 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
24420 "the same name will be overwritten."
24421 msgstr ""
24422
24423 #. type: textblock
24424 #: ../fish/guestfish.pod:1162
24425 msgid ""
24426 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-in(1)"
24427 ">, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)"
24428 ">, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-partitions"
24429 "(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)"
24430 ">, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)"
24431 ">, L<hexedit(1)>."
24432 msgstr ""
24433
24434 # type: textblock
24435 #. type: textblock
24436 #: ../fish/guestfish.pod:1192 ../test-tool/libguestfs-test-tool.pod:102
24437 #: ../fuse/guestmount.pod:297 ../tools/virt-edit.pl:518
24438 #: ../tools/virt-win-reg.pl:606 ../tools/virt-list-filesystems.pl:210
24439 #: ../tools/virt-tar.pl:309 ../tools/virt-make-fs.pl:572
24440 #: ../tools/virt-list-partitions.pl:277
24441 msgid ""
24442 "This program is free software; you can redistribute it and/or modify it "
24443 "under the terms of the GNU General Public License as published by the Free "
24444 "Software Foundation; either version 2 of the License, or (at your option) "
24445 "any later version."
24446 msgstr ""
24447
24448 # type: textblock
24449 #. type: textblock
24450 #: ../fish/guestfish.pod:1197 ../test-tool/libguestfs-test-tool.pod:107
24451 #: ../fuse/guestmount.pod:302 ../tools/virt-edit.pl:523
24452 #: ../tools/virt-win-reg.pl:611 ../tools/virt-list-filesystems.pl:215
24453 #: ../tools/virt-tar.pl:314 ../tools/virt-make-fs.pl:577
24454 #: ../tools/virt-list-partitions.pl:282
24455 msgid ""
24456 "This program is distributed in the hope that it will be useful, but WITHOUT "
24457 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
24458 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
24459 "more details."
24460 msgstr ""
24461
24462 # type: textblock
24463 #. type: textblock
24464 #: ../fish/guestfish.pod:1202 ../test-tool/libguestfs-test-tool.pod:112
24465 #: ../fuse/guestmount.pod:307 ../tools/virt-edit.pl:528
24466 #: ../tools/virt-win-reg.pl:616 ../tools/virt-list-filesystems.pl:220
24467 #: ../tools/virt-tar.pl:319 ../tools/virt-make-fs.pl:582
24468 #: ../tools/virt-list-partitions.pl:287
24469 msgid ""
24470 "You should have received a copy of the GNU General Public License along with "
24471 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
24472 "Ave, Cambridge, MA 02139, USA."
24473 msgstr ""
24474
24475 # type: =head2
24476 #. type: =head2
24477 #: ../fish/guestfish-actions.pod:1
24478 msgid "add-cdrom"
24479 msgstr ""
24480
24481 # type: verbatim
24482 #. type: verbatim
24483 #: ../fish/guestfish-actions.pod:3
24484 #, no-wrap
24485 msgid ""
24486 " add-cdrom filename\n"
24487 "\n"
24488 msgstr ""
24489
24490 # type: textblock
24491 #. type: textblock
24492 #: ../fish/guestfish-actions.pod:15
24493 msgid ""
24494 "This call checks for the existence of C<filename>.  This stops you from "
24495 "specifying other types of drive which are supported by qemu such as C<nbd:> "
24496 "and C<http:> URLs.  To specify those, use the general L</config> call "
24497 "instead."
24498 msgstr ""
24499
24500 # type: textblock
24501 #. type: textblock
24502 #: ../fish/guestfish-actions.pod:22
24503 msgid ""
24504 "If you just want to add an ISO file (often you use this as an efficient way "
24505 "to transfer large files into the guest), then you should probably use L</add-"
24506 "drive-ro> instead."
24507 msgstr ""
24508
24509 #. type: textblock
24510 #: ../fish/guestfish-actions.pod:28 ../fish/guestfish-actions.pod:158
24511 #: ../fish/guestfish-actions.pod:172
24512 msgid ""
24513 "This function is deprecated.  In new code, use the L</add_drive_opts> call "
24514 "instead."
24515 msgstr ""
24516
24517 # type: =head2
24518 #. type: =head2
24519 #: ../fish/guestfish-actions.pod:35
24520 msgid "add-domain"
24521 msgstr ""
24522
24523 # type: =head2
24524 #. type: =head2
24525 #: ../fish/guestfish-actions.pod:37
24526 msgid "domain"
24527 msgstr ""
24528
24529 #. type: verbatim
24530 #: ../fish/guestfish-actions.pod:39
24531 #, no-wrap
24532 msgid ""
24533 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..]\n"
24534 "\n"
24535 msgstr ""
24536
24537 # type: textblock
24538 #. type: textblock
24539 #: ../fish/guestfish-actions.pod:41
24540 msgid ""
24541 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
24542 "It works by connecting to libvirt, requesting the domain and domain XML from "
24543 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
24544 msgstr ""
24545
24546 # type: textblock
24547 #. type: textblock
24548 #: ../fish/guestfish-actions.pod:71
24549 msgid ""
24550 "The other optional parameters are passed directly through to L</add-drive-"
24551 "opts>."
24552 msgstr ""
24553
24554 # type: textblock
24555 #. type: textblock
24556 #: ../fish/guestfish-actions.pod:74 ../fish/guestfish-actions.pod:138
24557 #: ../fish/guestfish-actions.pod:3049
24558 msgid ""
24559 "This command has one or more optional arguments.  See L</OPTIONAL ARGUMENTS>."
24560 msgstr ""
24561
24562 # type: =head2
24563 #. type: =head2
24564 #: ../fish/guestfish-actions.pod:76
24565 msgid "add-drive"
24566 msgstr ""
24567
24568 # type: verbatim
24569 #. type: verbatim
24570 #: ../fish/guestfish-actions.pod:78
24571 #, no-wrap
24572 msgid ""
24573 " add-drive filename\n"
24574 "\n"
24575 msgstr ""
24576
24577 # type: textblock
24578 #. type: textblock
24579 #: ../fish/guestfish-actions.pod:80
24580 msgid ""
24581 "This function is the equivalent of calling L</add-drive-opts> with no "
24582 "optional parameters, so the disk is added writable, with the format being "
24583 "detected automatically."
24584 msgstr ""
24585
24586 # type: textblock
24587 #. type: textblock
24588 #: ../fish/guestfish-actions.pod:84
24589 msgid ""
24590 "Automatic detection of the format opens you up to a potential security hole "
24591 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
24592 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
24593 "you should think about replacing calls to this function with calls to L</add-"
24594 "drive-opts>, and specifying the format."
24595 msgstr ""
24596
24597 # type: =head2
24598 #. type: =head2
24599 #: ../fish/guestfish-actions.pod:91
24600 msgid "add-drive-opts"
24601 msgstr ""
24602
24603 # type: =head2
24604 #. type: =head2
24605 #: ../fish/guestfish-actions.pod:93
24606 msgid "add"
24607 msgstr ""
24608
24609 # type: verbatim
24610 #. type: verbatim
24611 #: ../fish/guestfish-actions.pod:95
24612 #, no-wrap
24613 msgid ""
24614 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
24615 "\n"
24616 msgstr ""
24617
24618 # type: textblock
24619 #. type: textblock
24620 #: ../fish/guestfish-actions.pod:122
24621 msgid ""
24622 "This forces the image format.  If you omit this (or use L</add-drive> or L</"
24623 "add-drive-ro>) then the format is automatically detected.  Possible formats "
24624 "include C<raw> and C<qcow2>."
24625 msgstr ""
24626
24627 # type: textblock
24628 #. type: textblock
24629 #: ../fish/guestfish-actions.pod:133
24630 msgid ""
24631 "This rarely-used option lets you emulate the behaviour of the deprecated L</"
24632 "add-drive-with-if> call (q.v.)"
24633 msgstr ""
24634
24635 # type: =head2
24636 #. type: =head2
24637 #: ../fish/guestfish-actions.pod:140
24638 msgid "add-drive-ro"
24639 msgstr ""
24640
24641 # type: =head2
24642 #. type: =head2
24643 #: ../fish/guestfish-actions.pod:142
24644 msgid "add-ro"
24645 msgstr ""
24646
24647 # type: verbatim
24648 #. type: verbatim
24649 #: ../fish/guestfish-actions.pod:144
24650 #, no-wrap
24651 msgid ""
24652 " add-drive-ro filename\n"
24653 "\n"
24654 msgstr ""
24655
24656 # type: textblock
24657 #. type: textblock
24658 #: ../fish/guestfish-actions.pod:146
24659 msgid ""
24660 "This function is the equivalent of calling L</add-drive-opts> with the "
24661 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
24662 "is added read-only, with the format being detected automatically."
24663 msgstr ""
24664
24665 # type: =head2
24666 #. type: =head2
24667 #: ../fish/guestfish-actions.pod:151
24668 msgid "add-drive-ro-with-if"
24669 msgstr ""
24670
24671 # type: verbatim
24672 #. type: verbatim
24673 #: ../fish/guestfish-actions.pod:153
24674 #, no-wrap
24675 msgid ""
24676 " add-drive-ro-with-if filename iface\n"
24677 "\n"
24678 msgstr ""
24679
24680 # type: textblock
24681 #. type: textblock
24682 #: ../fish/guestfish-actions.pod:155
24683 msgid ""
24684 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
24685 "interface emulation to use at run time."
24686 msgstr ""
24687
24688 # type: =head2
24689 #. type: =head2
24690 #: ../fish/guestfish-actions.pod:165
24691 msgid "add-drive-with-if"
24692 msgstr ""
24693
24694 # type: verbatim
24695 #. type: verbatim
24696 #: ../fish/guestfish-actions.pod:167
24697 #, no-wrap
24698 msgid ""
24699 " add-drive-with-if filename iface\n"
24700 "\n"
24701 msgstr ""
24702
24703 # type: textblock
24704 #. type: textblock
24705 #: ../fish/guestfish-actions.pod:169
24706 msgid ""
24707 "This is the same as L</add-drive> but it allows you to specify the QEMU "
24708 "interface emulation to use at run time."
24709 msgstr ""
24710
24711 # type: =head2
24712 #. type: =head2
24713 #: ../fish/guestfish-actions.pod:179
24714 msgid "aug-clear"
24715 msgstr ""
24716
24717 # type: verbatim
24718 #. type: verbatim
24719 #: ../fish/guestfish-actions.pod:181
24720 #, no-wrap
24721 msgid ""
24722 " aug-clear augpath\n"
24723 "\n"
24724 msgstr ""
24725
24726 # type: =head2
24727 #. type: =head2
24728 #: ../fish/guestfish-actions.pod:186
24729 msgid "aug-close"
24730 msgstr ""
24731
24732 # type: verbatim
24733 #. type: verbatim
24734 #: ../fish/guestfish-actions.pod:188
24735 #, no-wrap
24736 msgid ""
24737 " aug-close\n"
24738 "\n"
24739 msgstr ""
24740
24741 # type: textblock
24742 #. type: textblock
24743 #: ../fish/guestfish-actions.pod:190
24744 msgid ""
24745 "Close the current Augeas handle and free up any resources used by it.  After "
24746 "calling this, you have to call L</aug-init> again before you can use any "
24747 "other Augeas functions."
24748 msgstr ""
24749
24750 # type: =head2
24751 #. type: =head2
24752 #: ../fish/guestfish-actions.pod:195
24753 msgid "aug-defnode"
24754 msgstr ""
24755
24756 # type: verbatim
24757 #. type: verbatim
24758 #: ../fish/guestfish-actions.pod:197
24759 #, no-wrap
24760 msgid ""
24761 " aug-defnode name expr val\n"
24762 "\n"
24763 msgstr ""
24764
24765 # type: textblock
24766 #. type: textblock
24767 #: ../fish/guestfish-actions.pod:202
24768 msgid ""
24769 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
24770 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
24771 "containing that single node."
24772 msgstr ""
24773
24774 # type: =head2
24775 #. type: =head2
24776 #: ../fish/guestfish-actions.pod:210
24777 msgid "aug-defvar"
24778 msgstr ""
24779
24780 # type: verbatim
24781 #. type: verbatim
24782 #: ../fish/guestfish-actions.pod:212
24783 #, no-wrap
24784 msgid ""
24785 " aug-defvar name expr\n"
24786 "\n"
24787 msgstr ""
24788
24789 # type: =head2
24790 #. type: =head2
24791 #: ../fish/guestfish-actions.pod:221
24792 msgid "aug-get"
24793 msgstr ""
24794
24795 # type: verbatim
24796 #. type: verbatim
24797 #: ../fish/guestfish-actions.pod:223
24798 #, no-wrap
24799 msgid ""
24800 " aug-get augpath\n"
24801 "\n"
24802 msgstr ""
24803
24804 # type: =head2
24805 #. type: =head2
24806 #: ../fish/guestfish-actions.pod:228
24807 msgid "aug-init"
24808 msgstr ""
24809
24810 # type: verbatim
24811 #. type: verbatim
24812 #: ../fish/guestfish-actions.pod:230
24813 #, no-wrap
24814 msgid ""
24815 " aug-init root flags\n"
24816 "\n"
24817 msgstr ""
24818
24819 # type: textblock
24820 #. type: textblock
24821 #: ../fish/guestfish-actions.pod:236
24822 msgid "You must call this before using any other L</aug-*> commands."
24823 msgstr ""
24824
24825 #. type: textblock
24826 #: ../fish/guestfish-actions.pod:261
24827 msgid ""
24828 "This option is only useful when debugging Augeas lenses.  Use of this option "
24829 "may require additional memory for the libguestfs appliance.  You may need to "
24830 "set the C<LIBGUESTFS_MEMSIZE> environment variable or call L</set-memsize>."
24831 msgstr ""
24832
24833 # type: textblock
24834 #. type: textblock
24835 #: ../fish/guestfish-actions.pod:276
24836 msgid "Do not load the tree in L</aug-init>."
24837 msgstr ""
24838
24839 # type: textblock
24840 #. type: textblock
24841 #: ../fish/guestfish-actions.pod:280
24842 msgid "To close the handle, you can call L</aug-close>."
24843 msgstr ""
24844
24845 # type: =head2
24846 #. type: =head2
24847 #: ../fish/guestfish-actions.pod:284
24848 msgid "aug-insert"
24849 msgstr ""
24850
24851 # type: verbatim
24852 #. type: verbatim
24853 #: ../fish/guestfish-actions.pod:286
24854 #, no-wrap
24855 msgid ""
24856 " aug-insert augpath label true|false\n"
24857 "\n"
24858 msgstr ""
24859
24860 # type: =head2
24861 #. type: =head2
24862 #: ../fish/guestfish-actions.pod:296
24863 msgid "aug-load"
24864 msgstr ""
24865
24866 # type: verbatim
24867 #. type: verbatim
24868 #: ../fish/guestfish-actions.pod:298
24869 #, no-wrap
24870 msgid ""
24871 " aug-load\n"
24872 "\n"
24873 msgstr ""
24874
24875 # type: =head2
24876 #. type: =head2
24877 #: ../fish/guestfish-actions.pod:305
24878 msgid "aug-ls"
24879 msgstr ""
24880
24881 # type: verbatim
24882 #. type: verbatim
24883 #: ../fish/guestfish-actions.pod:307
24884 #, no-wrap
24885 msgid ""
24886 " aug-ls augpath\n"
24887 "\n"
24888 msgstr ""
24889
24890 # type: textblock
24891 #. type: textblock
24892 #: ../fish/guestfish-actions.pod:309
24893 msgid ""
24894 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
24895 "resulting nodes into alphabetical order."
24896 msgstr ""
24897
24898 # type: =head2
24899 #. type: =head2
24900 #: ../fish/guestfish-actions.pod:312
24901 msgid "aug-match"
24902 msgstr ""
24903
24904 # type: verbatim
24905 #. type: verbatim
24906 #: ../fish/guestfish-actions.pod:314
24907 #, no-wrap
24908 msgid ""
24909 " aug-match augpath\n"
24910 "\n"
24911 msgstr ""
24912
24913 # type: =head2
24914 #. type: =head2
24915 #: ../fish/guestfish-actions.pod:320
24916 msgid "aug-mv"
24917 msgstr ""
24918
24919 # type: verbatim
24920 #. type: verbatim
24921 #: ../fish/guestfish-actions.pod:322
24922 #, no-wrap
24923 msgid ""
24924 " aug-mv src dest\n"
24925 "\n"
24926 msgstr ""
24927
24928 # type: =head2
24929 #. type: =head2
24930 #: ../fish/guestfish-actions.pod:327
24931 msgid "aug-rm"
24932 msgstr ""
24933
24934 # type: verbatim
24935 #. type: verbatim
24936 #: ../fish/guestfish-actions.pod:329
24937 #, no-wrap
24938 msgid ""
24939 " aug-rm augpath\n"
24940 "\n"
24941 msgstr ""
24942
24943 # type: =head2
24944 #. type: =head2
24945 #: ../fish/guestfish-actions.pod:335
24946 msgid "aug-save"
24947 msgstr ""
24948
24949 # type: verbatim
24950 #. type: verbatim
24951 #: ../fish/guestfish-actions.pod:337
24952 #, no-wrap
24953 msgid ""
24954 " aug-save\n"
24955 "\n"
24956 msgstr ""
24957
24958 # type: textblock
24959 #. type: textblock
24960 #: ../fish/guestfish-actions.pod:341
24961 msgid ""
24962 "The flags which were passed to L</aug-init> affect exactly how files are "
24963 "saved."
24964 msgstr ""
24965
24966 # type: =head2
24967 #. type: =head2
24968 #: ../fish/guestfish-actions.pod:344
24969 msgid "aug-set"
24970 msgstr ""
24971
24972 # type: verbatim
24973 #. type: verbatim
24974 #: ../fish/guestfish-actions.pod:346
24975 #, no-wrap
24976 msgid ""
24977 " aug-set augpath val\n"
24978 "\n"
24979 msgstr ""
24980
24981 # type: textblock
24982 #. type: textblock
24983 #: ../fish/guestfish-actions.pod:350
24984 msgid ""
24985 "In the Augeas API, it is possible to clear a node by setting the value to "
24986 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
24987 "this call.  Instead you must use the L</aug-clear> call."
24988 msgstr ""
24989
24990 # type: =head2
24991 #. type: =head2
24992 #: ../fish/guestfish-actions.pod:355
24993 msgid "available"
24994 msgstr ""
24995
24996 # type: verbatim
24997 #. type: verbatim
24998 #: ../fish/guestfish-actions.pod:357
24999 #, no-wrap
25000 msgid ""
25001 " available 'groups ...'\n"
25002 "\n"
25003 msgstr ""
25004
25005 # type: textblock
25006 #. type: textblock
25007 #: ../fish/guestfish-actions.pod:363
25008 msgid ""
25009 "The libguestfs groups, and the functions that those groups correspond to, "
25010 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
25011 "runtime by calling L</available-all-groups>."
25012 msgstr ""
25013
25014 # type: textblock
25015 #. type: textblock
25016 #: ../fish/guestfish-actions.pod:387
25017 msgid "You must call L</launch> before calling this function."
25018 msgstr ""
25019
25020 # type: textblock
25021 #. type: textblock
25022 #: ../fish/guestfish-actions.pod:409
25023 msgid ""
25024 "This call was added in version C<1.0.80>.  In previous versions of "
25025 "libguestfs all you could do would be to speculatively execute a command to "
25026 "find out if the daemon implemented it.  See also L</version>."
25027 msgstr ""
25028
25029 # type: =head2
25030 #. type: =head2
25031 #: ../fish/guestfish-actions.pod:416
25032 msgid "available-all-groups"
25033 msgstr ""
25034
25035 # type: verbatim
25036 #. type: verbatim
25037 #: ../fish/guestfish-actions.pod:418
25038 #, no-wrap
25039 msgid ""
25040 " available-all-groups\n"
25041 "\n"
25042 msgstr ""
25043
25044 # type: textblock
25045 #. type: textblock
25046 #: ../fish/guestfish-actions.pod:420
25047 msgid ""
25048 "This command returns a list of all optional groups that this daemon knows "
25049 "about.  Note this returns both supported and unsupported groups.  To find "
25050 "out which ones the daemon can actually support you have to call L</"
25051 "available> on each member of the returned list."
25052 msgstr ""
25053
25054 # type: textblock
25055 #. type: textblock
25056 #: ../fish/guestfish-actions.pod:426
25057 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
25058 msgstr ""
25059
25060 # type: =head2
25061 #. type: =head2
25062 #: ../fish/guestfish-actions.pod:428
25063 msgid "base64-in"
25064 msgstr ""
25065
25066 # type: verbatim
25067 #. type: verbatim
25068 #: ../fish/guestfish-actions.pod:430
25069 #, no-wrap
25070 msgid ""
25071 " base64-in (base64file|-) filename\n"
25072 "\n"
25073 msgstr ""
25074
25075 # type: textblock
25076 #. type: textblock
25077 #: ../fish/guestfish-actions.pod:435 ../fish/guestfish-actions.pod:444
25078 #: ../fish/guestfish-actions.pod:668 ../fish/guestfish-actions.pod:837
25079 #: ../fish/guestfish-actions.pod:856 ../fish/guestfish-actions.pod:1230
25080 #: ../fish/guestfish-actions.pod:4491 ../fish/guestfish-actions.pod:4503
25081 #: ../fish/guestfish-actions.pod:4514 ../fish/guestfish-actions.pod:4525
25082 #: ../fish/guestfish-actions.pod:4577 ../fish/guestfish-actions.pod:4586
25083 #: ../fish/guestfish-actions.pod:4640 ../fish/guestfish-actions.pod:4663
25084 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
25085 msgstr ""
25086
25087 # type: =head2
25088 #. type: =head2
25089 #: ../fish/guestfish-actions.pod:437
25090 msgid "base64-out"
25091 msgstr ""
25092
25093 # type: verbatim
25094 #. type: verbatim
25095 #: ../fish/guestfish-actions.pod:439
25096 #, no-wrap
25097 msgid ""
25098 " base64-out filename (base64file|-)\n"
25099 "\n"
25100 msgstr ""
25101
25102 # type: =head2
25103 #. type: =head2
25104 #: ../fish/guestfish-actions.pod:446
25105 msgid "blockdev-flushbufs"
25106 msgstr ""
25107
25108 # type: verbatim
25109 #. type: verbatim
25110 #: ../fish/guestfish-actions.pod:448
25111 #, no-wrap
25112 msgid ""
25113 " blockdev-flushbufs device\n"
25114 "\n"
25115 msgstr ""
25116
25117 # type: =head2
25118 #. type: =head2
25119 #: ../fish/guestfish-actions.pod:455
25120 msgid "blockdev-getbsz"
25121 msgstr ""
25122
25123 # type: verbatim
25124 #. type: verbatim
25125 #: ../fish/guestfish-actions.pod:457
25126 #, no-wrap
25127 msgid ""
25128 " blockdev-getbsz device\n"
25129 "\n"
25130 msgstr ""
25131
25132 # type: =head2
25133 #. type: =head2
25134 #: ../fish/guestfish-actions.pod:466
25135 msgid "blockdev-getro"
25136 msgstr ""
25137
25138 # type: verbatim
25139 #. type: verbatim
25140 #: ../fish/guestfish-actions.pod:468
25141 #, no-wrap
25142 msgid ""
25143 " blockdev-getro device\n"
25144 "\n"
25145 msgstr ""
25146
25147 # type: =head2
25148 #. type: =head2
25149 #: ../fish/guestfish-actions.pod:475
25150 msgid "blockdev-getsize64"
25151 msgstr ""
25152
25153 # type: verbatim
25154 #. type: verbatim
25155 #: ../fish/guestfish-actions.pod:477
25156 #, no-wrap
25157 msgid ""
25158 " blockdev-getsize64 device\n"
25159 "\n"
25160 msgstr ""
25161
25162 # type: textblock
25163 #. type: textblock
25164 #: ../fish/guestfish-actions.pod:481
25165 msgid "See also L</blockdev-getsz>."
25166 msgstr ""
25167
25168 # type: =head2
25169 #. type: =head2
25170 #: ../fish/guestfish-actions.pod:485
25171 msgid "blockdev-getss"
25172 msgstr ""
25173
25174 # type: verbatim
25175 #. type: verbatim
25176 #: ../fish/guestfish-actions.pod:487
25177 #, no-wrap
25178 msgid ""
25179 " blockdev-getss device\n"
25180 "\n"
25181 msgstr ""
25182
25183 # type: textblock
25184 #. type: textblock
25185 #: ../fish/guestfish-actions.pod:492
25186 msgid ""
25187 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
25188 msgstr ""
25189
25190 # type: =head2
25191 #. type: =head2
25192 #: ../fish/guestfish-actions.pod:497
25193 msgid "blockdev-getsz"
25194 msgstr ""
25195
25196 # type: verbatim
25197 #. type: verbatim
25198 #: ../fish/guestfish-actions.pod:499
25199 #, no-wrap
25200 msgid ""
25201 " blockdev-getsz device\n"
25202 "\n"
25203 msgstr ""
25204
25205 # type: textblock
25206 #. type: textblock
25207 #: ../fish/guestfish-actions.pod:504
25208 msgid ""
25209 "See also L</blockdev-getss> for the real sector size of the device, and L</"
25210 "blockdev-getsize64> for the more useful I<size in bytes>."
25211 msgstr ""
25212
25213 # type: =head2
25214 #. type: =head2
25215 #: ../fish/guestfish-actions.pod:510
25216 msgid "blockdev-rereadpt"
25217 msgstr ""
25218
25219 # type: verbatim
25220 #. type: verbatim
25221 #: ../fish/guestfish-actions.pod:512
25222 #, no-wrap
25223 msgid ""
25224 " blockdev-rereadpt device\n"
25225 "\n"
25226 msgstr ""
25227
25228 # type: =head2
25229 #. type: =head2
25230 #: ../fish/guestfish-actions.pod:518
25231 msgid "blockdev-setbsz"
25232 msgstr ""
25233
25234 # type: verbatim
25235 #. type: verbatim
25236 #: ../fish/guestfish-actions.pod:520
25237 #, no-wrap
25238 msgid ""
25239 " blockdev-setbsz device blocksize\n"
25240 "\n"
25241 msgstr ""
25242
25243 # type: =head2
25244 #. type: =head2
25245 #: ../fish/guestfish-actions.pod:529
25246 msgid "blockdev-setro"
25247 msgstr ""
25248
25249 # type: verbatim
25250 #. type: verbatim
25251 #: ../fish/guestfish-actions.pod:531
25252 #, no-wrap
25253 msgid ""
25254 " blockdev-setro device\n"
25255 "\n"
25256 msgstr ""
25257
25258 # type: =head2
25259 #. type: =head2
25260 #: ../fish/guestfish-actions.pod:537
25261 msgid "blockdev-setrw"
25262 msgstr ""
25263
25264 # type: verbatim
25265 #. type: verbatim
25266 #: ../fish/guestfish-actions.pod:539
25267 #, no-wrap
25268 msgid ""
25269 " blockdev-setrw device\n"
25270 "\n"
25271 msgstr ""
25272
25273 # type: =head2
25274 #. type: =head2
25275 #: ../fish/guestfish-actions.pod:545
25276 msgid "case-sensitive-path"
25277 msgstr ""
25278
25279 # type: verbatim
25280 #. type: verbatim
25281 #: ../fish/guestfish-actions.pod:547
25282 #, no-wrap
25283 msgid ""
25284 " case-sensitive-path path\n"
25285 "\n"
25286 msgstr ""
25287
25288 # type: textblock
25289 #. type: textblock
25290 #: ../fish/guestfish-actions.pod:571
25291 msgid ""
25292 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return C<\"/"
25293 "WINDOWS/system32\"> (the exact return value would depend on details of how "
25294 "the directories were originally created under Windows)."
25295 msgstr ""
25296
25297 # type: textblock
25298 #. type: textblock
25299 #: ../fish/guestfish-actions.pod:579
25300 msgid "See also L</realpath>."
25301 msgstr ""
25302
25303 # type: =head2
25304 #. type: =head2
25305 #: ../fish/guestfish-actions.pod:581
25306 msgid "cat"
25307 msgstr ""
25308
25309 # type: verbatim
25310 #. type: verbatim
25311 #: ../fish/guestfish-actions.pod:583
25312 #, no-wrap
25313 msgid ""
25314 " cat path\n"
25315 "\n"
25316 msgstr ""
25317
25318 # type: textblock
25319 #. type: textblock
25320 #: ../fish/guestfish-actions.pod:587
25321 msgid ""
25322 "Note that this function cannot correctly handle binary files (specifically, "
25323 "files containing C<\\0> character which is treated as end of string).  For "
25324 "those you need to use the L</read-file> or L</download> functions which have "
25325 "a more complex interface."
25326 msgstr ""
25327
25328 # type: =head2
25329 #. type: =head2
25330 #: ../fish/guestfish-actions.pod:595
25331 msgid "checksum"
25332 msgstr ""
25333
25334 # type: verbatim
25335 #. type: verbatim
25336 #: ../fish/guestfish-actions.pod:597
25337 #, no-wrap
25338 msgid ""
25339 " checksum csumtype path\n"
25340 "\n"
25341 msgstr ""
25342
25343 # type: textblock
25344 #. type: textblock
25345 #: ../fish/guestfish-actions.pod:640
25346 msgid "To get the checksum for a device, use L</checksum-device>."
25347 msgstr ""
25348
25349 # type: textblock
25350 #. type: textblock
25351 #: ../fish/guestfish-actions.pod:642
25352 msgid "To get the checksums for many files, use L</checksums-out>."
25353 msgstr ""
25354
25355 # type: =head2
25356 #. type: =head2
25357 #: ../fish/guestfish-actions.pod:644
25358 msgid "checksum-device"
25359 msgstr ""
25360
25361 # type: verbatim
25362 #. type: verbatim
25363 #: ../fish/guestfish-actions.pod:646
25364 #, no-wrap
25365 msgid ""
25366 " checksum-device csumtype device\n"
25367 "\n"
25368 msgstr ""
25369
25370 # type: textblock
25371 #. type: textblock
25372 #: ../fish/guestfish-actions.pod:648
25373 msgid ""
25374 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
25375 "device named C<device>.  For the types of checksums supported see the L</"
25376 "checksum> command."
25377 msgstr ""
25378
25379 # type: =head2
25380 #. type: =head2
25381 #: ../fish/guestfish-actions.pod:652
25382 msgid "checksums-out"
25383 msgstr ""
25384
25385 # type: verbatim
25386 #. type: verbatim
25387 #: ../fish/guestfish-actions.pod:654
25388 #, no-wrap
25389 msgid ""
25390 " checksums-out csumtype directory (sumsfile|-)\n"
25391 "\n"
25392 msgstr ""
25393
25394 # type: =head2
25395 #. type: =head2
25396 #: ../fish/guestfish-actions.pod:670
25397 msgid "chmod"
25398 msgstr ""
25399
25400 # type: verbatim
25401 #. type: verbatim
25402 #: ../fish/guestfish-actions.pod:672
25403 #, no-wrap
25404 msgid ""
25405 " chmod mode path\n"
25406 "\n"
25407 msgstr ""
25408
25409 # type: =head2
25410 #. type: =head2
25411 #: ../fish/guestfish-actions.pod:683
25412 msgid "chown"
25413 msgstr ""
25414
25415 # type: verbatim
25416 #. type: verbatim
25417 #: ../fish/guestfish-actions.pod:685
25418 #, no-wrap
25419 msgid ""
25420 " chown owner group path\n"
25421 "\n"
25422 msgstr ""
25423
25424 # type: =head2
25425 #. type: =head2
25426 #: ../fish/guestfish-actions.pod:693
25427 msgid "command"
25428 msgstr ""
25429
25430 # type: verbatim
25431 #. type: verbatim
25432 #: ../fish/guestfish-actions.pod:695
25433 #, no-wrap
25434 msgid ""
25435 " command 'arguments ...'\n"
25436 "\n"
25437 msgstr ""
25438
25439 # type: textblock
25440 #. type: textblock
25441 #: ../fish/guestfish-actions.pod:702
25442 msgid ""
25443 "The single parameter is an argv-style list of arguments.  The first element "
25444 "is the name of the program to run.  Subsequent elements are parameters.  The "
25445 "list must be non-empty (ie. must contain a program name).  Note that the "
25446 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
25447 msgstr ""
25448
25449 # type: =head2
25450 #. type: =head2
25451 #: ../fish/guestfish-actions.pod:730
25452 msgid "command-lines"
25453 msgstr ""
25454
25455 # type: verbatim
25456 #. type: verbatim
25457 #: ../fish/guestfish-actions.pod:732
25458 #, no-wrap
25459 msgid ""
25460 " command-lines 'arguments ...'\n"
25461 "\n"
25462 msgstr ""
25463
25464 # type: textblock
25465 #. type: textblock
25466 #: ../fish/guestfish-actions.pod:734
25467 msgid ""
25468 "This is the same as L</command>, but splits the result into a list of lines."
25469 msgstr ""
25470
25471 # type: textblock
25472 #. type: textblock
25473 #: ../fish/guestfish-actions.pod:737
25474 msgid "See also: L</sh-lines>"
25475 msgstr ""
25476
25477 # type: =head2
25478 #. type: =head2
25479 #: ../fish/guestfish-actions.pod:742
25480 msgid "config"
25481 msgstr ""
25482
25483 # type: verbatim
25484 #. type: verbatim
25485 #: ../fish/guestfish-actions.pod:744
25486 #, no-wrap
25487 msgid ""
25488 " config qemuparam qemuvalue\n"
25489 "\n"
25490 msgstr ""
25491
25492 # type: =head2
25493 #. type: =head2
25494 #: ../fish/guestfish-actions.pod:755
25495 msgid "copy-size"
25496 msgstr ""
25497
25498 # type: verbatim
25499 #. type: verbatim
25500 #: ../fish/guestfish-actions.pod:757
25501 #, no-wrap
25502 msgid ""
25503 " copy-size src dest size\n"
25504 "\n"
25505 msgstr ""
25506
25507 # type: =head2
25508 #. type: =head2
25509 #: ../fish/guestfish-actions.pod:765
25510 msgid "cp"
25511 msgstr ""
25512
25513 # type: verbatim
25514 #. type: verbatim
25515 #: ../fish/guestfish-actions.pod:767
25516 #, no-wrap
25517 msgid ""
25518 " cp src dest\n"
25519 "\n"
25520 msgstr ""
25521
25522 # type: =head2
25523 #. type: =head2
25524 #: ../fish/guestfish-actions.pod:772
25525 msgid "cp-a"
25526 msgstr ""
25527
25528 # type: verbatim
25529 #. type: verbatim
25530 #: ../fish/guestfish-actions.pod:774
25531 #, no-wrap
25532 msgid ""
25533 " cp-a src dest\n"
25534 "\n"
25535 msgstr ""
25536
25537 # type: =head2
25538 #. type: =head2
25539 #: ../fish/guestfish-actions.pod:779
25540 msgid "dd"
25541 msgstr ""
25542
25543 # type: verbatim
25544 #. type: verbatim
25545 #: ../fish/guestfish-actions.pod:781
25546 #, no-wrap
25547 msgid ""
25548 " dd src dest\n"
25549 "\n"
25550 msgstr ""
25551
25552 # type: textblock
25553 #. type: textblock
25554 #: ../fish/guestfish-actions.pod:788
25555 msgid ""
25556 "If the destination is a device, it must be as large or larger than the "
25557 "source file or device, otherwise the copy will fail.  This command cannot do "
25558 "partial copies (see L</copy-size>)."
25559 msgstr ""
25560
25561 # type: =head2
25562 #. type: =head2
25563 #: ../fish/guestfish-actions.pod:792
25564 msgid "df"
25565 msgstr ""
25566
25567 # type: verbatim
25568 #. type: verbatim
25569 #: ../fish/guestfish-actions.pod:794
25570 #, no-wrap
25571 msgid ""
25572 " df\n"
25573 "\n"
25574 msgstr ""
25575
25576 # type: textblock
25577 #. type: textblock
25578 #: ../fish/guestfish-actions.pod:798 ../fish/guestfish-actions.pod:809
25579 msgid ""
25580 "This command is mostly useful for interactive sessions.  It is I<not> "
25581 "intended that you try to parse the output string.  Use L</statvfs> from "
25582 "programs."
25583 msgstr ""
25584
25585 # type: =head2
25586 #. type: =head2
25587 #: ../fish/guestfish-actions.pod:802
25588 msgid "df-h"
25589 msgstr ""
25590
25591 # type: verbatim
25592 #. type: verbatim
25593 #: ../fish/guestfish-actions.pod:804
25594 #, no-wrap
25595 msgid ""
25596 " df-h\n"
25597 "\n"
25598 msgstr ""
25599
25600 # type: =head2
25601 #. type: =head2
25602 #: ../fish/guestfish-actions.pod:813
25603 msgid "dmesg"
25604 msgstr ""
25605
25606 # type: verbatim
25607 #. type: verbatim
25608 #: ../fish/guestfish-actions.pod:815
25609 #, no-wrap
25610 msgid ""
25611 " dmesg\n"
25612 "\n"
25613 msgstr ""
25614
25615 # type: textblock
25616 #. type: textblock
25617 #: ../fish/guestfish-actions.pod:821
25618 msgid ""
25619 "Another way to get the same information is to enable verbose messages with "
25620 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
25621 "before running the program."
25622 msgstr ""
25623
25624 # type: =head2
25625 #. type: =head2
25626 #: ../fish/guestfish-actions.pod:826
25627 msgid "download"
25628 msgstr ""
25629
25630 # type: verbatim
25631 #. type: verbatim
25632 #: ../fish/guestfish-actions.pod:828
25633 #, no-wrap
25634 msgid ""
25635 " download remotefilename (filename|-)\n"
25636 "\n"
25637 msgstr ""
25638
25639 # type: textblock
25640 #. type: textblock
25641 #: ../fish/guestfish-actions.pod:835
25642 msgid "See also L</upload>, L</cat>."
25643 msgstr ""
25644
25645 # type: =head2
25646 #. type: =head2
25647 #: ../fish/guestfish-actions.pod:839
25648 msgid "download-offset"
25649 msgstr ""
25650
25651 # type: verbatim
25652 #. type: verbatim
25653 #: ../fish/guestfish-actions.pod:841
25654 #, no-wrap
25655 msgid ""
25656 " download-offset remotefilename (filename|-) offset size\n"
25657 "\n"
25658 msgstr ""
25659
25660 # type: textblock
25661 #. type: textblock
25662 #: ../fish/guestfish-actions.pod:849
25663 msgid ""
25664 "Note that there is no limit on the amount of data that can be downloaded "
25665 "with this call, unlike with L</pread>, and this call always reads the full "
25666 "amount unless an error occurs."
25667 msgstr ""
25668
25669 # type: textblock
25670 #. type: textblock
25671 #: ../fish/guestfish-actions.pod:854
25672 msgid "See also L</download>, L</pread>."
25673 msgstr ""
25674
25675 # type: =head2
25676 #. type: =head2
25677 #: ../fish/guestfish-actions.pod:858
25678 msgid "drop-caches"
25679 msgstr ""
25680
25681 # type: verbatim
25682 #. type: verbatim
25683 #: ../fish/guestfish-actions.pod:860
25684 #, no-wrap
25685 msgid ""
25686 " drop-caches whattodrop\n"
25687 "\n"
25688 msgstr ""
25689
25690 # type: =head2
25691 #. type: =head2
25692 #: ../fish/guestfish-actions.pod:872
25693 msgid "du"
25694 msgstr ""
25695
25696 # type: verbatim
25697 #. type: verbatim
25698 #: ../fish/guestfish-actions.pod:874
25699 #, no-wrap
25700 msgid ""
25701 " du path\n"
25702 "\n"
25703 msgstr ""
25704
25705 # type: =head2
25706 #. type: =head2
25707 #: ../fish/guestfish-actions.pod:886
25708 msgid "e2fsck-f"
25709 msgstr ""
25710
25711 # type: verbatim
25712 #. type: verbatim
25713 #: ../fish/guestfish-actions.pod:888
25714 #, no-wrap
25715 msgid ""
25716 " e2fsck-f device\n"
25717 "\n"
25718 msgstr ""
25719
25720 # type: textblock
25721 #. type: textblock
25722 #: ../fish/guestfish-actions.pod:894
25723 msgid ""
25724 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
25725 "should use L</fsck>."
25726 msgstr ""
25727
25728 # type: =head2
25729 #. type: =head2
25730 #: ../fish/guestfish-actions.pod:897
25731 msgid "echo-daemon"
25732 msgstr ""
25733
25734 # type: verbatim
25735 #. type: verbatim
25736 #: ../fish/guestfish-actions.pod:899
25737 #, no-wrap
25738 msgid ""
25739 " echo-daemon 'words ...'\n"
25740 "\n"
25741 msgstr ""
25742
25743 # type: textblock
25744 #. type: textblock
25745 #: ../fish/guestfish-actions.pod:906
25746 msgid "See also L</ping-daemon>."
25747 msgstr ""
25748
25749 # type: =head2
25750 #. type: =head2
25751 #: ../fish/guestfish-actions.pod:908
25752 msgid "egrep"
25753 msgstr ""
25754
25755 # type: verbatim
25756 #. type: verbatim
25757 #: ../fish/guestfish-actions.pod:910
25758 #, no-wrap
25759 msgid ""
25760 " egrep regex path\n"
25761 "\n"
25762 msgstr ""
25763
25764 # type: =head2
25765 #. type: =head2
25766 #: ../fish/guestfish-actions.pod:918
25767 msgid "egrepi"
25768 msgstr ""
25769
25770 # type: verbatim
25771 #. type: verbatim
25772 #: ../fish/guestfish-actions.pod:920
25773 #, no-wrap
25774 msgid ""
25775 " egrepi regex path\n"
25776 "\n"
25777 msgstr ""
25778
25779 # type: =head2
25780 #. type: =head2
25781 #: ../fish/guestfish-actions.pod:928
25782 msgid "equal"
25783 msgstr ""
25784
25785 # type: verbatim
25786 #. type: verbatim
25787 #: ../fish/guestfish-actions.pod:930
25788 #, no-wrap
25789 msgid ""
25790 " equal file1 file2\n"
25791 "\n"
25792 msgstr ""
25793
25794 # type: =head2
25795 #. type: =head2
25796 #: ../fish/guestfish-actions.pod:937
25797 msgid "exists"
25798 msgstr ""
25799
25800 # type: verbatim
25801 #. type: verbatim
25802 #: ../fish/guestfish-actions.pod:939
25803 #, no-wrap
25804 msgid ""
25805 " exists path\n"
25806 "\n"
25807 msgstr ""
25808
25809 # type: textblock
25810 #. type: textblock
25811 #: ../fish/guestfish-actions.pod:944
25812 msgid "See also L</is-file>, L</is-dir>, L</stat>."
25813 msgstr ""
25814
25815 # type: =head2
25816 #. type: =head2
25817 #: ../fish/guestfish-actions.pod:946
25818 msgid "fallocate"
25819 msgstr ""
25820
25821 # type: verbatim
25822 #. type: verbatim
25823 #: ../fish/guestfish-actions.pod:948
25824 #, no-wrap
25825 msgid ""
25826 " fallocate path len\n"
25827 "\n"
25828 msgstr ""
25829
25830 #. type: textblock
25831 #: ../fish/guestfish-actions.pod:958
25832 msgid ""
25833 "This function is deprecated.  In new code, use the L</fallocate64> call "
25834 "instead."
25835 msgstr ""
25836
25837 # type: =head2
25838 #. type: =head2
25839 #: ../fish/guestfish-actions.pod:965
25840 msgid "fallocate64"
25841 msgstr ""
25842
25843 # type: verbatim
25844 #. type: verbatim
25845 #: ../fish/guestfish-actions.pod:967
25846 #, no-wrap
25847 msgid ""
25848 " fallocate64 path len\n"
25849 "\n"
25850 msgstr ""
25851
25852 # type: textblock
25853 #. type: textblock
25854 #: ../fish/guestfish-actions.pod:973
25855 msgid ""
25856 "Note that this call allocates disk blocks for the file.  To create a sparse "
25857 "file use L</truncate-size> instead."
25858 msgstr ""
25859
25860 # type: textblock
25861 #. type: textblock
25862 #: ../fish/guestfish-actions.pod:976
25863 msgid ""
25864 "The deprecated call L</fallocate> does the same, but owing to an oversight "
25865 "it only allowed 30 bit lengths to be specified, effectively limiting the "
25866 "maximum size of files created through that call to 1GB."
25867 msgstr ""
25868
25869 # type: =head2
25870 #. type: =head2
25871 #: ../fish/guestfish-actions.pod:985
25872 msgid "fgrep"
25873 msgstr ""
25874
25875 # type: verbatim
25876 #. type: verbatim
25877 #: ../fish/guestfish-actions.pod:987
25878 #, no-wrap
25879 msgid ""
25880 " fgrep pattern path\n"
25881 "\n"
25882 msgstr ""
25883
25884 # type: =head2
25885 #. type: =head2
25886 #: ../fish/guestfish-actions.pod:995
25887 msgid "fgrepi"
25888 msgstr ""
25889
25890 # type: verbatim
25891 #. type: verbatim
25892 #: ../fish/guestfish-actions.pod:997
25893 #, no-wrap
25894 msgid ""
25895 " fgrepi pattern path\n"
25896 "\n"
25897 msgstr ""
25898
25899 # type: =head2
25900 #. type: =head2
25901 #: ../fish/guestfish-actions.pod:1005
25902 msgid "file"
25903 msgstr ""
25904
25905 # type: verbatim
25906 #. type: verbatim
25907 #: ../fish/guestfish-actions.pod:1007
25908 #, no-wrap
25909 msgid ""
25910 " file path\n"
25911 "\n"
25912 msgstr ""
25913
25914 #. type: textblock
25915 #: ../fish/guestfish-actions.pod:1023
25916 msgid ""
25917 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
25918 "(etc)."
25919 msgstr ""
25920
25921 # type: =head2
25922 #. type: =head2
25923 #: ../fish/guestfish-actions.pod:1026
25924 msgid "file-architecture"
25925 msgstr ""
25926
25927 # type: verbatim
25928 #. type: verbatim
25929 #: ../fish/guestfish-actions.pod:1028
25930 #, no-wrap
25931 msgid ""
25932 " file-architecture filename\n"
25933 "\n"
25934 msgstr ""
25935
25936 # type: =head2
25937 #. type: =head2
25938 #: ../fish/guestfish-actions.pod:1131
25939 msgid "filesize"
25940 msgstr ""
25941
25942 # type: verbatim
25943 #. type: verbatim
25944 #: ../fish/guestfish-actions.pod:1133
25945 #, no-wrap
25946 msgid ""
25947 " filesize file\n"
25948 "\n"
25949 msgstr ""
25950
25951 # type: textblock
25952 #. type: textblock
25953 #: ../fish/guestfish-actions.pod:1137
25954 msgid ""
25955 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
25956 "file> etc.  To get the size of block devices, use L</blockdev-getsize64>."
25957 msgstr ""
25958
25959 # type: =head2
25960 #. type: =head2
25961 #: ../fish/guestfish-actions.pod:1141
25962 msgid "fill"
25963 msgstr ""
25964
25965 # type: verbatim
25966 #. type: verbatim
25967 #: ../fish/guestfish-actions.pod:1143
25968 #, no-wrap
25969 msgid ""
25970 " fill c len path\n"
25971 "\n"
25972 msgstr ""
25973
25974 # type: textblock
25975 #. type: textblock
25976 #: ../fish/guestfish-actions.pod:1149
25977 msgid ""
25978 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
25979 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
25980 "L</fill-pattern>."
25981 msgstr ""
25982
25983 # type: =head2
25984 #. type: =head2
25985 #: ../fish/guestfish-actions.pod:1154
25986 msgid "fill-pattern"
25987 msgstr ""
25988
25989 # type: verbatim
25990 #. type: verbatim
25991 #: ../fish/guestfish-actions.pod:1156
25992 #, no-wrap
25993 msgid ""
25994 " fill-pattern pattern len path\n"
25995 "\n"
25996 msgstr ""
25997
25998 # type: textblock
25999 #. type: textblock
26000 #: ../fish/guestfish-actions.pod:1158
26001 msgid ""
26002 "This function is like L</fill> except that it creates a new file of length "
26003 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
26004 "is truncated if necessary to ensure the length of the file is exactly C<len> "
26005 "bytes."
26006 msgstr ""
26007
26008 # type: =head2
26009 #. type: =head2
26010 #: ../fish/guestfish-actions.pod:1163
26011 msgid "find"
26012 msgstr ""
26013
26014 # type: verbatim
26015 #. type: verbatim
26016 #: ../fish/guestfish-actions.pod:1165
26017 #, no-wrap
26018 msgid ""
26019 " find directory\n"
26020 "\n"
26021 msgstr ""
26022
26023 # type: textblock
26024 #. type: textblock
26025 #: ../fish/guestfish-actions.pod:1179
26026 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
26027 msgstr ""
26028
26029 # type: textblock
26030 #. type: textblock
26031 #: ../fish/guestfish-actions.pod:1192
26032 msgid "See also L</find0>."
26033 msgstr ""
26034
26035 # type: =head2
26036 #. type: =head2
26037 #: ../fish/guestfish-actions.pod:1197
26038 msgid "find0"
26039 msgstr ""
26040
26041 # type: verbatim
26042 #. type: verbatim
26043 #: ../fish/guestfish-actions.pod:1199
26044 #, no-wrap
26045 msgid ""
26046 " find0 directory (files|-)\n"
26047 "\n"
26048 msgstr ""
26049
26050 # type: textblock
26051 #. type: textblock
26052 #: ../fish/guestfish-actions.pod:1205
26053 msgid ""
26054 "This command works the same way as L</find> with the following exceptions:"
26055 msgstr ""
26056
26057 # type: =head2
26058 #. type: =head2
26059 #: ../fish/guestfish-actions.pod:1232
26060 msgid "findfs-label"
26061 msgstr ""
26062
26063 # type: verbatim
26064 #. type: verbatim
26065 #: ../fish/guestfish-actions.pod:1234
26066 #, no-wrap
26067 msgid ""
26068 " findfs-label label\n"
26069 "\n"
26070 msgstr ""
26071
26072 # type: textblock
26073 #. type: textblock
26074 #: ../fish/guestfish-actions.pod:1240
26075 msgid "To find the label of a filesystem, use L</vfs-label>."
26076 msgstr ""
26077
26078 # type: =head2
26079 #. type: =head2
26080 #: ../fish/guestfish-actions.pod:1242
26081 msgid "findfs-uuid"
26082 msgstr ""
26083
26084 # type: verbatim
26085 #. type: verbatim
26086 #: ../fish/guestfish-actions.pod:1244
26087 #, no-wrap
26088 msgid ""
26089 " findfs-uuid uuid\n"
26090 "\n"
26091 msgstr ""
26092
26093 # type: textblock
26094 #. type: textblock
26095 #: ../fish/guestfish-actions.pod:1250
26096 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
26097 msgstr ""
26098
26099 # type: =head2
26100 #. type: =head2
26101 #: ../fish/guestfish-actions.pod:1252
26102 msgid "fsck"
26103 msgstr ""
26104
26105 # type: verbatim
26106 #. type: verbatim
26107 #: ../fish/guestfish-actions.pod:1254
26108 #, no-wrap
26109 msgid ""
26110 " fsck fstype device\n"
26111 "\n"
26112 msgstr ""
26113
26114 # type: =head2
26115 #. type: =head2
26116 #: ../fish/guestfish-actions.pod:1284
26117 msgid "get-append"
26118 msgstr ""
26119
26120 # type: verbatim
26121 #. type: verbatim
26122 #: ../fish/guestfish-actions.pod:1286
26123 #, no-wrap
26124 msgid ""
26125 " get-append\n"
26126 "\n"
26127 msgstr ""
26128
26129 #. type: =head2
26130 #: ../fish/guestfish-actions.pod:1293
26131 msgid "get-attach-method"
26132 msgstr ""
26133
26134 #. type: verbatim
26135 #: ../fish/guestfish-actions.pod:1295
26136 #, no-wrap
26137 msgid ""
26138 " get-attach-method\n"
26139 "\n"
26140 msgstr ""
26141
26142 #. type: textblock
26143 #: ../fish/guestfish-actions.pod:1297
26144 msgid "Return the current attach method.  See L</set-attach-method>."
26145 msgstr ""
26146
26147 # type: =head2
26148 #. type: =head2
26149 #: ../fish/guestfish-actions.pod:1299
26150 msgid "get-autosync"
26151 msgstr ""
26152
26153 # type: verbatim
26154 #. type: verbatim
26155 #: ../fish/guestfish-actions.pod:1301
26156 #, no-wrap
26157 msgid ""
26158 " get-autosync\n"
26159 "\n"
26160 msgstr ""
26161
26162 # type: =head2
26163 #. type: =head2
26164 #: ../fish/guestfish-actions.pod:1305
26165 msgid "get-direct"
26166 msgstr ""
26167
26168 # type: verbatim
26169 #. type: verbatim
26170 #: ../fish/guestfish-actions.pod:1307
26171 #, no-wrap
26172 msgid ""
26173 " get-direct\n"
26174 "\n"
26175 msgstr ""
26176
26177 # type: =head2
26178 #. type: =head2
26179 #: ../fish/guestfish-actions.pod:1311
26180 msgid "get-e2label"
26181 msgstr ""
26182
26183 # type: verbatim
26184 #. type: verbatim
26185 #: ../fish/guestfish-actions.pod:1313
26186 #, no-wrap
26187 msgid ""
26188 " get-e2label device\n"
26189 "\n"
26190 msgstr ""
26191
26192 #. type: textblock
26193 #: ../fish/guestfish-actions.pod:1318
26194 msgid ""
26195 "This function is deprecated.  In new code, use the L</vfs_label> call "
26196 "instead."
26197 msgstr ""
26198
26199 # type: =head2
26200 #. type: =head2
26201 #: ../fish/guestfish-actions.pod:1325
26202 msgid "get-e2uuid"
26203 msgstr ""
26204
26205 # type: verbatim
26206 #. type: verbatim
26207 #: ../fish/guestfish-actions.pod:1327
26208 #, no-wrap
26209 msgid ""
26210 " get-e2uuid device\n"
26211 "\n"
26212 msgstr ""
26213
26214 #. type: textblock
26215 #: ../fish/guestfish-actions.pod:1332
26216 msgid ""
26217 "This function is deprecated.  In new code, use the L</vfs_uuid> call instead."
26218 msgstr ""
26219
26220 # type: =head2
26221 #. type: =head2
26222 #: ../fish/guestfish-actions.pod:1339
26223 msgid "get-memsize"
26224 msgstr ""
26225
26226 # type: verbatim
26227 #. type: verbatim
26228 #: ../fish/guestfish-actions.pod:1341
26229 #, no-wrap
26230 msgid ""
26231 " get-memsize\n"
26232 "\n"
26233 msgstr ""
26234
26235 # type: textblock
26236 #. type: textblock
26237 #: ../fish/guestfish-actions.pod:1346
26238 msgid ""
26239 "If L</set-memsize> was not called on this handle, and if "
26240 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
26241 "value for memsize."
26242 msgstr ""
26243
26244 # type: =head2
26245 #. type: =head2
26246 #: ../fish/guestfish-actions.pod:1353
26247 msgid "get-network"
26248 msgstr ""
26249
26250 # type: verbatim
26251 #. type: verbatim
26252 #: ../fish/guestfish-actions.pod:1355
26253 #, no-wrap
26254 msgid ""
26255 " get-network\n"
26256 "\n"
26257 msgstr ""
26258
26259 # type: =head2
26260 #. type: =head2
26261 #: ../fish/guestfish-actions.pod:1359
26262 msgid "get-path"
26263 msgstr ""
26264
26265 # type: verbatim
26266 #. type: verbatim
26267 #: ../fish/guestfish-actions.pod:1361
26268 #, no-wrap
26269 msgid ""
26270 " get-path\n"
26271 "\n"
26272 msgstr ""
26273
26274 # type: =head2
26275 #. type: =head2
26276 #: ../fish/guestfish-actions.pod:1368
26277 msgid "get-pid"
26278 msgstr ""
26279
26280 # type: =head2
26281 #. type: =head2
26282 #: ../fish/guestfish-actions.pod:1370
26283 msgid "pid"
26284 msgstr ""
26285
26286 # type: verbatim
26287 #. type: verbatim
26288 #: ../fish/guestfish-actions.pod:1372
26289 #, no-wrap
26290 msgid ""
26291 " get-pid\n"
26292 "\n"
26293 msgstr ""
26294
26295 # type: =head2
26296 #. type: =head2
26297 #: ../fish/guestfish-actions.pod:1379
26298 msgid "get-qemu"
26299 msgstr ""
26300
26301 # type: verbatim
26302 #. type: verbatim
26303 #: ../fish/guestfish-actions.pod:1381
26304 #, no-wrap
26305 msgid ""
26306 " get-qemu\n"
26307 "\n"
26308 msgstr ""
26309
26310 # type: =head2
26311 #. type: =head2
26312 #: ../fish/guestfish-actions.pod:1388
26313 msgid "get-recovery-proc"
26314 msgstr ""
26315
26316 # type: verbatim
26317 #. type: verbatim
26318 #: ../fish/guestfish-actions.pod:1390
26319 #, no-wrap
26320 msgid ""
26321 " get-recovery-proc\n"
26322 "\n"
26323 msgstr ""
26324
26325 # type: =head2
26326 #. type: =head2
26327 #: ../fish/guestfish-actions.pod:1394
26328 msgid "get-selinux"
26329 msgstr ""
26330
26331 # type: verbatim
26332 #. type: verbatim
26333 #: ../fish/guestfish-actions.pod:1396
26334 #, no-wrap
26335 msgid ""
26336 " get-selinux\n"
26337 "\n"
26338 msgstr ""
26339
26340 # type: textblock
26341 #. type: textblock
26342 #: ../fish/guestfish-actions.pod:1398
26343 msgid ""
26344 "This returns the current setting of the selinux flag which is passed to the "
26345 "appliance at boot time.  See L</set-selinux>."
26346 msgstr ""
26347
26348 # type: =head2
26349 #. type: =head2
26350 #: ../fish/guestfish-actions.pod:1404
26351 msgid "get-state"
26352 msgstr ""
26353
26354 # type: verbatim
26355 #. type: verbatim
26356 #: ../fish/guestfish-actions.pod:1406
26357 #, no-wrap
26358 msgid ""
26359 " get-state\n"
26360 "\n"
26361 msgstr ""
26362
26363 # type: =head2
26364 #. type: =head2
26365 #: ../fish/guestfish-actions.pod:1413
26366 msgid "get-trace"
26367 msgstr ""
26368
26369 # type: verbatim
26370 #. type: verbatim
26371 #: ../fish/guestfish-actions.pod:1415
26372 #, no-wrap
26373 msgid ""
26374 " get-trace\n"
26375 "\n"
26376 msgstr ""
26377
26378 # type: =head2
26379 #. type: =head2
26380 #: ../fish/guestfish-actions.pod:1419
26381 msgid "get-umask"
26382 msgstr ""
26383
26384 # type: verbatim
26385 #. type: verbatim
26386 #: ../fish/guestfish-actions.pod:1421
26387 #, no-wrap
26388 msgid ""
26389 " get-umask\n"
26390 "\n"
26391 msgstr ""
26392
26393 # type: textblock
26394 #. type: textblock
26395 #: ../fish/guestfish-actions.pod:1423
26396 msgid ""
26397 "Return the current umask.  By default the umask is C<022> unless it has been "
26398 "set by calling L</umask>."
26399 msgstr ""
26400
26401 # type: =head2
26402 #. type: =head2
26403 #: ../fish/guestfish-actions.pod:1426
26404 msgid "get-verbose"
26405 msgstr ""
26406
26407 # type: verbatim
26408 #. type: verbatim
26409 #: ../fish/guestfish-actions.pod:1428
26410 #, no-wrap
26411 msgid ""
26412 " get-verbose\n"
26413 "\n"
26414 msgstr ""
26415
26416 # type: =head2
26417 #. type: =head2
26418 #: ../fish/guestfish-actions.pod:1432
26419 msgid "getcon"
26420 msgstr ""
26421
26422 # type: verbatim
26423 #. type: verbatim
26424 #: ../fish/guestfish-actions.pod:1434
26425 #, no-wrap
26426 msgid ""
26427 " getcon\n"
26428 "\n"
26429 msgstr ""
26430
26431 # type: textblock
26432 #. type: textblock
26433 #: ../fish/guestfish-actions.pod:1438
26434 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
26435 msgstr ""
26436
26437 # type: =head2
26438 #. type: =head2
26439 #: ../fish/guestfish-actions.pod:1441
26440 msgid "getxattr"
26441 msgstr ""
26442
26443 # type: verbatim
26444 #. type: verbatim
26445 #: ../fish/guestfish-actions.pod:1443
26446 #, no-wrap
26447 msgid ""
26448 " getxattr path name\n"
26449 "\n"
26450 msgstr ""
26451
26452 # type: textblock
26453 #. type: textblock
26454 #: ../fish/guestfish-actions.pod:1445
26455 msgid ""
26456 "Get a single extended attribute from file C<path> named C<name>.  This call "
26457 "follows symlinks.  If you want to lookup an extended attribute for the "
26458 "symlink itself, use L</lgetxattr>."
26459 msgstr ""
26460
26461 # type: textblock
26462 #. type: textblock
26463 #: ../fish/guestfish-actions.pod:1449 ../fish/guestfish-actions.pod:2455
26464 msgid ""
26465 "Normally it is better to get all extended attributes from a file in one go "
26466 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
26467 "buggy and do not provide a way to list out attributes.  For these "
26468 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
26469 "attributes you want in advance and call this function."
26470 msgstr ""
26471
26472 # type: textblock
26473 #. type: textblock
26474 #: ../fish/guestfish-actions.pod:1459
26475 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
26476 msgstr ""
26477
26478 # type: =head2
26479 #. type: =head2
26480 #: ../fish/guestfish-actions.pod:1461
26481 msgid "getxattrs"
26482 msgstr ""
26483
26484 # type: verbatim
26485 #. type: verbatim
26486 #: ../fish/guestfish-actions.pod:1463
26487 #, no-wrap
26488 msgid ""
26489 " getxattrs path\n"
26490 "\n"
26491 msgstr ""
26492
26493 # type: textblock
26494 #. type: textblock
26495 #: ../fish/guestfish-actions.pod:1471
26496 msgid "See also: L</lgetxattrs>, L<attr(5)>."
26497 msgstr ""
26498
26499 # type: =head2
26500 #. type: =head2
26501 #: ../fish/guestfish-actions.pod:1473
26502 msgid "glob-expand"
26503 msgstr ""
26504
26505 # type: verbatim
26506 #. type: verbatim
26507 #: ../fish/guestfish-actions.pod:1475
26508 #, no-wrap
26509 msgid ""
26510 " glob-expand pattern\n"
26511 "\n"
26512 msgstr ""
26513
26514 # type: =head2
26515 #. type: =head2
26516 #: ../fish/guestfish-actions.pod:1488
26517 msgid "grep"
26518 msgstr ""
26519
26520 # type: verbatim
26521 #. type: verbatim
26522 #: ../fish/guestfish-actions.pod:1490
26523 #, no-wrap
26524 msgid ""
26525 " grep regex path\n"
26526 "\n"
26527 msgstr ""
26528
26529 # type: =head2
26530 #. type: =head2
26531 #: ../fish/guestfish-actions.pod:1498
26532 msgid "grepi"
26533 msgstr ""
26534
26535 # type: verbatim
26536 #. type: verbatim
26537 #: ../fish/guestfish-actions.pod:1500
26538 #, no-wrap
26539 msgid ""
26540 " grepi regex path\n"
26541 "\n"
26542 msgstr ""
26543
26544 # type: =head2
26545 #. type: =head2
26546 #: ../fish/guestfish-actions.pod:1508
26547 msgid "grub-install"
26548 msgstr ""
26549
26550 # type: verbatim
26551 #. type: verbatim
26552 #: ../fish/guestfish-actions.pod:1510
26553 #, no-wrap
26554 msgid ""
26555 " grub-install root device\n"
26556 "\n"
26557 msgstr ""
26558
26559 # type: =head2
26560 #. type: =head2
26561 #: ../fish/guestfish-actions.pod:1526
26562 msgid "head"
26563 msgstr ""
26564
26565 # type: verbatim
26566 #. type: verbatim
26567 #: ../fish/guestfish-actions.pod:1528
26568 #, no-wrap
26569 msgid ""
26570 " head path\n"
26571 "\n"
26572 msgstr ""
26573
26574 # type: =head2
26575 #. type: =head2
26576 #: ../fish/guestfish-actions.pod:1536
26577 msgid "head-n"
26578 msgstr ""
26579
26580 # type: verbatim
26581 #. type: verbatim
26582 #: ../fish/guestfish-actions.pod:1538
26583 #, no-wrap
26584 msgid ""
26585 " head-n nrlines path\n"
26586 "\n"
26587 msgstr ""
26588
26589 # type: =head2
26590 #. type: =head2
26591 #: ../fish/guestfish-actions.pod:1551
26592 msgid "hexdump"
26593 msgstr ""
26594
26595 # type: verbatim
26596 #. type: verbatim
26597 #: ../fish/guestfish-actions.pod:1553
26598 #, no-wrap
26599 msgid ""
26600 " hexdump path\n"
26601 "\n"
26602 msgstr ""
26603
26604 # type: =head2
26605 #. type: =head2
26606 #: ../fish/guestfish-actions.pod:1561
26607 msgid "initrd-cat"
26608 msgstr ""
26609
26610 # type: verbatim
26611 #. type: verbatim
26612 #: ../fish/guestfish-actions.pod:1563
26613 #, no-wrap
26614 msgid ""
26615 " initrd-cat initrdpath filename\n"
26616 "\n"
26617 msgstr ""
26618
26619 # type: textblock
26620 #. type: textblock
26621 #: ../fish/guestfish-actions.pod:1575
26622 msgid "See also L</initrd-list>."
26623 msgstr ""
26624
26625 # type: =head2
26626 #. type: =head2
26627 #: ../fish/guestfish-actions.pod:1580
26628 msgid "initrd-list"
26629 msgstr ""
26630
26631 # type: verbatim
26632 #. type: verbatim
26633 #: ../fish/guestfish-actions.pod:1582
26634 #, no-wrap
26635 msgid ""
26636 " initrd-list path\n"
26637 "\n"
26638 msgstr ""
26639
26640 # type: =head2
26641 #. type: =head2
26642 #: ../fish/guestfish-actions.pod:1594
26643 msgid "inotify-add-watch"
26644 msgstr ""
26645
26646 # type: verbatim
26647 #. type: verbatim
26648 #: ../fish/guestfish-actions.pod:1596
26649 #, no-wrap
26650 msgid ""
26651 " inotify-add-watch path mask\n"
26652 "\n"
26653 msgstr ""
26654
26655 # type: =head2
26656 #. type: =head2
26657 #: ../fish/guestfish-actions.pod:1608
26658 msgid "inotify-close"
26659 msgstr ""
26660
26661 # type: verbatim
26662 #. type: verbatim
26663 #: ../fish/guestfish-actions.pod:1610
26664 #, no-wrap
26665 msgid ""
26666 " inotify-close\n"
26667 "\n"
26668 msgstr ""
26669
26670 # type: =head2
26671 #. type: =head2
26672 #: ../fish/guestfish-actions.pod:1616
26673 msgid "inotify-files"
26674 msgstr ""
26675
26676 # type: verbatim
26677 #. type: verbatim
26678 #: ../fish/guestfish-actions.pod:1618
26679 #, no-wrap
26680 msgid ""
26681 " inotify-files\n"
26682 "\n"
26683 msgstr ""
26684
26685 # type: textblock
26686 #. type: textblock
26687 #: ../fish/guestfish-actions.pod:1620
26688 msgid ""
26689 "This function is a helpful wrapper around L</inotify-read> which just "
26690 "returns a list of pathnames of objects that were touched.  The returned "
26691 "pathnames are sorted and deduplicated."
26692 msgstr ""
26693
26694 # type: =head2
26695 #. type: =head2
26696 #: ../fish/guestfish-actions.pod:1624
26697 msgid "inotify-init"
26698 msgstr ""
26699
26700 # type: verbatim
26701 #. type: verbatim
26702 #: ../fish/guestfish-actions.pod:1626
26703 #, no-wrap
26704 msgid ""
26705 " inotify-init maxevents\n"
26706 "\n"
26707 msgstr ""
26708
26709 # type: textblock
26710 #. type: textblock
26711 #: ../fish/guestfish-actions.pod:1632
26712 msgid ""
26713 "C<maxevents> is the maximum number of events which will be queued up between "
26714 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
26715 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
26716 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
26717 "but records the fact that it threw them away by setting a flag "
26718 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
26719 msgstr ""
26720
26721 # type: textblock
26722 #. type: textblock
26723 #: ../fish/guestfish-actions.pod:1642
26724 msgid ""
26725 "Before any events are generated, you have to add some watches to the "
26726 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
26727 "L</inotify-watch-all>."
26728 msgstr ""
26729
26730 # type: textblock
26731 #. type: textblock
26732 #: ../fish/guestfish-actions.pod:1648
26733 msgid ""
26734 "Queued up events should be read periodically by calling L</inotify-read> (or "
26735 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
26736 "If you don't read the events out often enough then you risk the internal "
26737 "queue overflowing."
26738 msgstr ""
26739
26740 # type: textblock
26741 #. type: textblock
26742 #: ../fish/guestfish-actions.pod:1655
26743 msgid ""
26744 "The handle should be closed after use by calling L</inotify-close>.  This "
26745 "also removes any watches automatically."
26746 msgstr ""
26747
26748 # type: =head2
26749 #. type: =head2
26750 #: ../fish/guestfish-actions.pod:1664
26751 msgid "inotify-read"
26752 msgstr ""
26753
26754 # type: verbatim
26755 #. type: verbatim
26756 #: ../fish/guestfish-actions.pod:1666
26757 #, no-wrap
26758 msgid ""
26759 " inotify-read\n"
26760 "\n"
26761 msgstr ""
26762
26763 # type: =head2
26764 #. type: =head2
26765 #: ../fish/guestfish-actions.pod:1679
26766 msgid "inotify-rm-watch"
26767 msgstr ""
26768
26769 # type: verbatim
26770 #. type: verbatim
26771 #: ../fish/guestfish-actions.pod:1681
26772 #, no-wrap
26773 msgid ""
26774 " inotify-rm-watch wd\n"
26775 "\n"
26776 msgstr ""
26777
26778 # type: textblock
26779 #. type: textblock
26780 #: ../fish/guestfish-actions.pod:1683
26781 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
26782 msgstr ""
26783
26784 # type: =head2
26785 #. type: =head2
26786 #: ../fish/guestfish-actions.pod:1686
26787 msgid "inspect-get-arch"
26788 msgstr ""
26789
26790 # type: verbatim
26791 #. type: verbatim
26792 #: ../fish/guestfish-actions.pod:1688
26793 #, no-wrap
26794 msgid ""
26795 " inspect-get-arch root\n"
26796 "\n"
26797 msgstr ""
26798
26799 # type: textblock
26800 #. type: textblock
26801 #: ../fish/guestfish-actions.pod:1690 ../fish/guestfish-actions.pod:1706
26802 #: ../fish/guestfish-actions.pod:1792 ../fish/guestfish-actions.pod:1828
26803 #: ../fish/guestfish-actions.pod:1846 ../fish/guestfish-actions.pod:1880
26804 #: ../fish/guestfish-actions.pod:1895 ../fish/guestfish-actions.pod:1916
26805 #: ../fish/guestfish-actions.pod:1931 ../fish/guestfish-actions.pod:1964
26806 #: ../fish/guestfish-actions.pod:1986 ../fish/guestfish-actions.pod:2010
26807 #: ../fish/guestfish-actions.pod:2027 ../fish/guestfish-actions.pod:2070
26808 #: ../fish/guestfish-actions.pod:2105 ../fish/guestfish-actions.pod:2121
26809 #: ../fish/guestfish-actions.pod:2137 ../fish/guestfish-actions.pod:2150
26810 #: ../fish/guestfish-actions.pod:2163 ../fish/guestfish-actions.pod:2178
26811 msgid ""
26812 "This function should only be called with a root device string as returned by "
26813 "L</inspect-os>."
26814 msgstr ""
26815
26816 # type: textblock
26817 #. type: textblock
26818 #: ../fish/guestfish-actions.pod:1693
26819 msgid ""
26820 "This returns the architecture of the inspected operating system.  The "
26821 "possible return values are listed under L</file-architecture>."
26822 msgstr ""
26823
26824 # type: =head2
26825 #. type: =head2
26826 #: ../fish/guestfish-actions.pod:1702
26827 msgid "inspect-get-distro"
26828 msgstr ""
26829
26830 # type: verbatim
26831 #. type: verbatim
26832 #: ../fish/guestfish-actions.pod:1704
26833 #, no-wrap
26834 msgid ""
26835 " inspect-get-distro root\n"
26836 "\n"
26837 msgstr ""
26838
26839 #. type: =head2
26840 #: ../fish/guestfish-actions.pod:1788
26841 msgid "inspect-get-drive-mappings"
26842 msgstr ""
26843
26844 #. type: verbatim
26845 #: ../fish/guestfish-actions.pod:1790
26846 #, no-wrap
26847 msgid ""
26848 " inspect-get-drive-mappings root\n"
26849 "\n"
26850 msgstr ""
26851
26852 #. type: textblock
26853 #: ../fish/guestfish-actions.pod:1820
26854 msgid ""
26855 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26856 "get-mountpoints>, L</inspect-get-filesystems>."
26857 msgstr ""
26858
26859 # type: =head2
26860 #. type: =head2
26861 #: ../fish/guestfish-actions.pod:1824
26862 msgid "inspect-get-filesystems"
26863 msgstr ""
26864
26865 # type: verbatim
26866 #. type: verbatim
26867 #: ../fish/guestfish-actions.pod:1826
26868 #, no-wrap
26869 msgid ""
26870 " inspect-get-filesystems root\n"
26871 "\n"
26872 msgstr ""
26873
26874 # type: textblock
26875 #. type: textblock
26876 #: ../fish/guestfish-actions.pod:1839
26877 msgid ""
26878 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26879 "get-mountpoints>."
26880 msgstr ""
26881
26882 #. type: =head2
26883 #: ../fish/guestfish-actions.pod:1842
26884 msgid "inspect-get-format"
26885 msgstr ""
26886
26887 #. type: verbatim
26888 #: ../fish/guestfish-actions.pod:1844
26889 #, no-wrap
26890 msgid ""
26891 " inspect-get-format root\n"
26892 "\n"
26893 msgstr ""
26894
26895 # type: =head2
26896 #. type: =head2
26897 #: ../fish/guestfish-actions.pod:1876
26898 msgid "inspect-get-hostname"
26899 msgstr ""
26900
26901 # type: verbatim
26902 #. type: verbatim
26903 #: ../fish/guestfish-actions.pod:1878
26904 #, no-wrap
26905 msgid ""
26906 " inspect-get-hostname root\n"
26907 "\n"
26908 msgstr ""
26909
26910 # type: =head2
26911 #. type: =head2
26912 #: ../fish/guestfish-actions.pod:1891
26913 msgid "inspect-get-major-version"
26914 msgstr ""
26915
26916 # type: verbatim
26917 #. type: verbatim
26918 #: ../fish/guestfish-actions.pod:1893
26919 #, no-wrap
26920 msgid ""
26921 " inspect-get-major-version root\n"
26922 "\n"
26923 msgstr ""
26924
26925 # type: =head2
26926 #. type: =head2
26927 #: ../fish/guestfish-actions.pod:1912
26928 msgid "inspect-get-minor-version"
26929 msgstr ""
26930
26931 # type: verbatim
26932 #. type: verbatim
26933 #: ../fish/guestfish-actions.pod:1914
26934 #, no-wrap
26935 msgid ""
26936 " inspect-get-minor-version root\n"
26937 "\n"
26938 msgstr ""
26939
26940 # type: textblock
26941 #. type: textblock
26942 #: ../fish/guestfish-actions.pod:1924
26943 msgid ""
26944 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26945 "get-major-version>."
26946 msgstr ""
26947
26948 # type: =head2
26949 #. type: =head2
26950 #: ../fish/guestfish-actions.pod:1927
26951 msgid "inspect-get-mountpoints"
26952 msgstr ""
26953
26954 # type: verbatim
26955 #. type: verbatim
26956 #: ../fish/guestfish-actions.pod:1929
26957 #, no-wrap
26958 msgid ""
26959 " inspect-get-mountpoints root\n"
26960 "\n"
26961 msgstr ""
26962
26963 #. type: textblock
26964 #: ../fish/guestfish-actions.pod:1951
26965 msgid ""
26966 "For operating systems like Windows which still use drive letters, this call "
26967 "will only return an entry for the first drive \"mounted on\" C</>.  For "
26968 "information about the mapping of drive letters to partitions, see L</inspect-"
26969 "get-drive-mappings>."
26970 msgstr ""
26971
26972 # type: textblock
26973 #. type: textblock
26974 #: ../fish/guestfish-actions.pod:1957
26975 msgid ""
26976 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26977 "get-filesystems>."
26978 msgstr ""
26979
26980 # type: =head2
26981 #. type: =head2
26982 #: ../fish/guestfish-actions.pod:1960
26983 msgid "inspect-get-package-format"
26984 msgstr ""
26985
26986 # type: verbatim
26987 #. type: verbatim
26988 #: ../fish/guestfish-actions.pod:1962
26989 #, no-wrap
26990 msgid ""
26991 " inspect-get-package-format root\n"
26992 "\n"
26993 msgstr ""
26994
26995 # type: textblock
26996 #. type: textblock
26997 #: ../fish/guestfish-actions.pod:1967
26998 msgid ""
26999 "This function and L</inspect-get-package-management> return the package "
27000 "format and package management tool used by the inspected operating system.  "
27001 "For example for Fedora these functions would return C<rpm> (package format) "
27002 "and C<yum> (package management)."
27003 msgstr ""
27004
27005 # type: =head2
27006 #. type: =head2
27007 #: ../fish/guestfish-actions.pod:1982
27008 msgid "inspect-get-package-management"
27009 msgstr ""
27010
27011 # type: verbatim
27012 #. type: verbatim
27013 #: ../fish/guestfish-actions.pod:1984
27014 #, no-wrap
27015 msgid ""
27016 " inspect-get-package-management root\n"
27017 "\n"
27018 msgstr ""
27019
27020 # type: textblock
27021 #. type: textblock
27022 #: ../fish/guestfish-actions.pod:1989
27023 msgid ""
27024 "L</inspect-get-package-format> and this function return the package format "
27025 "and package management tool used by the inspected operating system.  For "
27026 "example for Fedora these functions would return C<rpm> (package format) and "
27027 "C<yum> (package management)."
27028 msgstr ""
27029
27030 # type: =head2
27031 #. type: =head2
27032 #: ../fish/guestfish-actions.pod:2006
27033 msgid "inspect-get-product-name"
27034 msgstr ""
27035
27036 # type: verbatim
27037 #. type: verbatim
27038 #: ../fish/guestfish-actions.pod:2008
27039 #, no-wrap
27040 msgid ""
27041 " inspect-get-product-name root\n"
27042 "\n"
27043 msgstr ""
27044
27045 #. type: =head2
27046 #: ../fish/guestfish-actions.pod:2023
27047 msgid "inspect-get-product-variant"
27048 msgstr ""
27049
27050 #. type: verbatim
27051 #: ../fish/guestfish-actions.pod:2025
27052 #, no-wrap
27053 msgid ""
27054 " inspect-get-product-variant root\n"
27055 "\n"
27056 msgstr ""
27057
27058 #. type: textblock
27059 #: ../fish/guestfish-actions.pod:2049
27060 msgid ""
27061 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
27062 "get-product-name>, L</inspect-get-major-version>."
27063 msgstr ""
27064
27065 # type: =head2
27066 #. type: =head2
27067 #: ../fish/guestfish-actions.pod:2053
27068 msgid "inspect-get-roots"
27069 msgstr ""
27070
27071 # type: verbatim
27072 #. type: verbatim
27073 #: ../fish/guestfish-actions.pod:2055
27074 #, no-wrap
27075 msgid ""
27076 " inspect-get-roots\n"
27077 "\n"
27078 msgstr ""
27079
27080 # type: textblock
27081 #. type: textblock
27082 #: ../fish/guestfish-actions.pod:2057
27083 msgid ""
27084 "This function is a convenient way to get the list of root devices, as "
27085 "returned from a previous call to L</inspect-os>, but without redoing the "
27086 "whole inspection process."
27087 msgstr ""
27088
27089 # type: textblock
27090 #. type: textblock
27091 #: ../fish/guestfish-actions.pod:2061
27092 msgid ""
27093 "This returns an empty list if either no root devices were found or the "
27094 "caller has not called L</inspect-os>."
27095 msgstr ""
27096
27097 # type: =head2
27098 #. type: =head2
27099 #: ../fish/guestfish-actions.pod:2066
27100 msgid "inspect-get-type"
27101 msgstr ""
27102
27103 # type: verbatim
27104 #. type: verbatim
27105 #: ../fish/guestfish-actions.pod:2068
27106 #, no-wrap
27107 msgid ""
27108 " inspect-get-type root\n"
27109 "\n"
27110 msgstr ""
27111
27112 #. type: =head2
27113 #: ../fish/guestfish-actions.pod:2101
27114 msgid "inspect-get-windows-current-control-set"
27115 msgstr ""
27116
27117 #. type: verbatim
27118 #: ../fish/guestfish-actions.pod:2103
27119 #, no-wrap
27120 msgid ""
27121 " inspect-get-windows-current-control-set root\n"
27122 "\n"
27123 msgstr ""
27124
27125 # type: =head2
27126 #. type: =head2
27127 #: ../fish/guestfish-actions.pod:2117
27128 msgid "inspect-get-windows-systemroot"
27129 msgstr ""
27130
27131 # type: verbatim
27132 #. type: verbatim
27133 #: ../fish/guestfish-actions.pod:2119
27134 #, no-wrap
27135 msgid ""
27136 " inspect-get-windows-systemroot root\n"
27137 "\n"
27138 msgstr ""
27139
27140 #. type: =head2
27141 #: ../fish/guestfish-actions.pod:2133
27142 msgid "inspect-is-live"
27143 msgstr ""
27144
27145 #. type: verbatim
27146 #: ../fish/guestfish-actions.pod:2135
27147 #, no-wrap
27148 msgid ""
27149 " inspect-is-live root\n"
27150 "\n"
27151 msgstr ""
27152
27153 #. type: textblock
27154 #: ../fish/guestfish-actions.pod:2140
27155 msgid ""
27156 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
27157 "then this returns true if a live image was detected on the disk."
27158 msgstr ""
27159
27160 #. type: =head2
27161 #: ../fish/guestfish-actions.pod:2146
27162 msgid "inspect-is-multipart"
27163 msgstr ""
27164
27165 #. type: verbatim
27166 #: ../fish/guestfish-actions.pod:2148
27167 #, no-wrap
27168 msgid ""
27169 " inspect-is-multipart root\n"
27170 "\n"
27171 msgstr ""
27172
27173 #. type: textblock
27174 #: ../fish/guestfish-actions.pod:2153
27175 msgid ""
27176 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
27177 "then this returns true if the disk is part of a set."
27178 msgstr ""
27179
27180 #. type: =head2
27181 #: ../fish/guestfish-actions.pod:2159
27182 msgid "inspect-is-netinst"
27183 msgstr ""
27184
27185 #. type: verbatim
27186 #: ../fish/guestfish-actions.pod:2161
27187 #, no-wrap
27188 msgid ""
27189 " inspect-is-netinst root\n"
27190 "\n"
27191 msgstr ""
27192
27193 #. type: textblock
27194 #: ../fish/guestfish-actions.pod:2166
27195 msgid ""
27196 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
27197 "then this returns true if the disk is a network installer, ie. not a self-"
27198 "contained install CD but one which is likely to require network access to "
27199 "complete the install."
27200 msgstr ""
27201
27202 # type: =head2
27203 #. type: =head2
27204 #: ../fish/guestfish-actions.pod:2174
27205 msgid "inspect-list-applications"
27206 msgstr ""
27207
27208 # type: verbatim
27209 #. type: verbatim
27210 #: ../fish/guestfish-actions.pod:2176
27211 #, no-wrap
27212 msgid ""
27213 " inspect-list-applications root\n"
27214 "\n"
27215 msgstr ""
27216
27217 # type: textblock
27218 #. type: textblock
27219 #: ../fish/guestfish-actions.pod:2183
27220 msgid ""
27221 "I<Note:> This call works differently from other parts of the inspection "
27222 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
27223 "then mount up the disks, before calling this.  Listing applications is a "
27224 "significantly more difficult operation which requires access to the full "
27225 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
27226 "are just returning data cached in the libguestfs handle, this call actually "
27227 "reads parts of the mounted filesystems during the call."
27228 msgstr ""
27229
27230 # type: =head2
27231 #. type: =head2
27232 #: ../fish/guestfish-actions.pod:2273
27233 msgid "inspect-os"
27234 msgstr ""
27235
27236 # type: verbatim
27237 #. type: verbatim
27238 #: ../fish/guestfish-actions.pod:2275
27239 #, no-wrap
27240 msgid ""
27241 " inspect-os\n"
27242 "\n"
27243 msgstr ""
27244
27245 # type: textblock
27246 #. type: textblock
27247 #: ../fish/guestfish-actions.pod:2290
27248 msgid ""
27249 "You can pass the root string(s) returned to other L</inspect-get-*> "
27250 "functions in order to query further information about each operating system, "
27251 "such as the name and version."
27252 msgstr ""
27253
27254 # type: textblock
27255 #. type: textblock
27256 #: ../fish/guestfish-actions.pod:2295
27257 msgid ""
27258 "This function uses other libguestfs features such as L</mount-ro> and L</"
27259 "umount-all> in order to mount and unmount filesystems and look at the "
27260 "contents.  This should be called with no disks currently mounted.  The "
27261 "function may also use Augeas, so any existing Augeas handle will be closed."
27262 msgstr ""
27263
27264 # type: textblock
27265 #. type: textblock
27266 #: ../fish/guestfish-actions.pod:2307 ../fish/guestfish-actions.pod:2483
27267 #: ../fish/guestfish-actions.pod:2529
27268 msgid "See also L</list-filesystems>."
27269 msgstr ""
27270
27271 # type: =head2
27272 #. type: =head2
27273 #: ../fish/guestfish-actions.pod:2309
27274 msgid "is-blockdev"
27275 msgstr ""
27276
27277 # type: verbatim
27278 #. type: verbatim
27279 #: ../fish/guestfish-actions.pod:2311
27280 #, no-wrap
27281 msgid ""
27282 " is-blockdev path\n"
27283 "\n"
27284 msgstr ""
27285
27286 # type: textblock
27287 #. type: textblock
27288 #: ../fish/guestfish-actions.pod:2316 ../fish/guestfish-actions.pod:2334
27289 #: ../fish/guestfish-actions.pod:2353 ../fish/guestfish-actions.pod:2362
27290 #: ../fish/guestfish-actions.pod:2372 ../fish/guestfish-actions.pod:2406
27291 #: ../fish/guestfish-actions.pod:2415
27292 msgid "See also L</stat>."
27293 msgstr ""
27294
27295 # type: =head2
27296 #. type: =head2
27297 #: ../fish/guestfish-actions.pod:2318
27298 msgid "is-busy"
27299 msgstr ""
27300
27301 # type: verbatim
27302 #. type: verbatim
27303 #: ../fish/guestfish-actions.pod:2320
27304 #, no-wrap
27305 msgid ""
27306 " is-busy\n"
27307 "\n"
27308 msgstr ""
27309
27310 # type: =head2
27311 #. type: =head2
27312 #: ../fish/guestfish-actions.pod:2327
27313 msgid "is-chardev"
27314 msgstr ""
27315
27316 # type: verbatim
27317 #. type: verbatim
27318 #: ../fish/guestfish-actions.pod:2329
27319 #, no-wrap
27320 msgid ""
27321 " is-chardev path\n"
27322 "\n"
27323 msgstr ""
27324
27325 # type: =head2
27326 #. type: =head2
27327 #: ../fish/guestfish-actions.pod:2336
27328 msgid "is-config"
27329 msgstr ""
27330
27331 # type: verbatim
27332 #. type: verbatim
27333 #: ../fish/guestfish-actions.pod:2338
27334 #, no-wrap
27335 msgid ""
27336 " is-config\n"
27337 "\n"
27338 msgstr ""
27339
27340 # type: =head2
27341 #. type: =head2
27342 #: ../fish/guestfish-actions.pod:2345
27343 msgid "is-dir"
27344 msgstr ""
27345
27346 # type: verbatim
27347 #. type: verbatim
27348 #: ../fish/guestfish-actions.pod:2347
27349 #, no-wrap
27350 msgid ""
27351 " is-dir path\n"
27352 "\n"
27353 msgstr ""
27354
27355 # type: =head2
27356 #. type: =head2
27357 #: ../fish/guestfish-actions.pod:2355
27358 msgid "is-fifo"
27359 msgstr ""
27360
27361 # type: verbatim
27362 #. type: verbatim
27363 #: ../fish/guestfish-actions.pod:2357
27364 #, no-wrap
27365 msgid ""
27366 " is-fifo path\n"
27367 "\n"
27368 msgstr ""
27369
27370 # type: =head2
27371 #. type: =head2
27372 #: ../fish/guestfish-actions.pod:2364
27373 msgid "is-file"
27374 msgstr ""
27375
27376 # type: verbatim
27377 #. type: verbatim
27378 #: ../fish/guestfish-actions.pod:2366
27379 #, no-wrap
27380 msgid ""
27381 " is-file path\n"
27382 "\n"
27383 msgstr ""
27384
27385 # type: =head2
27386 #. type: =head2
27387 #: ../fish/guestfish-actions.pod:2374
27388 msgid "is-launching"
27389 msgstr ""
27390
27391 # type: verbatim
27392 #. type: verbatim
27393 #: ../fish/guestfish-actions.pod:2376
27394 #, no-wrap
27395 msgid ""
27396 " is-launching\n"
27397 "\n"
27398 msgstr ""
27399
27400 # type: =head2
27401 #. type: =head2
27402 #: ../fish/guestfish-actions.pod:2383
27403 msgid "is-lv"
27404 msgstr ""
27405
27406 # type: verbatim
27407 #. type: verbatim
27408 #: ../fish/guestfish-actions.pod:2385
27409 #, no-wrap
27410 msgid ""
27411 " is-lv device\n"
27412 "\n"
27413 msgstr ""
27414
27415 # type: =head2
27416 #. type: =head2
27417 #: ../fish/guestfish-actions.pod:2390
27418 msgid "is-ready"
27419 msgstr ""
27420
27421 # type: verbatim
27422 #. type: verbatim
27423 #: ../fish/guestfish-actions.pod:2392
27424 #, no-wrap
27425 msgid ""
27426 " is-ready\n"
27427 "\n"
27428 msgstr ""
27429
27430 # type: =head2
27431 #. type: =head2
27432 #: ../fish/guestfish-actions.pod:2399
27433 msgid "is-socket"
27434 msgstr ""
27435
27436 # type: verbatim
27437 #. type: verbatim
27438 #: ../fish/guestfish-actions.pod:2401
27439 #, no-wrap
27440 msgid ""
27441 " is-socket path\n"
27442 "\n"
27443 msgstr ""
27444
27445 # type: =head2
27446 #. type: =head2
27447 #: ../fish/guestfish-actions.pod:2408
27448 msgid "is-symlink"
27449 msgstr ""
27450
27451 # type: verbatim
27452 #. type: verbatim
27453 #: ../fish/guestfish-actions.pod:2410
27454 #, no-wrap
27455 msgid ""
27456 " is-symlink path\n"
27457 "\n"
27458 msgstr ""
27459
27460 # type: =head2
27461 #. type: =head2
27462 #: ../fish/guestfish-actions.pod:2417
27463 msgid "kill-subprocess"
27464 msgstr ""
27465
27466 # type: verbatim
27467 #. type: verbatim
27468 #: ../fish/guestfish-actions.pod:2419
27469 #, no-wrap
27470 msgid ""
27471 " kill-subprocess\n"
27472 "\n"
27473 msgstr ""
27474
27475 # type: =head2
27476 #. type: =head2
27477 #: ../fish/guestfish-actions.pod:2423
27478 msgid "launch"
27479 msgstr ""
27480
27481 # type: =head2
27482 #. type: =head2
27483 #: ../fish/guestfish-actions.pod:2425
27484 msgid "run"
27485 msgstr ""
27486
27487 # type: verbatim
27488 #. type: verbatim
27489 #: ../fish/guestfish-actions.pod:2427
27490 #, no-wrap
27491 msgid ""
27492 " launch\n"
27493 "\n"
27494 msgstr ""
27495
27496 # type: =head2
27497 #. type: =head2
27498 #: ../fish/guestfish-actions.pod:2435
27499 msgid "lchown"
27500 msgstr ""
27501
27502 # type: verbatim
27503 #. type: verbatim
27504 #: ../fish/guestfish-actions.pod:2437
27505 #, no-wrap
27506 msgid ""
27507 " lchown owner group path\n"
27508 "\n"
27509 msgstr ""
27510
27511 # type: textblock
27512 #. type: textblock
27513 #: ../fish/guestfish-actions.pod:2439
27514 msgid ""
27515 "Change the file owner to C<owner> and group to C<group>.  This is like L</"
27516 "chown> but if C<path> is a symlink then the link itself is changed, not the "
27517 "target."
27518 msgstr ""
27519
27520 # type: =head2
27521 #. type: =head2
27522 #: ../fish/guestfish-actions.pod:2447
27523 msgid "lgetxattr"
27524 msgstr ""
27525
27526 # type: verbatim
27527 #. type: verbatim
27528 #: ../fish/guestfish-actions.pod:2449
27529 #, no-wrap
27530 msgid ""
27531 " lgetxattr path name\n"
27532 "\n"
27533 msgstr ""
27534
27535 # type: textblock
27536 #. type: textblock
27537 #: ../fish/guestfish-actions.pod:2465
27538 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
27539 msgstr ""
27540
27541 # type: =head2
27542 #. type: =head2
27543 #: ../fish/guestfish-actions.pod:2467
27544 msgid "lgetxattrs"
27545 msgstr ""
27546
27547 # type: verbatim
27548 #. type: verbatim
27549 #: ../fish/guestfish-actions.pod:2469
27550 #, no-wrap
27551 msgid ""
27552 " lgetxattrs path\n"
27553 "\n"
27554 msgstr ""
27555
27556 # type: textblock
27557 #. type: textblock
27558 #: ../fish/guestfish-actions.pod:2471
27559 msgid ""
27560 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
27561 "it returns the extended attributes of the link itself."
27562 msgstr ""
27563
27564 # type: =head2
27565 #. type: =head2
27566 #: ../fish/guestfish-actions.pod:2475
27567 msgid "list-devices"
27568 msgstr ""
27569
27570 # type: verbatim
27571 #. type: verbatim
27572 #: ../fish/guestfish-actions.pod:2477
27573 #, no-wrap
27574 msgid ""
27575 " list-devices\n"
27576 "\n"
27577 msgstr ""
27578
27579 # type: =head2
27580 #. type: =head2
27581 #: ../fish/guestfish-actions.pod:2485
27582 msgid "list-filesystems"
27583 msgstr ""
27584
27585 # type: verbatim
27586 #. type: verbatim
27587 #: ../fish/guestfish-actions.pod:2487
27588 #, no-wrap
27589 msgid ""
27590 " list-filesystems\n"
27591 "\n"
27592 msgstr ""
27593
27594 # type: textblock
27595 #. type: textblock
27596 #: ../fish/guestfish-actions.pod:2506
27597 msgid ""
27598 "This command runs other libguestfs commands, which might include L</mount> "
27599 "and L</umount>, and therefore you should use this soon after launch and only "
27600 "when nothing is mounted."
27601 msgstr ""
27602
27603 # type: textblock
27604 #. type: textblock
27605 #: ../fish/guestfish-actions.pod:2510
27606 msgid ""
27607 "Not all of the filesystems returned will be mountable.  In particular, swap "
27608 "partitions are returned in the list.  Also this command does not check that "
27609 "each filesystem found is valid and mountable, and some filesystems might be "
27610 "mountable but require special options.  Filesystems may not all belong to a "
27611 "single logical operating system (use L</inspect-os> to look for OSes)."
27612 msgstr ""
27613
27614 # type: =head2
27615 #. type: =head2
27616 #: ../fish/guestfish-actions.pod:2518
27617 msgid "list-partitions"
27618 msgstr ""
27619
27620 # type: verbatim
27621 #. type: verbatim
27622 #: ../fish/guestfish-actions.pod:2520
27623 #, no-wrap
27624 msgid ""
27625 " list-partitions\n"
27626 "\n"
27627 msgstr ""
27628
27629 # type: textblock
27630 #. type: textblock
27631 #: ../fish/guestfish-actions.pod:2526
27632 msgid ""
27633 "This does not return logical volumes.  For that you will need to call L</"
27634 "lvs>."
27635 msgstr ""
27636
27637 # type: =head2
27638 #. type: =head2
27639 #: ../fish/guestfish-actions.pod:2531
27640 msgid "ll"
27641 msgstr ""
27642
27643 # type: verbatim
27644 #. type: verbatim
27645 #: ../fish/guestfish-actions.pod:2533
27646 #, no-wrap
27647 msgid ""
27648 " ll directory\n"
27649 "\n"
27650 msgstr ""
27651
27652 # type: =head2
27653 #. type: =head2
27654 #: ../fish/guestfish-actions.pod:2541
27655 msgid "ln"
27656 msgstr ""
27657
27658 # type: verbatim
27659 #. type: verbatim
27660 #: ../fish/guestfish-actions.pod:2543
27661 #, no-wrap
27662 msgid ""
27663 " ln target linkname\n"
27664 "\n"
27665 msgstr ""
27666
27667 # type: =head2
27668 #. type: =head2
27669 #: ../fish/guestfish-actions.pod:2547
27670 msgid "ln-f"
27671 msgstr ""
27672
27673 # type: verbatim
27674 #. type: verbatim
27675 #: ../fish/guestfish-actions.pod:2549
27676 #, no-wrap
27677 msgid ""
27678 " ln-f target linkname\n"
27679 "\n"
27680 msgstr ""
27681
27682 # type: =head2
27683 #. type: =head2
27684 #: ../fish/guestfish-actions.pod:2554
27685 msgid "ln-s"
27686 msgstr ""
27687
27688 # type: verbatim
27689 #. type: verbatim
27690 #: ../fish/guestfish-actions.pod:2556
27691 #, no-wrap
27692 msgid ""
27693 " ln-s target linkname\n"
27694 "\n"
27695 msgstr ""
27696
27697 # type: =head2
27698 #. type: =head2
27699 #: ../fish/guestfish-actions.pod:2560
27700 msgid "ln-sf"
27701 msgstr ""
27702
27703 # type: verbatim
27704 #. type: verbatim
27705 #: ../fish/guestfish-actions.pod:2562
27706 #, no-wrap
27707 msgid ""
27708 " ln-sf target linkname\n"
27709 "\n"
27710 msgstr ""
27711
27712 # type: =head2
27713 #. type: =head2
27714 #: ../fish/guestfish-actions.pod:2567
27715 msgid "lremovexattr"
27716 msgstr ""
27717
27718 # type: verbatim
27719 #. type: verbatim
27720 #: ../fish/guestfish-actions.pod:2569
27721 #, no-wrap
27722 msgid ""
27723 " lremovexattr xattr path\n"
27724 "\n"
27725 msgstr ""
27726
27727 # type: textblock
27728 #. type: textblock
27729 #: ../fish/guestfish-actions.pod:2571
27730 msgid ""
27731 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
27732 "it removes an extended attribute of the link itself."
27733 msgstr ""
27734
27735 # type: =head2
27736 #. type: =head2
27737 #: ../fish/guestfish-actions.pod:2575
27738 msgid "ls"
27739 msgstr ""
27740
27741 # type: verbatim
27742 #. type: verbatim
27743 #: ../fish/guestfish-actions.pod:2577
27744 #, no-wrap
27745 msgid ""
27746 " ls directory\n"
27747 "\n"
27748 msgstr ""
27749
27750 # type: textblock
27751 #. type: textblock
27752 #: ../fish/guestfish-actions.pod:2583
27753 msgid ""
27754 "This command is mostly useful for interactive sessions.  Programs should "
27755 "probably use L</readdir> instead."
27756 msgstr ""
27757
27758 # type: =head2
27759 #. type: =head2
27760 #: ../fish/guestfish-actions.pod:2586
27761 msgid "lsetxattr"
27762 msgstr ""
27763
27764 # type: verbatim
27765 #. type: verbatim
27766 #: ../fish/guestfish-actions.pod:2588
27767 #, no-wrap
27768 msgid ""
27769 " lsetxattr xattr val vallen path\n"
27770 "\n"
27771 msgstr ""
27772
27773 # type: textblock
27774 #. type: textblock
27775 #: ../fish/guestfish-actions.pod:2590
27776 msgid ""
27777 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
27778 "sets an extended attribute of the link itself."
27779 msgstr ""
27780
27781 # type: =head2
27782 #. type: =head2
27783 #: ../fish/guestfish-actions.pod:2594
27784 msgid "lstat"
27785 msgstr ""
27786
27787 # type: verbatim
27788 #. type: verbatim
27789 #: ../fish/guestfish-actions.pod:2596
27790 #, no-wrap
27791 msgid ""
27792 " lstat path\n"
27793 "\n"
27794 msgstr ""
27795
27796 # type: textblock
27797 #. type: textblock
27798 #: ../fish/guestfish-actions.pod:2600
27799 msgid ""
27800 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
27801 "the link is stat-ed, not the file it refers to."
27802 msgstr ""
27803
27804 # type: =head2
27805 #. type: =head2
27806 #: ../fish/guestfish-actions.pod:2606
27807 msgid "lstatlist"
27808 msgstr ""
27809
27810 # type: verbatim
27811 #. type: verbatim
27812 #: ../fish/guestfish-actions.pod:2608
27813 #, no-wrap
27814 msgid ""
27815 " lstatlist path 'names ...'\n"
27816 "\n"
27817 msgstr ""
27818
27819 # type: textblock
27820 #. type: textblock
27821 #: ../fish/guestfish-actions.pod:2610
27822 msgid ""
27823 "This call allows you to perform the L</lstat> operation on multiple files, "
27824 "where all files are in the directory C<path>.  C<names> is the list of files "
27825 "from this directory."
27826 msgstr ""
27827
27828 # type: textblock
27829 #. type: textblock
27830 #: ../fish/guestfish-actions.pod:2619
27831 msgid ""
27832 "This call is intended for programs that want to efficiently list a directory "
27833 "contents without making many round-trips.  See also L</lxattrlist> for a "
27834 "similarly efficient call for getting extended attributes.  Very long "
27835 "directory listings might cause the protocol message size to be exceeded, "
27836 "causing this call to fail.  The caller must split up such requests into "
27837 "smaller groups of names."
27838 msgstr ""
27839
27840 # type: =head2
27841 #. type: =head2
27842 #: ../fish/guestfish-actions.pod:2627
27843 msgid "luks-add-key"
27844 msgstr ""
27845
27846 # type: verbatim
27847 #. type: verbatim
27848 #: ../fish/guestfish-actions.pod:2629
27849 #, no-wrap
27850 msgid ""
27851 " luks-add-key device keyslot\n"
27852 "\n"
27853 msgstr ""
27854
27855 # type: textblock
27856 #. type: textblock
27857 #: ../fish/guestfish-actions.pod:2636
27858 msgid ""
27859 "Note that if C<keyslot> already contains a key, then this command will "
27860 "fail.  You have to use L</luks-kill-slot> first to remove that key."
27861 msgstr ""
27862
27863 # type: textblock
27864 #. type: textblock
27865 #: ../fish/guestfish-actions.pod:2640 ../fish/guestfish-actions.pod:2662
27866 #: ../fish/guestfish-actions.pod:2675 ../fish/guestfish-actions.pod:2689
27867 #: ../fish/guestfish-actions.pod:2712 ../fish/guestfish-actions.pod:2722
27868 msgid ""
27869 "This command has one or more key or passphrase parameters.  Guestfish will "
27870 "prompt for these separately."
27871 msgstr ""
27872
27873 # type: =head2
27874 #. type: =head2
27875 #: ../fish/guestfish-actions.pod:2643
27876 msgid "luks-close"
27877 msgstr ""
27878
27879 # type: verbatim
27880 #. type: verbatim
27881 #: ../fish/guestfish-actions.pod:2645
27882 #, no-wrap
27883 msgid ""
27884 " luks-close device\n"
27885 "\n"
27886 msgstr ""
27887
27888 # type: textblock
27889 #. type: textblock
27890 #: ../fish/guestfish-actions.pod:2647
27891 msgid ""
27892 "This closes a LUKS device that was created earlier by L</luks-open> or L</"
27893 "luks-open-ro>.  The C<device> parameter must be the name of the LUKS mapping "
27894 "device (ie. C</dev/mapper/mapname>) and I<not> the name of the underlying "
27895 "block device."
27896 msgstr ""
27897
27898 # type: =head2
27899 #. type: =head2
27900 #: ../fish/guestfish-actions.pod:2653
27901 msgid "luks-format"
27902 msgstr ""
27903
27904 # type: verbatim
27905 #. type: verbatim
27906 #: ../fish/guestfish-actions.pod:2655
27907 #, no-wrap
27908 msgid ""
27909 " luks-format device keyslot\n"
27910 "\n"
27911 msgstr ""
27912
27913 # type: =head2
27914 #. type: =head2
27915 #: ../fish/guestfish-actions.pod:2668
27916 msgid "luks-format-cipher"
27917 msgstr ""
27918
27919 # type: verbatim
27920 #. type: verbatim
27921 #: ../fish/guestfish-actions.pod:2670
27922 #, no-wrap
27923 msgid ""
27924 " luks-format-cipher device keyslot cipher\n"
27925 "\n"
27926 msgstr ""
27927
27928 # type: textblock
27929 #. type: textblock
27930 #: ../fish/guestfish-actions.pod:2672
27931 msgid ""
27932 "This command is the same as L</luks-format> but it also allows you to set "
27933 "the C<cipher> used."
27934 msgstr ""
27935
27936 # type: =head2
27937 #. type: =head2
27938 #: ../fish/guestfish-actions.pod:2681
27939 msgid "luks-kill-slot"
27940 msgstr ""
27941
27942 # type: verbatim
27943 #. type: verbatim
27944 #: ../fish/guestfish-actions.pod:2683
27945 #, no-wrap
27946 msgid ""
27947 " luks-kill-slot device keyslot\n"
27948 "\n"
27949 msgstr ""
27950
27951 # type: =head2
27952 #. type: =head2
27953 #: ../fish/guestfish-actions.pod:2692
27954 msgid "luks-open"
27955 msgstr ""
27956
27957 # type: verbatim
27958 #. type: verbatim
27959 #: ../fish/guestfish-actions.pod:2694
27960 #, no-wrap
27961 msgid ""
27962 " luks-open device mapname\n"
27963 "\n"
27964 msgstr ""
27965
27966 # type: textblock
27967 #. type: textblock
27968 #: ../fish/guestfish-actions.pod:2708
27969 msgid ""
27970 "If this block device contains LVM volume groups, then calling L</vgscan> "
27971 "followed by L</vg-activate-all> will make them visible."
27972 msgstr ""
27973
27974 # type: =head2
27975 #. type: =head2
27976 #: ../fish/guestfish-actions.pod:2715
27977 msgid "luks-open-ro"
27978 msgstr ""
27979
27980 # type: verbatim
27981 #. type: verbatim
27982 #: ../fish/guestfish-actions.pod:2717
27983 #, no-wrap
27984 msgid ""
27985 " luks-open-ro device mapname\n"
27986 "\n"
27987 msgstr ""
27988
27989 # type: textblock
27990 #. type: textblock
27991 #: ../fish/guestfish-actions.pod:2719
27992 msgid ""
27993 "This is the same as L</luks-open> except that a read-only mapping is created."
27994 msgstr ""
27995
27996 # type: =head2
27997 #. type: =head2
27998 #: ../fish/guestfish-actions.pod:2725
27999 msgid "lvcreate"
28000 msgstr ""
28001
28002 # type: verbatim
28003 #. type: verbatim
28004 #: ../fish/guestfish-actions.pod:2727
28005 #, no-wrap
28006 msgid ""
28007 " lvcreate logvol volgroup mbytes\n"
28008 "\n"
28009 msgstr ""
28010
28011 # type: =head2
28012 #. type: =head2
28013 #: ../fish/guestfish-actions.pod:2732
28014 msgid "lvm-canonical-lv-name"
28015 msgstr ""
28016
28017 # type: verbatim
28018 #. type: verbatim
28019 #: ../fish/guestfish-actions.pod:2734
28020 #, no-wrap
28021 msgid ""
28022 " lvm-canonical-lv-name lvname\n"
28023 "\n"
28024 msgstr ""
28025
28026 # type: textblock
28027 #. type: textblock
28028 #: ../fish/guestfish-actions.pod:2743
28029 msgid "See also L</is-lv>."
28030 msgstr ""
28031
28032 # type: =head2
28033 #. type: =head2
28034 #: ../fish/guestfish-actions.pod:2745
28035 msgid "lvm-clear-filter"
28036 msgstr ""
28037
28038 # type: verbatim
28039 #. type: verbatim
28040 #: ../fish/guestfish-actions.pod:2747
28041 #, no-wrap
28042 msgid ""
28043 " lvm-clear-filter\n"
28044 "\n"
28045 msgstr ""
28046
28047 # type: textblock
28048 #. type: textblock
28049 #: ../fish/guestfish-actions.pod:2749
28050 msgid ""
28051 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
28052 "block device."
28053 msgstr ""
28054
28055 # type: =head2
28056 #. type: =head2
28057 #: ../fish/guestfish-actions.pod:2755
28058 msgid "lvm-remove-all"
28059 msgstr ""
28060
28061 # type: verbatim
28062 #. type: verbatim
28063 #: ../fish/guestfish-actions.pod:2757
28064 #, no-wrap
28065 msgid ""
28066 " lvm-remove-all\n"
28067 "\n"
28068 msgstr ""
28069
28070 # type: =head2
28071 #. type: =head2
28072 #: ../fish/guestfish-actions.pod:2765
28073 msgid "lvm-set-filter"
28074 msgstr ""
28075
28076 # type: verbatim
28077 #. type: verbatim
28078 #: ../fish/guestfish-actions.pod:2767
28079 #, no-wrap
28080 msgid ""
28081 " lvm-set-filter 'devices ...'\n"
28082 "\n"
28083 msgstr ""
28084
28085 # type: =head2
28086 #. type: =head2
28087 #: ../fish/guestfish-actions.pod:2792
28088 msgid "lvremove"
28089 msgstr ""
28090
28091 # type: verbatim
28092 #. type: verbatim
28093 #: ../fish/guestfish-actions.pod:2794
28094 #, no-wrap
28095 msgid ""
28096 " lvremove device\n"
28097 "\n"
28098 msgstr ""
28099
28100 # type: =head2
28101 #. type: =head2
28102 #: ../fish/guestfish-actions.pod:2802
28103 msgid "lvrename"
28104 msgstr ""
28105
28106 # type: verbatim
28107 #. type: verbatim
28108 #: ../fish/guestfish-actions.pod:2804
28109 #, no-wrap
28110 msgid ""
28111 " lvrename logvol newlogvol\n"
28112 "\n"
28113 msgstr ""
28114
28115 # type: =head2
28116 #. type: =head2
28117 #: ../fish/guestfish-actions.pod:2808
28118 msgid "lvresize"
28119 msgstr ""
28120
28121 # type: verbatim
28122 #. type: verbatim
28123 #: ../fish/guestfish-actions.pod:2810
28124 #, no-wrap
28125 msgid ""
28126 " lvresize device mbytes\n"
28127 "\n"
28128 msgstr ""
28129
28130 # type: =head2
28131 #. type: =head2
28132 #: ../fish/guestfish-actions.pod:2816
28133 msgid "lvresize-free"
28134 msgstr ""
28135
28136 # type: verbatim
28137 #. type: verbatim
28138 #: ../fish/guestfish-actions.pod:2818
28139 #, no-wrap
28140 msgid ""
28141 " lvresize-free lv percent\n"
28142 "\n"
28143 msgstr ""
28144
28145 # type: =head2
28146 #. type: =head2
28147 #: ../fish/guestfish-actions.pod:2826
28148 msgid "lvs"
28149 msgstr ""
28150
28151 # type: verbatim
28152 #. type: verbatim
28153 #: ../fish/guestfish-actions.pod:2828
28154 #, no-wrap
28155 msgid ""
28156 " lvs\n"
28157 "\n"
28158 msgstr ""
28159
28160 # type: textblock
28161 #. type: textblock
28162 #: ../fish/guestfish-actions.pod:2836
28163 msgid "See also L</lvs-full>, L</list-filesystems>."
28164 msgstr ""
28165
28166 # type: =head2
28167 #. type: =head2
28168 #: ../fish/guestfish-actions.pod:2838
28169 msgid "lvs-full"
28170 msgstr ""
28171
28172 # type: verbatim
28173 #. type: verbatim
28174 #: ../fish/guestfish-actions.pod:2840
28175 #, no-wrap
28176 msgid ""
28177 " lvs-full\n"
28178 "\n"
28179 msgstr ""
28180
28181 # type: =head2
28182 #. type: =head2
28183 #: ../fish/guestfish-actions.pod:2845
28184 msgid "lvuuid"
28185 msgstr ""
28186
28187 # type: verbatim
28188 #. type: verbatim
28189 #: ../fish/guestfish-actions.pod:2847
28190 #, no-wrap
28191 msgid ""
28192 " lvuuid device\n"
28193 "\n"
28194 msgstr ""
28195
28196 # type: =head2
28197 #. type: =head2
28198 #: ../fish/guestfish-actions.pod:2851
28199 msgid "lxattrlist"
28200 msgstr ""
28201
28202 # type: verbatim
28203 #. type: verbatim
28204 #: ../fish/guestfish-actions.pod:2853
28205 #, no-wrap
28206 msgid ""
28207 " lxattrlist path 'names ...'\n"
28208 "\n"
28209 msgstr ""
28210
28211 # type: textblock
28212 #. type: textblock
28213 #: ../fish/guestfish-actions.pod:2869
28214 msgid ""
28215 "This call is intended for programs that want to efficiently list a directory "
28216 "contents without making many round-trips.  See also L</lstatlist> for a "
28217 "similarly efficient call for getting standard stats.  Very long directory "
28218 "listings might cause the protocol message size to be exceeded, causing this "
28219 "call to fail.  The caller must split up such requests into smaller groups of "
28220 "names."
28221 msgstr ""
28222
28223 # type: =head2
28224 #. type: =head2
28225 #: ../fish/guestfish-actions.pod:2877
28226 msgid "mkdir"
28227 msgstr ""
28228
28229 # type: verbatim
28230 #. type: verbatim
28231 #: ../fish/guestfish-actions.pod:2879
28232 #, no-wrap
28233 msgid ""
28234 " mkdir path\n"
28235 "\n"
28236 msgstr ""
28237
28238 # type: =head2
28239 #. type: =head2
28240 #: ../fish/guestfish-actions.pod:2883
28241 msgid "mkdir-mode"
28242 msgstr ""
28243
28244 # type: verbatim
28245 #. type: verbatim
28246 #: ../fish/guestfish-actions.pod:2885
28247 #, no-wrap
28248 msgid ""
28249 " mkdir-mode path mode\n"
28250 "\n"
28251 msgstr ""
28252
28253 # type: textblock
28254 #. type: textblock
28255 #: ../fish/guestfish-actions.pod:2894
28256 msgid "See also L</mkdir>, L</umask>"
28257 msgstr ""
28258
28259 # type: =head2
28260 #. type: =head2
28261 #: ../fish/guestfish-actions.pod:2896
28262 msgid "mkdir-p"
28263 msgstr ""
28264
28265 # type: verbatim
28266 #. type: verbatim
28267 #: ../fish/guestfish-actions.pod:2898
28268 #, no-wrap
28269 msgid ""
28270 " mkdir-p path\n"
28271 "\n"
28272 msgstr ""
28273
28274 # type: =head2
28275 #. type: =head2
28276 #: ../fish/guestfish-actions.pod:2903
28277 msgid "mkdtemp"
28278 msgstr ""
28279
28280 # type: verbatim
28281 #. type: verbatim
28282 #: ../fish/guestfish-actions.pod:2905
28283 #, no-wrap
28284 msgid ""
28285 " mkdtemp template\n"
28286 "\n"
28287 msgstr ""
28288
28289 # type: =head2
28290 #. type: =head2
28291 #: ../fish/guestfish-actions.pod:2926
28292 msgid "mke2fs-J"
28293 msgstr ""
28294
28295 # type: verbatim
28296 #. type: verbatim
28297 #: ../fish/guestfish-actions.pod:2928
28298 #, no-wrap
28299 msgid ""
28300 " mke2fs-J fstype blocksize device journal\n"
28301 "\n"
28302 msgstr ""
28303
28304 # type: textblock
28305 #. type: textblock
28306 #: ../fish/guestfish-actions.pod:2936
28307 msgid "See also L</mke2journal>."
28308 msgstr ""
28309
28310 # type: =head2
28311 #. type: =head2
28312 #: ../fish/guestfish-actions.pod:2938
28313 msgid "mke2fs-JL"
28314 msgstr ""
28315
28316 # type: verbatim
28317 #. type: verbatim
28318 #: ../fish/guestfish-actions.pod:2940
28319 #, no-wrap
28320 msgid ""
28321 " mke2fs-JL fstype blocksize device label\n"
28322 "\n"
28323 msgstr ""
28324
28325 # type: textblock
28326 #. type: textblock
28327 #: ../fish/guestfish-actions.pod:2945
28328 msgid "See also L</mke2journal-L>."
28329 msgstr ""
28330
28331 # type: =head2
28332 #. type: =head2
28333 #: ../fish/guestfish-actions.pod:2947
28334 msgid "mke2fs-JU"
28335 msgstr ""
28336
28337 # type: verbatim
28338 #. type: verbatim
28339 #: ../fish/guestfish-actions.pod:2949
28340 #, no-wrap
28341 msgid ""
28342 " mke2fs-JU fstype blocksize device uuid\n"
28343 "\n"
28344 msgstr ""
28345
28346 # type: textblock
28347 #. type: textblock
28348 #: ../fish/guestfish-actions.pod:2954
28349 msgid "See also L</mke2journal-U>."
28350 msgstr ""
28351
28352 # type: =head2
28353 #. type: =head2
28354 #: ../fish/guestfish-actions.pod:2956
28355 msgid "mke2journal"
28356 msgstr ""
28357
28358 # type: verbatim
28359 #. type: verbatim
28360 #: ../fish/guestfish-actions.pod:2958
28361 #, no-wrap
28362 msgid ""
28363 " mke2journal blocksize device\n"
28364 "\n"
28365 msgstr ""
28366
28367 # type: =head2
28368 #. type: =head2
28369 #: ../fish/guestfish-actions.pod:2965
28370 msgid "mke2journal-L"
28371 msgstr ""
28372
28373 # type: verbatim
28374 #. type: verbatim
28375 #: ../fish/guestfish-actions.pod:2967
28376 #, no-wrap
28377 msgid ""
28378 " mke2journal-L blocksize label device\n"
28379 "\n"
28380 msgstr ""
28381
28382 # type: =head2
28383 #. type: =head2
28384 #: ../fish/guestfish-actions.pod:2971
28385 msgid "mke2journal-U"
28386 msgstr ""
28387
28388 # type: verbatim
28389 #. type: verbatim
28390 #: ../fish/guestfish-actions.pod:2973
28391 #, no-wrap
28392 msgid ""
28393 " mke2journal-U blocksize uuid device\n"
28394 "\n"
28395 msgstr ""
28396
28397 # type: =head2
28398 #. type: =head2
28399 #: ../fish/guestfish-actions.pod:2977
28400 msgid "mkfifo"
28401 msgstr ""
28402
28403 # type: verbatim
28404 #. type: verbatim
28405 #: ../fish/guestfish-actions.pod:2979
28406 #, no-wrap
28407 msgid ""
28408 " mkfifo mode path\n"
28409 "\n"
28410 msgstr ""
28411
28412 # type: textblock
28413 #. type: textblock
28414 #: ../fish/guestfish-actions.pod:2981
28415 msgid ""
28416 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
28417 "is just a convenient wrapper around L</mknod>."
28418 msgstr ""
28419
28420 # type: =head2
28421 #. type: =head2
28422 #: ../fish/guestfish-actions.pod:2987
28423 msgid "mkfs"
28424 msgstr ""
28425
28426 # type: verbatim
28427 #. type: verbatim
28428 #: ../fish/guestfish-actions.pod:2989
28429 #, no-wrap
28430 msgid ""
28431 " mkfs fstype device\n"
28432 "\n"
28433 msgstr ""
28434
28435 # type: =head2
28436 #. type: =head2
28437 #: ../fish/guestfish-actions.pod:2995
28438 msgid "mkfs-b"
28439 msgstr ""
28440
28441 # type: verbatim
28442 #. type: verbatim
28443 #: ../fish/guestfish-actions.pod:2997
28444 #, no-wrap
28445 msgid ""
28446 " mkfs-b fstype blocksize device\n"
28447 "\n"
28448 msgstr ""
28449
28450 # type: textblock
28451 #. type: textblock
28452 #: ../fish/guestfish-actions.pod:2999
28453 msgid ""
28454 "This call is similar to L</mkfs>, but it allows you to control the block "
28455 "size of the resulting filesystem.  Supported block sizes depend on the "
28456 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
28457 msgstr ""
28458
28459 #. type: textblock
28460 #: ../fish/guestfish-actions.pod:3007
28461 msgid ""
28462 "This function is deprecated.  In new code, use the L</mkfs_opts> call "
28463 "instead."
28464 msgstr ""
28465
28466 # type: =head2
28467 #. type: =head2
28468 #: ../fish/guestfish-actions.pod:3014
28469 msgid "mkfs-opts"
28470 msgstr ""
28471
28472 #. type: verbatim
28473 #: ../fish/guestfish-actions.pod:3016
28474 #, no-wrap
28475 msgid ""
28476 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
28477 "\n"
28478 msgstr ""
28479
28480 # type: =head2
28481 #. type: =head2
28482 #: ../fish/guestfish-actions.pod:3051
28483 msgid "mkmountpoint"
28484 msgstr ""
28485
28486 # type: verbatim
28487 #. type: verbatim
28488 #: ../fish/guestfish-actions.pod:3053
28489 #, no-wrap
28490 msgid ""
28491 " mkmountpoint exemptpath\n"
28492 "\n"
28493 msgstr ""
28494
28495 # type: textblock
28496 #. type: textblock
28497 #: ../fish/guestfish-actions.pod:3055
28498 msgid ""
28499 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
28500 "to create extra mountpoints before mounting the first filesystem."
28501 msgstr ""
28502
28503 # type: textblock
28504 #. type: textblock
28505 #: ../fish/guestfish-actions.pod:3079
28506 msgid ""
28507 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
28508 "unexpected errors if you try to mix these calls.  It is safest to manually "
28509 "unmount filesystems and remove mountpoints after use."
28510 msgstr ""
28511
28512 # type: textblock
28513 #. type: textblock
28514 #: ../fish/guestfish-actions.pod:3083
28515 msgid ""
28516 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
28517 "for this to work for manual mountpoints, you must ensure that the innermost "
28518 "mountpoints have the longest pathnames, as in the example code above."
28519 msgstr ""
28520
28521 #. type: textblock
28522 #: ../fish/guestfish-actions.pod:3090
28523 msgid ""
28524 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
28525 "L</umount-all> to be called when the handle is closed which can also trigger "
28526 "these issues."
28527 msgstr ""
28528
28529 # type: =head2
28530 #. type: =head2
28531 #: ../fish/guestfish-actions.pod:3094
28532 msgid "mknod"
28533 msgstr ""
28534
28535 # type: verbatim
28536 #. type: verbatim
28537 #: ../fish/guestfish-actions.pod:3096
28538 #, no-wrap
28539 msgid ""
28540 " mknod mode devmajor devminor path\n"
28541 "\n"
28542 msgstr ""
28543
28544 # type: textblock
28545 #. type: textblock
28546 #: ../fish/guestfish-actions.pod:3106
28547 msgid ""
28548 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
28549 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
28550 "regular file).  These constants are available in the standard Linux header "
28551 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
28552 "wrappers around this command which bitwise OR in the appropriate constant "
28553 "for you."
28554 msgstr ""
28555
28556 # type: =head2
28557 #. type: =head2
28558 #: ../fish/guestfish-actions.pod:3116
28559 msgid "mknod-b"
28560 msgstr ""
28561
28562 # type: verbatim
28563 #. type: verbatim
28564 #: ../fish/guestfish-actions.pod:3118
28565 #, no-wrap
28566 msgid ""
28567 " mknod-b mode devmajor devminor path\n"
28568 "\n"
28569 msgstr ""
28570
28571 # type: textblock
28572 #. type: textblock
28573 #: ../fish/guestfish-actions.pod:3120
28574 msgid ""
28575 "This call creates a block device node called C<path> with mode C<mode> and "
28576 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
28577 "wrapper around L</mknod>."
28578 msgstr ""
28579
28580 # type: =head2
28581 #. type: =head2
28582 #: ../fish/guestfish-actions.pod:3126
28583 msgid "mknod-c"
28584 msgstr ""
28585
28586 # type: verbatim
28587 #. type: verbatim
28588 #: ../fish/guestfish-actions.pod:3128
28589 #, no-wrap
28590 msgid ""
28591 " mknod-c mode devmajor devminor path\n"
28592 "\n"
28593 msgstr ""
28594
28595 # type: textblock
28596 #. type: textblock
28597 #: ../fish/guestfish-actions.pod:3130
28598 msgid ""
28599 "This call creates a char device node called C<path> with mode C<mode> and "
28600 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
28601 "wrapper around L</mknod>."
28602 msgstr ""
28603
28604 # type: =head2
28605 #. type: =head2
28606 #: ../fish/guestfish-actions.pod:3136
28607 msgid "mkswap"
28608 msgstr ""
28609
28610 # type: verbatim
28611 #. type: verbatim
28612 #: ../fish/guestfish-actions.pod:3138
28613 #, no-wrap
28614 msgid ""
28615 " mkswap device\n"
28616 "\n"
28617 msgstr ""
28618
28619 # type: =head2
28620 #. type: =head2
28621 #: ../fish/guestfish-actions.pod:3142
28622 msgid "mkswap-L"
28623 msgstr ""
28624
28625 # type: verbatim
28626 #. type: verbatim
28627 #: ../fish/guestfish-actions.pod:3144
28628 #, no-wrap
28629 msgid ""
28630 " mkswap-L label device\n"
28631 "\n"
28632 msgstr ""
28633
28634 # type: =head2
28635 #. type: =head2
28636 #: ../fish/guestfish-actions.pod:3152
28637 msgid "mkswap-U"
28638 msgstr ""
28639
28640 # type: verbatim
28641 #. type: verbatim
28642 #: ../fish/guestfish-actions.pod:3154
28643 #, no-wrap
28644 msgid ""
28645 " mkswap-U uuid device\n"
28646 "\n"
28647 msgstr ""
28648
28649 # type: =head2
28650 #. type: =head2
28651 #: ../fish/guestfish-actions.pod:3158
28652 msgid "mkswap-file"
28653 msgstr ""
28654
28655 # type: verbatim
28656 #. type: verbatim
28657 #: ../fish/guestfish-actions.pod:3160
28658 #, no-wrap
28659 msgid ""
28660 " mkswap-file path\n"
28661 "\n"
28662 msgstr ""
28663
28664 # type: textblock
28665 #. type: textblock
28666 #: ../fish/guestfish-actions.pod:3164
28667 msgid ""
28668 "This command just writes a swap file signature to an existing file.  To "
28669 "create the file itself, use something like L</fallocate>."
28670 msgstr ""
28671
28672 # type: =head2
28673 #. type: =head2
28674 #: ../fish/guestfish-actions.pod:3167
28675 msgid "modprobe"
28676 msgstr ""
28677
28678 # type: verbatim
28679 #. type: verbatim
28680 #: ../fish/guestfish-actions.pod:3169
28681 #, no-wrap
28682 msgid ""
28683 " modprobe modulename\n"
28684 "\n"
28685 msgstr ""
28686
28687 # type: =head2
28688 #. type: =head2
28689 #: ../fish/guestfish-actions.pod:3176
28690 msgid "mount"
28691 msgstr ""
28692
28693 # type: verbatim
28694 #. type: verbatim
28695 #: ../fish/guestfish-actions.pod:3178
28696 #, no-wrap
28697 msgid ""
28698 " mount device mountpoint\n"
28699 "\n"
28700 msgstr ""
28701
28702 # type: textblock
28703 #. type: textblock
28704 #: ../fish/guestfish-actions.pod:3194
28705 msgid ""
28706 "B<Important note:> When you use this call, the filesystem options C<sync> "
28707 "and C<noatime> are set implicitly.  This was originally done because we "
28708 "thought it would improve reliability, but it turns out that I<-o sync> has a "
28709 "very large negative performance impact and negligible effect on "
28710 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
28711 "code that needs performance, and instead use L</mount-options> (use an empty "
28712 "string for the first parameter if you don't want any options)."
28713 msgstr ""
28714
28715 #. type: textblock
28716 #: ../fish/guestfish-actions.pod:3204
28717 msgid ""
28718 "This function is deprecated.  In new code, use the L</mount_options> call "
28719 "instead."
28720 msgstr ""
28721
28722 # type: =head2
28723 #. type: =head2
28724 #: ../fish/guestfish-actions.pod:3211
28725 msgid "mount-loop"
28726 msgstr ""
28727
28728 # type: verbatim
28729 #. type: verbatim
28730 #: ../fish/guestfish-actions.pod:3213
28731 #, no-wrap
28732 msgid ""
28733 " mount-loop file mountpoint\n"
28734 "\n"
28735 msgstr ""
28736
28737 # type: =head2
28738 #. type: =head2
28739 #: ../fish/guestfish-actions.pod:3219
28740 msgid "mount-options"
28741 msgstr ""
28742
28743 # type: verbatim
28744 #. type: verbatim
28745 #: ../fish/guestfish-actions.pod:3221
28746 #, no-wrap
28747 msgid ""
28748 " mount-options options device mountpoint\n"
28749 "\n"
28750 msgstr ""
28751
28752 # type: textblock
28753 #. type: textblock
28754 #: ../fish/guestfish-actions.pod:3223
28755 msgid ""
28756 "This is the same as the L</mount> command, but it allows you to set the "
28757 "mount options as for the L<mount(8)> I<-o> flag."
28758 msgstr ""
28759
28760 # type: =head2
28761 #. type: =head2
28762 #: ../fish/guestfish-actions.pod:3231
28763 msgid "mount-ro"
28764 msgstr ""
28765
28766 # type: verbatim
28767 #. type: verbatim
28768 #: ../fish/guestfish-actions.pod:3233
28769 #, no-wrap
28770 msgid ""
28771 " mount-ro device mountpoint\n"
28772 "\n"
28773 msgstr ""
28774
28775 # type: textblock
28776 #. type: textblock
28777 #: ../fish/guestfish-actions.pod:3235
28778 msgid ""
28779 "This is the same as the L</mount> command, but it mounts the filesystem with "
28780 "the read-only (I<-o ro>) flag."
28781 msgstr ""
28782
28783 # type: =head2
28784 #. type: =head2
28785 #: ../fish/guestfish-actions.pod:3238
28786 msgid "mount-vfs"
28787 msgstr ""
28788
28789 # type: verbatim
28790 #. type: verbatim
28791 #: ../fish/guestfish-actions.pod:3240
28792 #, no-wrap
28793 msgid ""
28794 " mount-vfs options vfstype device mountpoint\n"
28795 "\n"
28796 msgstr ""
28797
28798 # type: textblock
28799 #. type: textblock
28800 #: ../fish/guestfish-actions.pod:3242
28801 msgid ""
28802 "This is the same as the L</mount> command, but it allows you to set both the "
28803 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
28804 msgstr ""
28805
28806 # type: =head2
28807 #. type: =head2
28808 #: ../fish/guestfish-actions.pod:3246
28809 msgid "mountpoints"
28810 msgstr ""
28811
28812 # type: verbatim
28813 #. type: verbatim
28814 #: ../fish/guestfish-actions.pod:3248
28815 #, no-wrap
28816 msgid ""
28817 " mountpoints\n"
28818 "\n"
28819 msgstr ""
28820
28821 # type: textblock
28822 #. type: textblock
28823 #: ../fish/guestfish-actions.pod:3250
28824 msgid ""
28825 "This call is similar to L</mounts>.  That call returns a list of devices.  "
28826 "This one returns a hash table (map) of device name to directory where the "
28827 "device is mounted."
28828 msgstr ""
28829
28830 # type: =head2
28831 #. type: =head2
28832 #: ../fish/guestfish-actions.pod:3254
28833 msgid "mounts"
28834 msgstr ""
28835
28836 # type: verbatim
28837 #. type: verbatim
28838 #: ../fish/guestfish-actions.pod:3256
28839 #, no-wrap
28840 msgid ""
28841 " mounts\n"
28842 "\n"
28843 msgstr ""
28844
28845 # type: textblock
28846 #. type: textblock
28847 #: ../fish/guestfish-actions.pod:3263
28848 msgid "See also: L</mountpoints>"
28849 msgstr ""
28850
28851 # type: =head2
28852 #. type: =head2
28853 #: ../fish/guestfish-actions.pod:3265
28854 msgid "mv"
28855 msgstr ""
28856
28857 # type: verbatim
28858 #. type: verbatim
28859 #: ../fish/guestfish-actions.pod:3267
28860 #, no-wrap
28861 msgid ""
28862 " mv src dest\n"
28863 "\n"
28864 msgstr ""
28865
28866 # type: =head2
28867 #. type: =head2
28868 #: ../fish/guestfish-actions.pod:3272
28869 msgid "ntfs-3g-probe"
28870 msgstr ""
28871
28872 # type: verbatim
28873 #. type: verbatim
28874 #: ../fish/guestfish-actions.pod:3274
28875 #, no-wrap
28876 msgid ""
28877 " ntfs-3g-probe true|false device\n"
28878 "\n"
28879 msgstr ""
28880
28881 # type: =head2
28882 #. type: =head2
28883 #: ../fish/guestfish-actions.pod:3288
28884 msgid "ntfsresize"
28885 msgstr ""
28886
28887 # type: verbatim
28888 #. type: verbatim
28889 #: ../fish/guestfish-actions.pod:3290
28890 #, no-wrap
28891 msgid ""
28892 " ntfsresize device\n"
28893 "\n"
28894 msgstr ""
28895
28896 # type: =head2
28897 #. type: =head2
28898 #: ../fish/guestfish-actions.pod:3305
28899 msgid "ntfsresize-size"
28900 msgstr ""
28901
28902 # type: verbatim
28903 #. type: verbatim
28904 #: ../fish/guestfish-actions.pod:3307
28905 #, no-wrap
28906 msgid ""
28907 " ntfsresize-size device size\n"
28908 "\n"
28909 msgstr ""
28910
28911 # type: textblock
28912 #. type: textblock
28913 #: ../fish/guestfish-actions.pod:3309
28914 msgid ""
28915 "This command is the same as L</ntfsresize> except that it allows you to "
28916 "specify the new size (in bytes) explicitly."
28917 msgstr ""
28918
28919 # type: =head2
28920 #. type: =head2
28921 #: ../fish/guestfish-actions.pod:3312
28922 msgid "part-add"
28923 msgstr ""
28924
28925 # type: verbatim
28926 #. type: verbatim
28927 #: ../fish/guestfish-actions.pod:3314
28928 #, no-wrap
28929 msgid ""
28930 " part-add device prlogex startsect endsect\n"
28931 "\n"
28932 msgstr ""
28933
28934 # type: textblock
28935 #. type: textblock
28936 #: ../fish/guestfish-actions.pod:3316
28937 msgid ""
28938 "This command adds a partition to C<device>.  If there is no partition table "
28939 "on the device, call L</part-init> first."
28940 msgstr ""
28941
28942 # type: textblock
28943 #. type: textblock
28944 #: ../fish/guestfish-actions.pod:3328
28945 msgid ""
28946 "Creating a partition which covers the whole disk is not so easy.  Use L</"
28947 "part-disk> to do that."
28948 msgstr ""
28949
28950 # type: =head2
28951 #. type: =head2
28952 #: ../fish/guestfish-actions.pod:3331
28953 msgid "part-del"
28954 msgstr ""
28955
28956 # type: verbatim
28957 #. type: verbatim
28958 #: ../fish/guestfish-actions.pod:3333
28959 #, no-wrap
28960 msgid ""
28961 " part-del device partnum\n"
28962 "\n"
28963 msgstr ""
28964
28965 # type: =head2
28966 #. type: =head2
28967 #: ../fish/guestfish-actions.pod:3341
28968 msgid "part-disk"
28969 msgstr ""
28970
28971 # type: verbatim
28972 #. type: verbatim
28973 #: ../fish/guestfish-actions.pod:3343
28974 #, no-wrap
28975 msgid ""
28976 " part-disk device parttype\n"
28977 "\n"
28978 msgstr ""
28979
28980 # type: textblock
28981 #. type: textblock
28982 #: ../fish/guestfish-actions.pod:3345
28983 msgid ""
28984 "This command is simply a combination of L</part-init> followed by L</part-"
28985 "add> to create a single primary partition covering the whole disk."
28986 msgstr ""
28987
28988 # type: textblock
28989 #. type: textblock
28990 #: ../fish/guestfish-actions.pod:3349
28991 msgid ""
28992 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
28993 "possible values are described in L</part-init>."
28994 msgstr ""
28995
28996 # type: =head2
28997 #. type: =head2
28998 #: ../fish/guestfish-actions.pod:3355
28999 msgid "part-get-bootable"
29000 msgstr ""
29001
29002 # type: verbatim
29003 #. type: verbatim
29004 #: ../fish/guestfish-actions.pod:3357
29005 #, no-wrap
29006 msgid ""
29007 " part-get-bootable device partnum\n"
29008 "\n"
29009 msgstr ""
29010
29011 # type: textblock
29012 #. type: textblock
29013 #: ../fish/guestfish-actions.pod:3362
29014 msgid "See also L</part-set-bootable>."
29015 msgstr ""
29016
29017 # type: =head2
29018 #. type: =head2
29019 #: ../fish/guestfish-actions.pod:3364
29020 msgid "part-get-mbr-id"
29021 msgstr ""
29022
29023 # type: verbatim
29024 #. type: verbatim
29025 #: ../fish/guestfish-actions.pod:3366
29026 #, no-wrap
29027 msgid ""
29028 " part-get-mbr-id device partnum\n"
29029 "\n"
29030 msgstr ""
29031
29032 # type: textblock
29033 #. type: textblock
29034 #: ../fish/guestfish-actions.pod:3371 ../fish/guestfish-actions.pod:3509
29035 msgid ""
29036 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
29037 "undefined results for other partition table types (see L</part-get-"
29038 "parttype>)."
29039 msgstr ""
29040
29041 # type: =head2
29042 #. type: =head2
29043 #: ../fish/guestfish-actions.pod:3375
29044 msgid "part-get-parttype"
29045 msgstr ""
29046
29047 # type: verbatim
29048 #. type: verbatim
29049 #: ../fish/guestfish-actions.pod:3377
29050 #, no-wrap
29051 msgid ""
29052 " part-get-parttype device\n"
29053 "\n"
29054 msgstr ""
29055
29056 # type: textblock
29057 #. type: textblock
29058 #: ../fish/guestfish-actions.pod:3382
29059 msgid ""
29060 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
29061 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
29062 "possible, although unusual.  See L</part-init> for a full list."
29063 msgstr ""
29064
29065 # type: =head2
29066 #. type: =head2
29067 #: ../fish/guestfish-actions.pod:3387
29068 msgid "part-init"
29069 msgstr ""
29070
29071 # type: verbatim
29072 #. type: verbatim
29073 #: ../fish/guestfish-actions.pod:3389
29074 #, no-wrap
29075 msgid ""
29076 " part-init device parttype\n"
29077 "\n"
29078 msgstr ""
29079
29080 # type: textblock
29081 #. type: textblock
29082 #: ../fish/guestfish-actions.pod:3395
29083 msgid ""
29084 "Initially there are no partitions.  Following this, you should call L</part-"
29085 "add> for each partition required."
29086 msgstr ""
29087
29088 # type: =head2
29089 #. type: =head2
29090 #: ../fish/guestfish-actions.pod:3458
29091 msgid "part-list"
29092 msgstr ""
29093
29094 # type: verbatim
29095 #. type: verbatim
29096 #: ../fish/guestfish-actions.pod:3460
29097 #, no-wrap
29098 msgid ""
29099 " part-list device\n"
29100 "\n"
29101 msgstr ""
29102
29103 # type: textblock
29104 #. type: textblock
29105 #: ../fish/guestfish-actions.pod:3475
29106 msgid ""
29107 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
29108 "the device's sector size, see L</blockdev-getss>."
29109 msgstr ""
29110
29111 # type: =head2
29112 #. type: =head2
29113 #: ../fish/guestfish-actions.pod:3488
29114 msgid "part-set-bootable"
29115 msgstr ""
29116
29117 # type: verbatim
29118 #. type: verbatim
29119 #: ../fish/guestfish-actions.pod:3490
29120 #, no-wrap
29121 msgid ""
29122 " part-set-bootable device partnum true|false\n"
29123 "\n"
29124 msgstr ""
29125
29126 # type: =head2
29127 #. type: =head2
29128 #: ../fish/guestfish-actions.pod:3499
29129 msgid "part-set-mbr-id"
29130 msgstr ""
29131
29132 # type: verbatim
29133 #. type: verbatim
29134 #: ../fish/guestfish-actions.pod:3501
29135 #, no-wrap
29136 msgid ""
29137 " part-set-mbr-id device partnum idbyte\n"
29138 "\n"
29139 msgstr ""
29140
29141 # type: =head2
29142 #. type: =head2
29143 #: ../fish/guestfish-actions.pod:3513
29144 msgid "part-set-name"
29145 msgstr ""
29146
29147 # type: verbatim
29148 #. type: verbatim
29149 #: ../fish/guestfish-actions.pod:3515
29150 #, no-wrap
29151 msgid ""
29152 " part-set-name device partnum name\n"
29153 "\n"
29154 msgstr ""
29155
29156 # type: =head2
29157 #. type: =head2
29158 #: ../fish/guestfish-actions.pod:3523
29159 msgid "part-to-dev"
29160 msgstr ""
29161
29162 # type: verbatim
29163 #. type: verbatim
29164 #: ../fish/guestfish-actions.pod:3525
29165 #, no-wrap
29166 msgid ""
29167 " part-to-dev partition\n"
29168 "\n"
29169 msgstr ""
29170
29171 # type: textblock
29172 #. type: textblock
29173 #: ../fish/guestfish-actions.pod:3531
29174 msgid ""
29175 "The named partition must exist, for example as a string returned from L</"
29176 "list-partitions>."
29177 msgstr ""
29178
29179 # type: =head2
29180 #. type: =head2
29181 #: ../fish/guestfish-actions.pod:3534
29182 msgid "ping-daemon"
29183 msgstr ""
29184
29185 # type: verbatim
29186 #. type: verbatim
29187 #: ../fish/guestfish-actions.pod:3536
29188 #, no-wrap
29189 msgid ""
29190 " ping-daemon\n"
29191 "\n"
29192 msgstr ""
29193
29194 # type: =head2
29195 #. type: =head2
29196 #: ../fish/guestfish-actions.pod:3543
29197 msgid "pread"
29198 msgstr ""
29199
29200 # type: verbatim
29201 #. type: verbatim
29202 #: ../fish/guestfish-actions.pod:3545
29203 #, no-wrap
29204 msgid ""
29205 " pread path count offset\n"
29206 "\n"
29207 msgstr ""
29208
29209 # type: textblock
29210 #. type: textblock
29211 #: ../fish/guestfish-actions.pod:3553
29212 msgid "See also L</pwrite>, L</pread-device>."
29213 msgstr ""
29214
29215 # type: =head2
29216 #. type: =head2
29217 #: ../fish/guestfish-actions.pod:3558
29218 msgid "pread-device"
29219 msgstr ""
29220
29221 # type: verbatim
29222 #. type: verbatim
29223 #: ../fish/guestfish-actions.pod:3560
29224 #, no-wrap
29225 msgid ""
29226 " pread-device device count offset\n"
29227 "\n"
29228 msgstr ""
29229
29230 # type: textblock
29231 #. type: textblock
29232 #: ../fish/guestfish-actions.pod:3568
29233 msgid "See also L</pread>."
29234 msgstr ""
29235
29236 # type: =head2
29237 #. type: =head2
29238 #: ../fish/guestfish-actions.pod:3573
29239 msgid "pvcreate"
29240 msgstr ""
29241
29242 # type: verbatim
29243 #. type: verbatim
29244 #: ../fish/guestfish-actions.pod:3575
29245 #, no-wrap
29246 msgid ""
29247 " pvcreate device\n"
29248 "\n"
29249 msgstr ""
29250
29251 # type: =head2
29252 #. type: =head2
29253 #: ../fish/guestfish-actions.pod:3581
29254 msgid "pvremove"
29255 msgstr ""
29256
29257 # type: verbatim
29258 #. type: verbatim
29259 #: ../fish/guestfish-actions.pod:3583
29260 #, no-wrap
29261 msgid ""
29262 " pvremove device\n"
29263 "\n"
29264 msgstr ""
29265
29266 # type: =head2
29267 #. type: =head2
29268 #: ../fish/guestfish-actions.pod:3592
29269 msgid "pvresize"
29270 msgstr ""
29271
29272 # type: verbatim
29273 #. type: verbatim
29274 #: ../fish/guestfish-actions.pod:3594
29275 #, no-wrap
29276 msgid ""
29277 " pvresize device\n"
29278 "\n"
29279 msgstr ""
29280
29281 # type: =head2
29282 #. type: =head2
29283 #: ../fish/guestfish-actions.pod:3599
29284 msgid "pvresize-size"
29285 msgstr ""
29286
29287 # type: verbatim
29288 #. type: verbatim
29289 #: ../fish/guestfish-actions.pod:3601
29290 #, no-wrap
29291 msgid ""
29292 " pvresize-size device size\n"
29293 "\n"
29294 msgstr ""
29295
29296 # type: textblock
29297 #. type: textblock
29298 #: ../fish/guestfish-actions.pod:3603
29299 msgid ""
29300 "This command is the same as L</pvresize> except that it allows you to "
29301 "specify the new size (in bytes) explicitly."
29302 msgstr ""
29303
29304 # type: =head2
29305 #. type: =head2
29306 #: ../fish/guestfish-actions.pod:3606
29307 msgid "pvs"
29308 msgstr ""
29309
29310 # type: verbatim
29311 #. type: verbatim
29312 #: ../fish/guestfish-actions.pod:3608
29313 #, no-wrap
29314 msgid ""
29315 " pvs\n"
29316 "\n"
29317 msgstr ""
29318
29319 # type: textblock
29320 #. type: textblock
29321 #: ../fish/guestfish-actions.pod:3616
29322 msgid "See also L</pvs-full>."
29323 msgstr ""
29324
29325 # type: =head2
29326 #. type: =head2
29327 #: ../fish/guestfish-actions.pod:3618
29328 msgid "pvs-full"
29329 msgstr ""
29330
29331 # type: verbatim
29332 #. type: verbatim
29333 #: ../fish/guestfish-actions.pod:3620
29334 #, no-wrap
29335 msgid ""
29336 " pvs-full\n"
29337 "\n"
29338 msgstr ""
29339
29340 # type: =head2
29341 #. type: =head2
29342 #: ../fish/guestfish-actions.pod:3625
29343 msgid "pvuuid"
29344 msgstr ""
29345
29346 # type: verbatim
29347 #. type: verbatim
29348 #: ../fish/guestfish-actions.pod:3627
29349 #, no-wrap
29350 msgid ""
29351 " pvuuid device\n"
29352 "\n"
29353 msgstr ""
29354
29355 # type: =head2
29356 #. type: =head2
29357 #: ../fish/guestfish-actions.pod:3631
29358 msgid "pwrite"
29359 msgstr ""
29360
29361 # type: verbatim
29362 #. type: verbatim
29363 #: ../fish/guestfish-actions.pod:3633
29364 #, no-wrap
29365 msgid ""
29366 " pwrite path content offset\n"
29367 "\n"
29368 msgstr ""
29369
29370 # type: textblock
29371 #. type: textblock
29372 #: ../fish/guestfish-actions.pod:3644
29373 msgid "See also L</pread>, L</pwrite-device>."
29374 msgstr ""
29375
29376 # type: =head2
29377 #. type: =head2
29378 #: ../fish/guestfish-actions.pod:3649
29379 msgid "pwrite-device"
29380 msgstr ""
29381
29382 # type: verbatim
29383 #. type: verbatim
29384 #: ../fish/guestfish-actions.pod:3651
29385 #, no-wrap
29386 msgid ""
29387 " pwrite-device device content offset\n"
29388 "\n"
29389 msgstr ""
29390
29391 # type: textblock
29392 #. type: textblock
29393 #: ../fish/guestfish-actions.pod:3661
29394 msgid "See also L</pwrite>."
29395 msgstr ""
29396
29397 # type: =head2
29398 #. type: =head2
29399 #: ../fish/guestfish-actions.pod:3666
29400 msgid "read-file"
29401 msgstr ""
29402
29403 # type: verbatim
29404 #. type: verbatim
29405 #: ../fish/guestfish-actions.pod:3668
29406 #, no-wrap
29407 msgid ""
29408 " read-file path\n"
29409 "\n"
29410 msgstr ""
29411
29412 # type: textblock
29413 #. type: textblock
29414 #: ../fish/guestfish-actions.pod:3673
29415 msgid ""
29416 "Unlike L</cat>, this function can correctly handle files that contain "
29417 "embedded ASCII NUL characters.  However unlike L</download>, this function "
29418 "is limited in the total size of file that can be handled."
29419 msgstr ""
29420
29421 # type: =head2
29422 #. type: =head2
29423 #: ../fish/guestfish-actions.pod:3681
29424 msgid "read-lines"
29425 msgstr ""
29426
29427 # type: verbatim
29428 #. type: verbatim
29429 #: ../fish/guestfish-actions.pod:3683
29430 #, no-wrap
29431 msgid ""
29432 " read-lines path\n"
29433 "\n"
29434 msgstr ""
29435
29436 # type: textblock
29437 #. type: textblock
29438 #: ../fish/guestfish-actions.pod:3690
29439 msgid ""
29440 "Note that this function cannot correctly handle binary files (specifically, "
29441 "files containing C<\\0> character which is treated as end of line).  For "
29442 "those you need to use the L</read-file> function which has a more complex "
29443 "interface."
29444 msgstr ""
29445
29446 # type: =head2
29447 #. type: =head2
29448 #: ../fish/guestfish-actions.pod:3695
29449 msgid "readdir"
29450 msgstr ""
29451
29452 # type: verbatim
29453 #. type: verbatim
29454 #: ../fish/guestfish-actions.pod:3697
29455 #, no-wrap
29456 msgid ""
29457 " readdir dir\n"
29458 "\n"
29459 msgstr ""
29460
29461 # type: textblock
29462 #. type: textblock
29463 #: ../fish/guestfish-actions.pod:3749
29464 msgid ""
29465 "This function is primarily intended for use by programs.  To get a simple "
29466 "list of names, use L</ls>.  To get a printable directory for human "
29467 "consumption, use L</ll>."
29468 msgstr ""
29469
29470 # type: =head2
29471 #. type: =head2
29472 #: ../fish/guestfish-actions.pod:3753
29473 msgid "readlink"
29474 msgstr ""
29475
29476 # type: verbatim
29477 #. type: verbatim
29478 #: ../fish/guestfish-actions.pod:3755
29479 #, no-wrap
29480 msgid ""
29481 " readlink path\n"
29482 "\n"
29483 msgstr ""
29484
29485 # type: =head2
29486 #. type: =head2
29487 #: ../fish/guestfish-actions.pod:3759
29488 msgid "readlinklist"
29489 msgstr ""
29490
29491 # type: verbatim
29492 #. type: verbatim
29493 #: ../fish/guestfish-actions.pod:3761
29494 #, no-wrap
29495 msgid ""
29496 " readlinklist path 'names ...'\n"
29497 "\n"
29498 msgstr ""
29499
29500 # type: =head2
29501 #. type: =head2
29502 #: ../fish/guestfish-actions.pod:3785
29503 msgid "realpath"
29504 msgstr ""
29505
29506 # type: verbatim
29507 #. type: verbatim
29508 #: ../fish/guestfish-actions.pod:3787
29509 #, no-wrap
29510 msgid ""
29511 " realpath path\n"
29512 "\n"
29513 msgstr ""
29514
29515 # type: =head2
29516 #. type: =head2
29517 #: ../fish/guestfish-actions.pod:3792
29518 msgid "removexattr"
29519 msgstr ""
29520
29521 # type: verbatim
29522 #. type: verbatim
29523 #: ../fish/guestfish-actions.pod:3794
29524 #, no-wrap
29525 msgid ""
29526 " removexattr xattr path\n"
29527 "\n"
29528 msgstr ""
29529
29530 # type: textblock
29531 #. type: textblock
29532 #: ../fish/guestfish-actions.pod:3799
29533 msgid "See also: L</lremovexattr>, L<attr(5)>."
29534 msgstr ""
29535
29536 # type: =head2
29537 #. type: =head2
29538 #: ../fish/guestfish-actions.pod:3801
29539 msgid "resize2fs"
29540 msgstr ""
29541
29542 # type: verbatim
29543 #. type: verbatim
29544 #: ../fish/guestfish-actions.pod:3803
29545 #, no-wrap
29546 msgid ""
29547 " resize2fs device\n"
29548 "\n"
29549 msgstr ""
29550
29551 # type: textblock
29552 #. type: textblock
29553 #: ../fish/guestfish-actions.pod:3808
29554 msgid ""
29555 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
29556 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
29557 "gives an error about this and sometimes not.  In any case, it is always safe "
29558 "to call L</e2fsck-f> before calling this function."
29559 msgstr ""
29560
29561 #. type: =head2
29562 #: ../fish/guestfish-actions.pod:3814
29563 msgid "resize2fs-M"
29564 msgstr ""
29565
29566 #. type: verbatim
29567 #: ../fish/guestfish-actions.pod:3816
29568 #, no-wrap
29569 msgid ""
29570 " resize2fs-M device\n"
29571 "\n"
29572 msgstr ""
29573
29574 #. type: textblock
29575 #: ../fish/guestfish-actions.pod:3818
29576 msgid ""
29577 "This command is the same as L</resize2fs>, but the filesystem is resized to "
29578 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
29579 "command."
29580 msgstr ""
29581
29582 #. type: textblock
29583 #: ../fish/guestfish-actions.pod:3822
29584 msgid ""
29585 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
29586 "and read the C<Block size> and C<Block count> values.  These two numbers, "
29587 "multiplied together, give the resulting size of the minimal filesystem in "
29588 "bytes."
29589 msgstr ""
29590
29591 # type: =head2
29592 #. type: =head2
29593 #: ../fish/guestfish-actions.pod:3827
29594 msgid "resize2fs-size"
29595 msgstr ""
29596
29597 # type: verbatim
29598 #. type: verbatim
29599 #: ../fish/guestfish-actions.pod:3829
29600 #, no-wrap
29601 msgid ""
29602 " resize2fs-size device size\n"
29603 "\n"
29604 msgstr ""
29605
29606 # type: textblock
29607 #. type: textblock
29608 #: ../fish/guestfish-actions.pod:3831
29609 msgid ""
29610 "This command is the same as L</resize2fs> except that it allows you to "
29611 "specify the new size (in bytes) explicitly."
29612 msgstr ""
29613
29614 # type: =head2
29615 #. type: =head2
29616 #: ../fish/guestfish-actions.pod:3834
29617 msgid "rm"
29618 msgstr ""
29619
29620 # type: verbatim
29621 #. type: verbatim
29622 #: ../fish/guestfish-actions.pod:3836
29623 #, no-wrap
29624 msgid ""
29625 " rm path\n"
29626 "\n"
29627 msgstr ""
29628
29629 # type: =head2
29630 #. type: =head2
29631 #: ../fish/guestfish-actions.pod:3840
29632 msgid "rm-rf"
29633 msgstr ""
29634
29635 # type: verbatim
29636 #. type: verbatim
29637 #: ../fish/guestfish-actions.pod:3842
29638 #, no-wrap
29639 msgid ""
29640 " rm-rf path\n"
29641 "\n"
29642 msgstr ""
29643
29644 # type: =head2
29645 #. type: =head2
29646 #: ../fish/guestfish-actions.pod:3848
29647 msgid "rmdir"
29648 msgstr ""
29649
29650 # type: verbatim
29651 #. type: verbatim
29652 #: ../fish/guestfish-actions.pod:3850
29653 #, no-wrap
29654 msgid ""
29655 " rmdir path\n"
29656 "\n"
29657 msgstr ""
29658
29659 # type: =head2
29660 #. type: =head2
29661 #: ../fish/guestfish-actions.pod:3854
29662 msgid "rmmountpoint"
29663 msgstr ""
29664
29665 # type: verbatim
29666 #. type: verbatim
29667 #: ../fish/guestfish-actions.pod:3856
29668 #, no-wrap
29669 msgid ""
29670 " rmmountpoint exemptpath\n"
29671 "\n"
29672 msgstr ""
29673
29674 # type: textblock
29675 #. type: textblock
29676 #: ../fish/guestfish-actions.pod:3858
29677 msgid ""
29678 "This calls removes a mountpoint that was previously created with L</"
29679 "mkmountpoint>.  See L</mkmountpoint> for full details."
29680 msgstr ""
29681
29682 # type: =head2
29683 #. type: =head2
29684 #: ../fish/guestfish-actions.pod:3862
29685 msgid "scrub-device"
29686 msgstr ""
29687
29688 # type: verbatim
29689 #. type: verbatim
29690 #: ../fish/guestfish-actions.pod:3864
29691 #, no-wrap
29692 msgid ""
29693 " scrub-device device\n"
29694 "\n"
29695 msgstr ""
29696
29697 # type: =head2
29698 #. type: =head2
29699 #: ../fish/guestfish-actions.pod:3875
29700 msgid "scrub-file"
29701 msgstr ""
29702
29703 # type: verbatim
29704 #. type: verbatim
29705 #: ../fish/guestfish-actions.pod:3877
29706 #, no-wrap
29707 msgid ""
29708 " scrub-file file\n"
29709 "\n"
29710 msgstr ""
29711
29712 # type: =head2
29713 #. type: =head2
29714 #: ../fish/guestfish-actions.pod:3887
29715 msgid "scrub-freespace"
29716 msgstr ""
29717
29718 # type: verbatim
29719 #. type: verbatim
29720 #: ../fish/guestfish-actions.pod:3889
29721 #, no-wrap
29722 msgid ""
29723 " scrub-freespace dir\n"
29724 "\n"
29725 msgstr ""
29726
29727 # type: textblock
29728 #. type: textblock
29729 #: ../fish/guestfish-actions.pod:3891
29730 msgid ""
29731 "This command creates the directory C<dir> and then fills it with files until "
29732 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
29733 "deletes them.  The intention is to scrub any free space on the partition "
29734 "containing C<dir>."
29735 msgstr ""
29736
29737 # type: =head2
29738 #. type: =head2
29739 #: ../fish/guestfish-actions.pod:3900
29740 msgid "set-append"
29741 msgstr ""
29742
29743 # type: =head2
29744 #. type: =head2
29745 #: ../fish/guestfish-actions.pod:3902
29746 msgid "append"
29747 msgstr ""
29748
29749 # type: verbatim
29750 #. type: verbatim
29751 #: ../fish/guestfish-actions.pod:3904
29752 #, no-wrap
29753 msgid ""
29754 " set-append append\n"
29755 "\n"
29756 msgstr ""
29757
29758 #. type: =head2
29759 #: ../fish/guestfish-actions.pod:3915
29760 msgid "set-attach-method"
29761 msgstr ""
29762
29763 #. type: =head2
29764 #: ../fish/guestfish-actions.pod:3917
29765 msgid "attach-method"
29766 msgstr ""
29767
29768 #. type: verbatim
29769 #: ../fish/guestfish-actions.pod:3919
29770 #, no-wrap
29771 msgid ""
29772 " set-attach-method attachmethod\n"
29773 "\n"
29774 msgstr ""
29775
29776 # type: =head2
29777 #. type: =head2
29778 #: ../fish/guestfish-actions.pod:3941
29779 msgid "set-autosync"
29780 msgstr ""
29781
29782 # type: =head2
29783 #. type: =head2
29784 #: ../fish/guestfish-actions.pod:3943
29785 msgid "autosync"
29786 msgstr ""
29787
29788 # type: verbatim
29789 #. type: verbatim
29790 #: ../fish/guestfish-actions.pod:3945
29791 #, no-wrap
29792 msgid ""
29793 " set-autosync true|false\n"
29794 "\n"
29795 msgstr ""
29796
29797 # type: =head2
29798 #. type: =head2
29799 #: ../fish/guestfish-actions.pod:3955
29800 msgid "set-direct"
29801 msgstr ""
29802
29803 # type: =head2
29804 #. type: =head2
29805 #: ../fish/guestfish-actions.pod:3957
29806 msgid "direct"
29807 msgstr ""
29808
29809 # type: verbatim
29810 #. type: verbatim
29811 #: ../fish/guestfish-actions.pod:3959
29812 #, no-wrap
29813 msgid ""
29814 " set-direct true|false\n"
29815 "\n"
29816 msgstr ""
29817
29818 # type: textblock
29819 #. type: textblock
29820 #: ../fish/guestfish-actions.pod:3965
29821 msgid ""
29822 "One consequence of this is that log messages aren't caught by the library "
29823 "and handled by L</set-log-message-callback>, but go straight to stdout."
29824 msgstr ""
29825
29826 # type: =head2
29827 #. type: =head2
29828 #: ../fish/guestfish-actions.pod:3974
29829 msgid "set-e2label"
29830 msgstr ""
29831
29832 # type: verbatim
29833 #. type: verbatim
29834 #: ../fish/guestfish-actions.pod:3976
29835 #, no-wrap
29836 msgid ""
29837 " set-e2label device label\n"
29838 "\n"
29839 msgstr ""
29840
29841 # type: textblock
29842 #. type: textblock
29843 #: ../fish/guestfish-actions.pod:3982
29844 msgid ""
29845 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
29846 "label on a filesystem."
29847 msgstr ""
29848
29849 # type: =head2
29850 #. type: =head2
29851 #: ../fish/guestfish-actions.pod:3985
29852 msgid "set-e2uuid"
29853 msgstr ""
29854
29855 # type: verbatim
29856 #. type: verbatim
29857 #: ../fish/guestfish-actions.pod:3987
29858 #, no-wrap
29859 msgid ""
29860 " set-e2uuid device uuid\n"
29861 "\n"
29862 msgstr ""
29863
29864 # type: textblock
29865 #. type: textblock
29866 #: ../fish/guestfish-actions.pod:3994
29867 msgid ""
29868 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
29869 "UUID of a filesystem."
29870 msgstr ""
29871
29872 # type: =head2
29873 #. type: =head2
29874 #: ../fish/guestfish-actions.pod:3997
29875 msgid "set-memsize"
29876 msgstr ""
29877
29878 # type: =head2
29879 #. type: =head2
29880 #: ../fish/guestfish-actions.pod:3999
29881 msgid "memsize"
29882 msgstr ""
29883
29884 # type: verbatim
29885 #. type: verbatim
29886 #: ../fish/guestfish-actions.pod:4001
29887 #, no-wrap
29888 msgid ""
29889 " set-memsize memsize\n"
29890 "\n"
29891 msgstr ""
29892
29893 # type: textblock
29894 #. type: textblock
29895 #: ../fish/guestfish-actions.pod:4003
29896 msgid ""
29897 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
29898 "This only has any effect if called before L</launch>."
29899 msgstr ""
29900
29901 # type: =head2
29902 #. type: =head2
29903 #: ../fish/guestfish-actions.pod:4014
29904 msgid "set-network"
29905 msgstr ""
29906
29907 # type: =head2
29908 #. type: =head2
29909 #: ../fish/guestfish-actions.pod:4016
29910 msgid "network"
29911 msgstr ""
29912
29913 # type: verbatim
29914 #. type: verbatim
29915 #: ../fish/guestfish-actions.pod:4018
29916 #, no-wrap
29917 msgid ""
29918 " set-network true|false\n"
29919 "\n"
29920 msgstr ""
29921
29922 # type: textblock
29923 #. type: textblock
29924 #: ../fish/guestfish-actions.pod:4026
29925 msgid ""
29926 "You must call this before calling L</launch>, otherwise it has no effect."
29927 msgstr ""
29928
29929 # type: =head2
29930 #. type: =head2
29931 #: ../fish/guestfish-actions.pod:4029
29932 msgid "set-path"
29933 msgstr ""
29934
29935 # type: =head2
29936 #. type: =head2
29937 #: ../fish/guestfish-actions.pod:4031
29938 msgid "path"
29939 msgstr ""
29940
29941 # type: verbatim
29942 #. type: verbatim
29943 #: ../fish/guestfish-actions.pod:4033
29944 #, no-wrap
29945 msgid ""
29946 " set-path searchpath\n"
29947 "\n"
29948 msgstr ""
29949
29950 # type: =head2
29951 #. type: =head2
29952 #: ../fish/guestfish-actions.pod:4042
29953 msgid "set-qemu"
29954 msgstr ""
29955
29956 # type: =head2
29957 #. type: =head2
29958 #: ../fish/guestfish-actions.pod:4044
29959 msgid "qemu"
29960 msgstr ""
29961
29962 # type: verbatim
29963 #. type: verbatim
29964 #: ../fish/guestfish-actions.pod:4046
29965 #, no-wrap
29966 msgid ""
29967 " set-qemu qemu\n"
29968 "\n"
29969 msgstr ""
29970
29971 # type: =head2
29972 #. type: =head2
29973 #: ../fish/guestfish-actions.pod:4066
29974 msgid "set-recovery-proc"
29975 msgstr ""
29976
29977 # type: =head2
29978 #. type: =head2
29979 #: ../fish/guestfish-actions.pod:4068
29980 msgid "recovery-proc"
29981 msgstr ""
29982
29983 # type: verbatim
29984 #. type: verbatim
29985 #: ../fish/guestfish-actions.pod:4070
29986 #, no-wrap
29987 msgid ""
29988 " set-recovery-proc true|false\n"
29989 "\n"
29990 msgstr ""
29991
29992 # type: textblock
29993 #. type: textblock
29994 #: ../fish/guestfish-actions.pod:4072
29995 msgid ""
29996 "If this is called with the parameter C<false> then L</launch> does not "
29997 "create a recovery process.  The purpose of the recovery process is to stop "
29998 "runaway qemu processes in the case where the main program aborts abruptly."
29999 msgstr ""
30000
30001 # type: textblock
30002 #. type: textblock
30003 #: ../fish/guestfish-actions.pod:4077
30004 msgid ""
30005 "This only has any effect if called before L</launch>, and the default is "
30006 "true."
30007 msgstr ""
30008
30009 # type: =head2
30010 #. type: =head2
30011 #: ../fish/guestfish-actions.pod:4086
30012 msgid "set-selinux"
30013 msgstr ""
30014
30015 # type: =head2
30016 #. type: =head2
30017 #: ../fish/guestfish-actions.pod:4088
30018 msgid "selinux"
30019 msgstr ""
30020
30021 # type: verbatim
30022 #. type: verbatim
30023 #: ../fish/guestfish-actions.pod:4090
30024 #, no-wrap
30025 msgid ""
30026 " set-selinux true|false\n"
30027 "\n"
30028 msgstr ""
30029
30030 # type: =head2
30031 #. type: =head2
30032 #: ../fish/guestfish-actions.pod:4101
30033 msgid "set-trace"
30034 msgstr ""
30035
30036 # type: =head2
30037 #. type: =head2
30038 #: ../fish/guestfish-actions.pod:4103
30039 msgid "trace"
30040 msgstr ""
30041
30042 # type: verbatim
30043 #. type: verbatim
30044 #: ../fish/guestfish-actions.pod:4105
30045 #, no-wrap
30046 msgid ""
30047 " set-trace true|false\n"
30048 "\n"
30049 msgstr ""
30050
30051 #. type: textblock
30052 #: ../fish/guestfish-actions.pod:4117
30053 msgid ""
30054 "Trace messages are normally sent to C<stderr>, unless you register a "
30055 "callback to send them somewhere else (see L</set-event-callback>)."
30056 msgstr ""
30057
30058 # type: =head2
30059 #. type: =head2
30060 #: ../fish/guestfish-actions.pod:4121
30061 msgid "set-verbose"
30062 msgstr ""
30063
30064 # type: =head2
30065 #. type: =head2
30066 #: ../fish/guestfish-actions.pod:4123
30067 msgid "verbose"
30068 msgstr ""
30069
30070 # type: verbatim
30071 #. type: verbatim
30072 #: ../fish/guestfish-actions.pod:4125
30073 #, no-wrap
30074 msgid ""
30075 " set-verbose true|false\n"
30076 "\n"
30077 msgstr ""
30078
30079 #. type: textblock
30080 #: ../fish/guestfish-actions.pod:4132
30081 msgid ""
30082 "Verbose messages are normally sent to C<stderr>, unless you register a "
30083 "callback to send them somewhere else (see L</set-event-callback>)."
30084 msgstr ""
30085
30086 # type: =head2
30087 #. type: =head2
30088 #: ../fish/guestfish-actions.pod:4136
30089 msgid "setcon"
30090 msgstr ""
30091
30092 # type: verbatim
30093 #. type: verbatim
30094 #: ../fish/guestfish-actions.pod:4138
30095 #, no-wrap
30096 msgid ""
30097 " setcon context\n"
30098 "\n"
30099 msgstr ""
30100
30101 # type: =head2
30102 #. type: =head2
30103 #: ../fish/guestfish-actions.pod:4145
30104 msgid "setxattr"
30105 msgstr ""
30106
30107 # type: verbatim
30108 #. type: verbatim
30109 #: ../fish/guestfish-actions.pod:4147
30110 #, no-wrap
30111 msgid ""
30112 " setxattr xattr val vallen path\n"
30113 "\n"
30114 msgstr ""
30115
30116 # type: textblock
30117 #. type: textblock
30118 #: ../fish/guestfish-actions.pod:4153
30119 msgid "See also: L</lsetxattr>, L<attr(5)>."
30120 msgstr ""
30121
30122 # type: =head2
30123 #. type: =head2
30124 #: ../fish/guestfish-actions.pod:4155
30125 msgid "sfdisk"
30126 msgstr ""
30127
30128 # type: verbatim
30129 #. type: verbatim
30130 #: ../fish/guestfish-actions.pod:4157
30131 #, no-wrap
30132 msgid ""
30133 " sfdisk device cyls heads sectors 'lines ...'\n"
30134 "\n"
30135 msgstr ""
30136
30137 # type: textblock
30138 #. type: textblock
30139 #: ../fish/guestfish-actions.pod:4179
30140 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
30141 msgstr ""
30142
30143 #. type: textblock
30144 #: ../fish/guestfish-actions.pod:4185 ../fish/guestfish-actions.pod:4208
30145 #: ../fish/guestfish-actions.pod:4230
30146 msgid ""
30147 "This function is deprecated.  In new code, use the L</part_add> call instead."
30148 msgstr ""
30149
30150 # type: =head2
30151 #. type: =head2
30152 #: ../fish/guestfish-actions.pod:4192
30153 msgid "sfdiskM"
30154 msgstr ""
30155
30156 # type: verbatim
30157 #. type: verbatim
30158 #: ../fish/guestfish-actions.pod:4194
30159 #, no-wrap
30160 msgid ""
30161 " sfdiskM device 'lines ...'\n"
30162 "\n"
30163 msgstr ""
30164
30165 # type: textblock
30166 #. type: textblock
30167 #: ../fish/guestfish-actions.pod:4196
30168 msgid ""
30169 "This is a simplified interface to the L</sfdisk> command, where partition "
30170 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
30171 "you don't need to specify the cyls, heads and sectors parameters which were "
30172 "rarely if ever used anyway."
30173 msgstr ""
30174
30175 # type: textblock
30176 #. type: textblock
30177 #: ../fish/guestfish-actions.pod:4202
30178 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
30179 msgstr ""
30180
30181 # type: =head2
30182 #. type: =head2
30183 #: ../fish/guestfish-actions.pod:4215
30184 msgid "sfdisk-N"
30185 msgstr ""
30186
30187 # type: verbatim
30188 #. type: verbatim
30189 #: ../fish/guestfish-actions.pod:4217
30190 #, no-wrap
30191 msgid ""
30192 " sfdisk-N device partnum cyls heads sectors line\n"
30193 "\n"
30194 msgstr ""
30195
30196 # type: textblock
30197 #. type: textblock
30198 #: ../fish/guestfish-actions.pod:4222
30199 msgid ""
30200 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
30201 "cyls/heads/sectors parameters."
30202 msgstr ""
30203
30204 # type: textblock
30205 #. type: textblock
30206 #: ../fish/guestfish-actions.pod:4225
30207 msgid "See also: L</part-add>"
30208 msgstr ""
30209
30210 # type: =head2
30211 #. type: =head2
30212 #: ../fish/guestfish-actions.pod:4237
30213 msgid "sfdisk-disk-geometry"
30214 msgstr ""
30215
30216 # type: verbatim
30217 #. type: verbatim
30218 #: ../fish/guestfish-actions.pod:4239
30219 #, no-wrap
30220 msgid ""
30221 " sfdisk-disk-geometry device\n"
30222 "\n"
30223 msgstr ""
30224
30225 # type: textblock
30226 #. type: textblock
30227 #: ../fish/guestfish-actions.pod:4241
30228 msgid ""
30229 "This displays the disk geometry of C<device> read from the partition table.  "
30230 "Especially in the case where the underlying block device has been resized, "
30231 "this can be different from the kernel's idea of the geometry (see L</sfdisk-"
30232 "kernel-geometry>)."
30233 msgstr ""
30234
30235 # type: =head2
30236 #. type: =head2
30237 #: ../fish/guestfish-actions.pod:4249
30238 msgid "sfdisk-kernel-geometry"
30239 msgstr ""
30240
30241 # type: verbatim
30242 #. type: verbatim
30243 #: ../fish/guestfish-actions.pod:4251
30244 #, no-wrap
30245 msgid ""
30246 " sfdisk-kernel-geometry device\n"
30247 "\n"
30248 msgstr ""
30249
30250 # type: =head2
30251 #. type: =head2
30252 #: ../fish/guestfish-actions.pod:4258
30253 msgid "sfdisk-l"
30254 msgstr ""
30255
30256 # type: verbatim
30257 #. type: verbatim
30258 #: ../fish/guestfish-actions.pod:4260
30259 #, no-wrap
30260 msgid ""
30261 " sfdisk-l device\n"
30262 "\n"
30263 msgstr ""
30264
30265 # type: textblock
30266 #. type: textblock
30267 #: ../fish/guestfish-actions.pod:4266
30268 msgid "See also: L</part-list>"
30269 msgstr ""
30270
30271 #. type: textblock
30272 #: ../fish/guestfish-actions.pod:4268
30273 msgid ""
30274 "This function is deprecated.  In new code, use the L</part_list> call "
30275 "instead."
30276 msgstr ""
30277
30278 # type: =head2
30279 #. type: =head2
30280 #: ../fish/guestfish-actions.pod:4275
30281 msgid "sh"
30282 msgstr ""
30283
30284 # type: verbatim
30285 #. type: verbatim
30286 #: ../fish/guestfish-actions.pod:4277
30287 #, no-wrap
30288 msgid ""
30289 " sh command\n"
30290 "\n"
30291 msgstr ""
30292
30293 # type: textblock
30294 #. type: textblock
30295 #: ../fish/guestfish-actions.pod:4282
30296 msgid "This is like L</command>, but passes the command to:"
30297 msgstr ""
30298
30299 # type: textblock
30300 #. type: textblock
30301 #: ../fish/guestfish-actions.pod:4290
30302 msgid "All the provisos about L</command> apply to this call."
30303 msgstr ""
30304
30305 # type: =head2
30306 #. type: =head2
30307 #: ../fish/guestfish-actions.pod:4292
30308 msgid "sh-lines"
30309 msgstr ""
30310
30311 # type: verbatim
30312 #. type: verbatim
30313 #: ../fish/guestfish-actions.pod:4294
30314 #, no-wrap
30315 msgid ""
30316 " sh-lines command\n"
30317 "\n"
30318 msgstr ""
30319
30320 # type: textblock
30321 #. type: textblock
30322 #: ../fish/guestfish-actions.pod:4296
30323 msgid "This is the same as L</sh>, but splits the result into a list of lines."
30324 msgstr ""
30325
30326 # type: textblock
30327 #. type: textblock
30328 #: ../fish/guestfish-actions.pod:4299
30329 msgid "See also: L</command-lines>"
30330 msgstr ""
30331
30332 # type: =head2
30333 #. type: =head2
30334 #: ../fish/guestfish-actions.pod:4301
30335 msgid "sleep"
30336 msgstr ""
30337
30338 # type: verbatim
30339 #. type: verbatim
30340 #: ../fish/guestfish-actions.pod:4303
30341 #, no-wrap
30342 msgid ""
30343 " sleep secs\n"
30344 "\n"
30345 msgstr ""
30346
30347 # type: =head2
30348 #. type: =head2
30349 #: ../fish/guestfish-actions.pod:4307
30350 msgid "stat"
30351 msgstr ""
30352
30353 # type: verbatim
30354 #. type: verbatim
30355 #: ../fish/guestfish-actions.pod:4309
30356 #, no-wrap
30357 msgid ""
30358 " stat path\n"
30359 "\n"
30360 msgstr ""
30361
30362 # type: =head2
30363 #. type: =head2
30364 #: ../fish/guestfish-actions.pod:4315
30365 msgid "statvfs"
30366 msgstr ""
30367
30368 # type: verbatim
30369 #. type: verbatim
30370 #: ../fish/guestfish-actions.pod:4317
30371 #, no-wrap
30372 msgid ""
30373 " statvfs path\n"
30374 "\n"
30375 msgstr ""
30376
30377 # type: =head2
30378 #. type: =head2
30379 #: ../fish/guestfish-actions.pod:4325
30380 msgid "strings"
30381 msgstr ""
30382
30383 # type: verbatim
30384 #. type: verbatim
30385 #: ../fish/guestfish-actions.pod:4327
30386 #, no-wrap
30387 msgid ""
30388 " strings path\n"
30389 "\n"
30390 msgstr ""
30391
30392 # type: =head2
30393 #. type: =head2
30394 #: ../fish/guestfish-actions.pod:4335
30395 msgid "strings-e"
30396 msgstr ""
30397
30398 # type: verbatim
30399 #. type: verbatim
30400 #: ../fish/guestfish-actions.pod:4337
30401 #, no-wrap
30402 msgid ""
30403 " strings-e encoding path\n"
30404 "\n"
30405 msgstr ""
30406
30407 # type: textblock
30408 #. type: textblock
30409 #: ../fish/guestfish-actions.pod:4339
30410 msgid ""
30411 "This is like the L</strings> command, but allows you to specify the encoding "
30412 "of strings that are looked for in the source file C<path>."
30413 msgstr ""
30414
30415 # type: textblock
30416 #. type: textblock
30417 #: ../fish/guestfish-actions.pod:4349
30418 msgid ""
30419 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
30420 "ISO-8859-X (this is what L</strings> uses)."
30421 msgstr ""
30422
30423 # type: =head2
30424 #. type: =head2
30425 #: ../fish/guestfish-actions.pod:4381
30426 msgid "swapoff-device"
30427 msgstr ""
30428
30429 # type: verbatim
30430 #. type: verbatim
30431 #: ../fish/guestfish-actions.pod:4383
30432 #, no-wrap
30433 msgid ""
30434 " swapoff-device device\n"
30435 "\n"
30436 msgstr ""
30437
30438 # type: textblock
30439 #. type: textblock
30440 #: ../fish/guestfish-actions.pod:4385
30441 msgid ""
30442 "This command disables the libguestfs appliance swap device or partition "
30443 "named C<device>.  See L</swapon-device>."
30444 msgstr ""
30445
30446 # type: =head2
30447 #. type: =head2
30448 #: ../fish/guestfish-actions.pod:4389
30449 msgid "swapoff-file"
30450 msgstr ""
30451
30452 # type: verbatim
30453 #. type: verbatim
30454 #: ../fish/guestfish-actions.pod:4391
30455 #, no-wrap
30456 msgid ""
30457 " swapoff-file file\n"
30458 "\n"
30459 msgstr ""
30460
30461 # type: =head2
30462 #. type: =head2
30463 #: ../fish/guestfish-actions.pod:4395
30464 msgid "swapoff-label"
30465 msgstr ""
30466
30467 # type: verbatim
30468 #. type: verbatim
30469 #: ../fish/guestfish-actions.pod:4397
30470 #, no-wrap
30471 msgid ""
30472 " swapoff-label label\n"
30473 "\n"
30474 msgstr ""
30475
30476 # type: =head2
30477 #. type: =head2
30478 #: ../fish/guestfish-actions.pod:4402
30479 msgid "swapoff-uuid"
30480 msgstr ""
30481
30482 # type: verbatim
30483 #. type: verbatim
30484 #: ../fish/guestfish-actions.pod:4404
30485 #, no-wrap
30486 msgid ""
30487 " swapoff-uuid uuid\n"
30488 "\n"
30489 msgstr ""
30490
30491 # type: =head2
30492 #. type: =head2
30493 #: ../fish/guestfish-actions.pod:4409
30494 msgid "swapon-device"
30495 msgstr ""
30496
30497 # type: verbatim
30498 #. type: verbatim
30499 #: ../fish/guestfish-actions.pod:4411
30500 #, no-wrap
30501 msgid ""
30502 " swapon-device device\n"
30503 "\n"
30504 msgstr ""
30505
30506 # type: textblock
30507 #. type: textblock
30508 #: ../fish/guestfish-actions.pod:4413
30509 msgid ""
30510 "This command enables the libguestfs appliance to use the swap device or "
30511 "partition named C<device>.  The increased memory is made available for all "
30512 "commands, for example those run using L</command> or L</sh>."
30513 msgstr ""
30514
30515 # type: =head2
30516 #. type: =head2
30517 #: ../fish/guestfish-actions.pod:4425
30518 msgid "swapon-file"
30519 msgstr ""
30520
30521 # type: verbatim
30522 #. type: verbatim
30523 #: ../fish/guestfish-actions.pod:4427
30524 #, no-wrap
30525 msgid ""
30526 " swapon-file file\n"
30527 "\n"
30528 msgstr ""
30529
30530 # type: textblock
30531 #. type: textblock
30532 #: ../fish/guestfish-actions.pod:4429
30533 msgid ""
30534 "This command enables swap to a file.  See L</swapon-device> for other notes."
30535 msgstr ""
30536
30537 # type: =head2
30538 #. type: =head2
30539 #: ../fish/guestfish-actions.pod:4432
30540 msgid "swapon-label"
30541 msgstr ""
30542
30543 # type: verbatim
30544 #. type: verbatim
30545 #: ../fish/guestfish-actions.pod:4434
30546 #, no-wrap
30547 msgid ""
30548 " swapon-label label\n"
30549 "\n"
30550 msgstr ""
30551
30552 # type: textblock
30553 #. type: textblock
30554 #: ../fish/guestfish-actions.pod:4436
30555 msgid ""
30556 "This command enables swap to a labeled swap partition.  See L</swapon-"
30557 "device> for other notes."
30558 msgstr ""
30559
30560 # type: =head2
30561 #. type: =head2
30562 #: ../fish/guestfish-actions.pod:4439
30563 msgid "swapon-uuid"
30564 msgstr ""
30565
30566 # type: verbatim
30567 #. type: verbatim
30568 #: ../fish/guestfish-actions.pod:4441
30569 #, no-wrap
30570 msgid ""
30571 " swapon-uuid uuid\n"
30572 "\n"
30573 msgstr ""
30574
30575 # type: textblock
30576 #. type: textblock
30577 #: ../fish/guestfish-actions.pod:4443
30578 msgid ""
30579 "This command enables swap to a swap partition with the given UUID.  See L</"
30580 "swapon-device> for other notes."
30581 msgstr ""
30582
30583 # type: =head2
30584 #. type: =head2
30585 #: ../fish/guestfish-actions.pod:4446
30586 msgid "sync"
30587 msgstr ""
30588
30589 # type: verbatim
30590 #. type: verbatim
30591 #: ../fish/guestfish-actions.pod:4448
30592 #, no-wrap
30593 msgid ""
30594 " sync\n"
30595 "\n"
30596 msgstr ""
30597
30598 # type: =head2
30599 #. type: =head2
30600 #: ../fish/guestfish-actions.pod:4456
30601 msgid "tail"
30602 msgstr ""
30603
30604 # type: verbatim
30605 #. type: verbatim
30606 #: ../fish/guestfish-actions.pod:4458
30607 #, no-wrap
30608 msgid ""
30609 " tail path\n"
30610 "\n"
30611 msgstr ""
30612
30613 # type: =head2
30614 #. type: =head2
30615 #: ../fish/guestfish-actions.pod:4466
30616 msgid "tail-n"
30617 msgstr ""
30618
30619 # type: verbatim
30620 #. type: verbatim
30621 #: ../fish/guestfish-actions.pod:4468
30622 #, no-wrap
30623 msgid ""
30624 " tail-n nrlines path\n"
30625 "\n"
30626 msgstr ""
30627
30628 # type: =head2
30629 #. type: =head2
30630 #: ../fish/guestfish-actions.pod:4481
30631 msgid "tar-in"
30632 msgstr ""
30633
30634 # type: verbatim
30635 #. type: verbatim
30636 #: ../fish/guestfish-actions.pod:4483
30637 #, no-wrap
30638 msgid ""
30639 " tar-in (tarfile|-) directory\n"
30640 "\n"
30641 msgstr ""
30642
30643 # type: textblock
30644 #. type: textblock
30645 #: ../fish/guestfish-actions.pod:4488
30646 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
30647 msgstr ""
30648
30649 # type: =head2
30650 #. type: =head2
30651 #: ../fish/guestfish-actions.pod:4493
30652 msgid "tar-out"
30653 msgstr ""
30654
30655 # type: verbatim
30656 #. type: verbatim
30657 #: ../fish/guestfish-actions.pod:4495
30658 #, no-wrap
30659 msgid ""
30660 " tar-out directory (tarfile|-)\n"
30661 "\n"
30662 msgstr ""
30663
30664 # type: textblock
30665 #. type: textblock
30666 #: ../fish/guestfish-actions.pod:4500
30667 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
30668 msgstr ""
30669
30670 # type: =head2
30671 #. type: =head2
30672 #: ../fish/guestfish-actions.pod:4505
30673 msgid "tgz-in"
30674 msgstr ""
30675
30676 # type: verbatim
30677 #. type: verbatim
30678 #: ../fish/guestfish-actions.pod:4507
30679 #, no-wrap
30680 msgid ""
30681 " tgz-in (tarball|-) directory\n"
30682 "\n"
30683 msgstr ""
30684
30685 # type: textblock
30686 #. type: textblock
30687 #: ../fish/guestfish-actions.pod:4512
30688 msgid "To upload an uncompressed tarball, use L</tar-in>."
30689 msgstr ""
30690
30691 # type: =head2
30692 #. type: =head2
30693 #: ../fish/guestfish-actions.pod:4516
30694 msgid "tgz-out"
30695 msgstr ""
30696
30697 # type: verbatim
30698 #. type: verbatim
30699 #: ../fish/guestfish-actions.pod:4518
30700 #, no-wrap
30701 msgid ""
30702 " tgz-out directory (tarball|-)\n"
30703 "\n"
30704 msgstr ""
30705
30706 # type: textblock
30707 #. type: textblock
30708 #: ../fish/guestfish-actions.pod:4523
30709 msgid "To download an uncompressed tarball, use L</tar-out>."
30710 msgstr ""
30711
30712 # type: =head2
30713 #. type: =head2
30714 #: ../fish/guestfish-actions.pod:4527
30715 msgid "touch"
30716 msgstr ""
30717
30718 # type: verbatim
30719 #. type: verbatim
30720 #: ../fish/guestfish-actions.pod:4529
30721 #, no-wrap
30722 msgid ""
30723 " touch path\n"
30724 "\n"
30725 msgstr ""
30726
30727 # type: =head2
30728 #. type: =head2
30729 #: ../fish/guestfish-actions.pod:4538
30730 msgid "truncate"
30731 msgstr ""
30732
30733 # type: verbatim
30734 #. type: verbatim
30735 #: ../fish/guestfish-actions.pod:4540
30736 #, no-wrap
30737 msgid ""
30738 " truncate path\n"
30739 "\n"
30740 msgstr ""
30741
30742 # type: =head2
30743 #. type: =head2
30744 #: ../fish/guestfish-actions.pod:4545
30745 msgid "truncate-size"
30746 msgstr ""
30747
30748 # type: verbatim
30749 #. type: verbatim
30750 #: ../fish/guestfish-actions.pod:4547
30751 #, no-wrap
30752 msgid ""
30753 " truncate-size path size\n"
30754 "\n"
30755 msgstr ""
30756
30757 # type: textblock
30758 #. type: textblock
30759 #: ../fish/guestfish-actions.pod:4552
30760 msgid ""
30761 "If the current file size is less than C<size> then the file is extended to "
30762 "the required size with zero bytes.  This creates a sparse file (ie. disk "
30763 "blocks are not allocated for the file until you write to it).  To create a "
30764 "non-sparse file of zeroes, use L</fallocate64> instead."
30765 msgstr ""
30766
30767 # type: =head2
30768 #. type: =head2
30769 #: ../fish/guestfish-actions.pod:4558
30770 msgid "tune2fs-l"
30771 msgstr ""
30772
30773 # type: verbatim
30774 #. type: verbatim
30775 #: ../fish/guestfish-actions.pod:4560
30776 #, no-wrap
30777 msgid ""
30778 " tune2fs-l device\n"
30779 "\n"
30780 msgstr ""
30781
30782 # type: =head2
30783 #. type: =head2
30784 #: ../fish/guestfish-actions.pod:4570
30785 msgid "txz-in"
30786 msgstr ""
30787
30788 # type: verbatim
30789 #. type: verbatim
30790 #: ../fish/guestfish-actions.pod:4572
30791 #, no-wrap
30792 msgid ""
30793 " txz-in (tarball|-) directory\n"
30794 "\n"
30795 msgstr ""
30796
30797 # type: =head2
30798 #. type: =head2
30799 #: ../fish/guestfish-actions.pod:4579
30800 msgid "txz-out"
30801 msgstr ""
30802
30803 # type: verbatim
30804 #. type: verbatim
30805 #: ../fish/guestfish-actions.pod:4581
30806 #, no-wrap
30807 msgid ""
30808 " txz-out directory (tarball|-)\n"
30809 "\n"
30810 msgstr ""
30811
30812 # type: =head2
30813 #. type: =head2
30814 #: ../fish/guestfish-actions.pod:4588
30815 msgid "umask"
30816 msgstr ""
30817
30818 # type: verbatim
30819 #. type: verbatim
30820 #: ../fish/guestfish-actions.pod:4590
30821 #, no-wrap
30822 msgid ""
30823 " umask mask\n"
30824 "\n"
30825 msgstr ""
30826
30827 # type: textblock
30828 #. type: textblock
30829 #: ../fish/guestfish-actions.pod:4604
30830 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
30831 msgstr ""
30832
30833 # type: =head2
30834 #. type: =head2
30835 #: ../fish/guestfish-actions.pod:4609
30836 msgid "umount"
30837 msgstr ""
30838
30839 # type: =head2
30840 #. type: =head2
30841 #: ../fish/guestfish-actions.pod:4611
30842 msgid "unmount"
30843 msgstr ""
30844
30845 # type: verbatim
30846 #. type: verbatim
30847 #: ../fish/guestfish-actions.pod:4613
30848 #, no-wrap
30849 msgid ""
30850 " umount pathordevice\n"
30851 "\n"
30852 msgstr ""
30853
30854 # type: =head2
30855 #. type: =head2
30856 #: ../fish/guestfish-actions.pod:4619
30857 msgid "umount-all"
30858 msgstr ""
30859
30860 # type: =head2
30861 #. type: =head2
30862 #: ../fish/guestfish-actions.pod:4621
30863 msgid "unmount-all"
30864 msgstr ""
30865
30866 # type: verbatim
30867 #. type: verbatim
30868 #: ../fish/guestfish-actions.pod:4623
30869 #, no-wrap
30870 msgid ""
30871 " umount-all\n"
30872 "\n"
30873 msgstr ""
30874
30875 # type: =head2
30876 #. type: =head2
30877 #: ../fish/guestfish-actions.pod:4629
30878 msgid "upload"
30879 msgstr ""
30880
30881 # type: verbatim
30882 #. type: verbatim
30883 #: ../fish/guestfish-actions.pod:4631
30884 #, no-wrap
30885 msgid ""
30886 " upload (filename|-) remotefilename\n"
30887 "\n"
30888 msgstr ""
30889
30890 # type: textblock
30891 #. type: textblock
30892 #: ../fish/guestfish-actions.pod:4638
30893 msgid "See also L</download>."
30894 msgstr ""
30895
30896 # type: =head2
30897 #. type: =head2
30898 #: ../fish/guestfish-actions.pod:4642
30899 msgid "upload-offset"
30900 msgstr ""
30901
30902 # type: verbatim
30903 #. type: verbatim
30904 #: ../fish/guestfish-actions.pod:4644
30905 #, no-wrap
30906 msgid ""
30907 " upload-offset (filename|-) remotefilename offset\n"
30908 "\n"
30909 msgstr ""
30910
30911 # type: textblock
30912 #. type: textblock
30913 #: ../fish/guestfish-actions.pod:4656
30914 msgid ""
30915 "Note that there is no limit on the amount of data that can be uploaded with "
30916 "this call, unlike with L</pwrite>, and this call always writes the full "
30917 "amount unless an error occurs."
30918 msgstr ""
30919
30920 # type: textblock
30921 #. type: textblock
30922 #: ../fish/guestfish-actions.pod:4661
30923 msgid "See also L</upload>, L</pwrite>."
30924 msgstr ""
30925
30926 # type: =head2
30927 #. type: =head2
30928 #: ../fish/guestfish-actions.pod:4665
30929 msgid "utimens"
30930 msgstr ""
30931
30932 # type: verbatim
30933 #. type: verbatim
30934 #: ../fish/guestfish-actions.pod:4667
30935 #, no-wrap
30936 msgid ""
30937 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
30938 "\n"
30939 msgstr ""
30940
30941 # type: =head2
30942 #. type: =head2
30943 #: ../fish/guestfish-actions.pod:4686
30944 msgid "version"
30945 msgstr ""
30946
30947 # type: verbatim
30948 #. type: verbatim
30949 #: ../fish/guestfish-actions.pod:4688
30950 #, no-wrap
30951 msgid ""
30952 " version\n"
30953 "\n"
30954 msgstr ""
30955
30956 # type: textblock
30957 #. type: textblock
30958 #: ../fish/guestfish-actions.pod:4715
30959 msgid ""
30960 "I<Note:> Don't use this call to test for availability of features.  In "
30961 "enterprise distributions we backport features from later versions into "
30962 "earlier versions, making this an unreliable way to test for features.  Use "
30963 "L</available> instead."
30964 msgstr ""
30965
30966 # type: =head2
30967 #. type: =head2
30968 #: ../fish/guestfish-actions.pod:4721
30969 msgid "vfs-label"
30970 msgstr ""
30971
30972 # type: verbatim
30973 #. type: verbatim
30974 #: ../fish/guestfish-actions.pod:4723
30975 #, no-wrap
30976 msgid ""
30977 " vfs-label device\n"
30978 "\n"
30979 msgstr ""
30980
30981 # type: textblock
30982 #. type: textblock
30983 #: ../fish/guestfish-actions.pod:4730
30984 msgid "To find a filesystem from the label, use L</findfs-label>."
30985 msgstr ""
30986
30987 # type: =head2
30988 #. type: =head2
30989 #: ../fish/guestfish-actions.pod:4732
30990 msgid "vfs-type"
30991 msgstr ""
30992
30993 # type: verbatim
30994 #. type: verbatim
30995 #: ../fish/guestfish-actions.pod:4734
30996 #, no-wrap
30997 msgid ""
30998 " vfs-type device\n"
30999 "\n"
31000 msgstr ""
31001
31002 # type: =head2
31003 #. type: =head2
31004 #: ../fish/guestfish-actions.pod:4744
31005 msgid "vfs-uuid"
31006 msgstr ""
31007
31008 # type: verbatim
31009 #. type: verbatim
31010 #: ../fish/guestfish-actions.pod:4746
31011 #, no-wrap
31012 msgid ""
31013 " vfs-uuid device\n"
31014 "\n"
31015 msgstr ""
31016
31017 # type: textblock
31018 #. type: textblock
31019 #: ../fish/guestfish-actions.pod:4753
31020 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
31021 msgstr ""
31022
31023 # type: =head2
31024 #. type: =head2
31025 #: ../fish/guestfish-actions.pod:4755
31026 msgid "vg-activate"
31027 msgstr ""
31028
31029 # type: verbatim
31030 #. type: verbatim
31031 #: ../fish/guestfish-actions.pod:4757
31032 #, no-wrap
31033 msgid ""
31034 " vg-activate true|false 'volgroups ...'\n"
31035 "\n"
31036 msgstr ""
31037
31038 # type: =head2
31039 #. type: =head2
31040 #: ../fish/guestfish-actions.pod:4770
31041 msgid "vg-activate-all"
31042 msgstr ""
31043
31044 # type: verbatim
31045 #. type: verbatim
31046 #: ../fish/guestfish-actions.pod:4772
31047 #, no-wrap
31048 msgid ""
31049 " vg-activate-all true|false\n"
31050 "\n"
31051 msgstr ""
31052
31053 # type: =head2
31054 #. type: =head2
31055 #: ../fish/guestfish-actions.pod:4782
31056 msgid "vgcreate"
31057 msgstr ""
31058
31059 # type: verbatim
31060 #. type: verbatim
31061 #: ../fish/guestfish-actions.pod:4784
31062 #, no-wrap
31063 msgid ""
31064 " vgcreate volgroup 'physvols ...'\n"
31065 "\n"
31066 msgstr ""
31067
31068 # type: =head2
31069 #. type: =head2
31070 #: ../fish/guestfish-actions.pod:4789
31071 msgid "vglvuuids"
31072 msgstr ""
31073
31074 # type: verbatim
31075 #. type: verbatim
31076 #: ../fish/guestfish-actions.pod:4791
31077 #, no-wrap
31078 msgid ""
31079 " vglvuuids vgname\n"
31080 "\n"
31081 msgstr ""
31082
31083 # type: textblock
31084 #. type: textblock
31085 #: ../fish/guestfish-actions.pod:4796
31086 msgid ""
31087 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
31088 "logical volumes and volume groups."
31089 msgstr ""
31090
31091 # type: textblock
31092 #. type: textblock
31093 #: ../fish/guestfish-actions.pod:4799
31094 msgid "See also L</vgpvuuids>."
31095 msgstr ""
31096
31097 # type: =head2
31098 #. type: =head2
31099 #: ../fish/guestfish-actions.pod:4801
31100 msgid "vgpvuuids"
31101 msgstr ""
31102
31103 # type: verbatim
31104 #. type: verbatim
31105 #: ../fish/guestfish-actions.pod:4803
31106 #, no-wrap
31107 msgid ""
31108 " vgpvuuids vgname\n"
31109 "\n"
31110 msgstr ""
31111
31112 # type: textblock
31113 #. type: textblock
31114 #: ../fish/guestfish-actions.pod:4808
31115 msgid ""
31116 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
31117 "physical volumes and volume groups."
31118 msgstr ""
31119
31120 # type: textblock
31121 #. type: textblock
31122 #: ../fish/guestfish-actions.pod:4811
31123 msgid "See also L</vglvuuids>."
31124 msgstr ""
31125
31126 # type: =head2
31127 #. type: =head2
31128 #: ../fish/guestfish-actions.pod:4813
31129 msgid "vgremove"
31130 msgstr ""
31131
31132 # type: verbatim
31133 #. type: verbatim
31134 #: ../fish/guestfish-actions.pod:4815
31135 #, no-wrap
31136 msgid ""
31137 " vgremove vgname\n"
31138 "\n"
31139 msgstr ""
31140
31141 # type: =head2
31142 #. type: =head2
31143 #: ../fish/guestfish-actions.pod:4822
31144 msgid "vgrename"
31145 msgstr ""
31146
31147 # type: verbatim
31148 #. type: verbatim
31149 #: ../fish/guestfish-actions.pod:4824
31150 #, no-wrap
31151 msgid ""
31152 " vgrename volgroup newvolgroup\n"
31153 "\n"
31154 msgstr ""
31155
31156 # type: =head2
31157 #. type: =head2
31158 #: ../fish/guestfish-actions.pod:4828
31159 msgid "vgs"
31160 msgstr ""
31161
31162 # type: verbatim
31163 #. type: verbatim
31164 #: ../fish/guestfish-actions.pod:4830
31165 #, no-wrap
31166 msgid ""
31167 " vgs\n"
31168 "\n"
31169 msgstr ""
31170
31171 # type: textblock
31172 #. type: textblock
31173 #: ../fish/guestfish-actions.pod:4838
31174 msgid "See also L</vgs-full>."
31175 msgstr ""
31176
31177 # type: =head2
31178 #. type: =head2
31179 #: ../fish/guestfish-actions.pod:4840
31180 msgid "vgs-full"
31181 msgstr ""
31182
31183 # type: verbatim
31184 #. type: verbatim
31185 #: ../fish/guestfish-actions.pod:4842
31186 #, no-wrap
31187 msgid ""
31188 " vgs-full\n"
31189 "\n"
31190 msgstr ""
31191
31192 # type: =head2
31193 #. type: =head2
31194 #: ../fish/guestfish-actions.pod:4847
31195 msgid "vgscan"
31196 msgstr ""
31197
31198 # type: verbatim
31199 #. type: verbatim
31200 #: ../fish/guestfish-actions.pod:4849
31201 #, no-wrap
31202 msgid ""
31203 " vgscan\n"
31204 "\n"
31205 msgstr ""
31206
31207 # type: =head2
31208 #. type: =head2
31209 #: ../fish/guestfish-actions.pod:4854
31210 msgid "vguuid"
31211 msgstr ""
31212
31213 # type: verbatim
31214 #. type: verbatim
31215 #: ../fish/guestfish-actions.pod:4856
31216 #, no-wrap
31217 msgid ""
31218 " vguuid vgname\n"
31219 "\n"
31220 msgstr ""
31221
31222 # type: =head2
31223 #. type: =head2
31224 #: ../fish/guestfish-actions.pod:4860
31225 msgid "wc-c"
31226 msgstr ""
31227
31228 # type: verbatim
31229 #. type: verbatim
31230 #: ../fish/guestfish-actions.pod:4862
31231 #, no-wrap
31232 msgid ""
31233 " wc-c path\n"
31234 "\n"
31235 msgstr ""
31236
31237 # type: =head2
31238 #. type: =head2
31239 #: ../fish/guestfish-actions.pod:4867
31240 msgid "wc-l"
31241 msgstr ""
31242
31243 # type: verbatim
31244 #. type: verbatim
31245 #: ../fish/guestfish-actions.pod:4869
31246 #, no-wrap
31247 msgid ""
31248 " wc-l path\n"
31249 "\n"
31250 msgstr ""
31251
31252 # type: =head2
31253 #. type: =head2
31254 #: ../fish/guestfish-actions.pod:4874
31255 msgid "wc-w"
31256 msgstr ""
31257
31258 # type: verbatim
31259 #. type: verbatim
31260 #: ../fish/guestfish-actions.pod:4876
31261 #, no-wrap
31262 msgid ""
31263 " wc-w path\n"
31264 "\n"
31265 msgstr ""
31266
31267 # type: =head2
31268 #. type: =head2
31269 #: ../fish/guestfish-actions.pod:4881
31270 msgid "write"
31271 msgstr ""
31272
31273 # type: verbatim
31274 #. type: verbatim
31275 #: ../fish/guestfish-actions.pod:4883
31276 #, no-wrap
31277 msgid ""
31278 " write path content\n"
31279 "\n"
31280 msgstr ""
31281
31282 # type: =head2
31283 #. type: =head2
31284 #: ../fish/guestfish-actions.pod:4891
31285 msgid "write-file"
31286 msgstr ""
31287
31288 # type: verbatim
31289 #. type: verbatim
31290 #: ../fish/guestfish-actions.pod:4893
31291 #, no-wrap
31292 msgid ""
31293 " write-file path content size\n"
31294 "\n"
31295 msgstr ""
31296
31297 #. type: textblock
31298 #: ../fish/guestfish-actions.pod:4909
31299 msgid ""
31300 "This function is deprecated.  In new code, use the L</write> call instead."
31301 msgstr ""
31302
31303 # type: =head2
31304 #. type: =head2
31305 #: ../fish/guestfish-actions.pod:4916
31306 msgid "zegrep"
31307 msgstr ""
31308
31309 # type: verbatim
31310 #. type: verbatim
31311 #: ../fish/guestfish-actions.pod:4918
31312 #, no-wrap
31313 msgid ""
31314 " zegrep regex path\n"
31315 "\n"
31316 msgstr ""
31317
31318 # type: =head2
31319 #. type: =head2
31320 #: ../fish/guestfish-actions.pod:4926
31321 msgid "zegrepi"
31322 msgstr ""
31323
31324 # type: verbatim
31325 #. type: verbatim
31326 #: ../fish/guestfish-actions.pod:4928
31327 #, no-wrap
31328 msgid ""
31329 " zegrepi regex path\n"
31330 "\n"
31331 msgstr ""
31332
31333 # type: =head2
31334 #. type: =head2
31335 #: ../fish/guestfish-actions.pod:4936
31336 msgid "zero"
31337 msgstr ""
31338
31339 # type: verbatim
31340 #. type: verbatim
31341 #: ../fish/guestfish-actions.pod:4938
31342 #, no-wrap
31343 msgid ""
31344 " zero device\n"
31345 "\n"
31346 msgstr ""
31347
31348 # type: textblock
31349 #. type: textblock
31350 #: ../fish/guestfish-actions.pod:4946
31351 msgid "See also: L</zero-device>, L</scrub-device>."
31352 msgstr ""
31353
31354 # type: =head2
31355 #. type: =head2
31356 #: ../fish/guestfish-actions.pod:4948
31357 msgid "zero-device"
31358 msgstr ""
31359
31360 # type: verbatim
31361 #. type: verbatim
31362 #: ../fish/guestfish-actions.pod:4950
31363 #, no-wrap
31364 msgid ""
31365 " zero-device device\n"
31366 "\n"
31367 msgstr ""
31368
31369 # type: textblock
31370 #. type: textblock
31371 #: ../fish/guestfish-actions.pod:4952
31372 msgid ""
31373 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
31374 "which just zeroes the first few blocks of a device."
31375 msgstr ""
31376
31377 # type: =head2
31378 #. type: =head2
31379 #: ../fish/guestfish-actions.pod:4959
31380 msgid "zerofree"
31381 msgstr ""
31382
31383 # type: verbatim
31384 #. type: verbatim
31385 #: ../fish/guestfish-actions.pod:4961
31386 #, no-wrap
31387 msgid ""
31388 " zerofree device\n"
31389 "\n"
31390 msgstr ""
31391
31392 # type: =head2
31393 #. type: =head2
31394 #: ../fish/guestfish-actions.pod:4974
31395 msgid "zfgrep"
31396 msgstr ""
31397
31398 # type: verbatim
31399 #. type: verbatim
31400 #: ../fish/guestfish-actions.pod:4976
31401 #, no-wrap
31402 msgid ""
31403 " zfgrep pattern path\n"
31404 "\n"
31405 msgstr ""
31406
31407 # type: =head2
31408 #. type: =head2
31409 #: ../fish/guestfish-actions.pod:4984
31410 msgid "zfgrepi"
31411 msgstr ""
31412
31413 # type: verbatim
31414 #. type: verbatim
31415 #: ../fish/guestfish-actions.pod:4986
31416 #, no-wrap
31417 msgid ""
31418 " zfgrepi pattern path\n"
31419 "\n"
31420 msgstr ""
31421
31422 # type: =head2
31423 #. type: =head2
31424 #: ../fish/guestfish-actions.pod:4994
31425 msgid "zfile"
31426 msgstr ""
31427
31428 # type: verbatim
31429 #. type: verbatim
31430 #: ../fish/guestfish-actions.pod:4996
31431 #, no-wrap
31432 msgid ""
31433 " zfile meth path\n"
31434 "\n"
31435 msgstr ""
31436
31437 # type: textblock
31438 #. type: textblock
31439 #: ../fish/guestfish-actions.pod:5003
31440 msgid ""
31441 "Since 1.0.63, use L</file> instead which can now process compressed files."
31442 msgstr ""
31443
31444 #. type: textblock
31445 #: ../fish/guestfish-actions.pod:5006
31446 msgid ""
31447 "This function is deprecated.  In new code, use the L</file> call instead."
31448 msgstr ""
31449
31450 # type: =head2
31451 #. type: =head2
31452 #: ../fish/guestfish-actions.pod:5013
31453 msgid "zgrep"
31454 msgstr ""
31455
31456 # type: verbatim
31457 #. type: verbatim
31458 #: ../fish/guestfish-actions.pod:5015
31459 #, no-wrap
31460 msgid ""
31461 " zgrep regex path\n"
31462 "\n"
31463 msgstr ""
31464
31465 # type: =head2
31466 #. type: =head2
31467 #: ../fish/guestfish-actions.pod:5023
31468 msgid "zgrepi"
31469 msgstr ""
31470
31471 # type: verbatim
31472 #. type: verbatim
31473 #: ../fish/guestfish-actions.pod:5025
31474 #, no-wrap
31475 msgid ""
31476 " zgrepi regex path\n"
31477 "\n"
31478 msgstr ""
31479
31480 # type: =head2
31481 #. type: =head2
31482 #: ../fish/guestfish-commands.pod:1
31483 msgid "alloc"
31484 msgstr ""
31485
31486 # type: =head2
31487 #. type: =head2
31488 #: ../fish/guestfish-commands.pod:3
31489 msgid "allocate"
31490 msgstr ""
31491
31492 # type: verbatim
31493 #. type: verbatim
31494 #: ../fish/guestfish-commands.pod:5
31495 #, no-wrap
31496 msgid ""
31497 " alloc filename size\n"
31498 "\n"
31499 msgstr ""
31500
31501 # type: textblock
31502 #. type: textblock
31503 #: ../fish/guestfish-commands.pod:7
31504 msgid ""
31505 "This creates an empty (zeroed) file of the given size, and then adds so it "
31506 "can be further examined."
31507 msgstr ""
31508
31509 # type: textblock
31510 #. type: textblock
31511 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
31512 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
31513 msgstr ""
31514
31515 # type: textblock
31516 #. type: textblock
31517 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
31518 msgid "Size can be specified using standard suffixes, eg. C<1M>."
31519 msgstr ""
31520
31521 # type: textblock
31522 #. type: textblock
31523 #: ../fish/guestfish-commands.pod:14
31524 msgid ""
31525 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
31526 "image, see L</PREPARED DISK IMAGES>."
31527 msgstr ""
31528
31529 # type: =head2
31530 #. type: =head2
31531 #: ../fish/guestfish-commands.pod:17
31532 msgid "copy-in"
31533 msgstr ""
31534
31535 # type: verbatim
31536 #. type: verbatim
31537 #: ../fish/guestfish-commands.pod:19
31538 #, no-wrap
31539 msgid ""
31540 " copy-in local [local ...] /remotedir\n"
31541 "\n"
31542 msgstr ""
31543
31544 # type: textblock
31545 #. type: textblock
31546 #: ../fish/guestfish-commands.pod:21
31547 msgid ""
31548 "C<copy-in> copies local files or directories recursively into the disk "
31549 "image, placing them in the directory called C</remotedir> (which must "
31550 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
31551 "other commands as necessary."
31552 msgstr ""
31553
31554 # type: textblock
31555 #. type: textblock
31556 #: ../fish/guestfish-commands.pod:26
31557 msgid ""
31558 "Multiple local files and directories can be specified, but the last "
31559 "parameter must always be a remote directory.  Wildcards cannot be used."
31560 msgstr ""
31561
31562 # type: =head2
31563 #. type: =head2
31564 #: ../fish/guestfish-commands.pod:30
31565 msgid "copy-out"
31566 msgstr ""
31567
31568 # type: verbatim
31569 #. type: verbatim
31570 #: ../fish/guestfish-commands.pod:32
31571 #, no-wrap
31572 msgid ""
31573 " copy-out remote [remote ...] localdir\n"
31574 "\n"
31575 msgstr ""
31576
31577 # type: textblock
31578 #. type: textblock
31579 #: ../fish/guestfish-commands.pod:34
31580 msgid ""
31581 "C<copy-out> copies remote files or directories recursively out of the disk "
31582 "image, placing them on the host disk in a local directory called C<localdir> "
31583 "(which must exist).  This guestfish meta-command turns into a sequence of L</"
31584 "download>, L</tar-out> and other commands as necessary."
31585 msgstr ""
31586
31587 # type: textblock
31588 #. type: textblock
31589 #: ../fish/guestfish-commands.pod:40
31590 msgid ""
31591 "Multiple remote files and directories can be specified, but the last "
31592 "parameter must always be a local directory.  To download to the current "
31593 "directory, use C<.> as in:"
31594 msgstr ""
31595
31596 # type: verbatim
31597 #. type: verbatim
31598 #: ../fish/guestfish-commands.pod:44
31599 #, no-wrap
31600 msgid ""
31601 " copy-out /home .\n"
31602 "\n"
31603 msgstr ""
31604
31605 # type: textblock
31606 #. type: textblock
31607 #: ../fish/guestfish-commands.pod:46
31608 msgid ""
31609 "Wildcards cannot be used in the ordinary command, but you can use them with "
31610 "the help of L</glob> like this:"
31611 msgstr ""
31612
31613 # type: verbatim
31614 #. type: verbatim
31615 #: ../fish/guestfish-commands.pod:49
31616 #, no-wrap
31617 msgid ""
31618 " glob copy-out /home/* .\n"
31619 "\n"
31620 msgstr ""
31621
31622 # type: =head2
31623 #. type: =head2
31624 #: ../fish/guestfish-commands.pod:51
31625 msgid "echo"
31626 msgstr ""
31627
31628 # type: verbatim
31629 #. type: verbatim
31630 #: ../fish/guestfish-commands.pod:53
31631 #, no-wrap
31632 msgid ""
31633 " echo [params ...]\n"
31634 "\n"
31635 msgstr ""
31636
31637 # type: textblock
31638 #. type: textblock
31639 #: ../fish/guestfish-commands.pod:55
31640 msgid "This echos the parameters to the terminal."
31641 msgstr ""
31642
31643 # type: =head2
31644 #. type: =head2
31645 #: ../fish/guestfish-commands.pod:57
31646 msgid "edit"
31647 msgstr ""
31648
31649 # type: =head2
31650 #. type: =head2
31651 #: ../fish/guestfish-commands.pod:59
31652 msgid "vi"
31653 msgstr ""
31654
31655 # type: =head2
31656 #. type: =head2
31657 #: ../fish/guestfish-commands.pod:61
31658 msgid "emacs"
31659 msgstr ""
31660
31661 # type: verbatim
31662 #. type: verbatim
31663 #: ../fish/guestfish-commands.pod:63
31664 #, no-wrap
31665 msgid ""
31666 " edit filename\n"
31667 "\n"
31668 msgstr ""
31669
31670 # type: textblock
31671 #. type: textblock
31672 #: ../fish/guestfish-commands.pod:65
31673 msgid ""
31674 "This is used to edit a file.  It downloads the file, edits it locally using "
31675 "your editor, then uploads the result."
31676 msgstr ""
31677
31678 # type: textblock
31679 #. type: textblock
31680 #: ../fish/guestfish-commands.pod:68
31681 msgid ""
31682 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
31683 "or C<emacs> you will get those corresponding editors."
31684 msgstr ""
31685
31686 # type: =head2
31687 #. type: =head2
31688 #: ../fish/guestfish-commands.pod:72
31689 msgid "glob"
31690 msgstr ""
31691
31692 # type: verbatim
31693 #. type: verbatim
31694 #: ../fish/guestfish-commands.pod:74
31695 #, no-wrap
31696 msgid ""
31697 " glob command args...\n"
31698 "\n"
31699 msgstr ""
31700
31701 # type: textblock
31702 #. type: textblock
31703 #: ../fish/guestfish-commands.pod:76
31704 msgid ""
31705 "Expand wildcards in any paths in the args list, and run C<command> "
31706 "repeatedly on each matching path."
31707 msgstr ""
31708
31709 # type: textblock
31710 #. type: textblock
31711 #: ../fish/guestfish-commands.pod:79
31712 msgid "See L</WILDCARDS AND GLOBBING>."
31713 msgstr ""
31714
31715 # type: =head2
31716 #. type: =head2
31717 #: ../fish/guestfish-commands.pod:81
31718 msgid "hexedit"
31719 msgstr ""
31720
31721 # type: verbatim
31722 #. type: verbatim
31723 #: ../fish/guestfish-commands.pod:83
31724 #, no-wrap
31725 msgid ""
31726 " hexedit <filename|device>\n"
31727 " hexedit <filename|device> <max>\n"
31728 " hexedit <filename|device> <start> <max>\n"
31729 "\n"
31730 msgstr ""
31731
31732 # type: textblock
31733 #. type: textblock
31734 #: ../fish/guestfish-commands.pod:87
31735 msgid ""
31736 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
31737 "device."
31738 msgstr ""
31739
31740 # type: textblock
31741 #. type: textblock
31742 #: ../fish/guestfish-commands.pod:90
31743 msgid ""
31744 "This command works by downloading potentially the whole file or device, "
31745 "editing it locally, then uploading it.  If the file or device is large, you "
31746 "have to specify which part you wish to edit by using C<max> and/or C<start> "
31747 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
31748 "usual modifiers allowed such as C<1M> (1 megabyte)."
31749 msgstr ""
31750
31751 # type: textblock
31752 #. type: textblock
31753 #: ../fish/guestfish-commands.pod:97
31754 msgid "For example to edit the first few sectors of a disk you might do:"
31755 msgstr ""
31756
31757 # type: verbatim
31758 #. type: verbatim
31759 #: ../fish/guestfish-commands.pod:100
31760 #, no-wrap
31761 msgid ""
31762 " hexedit /dev/sda 1M\n"
31763 "\n"
31764 msgstr ""
31765
31766 # type: textblock
31767 #. type: textblock
31768 #: ../fish/guestfish-commands.pod:102
31769 msgid ""
31770 "which would allow you to edit anywhere within the first megabyte of the disk."
31771 msgstr ""
31772
31773 # type: textblock
31774 #. type: textblock
31775 #: ../fish/guestfish-commands.pod:105
31776 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
31777 msgstr ""
31778
31779 # type: verbatim
31780 #. type: verbatim
31781 #: ../fish/guestfish-commands.pod:107
31782 #, no-wrap
31783 msgid ""
31784 " hexedit /dev/sda1 0x400 0x400\n"
31785 "\n"
31786 msgstr ""
31787
31788 # type: textblock
31789 #. type: textblock
31790 #: ../fish/guestfish-commands.pod:109
31791 msgid "(assuming the superblock is in the standard location)."
31792 msgstr ""
31793
31794 # type: textblock
31795 #. type: textblock
31796 #: ../fish/guestfish-commands.pod:111
31797 msgid ""
31798 "This command requires the external L<hexedit(1)> program.  You can specify "
31799 "another program to use by setting the C<HEXEDITOR> environment variable."
31800 msgstr ""
31801
31802 # type: textblock
31803 #. type: textblock
31804 #: ../fish/guestfish-commands.pod:115
31805 msgid "See also L</hexdump>."
31806 msgstr ""
31807
31808 # type: =head2
31809 #. type: =head2
31810 #: ../fish/guestfish-commands.pod:117
31811 msgid "lcd"
31812 msgstr ""
31813
31814 # type: verbatim
31815 #. type: verbatim
31816 #: ../fish/guestfish-commands.pod:119
31817 #, no-wrap
31818 msgid ""
31819 " lcd directory\n"
31820 "\n"
31821 msgstr ""
31822
31823 # type: textblock
31824 #. type: textblock
31825 #: ../fish/guestfish-commands.pod:121
31826 msgid ""
31827 "Change the local directory, ie. the current directory of guestfish itself."
31828 msgstr ""
31829
31830 # type: textblock
31831 #. type: textblock
31832 #: ../fish/guestfish-commands.pod:124
31833 msgid "Note that C<!cd> won't do what you might expect."
31834 msgstr ""
31835
31836 # type: =head2
31837 #. type: =head2
31838 #: ../fish/guestfish-commands.pod:126
31839 msgid "man"
31840 msgstr ""
31841
31842 # type: =head2
31843 #. type: =head2
31844 #: ../fish/guestfish-commands.pod:128
31845 msgid "manual"
31846 msgstr ""
31847
31848 # type: verbatim
31849 #. type: verbatim
31850 #: ../fish/guestfish-commands.pod:130
31851 #, no-wrap
31852 msgid ""
31853 "  man\n"
31854 "\n"
31855 msgstr ""
31856
31857 # type: textblock
31858 #. type: textblock
31859 #: ../fish/guestfish-commands.pod:132
31860 msgid "Opens the manual page for guestfish."
31861 msgstr ""
31862
31863 # type: =head2
31864 #. type: =head2
31865 #: ../fish/guestfish-commands.pod:134
31866 msgid "more"
31867 msgstr ""
31868
31869 # type: =head2
31870 #. type: =head2
31871 #: ../fish/guestfish-commands.pod:136
31872 msgid "less"
31873 msgstr ""
31874
31875 # type: verbatim
31876 #. type: verbatim
31877 #: ../fish/guestfish-commands.pod:138
31878 #, no-wrap
31879 msgid ""
31880 " more filename\n"
31881 "\n"
31882 msgstr ""
31883
31884 # type: verbatim
31885 #. type: verbatim
31886 #: ../fish/guestfish-commands.pod:140
31887 #, no-wrap
31888 msgid ""
31889 " less filename\n"
31890 "\n"
31891 msgstr ""
31892
31893 # type: textblock
31894 #. type: textblock
31895 #: ../fish/guestfish-commands.pod:142
31896 msgid "This is used to view a file."
31897 msgstr ""
31898
31899 # type: textblock
31900 #. type: textblock
31901 #: ../fish/guestfish-commands.pod:144
31902 msgid ""
31903 "The default viewer is C<$PAGER>.  However if you use the alternate command "
31904 "C<less> you will get the C<less> command specifically."
31905 msgstr ""
31906
31907 # type: =head2
31908 #. type: =head2
31909 #: ../fish/guestfish-commands.pod:147
31910 msgid "reopen"
31911 msgstr ""
31912
31913 # type: verbatim
31914 #. type: verbatim
31915 #: ../fish/guestfish-commands.pod:149
31916 #, no-wrap
31917 msgid ""
31918 "  reopen\n"
31919 "\n"
31920 msgstr ""
31921
31922 # type: textblock
31923 #. type: textblock
31924 #: ../fish/guestfish-commands.pod:151
31925 msgid ""
31926 "Close and reopen the libguestfs handle.  It is not necessary to use this "
31927 "normally, because the handle is closed properly when guestfish exits.  "
31928 "However this is occasionally useful for testing."
31929 msgstr ""
31930
31931 # type: =head2
31932 #. type: =head2
31933 #: ../fish/guestfish-commands.pod:155
31934 msgid "sparse"
31935 msgstr ""
31936
31937 # type: verbatim
31938 #. type: verbatim
31939 #: ../fish/guestfish-commands.pod:157
31940 #, no-wrap
31941 msgid ""
31942 " sparse filename size\n"
31943 "\n"
31944 msgstr ""
31945
31946 # type: textblock
31947 #. type: textblock
31948 #: ../fish/guestfish-commands.pod:159
31949 msgid ""
31950 "This creates an empty sparse file of the given size, and then adds so it can "
31951 "be further examined."
31952 msgstr ""
31953
31954 # type: textblock
31955 #. type: textblock
31956 #: ../fish/guestfish-commands.pod:162
31957 msgid ""
31958 "In all respects it works the same as the L</alloc> command, except that the "
31959 "image file is allocated sparsely, which means that disk blocks are not "
31960 "assigned to the file until they are needed.  Sparse disk files only use "
31961 "space when written to, but they are slower and there is a danger you could "
31962 "run out of real disk space during a write operation."
31963 msgstr ""
31964
31965 # type: =head2
31966 #. type: =head2
31967 #: ../fish/guestfish-commands.pod:172
31968 msgid "supported"
31969 msgstr ""
31970
31971 # type: verbatim
31972 #. type: verbatim
31973 #: ../fish/guestfish-commands.pod:174
31974 #, no-wrap
31975 msgid ""
31976 " supported\n"
31977 "\n"
31978 msgstr ""
31979
31980 # type: textblock
31981 #. type: textblock
31982 #: ../fish/guestfish-commands.pod:176
31983 msgid ""
31984 "This command returns a list of the optional groups known to the daemon, and "
31985 "indicates which ones are supported by this build of the libguestfs appliance."
31986 msgstr ""
31987
31988 # type: textblock
31989 #. type: textblock
31990 #: ../fish/guestfish-commands.pod:180
31991 msgid "See also L<guestfs(3)/AVAILABILITY>."
31992 msgstr ""
31993
31994 # type: =head2
31995 #. type: =head2
31996 #: ../fish/guestfish-commands.pod:182
31997 msgid "time"
31998 msgstr ""
31999
32000 # type: verbatim
32001 #. type: verbatim
32002 #: ../fish/guestfish-commands.pod:184
32003 #, no-wrap
32004 msgid ""
32005 " time command args...\n"
32006 "\n"
32007 msgstr ""
32008
32009 # type: textblock
32010 #. type: textblock
32011 #: ../fish/guestfish-commands.pod:186
32012 msgid ""
32013 "Run the command as usual, but print the elapsed time afterwards.  This can "
32014 "be useful for benchmarking operations."
32015 msgstr ""
32016
32017 # type: textblock
32018 #. type: textblock
32019 #: ../test-tool/libguestfs-test-tool.pod:5
32020 msgid "libguestfs-test-tool - End user tests for libguestfs"
32021 msgstr ""
32022
32023 # type: verbatim
32024 #. type: verbatim
32025 #: ../test-tool/libguestfs-test-tool.pod:9
32026 #, no-wrap
32027 msgid ""
32028 " libguestfs-test-tool [--options]\n"
32029 "\n"
32030 msgstr ""
32031
32032 # type: textblock
32033 #. type: textblock
32034 #: ../test-tool/libguestfs-test-tool.pod:13
32035 msgid ""
32036 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
32037 "and developers, to allow them to check basic libguestfs functionality is "
32038 "working.  This is needed because libguestfs occasionally breaks for reasons "
32039 "beyond our control: usually because of changes in the underlying qemu or "
32040 "kernel packages, or the host environment."
32041 msgstr ""
32042
32043 # type: textblock
32044 #. type: textblock
32045 #: ../test-tool/libguestfs-test-tool.pod:20
32046 msgid "If you suspect a problem in libguestfs, then just run:"
32047 msgstr ""
32048
32049 # type: verbatim
32050 #. type: verbatim
32051 #: ../test-tool/libguestfs-test-tool.pod:22
32052 #, no-wrap
32053 msgid ""
32054 " libguestfs-test-tool\n"
32055 "\n"
32056 msgstr ""
32057
32058 # type: textblock
32059 #. type: textblock
32060 #: ../test-tool/libguestfs-test-tool.pod:24
32061 msgid "It will print lots of diagnostic messages."
32062 msgstr ""
32063
32064 # type: textblock
32065 #. type: textblock
32066 #: ../test-tool/libguestfs-test-tool.pod:26
32067 msgid "If it runs to completion successfully, you will see this near the end:"
32068 msgstr ""
32069
32070 # type: verbatim
32071 #. type: verbatim
32072 #: ../test-tool/libguestfs-test-tool.pod:28
32073 #, no-wrap
32074 msgid ""
32075 " ===== TEST FINISHED OK =====\n"
32076 "\n"
32077 msgstr ""
32078
32079 # type: textblock
32080 #. type: textblock
32081 #: ../test-tool/libguestfs-test-tool.pod:30
32082 msgid "and the test tool will exit with code 0."
32083 msgstr ""
32084
32085 # type: textblock
32086 #. type: textblock
32087 #: ../test-tool/libguestfs-test-tool.pod:32
32088 msgid ""
32089 "If it fails (and/or exits with non-zero error code), please paste the "
32090 "B<complete, unedited> output of the test tool into a bug report.  More "
32091 "information about reporting bugs can be found on the L<http://libguestfs.org/"
32092 "> website."
32093 msgstr ""
32094
32095 # type: =item
32096 #. type: =item
32097 #: ../test-tool/libguestfs-test-tool.pod:41
32098 msgid "I<--help>"
32099 msgstr ""
32100
32101 # type: textblock
32102 #. type: textblock
32103 #: ../test-tool/libguestfs-test-tool.pod:43
32104 msgid "Display short usage information and exit."
32105 msgstr ""
32106
32107 # type: =item
32108 #. type: =item
32109 #: ../test-tool/libguestfs-test-tool.pod:45
32110 msgid "I<--qemu qemu_binary>"
32111 msgstr ""
32112
32113 # type: textblock
32114 #. type: textblock
32115 #: ../test-tool/libguestfs-test-tool.pod:47
32116 msgid ""
32117 "If you have downloaded another qemu binary, point this option at the full "
32118 "path of the binary to try it."
32119 msgstr ""
32120
32121 # type: =item
32122 #. type: =item
32123 #: ../test-tool/libguestfs-test-tool.pod:50
32124 msgid "I<--qemudir qemu_source_dir>"
32125 msgstr ""
32126
32127 # type: textblock
32128 #. type: textblock
32129 #: ../test-tool/libguestfs-test-tool.pod:52
32130 msgid ""
32131 "If you have compiled qemu from source, point this option at the source "
32132 "directory to try it."
32133 msgstr ""
32134
32135 # type: =item
32136 #. type: =item
32137 #: ../test-tool/libguestfs-test-tool.pod:55
32138 msgid "I<--timeout N>"
32139 msgstr ""
32140
32141 # type: textblock
32142 #. type: textblock
32143 #: ../test-tool/libguestfs-test-tool.pod:57
32144 msgid ""
32145 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
32146 "does not usually need to be adjusted unless your machine is very slow."
32147 msgstr ""
32148
32149 # type: =head1
32150 #. type: =head1
32151 #: ../test-tool/libguestfs-test-tool.pod:63
32152 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
32153 msgstr ""
32154
32155 # type: textblock
32156 #. type: textblock
32157 #: ../test-tool/libguestfs-test-tool.pod:65
32158 msgid ""
32159 "If you have compiled another version of qemu from source and would like to "
32160 "try that, then you can use the I<--qemudir> option to point to the qemu "
32161 "source directory."
32162 msgstr ""
32163
32164 # type: textblock
32165 #. type: textblock
32166 #: ../test-tool/libguestfs-test-tool.pod:69
32167 msgid ""
32168 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
32169 "option to point to the binary."
32170 msgstr ""
32171
32172 # type: textblock
32173 #. type: textblock
32174 #: ../test-tool/libguestfs-test-tool.pod:72
32175 msgid ""
32176 "When using an alternate qemu with libguestfs, usually you would need to "
32177 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)"
32178 ">).  libguestfs-test-tool writes a temporary qemu wrapper script when you "
32179 "use either of the I<--qemudir> or I<--qemu> options."
32180 msgstr ""
32181
32182 # type: textblock
32183 #. type: textblock
32184 #: ../test-tool/libguestfs-test-tool.pod:79
32185 msgid ""
32186 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
32187 "I<1> if there was an error."
32188 msgstr ""
32189
32190 # type: textblock
32191 #. type: textblock
32192 #: ../test-tool/libguestfs-test-tool.pod:84
32193 msgid ""
32194 "For the full list of environment variables which may affect libguestfs, "
32195 "please see the L<guestfs(3)> manual page."
32196 msgstr ""
32197
32198 # type: textblock
32199 #. type: textblock
32200 #: ../test-tool/libguestfs-test-tool.pod:89
32201 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
32202 msgstr ""
32203
32204 # type: textblock
32205 #. type: textblock
32206 #: ../fuse/guestmount.pod:5
32207 msgid ""
32208 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
32209 msgstr ""
32210
32211 # type: verbatim
32212 #. type: verbatim
32213 #: ../fuse/guestmount.pod:9
32214 #, no-wrap
32215 msgid ""
32216 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
32217 "\n"
32218 msgstr ""
32219
32220 # type: verbatim
32221 #. type: verbatim
32222 #: ../fuse/guestmount.pod:11
32223 #, no-wrap
32224 msgid ""
32225 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
32226 "\n"
32227 msgstr ""
32228
32229 # type: verbatim
32230 #. type: verbatim
32231 #: ../fuse/guestmount.pod:13
32232 #, no-wrap
32233 msgid ""
32234 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
32235 "\n"
32236 msgstr ""
32237
32238 # type: textblock
32239 #. type: textblock
32240 #: ../fuse/guestmount.pod:17
32241 msgid ""
32242 "You must I<not> use C<guestmount> in read-write mode on live virtual "
32243 "machines.  If you do this, you risk disk corruption in the VM."
32244 msgstr ""
32245
32246 # type: textblock
32247 #. type: textblock
32248 #: ../fuse/guestmount.pod:22
32249 msgid ""
32250 "The guestmount program can be used to mount virtual machine filesystems and "
32251 "other disk images on the host.  It uses libguestfs for access to the guest "
32252 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
32253 "a mountable device."
32254 msgstr ""
32255
32256 # type: textblock
32257 #. type: textblock
32258 #: ../fuse/guestmount.pod:27
32259 msgid ""
32260 "Along with other options, you have to give at least one device (I<-a> "
32261 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
32262 "option) or use the I<-i> inspection option.  How this works is better "
32263 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
32264 "below."
32265 msgstr ""
32266
32267 # type: textblock
32268 #. type: textblock
32269 #: ../fuse/guestmount.pod:33
32270 msgid ""
32271 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
32272 "by you, and the filesystem will not be visible to any other users unless you "
32273 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
32274 "the filesystem, use the C<fusermount -u> command."
32275 msgstr ""
32276
32277 # type: textblock
32278 #. type: textblock
32279 #: ../fuse/guestmount.pod:41
32280 msgid ""
32281 "For a typical Windows guest which has its main filesystem on the first "
32282 "partition:"
32283 msgstr ""
32284
32285 # type: verbatim
32286 #. type: verbatim
32287 #: ../fuse/guestmount.pod:44
32288 #, no-wrap
32289 msgid ""
32290 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
32291 "\n"
32292 msgstr ""
32293
32294 # type: textblock
32295 #. type: textblock
32296 #: ../fuse/guestmount.pod:46
32297 msgid ""
32298 "For a typical Linux guest which has a /boot filesystem on the first "
32299 "partition, and the root filesystem on a logical volume:"
32300 msgstr ""
32301
32302 # type: verbatim
32303 #. type: verbatim
32304 #: ../fuse/guestmount.pod:49
32305 #, no-wrap
32306 msgid ""
32307 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
32308 "\n"
32309 msgstr ""
32310
32311 # type: textblock
32312 #. type: textblock
32313 #: ../fuse/guestmount.pod:51
32314 msgid "To get libguestfs to detect guest mountpoints for you:"
32315 msgstr ""
32316
32317 # type: verbatim
32318 #. type: verbatim
32319 #: ../fuse/guestmount.pod:53
32320 #, no-wrap
32321 msgid ""
32322 " guestmount -a guest.img -i --ro /mnt\n"
32323 "\n"
32324 msgstr ""
32325
32326 # type: textblock
32327 #. type: textblock
32328 #: ../fuse/guestmount.pod:55
32329 msgid "For a libvirt guest called \"Guest\" you could do:"
32330 msgstr ""
32331
32332 # type: verbatim
32333 #. type: verbatim
32334 #: ../fuse/guestmount.pod:57
32335 #, no-wrap
32336 msgid ""
32337 " guestmount -d Guest -i --ro /mnt\n"
32338 "\n"
32339 msgstr ""
32340
32341 # type: textblock
32342 #. type: textblock
32343 #: ../fuse/guestmount.pod:59
32344 msgid ""
32345 "If you don't know what filesystems are contained in a guest or disk image, "
32346 "use L<virt-filesystems(1)> first:"
32347 msgstr ""
32348
32349 # type: verbatim
32350 #. type: verbatim
32351 #: ../fuse/guestmount.pod:62
32352 #, no-wrap
32353 msgid ""
32354 " virt-filesystems MyGuest\n"
32355 "\n"
32356 msgstr ""
32357
32358 # type: textblock
32359 #. type: textblock
32360 #: ../fuse/guestmount.pod:64
32361 msgid ""
32362 "If you want to trace the libguestfs calls but without excessive debugging "
32363 "information, we recommend:"
32364 msgstr ""
32365
32366 # type: verbatim
32367 #. type: verbatim
32368 #: ../fuse/guestmount.pod:67
32369 #, no-wrap
32370 msgid ""
32371 " guestmount [...] --trace /mnt\n"
32372 "\n"
32373 msgstr ""
32374
32375 # type: textblock
32376 #. type: textblock
32377 #: ../fuse/guestmount.pod:69
32378 msgid "If you want to debug the program, we recommend:"
32379 msgstr ""
32380
32381 # type: verbatim
32382 #. type: verbatim
32383 #: ../fuse/guestmount.pod:71
32384 #, no-wrap
32385 msgid ""
32386 " guestmount [...] --trace --verbose /mnt\n"
32387 "\n"
32388 msgstr ""
32389
32390 #. type: =head1
32391 #: ../fuse/guestmount.pod:73
32392 msgid "NOTES"
32393 msgstr ""
32394
32395 #. type: =head2
32396 #: ../fuse/guestmount.pod:75
32397 msgid "Other users cannot see the filesystem by default"
32398 msgstr ""
32399
32400 #. type: textblock
32401 #: ../fuse/guestmount.pod:77
32402 msgid ""
32403 "If you mount a filesystem as one user (eg. root), then other users will not "
32404 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
32405 "option when mounting:"
32406 msgstr ""
32407
32408 #. type: verbatim
32409 #: ../fuse/guestmount.pod:81
32410 #, no-wrap
32411 msgid ""
32412 " sudo guestmount [...] -o allow_other /mnt\n"
32413 "\n"
32414 msgstr ""
32415
32416 # type: =item
32417 #. type: =item
32418 #: ../fuse/guestmount.pod:87
32419 msgid "B<-a image> | B<--add image>"
32420 msgstr ""
32421
32422 # type: textblock
32423 #. type: textblock
32424 #: ../fuse/guestmount.pod:89
32425 msgid "Add a block device or virtual machine image."
32426 msgstr ""
32427
32428 # type: =item
32429 #. type: =item
32430 #: ../fuse/guestmount.pod:94
32431 msgid "B<-c URI> | B<--connect URI>"
32432 msgstr ""
32433
32434 # type: =item
32435 #. type: =item
32436 #: ../fuse/guestmount.pod:100
32437 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
32438 msgstr ""
32439
32440 # type: =item
32441 #. type: =item
32442 #: ../fuse/guestmount.pod:106
32443 msgid "B<--dir-cache-timeout N>"
32444 msgstr ""
32445
32446 # type: textblock
32447 #. type: textblock
32448 #: ../fuse/guestmount.pod:108
32449 msgid ""
32450 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
32451 "seconds.  The readdir cache [actually, there are several semi-independent "
32452 "caches] is populated after a readdir(2) call with the stat and extended "
32453 "attributes of the files in the directory, in anticipation that they will be "
32454 "requested soon after."
32455 msgstr ""
32456
32457 # type: textblock
32458 #. type: textblock
32459 #: ../fuse/guestmount.pod:114
32460 msgid ""
32461 "There is also a different attribute cache implemented by FUSE (see the FUSE "
32462 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
32463 "requests, only cache existing ones."
32464 msgstr ""
32465
32466 # type: =item
32467 #. type: =item
32468 #: ../fuse/guestmount.pod:125
32469 msgid "B<--format=raw|qcow2|..> | B<--format>"
32470 msgstr ""
32471
32472 # type: textblock
32473 #. type: textblock
32474 #: ../fuse/guestmount.pod:132
32475 msgid ""
32476 "If you have untrusted raw-format guest disk images, you should use this "
32477 "option to specify the disk format.  This avoids a possible security problem "
32478 "with malicious guests (CVE-2010-3851).  See also L<guestfs(3)/"
32479 "guestfs_add_drive_opts>."
32480 msgstr ""
32481
32482 # type: =item
32483 #. type: =item
32484 #: ../fuse/guestmount.pod:137
32485 msgid "B<--fuse-help>"
32486 msgstr ""
32487
32488 # type: textblock
32489 #. type: textblock
32490 #: ../fuse/guestmount.pod:139
32491 msgid "Display help on special FUSE options (see I<-o> below)."
32492 msgstr ""
32493
32494 # type: textblock
32495 #. type: textblock
32496 #: ../fuse/guestmount.pod:143
32497 msgid "Display brief help and exit."
32498 msgstr ""
32499
32500 # type: =item
32501 #. type: =item
32502 #: ../fuse/guestmount.pod:145
32503 msgid "B<-i> | B<--inspector>"
32504 msgstr ""
32505
32506 # type: textblock
32507 #. type: textblock
32508 #: ../fuse/guestmount.pod:165
32509 msgid ""
32510 "Mount the named partition or logical volume on the given mountpoint B<in the "
32511 "guest> (this has nothing to do with mountpoints in the host)."
32512 msgstr ""
32513
32514 # type: textblock
32515 #. type: textblock
32516 #: ../fuse/guestmount.pod:168
32517 msgid ""
32518 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
32519 "something on C</>."
32520 msgstr ""
32521
32522 # type: =item
32523 #. type: =item
32524 #: ../fuse/guestmount.pod:181
32525 msgid "B<-n> | B<--no-sync>"
32526 msgstr ""
32527
32528 # type: textblock
32529 #. type: textblock
32530 #: ../fuse/guestmount.pod:183
32531 msgid ""
32532 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
32533 "unmounted.  If you specify this option, then we don't attempt to sync the "
32534 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
32535 msgstr ""
32536
32537 # type: =item
32538 #. type: =item
32539 #: ../fuse/guestmount.pod:188
32540 msgid "B<-o option> | B<--option option>"
32541 msgstr ""
32542
32543 # type: textblock
32544 #. type: textblock
32545 #: ../fuse/guestmount.pod:190
32546 msgid "Pass extra options to FUSE."
32547 msgstr ""
32548
32549 # type: textblock
32550 #. type: textblock
32551 #: ../fuse/guestmount.pod:192
32552 msgid ""
32553 "To get a list of all the extra options supported by FUSE, use the command "
32554 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
32555 "of them are a good idea."
32556 msgstr ""
32557
32558 # type: verbatim
32559 #. type: verbatim
32560 #: ../fuse/guestmount.pod:196
32561 #, no-wrap
32562 msgid ""
32563 " guestmount --fuse-help\n"
32564 "\n"
32565 msgstr ""
32566
32567 # type: textblock
32568 #. type: textblock
32569 #: ../fuse/guestmount.pod:198
32570 msgid "Some potentially useful FUSE options:"
32571 msgstr ""
32572
32573 # type: =item
32574 #. type: =item
32575 #: ../fuse/guestmount.pod:202
32576 msgid "B<-o allow_other>"
32577 msgstr ""
32578
32579 # type: textblock
32580 #. type: textblock
32581 #: ../fuse/guestmount.pod:204
32582 msgid "Allow other users to see the filesystem."
32583 msgstr ""
32584
32585 # type: =item
32586 #. type: =item
32587 #: ../fuse/guestmount.pod:206
32588 msgid "B<-o attr_timeout=N>"
32589 msgstr ""
32590
32591 # type: textblock
32592 #. type: textblock
32593 #: ../fuse/guestmount.pod:208
32594 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
32595 msgstr ""
32596
32597 # type: =item
32598 #. type: =item
32599 #: ../fuse/guestmount.pod:210
32600 msgid "B<-o kernel_cache>"
32601 msgstr ""
32602
32603 # type: textblock
32604 #. type: textblock
32605 #: ../fuse/guestmount.pod:212
32606 msgid ""
32607 "Allow the kernel to cache files (reduces the number of reads that have to go "
32608 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
32609 "afford the extra memory usage."
32610 msgstr ""
32611
32612 # type: =item
32613 #. type: =item
32614 #: ../fuse/guestmount.pod:216
32615 msgid "B<-o uid=N> B<-o gid=N>"
32616 msgstr ""
32617
32618 # type: textblock
32619 #. type: textblock
32620 #: ../fuse/guestmount.pod:218
32621 msgid ""
32622 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
32623 "the chosen values."
32624 msgstr ""
32625
32626 # type: =item
32627 #. type: =item
32628 #: ../fuse/guestmount.pod:223
32629 msgid "B<-r> | B<--ro>"
32630 msgstr ""
32631
32632 # type: textblock
32633 #. type: textblock
32634 #: ../fuse/guestmount.pod:225
32635 msgid ""
32636 "Add devices and mount everything read-only.  Also disallow writes and make "
32637 "the disk appear read-only to FUSE."
32638 msgstr ""
32639
32640 # type: textblock
32641 #. type: textblock
32642 #: ../fuse/guestmount.pod:228
32643 msgid ""
32644 "This is highly recommended if you are not going to edit the guest disk.  If "
32645 "the guest is running and this option is I<not> supplied, then there is a "
32646 "strong risk of disk corruption in the guest.  We try to prevent this from "
32647 "happening, but it is not always possible."
32648 msgstr ""
32649
32650 # type: textblock
32651 #. type: textblock
32652 #: ../fuse/guestmount.pod:233
32653 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
32654 msgstr ""
32655
32656 # type: textblock
32657 #. type: textblock
32658 #: ../fuse/guestmount.pod:237
32659 msgid "Enable SELinux support for the guest."
32660 msgstr ""
32661
32662 # type: =item
32663 #. type: =item
32664 #: ../fuse/guestmount.pod:239
32665 msgid "B<-v> | B<--verbose>"
32666 msgstr ""
32667
32668 # type: textblock
32669 #. type: textblock
32670 #: ../fuse/guestmount.pod:241
32671 msgid "Enable verbose messages from underlying libguestfs."
32672 msgstr ""
32673
32674 # type: =item
32675 #. type: =item
32676 #: ../fuse/guestmount.pod:243
32677 msgid "B<-V> | B<--version>"
32678 msgstr ""
32679
32680 # type: textblock
32681 #. type: textblock
32682 #: ../fuse/guestmount.pod:245
32683 msgid "Display the program version and exit."
32684 msgstr ""
32685
32686 # type: =item
32687 #. type: =item
32688 #: ../fuse/guestmount.pod:247
32689 msgid "B<-w> | B<--rw>"
32690 msgstr ""
32691
32692 #. type: textblock
32693 #: ../fuse/guestmount.pod:252 ../fuse/guestmount.pod:273
32694 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
32695 msgstr ""
32696
32697 # type: =item
32698 #. type: =item
32699 #: ../fuse/guestmount.pod:254
32700 msgid "B<-x> | B<--trace>"
32701 msgstr ""
32702
32703 # type: textblock
32704 #. type: textblock
32705 #: ../fuse/guestmount.pod:256
32706 msgid "Trace libguestfs calls and entry into each FUSE function."
32707 msgstr ""
32708
32709 # type: textblock
32710 #. type: textblock
32711 #: ../fuse/guestmount.pod:258
32712 msgid "This also stops the daemon from forking into the background."
32713 msgstr ""
32714
32715 # type: textblock
32716 #. type: textblock
32717 #: ../fuse/guestmount.pod:279
32718 msgid ""
32719 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
32720 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, L<http://fuse.sf."
32721 "net/>."
32722 msgstr ""
32723
32724 # type: textblock
32725 #. type: textblock
32726 #: ../fuse/guestmount.pod:294
32727 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
32728 msgstr ""
32729
32730 # type: textblock
32731 #. type: textblock
32732 #: ../tools/virt-edit.pl:34
32733 msgid "virt-edit - Edit a file in a virtual machine"
32734 msgstr ""
32735
32736 # type: verbatim
32737 #. type: verbatim
32738 #: ../tools/virt-edit.pl:38
32739 #, no-wrap
32740 msgid ""
32741 " virt-edit [--options] domname file\n"
32742 "\n"
32743 msgstr ""
32744
32745 # type: verbatim
32746 #. type: verbatim
32747 #: ../tools/virt-edit.pl:40
32748 #, no-wrap
32749 msgid ""
32750 " virt-edit [--options] disk.img [disk.img ...] file\n"
32751 "\n"
32752 msgstr ""
32753
32754 # type: verbatim
32755 #. type: verbatim
32756 #: ../tools/virt-edit.pl:42
32757 #, no-wrap
32758 msgid ""
32759 " virt-edit [domname|disk.img] file -e 'expr'\n"
32760 "\n"
32761 msgstr ""
32762
32763 # type: textblock
32764 #. type: textblock
32765 #: ../tools/virt-edit.pl:46
32766 msgid ""
32767 "You must I<not> use C<virt-edit> on live virtual machines.  If you do this, "
32768 "you risk disk corruption in the VM.  C<virt-edit> tries to stop you from "
32769 "doing this, but doesn't catch all cases."
32770 msgstr ""
32771
32772 # type: textblock
32773 #. type: textblock
32774 #: ../tools/virt-edit.pl:52
32775 msgid ""
32776 "C<virt-edit> is a command line tool to edit C<file> where C<file> exists in "
32777 "the named virtual machine (or disk image)."
32778 msgstr ""
32779
32780 #. type: textblock
32781 #: ../tools/virt-edit.pl:55
32782 msgid "If you want to just view a file, use L<virt-cat(1)>."
32783 msgstr ""
32784
32785 #. type: textblock
32786 #: ../tools/virt-edit.pl:57
32787 msgid ""
32788 "For more complex cases you should look at the L<guestfish(1)> tool (see L</"
32789 "USING GUESTFISH> below)."
32790 msgstr ""
32791
32792 #. type: textblock
32793 #: ../tools/virt-edit.pl:60
32794 msgid ""
32795 "C<virt-edit> cannot be used to create a new file, nor to edit multiple "
32796 "files.  L<guestfish(1)> can do that and much more."
32797 msgstr ""
32798
32799 # type: textblock
32800 #. type: textblock
32801 #: ../tools/virt-edit.pl:65
32802 msgid "Edit the named files interactively:"
32803 msgstr ""
32804
32805 # type: verbatim
32806 #. type: verbatim
32807 #: ../tools/virt-edit.pl:67
32808 #, no-wrap
32809 msgid ""
32810 " virt-edit mydomain /boot/grub/grub.conf\n"
32811 "\n"
32812 msgstr ""
32813
32814 # type: verbatim
32815 #. type: verbatim
32816 #: ../tools/virt-edit.pl:69
32817 #, no-wrap
32818 msgid ""
32819 " virt-edit mydomain /etc/passwd\n"
32820 "\n"
32821 msgstr ""
32822
32823 #. type: textblock
32824 #: ../tools/virt-edit.pl:71
32825 msgid "For Windows guests, some Windows paths are understood:"
32826 msgstr ""
32827
32828 #. type: verbatim
32829 #: ../tools/virt-edit.pl:73
32830 #, no-wrap
32831 msgid ""
32832 " virt-edit mywindomain 'c:\\autoexec.bat'\n"
32833 "\n"
32834 msgstr ""
32835
32836 # type: textblock
32837 #. type: textblock
32838 #: ../tools/virt-edit.pl:75
32839 msgid ""
32840 "You can also edit files non-interactively (see L</NON-INTERACTIVE EDITING> "
32841 "below).  To change the init default level to 5:"
32842 msgstr ""
32843
32844 # type: verbatim
32845 #. type: verbatim
32846 #: ../tools/virt-edit.pl:79
32847 #, no-wrap
32848 msgid ""
32849 " virt-edit mydomain /etc/inittab -e 's/^id:.*/id:5:initdefault:/'\n"
32850 "\n"
32851 msgstr ""
32852
32853 # type: textblock
32854 #. type: textblock
32855 #: ../tools/virt-edit.pl:91 ../tools/virt-win-reg.pl:106
32856 #: ../tools/virt-list-filesystems.pl:63 ../tools/virt-tar.pl:113
32857 #: ../tools/virt-make-fs.pl:163 ../tools/virt-list-partitions.pl:64
32858 msgid "Display brief help."
32859 msgstr ""
32860
32861 # type: textblock
32862 #. type: textblock
32863 #: ../tools/virt-edit.pl:99 ../tools/virt-win-reg.pl:114
32864 #: ../tools/virt-list-filesystems.pl:71 ../tools/virt-tar.pl:121
32865 #: ../tools/virt-make-fs.pl:171 ../tools/virt-list-partitions.pl:72
32866 msgid "Display version number and exit."
32867 msgstr ""
32868
32869 # type: =item
32870 #. type: =item
32871 #: ../tools/virt-edit.pl:105
32872 msgid "B<--backup extension> | B<-b extension>"
32873 msgstr ""
32874
32875 # type: textblock
32876 #. type: textblock
32877 #: ../tools/virt-edit.pl:107
32878 msgid ""
32879 "Create a backup of the original file I<in the guest disk image>.  The backup "
32880 "has the original filename with C<extension> added."
32881 msgstr ""
32882
32883 # type: textblock
32884 #. type: textblock
32885 #: ../tools/virt-edit.pl:110
32886 msgid ""
32887 "Usually the first character of C<extension> would be a dot C<.> so you would "
32888 "write:"
32889 msgstr ""
32890
32891 # type: verbatim
32892 #. type: verbatim
32893 #: ../tools/virt-edit.pl:113
32894 #, no-wrap
32895 msgid ""
32896 " virt-edit -b .orig [etc]\n"
32897 "\n"
32898 msgstr ""
32899
32900 # type: textblock
32901 #. type: textblock
32902 #: ../tools/virt-edit.pl:115
32903 msgid "By default, no backup file is made."
32904 msgstr ""
32905
32906 # type: =item
32907 #. type: =item
32908 #: ../tools/virt-edit.pl:121 ../tools/virt-win-reg.pl:128
32909 #: ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127
32910 #: ../tools/virt-list-partitions.pl:78
32911 msgid "B<--connect URI> | B<-c URI>"
32912 msgstr ""
32913
32914 # type: textblock
32915 #. type: textblock
32916 #: ../tools/virt-edit.pl:123 ../tools/virt-win-reg.pl:130
32917 #: ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129
32918 #: ../tools/virt-list-partitions.pl:80
32919 msgid ""
32920 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
32921 "to the default libvirt hypervisor."
32922 msgstr ""
32923
32924 # type: textblock
32925 #. type: textblock
32926 #: ../tools/virt-edit.pl:126 ../tools/virt-win-reg.pl:133
32927 #: ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132
32928 #: ../tools/virt-list-partitions.pl:83
32929 msgid ""
32930 "If you specify guest block devices directly, then libvirt is not used at all."
32931 msgstr ""
32932
32933 # type: =item
32934 #. type: =item
32935 #: ../tools/virt-edit.pl:133 ../tools/virt-win-reg.pl:140
32936 #: ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139
32937 #: ../tools/virt-list-partitions.pl:90
32938 msgid "B<--format> raw"
32939 msgstr ""
32940
32941 # type: textblock
32942 #. type: textblock
32943 #: ../tools/virt-edit.pl:135 ../tools/virt-win-reg.pl:142
32944 #: ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141
32945 #: ../tools/virt-list-partitions.pl:92
32946 msgid ""
32947 "Specify the format of disk images given on the command line.  If this is "
32948 "omitted then the format is autodetected from the content of the disk image."
32949 msgstr ""
32950
32951 # type: textblock
32952 #. type: textblock
32953 #: ../tools/virt-edit.pl:139 ../tools/virt-win-reg.pl:146
32954 #: ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145
32955 #: ../tools/virt-list-partitions.pl:96
32956 msgid ""
32957 "If disk images are requested from libvirt, then this program asks libvirt "
32958 "for this information.  In this case, the value of the format parameter is "
32959 "ignored."
32960 msgstr ""
32961
32962 # type: textblock
32963 #. type: textblock
32964 #: ../tools/virt-edit.pl:143 ../tools/virt-win-reg.pl:150
32965 #: ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149
32966 #: ../tools/virt-list-partitions.pl:100
32967 msgid ""
32968 "If working with untrusted raw-format guest disk images, you should ensure "
32969 "the format is always specified."
32970 msgstr ""
32971
32972 # type: =item
32973 #. type: =item
32974 #: ../tools/virt-edit.pl:150
32975 msgid "B<--expr EXPR> | B<-e EXPR>"
32976 msgstr ""
32977
32978 # type: textblock
32979 #. type: textblock
32980 #: ../tools/virt-edit.pl:152
32981 msgid ""
32982 "Instead of launching the external editor, non-interactively apply the Perl "
32983 "expression C<EXPR> to each line in the file.  See L</NON-INTERACTIVE "
32984 "EDITING> below."
32985 msgstr ""
32986
32987 # type: textblock
32988 #. type: textblock
32989 #: ../tools/virt-edit.pl:156
32990 msgid ""
32991 "Be careful to properly quote the expression to prevent it from being altered "
32992 "by the shell."
32993 msgstr ""
32994
32995 # type: =head1
32996 #. type: =head1
32997 #: ../tools/virt-edit.pl:280
32998 msgid "NON-INTERACTIVE EDITING"
32999 msgstr ""
33000
33001 # type: textblock
33002 #. type: textblock
33003 #: ../tools/virt-edit.pl:282
33004 msgid ""
33005 "C<virt-edit> normally calls out to C<$EDITOR> (or vi) so the system "
33006 "administrator can interactively edit the file."
33007 msgstr ""
33008
33009 # type: textblock
33010 #. type: textblock
33011 #: ../tools/virt-edit.pl:285
33012 msgid ""
33013 "There are two ways also to use C<virt-edit> from scripts in order to make "
33014 "automated edits to files.  (Note that although you I<can> use C<virt-edit> "
33015 "like this, it's less error-prone to write scripts directly using the "
33016 "libguestfs API and Augeas for configuration file editing.)"
33017 msgstr ""
33018
33019 # type: textblock
33020 #. type: textblock
33021 #: ../tools/virt-edit.pl:291
33022 msgid ""
33023 "The first method is to temporarily set C<$EDITOR> to any script or program "
33024 "you want to run.  The script is invoked as C<$EDITOR tmpfile> and it should "
33025 "update C<tmpfile> in place however it likes."
33026 msgstr ""
33027
33028 #. type: textblock
33029 #: ../tools/virt-edit.pl:295
33030 msgid ""
33031 "The second method is to use the I<-e> parameter of C<virt-edit> to run a "
33032 "short Perl snippet in the style of L<sed(1)>.  For example to replace all "
33033 "instances of C<foo> with C<bar> in a file:"
33034 msgstr ""
33035
33036 # type: verbatim
33037 #. type: verbatim
33038 #: ../tools/virt-edit.pl:299
33039 #, no-wrap
33040 msgid ""
33041 " virt-edit domname filename -e 's/foo/bar/'\n"
33042 "\n"
33043 msgstr ""
33044
33045 # type: textblock
33046 #. type: textblock
33047 #: ../tools/virt-edit.pl:301
33048 msgid ""
33049 "The full power of Perl regular expressions can be used (see L<perlre(1)>).  "
33050 "For example to delete root's password you could do:"
33051 msgstr ""
33052
33053 # type: verbatim
33054 #. type: verbatim
33055 #: ../tools/virt-edit.pl:304
33056 #, no-wrap
33057 msgid ""
33058 " virt-edit domname /etc/passwd -e 's/^root:.*?:/root::/'\n"
33059 "\n"
33060 msgstr ""
33061
33062 # type: textblock
33063 #. type: textblock
33064 #: ../tools/virt-edit.pl:306
33065 msgid ""
33066 "What really happens is that the snippet is evaluated as a Perl expression "
33067 "for each line of the file.  The line, including the final C<\\n>, is passed "
33068 "in C<$_> and the expression should update C<$_> or leave it unchanged."
33069 msgstr ""
33070
33071 # type: textblock
33072 #. type: textblock
33073 #: ../tools/virt-edit.pl:311
33074 msgid ""
33075 "To delete a line, set C<$_> to the empty string.  For example, to delete the "
33076 "C<apache> user account from the password file you can do:"
33077 msgstr ""
33078
33079 # type: verbatim
33080 #. type: verbatim
33081 #: ../tools/virt-edit.pl:314
33082 #, no-wrap
33083 msgid ""
33084 " virt-edit mydomain /etc/passwd -e '$_ = \"\" if /^apache:/'\n"
33085 "\n"
33086 msgstr ""
33087
33088 # type: textblock
33089 #. type: textblock
33090 #: ../tools/virt-edit.pl:316
33091 msgid ""
33092 "To insert a line, prepend or append it to C<$_>.  However appending lines to "
33093 "the end of the file is rather difficult this way since there is no concept "
33094 "of \"last line of the file\" - your expression just doesn't get called "
33095 "again.  You might want to use the first method (setting C<$EDITOR>) if you "
33096 "want to do this."
33097 msgstr ""
33098
33099 # type: textblock
33100 #. type: textblock
33101 #: ../tools/virt-edit.pl:322
33102 msgid ""
33103 "The variable C<$lineno> contains the current line number.  As is "
33104 "traditional, the first line in the file is number C<1>."
33105 msgstr ""
33106
33107 # type: textblock
33108 #. type: textblock
33109 #: ../tools/virt-edit.pl:325
33110 msgid ""
33111 "The return value from the expression is ignored, but the expression may call "
33112 "C<die> in order to abort the whole program, leaving the original file "
33113 "untouched."
33114 msgstr ""
33115
33116 # type: textblock
33117 #. type: textblock
33118 #: ../tools/virt-edit.pl:329
33119 msgid ""
33120 "Remember when matching the end of a line that C<$_> may contain the final C<"
33121 "\\n>, or (for DOS files) C<\\r\\n>, or if the file does not end with a "
33122 "newline then neither of these.  Thus to match or substitute some text at the "
33123 "end of a line, use this regular expression:"
33124 msgstr ""
33125
33126 # type: verbatim
33127 #. type: verbatim
33128 #: ../tools/virt-edit.pl:334
33129 #, no-wrap
33130 msgid ""
33131 " /some text(\\r?\\n)?$/\n"
33132 "\n"
33133 msgstr ""
33134
33135 # type: textblock
33136 #. type: textblock
33137 #: ../tools/virt-edit.pl:336
33138 msgid ""
33139 "Alternately, use the perl C<chomp> function, being careful not to chomp C<"
33140 "$_> itself (since that would remove all newlines from the file):"
33141 msgstr ""
33142
33143 # type: verbatim
33144 #. type: verbatim
33145 #: ../tools/virt-edit.pl:340
33146 #, no-wrap
33147 msgid ""
33148 " my $m = $_; chomp $m; $m =~ /some text$/\n"
33149 "\n"
33150 msgstr ""
33151
33152 #. type: textblock
33153 #: ../tools/virt-edit.pl:344
33154 msgid ""
33155 "C<virt-edit> has a limited ability to understand Windows drive letters and "
33156 "paths (eg. C<E:\\foo\\bar.txt>)."
33157 msgstr ""
33158
33159 #. type: textblock
33160 #: ../tools/virt-edit.pl:347
33161 msgid "If and only if the guest is running Windows then:"
33162 msgstr ""
33163
33164 #. type: textblock
33165 #: ../tools/virt-edit.pl:353
33166 msgid ""
33167 "Drive letter prefixes like C<C:> are resolved against the Windows Registry "
33168 "to the correct filesystem."
33169 msgstr ""
33170
33171 #. type: textblock
33172 #: ../tools/virt-edit.pl:358
33173 msgid ""
33174 "Any backslash (C<\\>) characters in the path are replaced with forward "
33175 "slashes so that libguestfs can process it."
33176 msgstr ""
33177
33178 #. type: textblock
33179 #: ../tools/virt-edit.pl:363
33180 msgid ""
33181 "The path is resolved case insensitively to locate the file that should be "
33182 "edited."
33183 msgstr ""
33184
33185 #. type: textblock
33186 #: ../tools/virt-edit.pl:368
33187 msgid "There are some known shortcomings:"
33188 msgstr ""
33189
33190 #. type: textblock
33191 #: ../tools/virt-edit.pl:374
33192 msgid "Some NTFS symbolic links may not be followed correctly."
33193 msgstr ""
33194
33195 #. type: textblock
33196 #: ../tools/virt-edit.pl:378
33197 msgid "NTFS junction points that cross filesystems are not followed."
33198 msgstr ""
33199
33200 #. type: =head1
33201 #: ../tools/virt-edit.pl:435
33202 msgid "USING GUESTFISH"
33203 msgstr ""
33204
33205 #. type: textblock
33206 #: ../tools/virt-edit.pl:437
33207 msgid ""
33208 "L<guestfish(1)> is a more powerful, lower level tool which you can use when "
33209 "C<virt-edit> doesn't work."
33210 msgstr ""
33211
33212 #. type: textblock
33213 #: ../tools/virt-edit.pl:440
33214 msgid "Using C<virt-edit> is approximately equivalent to doing:"
33215 msgstr ""
33216
33217 #. type: verbatim
33218 #: ../tools/virt-edit.pl:442
33219 #, no-wrap
33220 msgid ""
33221 " guestfish --rw -i -d domname edit /file\n"
33222 "\n"
33223 msgstr ""
33224
33225 #. type: textblock
33226 #: ../tools/virt-edit.pl:444
33227 msgid ""
33228 "where C<domname> is the name of the libvirt guest, and C</file> is the full "
33229 "path to the file."
33230 msgstr ""
33231
33232 #. type: textblock
33233 #: ../tools/virt-edit.pl:447
33234 msgid ""
33235 "The command above uses libguestfs's guest inspection feature and so does not "
33236 "work on guests that libguestfs cannot inspect, or on things like arbitrary "
33237 "disk images that don't contain guests.  To edit a file on a disk image "
33238 "directly, use:"
33239 msgstr ""
33240
33241 #. type: verbatim
33242 #: ../tools/virt-edit.pl:452
33243 #, no-wrap
33244 msgid ""
33245 " guestfish --rw -a disk.img -m /dev/sda1 edit /file\n"
33246 "\n"
33247 msgstr ""
33248
33249 #. type: textblock
33250 #: ../tools/virt-edit.pl:454
33251 msgid ""
33252 "where C<disk.img> is the disk image, C</dev/sda1> is the filesystem within "
33253 "the disk image to edit, and C</file> is the full path to the file."
33254 msgstr ""
33255
33256 #. type: textblock
33257 #: ../tools/virt-edit.pl:458
33258 msgid ""
33259 "C<virt-edit> cannot create new files.  Use the guestfish commands C<touch>, "
33260 "C<write> or C<upload> instead:"
33261 msgstr ""
33262
33263 #. type: verbatim
33264 #: ../tools/virt-edit.pl:461
33265 #, no-wrap
33266 msgid ""
33267 " guestfish --rw -i -d domname touch /newfile\n"
33268 "\n"
33269 msgstr ""
33270
33271 #. type: verbatim
33272 #: ../tools/virt-edit.pl:463
33273 #, no-wrap
33274 msgid ""
33275 " guestfish --rw -i -d domname write /newfile \"new content\"\n"
33276 "\n"
33277 msgstr ""
33278
33279 #. type: verbatim
33280 #: ../tools/virt-edit.pl:465
33281 #, no-wrap
33282 msgid ""
33283 " guestfish --rw -i -d domname upload localfile /newfile\n"
33284 "\n"
33285 msgstr ""
33286
33287 #. type: textblock
33288 #: ../tools/virt-edit.pl:467
33289 msgid ""
33290 "C<virt-edit> cannot edit multiple files, but guestfish can do it like this:"
33291 msgstr ""
33292
33293 #. type: verbatim
33294 #: ../tools/virt-edit.pl:470
33295 #, no-wrap
33296 msgid ""
33297 " guestfish --rw -i -d domname edit /file1 : edit /file2\n"
33298 "\n"
33299 msgstr ""
33300
33301 # type: =item
33302 #. type: =item
33303 #: ../tools/virt-edit.pl:480
33304 msgid "C<EDITOR>"
33305 msgstr ""
33306
33307 # type: textblock
33308 #. type: textblock
33309 #: ../tools/virt-edit.pl:482
33310 msgid ""
33311 "If set, this string is used as the editor.  It may contain arguments, eg. C<"
33312 "\"emacs -nw\">"
33313 msgstr ""
33314
33315 # type: textblock
33316 #. type: textblock
33317 #: ../tools/virt-edit.pl:485
33318 msgid "If not set, C<vi> is used."
33319 msgstr ""
33320
33321 # type: =head2
33322 #. type: =head1
33323 #: ../tools/virt-edit.pl:489 ../tools/virt-win-reg.pl:559
33324 #: ../tools/virt-list-filesystems.pl:182 ../tools/virt-tar.pl:279
33325 #: ../tools/virt-make-fs.pl:532 ../tools/virt-list-partitions.pl:250
33326 msgid "SHELL QUOTING"
33327 msgstr ""
33328
33329 # type: textblock
33330 #. type: textblock
33331 #: ../tools/virt-edit.pl:491 ../tools/virt-win-reg.pl:567
33332 #: ../tools/virt-list-filesystems.pl:184 ../tools/virt-tar.pl:281
33333 #: ../tools/virt-make-fs.pl:534 ../tools/virt-list-partitions.pl:252
33334 msgid ""
33335 "Libvirt guest names can contain arbitrary characters, some of which have "
33336 "meaning to the shell such as C<#> and space.  You may need to quote or "
33337 "escape these characters on the command line.  See the shell manual page L<sh"
33338 "(1)> for details."
33339 msgstr ""
33340
33341 #. type: textblock
33342 #: ../tools/virt-edit.pl:498
33343 msgid ""
33344 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-copy-in(1)>, L<virt-"
33345 "tar-in(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
33346 "L<http://libguestfs.org/>, L<perl(1)>, L<perlre(1)>."
33347 msgstr ""
33348
33349 # type: =head1
33350 #. type: =head1
33351 #: ../tools/virt-edit.pl:510 ../tools/virt-win-reg.pl:598
33352 #: ../tools/virt-list-filesystems.pl:202 ../tools/virt-tar.pl:301
33353 #: ../tools/virt-make-fs.pl:564 ../tools/virt-list-partitions.pl:269
33354 msgid "AUTHOR"
33355 msgstr ""
33356
33357 # type: textblock
33358 #. type: textblock
33359 #: ../tools/virt-edit.pl:512 ../tools/virt-win-reg.pl:600
33360 #: ../tools/virt-list-filesystems.pl:204 ../tools/virt-tar.pl:303
33361 #: ../tools/virt-make-fs.pl:566 ../tools/virt-list-partitions.pl:271
33362 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
33363 msgstr ""
33364
33365 #. type: textblock
33366 #: ../tools/virt-edit.pl:516
33367 msgid "Copyright (C) 2009-2011 Red Hat Inc."
33368 msgstr ""
33369
33370 # type: textblock
33371 #. type: textblock
33372 #: ../tools/virt-win-reg.pl:37
33373 msgid ""
33374 "virt-win-reg - Export and merge Windows Registry entries from a Windows guest"
33375 msgstr ""
33376
33377 # type: verbatim
33378 #. type: verbatim
33379 #: ../tools/virt-win-reg.pl:41
33380 #, no-wrap
33381 msgid ""
33382 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
33383 "\n"
33384 msgstr ""
33385
33386 # type: verbatim
33387 #. type: verbatim
33388 #: ../tools/virt-win-reg.pl:43
33389 #, no-wrap
33390 msgid ""
33391 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
33392 "\n"
33393 msgstr ""
33394
33395 # type: verbatim
33396 #. type: verbatim
33397 #: ../tools/virt-win-reg.pl:45
33398 #, no-wrap
33399 msgid ""
33400 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
33401 "\n"
33402 msgstr ""
33403
33404 # type: verbatim
33405 #. type: verbatim
33406 #: ../tools/virt-win-reg.pl:47
33407 #, no-wrap
33408 msgid ""
33409 " virt-win-reg --merge domname [input.reg ...]\n"
33410 "\n"
33411 msgstr ""
33412
33413 # type: verbatim
33414 #. type: verbatim
33415 #: ../tools/virt-win-reg.pl:49
33416 #, no-wrap
33417 msgid ""
33418 " virt-win-reg [--options] disk.img ... # instead of domname\n"
33419 "\n"
33420 msgstr ""
33421
33422 #. type: textblock
33423 #: ../tools/virt-win-reg.pl:53
33424 msgid ""
33425 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
33426 "virtual machines.  If you do this, you I<will> get irreversible disk "
33427 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
33428 "but doesn't catch all cases."
33429 msgstr ""
33430
33431 #. type: textblock
33432 #: ../tools/virt-win-reg.pl:58
33433 msgid ""
33434 "Modifying the Windows Registry is an inherently risky operation.  The format "
33435 "is deliberately obscure and undocumented, and Registry changes can leave the "
33436 "system unbootable.  Therefore when using the I<--merge> option, make sure "
33437 "you have a reliable backup first."
33438 msgstr ""
33439
33440 # type: textblock
33441 #. type: textblock
33442 #: ../tools/virt-win-reg.pl:65
33443 msgid ""
33444 "This program can export and merge Windows Registry entries from a Windows "
33445 "guest."
33446 msgstr ""
33447
33448 # type: textblock
33449 #. type: textblock
33450 #: ../tools/virt-win-reg.pl:68
33451 msgid ""
33452 "The first parameter is the libvirt guest name or the raw disk image of a "
33453 "Windows guest."
33454 msgstr ""
33455
33456 #. type: textblock
33457 #: ../tools/virt-win-reg.pl:71
33458 msgid ""
33459 "If I<--merge> is I<not> specified, then the chosen registry key is displayed/"
33460 "exported (recursively).  For example:"
33461 msgstr ""
33462
33463 # type: verbatim
33464 #. type: verbatim
33465 #: ../tools/virt-win-reg.pl:74
33466 #, no-wrap
33467 msgid ""
33468 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
33469 "\n"
33470 msgstr ""
33471
33472 # type: textblock
33473 #. type: textblock
33474 #: ../tools/virt-win-reg.pl:76
33475 msgid ""
33476 "You can also display single values from within registry keys, for example:"
33477 msgstr ""
33478
33479 # type: verbatim
33480 #. type: verbatim
33481 #: ../tools/virt-win-reg.pl:79
33482 #, no-wrap
33483 msgid ""
33484 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
33485 " $ virt-win-reg Windows7 $cvkey ProductName\n"
33486 " Windows 7 Enterprise\n"
33487 "\n"
33488 msgstr ""
33489
33490 #. type: textblock
33491 #: ../tools/virt-win-reg.pl:83
33492 msgid ""
33493 "With I<--merge>, you can merge a textual regedit file into the Windows "
33494 "Registry:"
33495 msgstr ""
33496
33497 # type: verbatim
33498 #. type: verbatim
33499 #: ../tools/virt-win-reg.pl:86
33500 #, no-wrap
33501 msgid ""
33502 " $ virt-win-reg --merge Windows7 changes.reg\n"
33503 "\n"
33504 msgstr ""
33505
33506 # type: =head2
33507 #. type: =head1
33508 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
33509 msgid "NOTE"
33510 msgstr ""
33511
33512 # type: textblock
33513 #. type: textblock
33514 #: ../tools/virt-win-reg.pl:90
33515 msgid ""
33516 "This program is only meant for simple access to the registry.  If you want "
33517 "to do complicated things with the registry, we suggest you download the "
33518 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
33519 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
33520 "L<hivexregedit(1)>."
33521 msgstr ""
33522
33523 # type: =item
33524 #. type: =item
33525 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
33526 msgid "B<--debug>"
33527 msgstr ""
33528
33529 # type: textblock
33530 #. type: textblock
33531 #: ../tools/virt-win-reg.pl:122
33532 msgid "Enable debugging messages."
33533 msgstr ""
33534
33535 # type: =item
33536 #. type: =item
33537 #: ../tools/virt-win-reg.pl:157
33538 msgid "B<--merge>"
33539 msgstr ""
33540
33541 # type: textblock
33542 #. type: textblock
33543 #: ../tools/virt-win-reg.pl:159
33544 msgid ""
33545 "In merge mode, this merges a textual regedit file into the Windows Registry "
33546 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
33547 "displays or exports Registry entries instead."
33548 msgstr ""
33549
33550 #. type: textblock
33551 #: ../tools/virt-win-reg.pl:163
33552 msgid ""
33553 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
33554 "result in disk corruption.  However exporting (without this flag)  is always "
33555 "safe."
33556 msgstr ""
33557
33558 # type: =item
33559 #. type: =item
33560 #: ../tools/virt-win-reg.pl:171
33561 msgid "B<--encoding> UTF-16LE|ASCII"
33562 msgstr ""
33563
33564 # type: textblock
33565 #. type: textblock
33566 #: ../tools/virt-win-reg.pl:173
33567 msgid ""
33568 "When merging (only), you may need to specify the encoding for strings to be "
33569 "used in the hive file.  This is explained in detail in L<Win::Hivex::Regedit"
33570 "(3)/ENCODING STRINGS>."
33571 msgstr ""
33572
33573 # type: textblock
33574 #. type: textblock
33575 #: ../tools/virt-win-reg.pl:177
33576 msgid ""
33577 "The default is to use UTF-16LE, which should work with recent versions of "
33578 "Windows."
33579 msgstr ""
33580
33581 # type: =head2
33582 #. type: =head1
33583 #: ../tools/virt-win-reg.pl:402
33584 msgid "SUPPORTED SYSTEMS"
33585 msgstr ""
33586
33587 # type: textblock
33588 #. type: textblock
33589 #: ../tools/virt-win-reg.pl:404
33590 msgid ""
33591 "The program currently supports Windows NT-derived guests starting with "
33592 "Windows XP through to at least Windows 7."
33593 msgstr ""
33594
33595 # type: textblock
33596 #. type: textblock
33597 #: ../tools/virt-win-reg.pl:407
33598 msgid ""
33599 "Registry support is done for C<HKEY_LOCAL_MACHINE\\SAM>, C<HKEY_LOCAL_MACHINE"
33600 "\\SECURITY>, C<HKEY_LOCAL_MACHINE\\SOFTWARE>, C<HKEY_LOCAL_MACHINE\\SYSTEM> "
33601 "and C<HKEY_USERS\\.DEFAULT>."
33602 msgstr ""
33603
33604 # type: textblock
33605 #. type: textblock
33606 #: ../tools/virt-win-reg.pl:411
33607 msgid ""
33608 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
33609 "C<HKEY_USERS>."
33610 msgstr ""
33611
33612 # type: textblock
33613 #. type: textblock
33614 #: ../tools/virt-win-reg.pl:414
33615 msgid ""
33616 "C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are B<not> supported at this "
33617 "time."
33618 msgstr ""
33619
33620 # type: =head2
33621 #. type: =head1
33622 #: ../tools/virt-win-reg.pl:417
33623 msgid "ENCODING"
33624 msgstr ""
33625
33626 # type: textblock
33627 #. type: textblock
33628 #: ../tools/virt-win-reg.pl:419
33629 msgid ""
33630 "C<virt-win-reg> expects that regedit files have already been reencoded in "
33631 "the local encoding.  Usually on Linux hosts, this means UTF-8 with Unix-"
33632 "style line endings.  Since Windows regedit files are often in UTF-16LE with "
33633 "Windows-style line endings, you may need to reencode the whole file before "
33634 "or after processing."
33635 msgstr ""
33636
33637 #. type: textblock
33638 #: ../tools/virt-win-reg.pl:425
33639 msgid ""
33640 "To reencode a file from Windows format to Linux (before processing it with "
33641 "the I<--merge> option), you would do something like this:"
33642 msgstr ""
33643
33644 # type: verbatim
33645 #. type: verbatim
33646 #: ../tools/virt-win-reg.pl:428
33647 #, no-wrap
33648 msgid ""
33649 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
33650 "\n"
33651 msgstr ""
33652
33653 # type: textblock
33654 #. type: textblock
33655 #: ../tools/virt-win-reg.pl:430
33656 msgid ""
33657 "To go in the opposite direction, after exporting and before sending the file "
33658 "to a Windows user, do something like this:"
33659 msgstr ""
33660
33661 # type: verbatim
33662 #. type: verbatim
33663 #: ../tools/virt-win-reg.pl:433
33664 #, no-wrap
33665 msgid ""
33666 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
33667 "\n"
33668 msgstr ""
33669
33670 # type: textblock
33671 #. type: textblock
33672 #: ../tools/virt-win-reg.pl:435
33673 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
33674 msgstr ""
33675
33676 # type: textblock
33677 #. type: textblock
33678 #: ../tools/virt-win-reg.pl:437
33679 msgid ""
33680 "If you are unsure about the current encoding, use the L<file(1)> command.  "
33681 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
33682 "style (CRLF) line endings, like this:"
33683 msgstr ""
33684
33685 # type: verbatim
33686 #. type: verbatim
33687 #: ../tools/virt-win-reg.pl:441
33688 #, no-wrap
33689 msgid ""
33690 " $ file software.reg\n"
33691 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
33692 " with CRLF line terminators\n"
33693 "\n"
33694 msgstr ""
33695
33696 #. type: textblock
33697 #: ../tools/virt-win-reg.pl:445
33698 msgid "This file would need conversion before you could I<--merge> it."
33699 msgstr ""
33700
33701 # type: =head2
33702 #. type: =head1
33703 #: ../tools/virt-win-reg.pl:447
33704 msgid "CurrentControlSet etc."
33705 msgstr ""
33706
33707 # type: textblock
33708 #. type: textblock
33709 #: ../tools/virt-win-reg.pl:449
33710 msgid ""
33711 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
33712 "Registry at the level of the hive file, and therefore you cannot modify "
33713 "these."
33714 msgstr ""
33715
33716 # type: textblock
33717 #. type: textblock
33718 #: ../tools/virt-win-reg.pl:453
33719 msgid ""
33720 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
33721 "circumstances it might refer to another control set.  The way to find out is "
33722 "to look at the C<HKLM\\SYSTEM\\Select> key:"
33723 msgstr ""
33724
33725 # type: verbatim
33726 #. type: verbatim
33727 #: ../tools/virt-win-reg.pl:457
33728 #, no-wrap
33729 msgid ""
33730 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
33731 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
33732 " \"Current\"=dword:00000001\n"
33733 " \"Default\"=dword:00000001\n"
33734 " \"Failed\"=dword:00000000\n"
33735 " \"LastKnownGood\"=dword:00000002\n"
33736 "\n"
33737 msgstr ""
33738
33739 # type: textblock
33740 #. type: textblock
33741 #: ../tools/virt-win-reg.pl:464
33742 msgid "\"Current\" is the one which Windows will choose when it boots."
33743 msgstr ""
33744
33745 # type: textblock
33746 #. type: textblock
33747 #: ../tools/virt-win-reg.pl:466
33748 msgid ""
33749 "Similarly, other C<Current...> keys in the path may need to be replaced."
33750 msgstr ""
33751
33752 # type: =head1
33753 #. type: =head1
33754 #: ../tools/virt-win-reg.pl:469
33755 msgid "WINDOWS TIPS"
33756 msgstr ""
33757
33758 # type: textblock
33759 #. type: textblock
33760 #: ../tools/virt-win-reg.pl:471
33761 msgid ""
33762 "Note that some of these tips modify the guest disk image.  The guest I<must> "
33763 "be shut off, else you will get disk corruption."
33764 msgstr ""
33765
33766 # type: =head2
33767 #. type: =head2
33768 #: ../tools/virt-win-reg.pl:474
33769 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
33770 msgstr ""
33771
33772 # type: textblock
33773 #. type: textblock
33774 #: ../tools/virt-win-reg.pl:476
33775 msgid ""
33776 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
33777 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
33778 "is uploaded into C<C:\\>:"
33779 msgstr ""
33780
33781 # type: verbatim
33782 #. type: verbatim
33783 #: ../tools/virt-win-reg.pl:480
33784 #, no-wrap
33785 msgid ""
33786 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
33787 "\n"
33788 msgstr ""
33789
33790 # type: textblock
33791 #. type: textblock
33792 #: ../tools/virt-win-reg.pl:482
33793 msgid "Prepare a regedit file containing the registry change:"
33794 msgstr ""
33795
33796 # type: verbatim
33797 #. type: verbatim
33798 #: ../tools/virt-win-reg.pl:484
33799 #, no-wrap
33800 msgid ""
33801 " cat > test.reg <<'EOF'\n"
33802 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
33803 " \"Test\"=\"c:\\\\test.bat\"\n"
33804 " EOF\n"
33805 "\n"
33806 msgstr ""
33807
33808 # type: textblock
33809 #. type: textblock
33810 #: ../tools/virt-win-reg.pl:489
33811 msgid ""
33812 "In this example we use the key C<RunOnce> which means that the script will "
33813 "run precisely once when the first user logs in.  If you want it to run every "
33814 "time a user logs in, replace C<RunOnce> with C<Run>."
33815 msgstr ""
33816
33817 # type: textblock
33818 #. type: textblock
33819 #: ../tools/virt-win-reg.pl:493
33820 msgid "Now update the registry:"
33821 msgstr ""
33822
33823 # type: verbatim
33824 #. type: verbatim
33825 #: ../tools/virt-win-reg.pl:495
33826 #, no-wrap
33827 msgid ""
33828 " virt-win-reg --merge WindowsGuest test.reg\n"
33829 "\n"
33830 msgstr ""
33831
33832 # type: =head2
33833 #. type: =head2
33834 #: ../tools/virt-win-reg.pl:497
33835 msgid "INSTALLING A SERVICE"
33836 msgstr ""
33837
33838 # type: textblock
33839 #. type: textblock
33840 #: ../tools/virt-win-reg.pl:499
33841 msgid ""
33842 "This section assumes you are familiar with Windows services, and you either "
33843 "have a program which handles the Windows Service Control Protocol directly "
33844 "or you want to run any program using a service wrapper like SrvAny or the "
33845 "free RHSrvAny."
33846 msgstr ""
33847
33848 # type: textblock
33849 #. type: textblock
33850 #: ../tools/virt-win-reg.pl:504
33851 msgid ""
33852 "First upload the program and optionally the service wrapper.  In this case "
33853 "the test program is called C<test.exe> and we are using the RHSrvAny wrapper:"
33854 msgstr ""
33855
33856 # type: verbatim
33857 #. type: verbatim
33858 #: ../tools/virt-win-reg.pl:508
33859 #, no-wrap
33860 msgid ""
33861 " guestfish -i -d WindowsGuest <<EOF\n"
33862 "   upload rhsrvany.exe /rhsrvany.exe\n"
33863 "   upload test.exe /test.exe\n"
33864 " EOF\n"
33865 "\n"
33866 msgstr ""
33867
33868 # type: textblock
33869 #. type: textblock
33870 #: ../tools/virt-win-reg.pl:513
33871 msgid ""
33872 "Prepare a regedit file containing the registry changes.  In this example, "
33873 "the first registry change is needed for the service itself or the service "
33874 "wrapper (if used).  The second registry change is only needed because I am "
33875 "using the RHSrvAny service wrapper."
33876 msgstr ""
33877
33878 # type: verbatim
33879 #. type: verbatim
33880 #: ../tools/virt-win-reg.pl:518
33881 #, no-wrap
33882 msgid ""
33883 " cat > service.reg <<'EOF'\n"
33884 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
33885 " \"Type\"=dword:00000010\n"
33886 " \"Start\"=dword:00000002\n"
33887 " \"ErrorControl\"=dword:00000001\n"
33888 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
33889 " \"DisplayName\"=\"RHSrvAny\"\n"
33890 " \"ObjectName\"=\"NetworkService\"\n"
33891 " \n"
33892 msgstr ""
33893
33894 # type: verbatim
33895 #. type: verbatim
33896 #: ../tools/virt-win-reg.pl:527
33897 #, no-wrap
33898 msgid ""
33899 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
33900 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
33901 " \"PWD\"=\"c:\\\\Temp\"\n"
33902 " EOF\n"
33903 "\n"
33904 msgstr ""
33905
33906 # type: textblock
33907 #. type: textblock
33908 #: ../tools/virt-win-reg.pl:538
33909 msgid ""
33910 "For use of C<ControlSet001> see the section above in this manual page.  You "
33911 "may need to adjust this according to the control set that is in use by the "
33912 "guest."
33913 msgstr ""
33914
33915 # type: textblock
33916 #. type: textblock
33917 #: ../tools/virt-win-reg.pl:544
33918 msgid ""
33919 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
33920 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
33921 "privileged account."
33922 msgstr ""
33923
33924 # type: textblock
33925 #. type: textblock
33926 #: ../tools/virt-win-reg.pl:550
33927 msgid ""
33928 "For the meaning of the magic numbers, see this Microsoft KB article: "
33929 "L<http://support.microsoft.com/kb/103000>."
33930 msgstr ""
33931
33932 # type: textblock
33933 #. type: textblock
33934 #: ../tools/virt-win-reg.pl:555
33935 msgid "Update the registry:"
33936 msgstr ""
33937
33938 # type: verbatim
33939 #. type: verbatim
33940 #: ../tools/virt-win-reg.pl:557
33941 #, no-wrap
33942 msgid ""
33943 " virt-win-reg --merge WindowsGuest service.reg\n"
33944 "\n"
33945 msgstr ""
33946
33947 # type: textblock
33948 #. type: textblock
33949 #: ../tools/virt-win-reg.pl:561
33950 msgid ""
33951 "Be careful when passing parameters containing C<\\> (backslash) in the "
33952 "shell.  Usually you will have to use 'single quotes' or double backslashes "
33953 "(but not both) to protect them from the shell."
33954 msgstr ""
33955
33956 # type: textblock
33957 #. type: textblock
33958 #: ../tools/virt-win-reg.pl:565
33959 msgid "Paths and value names are case-insensitive."
33960 msgstr ""
33961
33962 # type: textblock
33963 #. type: textblock
33964 #: ../tools/virt-win-reg.pl:574
33965 msgid ""
33966 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, L<guestfish(1)"
33967 ">, L<virt-cat(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Win::Hivex"
33968 "(3)>, L<Win::Hivex::Regedit(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
33969 msgstr ""
33970
33971 # type: textblock
33972 #. type: textblock
33973 #: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:555
33974 msgid ""
33975 "When reporting bugs, please enable debugging and capture the I<complete> "
33976 "output:"
33977 msgstr ""
33978
33979 # type: verbatim
33980 #. type: verbatim
33981 #: ../tools/virt-win-reg.pl:592
33982 #, no-wrap
33983 msgid ""
33984 " export LIBGUESTFS_DEBUG=1\n"
33985 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
33986 "\n"
33987 msgstr ""
33988
33989 # type: textblock
33990 #. type: textblock
33991 #: ../tools/virt-win-reg.pl:595
33992 msgid ""
33993 "Attach /tmp/virt-win-reg.log to a new bug report at L<https://bugzilla."
33994 "redhat.com/>"
33995 msgstr ""
33996
33997 # type: textblock
33998 #. type: textblock
33999 #: ../tools/virt-win-reg.pl:604 ../tools/virt-make-fs.pl:570
34000 msgid "Copyright (C) 2010 Red Hat Inc."
34001 msgstr ""
34002
34003 # type: textblock
34004 #. type: textblock
34005 #: ../tools/virt-list-filesystems.pl:32
34006 msgid ""
34007 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
34008 msgstr ""
34009
34010 # type: verbatim
34011 #. type: verbatim
34012 #: ../tools/virt-list-filesystems.pl:36
34013 #, no-wrap
34014 msgid ""
34015 " virt-list-filesystems [--options] domname\n"
34016 "\n"
34017 msgstr ""
34018
34019 # type: verbatim
34020 #. type: verbatim
34021 #: ../tools/virt-list-filesystems.pl:38
34022 #, no-wrap
34023 msgid ""
34024 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
34025 "\n"
34026 msgstr ""
34027
34028 # type: textblock
34029 #. type: textblock
34030 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
34031 msgid ""
34032 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
34033 "replacement."
34034 msgstr ""
34035
34036 # type: textblock
34037 #. type: textblock
34038 #: ../tools/virt-list-filesystems.pl:45
34039 msgid ""
34040 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
34041 "are contained in a virtual machine or disk image."
34042 msgstr ""
34043
34044 # type: textblock
34045 #. type: textblock
34046 #: ../tools/virt-list-filesystems.pl:49
34047 msgid ""
34048 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
34049 "functionality.  For more complex cases you should look at the L<guestfish(1)"
34050 "> tool."
34051 msgstr ""
34052
34053 # type: =item
34054 #. type: =item
34055 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
34056 msgid "B<-l> | B<--long>"
34057 msgstr ""
34058
34059 # type: textblock
34060 #. type: textblock
34061 #: ../tools/virt-list-filesystems.pl:108
34062 msgid ""
34063 "With this option, C<virt-list-filesystems> displays the type of each "
34064 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
34065 msgstr ""
34066
34067 # type: =item
34068 #. type: =item
34069 #: ../tools/virt-list-filesystems.pl:115
34070 msgid "B<-a> | B<--all>"
34071 msgstr ""
34072
34073 # type: textblock
34074 #. type: textblock
34075 #: ../tools/virt-list-filesystems.pl:117
34076 msgid ""
34077 "Normally we only show mountable filesystems.  If this option is given then "
34078 "swap devices are shown too."
34079 msgstr ""
34080
34081 # type: textblock
34082 #. type: textblock
34083 #: ../tools/virt-list-filesystems.pl:191
34084 msgid ""
34085 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
34086 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, L<Sys::"
34087 "Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
34088 msgstr ""
34089
34090 # type: textblock
34091 #. type: textblock
34092 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
34093 msgid "Copyright (C) 2009 Red Hat Inc."
34094 msgstr ""
34095
34096 # type: textblock
34097 #. type: textblock
34098 #: ../tools/virt-tar.pl:33
34099 msgid "virt-tar - Extract or upload files to a virtual machine"
34100 msgstr ""
34101
34102 # type: verbatim
34103 #. type: verbatim
34104 #: ../tools/virt-tar.pl:37
34105 #, no-wrap
34106 msgid ""
34107 " virt-tar [--options] -x domname directory tarball\n"
34108 "\n"
34109 msgstr ""
34110
34111 # type: verbatim
34112 #. type: verbatim
34113 #: ../tools/virt-tar.pl:39
34114 #, no-wrap
34115 msgid ""
34116 " virt-tar [--options] -u domname tarball directory\n"
34117 "\n"
34118 msgstr ""
34119
34120 # type: verbatim
34121 #. type: verbatim
34122 #: ../tools/virt-tar.pl:41
34123 #, no-wrap
34124 msgid ""
34125 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
34126 "\n"
34127 msgstr ""
34128
34129 # type: verbatim
34130 #. type: verbatim
34131 #: ../tools/virt-tar.pl:43
34132 #, no-wrap
34133 msgid ""
34134 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
34135 "\n"
34136 msgstr ""
34137
34138 #. type: textblock
34139 #: ../tools/virt-tar.pl:47
34140 msgid ""
34141 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
34142 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
34143 msgstr ""
34144
34145 # type: textblock
34146 #. type: textblock
34147 #: ../tools/virt-tar.pl:52
34148 msgid "Download C</home> from the VM into a local tarball:"
34149 msgstr ""
34150
34151 # type: verbatim
34152 #. type: verbatim
34153 #: ../tools/virt-tar.pl:54
34154 #, no-wrap
34155 msgid ""
34156 " virt-tar -x domname /home home.tar\n"
34157 "\n"
34158 msgstr ""
34159
34160 # type: verbatim
34161 #. type: verbatim
34162 #: ../tools/virt-tar.pl:56
34163 #, no-wrap
34164 msgid ""
34165 " virt-tar -zx domname /home home.tar.gz\n"
34166 "\n"
34167 msgstr ""
34168
34169 # type: textblock
34170 #. type: textblock
34171 #: ../tools/virt-tar.pl:58
34172 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
34173 msgstr ""
34174
34175 # type: verbatim
34176 #. type: verbatim
34177 #: ../tools/virt-tar.pl:60
34178 #, no-wrap
34179 msgid ""
34180 " virt-tar -u domname uploadstuff.tar /tmp\n"
34181 "\n"
34182 msgstr ""
34183
34184 # type: verbatim
34185 #. type: verbatim
34186 #: ../tools/virt-tar.pl:62
34187 #, no-wrap
34188 msgid ""
34189 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
34190 "\n"
34191 msgstr ""
34192
34193 #. type: textblock
34194 #: ../tools/virt-tar.pl:66
34195 msgid ""
34196 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
34197 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
34198 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
34199 msgstr ""
34200
34201 #. type: textblock
34202 #: ../tools/virt-tar.pl:71
34203 msgid ""
34204 "You can use I<-x> (extract) on live virtual machines, but you might get "
34205 "inconsistent results or errors if there is filesystem activity inside the "
34206 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
34207 "work, but the only way to guarantee consistent results is if the virtual "
34208 "machine is shut down."
34209 msgstr ""
34210
34211 # type: textblock
34212 #. type: textblock
34213 #: ../tools/virt-tar.pl:79
34214 msgid ""
34215 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
34216 "parts of a guest filesystem.  There are many possibilities: making backups, "
34217 "uploading data files, snooping on guest activity, fixing or customizing "
34218 "guests, etc."
34219 msgstr ""
34220
34221 # type: textblock
34222 #. type: textblock
34223 #: ../tools/virt-tar.pl:84
34224 msgid ""
34225 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
34226 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
34227 "should look at the L<guestfish(1)> tool."
34228 msgstr ""
34229
34230 #. type: textblock
34231 #: ../tools/virt-tar.pl:88
34232 msgid ""
34233 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
34234 "its contents (recursively) from the virtual machine into a local tarball.  "
34235 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
34236 "virtual machine.  You cannot use these two options together."
34237 msgstr ""
34238
34239 #. type: textblock
34240 #: ../tools/virt-tar.pl:94
34241 msgid ""
34242 "In addition, you may need to use the I<-z> (gZip) option to enable "
34243 "compression.  When uploading, you have to specify I<-z> if the upload file "
34244 "is compressed because virt-tar won't detect this on its own."
34245 msgstr ""
34246
34247 # type: textblock
34248 #. type: textblock
34249 #: ../tools/virt-tar.pl:98
34250 msgid ""
34251 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
34252 "example it cannot do PKZip files or bzip2 compression.  If you want that "
34253 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
34254 "the L<libguestfs(3)> API)."
34255 msgstr ""
34256
34257 # type: =item
34258 #. type: =item
34259 #: ../tools/virt-tar.pl:156
34260 msgid "B<-x> | B<--extract> | B<--download>"
34261 msgstr ""
34262
34263 # type: =item
34264 #. type: =item
34265 #: ../tools/virt-tar.pl:158
34266 msgid "B<-u> | B<--upload>"
34267 msgstr ""
34268
34269 #. type: textblock
34270 #: ../tools/virt-tar.pl:160
34271 msgid ""
34272 "Use I<-x> to extract (download) a directory from a virtual machine to a "
34273 "local tarball."
34274 msgstr ""
34275
34276 #. type: textblock
34277 #: ../tools/virt-tar.pl:163
34278 msgid ""
34279 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
34280 "Please read the L</WARNING> section above before using this option."
34281 msgstr ""
34282
34283 # type: textblock
34284 #. type: textblock
34285 #: ../tools/virt-tar.pl:167
34286 msgid "You must specify exactly one of these options."
34287 msgstr ""
34288
34289 # type: =item
34290 #. type: =item
34291 #: ../tools/virt-tar.pl:173
34292 msgid "B<-z> | B<--gzip>"
34293 msgstr ""
34294
34295 # type: textblock
34296 #. type: textblock
34297 #: ../tools/virt-tar.pl:175
34298 msgid "Specify that the input or output tarball is gzip-compressed."
34299 msgstr ""
34300
34301 #. type: textblock
34302 #: ../tools/virt-tar.pl:288
34303 msgid ""
34304 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-copy-"
34305 "in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<Sys::"
34306 "Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs."
34307 "org/>."
34308 msgstr ""
34309
34310 # type: textblock
34311 #. type: textblock
34312 #: ../tools/virt-make-fs.pl:37
34313 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
34314 msgstr ""
34315
34316 # type: verbatim
34317 #. type: verbatim
34318 #: ../tools/virt-make-fs.pl:41
34319 #, no-wrap
34320 msgid ""
34321 " virt-make-fs [--options] input.tar output.img\n"
34322 "\n"
34323 msgstr ""
34324
34325 # type: verbatim
34326 #. type: verbatim
34327 #: ../tools/virt-make-fs.pl:43
34328 #, no-wrap
34329 msgid ""
34330 " virt-make-fs [--options] input.tar.gz output.img\n"
34331 "\n"
34332 msgstr ""
34333
34334 # type: verbatim
34335 #. type: verbatim
34336 #: ../tools/virt-make-fs.pl:45
34337 #, no-wrap
34338 msgid ""
34339 " virt-make-fs [--options] directory output.img\n"
34340 "\n"
34341 msgstr ""
34342
34343 # type: textblock
34344 #. type: textblock
34345 #: ../tools/virt-make-fs.pl:49
34346 msgid ""
34347 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
34348 "archive or some files in a directory.  It is similar to tools like L<mkisofs"
34349 "(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, it can "
34350 "create common filesystem types like ext2/3 or NTFS, which can be useful if "
34351 "you want to attach these filesystems to existing virtual machines (eg. to "
34352 "import large amounts of read-only data to a VM)."
34353 msgstr ""
34354
34355 # type: textblock
34356 #. type: textblock
34357 #: ../tools/virt-make-fs.pl:57
34358 msgid "Basic usage is:"
34359 msgstr ""
34360
34361 # type: verbatim
34362 #. type: verbatim
34363 #: ../tools/virt-make-fs.pl:59
34364 #, no-wrap
34365 msgid ""
34366 " virt-make-fs input output\n"
34367 "\n"
34368 msgstr ""
34369
34370 # type: textblock
34371 #. type: textblock
34372 #: ../tools/virt-make-fs.pl:61
34373 msgid ""
34374 "where C<input> is either a directory containing files that you want to add, "
34375 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
34376 "C<output> is a disk image.  The input type is detected automatically.  The "
34377 "output disk image defaults to a raw ext2 image unless you specify extra "
34378 "flags (see L</OPTIONS> below)."
34379 msgstr ""
34380
34381 # type: =head2
34382 #. type: =head2
34383 #: ../tools/virt-make-fs.pl:67
34384 msgid "EXTRA SPACE"
34385 msgstr ""
34386
34387 #. type: textblock
34388 #: ../tools/virt-make-fs.pl:69
34389 msgid ""
34390 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
34391 "the files that it contains, but might have extra space.  Depending on how "
34392 "you are going to use the output, you might think this extra space is wasted "
34393 "and want to minimize it, or you might want to leave space so that more files "
34394 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
34395 "but you can use the I<--size> flag to leave space in the filesystem if you "
34396 "want it."
34397 msgstr ""
34398
34399 #. type: textblock
34400 #: ../tools/virt-make-fs.pl:77
34401 msgid ""
34402 "An alternative way to leave extra space but not make the output image any "
34403 "bigger is to use an alternative disk image format (instead of the default "
34404 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
34405 "image format (check your hypervisor supports this before using it).  This "
34406 "allows you to choose a large I<--size> but the extra space won't actually be "
34407 "allocated in the image until you try to store something in it."
34408 msgstr ""
34409
34410 #. type: textblock
34411 #: ../tools/virt-make-fs.pl:85
34412 msgid ""
34413 "Don't forget that you can also use local commands including L<resize2fs(8)> "
34414 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
34415 "to build another image from scratch."
34416 msgstr ""
34417
34418 # type: =head3
34419 #. type: =head3
34420 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
34421 #: ../tools/virt-make-fs.pl:142
34422 msgid "EXAMPLE"
34423 msgstr ""
34424
34425 # type: verbatim
34426 #. type: verbatim
34427 #: ../tools/virt-make-fs.pl:91
34428 #, no-wrap
34429 msgid ""
34430 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
34431 "\n"
34432 msgstr ""
34433
34434 # type: =head2
34435 #. type: =head2
34436 #: ../tools/virt-make-fs.pl:93
34437 msgid "FILESYSTEM TYPE"
34438 msgstr ""
34439
34440 # type: textblock
34441 #. type: textblock
34442 #: ../tools/virt-make-fs.pl:95
34443 msgid ""
34444 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
34445 "libguestfs supports can be used (but I<not> read-only formats like "
34446 "ISO9660).  Here are some of the more common choices:"
34447 msgstr ""
34448
34449 # type: =item
34450 #. type: =item
34451 #: ../tools/virt-make-fs.pl:101
34452 msgid "I<ext3>"
34453 msgstr ""
34454
34455 # type: textblock
34456 #. type: textblock
34457 #: ../tools/virt-make-fs.pl:103
34458 msgid ""
34459 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
34460 "you are not going to use the filesystem in a way that requires the journal, "
34461 "then this is just wasted overhead."
34462 msgstr ""
34463
34464 # type: =item
34465 #. type: =item
34466 #: ../tools/virt-make-fs.pl:107
34467 msgid "I<ntfs> or I<vfat>"
34468 msgstr ""
34469
34470 # type: textblock
34471 #. type: textblock
34472 #: ../tools/virt-make-fs.pl:109
34473 msgid "Useful if exporting data to a Windows guest."
34474 msgstr ""
34475
34476 # type: textblock
34477 #. type: textblock
34478 #: ../tools/virt-make-fs.pl:111
34479 msgid ""
34480 "I<Note for vfat>: The tar archive or local directory must only contain files "
34481 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
34482 "program running within libguestfs is unable to change the ownership of non-"
34483 "root files, since vfat itself does not support this."
34484 msgstr ""
34485
34486 # type: =item
34487 #. type: =item
34488 #: ../tools/virt-make-fs.pl:116
34489 msgid "I<minix>"
34490 msgstr ""
34491
34492 # type: textblock
34493 #. type: textblock
34494 #: ../tools/virt-make-fs.pl:118
34495 msgid ""
34496 "Lower overhead than C<ext2>, but certain limitations on filename length and "
34497 "total filesystem size."
34498 msgstr ""
34499
34500 # type: verbatim
34501 #. type: verbatim
34502 #: ../tools/virt-make-fs.pl:125
34503 #, no-wrap
34504 msgid ""
34505 " virt-make-fs --type=minix input minixfs.img\n"
34506 "\n"
34507 msgstr ""
34508
34509 # type: =head2
34510 #. type: =head2
34511 #: ../tools/virt-make-fs.pl:127
34512 msgid "TO PARTITION OR NOT TO PARTITION"
34513 msgstr ""
34514
34515 # type: textblock
34516 #. type: textblock
34517 #: ../tools/virt-make-fs.pl:129
34518 msgid "Optionally virt-make-fs can add a partition table to the output disk."
34519 msgstr ""
34520
34521 # type: textblock
34522 #. type: textblock
34523 #: ../tools/virt-make-fs.pl:131
34524 msgid ""
34525 "Adding a partition can make the disk image more compatible with certain "
34526 "virtualized operating systems which don't expect to see a filesystem "
34527 "directly located on a block device (Linux doesn't care and will happily "
34528 "handle both types)."
34529 msgstr ""
34530
34531 # type: textblock
34532 #. type: textblock
34533 #: ../tools/virt-make-fs.pl:136
34534 msgid ""
34535 "On the other hand, if you have a partition table then the output image is no "
34536 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
34537 "directly on a partitioned disk image.  (However libguestfs tools such as "
34538 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
34539 msgstr ""
34540
34541 # type: textblock
34542 #. type: textblock
34543 #: ../tools/virt-make-fs.pl:144
34544 msgid "Add an MBR partition:"
34545 msgstr ""
34546
34547 # type: verbatim
34548 #. type: verbatim
34549 #: ../tools/virt-make-fs.pl:146
34550 #, no-wrap
34551 msgid ""
34552 " virt-make-fs --partition -- input disk.img\n"
34553 "\n"
34554 msgstr ""
34555
34556 # type: textblock
34557 #. type: textblock
34558 #: ../tools/virt-make-fs.pl:148
34559 msgid ""
34560 "If the output disk image could be terabyte-sized or larger, it's better to "
34561 "use an EFI/GPT-compatible partition table:"
34562 msgstr ""
34563
34564 # type: verbatim
34565 #. type: verbatim
34566 #: ../tools/virt-make-fs.pl:151
34567 #, no-wrap
34568 msgid ""
34569 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
34570 "\n"
34571 msgstr ""
34572
34573 # type: textblock
34574 #. type: textblock
34575 #: ../tools/virt-make-fs.pl:179
34576 msgid "Enable debugging information."
34577 msgstr ""
34578
34579 # type: =item
34580 #. type: =item
34581 #: ../tools/virt-make-fs.pl:185
34582 msgid "B<--size=E<lt>NE<gt>>"
34583 msgstr ""
34584
34585 # type: =item
34586 #. type: =item
34587 #: ../tools/virt-make-fs.pl:187
34588 msgid "B<--size=+E<lt>NE<gt>>"
34589 msgstr ""
34590
34591 # type: =item
34592 #. type: =item
34593 #: ../tools/virt-make-fs.pl:189
34594 msgid "B<-s E<lt>NE<gt>>"
34595 msgstr ""
34596
34597 # type: =item
34598 #. type: =item
34599 #: ../tools/virt-make-fs.pl:191
34600 msgid "B<-s +E<lt>NE<gt>>"
34601 msgstr ""
34602
34603 #. type: textblock
34604 #: ../tools/virt-make-fs.pl:193
34605 msgid ""
34606 "Use the I<--size> (or I<-s>) option to choose the size of the output image."
34607 msgstr ""
34608
34609 # type: textblock
34610 #. type: textblock
34611 #: ../tools/virt-make-fs.pl:196
34612 msgid ""
34613 "If this option is I<not> given, then the output image will be just large "
34614 "enough to contain all the files, with not much wasted space."
34615 msgstr ""
34616
34617 # type: textblock
34618 #. type: textblock
34619 #: ../tools/virt-make-fs.pl:199
34620 msgid ""
34621 "To choose a fixed size output disk, specify an absolute number followed by b/"
34622 "K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
34623 "Petabytes or Exabytes.  This must be large enough to contain all the input "
34624 "files, else you will get an error."
34625 msgstr ""
34626
34627 #. type: textblock
34628 #: ../tools/virt-make-fs.pl:204
34629 msgid ""
34630 "To leave extra space, specify C<+> (plus sign) and a number followed by b/K/"
34631 "M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
34632 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
34633 "the input files, and (approximately) an extra 200 MB free space."
34634 msgstr ""
34635
34636 # type: textblock
34637 #. type: textblock
34638 #: ../tools/virt-make-fs.pl:210
34639 msgid ""
34640 "Note that virt-make-fs estimates free space, and therefore will not produce "
34641 "filesystems containing precisely the free space requested.  (It is much more "
34642 "expensive and time-consuming to produce a filesystem which has precisely the "
34643 "desired free space)."
34644 msgstr ""
34645
34646 # type: =item
34647 #. type: =item
34648 #: ../tools/virt-make-fs.pl:219
34649 msgid "B<--format=E<lt>fmtE<gt>>"
34650 msgstr ""
34651
34652 # type: =item
34653 #. type: =item
34654 #: ../tools/virt-make-fs.pl:221
34655 msgid "B<-F E<lt>fmtE<gt>>"
34656 msgstr ""
34657
34658 # type: textblock
34659 #. type: textblock
34660 #: ../tools/virt-make-fs.pl:223
34661 msgid "Choose the output disk image format."
34662 msgstr ""
34663
34664 # type: textblock
34665 #. type: textblock
34666 #: ../tools/virt-make-fs.pl:225
34667 msgid "The default is C<raw> (raw disk image)."
34668 msgstr ""
34669
34670 # type: textblock
34671 #. type: textblock
34672 #: ../tools/virt-make-fs.pl:227
34673 msgid ""
34674 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
34675 "that would really make sense here is C<qcow2>."
34676 msgstr ""
34677
34678 # type: =item
34679 #. type: =item
34680 #: ../tools/virt-make-fs.pl:234
34681 msgid "B<--type=E<lt>fsE<gt>>"
34682 msgstr ""
34683
34684 # type: =item
34685 #. type: =item
34686 #: ../tools/virt-make-fs.pl:236
34687 msgid "B<-t E<lt>fsE<gt>>"
34688 msgstr ""
34689
34690 # type: textblock
34691 #. type: textblock
34692 #: ../tools/virt-make-fs.pl:238
34693 msgid "Choose the output filesystem type."
34694 msgstr ""
34695
34696 # type: textblock
34697 #. type: textblock
34698 #: ../tools/virt-make-fs.pl:240
34699 msgid "The default is C<ext2>."
34700 msgstr ""
34701
34702 # type: textblock
34703 #. type: textblock
34704 #: ../tools/virt-make-fs.pl:242
34705 msgid ""
34706 "Any filesystem which is supported read-write by libguestfs can be used here."
34707 msgstr ""
34708
34709 # type: =item
34710 #. type: =item
34711 #: ../tools/virt-make-fs.pl:249
34712 msgid "B<--partition>"
34713 msgstr ""
34714
34715 # type: =item
34716 #. type: =item
34717 #: ../tools/virt-make-fs.pl:251
34718 msgid "B<--partition=E<lt>parttypeE<gt>>"
34719 msgstr ""
34720
34721 # type: textblock
34722 #. type: textblock
34723 #: ../tools/virt-make-fs.pl:253
34724 msgid ""
34725 "If specified, this flag adds an MBR partition table to the output disk image."
34726 msgstr ""
34727
34728 #. type: textblock
34729 #: ../tools/virt-make-fs.pl:256
34730 msgid ""
34731 "You can change the partition table type, eg. I<--partition=gpt> for large "
34732 "disks."
34733 msgstr ""
34734
34735 #. type: textblock
34736 #: ../tools/virt-make-fs.pl:259
34737 msgid ""
34738 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
34739 "might consider the next parameter to be the partition type.  For example:"
34740 msgstr ""
34741
34742 # type: verbatim
34743 #. type: verbatim
34744 #: ../tools/virt-make-fs.pl:263
34745 #, no-wrap
34746 msgid ""
34747 " virt-make-fs --partition input.tar ...\n"
34748 "\n"
34749 msgstr ""
34750
34751 #. type: textblock
34752 #: ../tools/virt-make-fs.pl:265
34753 msgid ""
34754 "would cause virt-make-fs to think you wanted to use a partition type of "
34755 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
34756 "dash) between options and the input file argument:"
34757 msgstr ""
34758
34759 # type: verbatim
34760 #. type: verbatim
34761 #: ../tools/virt-make-fs.pl:269
34762 #, no-wrap
34763 msgid ""
34764 " virt-make-fs --partition -- input.tar ...\n"
34765 "\n"
34766 msgstr ""
34767
34768 #. type: textblock
34769 #: ../tools/virt-make-fs.pl:541
34770 msgid ""
34771 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
34772 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
34773 "(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
34774 msgstr ""
34775
34776 # type: verbatim
34777 #. type: verbatim
34778 #: ../tools/virt-make-fs.pl:558
34779 #, no-wrap
34780 msgid ""
34781 " export LIBGUESTFS_DEBUG=1\n"
34782 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
34783 "\n"
34784 msgstr ""
34785
34786 # type: textblock
34787 #. type: textblock
34788 #: ../tools/virt-make-fs.pl:561
34789 msgid ""
34790 "Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
34791 "redhat.com/>"
34792 msgstr ""
34793
34794 # type: textblock
34795 #. type: textblock
34796 #: ../tools/virt-list-partitions.pl:32
34797 msgid ""
34798 "virt-list-partitions - List partitions in a virtual machine or disk image"
34799 msgstr ""
34800
34801 # type: verbatim
34802 #. type: verbatim
34803 #: ../tools/virt-list-partitions.pl:36
34804 #, no-wrap
34805 msgid ""
34806 " virt-list-partitions [--options] domname\n"
34807 "\n"
34808 msgstr ""
34809
34810 # type: verbatim
34811 #. type: verbatim
34812 #: ../tools/virt-list-partitions.pl:38
34813 #, no-wrap
34814 msgid ""
34815 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
34816 "\n"
34817 msgstr ""
34818
34819 # type: textblock
34820 #. type: textblock
34821 #: ../tools/virt-list-partitions.pl:45
34822 msgid ""
34823 "C<virt-list-partitions> is a command line tool to list the partitions that "
34824 "are contained in a virtual machine or disk image.  It is mainly useful as a "
34825 "first step to using L<virt-resize(1)>."
34826 msgstr ""
34827
34828 # type: textblock
34829 #. type: textblock
34830 #: ../tools/virt-list-partitions.pl:50
34831 msgid ""
34832 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
34833 "functionality.  For more complex cases you should look at the L<guestfish(1)"
34834 "> tool."
34835 msgstr ""
34836
34837 # type: =item
34838 #. type: =item
34839 #: ../tools/virt-list-partitions.pl:107
34840 msgid "B<-h> | B<--human-readable>"
34841 msgstr ""
34842
34843 # type: textblock
34844 #. type: textblock
34845 #: ../tools/virt-list-partitions.pl:109
34846 msgid "Show sizes in human-readable form (eg. \"1G\")."
34847 msgstr ""
34848
34849 # type: textblock
34850 #. type: textblock
34851 #: ../tools/virt-list-partitions.pl:117
34852 msgid ""
34853 "With this option, C<virt-list-partitions> displays the type and size of each "
34854 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
34855 msgstr ""
34856
34857 # type: =item
34858 #. type: =item
34859 #: ../tools/virt-list-partitions.pl:124
34860 msgid "B<-t> | B<--total>"
34861 msgstr ""
34862
34863 # type: textblock
34864 #. type: textblock
34865 #: ../tools/virt-list-partitions.pl:126
34866 msgid ""
34867 "Display the total size of each block device (as a separate row or rows)."
34868 msgstr ""
34869
34870 # type: textblock
34871 #. type: textblock
34872 #: ../tools/virt-list-partitions.pl:259
34873 msgid ""
34874 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
34875 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib"
34876 "(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
34877 msgstr ""
34878
34879 # type: textblock
34880 #. type: textblock
34881 #: ../tools/virt-list-partitions.pl:275
34882 msgid "Copyright (C) 2009-2010 Red Hat Inc."
34883 msgstr ""