fish: Document that remote run in cmd substitution context hangs.
[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-07 23:15+0200\n"
11 "PO-Revision-Date: 2010-09-02 14:46+0100\n"
12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 "Language-Team: LANGUAGE <LL@li.org>\n"
14 "Language: \n"
15 "MIME-Version: 1.0\n"
16 "Content-Type: text/plain; charset=UTF-8\n"
17 "Content-Transfer-Encoding: 8bit\n"
18
19 # type: =head1
20 #. type: =head1
21 #: ../src/guestfs.pod:3 ../fish/guestfish.pod:3
22 #: ../test-tool/libguestfs-test-tool.pod:3 ../fuse/guestmount.pod:3
23 #: ../tools/virt-edit.pl:32 ../tools/virt-win-reg.pl:35
24 #: ../tools/virt-list-filesystems.pl:30 ../tools/virt-tar.pl:31
25 #: ../tools/virt-make-fs.pl:35 ../tools/virt-list-partitions.pl:30
26 msgid "NAME"
27 msgstr "名前"
28
29 # type: textblock
30 #. type: textblock
31 #: ../src/guestfs.pod:5
32 msgid "guestfs - Library for accessing and modifying virtual machine images"
33 msgstr ""
34
35 # type: =head1
36 #. type: =head1
37 #: ../src/guestfs.pod:7 ../fish/guestfish.pod:7
38 #: ../test-tool/libguestfs-test-tool.pod:7 ../fuse/guestmount.pod:7
39 #: ../tools/virt-edit.pl:36 ../tools/virt-win-reg.pl:39
40 #: ../tools/virt-list-filesystems.pl:34 ../tools/virt-tar.pl:35
41 #: ../tools/virt-make-fs.pl:39 ../tools/virt-list-partitions.pl:34
42 msgid "SYNOPSIS"
43 msgstr ""
44
45 # type: verbatim
46 #. type: verbatim
47 #: ../src/guestfs.pod:9
48 #, no-wrap
49 msgid ""
50 " #include <guestfs.h>\n"
51 " \n"
52 msgstr ""
53
54 # type: verbatim
55 #. type: verbatim
56 #: ../src/guestfs.pod:11
57 #, no-wrap
58 msgid ""
59 " guestfs_h *g = guestfs_create ();\n"
60 " guestfs_add_drive (g, \"guest.img\");\n"
61 " guestfs_launch (g);\n"
62 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
63 " guestfs_touch (g, \"/hello\");\n"
64 " guestfs_umount (g, \"/\");\n"
65 " guestfs_close (g);\n"
66 "\n"
67 msgstr ""
68
69 # type: verbatim
70 #. type: verbatim
71 #: ../src/guestfs.pod:19
72 #, no-wrap
73 msgid ""
74 " cc prog.c -o prog -lguestfs\n"
75 "or:\n"
76 " cc prog.c -o prog `pkg-config libguestfs --cflags --libs`\n"
77 "\n"
78 msgstr ""
79
80 # type: =head1
81 #. type: =head1
82 #: ../src/guestfs.pod:23 ../fish/guestfish.pod:30
83 #: ../test-tool/libguestfs-test-tool.pod:11 ../fuse/guestmount.pod:20
84 #: ../tools/virt-edit.pl:50 ../tools/virt-win-reg.pl:63
85 #: ../tools/virt-list-filesystems.pl:40 ../tools/virt-tar.pl:77
86 #: ../tools/virt-make-fs.pl:47 ../tools/virt-list-partitions.pl:40
87 msgid "DESCRIPTION"
88 msgstr ""
89
90 # type: textblock
91 #. type: textblock
92 #: ../src/guestfs.pod:25
93 msgid ""
94 "Libguestfs is a library for accessing and modifying guest disk images.  "
95 "Amongst the things this is good for: making batch configuration changes to "
96 "guests, getting disk used/free statistics (see also: virt-df), migrating "
97 "between virtualization systems (see also: virt-p2v), performing partial "
98 "backups, performing partial guest clones, cloning guests and changing "
99 "registry/UUID/hostname info, and much else besides."
100 msgstr ""
101
102 # type: textblock
103 #. type: textblock
104 #: ../src/guestfs.pod:33
105 msgid ""
106 "Libguestfs uses Linux kernel and qemu code, and can access any type of guest "
107 "filesystem that Linux and qemu can, including but not limited to: ext2/3/4, "
108 "btrfs, FAT and NTFS, LVM, many different disk partition schemes, qcow, "
109 "qcow2, vmdk."
110 msgstr ""
111
112 # type: textblock
113 #. type: textblock
114 #: ../src/guestfs.pod:38
115 msgid ""
116 "Libguestfs provides ways to enumerate guest storage (eg. partitions, LVs, "
117 "what filesystem is in each LV, etc.).  It can also run commands in the "
118 "context of the guest.  Also you can access filesystems over FUSE."
119 msgstr ""
120
121 # type: textblock
122 #. type: textblock
123 #: ../src/guestfs.pod:43
124 msgid ""
125 "Libguestfs is a library that can be linked with C and C++ management "
126 "programs (or management programs written in OCaml, Perl, Python, Ruby, Java, "
127 "PHP, Haskell or C#).  You can also use it from shell scripts or the command "
128 "line."
129 msgstr ""
130
131 # type: textblock
132 #. type: textblock
133 #: ../src/guestfs.pod:48
134 msgid ""
135 "You don't need to be root to use libguestfs, although obviously you do need "
136 "enough permissions to access the disk images."
137 msgstr ""
138
139 # type: textblock
140 #. type: textblock
141 #: ../src/guestfs.pod:51
142 msgid ""
143 "Libguestfs is a large API because it can do many things.  For a gentle "
144 "introduction, please read the L</API OVERVIEW> section next."
145 msgstr ""
146
147 # type: textblock
148 #. type: textblock
149 #: ../src/guestfs.pod:54
150 msgid ""
151 "There are also some example programs in the L<guestfs-examples(3)> manual "
152 "page."
153 msgstr ""
154
155 # type: =head1
156 #. type: =head1
157 #: ../src/guestfs.pod:57
158 msgid "API OVERVIEW"
159 msgstr ""
160
161 # type: textblock
162 #. type: textblock
163 #: ../src/guestfs.pod:59
164 msgid ""
165 "This section provides a gentler overview of the libguestfs API.  We also try "
166 "to group API calls together, where that may not be obvious from reading "
167 "about the individual calls in the main section of this manual."
168 msgstr ""
169
170 # type: =head2
171 #. type: =head2
172 #: ../src/guestfs.pod:64
173 msgid "HANDLES"
174 msgstr ""
175
176 # type: textblock
177 #. type: textblock
178 #: ../src/guestfs.pod:66
179 msgid ""
180 "Before you can use libguestfs calls, you have to create a handle.  Then you "
181 "must add at least one disk image to the handle, followed by launching the "
182 "handle, then performing whatever operations you want, and finally closing "
183 "the handle.  By convention we use the single letter C<g> for the name of the "
184 "handle variable, although of course you can use any name you want."
185 msgstr ""
186
187 # type: textblock
188 #. type: textblock
189 #: ../src/guestfs.pod:73
190 msgid "The general structure of all libguestfs-using programs looks like this:"
191 msgstr ""
192
193 # type: verbatim
194 #. type: verbatim
195 #: ../src/guestfs.pod:76
196 #, no-wrap
197 msgid ""
198 " guestfs_h *g = guestfs_create ();\n"
199 " \n"
200 msgstr ""
201
202 # type: verbatim
203 #. type: verbatim
204 #: ../src/guestfs.pod:78
205 #, no-wrap
206 msgid ""
207 " /* Call guestfs_add_drive additional times if there are\n"
208 "  * multiple disk images.\n"
209 "  */\n"
210 " guestfs_add_drive (g, \"guest.img\");\n"
211 " \n"
212 msgstr ""
213
214 # type: verbatim
215 #. type: verbatim
216 #: ../src/guestfs.pod:83
217 #, no-wrap
218 msgid ""
219 " /* Most manipulation calls won't work until you've launched\n"
220 "  * the handle 'g'.  You have to do this _after_ adding drives\n"
221 "  * and _before_ other commands.\n"
222 "  */\n"
223 " guestfs_launch (g);\n"
224 " \n"
225 msgstr ""
226
227 # type: verbatim
228 #. type: verbatim
229 #: ../src/guestfs.pod:89
230 #, no-wrap
231 msgid ""
232 " /* Now you can examine what partitions, LVs etc are available.\n"
233 "  */\n"
234 " char **partitions = guestfs_list_partitions (g);\n"
235 " char **logvols = guestfs_lvs (g);\n"
236 " \n"
237 msgstr ""
238
239 # type: verbatim
240 #. type: verbatim
241 #: ../src/guestfs.pod:94
242 #, no-wrap
243 msgid ""
244 " /* To access a filesystem in the image, you must mount it.\n"
245 "  */\n"
246 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
247 " \n"
248 msgstr ""
249
250 #. type: verbatim
251 #: ../src/guestfs.pod:98
252 #, no-wrap
253 msgid ""
254 " /* Now you can perform filesystem actions on the guest\n"
255 "  * disk image.\n"
256 "  */\n"
257 " guestfs_touch (g, \"/hello\");\n"
258 " \n"
259 msgstr ""
260
261 # type: verbatim
262 #. type: verbatim
263 #: ../src/guestfs.pod:103
264 #, no-wrap
265 msgid ""
266 " /* This is only needed for libguestfs < 1.5.24.  Since then\n"
267 "  * it is done automatically when you close the handle.  See\n"
268 "  * discussion of autosync in this page.\n"
269 "  */\n"
270 " guestfs_sync (g);\n"
271 " \n"
272 msgstr ""
273
274 # type: verbatim
275 #. type: verbatim
276 #: ../src/guestfs.pod:109
277 #, no-wrap
278 msgid ""
279 " /* Close the handle 'g'. */\n"
280 " guestfs_close (g);\n"
281 "\n"
282 msgstr ""
283
284 # type: textblock
285 #. type: textblock
286 #: ../src/guestfs.pod:112
287 msgid ""
288 "The code above doesn't include any error checking.  In real code you should "
289 "check return values carefully for errors.  In general all functions that "
290 "return integers return C<-1> on error, and all functions that return "
291 "pointers return C<NULL> on error.  See section L</ERROR HANDLING> below for "
292 "how to handle errors, and consult the documentation for each function call "
293 "below to see precisely how they return error indications.  See L<guestfs-"
294 "examples(3)> for fully worked examples."
295 msgstr ""
296
297 # type: =head2
298 #. type: =head2
299 #: ../src/guestfs.pod:121
300 msgid "DISK IMAGES"
301 msgstr ""
302
303 # type: textblock
304 #. type: textblock
305 #: ../src/guestfs.pod:123
306 msgid ""
307 "The image filename (C<\"guest.img\"> in the example above) could be a disk "
308 "image from a virtual machine, a L<dd(1)> copy of a physical hard disk, an "
309 "actual block device, or simply an empty file of zeroes that you have created "
310 "through L<posix_fallocate(3)>.  Libguestfs lets you do useful things to all "
311 "of these."
312 msgstr ""
313
314 # type: textblock
315 #. type: textblock
316 #: ../src/guestfs.pod:129
317 msgid ""
318 "The call you should use in modern code for adding drives is L</"
319 "guestfs_add_drive_opts>.  To add a disk image, allowing writes, and "
320 "specifying that the format is raw, do:"
321 msgstr ""
322
323 # type: verbatim
324 #. type: verbatim
325 #: ../src/guestfs.pod:133
326 #, no-wrap
327 msgid ""
328 " guestfs_add_drive_opts (g, filename,\n"
329 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
330 "                         -1);\n"
331 "\n"
332 msgstr ""
333
334 # type: textblock
335 #. type: textblock
336 #: ../src/guestfs.pod:137
337 msgid "You can add a disk read-only using:"
338 msgstr ""
339
340 # type: verbatim
341 #. type: verbatim
342 #: ../src/guestfs.pod:139
343 #, no-wrap
344 msgid ""
345 " guestfs_add_drive_opts (g, filename,\n"
346 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
347 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
348 "                         -1);\n"
349 "\n"
350 msgstr ""
351
352 # type: textblock
353 #. type: textblock
354 #: ../src/guestfs.pod:144
355 msgid ""
356 "or by calling the older function L</guestfs_add_drive_ro>.  In either case "
357 "libguestfs won't modify the file."
358 msgstr ""
359
360 # type: textblock
361 #. type: textblock
362 #: ../src/guestfs.pod:147
363 msgid ""
364 "Be extremely cautious if the disk image is in use, eg. if it is being used "
365 "by a virtual machine.  Adding it read-write will almost certainly cause disk "
366 "corruption, but adding it read-only is safe."
367 msgstr ""
368
369 # type: textblock
370 #. type: textblock
371 #: ../src/guestfs.pod:151
372 msgid ""
373 "You must add at least one disk image, and you may add multiple disk images.  "
374 "In the API, the disk images are usually referred to as C</dev/sda> (for the "
375 "first one you added), C</dev/sdb> (for the second one you added), etc."
376 msgstr ""
377
378 # type: textblock
379 #. type: textblock
380 #: ../src/guestfs.pod:156
381 msgid ""
382 "Once L</guestfs_launch> has been called you cannot add any more images.  You "
383 "can call L</guestfs_list_devices> to get a list of the device names, in the "
384 "order that you added them.  See also L</BLOCK DEVICE NAMING> below."
385 msgstr ""
386
387 # type: =head2
388 #. type: =head2
389 #: ../src/guestfs.pod:161
390 msgid "MOUNTING"
391 msgstr ""
392
393 #. type: textblock
394 #: ../src/guestfs.pod:163
395 msgid ""
396 "Before you can read or write files, create directories and so on in a disk "
397 "image that contains filesystems, you have to mount those filesystems using "
398 "L</guestfs_mount_options> or L</guestfs_mount_ro>.  If you already know that "
399 "a disk image contains (for example) one partition with a filesystem on that "
400 "partition, then you can mount it directly:"
401 msgstr ""
402
403 #. type: verbatim
404 #: ../src/guestfs.pod:170
405 #, no-wrap
406 msgid ""
407 " guestfs_mount_options (g, \"\", \"/dev/sda1\", \"/\");\n"
408 "\n"
409 msgstr ""
410
411 #. type: textblock
412 #: ../src/guestfs.pod:172
413 msgid ""
414 "where C</dev/sda1> means literally the first partition (C<1>) of the first "
415 "disk image that we added (C</dev/sda>).  If the disk contains Linux LVM2 "
416 "logical volumes you could refer to those instead (eg. C</dev/VG/LV>).  Note "
417 "that these are libguestfs virtual devices, and are nothing to do with host "
418 "devices."
419 msgstr ""
420
421 #. type: textblock
422 #: ../src/guestfs.pod:178
423 msgid ""
424 "If you are given a disk image and you don't know what it contains then you "
425 "have to find out.  Libguestfs can do that too: use L</"
426 "guestfs_list_partitions> and L</guestfs_lvs> to list possible partitions and "
427 "LVs, and either try mounting each to see what is mountable, or else examine "
428 "them with L</guestfs_vfs_type> or L</guestfs_file>.  To list just "
429 "filesystems, use L</guestfs_list_filesystems>."
430 msgstr ""
431
432 #. type: textblock
433 #: ../src/guestfs.pod:186
434 msgid ""
435 "Libguestfs also has a set of APIs for inspection of unknown disk images (see "
436 "L</INSPECTION> below).  But you might find it easier to look at higher level "
437 "programs built on top of libguestfs, in particular L<virt-inspector(1)>."
438 msgstr ""
439
440 #. type: textblock
441 #: ../src/guestfs.pod:191
442 msgid ""
443 "To mount a filesystem read-only, use L</guestfs_mount_ro>.  There are "
444 "several other variations of the C<guestfs_mount_*> call."
445 msgstr ""
446
447 # type: =head2
448 #. type: =head2
449 #: ../src/guestfs.pod:194
450 msgid "FILESYSTEM ACCESS AND MODIFICATION"
451 msgstr ""
452
453 # type: textblock
454 #. type: textblock
455 #: ../src/guestfs.pod:196
456 msgid ""
457 "The majority of the libguestfs API consists of fairly low-level calls for "
458 "accessing and modifying the files, directories, symlinks etc on mounted "
459 "filesystems.  There are over a hundred such calls which you can find listed "
460 "in detail below in this man page, and we don't even pretend to cover them "
461 "all in this overview."
462 msgstr ""
463
464 # type: textblock
465 #. type: textblock
466 #: ../src/guestfs.pod:202
467 msgid ""
468 "Specify filenames as full paths, starting with C<\"/\"> and including the "
469 "mount point."
470 msgstr ""
471
472 # type: textblock
473 #. type: textblock
474 #: ../src/guestfs.pod:205
475 msgid ""
476 "For example, if you mounted a filesystem at C<\"/\"> and you want to read "
477 "the file called C<\"etc/passwd\"> then you could do:"
478 msgstr ""
479
480 # type: verbatim
481 #. type: verbatim
482 #: ../src/guestfs.pod:208
483 #, no-wrap
484 msgid ""
485 " char *data = guestfs_cat (g, \"/etc/passwd\");\n"
486 "\n"
487 msgstr ""
488
489 # type: textblock
490 #. type: textblock
491 #: ../src/guestfs.pod:210
492 msgid ""
493 "This would return C<data> as a newly allocated buffer containing the full "
494 "content of that file (with some conditions: see also L</DOWNLOADING> below), "
495 "or C<NULL> if there was an error."
496 msgstr ""
497
498 # type: textblock
499 #. type: textblock
500 #: ../src/guestfs.pod:214
501 msgid ""
502 "As another example, to create a top-level directory on that filesystem "
503 "called C<\"var\"> you would do:"
504 msgstr ""
505
506 # type: verbatim
507 #. type: verbatim
508 #: ../src/guestfs.pod:217
509 #, no-wrap
510 msgid ""
511 " guestfs_mkdir (g, \"/var\");\n"
512 "\n"
513 msgstr ""
514
515 # type: textblock
516 #. type: textblock
517 #: ../src/guestfs.pod:219
518 msgid "To create a symlink you could do:"
519 msgstr ""
520
521 # type: verbatim
522 #. type: verbatim
523 #: ../src/guestfs.pod:221
524 #, no-wrap
525 msgid ""
526 " guestfs_ln_s (g, \"/etc/init.d/portmap\",\n"
527 "               \"/etc/rc3.d/S30portmap\");\n"
528 "\n"
529 msgstr ""
530
531 # type: textblock
532 #. type: textblock
533 #: ../src/guestfs.pod:224
534 msgid ""
535 "Libguestfs will reject attempts to use relative paths and there is no "
536 "concept of a current working directory."
537 msgstr ""
538
539 # type: textblock
540 #. type: textblock
541 #: ../src/guestfs.pod:227
542 msgid ""
543 "Libguestfs can return errors in many situations: for example if the "
544 "filesystem isn't writable, or if a file or directory that you requested "
545 "doesn't exist.  If you are using the C API (documented here)  you have to "
546 "check for those error conditions after each call.  (Other language bindings "
547 "turn these errors into exceptions)."
548 msgstr ""
549
550 # type: textblock
551 #. type: textblock
552 #: ../src/guestfs.pod:233
553 msgid ""
554 "File writes are affected by the per-handle umask, set by calling L</"
555 "guestfs_umask> and defaulting to 022.  See L</UMASK>."
556 msgstr ""
557
558 # type: =head2
559 #. type: =head2
560 #: ../src/guestfs.pod:236
561 msgid "PARTITIONING"
562 msgstr ""
563
564 # type: textblock
565 #. type: textblock
566 #: ../src/guestfs.pod:238
567 msgid ""
568 "Libguestfs contains API calls to read, create and modify partition tables on "
569 "disk images."
570 msgstr ""
571
572 # type: textblock
573 #. type: textblock
574 #: ../src/guestfs.pod:241
575 msgid ""
576 "In the common case where you want to create a single partition covering the "
577 "whole disk, you should use the L</guestfs_part_disk> call:"
578 msgstr ""
579
580 # type: verbatim
581 #. type: verbatim
582 #: ../src/guestfs.pod:245
583 #, no-wrap
584 msgid ""
585 " const char *parttype = \"mbr\";\n"
586 " if (disk_is_larger_than_2TB)\n"
587 "   parttype = \"gpt\";\n"
588 " guestfs_part_disk (g, \"/dev/sda\", parttype);\n"
589 "\n"
590 msgstr ""
591
592 # type: textblock
593 #. type: textblock
594 #: ../src/guestfs.pod:250
595 msgid ""
596 "Obviously this effectively wipes anything that was on that disk image before."
597 msgstr ""
598
599 # type: =head2
600 #. type: =head2
601 #: ../src/guestfs.pod:253
602 msgid "LVM2"
603 msgstr ""
604
605 # type: textblock
606 #. type: textblock
607 #: ../src/guestfs.pod:255
608 msgid ""
609 "Libguestfs provides access to a large part of the LVM2 API, such as L</"
610 "guestfs_lvcreate> and L</guestfs_vgremove>.  It won't make much sense unless "
611 "you familiarize yourself with the concepts of physical volumes, volume "
612 "groups and logical volumes."
613 msgstr ""
614
615 # type: textblock
616 #. type: textblock
617 #: ../src/guestfs.pod:260
618 msgid ""
619 "This author strongly recommends reading the LVM HOWTO, online at L<http://"
620 "tldp.org/HOWTO/LVM-HOWTO/>."
621 msgstr ""
622
623 # type: =head2
624 #. type: =head2
625 #: ../src/guestfs.pod:263
626 msgid "DOWNLOADING"
627 msgstr ""
628
629 #. type: textblock
630 #: ../src/guestfs.pod:265
631 msgid ""
632 "Use L</guestfs_cat> to download small, text only files.  This call is "
633 "limited to files which are less than 2 MB and which cannot contain any ASCII "
634 "NUL (C<\\0>) characters.  However the API is very simple to use."
635 msgstr ""
636
637 # type: textblock
638 #. type: textblock
639 #: ../src/guestfs.pod:269
640 msgid ""
641 "L</guestfs_read_file> can be used to read files which contain arbitrary 8 "
642 "bit data, since it returns a (pointer, size) pair.  However it is still "
643 "limited to \"small\" files, less than 2 MB."
644 msgstr ""
645
646 # type: textblock
647 #. type: textblock
648 #: ../src/guestfs.pod:273
649 msgid ""
650 "L</guestfs_download> can be used to download any file, with no limits on "
651 "content or size (even files larger than 4 GB)."
652 msgstr ""
653
654 # type: textblock
655 #. type: textblock
656 #: ../src/guestfs.pod:276
657 msgid ""
658 "To download multiple files, see L</guestfs_tar_out> and L</guestfs_tgz_out>."
659 msgstr ""
660
661 # type: =head2
662 #. type: =head2
663 #: ../src/guestfs.pod:279
664 msgid "UPLOADING"
665 msgstr ""
666
667 # type: textblock
668 #. type: textblock
669 #: ../src/guestfs.pod:281
670 msgid ""
671 "It's often the case that you want to write a file or files to the disk image."
672 msgstr ""
673
674 # type: textblock
675 #. type: textblock
676 #: ../src/guestfs.pod:284
677 msgid ""
678 "To write a small file with fixed content, use L</guestfs_write>.  To create "
679 "a file of all zeroes, use L</guestfs_truncate_size> (sparse) or L</"
680 "guestfs_fallocate64> (with all disk blocks allocated).  There are a variety "
681 "of other functions for creating test files, for example L</guestfs_fill> and "
682 "L</guestfs_fill_pattern>."
683 msgstr ""
684
685 # type: textblock
686 #. type: textblock
687 #: ../src/guestfs.pod:290
688 msgid ""
689 "To upload a single file, use L</guestfs_upload>.  This call has no limits on "
690 "file content or size (even files larger than 4 GB)."
691 msgstr ""
692
693 # type: textblock
694 #. type: textblock
695 #: ../src/guestfs.pod:293
696 msgid ""
697 "To upload multiple files, see L</guestfs_tar_in> and L</guestfs_tgz_in>."
698 msgstr ""
699
700 # type: textblock
701 #. type: textblock
702 #: ../src/guestfs.pod:295
703 msgid ""
704 "However the fastest way to upload I<large numbers of arbitrary files> is to "
705 "turn them into a squashfs or CD ISO (see L<mksquashfs(8)> and L<mkisofs(8)"
706 ">), then attach this using L</guestfs_add_drive_ro>.  If you add the drive "
707 "in a predictable way (eg. adding it last after all other drives) then you "
708 "can get the device name from L</guestfs_list_devices> and mount it directly "
709 "using L</guestfs_mount_ro>.  Note that squashfs images are sometimes non-"
710 "portable between kernel versions, and they don't support labels or UUIDs.  "
711 "If you want to pre-build an image or you need to mount it using a label or "
712 "UUID, use an ISO image instead."
713 msgstr ""
714
715 # type: =head2
716 #. type: =head2
717 #: ../src/guestfs.pod:306
718 msgid "COPYING"
719 msgstr ""
720
721 # type: textblock
722 #. type: textblock
723 #: ../src/guestfs.pod:308
724 msgid ""
725 "There are various different commands for copying between files and devices "
726 "and in and out of the guest filesystem.  These are summarised in the table "
727 "below."
728 msgstr ""
729
730 # type: =item
731 #. type: =item
732 #: ../src/guestfs.pod:314
733 msgid "B<file> to B<file>"
734 msgstr ""
735
736 # type: textblock
737 #. type: textblock
738 #: ../src/guestfs.pod:316
739 msgid ""
740 "Use L</guestfs_cp> to copy a single file, or L</guestfs_cp_a> to copy "
741 "directories recursively."
742 msgstr ""
743
744 # type: =item
745 #. type: =item
746 #: ../src/guestfs.pod:319
747 msgid "B<file or device> to B<file or device>"
748 msgstr ""
749
750 # type: textblock
751 #. type: textblock
752 #: ../src/guestfs.pod:321
753 msgid ""
754 "Use L</guestfs_dd> which efficiently uses L<dd(1)> to copy between files and "
755 "devices in the guest."
756 msgstr ""
757
758 # type: textblock
759 #. type: textblock
760 #: ../src/guestfs.pod:324
761 msgid "Example: duplicate the contents of an LV:"
762 msgstr ""
763
764 # type: verbatim
765 #. type: verbatim
766 #: ../src/guestfs.pod:326
767 #, no-wrap
768 msgid ""
769 " guestfs_dd (g, \"/dev/VG/Original\", \"/dev/VG/Copy\");\n"
770 "\n"
771 msgstr ""
772
773 # type: textblock
774 #. type: textblock
775 #: ../src/guestfs.pod:328
776 msgid ""
777 "The destination (C</dev/VG/Copy>) must be at least as large as the source "
778 "(C</dev/VG/Original>).  To copy less than the whole source device, use L</"
779 "guestfs_copy_size>."
780 msgstr ""
781
782 # type: =item
783 #. type: =item
784 #: ../src/guestfs.pod:332
785 msgid "B<file on the host> to B<file or device>"
786 msgstr ""
787
788 # type: textblock
789 #. type: textblock
790 #: ../src/guestfs.pod:334
791 msgid "Use L</guestfs_upload>.  See L</UPLOADING> above."
792 msgstr ""
793
794 # type: =item
795 #. type: =item
796 #: ../src/guestfs.pod:336
797 msgid "B<file or device> to B<file on the host>"
798 msgstr ""
799
800 # type: textblock
801 #. type: textblock
802 #: ../src/guestfs.pod:338
803 msgid "Use L</guestfs_download>.  See L</DOWNLOADING> above."
804 msgstr ""
805
806 # type: =head2
807 #. type: =head2
808 #: ../src/guestfs.pod:342
809 msgid "UPLOADING AND DOWNLOADING TO PIPES AND FILE DESCRIPTORS"
810 msgstr ""
811
812 # type: textblock
813 #. type: textblock
814 #: ../src/guestfs.pod:344
815 msgid ""
816 "Calls like L</guestfs_upload>, L</guestfs_download>, L</guestfs_tar_in>, L</"
817 "guestfs_tar_out> etc appear to only take filenames as arguments, so it "
818 "appears you can only upload and download to files.  However many Un*x-like "
819 "hosts let you use the special device files C</dev/stdin>, C</dev/stdout>, C</"
820 "dev/stderr> and C</dev/fd/N> to read and write from stdin, stdout, stderr, "
821 "and arbitrary file descriptor N."
822 msgstr ""
823
824 # type: textblock
825 #. type: textblock
826 #: ../src/guestfs.pod:352
827 msgid "For example, L<virt-cat(1)> writes its output to stdout by doing:"
828 msgstr ""
829
830 #. type: verbatim
831 #: ../src/guestfs.pod:355
832 #, no-wrap
833 msgid ""
834 " guestfs_download (g, filename, \"/dev/stdout\");\n"
835 "\n"
836 msgstr ""
837
838 #. type: textblock
839 #: ../src/guestfs.pod:357
840 msgid "and you can write tar output to a file descriptor C<fd> by doing:"
841 msgstr ""
842
843 #. type: verbatim
844 #: ../src/guestfs.pod:359
845 #, no-wrap
846 msgid ""
847 " char devfd[64];\n"
848 " snprintf (devfd, sizeof devfd, \"/dev/fd/%d\", fd);\n"
849 " guestfs_tar_out (g, \"/\", devfd);\n"
850 "\n"
851 msgstr ""
852
853 # type: =head2
854 #. type: =head2
855 #: ../src/guestfs.pod:363
856 msgid "LISTING FILES"
857 msgstr ""
858
859 # type: textblock
860 #. type: textblock
861 #: ../src/guestfs.pod:365
862 msgid ""
863 "L</guestfs_ll> is just designed for humans to read (mainly when using the "
864 "L<guestfish(1)>-equivalent command C<ll>)."
865 msgstr ""
866
867 # type: textblock
868 #. type: textblock
869 #: ../src/guestfs.pod:368
870 msgid ""
871 "L</guestfs_ls> is a quick way to get a list of files in a directory from "
872 "programs, as a flat list of strings."
873 msgstr ""
874
875 # type: textblock
876 #. type: textblock
877 #: ../src/guestfs.pod:371
878 msgid ""
879 "L</guestfs_readdir> is a programmatic way to get a list of files in a "
880 "directory, plus additional information about each one.  It is more "
881 "equivalent to using the L<readdir(3)> call on a local filesystem."
882 msgstr ""
883
884 # type: textblock
885 #. type: textblock
886 #: ../src/guestfs.pod:375
887 msgid ""
888 "L</guestfs_find> and L</guestfs_find0> can be used to recursively list files."
889 msgstr ""
890
891 # type: =head2
892 #. type: =head2
893 #: ../src/guestfs.pod:378
894 msgid "RUNNING COMMANDS"
895 msgstr ""
896
897 # type: textblock
898 #. type: textblock
899 #: ../src/guestfs.pod:380
900 msgid ""
901 "Although libguestfs is primarily an API for manipulating files inside guest "
902 "images, we also provide some limited facilities for running commands inside "
903 "guests."
904 msgstr ""
905
906 # type: textblock
907 #. type: textblock
908 #: ../src/guestfs.pod:384
909 msgid "There are many limitations to this:"
910 msgstr ""
911
912 # type: =item
913 #. type: =item
914 #: ../src/guestfs.pod:388 ../src/guestfs.pod:393 ../src/guestfs.pod:398
915 #: ../src/guestfs.pod:402 ../src/guestfs.pod:407 ../src/guestfs.pod:411
916 #: ../src/guestfs.pod:416 ../src/guestfs.pod:421 ../src/guestfs.pod:1064
917 #: ../src/guestfs.pod:1068 ../src/guestfs.pod:1072 ../src/guestfs.pod:1077
918 #: ../src/guestfs.pod:1085 ../src/guestfs.pod:1104 ../src/guestfs.pod:1112
919 #: ../src/guestfs.pod:1134 ../src/guestfs.pod:1138 ../src/guestfs.pod:1142
920 #: ../src/guestfs.pod:1146 ../src/guestfs.pod:1150 ../src/guestfs.pod:1154
921 #: ../src/guestfs.pod:1643 ../src/guestfs.pod:1648 ../src/guestfs.pod:1652
922 #: ../src/guestfs.pod:1753 ../src/guestfs.pod:1758 ../src/guestfs.pod:1762
923 #: ../src/guestfs.pod:1772 ../src/guestfs.pod:2007 ../src/guestfs.pod:2012
924 #: ../src/guestfs.pod:2018 ../src/guestfs.pod:2026 ../src/guestfs.pod:2380
925 #: ../src/guestfs.pod:2386 ../src/guestfs.pod:2391 ../src/guestfs.pod:2397
926 #: ../src/guestfs.pod:2968 ../src/guestfs.pod:2972 ../src/guestfs.pod:2976
927 #: ../src/guestfs.pod:2980 ../src/guestfs-actions.pod:15
928 #: ../src/guestfs-actions.pod:22 ../src/guestfs-actions.pod:577
929 #: ../src/guestfs-actions.pod:585 ../src/guestfs-actions.pod:592
930 #: ../src/guestfs-actions.pod:599 ../src/guestfs-actions.pod:1597
931 #: ../src/guestfs-actions.pod:1601 ../src/guestfs-actions.pod:1605
932 #: ../src/guestfs-actions.pod:1609 ../src/guestfs-actions.pod:1617
933 #: ../src/guestfs-actions.pod:1621 ../src/guestfs-actions.pod:1625
934 #: ../src/guestfs-actions.pod:1635 ../src/guestfs-actions.pod:1639
935 #: ../src/guestfs-actions.pod:1643 ../src/guestfs-actions.pod:1781
936 #: ../src/guestfs-actions.pod:1785 ../src/guestfs-actions.pod:1790
937 #: ../src/guestfs-actions.pod:1795 ../src/guestfs-actions.pod:1856
938 #: ../src/guestfs-actions.pod:1860 ../src/guestfs-actions.pod:1865
939 #: ../fish/guestfish.pod:443 ../fish/guestfish.pod:447
940 #: ../fish/guestfish.pod:451 ../fish/guestfish.pod:455
941 #: ../fish/guestfish-actions.pod:13 ../fish/guestfish-actions.pod:20
942 #: ../fish/guestfish-actions.pod:380 ../fish/guestfish-actions.pod:388
943 #: ../fish/guestfish-actions.pod:395 ../fish/guestfish-actions.pod:402
944 #: ../fish/guestfish-actions.pod:1069 ../fish/guestfish-actions.pod:1073
945 #: ../fish/guestfish-actions.pod:1077 ../fish/guestfish-actions.pod:1081
946 #: ../fish/guestfish-actions.pod:1089 ../fish/guestfish-actions.pod:1093
947 #: ../fish/guestfish-actions.pod:1097 ../fish/guestfish-actions.pod:1107
948 #: ../fish/guestfish-actions.pod:1111 ../fish/guestfish-actions.pod:1115
949 #: ../fish/guestfish-actions.pod:1205 ../fish/guestfish-actions.pod:1209
950 #: ../fish/guestfish-actions.pod:1214 ../fish/guestfish-actions.pod:1219
951 #: ../fish/guestfish-actions.pod:1261 ../fish/guestfish-actions.pod:1265
952 #: ../fish/guestfish-actions.pod:1270 ../tools/virt-edit.pl:351
953 #: ../tools/virt-edit.pl:356 ../tools/virt-edit.pl:361
954 #: ../tools/virt-edit.pl:372 ../tools/virt-edit.pl:376
955 #: ../tools/virt-win-reg.pl:536 ../tools/virt-win-reg.pl:542
956 #: ../tools/virt-win-reg.pl:548
957 msgid "*"
958 msgstr ""
959
960 # type: textblock
961 #. type: textblock
962 #: ../src/guestfs.pod:390
963 msgid ""
964 "The kernel version that the command runs under will be different from what "
965 "it expects."
966 msgstr ""
967
968 # type: textblock
969 #. type: textblock
970 #: ../src/guestfs.pod:395
971 msgid ""
972 "If the command needs to communicate with daemons, then most likely they "
973 "won't be running."
974 msgstr ""
975
976 # type: textblock
977 #. type: textblock
978 #: ../src/guestfs.pod:400
979 msgid "The command will be running in limited memory."
980 msgstr ""
981
982 # type: textblock
983 #. type: textblock
984 #: ../src/guestfs.pod:404
985 msgid ""
986 "The network may not be available unless you enable it (see L</"
987 "guestfs_set_network>)."
988 msgstr ""
989
990 # type: textblock
991 #. type: textblock
992 #: ../src/guestfs.pod:409
993 msgid "Only supports Linux guests (not Windows, BSD, etc)."
994 msgstr ""
995
996 # type: textblock
997 #. type: textblock
998 #: ../src/guestfs.pod:413
999 msgid ""
1000 "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
1001 msgstr ""
1002
1003 # type: textblock
1004 #. type: textblock
1005 #: ../src/guestfs.pod:418
1006 msgid ""
1007 "For SELinux guests, you may need to enable SELinux and load policy first.  "
1008 "See L</SELINUX> in this manpage."
1009 msgstr ""
1010
1011 # type: textblock
1012 #. type: textblock
1013 #: ../src/guestfs.pod:423
1014 msgid ""
1015 "I<Security:> It is not safe to run commands from untrusted, possibly "
1016 "malicious guests.  These commands may attempt to exploit your program by "
1017 "sending unexpected output.  They could also try to exploit the Linux kernel "
1018 "or qemu provided by the libguestfs appliance.  They could use the network "
1019 "provided by the libguestfs appliance to bypass ordinary network partitions "
1020 "and firewalls.  They could use the elevated privileges or different SELinux "
1021 "context of your program to their advantage."
1022 msgstr ""
1023
1024 # type: textblock
1025 #. type: textblock
1026 #: ../src/guestfs.pod:432
1027 msgid ""
1028 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
1029 "(a script which runs when the guest next boots normally), and to have this "
1030 "script run the commands you want in the normal context of the running guest, "
1031 "network security and so on.  For information about other security issues, "
1032 "see L</SECURITY>."
1033 msgstr ""
1034
1035 # type: textblock
1036 #. type: textblock
1037 #: ../src/guestfs.pod:440
1038 msgid ""
1039 "The two main API calls to run commands are L</guestfs_command> and L</"
1040 "guestfs_sh> (there are also variations)."
1041 msgstr ""
1042
1043 # type: textblock
1044 #. type: textblock
1045 #: ../src/guestfs.pod:443
1046 msgid ""
1047 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
1048 "shell globs, redirections, etc will work."
1049 msgstr ""
1050
1051 # type: =head2
1052 #. type: =head2
1053 #: ../src/guestfs.pod:446
1054 msgid "CONFIGURATION FILES"
1055 msgstr ""
1056
1057 # type: textblock
1058 #. type: textblock
1059 #: ../src/guestfs.pod:448
1060 msgid ""
1061 "To read and write configuration files in Linux guest filesystems, we "
1062 "strongly recommend using Augeas.  For example, Augeas understands how to "
1063 "read and write, say, a Linux shadow password file or X.org configuration "
1064 "file, and so avoids you having to write that code."
1065 msgstr ""
1066
1067 # type: textblock
1068 #. type: textblock
1069 #: ../src/guestfs.pod:453
1070 msgid ""
1071 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't "
1072 "document Augeas itself here because there is excellent documentation on the "
1073 "L<http://augeas.net/> website."
1074 msgstr ""
1075
1076 # type: textblock
1077 #. type: textblock
1078 #: ../src/guestfs.pod:457
1079 msgid ""
1080 "If you don't want to use Augeas (you fool!) then try calling L</"
1081 "guestfs_read_lines> to get the file as a list of lines which you can iterate "
1082 "over."
1083 msgstr ""
1084
1085 # type: =head2
1086 #. type: =head2
1087 #: ../src/guestfs.pod:461
1088 msgid "SELINUX"
1089 msgstr ""
1090
1091 # type: textblock
1092 #. type: textblock
1093 #: ../src/guestfs.pod:463
1094 msgid ""
1095 "We support SELinux guests.  To ensure that labeling happens correctly in "
1096 "SELinux guests, you need to enable SELinux and load the guest's policy:"
1097 msgstr ""
1098
1099 # type: =item
1100 #. type: =item
1101 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1257 ../src/guestfs.pod:1395
1102 #: ../src/guestfs.pod:2425
1103 msgid "1."
1104 msgstr ""
1105
1106 # type: textblock
1107 #. type: textblock
1108 #: ../src/guestfs.pod:471
1109 msgid "Before launching, do:"
1110 msgstr ""
1111
1112 # type: verbatim
1113 #. type: verbatim
1114 #: ../src/guestfs.pod:473
1115 #, no-wrap
1116 msgid ""
1117 " guestfs_set_selinux (g, 1);\n"
1118 "\n"
1119 msgstr ""
1120
1121 # type: =item
1122 #. type: =item
1123 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1261 ../src/guestfs.pod:1399
1124 #: ../src/guestfs.pod:2450
1125 msgid "2."
1126 msgstr ""
1127
1128 # type: textblock
1129 #. type: textblock
1130 #: ../src/guestfs.pod:477
1131 msgid ""
1132 "After mounting the guest's filesystem(s), load the policy.  This is best "
1133 "done by running the L<load_policy(8)> command in the guest itself:"
1134 msgstr ""
1135
1136 # type: verbatim
1137 #. type: verbatim
1138 #: ../src/guestfs.pod:481
1139 #, no-wrap
1140 msgid ""
1141 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
1142 "\n"
1143 msgstr ""
1144
1145 # type: textblock
1146 #. type: textblock
1147 #: ../src/guestfs.pod:483
1148 msgid ""
1149 "(Older versions of C<load_policy> require you to specify the name of the "
1150 "policy file)."
1151 msgstr ""
1152
1153 # type: =item
1154 #. type: =item
1155 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1405
1156 msgid "3."
1157 msgstr ""
1158
1159 # type: textblock
1160 #. type: textblock
1161 #: ../src/guestfs.pod:488
1162 msgid ""
1163 "Optionally, set the security context for the API.  The correct security "
1164 "context to use can only be known by inspecting the guest.  As an example:"
1165 msgstr ""
1166
1167 # type: verbatim
1168 #. type: verbatim
1169 #: ../src/guestfs.pod:492
1170 #, no-wrap
1171 msgid ""
1172 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
1173 "\n"
1174 msgstr ""
1175
1176 # type: textblock
1177 #. type: textblock
1178 #: ../src/guestfs.pod:496
1179 msgid "This will work for running commands and editing existing files."
1180 msgstr ""
1181
1182 # type: textblock
1183 #. type: textblock
1184 #: ../src/guestfs.pod:498
1185 msgid ""
1186 "When new files are created, you may need to label them explicitly, for "
1187 "example by running the external command C<restorecon pathname>."
1188 msgstr ""
1189
1190 # type: =head2
1191 #. type: =head2
1192 #: ../src/guestfs.pod:502
1193 msgid "UMASK"
1194 msgstr ""
1195
1196 # type: textblock
1197 #. type: textblock
1198 #: ../src/guestfs.pod:504
1199 msgid ""
1200 "Certain calls are affected by the current file mode creation mask (the "
1201 "\"umask\").  In particular ones which create files or directories, such as "
1202 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This affects "
1203 "either the default mode that the file is created with or modifies the mode "
1204 "that you supply."
1205 msgstr ""
1206
1207 # type: textblock
1208 #. type: textblock
1209 #: ../src/guestfs.pod:510
1210 msgid ""
1211 "The default umask is C<022>, so files are created with modes such as C<0644> "
1212 "and directories with C<0755>."
1213 msgstr ""
1214
1215 # type: textblock
1216 #. type: textblock
1217 #: ../src/guestfs.pod:513
1218 msgid ""
1219 "There are two ways to avoid being affected by umask.  Either set umask to 0 "
1220 "(call C<guestfs_umask (g, 0)> early after launching).  Or call L</"
1221 "guestfs_chmod> after creating each file or directory."
1222 msgstr ""
1223
1224 # type: textblock
1225 #. type: textblock
1226 #: ../src/guestfs.pod:517
1227 msgid "For more information about umask, see L<umask(2)>."
1228 msgstr ""
1229
1230 # type: =head1
1231 #. type: =head1
1232 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:765
1233 msgid "ENCRYPTED DISKS"
1234 msgstr ""
1235
1236 # type: textblock
1237 #. type: textblock
1238 #: ../src/guestfs.pod:521
1239 msgid ""
1240 "Libguestfs allows you to access Linux guests which have been encrypted using "
1241 "whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1242 "standard.  This includes nearly all whole disk encryption systems used by "
1243 "modern Linux guests."
1244 msgstr ""
1245
1246 # type: textblock
1247 #. type: textblock
1248 #: ../src/guestfs.pod:527
1249 msgid ""
1250 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1251 "returns the string C<crypto_LUKS>)."
1252 msgstr ""
1253
1254 # type: textblock
1255 #. type: textblock
1256 #: ../src/guestfs.pod:530
1257 msgid ""
1258 "Then open these devices by calling L</guestfs_luks_open>.  Obviously you "
1259 "will require the passphrase!"
1260 msgstr ""
1261
1262 # type: textblock
1263 #. type: textblock
1264 #: ../src/guestfs.pod:533
1265 msgid ""
1266 "Opening a LUKS device creates a new device mapper device called C</dev/"
1267 "mapper/mapname> (where C<mapname> is the string you supply to L</"
1268 "guestfs_luks_open>).  Reads and writes to this mapper device are decrypted "
1269 "from and encrypted to the underlying block device respectively."
1270 msgstr ""
1271
1272 # type: textblock
1273 #. type: textblock
1274 #: ../src/guestfs.pod:539
1275 msgid ""
1276 "LVM volume groups on the device can be made visible by calling L</"
1277 "guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical volume"
1278 "(s) can now be mounted in the usual way."
1279 msgstr ""
1280
1281 # type: textblock
1282 #. type: textblock
1283 #: ../src/guestfs.pod:543
1284 msgid ""
1285 "Use the reverse process to close a LUKS device.  Unmount any logical volumes "
1286 "on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1287 "[\"/dev/VG\"])>.  Then close the mapper device by calling L</"
1288 "guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1289 "underlying encrypted block device)."
1290 msgstr ""
1291
1292 # type: =head2
1293 #. type: =head2
1294 #: ../src/guestfs.pod:550
1295 msgid "INSPECTION"
1296 msgstr ""
1297
1298 #. type: textblock
1299 #: ../src/guestfs.pod:552
1300 msgid ""
1301 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1302 "contains operating systems, an install CD or a live CD.  (These APIs used to "
1303 "be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since "
1304 "version 1.5.3 the most frequently used part of this library has been "
1305 "rewritten in C and moved into the core code)."
1306 msgstr ""
1307
1308 # type: textblock
1309 #. type: textblock
1310 #: ../src/guestfs.pod:559
1311 msgid ""
1312 "Add all disks belonging to the unknown virtual machine and call L</"
1313 "guestfs_launch> in the usual way."
1314 msgstr ""
1315
1316 # type: textblock
1317 #. type: textblock
1318 #: ../src/guestfs.pod:562
1319 msgid ""
1320 "Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls "
1321 "and certain heuristics, and returns a list of operating systems that were "
1322 "found.  An empty list means none were found.  A single element is the root "
1323 "filesystem of the operating system.  For dual- or multi-boot guests, "
1324 "multiple roots can be returned, each one corresponding to a separate "
1325 "operating system.  (Multi-boot virtual machines are extremely rare in the "
1326 "world of virtualization, but since this scenario can happen, we have built "
1327 "libguestfs to deal with it.)"
1328 msgstr ""
1329
1330 # type: textblock
1331 #. type: textblock
1332 #: ../src/guestfs.pod:571
1333 msgid ""
1334 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1335 "to get additional details about that operating system.  For example, call L</"
1336 "guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
1337 "Windows and Linux-based operating systems respectively."
1338 msgstr ""
1339
1340 # type: textblock
1341 #. type: textblock
1342 #: ../src/guestfs.pod:577
1343 msgid ""
1344 "Un*x-like and Linux-based operating systems usually consist of several "
1345 "filesystems which are mounted at boot time (for example, a separate boot "
1346 "partition mounted on C</boot>).  The inspection rules are able to detect how "
1347 "filesystems correspond to mount points.  Call "
1348 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
1349 "hash table like this example:"
1350 msgstr ""
1351
1352 # type: verbatim
1353 #. type: verbatim
1354 #: ../src/guestfs.pod:584
1355 #, no-wrap
1356 msgid ""
1357 " /boot => /dev/sda1\n"
1358 " /     => /dev/vg_guest/lv_root\n"
1359 " /usr  => /dev/vg_guest/lv_usr\n"
1360 "\n"
1361 msgstr ""
1362
1363 # type: textblock
1364 #. type: textblock
1365 #: ../src/guestfs.pod:588
1366 msgid ""
1367 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1368 "filesystems as suggested."
1369 msgstr ""
1370
1371 # type: textblock
1372 #. type: textblock
1373 #: ../src/guestfs.pod:591
1374 msgid ""
1375 "Be careful to mount filesystems in the right order (eg. C</> before C</"
1376 "usr>).  Sorting the keys of the hash by length, shortest first, should work."
1377 msgstr ""
1378
1379 # type: textblock
1380 #. type: textblock
1381 #: ../src/guestfs.pod:595
1382 msgid ""
1383 "Inspection currently only works for some common operating systems.  "
1384 "Contributors are welcome to send patches for other operating systems that we "
1385 "currently cannot detect."
1386 msgstr ""
1387
1388 # type: textblock
1389 #. type: textblock
1390 #: ../src/guestfs.pod:599
1391 msgid ""
1392 "Encrypted disks must be opened before inspection.  See L</ENCRYPTED DISKS> "
1393 "for more details.  The L</guestfs_inspect_os> function just ignores any "
1394 "encrypted devices."
1395 msgstr ""
1396
1397 # type: textblock
1398 #. type: textblock
1399 #: ../src/guestfs.pod:603
1400 msgid ""
1401 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1402 "inspection and caches the results in the guest handle.  Subsequent calls to "
1403 "C<guestfs_inspect_get_*> return this cached information, but I<do not> re-"
1404 "read the disks.  If you change the content of the guest disks, you can redo "
1405 "inspection by calling L</guestfs_inspect_os> again.  (L</"
1406 "guestfs_inspect_list_applications> works a little differently from the other "
1407 "calls and does read the disks.  See documentation for that function for "
1408 "details)."
1409 msgstr ""
1410
1411 #. type: =head3
1412 #: ../src/guestfs.pod:612
1413 msgid "INSPECTING INSTALL DISKS"
1414 msgstr ""
1415
1416 #. type: textblock
1417 #: ../src/guestfs.pod:614
1418 msgid ""
1419 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1420 "CDs and more."
1421 msgstr ""
1422
1423 #. type: textblock
1424 #: ../src/guestfs.pod:617
1425 msgid ""
1426 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1427 "system, which currently can be C<installed> (a regular operating system) or "
1428 "C<installer> (some sort of install disk)."
1429 msgstr ""
1430
1431 #. type: textblock
1432 #: ../src/guestfs.pod:621
1433 msgid ""
1434 "Further information is available about the operating system that can be "
1435 "installed using the regular inspection APIs like L</"
1436 "guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> etc."
1437 msgstr ""
1438
1439 #. type: textblock
1440 #: ../src/guestfs.pod:626
1441 msgid ""
1442 "Some additional information specific to installer disks is also available "
1443 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and L</"
1444 "guestfs_inspect_is_multipart> calls."
1445 msgstr ""
1446
1447 # type: =head2
1448 #. type: =head2
1449 #: ../src/guestfs.pod:631
1450 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1451 msgstr ""
1452
1453 # type: textblock
1454 #. type: textblock
1455 #: ../src/guestfs.pod:633
1456 msgid ""
1457 "Libguestfs can mount NTFS partitions.  It does this using the L<http://www."
1458 "ntfs-3g.org/> driver."
1459 msgstr ""
1460
1461 # type: =head3
1462 #. type: =head3
1463 #: ../src/guestfs.pod:636
1464 msgid "DRIVE LETTERS AND PATHS"
1465 msgstr ""
1466
1467 # type: textblock
1468 #. type: textblock
1469 #: ../src/guestfs.pod:638
1470 msgid ""
1471 "DOS and Windows still use drive letters, and the filesystems are always "
1472 "treated as case insensitive by Windows itself, and therefore you might find "
1473 "a Windows configuration file referring to a path like C<c:\\windows"
1474 "\\system32>.  When the filesystem is mounted in libguestfs, that directory "
1475 "might be referred to as C</WINDOWS/System32>."
1476 msgstr ""
1477
1478 #. type: textblock
1479 #: ../src/guestfs.pod:644
1480 msgid ""
1481 "Drive letter mappings can be found using inspection (see L</INSPECTION> and "
1482 "L</guestfs_inspect_get_drive_mappings>)"
1483 msgstr ""
1484
1485 #. type: textblock
1486 #: ../src/guestfs.pod:647
1487 msgid ""
1488 "Dealing with separator characters (backslash vs forward slash) is outside "
1489 "the scope of libguestfs, but usually a simple character replacement will "
1490 "work."
1491 msgstr ""
1492
1493 #. type: textblock
1494 #: ../src/guestfs.pod:651
1495 msgid ""
1496 "To resolve the case insensitivity of paths, call L</"
1497 "guestfs_case_sensitive_path>."
1498 msgstr ""
1499
1500 # type: =head3
1501 #. type: =head3
1502 #: ../src/guestfs.pod:654
1503 msgid "ACCESSING THE WINDOWS REGISTRY"
1504 msgstr ""
1505
1506 # type: textblock
1507 #. type: textblock
1508 #: ../src/guestfs.pod:656
1509 msgid ""
1510 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1511 "files, through the library C<hivex> which is part of the libguestfs project "
1512 "although ships as a separate tarball.  You have to locate and download the "
1513 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
1514 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and L<virt-win-"
1515 "reg(1)> for more help on this issue."
1516 msgstr ""
1517
1518 # type: =head3
1519 #. type: =head3
1520 #: ../src/guestfs.pod:664
1521 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1522 msgstr ""
1523
1524 # type: textblock
1525 #. type: textblock
1526 #: ../src/guestfs.pod:666
1527 msgid ""
1528 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1529 "provide something which looks like a Linux symlink.  The way it tries to do "
1530 "the rewriting is described here:"
1531 msgstr ""
1532
1533 # type: textblock
1534 #. type: textblock
1535 #: ../src/guestfs.pod:670
1536 msgid ""
1537 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1538 "symbolic-links/>"
1539 msgstr ""
1540
1541 # type: textblock
1542 #. type: textblock
1543 #: ../src/guestfs.pod:672
1544 msgid ""
1545 "The essential problem is that ntfs-3g simply does not have enough "
1546 "information to do a correct job.  NTFS links can contain drive letters and "
1547 "references to external device GUIDs that ntfs-3g has no way of resolving.  "
1548 "It is almost certainly the case that libguestfs callers should ignore what "
1549 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1550 msgstr ""
1551
1552 # type: textblock
1553 #. type: textblock
1554 #: ../src/guestfs.pod:679
1555 msgid ""
1556 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use L</"
1557 "guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1558 "attribute, and read the raw reparse data from that (you can find the format "
1559 "documented in various places around the web)."
1560 msgstr ""
1561
1562 # type: =head3
1563 #. type: =head3
1564 #: ../src/guestfs.pod:684
1565 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1566 msgstr ""
1567
1568 # type: textblock
1569 #. type: textblock
1570 #: ../src/guestfs.pod:686
1571 msgid ""
1572 "There are other useful extended attributes that can be read from ntfs-3g "
1573 "filesystems (using L</guestfs_getxattr>).  See:"
1574 msgstr ""
1575
1576 # type: textblock
1577 #. type: textblock
1578 #: ../src/guestfs.pod:689
1579 msgid ""
1580 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1581 msgstr ""
1582
1583 # type: =head2
1584 #. type: =head2
1585 #: ../src/guestfs.pod:691
1586 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1587 msgstr ""
1588
1589 # type: textblock
1590 #. type: textblock
1591 #: ../src/guestfs.pod:693
1592 msgid ""
1593 "Although we don't want to discourage you from using the C API, we will "
1594 "mention here that the same API is also available in other languages."
1595 msgstr ""
1596
1597 #. type: textblock
1598 #: ../src/guestfs.pod:696
1599 msgid ""
1600 "The API is broadly identical in all supported languages.  This means that "
1601 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
1602 "in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1603 "OCaml.  In other words, a straightforward, predictable isomorphism between "
1604 "each language."
1605 msgstr ""
1606
1607 # type: textblock
1608 #. type: textblock
1609 #: ../src/guestfs.pod:702
1610 msgid ""
1611 "Error messages are automatically transformed into exceptions if the language "
1612 "supports it."
1613 msgstr ""
1614
1615 # type: textblock
1616 #. type: textblock
1617 #: ../src/guestfs.pod:705
1618 msgid ""
1619 "We don't try to \"object orientify\" parts of the API in OO languages, "
1620 "although contributors are welcome to write higher level APIs above what we "
1621 "provide in their favourite languages if they wish."
1622 msgstr ""
1623
1624 # type: =item
1625 #. type: =item
1626 #: ../src/guestfs.pod:711
1627 msgid "B<C++>"
1628 msgstr ""
1629
1630 # type: textblock
1631 #. type: textblock
1632 #: ../src/guestfs.pod:713
1633 msgid ""
1634 "You can use the I<guestfs.h> header file from C++ programs.  The C++ API is "
1635 "identical to the C API.  C++ classes and exceptions are not used."
1636 msgstr ""
1637
1638 # type: =item
1639 #. type: =item
1640 #: ../src/guestfs.pod:717
1641 msgid "B<C#>"
1642 msgstr ""
1643
1644 # type: textblock
1645 #. type: textblock
1646 #: ../src/guestfs.pod:719
1647 msgid ""
1648 "The C# bindings are highly experimental.  Please read the warnings at the "
1649 "top of C<csharp/Libguestfs.cs>."
1650 msgstr ""
1651
1652 # type: =item
1653 #. type: =item
1654 #: ../src/guestfs.pod:722
1655 msgid "B<Haskell>"
1656 msgstr ""
1657
1658 # type: textblock
1659 #. type: textblock
1660 #: ../src/guestfs.pod:724
1661 msgid ""
1662 "This is the only language binding that is working but incomplete.  Only "
1663 "calls which return simple integers have been bound in Haskell, and we are "
1664 "looking for help to complete this binding."
1665 msgstr ""
1666
1667 # type: =item
1668 #. type: =item
1669 #: ../src/guestfs.pod:728
1670 msgid "B<Java>"
1671 msgstr ""
1672
1673 # type: textblock
1674 #. type: textblock
1675 #: ../src/guestfs.pod:730
1676 msgid ""
1677 "Full documentation is contained in the Javadoc which is distributed with "
1678 "libguestfs."
1679 msgstr ""
1680
1681 # type: =item
1682 #. type: =item
1683 #: ../src/guestfs.pod:733
1684 msgid "B<OCaml>"
1685 msgstr ""
1686
1687 #. type: textblock
1688 #: ../src/guestfs.pod:735
1689 msgid "See L<guestfs-ocaml(3)>."
1690 msgstr ""
1691
1692 # type: =item
1693 #. type: =item
1694 #: ../src/guestfs.pod:737
1695 msgid "B<Perl>"
1696 msgstr ""
1697
1698 #. type: textblock
1699 #: ../src/guestfs.pod:739
1700 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1701 msgstr ""
1702
1703 # type: =item
1704 #. type: =item
1705 #: ../src/guestfs.pod:741
1706 msgid "B<PHP>"
1707 msgstr ""
1708
1709 # type: textblock
1710 #. type: textblock
1711 #: ../src/guestfs.pod:743
1712 msgid ""
1713 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1714 "the php-libguestfs package for your distribution."
1715 msgstr ""
1716
1717 # type: textblock
1718 #. type: textblock
1719 #: ../src/guestfs.pod:746
1720 msgid "The PHP binding only works correctly on 64 bit machines."
1721 msgstr ""
1722
1723 # type: =item
1724 #. type: =item
1725 #: ../src/guestfs.pod:748
1726 msgid "B<Python>"
1727 msgstr ""
1728
1729 #. type: textblock
1730 #: ../src/guestfs.pod:750
1731 msgid "See L<guestfs-python(3)>."
1732 msgstr ""
1733
1734 # type: =item
1735 #. type: =item
1736 #: ../src/guestfs.pod:752
1737 msgid "B<Ruby>"
1738 msgstr ""
1739
1740 #. type: textblock
1741 #: ../src/guestfs.pod:754
1742 msgid "See L<guestfs-ruby(3)>."
1743 msgstr ""
1744
1745 # type: =item
1746 #. type: =item
1747 #: ../src/guestfs.pod:756
1748 msgid "B<shell scripts>"
1749 msgstr ""
1750
1751 #. type: textblock
1752 #: ../src/guestfs.pod:758
1753 msgid "See L<guestfish(1)>."
1754 msgstr ""
1755
1756 # type: =head2
1757 #. type: =head2
1758 #: ../src/guestfs.pod:762
1759 msgid "LIBGUESTFS GOTCHAS"
1760 msgstr ""
1761
1762 # type: textblock
1763 #. type: textblock
1764 #: ../src/guestfs.pod:764
1765 msgid ""
1766 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1767 "system [...] that works in the way it is documented but is counterintuitive "
1768 "and almost invites mistakes.\""
1769 msgstr ""
1770
1771 # type: textblock
1772 #. type: textblock
1773 #: ../src/guestfs.pod:768
1774 msgid ""
1775 "Since we developed libguestfs and the associated tools, there are several "
1776 "things we would have designed differently, but are now stuck with for "
1777 "backwards compatibility or other reasons.  If there is ever a libguestfs 2.0 "
1778 "release, you can expect these to change.  Beware of them."
1779 msgstr ""
1780
1781 # type: =item
1782 #. type: =item
1783 #: ../src/guestfs.pod:776
1784 msgid "Autosync / forgetting to sync."
1785 msgstr ""
1786
1787 #. type: textblock
1788 #: ../src/guestfs.pod:778
1789 msgid ""
1790 "I<Update:> Autosync is enabled by default for all API users starting from "
1791 "libguestfs 1.5.24.  This section only applies to older versions."
1792 msgstr ""
1793
1794 # type: textblock
1795 #. type: textblock
1796 #: ../src/guestfs.pod:781
1797 msgid ""
1798 "When modifying a filesystem from C or another language, you B<must> unmount "
1799 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1800 "libguestfs handle.  You can also call:"
1801 msgstr ""
1802
1803 # type: verbatim
1804 #. type: verbatim
1805 #: ../src/guestfs.pod:785
1806 #, no-wrap
1807 msgid ""
1808 " guestfs_set_autosync (g, 1);\n"
1809 "\n"
1810 msgstr ""
1811
1812 # type: textblock
1813 #. type: textblock
1814 #: ../src/guestfs.pod:787
1815 msgid ""
1816 "to have the unmount/sync done automatically for you when the handle 'g' is "
1817 "closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> q.v.)"
1818 msgstr ""
1819
1820 # type: textblock
1821 #. type: textblock
1822 #: ../src/guestfs.pod:791
1823 msgid ""
1824 "If you forget to do this, then it is entirely possible that your changes "
1825 "won't be written out, or will be partially written, or (very rarely) that "
1826 "you'll get disk corruption."
1827 msgstr ""
1828
1829 # type: textblock
1830 #. type: textblock
1831 #: ../src/guestfs.pod:795
1832 msgid ""
1833 "Note that in L<guestfish(3)> autosync is the default.  So quick and dirty "
1834 "guestfish scripts that forget to sync will work just fine, which can make "
1835 "this very puzzling if you are trying to debug a problem."
1836 msgstr ""
1837
1838 # type: =item
1839 #. type: =item
1840 #: ../src/guestfs.pod:799
1841 msgid "Mount option C<-o sync> should not be the default."
1842 msgstr ""
1843
1844 # type: textblock
1845 #. type: textblock
1846 #: ../src/guestfs.pod:801
1847 msgid ""
1848 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly.  "
1849 "However C<-o sync> does not add any reliability benefit, but does have a "
1850 "very large performance impact."
1851 msgstr ""
1852
1853 # type: textblock
1854 #. type: textblock
1855 #: ../src/guestfs.pod:805
1856 msgid ""
1857 "The work around is to use L</guestfs_mount_options> and set the mount "
1858 "options that you actually want to use."
1859 msgstr ""
1860
1861 # type: =item
1862 #. type: =item
1863 #: ../src/guestfs.pod:808
1864 msgid "Read-only should be the default."
1865 msgstr ""
1866
1867 # type: textblock
1868 #. type: textblock
1869 #: ../src/guestfs.pod:810
1870 msgid ""
1871 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1872 "specify I<--rw> if you want to make changes to the image."
1873 msgstr ""
1874
1875 # type: textblock
1876 #. type: textblock
1877 #: ../src/guestfs.pod:813
1878 msgid "This would reduce the potential to corrupt live VM images."
1879 msgstr ""
1880
1881 # type: textblock
1882 #. type: textblock
1883 #: ../src/guestfs.pod:815
1884 msgid ""
1885 "Note that many filesystems change the disk when you just mount and unmount, "
1886 "even if you didn't perform any writes.  You need to use L</"
1887 "guestfs_add_drive_ro> to guarantee that the disk is not changed."
1888 msgstr ""
1889
1890 # type: =item
1891 #. type: =item
1892 #: ../src/guestfs.pod:819
1893 msgid "guestfish command line is hard to use."
1894 msgstr ""
1895
1896 # type: textblock
1897 #. type: textblock
1898 #: ../src/guestfs.pod:821
1899 msgid ""
1900 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1901 "examination).  It tries to run a guestfish command C<disk.img> which doesn't "
1902 "exist, so it fails.  In earlier versions of guestfish the error message was "
1903 "also unintuitive, but we have corrected this since.  Like the Bourne shell, "
1904 "we should have used C<guestfish -c command> to run commands."
1905 msgstr ""
1906
1907 # type: =item
1908 #. type: =item
1909 #: ../src/guestfs.pod:828
1910 msgid "guestfish megabyte modifiers don't work right on all commands"
1911 msgstr ""
1912
1913 # type: textblock
1914 #. type: textblock
1915 #: ../src/guestfs.pod:830
1916 msgid ""
1917 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1918 "other modifiers).  What guestfish actually does is to multiply the number "
1919 "part by the modifier part and pass the result to the C API.  However this "
1920 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1921 "expecting some other unit (eg. megabytes)."
1922 msgstr ""
1923
1924 # type: textblock
1925 #. type: textblock
1926 #: ../src/guestfs.pod:837
1927 msgid "The most common is L</guestfs_lvcreate>.  The guestfish command:"
1928 msgstr ""
1929
1930 # type: verbatim
1931 #. type: verbatim
1932 #: ../src/guestfs.pod:839
1933 #, no-wrap
1934 msgid ""
1935 " lvcreate LV VG 100M\n"
1936 "\n"
1937 msgstr ""
1938
1939 # type: textblock
1940 #. type: textblock
1941 #: ../src/guestfs.pod:841
1942 msgid ""
1943 "does not do what you might expect.  Instead because L</guestfs_lvcreate> is "
1944 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1945 "megabytes * megabytes) logical volume.  The error message you get from this "
1946 "is also a little obscure."
1947 msgstr ""
1948
1949 # type: textblock
1950 #. type: textblock
1951 #: ../src/guestfs.pod:846
1952 msgid ""
1953 "This could be fixed in the generator by specially marking parameters and "
1954 "return values which take bytes or other units."
1955 msgstr ""
1956
1957 # type: =item
1958 #. type: =item
1959 #: ../src/guestfs.pod:849
1960 msgid "Ambiguity between devices and paths"
1961 msgstr ""
1962
1963 # type: textblock
1964 #. type: textblock
1965 #: ../src/guestfs.pod:851
1966 msgid ""
1967 "There is a subtle ambiguity in the API between a device name (eg. C</dev/"
1968 "sdb2>) and a similar pathname.  A file might just happen to be called "
1969 "C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1970 msgstr ""
1971
1972 # type: textblock
1973 #. type: textblock
1974 #: ../src/guestfs.pod:856
1975 msgid ""
1976 "In the current API we usually resolve this ambiguity by having two separate "
1977 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>.  "
1978 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1979 "detecting if the path supplied begins with C</dev/>."
1980 msgstr ""
1981
1982 # type: textblock
1983 #. type: textblock
1984 #: ../src/guestfs.pod:862
1985 msgid ""
1986 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1987 "make paths/devices into structured names.  One way to do this would be to "
1988 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1989 "aspect of grub.  Another way would be to use a structured type, equivalent "
1990 "to this OCaml type:"
1991 msgstr ""
1992
1993 # type: verbatim
1994 #. type: verbatim
1995 #: ../src/guestfs.pod:868
1996 #, no-wrap
1997 msgid ""
1998 " type path = Path of string | Device of int | Partition of int * int\n"
1999 "\n"
2000 msgstr ""
2001
2002 # type: textblock
2003 #. type: textblock
2004 #: ../src/guestfs.pod:870
2005 msgid "which would allow you to pass arguments like:"
2006 msgstr ""
2007
2008 # type: verbatim
2009 #. type: verbatim
2010 #: ../src/guestfs.pod:872
2011 #, no-wrap
2012 msgid ""
2013 " Path \"/foo/bar\"\n"
2014 " Device 1            (* /dev/sdb, or perhaps /dev/sda *)\n"
2015 " Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
2016 " Path \"/dev/sdb2\"    (* not a device *)\n"
2017 "\n"
2018 msgstr ""
2019
2020 # type: textblock
2021 #. type: textblock
2022 #: ../src/guestfs.pod:877
2023 msgid ""
2024 "As you can see there are still problems to resolve even with this "
2025 "representation.  Also consider how it might work in guestfish."
2026 msgstr ""
2027
2028 # type: =head2
2029 #. type: =head2
2030 #: ../src/guestfs.pod:882
2031 msgid "KEYS AND PASSPHRASES"
2032 msgstr ""
2033
2034 # type: textblock
2035 #. type: textblock
2036 #: ../src/guestfs.pod:884
2037 msgid ""
2038 "Certain libguestfs calls take a parameter that contains sensitive key "
2039 "material, passed in as a C string."
2040 msgstr ""
2041
2042 # type: textblock
2043 #. type: textblock
2044 #: ../src/guestfs.pod:887
2045 msgid ""
2046 "In the future we would hope to change the libguestfs implementation so that "
2047 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
2048 "swap.  However this is I<not> done at the moment, because of the complexity "
2049 "of such an implementation."
2050 msgstr ""
2051
2052 # type: textblock
2053 #. type: textblock
2054 #: ../src/guestfs.pod:892
2055 msgid ""
2056 "Therefore you should be aware that any key parameter you pass to libguestfs "
2057 "might end up being written out to the swap partition.  If this is a concern, "
2058 "scrub the swap partition or don't use libguestfs on encrypted devices."
2059 msgstr ""
2060
2061 # type: =head1
2062 #. type: =head2
2063 #: ../src/guestfs.pod:897
2064 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
2065 msgstr ""
2066
2067 # type: textblock
2068 #. type: textblock
2069 #: ../src/guestfs.pod:899
2070 msgid ""
2071 "All high-level libguestfs actions are synchronous.  If you want to use "
2072 "libguestfs asynchronously then you must create a thread."
2073 msgstr ""
2074
2075 # type: textblock
2076 #. type: textblock
2077 #: ../src/guestfs.pod:902
2078 msgid ""
2079 "Only use the handle from a single thread.  Either use the handle exclusively "
2080 "from one thread, or provide your own mutex so that two threads cannot issue "
2081 "calls on the same handle at the same time."
2082 msgstr ""
2083
2084 # type: textblock
2085 #. type: textblock
2086 #: ../src/guestfs.pod:906
2087 msgid ""
2088 "See the graphical program guestfs-browser for one possible architecture for "
2089 "multithreaded programs using libvirt and libguestfs."
2090 msgstr ""
2091
2092 # type: =head1
2093 #. type: =head2
2094 #: ../src/guestfs.pod:909
2095 msgid "PATH"
2096 msgstr ""
2097
2098 #. type: textblock
2099 #: ../src/guestfs.pod:911
2100 msgid ""
2101 "Libguestfs needs a supermin appliance, which it finds by looking along an "
2102 "internal path."
2103 msgstr ""
2104
2105 # type: textblock
2106 #. type: textblock
2107 #: ../src/guestfs.pod:914
2108 msgid ""
2109 "By default it looks for these in the directory C<$libdir/guestfs> (eg. C</"
2110 "usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
2111 msgstr ""
2112
2113 # type: textblock
2114 #. type: textblock
2115 #: ../src/guestfs.pod:917
2116 msgid ""
2117 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
2118 "to change the directories that libguestfs will search in.  The value is a "
2119 "colon-separated list of paths.  The current directory is I<not> searched "
2120 "unless the path contains an empty element or C<.>.  For example "
2121 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
2122 "then C</usr/lib/guestfs>."
2123 msgstr ""
2124
2125 # type: =head1
2126 #. type: =head2
2127 #: ../src/guestfs.pod:924
2128 msgid "QEMU WRAPPERS"
2129 msgstr ""
2130
2131 # type: textblock
2132 #. type: textblock
2133 #: ../src/guestfs.pod:926
2134 msgid ""
2135 "If you want to compile your own qemu, run qemu from a non-standard location, "
2136 "or pass extra arguments to qemu, then you can write a shell-script wrapper "
2137 "around qemu."
2138 msgstr ""
2139
2140 # type: textblock
2141 #. type: textblock
2142 #: ../src/guestfs.pod:930
2143 msgid ""
2144 "There is one important rule to remember: you I<must C<exec qemu>> as the "
2145 "last command in the shell script (so that qemu replaces the shell and "
2146 "becomes the direct child of the libguestfs-using program).  If you don't do "
2147 "this, then the qemu process won't be cleaned up correctly."
2148 msgstr ""
2149
2150 # type: textblock
2151 #. type: textblock
2152 #: ../src/guestfs.pod:935
2153 msgid ""
2154 "Here is an example of a wrapper, where I have built my own copy of qemu from "
2155 "source:"
2156 msgstr ""
2157
2158 # type: verbatim
2159 #. type: verbatim
2160 #: ../src/guestfs.pod:938
2161 #, no-wrap
2162 msgid ""
2163 " #!/bin/sh -\n"
2164 " qemudir=/home/rjones/d/qemu\n"
2165 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios \"$@\"\n"
2166 "\n"
2167 msgstr ""
2168
2169 # type: textblock
2170 #. type: textblock
2171 #: ../src/guestfs.pod:942
2172 msgid ""
2173 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
2174 "then use it by setting the LIBGUESTFS_QEMU environment variable.  For "
2175 "example:"
2176 msgstr ""
2177
2178 # type: verbatim
2179 #. type: verbatim
2180 #: ../src/guestfs.pod:946
2181 #, no-wrap
2182 msgid ""
2183 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
2184 "\n"
2185 msgstr ""
2186
2187 # type: textblock
2188 #. type: textblock
2189 #: ../src/guestfs.pod:948
2190 msgid ""
2191 "Note that libguestfs also calls qemu with the -help and -version options in "
2192 "order to determine features."
2193 msgstr ""
2194
2195 #. type: =head2
2196 #: ../src/guestfs.pod:951
2197 msgid "ATTACHING TO RUNNING DAEMONS"
2198 msgstr ""
2199
2200 #. type: textblock
2201 #: ../src/guestfs.pod:953
2202 msgid ""
2203 "I<Note (1):> This is B<highly experimental> and has a tendency to eat "
2204 "babies.  Use with caution."
2205 msgstr ""
2206
2207 #. type: textblock
2208 #: ../src/guestfs.pod:956
2209 msgid ""
2210 "I<Note (2):> This section explains how to attach to a running daemon from a "
2211 "low level perspective.  For most users, simply using virt tools such as "
2212 "L<guestfish(1)> with the I<--live> option will \"just work\"."
2213 msgstr ""
2214
2215 #. type: =head3
2216 #: ../src/guestfs.pod:960
2217 msgid "Using guestfs_set_attach_method"
2218 msgstr ""
2219
2220 #. type: textblock
2221 #: ../src/guestfs.pod:962
2222 msgid ""
2223 "By calling L</guestfs_set_attach_method> you can change how the library "
2224 "connects to the C<guestfsd> daemon in L</guestfs_launch> (read L</"
2225 "ARCHITECTURE> for some background)."
2226 msgstr ""
2227
2228 #. type: textblock
2229 #: ../src/guestfs.pod:966
2230 msgid ""
2231 "The normal attach method is C<appliance>, where a small appliance is created "
2232 "containing the daemon, and then the library connects to this."
2233 msgstr ""
2234
2235 #. type: textblock
2236 #: ../src/guestfs.pod:969
2237 msgid ""
2238 "Setting attach method to C<unix:I<path>> (where I<path> is the path of a "
2239 "Unix domain socket) causes L</guestfs_launch> to connect to an existing "
2240 "daemon over the Unix domain socket."
2241 msgstr ""
2242
2243 #. type: textblock
2244 #: ../src/guestfs.pod:973
2245 msgid ""
2246 "The normal use for this is to connect to a running virtual machine that "
2247 "contains a C<guestfsd> daemon, and send commands so you can read and write "
2248 "files inside the live virtual machine."
2249 msgstr ""
2250
2251 #. type: =head3
2252 #: ../src/guestfs.pod:977
2253 msgid "Using guestfs_add_domain with live flag"
2254 msgstr ""
2255
2256 #. type: textblock
2257 #: ../src/guestfs.pod:979
2258 msgid ""
2259 "L</guestfs_add_domain> provides some help for getting the correct attach "
2260 "method.  If you pass the C<live> option to this function, then (if the "
2261 "virtual machine is running) it will examine the libvirt XML looking for a "
2262 "virtio-serial channel to connect to:"
2263 msgstr ""
2264
2265 #. type: verbatim
2266 #: ../src/guestfs.pod:985
2267 #, no-wrap
2268 msgid ""
2269 " <domain>\n"
2270 "   ...\n"
2271 "   <devices>\n"
2272 "     ...\n"
2273 "     <channel type='unix'>\n"
2274 "       <source mode='bind' path='/path/to/socket'/>\n"
2275 "       <target type='virtio' name='org.libguestfs.channel.0'/>\n"
2276 "     </channel>\n"
2277 "     ...\n"
2278 "   </devices>\n"
2279 " </domain>\n"
2280 "\n"
2281 msgstr ""
2282
2283 #. type: textblock
2284 #: ../src/guestfs.pod:997
2285 msgid ""
2286 "L</guestfs_add_domain> extracts C</path/to/socket> and sets the attach "
2287 "method to C<unix:/path/to/socket>."
2288 msgstr ""
2289
2290 #. type: textblock
2291 #: ../src/guestfs.pod:1000
2292 msgid ""
2293 "Some of the libguestfs tools (including guestfish) support a I<--live> "
2294 "option which is passed through to L</guestfs_add_domain> thus allowing you "
2295 "to attach to and modify live virtual machines."
2296 msgstr ""
2297
2298 #. type: textblock
2299 #: ../src/guestfs.pod:1004
2300 msgid ""
2301 "The virtual machine needs to have been set up beforehand so that it has the "
2302 "virtio-serial channel and so that guestfsd is running inside it."
2303 msgstr ""
2304
2305 # type: =head2
2306 #. type: =head2
2307 #: ../src/guestfs.pod:1008
2308 msgid "ABI GUARANTEE"
2309 msgstr ""
2310
2311 # type: textblock
2312 #. type: textblock
2313 #: ../src/guestfs.pod:1010
2314 msgid ""
2315 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
2316 "actions as outlined in this section.  Although we will deprecate some "
2317 "actions, for example if they get replaced by newer calls, we will keep the "
2318 "old actions forever.  This allows you the developer to program in confidence "
2319 "against the libguestfs API."
2320 msgstr ""
2321
2322 # type: =head1
2323 #. type: =head2
2324 #: ../src/guestfs.pod:1016
2325 msgid "BLOCK DEVICE NAMING"
2326 msgstr ""
2327
2328 # type: textblock
2329 #. type: textblock
2330 #: ../src/guestfs.pod:1018
2331 msgid ""
2332 "In the kernel there is now quite a profusion of schemata for naming block "
2333 "devices (in this context, by I<block device> I mean a physical or virtual "
2334 "hard drive).  The original Linux IDE driver used names starting with C</dev/"
2335 "hd*>.  SCSI devices have historically used a different naming scheme, C</dev/"
2336 "sd*>.  When the Linux kernel I<libata> driver became a popular replacement "
2337 "for the old IDE driver (particularly for SATA devices) those devices also "
2338 "used the C</dev/sd*> scheme.  Additionally we now have virtual machines with "
2339 "paravirtualized drivers.  This has created several different naming systems, "
2340 "such as C</dev/vd*> for virtio disks and C</dev/xvd*> for Xen PV disks."
2341 msgstr ""
2342
2343 # type: textblock
2344 #. type: textblock
2345 #: ../src/guestfs.pod:1030
2346 msgid ""
2347 "As discussed above, libguestfs uses a qemu appliance running an embedded "
2348 "Linux kernel to access block devices.  We can run a variety of appliances "
2349 "based on a variety of Linux kernels."
2350 msgstr ""
2351
2352 # type: textblock
2353 #. type: textblock
2354 #: ../src/guestfs.pod:1034
2355 msgid ""
2356 "This causes a problem for libguestfs because many API calls use device or "
2357 "partition names.  Working scripts and the recipe (example) scripts that we "
2358 "make available over the internet could fail if the naming scheme changes."
2359 msgstr ""
2360
2361 # type: textblock
2362 #. type: textblock
2363 #: ../src/guestfs.pod:1039
2364 msgid ""
2365 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
2366 "Internally C</dev/sd*> names are translated, if necessary, to other names as "
2367 "required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
2368 "device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2369 msgstr ""
2370
2371 # type: textblock
2372 #. type: textblock
2373 #: ../src/guestfs.pod:1045
2374 msgid ""
2375 "Note that this I<only> applies to parameters.  The L</guestfs_list_devices>, "
2376 "L</guestfs_list_partitions> and similar calls return the true names of the "
2377 "devices and partitions as known to the appliance."
2378 msgstr ""
2379
2380 # type: =head2
2381 #. type: =head3
2382 #: ../src/guestfs.pod:1050
2383 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2384 msgstr ""
2385
2386 # type: textblock
2387 #. type: textblock
2388 #: ../src/guestfs.pod:1052
2389 msgid ""
2390 "Usually this translation is transparent.  However in some (very rare)  cases "
2391 "you may need to know the exact algorithm.  Such cases include where you use "
2392 "L</guestfs_config> to add a mixture of virtio and IDE devices to the qemu-"
2393 "based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> devices."
2394 msgstr ""
2395
2396 # type: textblock
2397 #. type: textblock
2398 #: ../src/guestfs.pod:1058
2399 msgid ""
2400 "The algorithm is applied only to I<parameters> which are known to be either "
2401 "device or partition names.  Return values from functions such as L</"
2402 "guestfs_list_devices> are never changed."
2403 msgstr ""
2404
2405 # type: textblock
2406 #. type: textblock
2407 #: ../src/guestfs.pod:1066
2408 msgid "Is the string a parameter which is a device or partition name?"
2409 msgstr ""
2410
2411 # type: textblock
2412 #. type: textblock
2413 #: ../src/guestfs.pod:1070
2414 msgid "Does the string begin with C</dev/sd>?"
2415 msgstr ""
2416
2417 # type: textblock
2418 #. type: textblock
2419 #: ../src/guestfs.pod:1074
2420 msgid ""
2421 "Does the named device exist? If so, we use that device.  However if I<not> "
2422 "then we continue with this algorithm."
2423 msgstr ""
2424
2425 # type: textblock
2426 #. type: textblock
2427 #: ../src/guestfs.pod:1079
2428 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2429 msgstr ""
2430
2431 # type: textblock
2432 #. type: textblock
2433 #: ../src/guestfs.pod:1081
2434 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2435 msgstr ""
2436
2437 # type: textblock
2438 #. type: textblock
2439 #: ../src/guestfs.pod:1083
2440 msgid "If that named device exists, use it.  If not, continue."
2441 msgstr ""
2442
2443 # type: textblock
2444 #. type: textblock
2445 #: ../src/guestfs.pod:1087
2446 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2447 msgstr ""
2448
2449 # type: textblock
2450 #. type: textblock
2451 #: ../src/guestfs.pod:1089
2452 msgid "If that named device exists, use it.  If not, return an error."
2453 msgstr ""
2454
2455 # type: =head3
2456 #. type: =head3
2457 #: ../src/guestfs.pod:1093
2458 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2459 msgstr ""
2460
2461 # type: textblock
2462 #. type: textblock
2463 #: ../src/guestfs.pod:1095
2464 msgid ""
2465 "Although the standard naming scheme and automatic translation is useful for "
2466 "simple programs and guestfish scripts, for larger programs it is best not to "
2467 "rely on this mechanism."
2468 msgstr ""
2469
2470 # type: textblock
2471 #. type: textblock
2472 #: ../src/guestfs.pod:1099
2473 msgid ""
2474 "Where possible for maximum future portability programs using libguestfs "
2475 "should use these future-proof techniques:"
2476 msgstr ""
2477
2478 # type: textblock
2479 #. type: textblock
2480 #: ../src/guestfs.pod:1106
2481 msgid ""
2482 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2483 "device names, and then use those names directly."
2484 msgstr ""
2485
2486 # type: textblock
2487 #. type: textblock
2488 #: ../src/guestfs.pod:1109
2489 msgid ""
2490 "Since those device names exist by definition, they will never be translated."
2491 msgstr ""
2492
2493 # type: textblock
2494 #. type: textblock
2495 #: ../src/guestfs.pod:1114
2496 msgid ""
2497 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2498 "filesystem labels."
2499 msgstr ""
2500
2501 # type: =head1
2502 #. type: =head1
2503 #: ../src/guestfs.pod:1119
2504 msgid "SECURITY"
2505 msgstr ""
2506
2507 # type: textblock
2508 #. type: textblock
2509 #: ../src/guestfs.pod:1121
2510 msgid ""
2511 "This section discusses security implications of using libguestfs, "
2512 "particularly with untrusted or malicious guests or disk images."
2513 msgstr ""
2514
2515 # type: =head2
2516 #. type: =head2
2517 #: ../src/guestfs.pod:1124
2518 msgid "GENERAL SECURITY CONSIDERATIONS"
2519 msgstr ""
2520
2521 # type: textblock
2522 #. type: textblock
2523 #: ../src/guestfs.pod:1126
2524 msgid ""
2525 "Be careful with any files or data that you download from a guest (by "
2526 "\"download\" we mean not just the L</guestfs_download> command but any "
2527 "command that reads files, filenames, directories or anything else from a "
2528 "disk image).  An attacker could manipulate the data to fool your program "
2529 "into doing the wrong thing.  Consider cases such as:"
2530 msgstr ""
2531
2532 # type: textblock
2533 #. type: textblock
2534 #: ../src/guestfs.pod:1136
2535 msgid "the data (file etc) not being present"
2536 msgstr ""
2537
2538 # type: textblock
2539 #. type: textblock
2540 #: ../src/guestfs.pod:1140
2541 msgid "being present but empty"
2542 msgstr ""
2543
2544 # type: textblock
2545 #. type: textblock
2546 #: ../src/guestfs.pod:1144
2547 msgid "being much larger than normal"
2548 msgstr ""
2549
2550 # type: textblock
2551 #. type: textblock
2552 #: ../src/guestfs.pod:1148
2553 msgid "containing arbitrary 8 bit data"
2554 msgstr ""
2555
2556 # type: textblock
2557 #. type: textblock
2558 #: ../src/guestfs.pod:1152
2559 msgid "being in an unexpected character encoding"
2560 msgstr ""
2561
2562 # type: textblock
2563 #. type: textblock
2564 #: ../src/guestfs.pod:1156
2565 msgid "containing homoglyphs."
2566 msgstr ""
2567
2568 # type: =head2
2569 #. type: =head2
2570 #: ../src/guestfs.pod:1160
2571 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2572 msgstr ""
2573
2574 # type: textblock
2575 #. type: textblock
2576 #: ../src/guestfs.pod:1162
2577 msgid ""
2578 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2579 "(VFS) module can sometimes be escalated into exploits by deliberately "
2580 "creating a malicious, malformed filesystem.  These exploits are very severe "
2581 "for two reasons.  Firstly there are very many filesystem drivers in the "
2582 "kernel, and many of them are infrequently used and not much developer "
2583 "attention has been paid to the code.  Linux userspace helps potential "
2584 "crackers by detecting the filesystem type and automatically choosing the "
2585 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2586 "the administrator.  Secondly, a kernel-level exploit is like a local root "
2587 "exploit (worse in some ways), giving immediate and total access to the "
2588 "system right down to the hardware level."
2589 msgstr ""
2590
2591 # type: textblock
2592 #. type: textblock
2593 #: ../src/guestfs.pod:1175
2594 msgid ""
2595 "That explains why you should never mount a filesystem from an untrusted "
2596 "guest on your host kernel.  How about libguestfs? We run a Linux kernel "
2597 "inside a qemu virtual machine, usually running as a non-root user.  The "
2598 "attacker would need to write a filesystem which first exploited the kernel, "
2599 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2600 "the libguestfs protocol, and finally to be as serious as the host kernel "
2601 "exploit it would need to escalate its privileges to root.  This multi-step "
2602 "escalation, performed by a static piece of data, is thought to be extremely "
2603 "hard to do, although we never say 'never' about security issues."
2604 msgstr ""
2605
2606 # type: textblock
2607 #. type: textblock
2608 #: ../src/guestfs.pod:1186
2609 msgid ""
2610 "In any case callers can reduce the attack surface by forcing the filesystem "
2611 "type when mounting (use L</guestfs_mount_vfs>)."
2612 msgstr ""
2613
2614 # type: =head2
2615 #. type: =head2
2616 #: ../src/guestfs.pod:1189
2617 msgid "PROTOCOL SECURITY"
2618 msgstr ""
2619
2620 # type: textblock
2621 #. type: textblock
2622 #: ../src/guestfs.pod:1191
2623 msgid ""
2624 "The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a "
2625 "defined upper message size.  However a program that uses libguestfs must "
2626 "also take care - for example you can write a program that downloads a binary "
2627 "from a disk image and executes it locally, and no amount of protocol "
2628 "security will save you from the consequences."
2629 msgstr ""
2630
2631 # type: =head2
2632 #. type: =head2
2633 #: ../src/guestfs.pod:1197
2634 msgid "INSPECTION SECURITY"
2635 msgstr ""
2636
2637 # type: textblock
2638 #. type: textblock
2639 #: ../src/guestfs.pod:1199
2640 msgid ""
2641 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2642 "directly from the guest, and these could contain any 8 bit data.  Callers "
2643 "should be careful to escape these before printing them to a structured file "
2644 "(for example, use HTML escaping if creating a web page)."
2645 msgstr ""
2646
2647 # type: textblock
2648 #. type: textblock
2649 #: ../src/guestfs.pod:1205
2650 msgid ""
2651 "Guest configuration may be altered in unusual ways by the administrator of "
2652 "the virtual machine, and may not reflect reality (particularly for untrusted "
2653 "or actively malicious guests).  For example we parse the hostname from "
2654 "configuration files like C</etc/sysconfig/network> that we find in the "
2655 "guest, but the guest administrator can easily manipulate these files to "
2656 "provide the wrong hostname."
2657 msgstr ""
2658
2659 # type: textblock
2660 #. type: textblock
2661 #: ../src/guestfs.pod:1213
2662 msgid ""
2663 "The inspection API parses guest configuration using two external libraries: "
2664 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
2665 "designed to be robust in the face of malicious data, although denial of "
2666 "service attacks are still possible, for example with oversized configuration "
2667 "files."
2668 msgstr ""
2669
2670 # type: =head2
2671 #. type: =head2
2672 #: ../src/guestfs.pod:1219
2673 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2674 msgstr ""
2675
2676 # type: textblock
2677 #. type: textblock
2678 #: ../src/guestfs.pod:1221
2679 msgid ""
2680 "Be very cautious about running commands from the guest.  By running a "
2681 "command in the guest, you are giving CPU time to a binary that you do not "
2682 "control, under the same user account as the library, albeit wrapped in qemu "
2683 "virtualization.  More information and alternatives can be found in the "
2684 "section L</RUNNING COMMANDS>."
2685 msgstr ""
2686
2687 # type: =head2
2688 #. type: =head2
2689 #: ../src/guestfs.pod:1227
2690 msgid "CVE-2010-3851"
2691 msgstr ""
2692
2693 # type: textblock
2694 #. type: textblock
2695 #: ../src/guestfs.pod:1229
2696 msgid "https://bugzilla.redhat.com/642934"
2697 msgstr ""
2698
2699 # type: textblock
2700 #. type: textblock
2701 #: ../src/guestfs.pod:1231
2702 msgid ""
2703 "This security bug concerns the automatic disk format detection that qemu "
2704 "does on disk images."
2705 msgstr ""
2706
2707 # type: textblock
2708 #. type: textblock
2709 #: ../src/guestfs.pod:1234
2710 msgid ""
2711 "A raw disk image is just the raw bytes, there is no header.  Other disk "
2712 "images like qcow2 contain a special header.  Qemu deals with this by looking "
2713 "for one of the known headers, and if none is found then assuming the disk "
2714 "image must be raw."
2715 msgstr ""
2716
2717 # type: textblock
2718 #. type: textblock
2719 #: ../src/guestfs.pod:1239
2720 msgid ""
2721 "This allows a guest which has been given a raw disk image to write some "
2722 "other header.  At next boot (or when the disk image is accessed by "
2723 "libguestfs) qemu would do autodetection and think the disk image format was, "
2724 "say, qcow2 based on the header written by the guest."
2725 msgstr ""
2726
2727 # type: textblock
2728 #. type: textblock
2729 #: ../src/guestfs.pod:1244
2730 msgid ""
2731 "This in itself would not be a problem, but qcow2 offers many features, one "
2732 "of which is to allow a disk image to refer to another image (called the "
2733 "\"backing disk\").  It does this by placing the path to the backing disk "
2734 "into the qcow2 header.  This path is not validated and could point to any "
2735 "host file (eg. \"/etc/passwd\").  The backing disk is then exposed through "
2736 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2737 "control of the attacker."
2738 msgstr ""
2739
2740 # type: textblock
2741 #. type: textblock
2742 #: ../src/guestfs.pod:1252
2743 msgid ""
2744 "In libguestfs this is rather hard to exploit except under two circumstances:"
2745 msgstr ""
2746
2747 # type: textblock
2748 #. type: textblock
2749 #: ../src/guestfs.pod:1259
2750 msgid "You have enabled the network or have opened the disk in write mode."
2751 msgstr ""
2752
2753 # type: textblock
2754 #. type: textblock
2755 #: ../src/guestfs.pod:1263
2756 msgid ""
2757 "You are also running untrusted code from the guest (see L</RUNNING "
2758 "COMMANDS>)."
2759 msgstr ""
2760
2761 # type: textblock
2762 #. type: textblock
2763 #: ../src/guestfs.pod:1268
2764 msgid ""
2765 "The way to avoid this is to specify the expected disk format when adding "
2766 "disks (the optional C<format> option to L</guestfs_add_drive_opts>).  You "
2767 "should always do this if the disk is raw format, and it's a good idea for "
2768 "other cases too."
2769 msgstr ""
2770
2771 # type: textblock
2772 #. type: textblock
2773 #: ../src/guestfs.pod:1273
2774 msgid ""
2775 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2776 "format is fetched from libvirt and passed through."
2777 msgstr ""
2778
2779 # type: textblock
2780 #. type: textblock
2781 #: ../src/guestfs.pod:1276
2782 msgid ""
2783 "For libguestfs tools, use the I<--format> command line parameter as "
2784 "appropriate."
2785 msgstr ""
2786
2787 # type: =head1
2788 #. type: =head1
2789 #: ../src/guestfs.pod:1279
2790 msgid "CONNECTION MANAGEMENT"
2791 msgstr ""
2792
2793 # type: =head2
2794 #. type: =head2
2795 #: ../src/guestfs.pod:1281
2796 msgid "guestfs_h *"
2797 msgstr ""
2798
2799 # type: textblock
2800 #. type: textblock
2801 #: ../src/guestfs.pod:1283
2802 msgid ""
2803 "C<guestfs_h> is the opaque type representing a connection handle.  Create a "
2804 "handle by calling L</guestfs_create>.  Call L</guestfs_close> to free the "
2805 "handle and release all resources used."
2806 msgstr ""
2807
2808 #. type: textblock
2809 #: ../src/guestfs.pod:1287
2810 msgid ""
2811 "For information on using multiple handles and threads, see the section L</"
2812 "MULTIPLE HANDLES AND MULTIPLE THREADS> above."
2813 msgstr ""
2814
2815 # type: =head2
2816 #. type: =head2
2817 #: ../src/guestfs.pod:1290
2818 msgid "guestfs_create"
2819 msgstr ""
2820
2821 # type: verbatim
2822 #. type: verbatim
2823 #: ../src/guestfs.pod:1292
2824 #, no-wrap
2825 msgid ""
2826 " guestfs_h *guestfs_create (void);\n"
2827 "\n"
2828 msgstr ""
2829
2830 # type: textblock
2831 #. type: textblock
2832 #: ../src/guestfs.pod:1294
2833 msgid "Create a connection handle."
2834 msgstr ""
2835
2836 #. type: textblock
2837 #: ../src/guestfs.pod:1296
2838 msgid ""
2839 "On success this returns a non-NULL pointer to a handle.  On error it returns "
2840 "NULL."
2841 msgstr ""
2842
2843 #. type: textblock
2844 #: ../src/guestfs.pod:1299
2845 msgid ""
2846 "You have to \"configure\" the handle after creating it.  This includes "
2847 "calling L</guestfs_add_drive_opts> (or one of the equivalent calls) on the "
2848 "handle at least once."
2849 msgstr ""
2850
2851 # type: textblock
2852 #. type: textblock
2853 #: ../src/guestfs.pod:1303
2854 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2855 msgstr ""
2856
2857 #. type: textblock
2858 #: ../src/guestfs.pod:1305
2859 msgid ""
2860 "You may also want to configure error handling for the handle.  See the L</"
2861 "ERROR HANDLING> section below."
2862 msgstr ""
2863
2864 # type: =head2
2865 #. type: =head2
2866 #: ../src/guestfs.pod:1308
2867 msgid "guestfs_close"
2868 msgstr ""
2869
2870 # type: verbatim
2871 #. type: verbatim
2872 #: ../src/guestfs.pod:1310
2873 #, no-wrap
2874 msgid ""
2875 " void guestfs_close (guestfs_h *g);\n"
2876 "\n"
2877 msgstr ""
2878
2879 # type: textblock
2880 #. type: textblock
2881 #: ../src/guestfs.pod:1312
2882 msgid "This closes the connection handle and frees up all resources used."
2883 msgstr ""
2884
2885 #. type: textblock
2886 #: ../src/guestfs.pod:1314
2887 msgid ""
2888 "If autosync was set on the handle and the handle was launched, then this "
2889 "implicitly calls various functions to unmount filesystems and sync the "
2890 "disk.  See L</guestfs_set_autosync> for more details."
2891 msgstr ""
2892
2893 #. type: textblock
2894 #: ../src/guestfs.pod:1318
2895 msgid "If a close callback was set on the handle, then it is called."
2896 msgstr ""
2897
2898 # type: =head1
2899 #. type: =head1
2900 #: ../src/guestfs.pod:1320
2901 msgid "ERROR HANDLING"
2902 msgstr ""
2903
2904 # type: textblock
2905 #. type: textblock
2906 #: ../src/guestfs.pod:1322
2907 msgid ""
2908 "API functions can return errors.  For example, almost all functions that "
2909 "return C<int> will return C<-1> to indicate an error."
2910 msgstr ""
2911
2912 # type: textblock
2913 #. type: textblock
2914 #: ../src/guestfs.pod:1325
2915 msgid ""
2916 "Additional information is available for errors: an error message string and "
2917 "optionally an error number (errno) if the thing that failed was a system "
2918 "call."
2919 msgstr ""
2920
2921 # type: textblock
2922 #. type: textblock
2923 #: ../src/guestfs.pod:1329
2924 msgid ""
2925 "You can get at the additional information about the last error on the handle "
2926 "by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
2927 "up an error handler with L</guestfs_set_error_handler>."
2928 msgstr ""
2929
2930 # type: textblock
2931 #. type: textblock
2932 #: ../src/guestfs.pod:1334
2933 msgid ""
2934 "When the handle is created, a default error handler is installed which "
2935 "prints the error message string to C<stderr>.  For small short-running "
2936 "command line programs it is sufficient to do:"
2937 msgstr ""
2938
2939 # type: verbatim
2940 #. type: verbatim
2941 #: ../src/guestfs.pod:1338
2942 #, no-wrap
2943 msgid ""
2944 " if (guestfs_launch (g) == -1)\n"
2945 "   exit (EXIT_FAILURE);\n"
2946 "\n"
2947 msgstr ""
2948
2949 # type: textblock
2950 #. type: textblock
2951 #: ../src/guestfs.pod:1341
2952 msgid ""
2953 "since the default error handler will ensure that an error message has been "
2954 "printed to C<stderr> before the program exits."
2955 msgstr ""
2956
2957 # type: textblock
2958 #. type: textblock
2959 #: ../src/guestfs.pod:1344
2960 msgid ""
2961 "For other programs the caller will almost certainly want to install an "
2962 "alternate error handler or do error handling in-line like this:"
2963 msgstr ""
2964
2965 # type: verbatim
2966 #. type: verbatim
2967 #: ../src/guestfs.pod:1347
2968 #, no-wrap
2969 msgid ""
2970 " g = guestfs_create ();\n"
2971 " \n"
2972 msgstr ""
2973
2974 # type: verbatim
2975 #. type: verbatim
2976 #: ../src/guestfs.pod:1349
2977 #, no-wrap
2978 msgid ""
2979 " /* This disables the default behaviour of printing errors\n"
2980 "    on stderr. */\n"
2981 " guestfs_set_error_handler (g, NULL, NULL);\n"
2982 " \n"
2983 msgstr ""
2984
2985 # type: verbatim
2986 #. type: verbatim
2987 #: ../src/guestfs.pod:1353
2988 #, no-wrap
2989 msgid ""
2990 " if (guestfs_launch (g) == -1) {\n"
2991 "   /* Examine the error message and print it etc. */\n"
2992 "   char *msg = guestfs_last_error (g);\n"
2993 "   int errnum = guestfs_last_errno (g);\n"
2994 "   fprintf (stderr, \"%s\\n\", msg);\n"
2995 "   /* ... */\n"
2996 "  }\n"
2997 "\n"
2998 msgstr ""
2999
3000 # type: textblock
3001 #. type: textblock
3002 #: ../src/guestfs.pod:1361
3003 msgid ""
3004 "Out of memory errors are handled differently.  The default action is to call "
3005 "L<abort(3)>.  If this is undesirable, then you can set a handler using L</"
3006 "guestfs_set_out_of_memory_handler>."
3007 msgstr ""
3008
3009 # type: textblock
3010 #. type: textblock
3011 #: ../src/guestfs.pod:1365
3012 msgid ""
3013 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
3014 "because there is no handle if this happens there is no way to get additional "
3015 "error information.  However L</guestfs_create> is supposed to be a "
3016 "lightweight operation which can only fail because of insufficient memory (it "
3017 "returns NULL in this case)."
3018 msgstr ""
3019
3020 # type: =head2
3021 #. type: =head2
3022 #: ../src/guestfs.pod:1371
3023 msgid "guestfs_last_error"
3024 msgstr ""
3025
3026 # type: verbatim
3027 #. type: verbatim
3028 #: ../src/guestfs.pod:1373
3029 #, no-wrap
3030 msgid ""
3031 " const char *guestfs_last_error (guestfs_h *g);\n"
3032 "\n"
3033 msgstr ""
3034
3035 # type: textblock
3036 #. type: textblock
3037 #: ../src/guestfs.pod:1375
3038 msgid ""
3039 "This returns the last error message that happened on C<g>.  If there has not "
3040 "been an error since the handle was created, then this returns C<NULL>."
3041 msgstr ""
3042
3043 # type: textblock
3044 #. type: textblock
3045 #: ../src/guestfs.pod:1379
3046 msgid ""
3047 "The lifetime of the returned string is until the next error occurs, or L</"
3048 "guestfs_close> is called."
3049 msgstr ""
3050
3051 # type: =head2
3052 #. type: =head2
3053 #: ../src/guestfs.pod:1382
3054 msgid "guestfs_last_errno"
3055 msgstr ""
3056
3057 # type: verbatim
3058 #. type: verbatim
3059 #: ../src/guestfs.pod:1384
3060 #, no-wrap
3061 msgid ""
3062 " int guestfs_last_errno (guestfs_h *g);\n"
3063 "\n"
3064 msgstr ""
3065
3066 # type: textblock
3067 #. type: textblock
3068 #: ../src/guestfs.pod:1386
3069 msgid "This returns the last error number (errno) that happened on C<g>."
3070 msgstr ""
3071
3072 # type: textblock
3073 #. type: textblock
3074 #: ../src/guestfs.pod:1388
3075 msgid "If successful, an errno integer not equal to zero is returned."
3076 msgstr ""
3077
3078 # type: textblock
3079 #. type: textblock
3080 #: ../src/guestfs.pod:1390
3081 msgid ""
3082 "If no error, this returns 0.  This call can return 0 in three situations:"
3083 msgstr ""
3084
3085 # type: textblock
3086 #. type: textblock
3087 #: ../src/guestfs.pod:1397
3088 msgid "There has not been any error on the handle."
3089 msgstr ""
3090
3091 # type: textblock
3092 #. type: textblock
3093 #: ../src/guestfs.pod:1401
3094 msgid ""
3095 "There has been an error but the errno was meaningless.  This corresponds to "
3096 "the case where the error did not come from a failed system call, but for "
3097 "some other reason."
3098 msgstr ""
3099
3100 # type: textblock
3101 #. type: textblock
3102 #: ../src/guestfs.pod:1407
3103 msgid ""
3104 "There was an error from a failed system call, but for some reason the errno "
3105 "was not captured and returned.  This usually indicates a bug in libguestfs."
3106 msgstr ""
3107
3108 # type: textblock
3109 #. type: textblock
3110 #: ../src/guestfs.pod:1413
3111 msgid ""
3112 "Libguestfs tries to convert the errno from inside the applicance into a "
3113 "corresponding errno for the caller (not entirely trivial: the appliance "
3114 "might be running a completely different operating system from the library "
3115 "and error numbers are not standardized across Un*xen).  If this could not be "
3116 "done, then the error is translated to C<EINVAL>.  In practice this should "
3117 "only happen in very rare circumstances."
3118 msgstr ""
3119
3120 # type: =head2
3121 #. type: =head2
3122 #: ../src/guestfs.pod:1421
3123 msgid "guestfs_set_error_handler"
3124 msgstr ""
3125
3126 # type: verbatim
3127 #. type: verbatim
3128 #: ../src/guestfs.pod:1423
3129 #, no-wrap
3130 msgid ""
3131 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
3132 "                                           void *opaque,\n"
3133 "                                           const char *msg);\n"
3134 " void guestfs_set_error_handler (guestfs_h *g,\n"
3135 "                                 guestfs_error_handler_cb cb,\n"
3136 "                                 void *opaque);\n"
3137 "\n"
3138 msgstr ""
3139
3140 # type: textblock
3141 #. type: textblock
3142 #: ../src/guestfs.pod:1430
3143 msgid ""
3144 "The callback C<cb> will be called if there is an error.  The parameters "
3145 "passed to the callback are an opaque data pointer and the error message "
3146 "string."
3147 msgstr ""
3148
3149 # type: textblock
3150 #. type: textblock
3151 #: ../src/guestfs.pod:1434
3152 msgid ""
3153 "C<errno> is not passed to the callback.  To get that the callback must call "
3154 "L</guestfs_last_errno>."
3155 msgstr ""
3156
3157 # type: textblock
3158 #. type: textblock
3159 #: ../src/guestfs.pod:1437
3160 msgid ""
3161 "Note that the message string C<msg> is freed as soon as the callback "
3162 "function returns, so if you want to stash it somewhere you must make your "
3163 "own copy."
3164 msgstr ""
3165
3166 # type: textblock
3167 #. type: textblock
3168 #: ../src/guestfs.pod:1441
3169 msgid "The default handler prints messages on C<stderr>."
3170 msgstr ""
3171
3172 # type: textblock
3173 #. type: textblock
3174 #: ../src/guestfs.pod:1443
3175 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
3176 msgstr ""
3177
3178 # type: =head2
3179 #. type: =head2
3180 #: ../src/guestfs.pod:1445
3181 msgid "guestfs_get_error_handler"
3182 msgstr ""
3183
3184 # type: verbatim
3185 #. type: verbatim
3186 #: ../src/guestfs.pod:1447
3187 #, no-wrap
3188 msgid ""
3189 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
3190 "                                                     void **opaque_rtn);\n"
3191 "\n"
3192 msgstr ""
3193
3194 # type: textblock
3195 #. type: textblock
3196 #: ../src/guestfs.pod:1450
3197 msgid "Returns the current error handler callback."
3198 msgstr ""
3199
3200 # type: =head2
3201 #. type: =head2
3202 #: ../src/guestfs.pod:1452
3203 msgid "guestfs_set_out_of_memory_handler"
3204 msgstr ""
3205
3206 #. type: verbatim
3207 #: ../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:1008
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:1852 ../fish/guestfish-actions.pod:9
3661 #: ../fish/guestfish-actions.pod:1257 ../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:5827
5571 #: ../fish/guestfish-actions.pod:3921
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:1015
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:1041
6071 msgid "LIBGUESTFS_APPEND"
6072 msgstr ""
6073
6074 # type: textblock
6075 #. type: textblock
6076 #: ../src/guestfs.pod:2872 ../fish/guestfish.pod:1043
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:1045
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:1050
6097 msgid "LIBGUESTFS_MEMSIZE"
6098 msgstr ""
6099
6100 # type: textblock
6101 #. type: textblock
6102 #: ../src/guestfs.pod:2881 ../fish/guestfish.pod:1052
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:1055
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:1057
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:1062
6132 msgid "LIBGUESTFS_QEMU"
6133 msgstr ""
6134
6135 # type: textblock
6136 #. type: textblock
6137 #: ../src/guestfs.pod:2893 ../fish/guestfish.pod:1064
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:1068
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:1077
6166 msgid "TMPDIR"
6167 msgstr ""
6168
6169 #. type: textblock
6170 #: ../src/guestfs.pod:2906 ../fish/guestfish.pod:1079
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:1082
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:1149
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:1172
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:1174
6293 #: ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:290
6294 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
6295 msgstr ""
6296
6297 # type: =head1
6298 #. type: =head1
6299 #: ../src/guestfs.pod:2991 ../fish/guestfish.pod:1176
6300 #: ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:292
6301 #: ../tools/virt-edit.pl:514 ../tools/virt-win-reg.pl:602
6302 #: ../tools/virt-list-filesystems.pl:206 ../tools/virt-tar.pl:305
6303 #: ../tools/virt-make-fs.pl:568 ../tools/virt-list-partitions.pl:273
6304 msgid "COPYRIGHT"
6305 msgstr ""
6306
6307 #. type: textblock
6308 #: ../src/guestfs.pod:2993 ../fish/guestfish.pod:1178
6309 #: ../test-tool/libguestfs-test-tool.pod:99
6310 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
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:416 ../src/guestfs-actions.pod:436
6396 #: ../src/guestfs-actions.pod:450 ../src/guestfs-actions.pod:495
6397 #: ../src/guestfs-actions.pod:523 ../src/guestfs-actions.pod:541
6398 #: ../src/guestfs-actions.pod:608 ../src/guestfs-actions.pod:641
6399 #: ../src/guestfs-actions.pod:655 ../src/guestfs-actions.pod:670
6400 #: ../src/guestfs-actions.pod:769 ../src/guestfs-actions.pod:787
6401 #: ../src/guestfs-actions.pod:801 ../src/guestfs-actions.pod:815
6402 #: ../src/guestfs-actions.pod:976 ../src/guestfs-actions.pod:996
6403 #: ../src/guestfs-actions.pod:1014 ../src/guestfs-actions.pod:1098
6404 #: ../src/guestfs-actions.pod:1116 ../src/guestfs-actions.pod:1135
6405 #: ../src/guestfs-actions.pod:1149 ../src/guestfs-actions.pod:1169
6406 #: ../src/guestfs-actions.pod:1239 ../src/guestfs-actions.pod:1270
6407 #: ../src/guestfs-actions.pod:1295 ../src/guestfs-actions.pod:1337
6408 #: ../src/guestfs-actions.pod:1443 ../src/guestfs-actions.pod:1477
6409 #: ../src/guestfs-actions.pod:1692 ../src/guestfs-actions.pod:1714
6410 #: ../src/guestfs-actions.pod:1801 ../src/guestfs-actions.pod:2263
6411 #: ../src/guestfs-actions.pod:2407 ../src/guestfs-actions.pod:2468
6412 #: ../src/guestfs-actions.pod:2503 ../src/guestfs-actions.pod:3456
6413 #: ../src/guestfs-actions.pod:3471 ../src/guestfs-actions.pod:3496
6414 #: ../src/guestfs-actions.pod:3651 ../src/guestfs-actions.pod:3665
6415 #: ../src/guestfs-actions.pod:3678 ../src/guestfs-actions.pod:3692
6416 #: ../src/guestfs-actions.pod:3707 ../src/guestfs-actions.pod:3743
6417 #: ../src/guestfs-actions.pod:3815 ../src/guestfs-actions.pod:3835
6418 #: ../src/guestfs-actions.pod:3852 ../src/guestfs-actions.pod:3875
6419 #: ../src/guestfs-actions.pod:3898 ../src/guestfs-actions.pod:3930
6420 #: ../src/guestfs-actions.pod:3949 ../src/guestfs-actions.pod:3968
6421 #: ../src/guestfs-actions.pod:4003 ../src/guestfs-actions.pod:4015
6422 #: ../src/guestfs-actions.pod:4051 ../src/guestfs-actions.pod:4067
6423 #: ../src/guestfs-actions.pod:4080 ../src/guestfs-actions.pod:4095
6424 #: ../src/guestfs-actions.pod:4112 ../src/guestfs-actions.pod:4205
6425 #: ../src/guestfs-actions.pod:4225 ../src/guestfs-actions.pod:4238
6426 #: ../src/guestfs-actions.pod:4289 ../src/guestfs-actions.pod:4307
6427 #: ../src/guestfs-actions.pod:4325 ../src/guestfs-actions.pod:4341
6428 #: ../src/guestfs-actions.pod:4355 ../src/guestfs-actions.pod:4369
6429 #: ../src/guestfs-actions.pod:4386 ../src/guestfs-actions.pod:4401
6430 #: ../src/guestfs-actions.pod:4421 ../src/guestfs-actions.pod:4479
6431 #: ../src/guestfs-actions.pod:4552 ../src/guestfs-actions.pod:4583
6432 #: ../src/guestfs-actions.pod:4602 ../src/guestfs-actions.pod:4621
6433 #: ../src/guestfs-actions.pod:4633 ../src/guestfs-actions.pod:4650
6434 #: ../src/guestfs-actions.pod:4663 ../src/guestfs-actions.pod:4678
6435 #: ../src/guestfs-actions.pod:4693 ../src/guestfs-actions.pod:4728
6436 #: ../src/guestfs-actions.pod:4750 ../src/guestfs-actions.pod:4770
6437 #: ../src/guestfs-actions.pod:4784 ../src/guestfs-actions.pod:4801
6438 #: ../src/guestfs-actions.pod:4850 ../src/guestfs-actions.pod:4896
6439 #: ../src/guestfs-actions.pod:4910 ../src/guestfs-actions.pod:4938
6440 #: ../src/guestfs-actions.pod:4955 ../src/guestfs-actions.pod:4973
6441 #: ../src/guestfs-actions.pod:5107 ../src/guestfs-actions.pod:5164
6442 #: ../src/guestfs-actions.pod:5186 ../src/guestfs-actions.pod:5204
6443 #: ../src/guestfs-actions.pod:5236 ../src/guestfs-actions.pod:5302
6444 #: ../src/guestfs-actions.pod:5319 ../src/guestfs-actions.pod:5332
6445 #: ../src/guestfs-actions.pod:5346 ../src/guestfs-actions.pod:5635
6446 #: ../src/guestfs-actions.pod:5654 ../src/guestfs-actions.pod:5673
6447 #: ../src/guestfs-actions.pod:5685 ../src/guestfs-actions.pod:5697
6448 #: ../src/guestfs-actions.pod:5711 ../src/guestfs-actions.pod:5723
6449 #: ../src/guestfs-actions.pod:5737 ../src/guestfs-actions.pod:5753
6450 #: ../src/guestfs-actions.pod:5774 ../src/guestfs-actions.pod:5793
6451 #: ../src/guestfs-actions.pod:5812 ../src/guestfs-actions.pod:5842
6452 #: ../src/guestfs-actions.pod:5858 ../src/guestfs-actions.pod:5881
6453 #: ../src/guestfs-actions.pod:5899 ../src/guestfs-actions.pod:5918
6454 #: ../src/guestfs-actions.pod:5939 ../src/guestfs-actions.pod:5958
6455 #: ../src/guestfs-actions.pod:5975 ../src/guestfs-actions.pod:6003
6456 #: ../src/guestfs-actions.pod:6027 ../src/guestfs-actions.pod:6046
6457 #: ../src/guestfs-actions.pod:6070 ../src/guestfs-actions.pod:6089
6458 #: ../src/guestfs-actions.pod:6104 ../src/guestfs-actions.pod:6123
6459 #: ../src/guestfs-actions.pod:6160 ../src/guestfs-actions.pod:6190
6460 #: ../src/guestfs-actions.pod:6223 ../src/guestfs-actions.pod:6345
6461 #: ../src/guestfs-actions.pod:6466 ../src/guestfs-actions.pod:6478
6462 #: ../src/guestfs-actions.pod:6491 ../src/guestfs-actions.pod:6504
6463 #: ../src/guestfs-actions.pod:6526 ../src/guestfs-actions.pod:6539
6464 #: ../src/guestfs-actions.pod:6552 ../src/guestfs-actions.pod:6565
6465 #: ../src/guestfs-actions.pod:6580 ../src/guestfs-actions.pod:6639
6466 #: ../src/guestfs-actions.pod:6656 ../src/guestfs-actions.pod:6672
6467 #: ../src/guestfs-actions.pod:6688 ../src/guestfs-actions.pod:6705
6468 #: ../src/guestfs-actions.pod:6718 ../src/guestfs-actions.pod:6738
6469 #: ../src/guestfs-actions.pod:6774 ../src/guestfs-actions.pod:6788
6470 #: ../src/guestfs-actions.pod:6829 ../src/guestfs-actions.pod:6842
6471 #: ../src/guestfs-actions.pod:6860 ../src/guestfs-actions.pod:6894
6472 #: ../src/guestfs-actions.pod:6930 ../src/guestfs-actions.pod:7049
6473 #: ../src/guestfs-actions.pod:7067 ../src/guestfs-actions.pod:7081
6474 #: ../src/guestfs-actions.pod:7136 ../src/guestfs-actions.pod:7149
6475 #: ../src/guestfs-actions.pod:7194 ../src/guestfs-actions.pod:7227
6476 #: ../src/guestfs-actions.pod:7288 ../src/guestfs-actions.pod:7314
6477 #: ../src/guestfs-actions.pod:7380 ../src/guestfs-actions.pod:7399
6478 #: ../src/guestfs-actions.pod:7428
6479 msgid "This function returns 0 on success or -1 on error."
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:1448
6494 #: ../src/guestfs-actions.pod:1941 ../src/guestfs-actions.pod:1962
6495 #: ../src/guestfs-actions.pod:4426 ../src/guestfs-actions.pod:4733
6496 #: ../src/guestfs-actions.pod:6168 ../src/guestfs-actions.pod:6198
6497 #: ../src/guestfs-actions.pod:6231 ../src/guestfs-actions.pod:6290
6498 #: ../src/guestfs-actions.pod:7232 ../src/guestfs-actions.pod:7322
6499 #: ../src/guestfs-actions.pod:7491 ../fish/guestfish-actions.pod:31
6500 #: ../fish/guestfish-actions.pod:161 ../fish/guestfish-actions.pod:175
6501 #: ../fish/guestfish-actions.pod:956 ../fish/guestfish-actions.pod:1316
6502 #: ../fish/guestfish-actions.pod:1330 ../fish/guestfish-actions.pod:3005
6503 #: ../fish/guestfish-actions.pod:3202 ../fish/guestfish-actions.pod:4183
6504 #: ../fish/guestfish-actions.pod:4206 ../fish/guestfish-actions.pod:4228
6505 #: ../fish/guestfish-actions.pod:4266 ../fish/guestfish-actions.pod:4907
6506 #: ../fish/guestfish-actions.pod:5004
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:1100 ../src/guestfs-actions.pod:1913
6517 #: ../src/guestfs-actions.pod:2011 ../src/guestfs-actions.pod:2114
6518 #: ../src/guestfs-actions.pod:3458 ../src/guestfs-actions.pod:3478
6519 #: ../src/guestfs-actions.pod:4737 ../src/guestfs-actions.pod:5860
6520 #: ../src/guestfs-actions.pod:5977 ../src/guestfs-actions.pod:6091
6521 #: ../src/guestfs-actions.pod:6582 ../src/guestfs-actions.pod:6707
6522 #: ../src/guestfs-actions.pod:7236
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:4440
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:509 ../src/guestfs-actions.pod:687
6632 #: ../src/guestfs-actions.pod:718 ../src/guestfs-actions.pod:736
6633 #: ../src/guestfs-actions.pod:755 ../src/guestfs-actions.pod:1315
6634 #: ../src/guestfs-actions.pod:1671 ../src/guestfs-actions.pod:1874
6635 #: ../src/guestfs-actions.pod:1983 ../src/guestfs-actions.pod:2023
6636 #: ../src/guestfs-actions.pod:2078 ../src/guestfs-actions.pod:2101
6637 #: ../src/guestfs-actions.pod:2394 ../src/guestfs-actions.pod:2777
6638 #: ../src/guestfs-actions.pod:2798 ../src/guestfs-actions.pod:4873
6639 #: ../src/guestfs-actions.pod:5010 ../src/guestfs-actions.pod:5416
6640 #: ../src/guestfs-actions.pod:5442 ../src/guestfs-actions.pod:6815
6641 #: ../src/guestfs-actions.pod:7247 ../src/guestfs-actions.pod:7260
6642 #: ../src/guestfs-actions.pod:7273
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:4493 ../src/guestfs-actions.pod:4505
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:4451
6802 #: ../fish/guestfish-actions.pod:110 ../fish/guestfish-actions.pod:3016
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:2353
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:2103
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:418 ../src/guestfs-actions.pod:438
7065 #: ../src/guestfs-actions.pod:452 ../src/guestfs-actions.pod:483
7066 #: ../src/guestfs-actions.pod:497 ../src/guestfs-actions.pod:511
7067 #: ../src/guestfs-actions.pod:525 ../src/guestfs-actions.pod:543
7068 #: ../src/guestfs-actions.pod:5493
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:857
7185 #: ../src/guestfs-actions.pod:875 ../src/guestfs-actions.pod:935
7186 #: ../src/guestfs-actions.pod:951 ../src/guestfs-actions.pod:1054
7187 #: ../src/guestfs-actions.pod:1184 ../src/guestfs-actions.pod:1201
7188 #: ../src/guestfs-actions.pod:1220 ../src/guestfs-actions.pod:1354
7189 #: ../src/guestfs-actions.pod:1542 ../src/guestfs-actions.pod:1654
7190 #: ../src/guestfs-actions.pod:1817 ../src/guestfs-actions.pod:1834
7191 #: ../src/guestfs-actions.pod:1901 ../src/guestfs-actions.pod:1935
7192 #: ../src/guestfs-actions.pod:1956 ../src/guestfs-actions.pod:2126
7193 #: ../src/guestfs-actions.pod:2318 ../src/guestfs-actions.pod:2525
7194 #: ../src/guestfs-actions.pod:2618 ../src/guestfs-actions.pod:2729
7195 #: ../src/guestfs-actions.pod:2749 ../src/guestfs-actions.pod:2869
7196 #: ../src/guestfs-actions.pod:2900 ../src/guestfs-actions.pod:2924
7197 #: ../src/guestfs-actions.pod:2961 ../src/guestfs-actions.pod:3021
7198 #: ../src/guestfs-actions.pod:3044 ../src/guestfs-actions.pod:3065
7199 #: ../src/guestfs-actions.pod:3637 ../src/guestfs-actions.pod:3987
7200 #: ../src/guestfs-actions.pod:4157 ../src/guestfs-actions.pod:4267
7201 #: ../src/guestfs-actions.pod:5028 ../src/guestfs-actions.pod:5221
7202 #: ../src/guestfs-actions.pod:5391 ../src/guestfs-actions.pod:5569
7203 #: ../src/guestfs-actions.pod:5618 ../src/guestfs-actions.pod:6251
7204 #: ../src/guestfs-actions.pod:6267 ../src/guestfs-actions.pod:6284
7205 #: ../src/guestfs-actions.pod:6315 ../src/guestfs-actions.pod:6989
7206 #: ../src/guestfs-actions.pod:7008 ../src/guestfs-actions.pod:7026
7207 #: ../src/guestfs-actions.pod:7206 ../src/guestfs-actions.pod:7485
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 #. type: textblock
7295 #: ../src/guestfs-actions.pod:396 ../fish/guestfish-actions.pod:259
7296 msgid "Typecheck lenses (can be expensive)."
7297 msgstr ""
7298
7299 # type: =item
7300 #. type: =item
7301 #: ../src/guestfs-actions.pod:398 ../fish/guestfish-actions.pod:261
7302 msgid "C<AUG_NO_STDINC> = 8"
7303 msgstr ""
7304
7305 # type: textblock
7306 #. type: textblock
7307 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:263
7308 msgid "Do not use standard load path for modules."
7309 msgstr ""
7310
7311 # type: =item
7312 #. type: =item
7313 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:265
7314 msgid "C<AUG_SAVE_NOOP> = 16"
7315 msgstr ""
7316
7317 # type: textblock
7318 #. type: textblock
7319 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:267
7320 msgid "Make save a no-op, just record what would have been changed."
7321 msgstr ""
7322
7323 # type: =item
7324 #. type: =item
7325 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:269
7326 msgid "C<AUG_NO_LOAD> = 32"
7327 msgstr ""
7328
7329 # type: textblock
7330 #. type: textblock
7331 #: ../src/guestfs-actions.pod:408
7332 msgid "Do not load the tree in C<guestfs_aug_init>."
7333 msgstr ""
7334
7335 # type: textblock
7336 #. type: textblock
7337 #: ../src/guestfs-actions.pod:412
7338 msgid "To close the handle, you can call C<guestfs_aug_close>."
7339 msgstr ""
7340
7341 # type: textblock
7342 #. type: textblock
7343 #: ../src/guestfs-actions.pod:414 ../fish/guestfish-actions.pod:277
7344 msgid "To find out more about Augeas, see L<http://augeas.net/>."
7345 msgstr ""
7346
7347 # type: =head2
7348 #. type: =head2
7349 #: ../src/guestfs-actions.pod:420
7350 msgid "guestfs_aug_insert"
7351 msgstr ""
7352
7353 # type: verbatim
7354 #. type: verbatim
7355 #: ../src/guestfs-actions.pod:422
7356 #, no-wrap
7357 msgid ""
7358 " int\n"
7359 " guestfs_aug_insert (guestfs_h *g,\n"
7360 "                     const char *augpath,\n"
7361 "                     const char *label,\n"
7362 "                     int before);\n"
7363 "\n"
7364 msgstr ""
7365
7366 # type: textblock
7367 #. type: textblock
7368 #: ../src/guestfs-actions.pod:428 ../fish/guestfish-actions.pod:283
7369 msgid ""
7370 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
7371 "or after C<path> (depending on the boolean flag C<before>)."
7372 msgstr ""
7373
7374 # type: textblock
7375 #. type: textblock
7376 #: ../src/guestfs-actions.pod:432 ../fish/guestfish-actions.pod:287
7377 msgid ""
7378 "C<path> must match exactly one existing node in the tree, and C<label> must "
7379 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
7380 msgstr ""
7381
7382 # type: =head2
7383 #. type: =head2
7384 #: ../src/guestfs-actions.pod:440
7385 msgid "guestfs_aug_load"
7386 msgstr ""
7387
7388 # type: verbatim
7389 #. type: verbatim
7390 #: ../src/guestfs-actions.pod:442
7391 #, no-wrap
7392 msgid ""
7393 " int\n"
7394 " guestfs_aug_load (guestfs_h *g);\n"
7395 "\n"
7396 msgstr ""
7397
7398 # type: textblock
7399 #. type: textblock
7400 #: ../src/guestfs-actions.pod:445 ../fish/guestfish-actions.pod:295
7401 msgid "Load files into the tree."
7402 msgstr ""
7403
7404 # type: textblock
7405 #. type: textblock
7406 #: ../src/guestfs-actions.pod:447 ../fish/guestfish-actions.pod:297
7407 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
7408 msgstr ""
7409
7410 # type: =head2
7411 #. type: =head2
7412 #: ../src/guestfs-actions.pod:454
7413 msgid "guestfs_aug_ls"
7414 msgstr ""
7415
7416 # type: verbatim
7417 #. type: verbatim
7418 #: ../src/guestfs-actions.pod:456
7419 #, no-wrap
7420 msgid ""
7421 " char **\n"
7422 " guestfs_aug_ls (guestfs_h *g,\n"
7423 "                 const char *augpath);\n"
7424 "\n"
7425 msgstr ""
7426
7427 # type: textblock
7428 #. type: textblock
7429 #: ../src/guestfs-actions.pod:460
7430 msgid ""
7431 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
7432 "sorting the resulting nodes into alphabetical order."
7433 msgstr ""
7434
7435 # type: textblock
7436 #. type: textblock
7437 #: ../src/guestfs-actions.pod:463 ../src/guestfs-actions.pod:479
7438 #: ../src/guestfs-actions.pod:625 ../src/guestfs-actions.pod:1073
7439 #: ../src/guestfs-actions.pod:1369 ../src/guestfs-actions.pod:1388
7440 #: ../src/guestfs-actions.pod:1491 ../src/guestfs-actions.pod:1510
7441 #: ../src/guestfs-actions.pod:1756 ../src/guestfs-actions.pod:2198
7442 #: ../src/guestfs-actions.pod:2214 ../src/guestfs-actions.pod:2233
7443 #: ../src/guestfs-actions.pod:2276 ../src/guestfs-actions.pod:2300
7444 #: ../src/guestfs-actions.pod:2371 ../src/guestfs-actions.pod:2420
7445 #: ../src/guestfs-actions.pod:2687 ../src/guestfs-actions.pod:2978
7446 #: ../src/guestfs-actions.pod:3267 ../src/guestfs-actions.pod:3557
7447 #: ../src/guestfs-actions.pod:3619 ../src/guestfs-actions.pod:3724
7448 #: ../src/guestfs-actions.pod:4129 ../src/guestfs-actions.pod:4834
7449 #: ../src/guestfs-actions.pod:5363 ../src/guestfs-actions.pod:5489
7450 #: ../src/guestfs-actions.pod:5603 ../src/guestfs-actions.pod:6331
7451 #: ../src/guestfs-actions.pod:6392 ../src/guestfs-actions.pod:6447
7452 #: ../src/guestfs-actions.pod:6593 ../src/guestfs-actions.pod:6617
7453 #: ../src/guestfs-actions.pod:7099 ../src/guestfs-actions.pod:7119
7454 #: ../src/guestfs-actions.pod:7166 ../src/guestfs-actions.pod:7338
7455 #: ../src/guestfs-actions.pod:7357 ../src/guestfs-actions.pod:7442
7456 #: ../src/guestfs-actions.pod:7461 ../src/guestfs-actions.pod:7507
7457 #: ../src/guestfs-actions.pod:7526
7458 msgid ""
7459 "This function returns a NULL-terminated array of strings (like L<environ(3)"
7460 ">), or NULL if there was an error.  I<The caller must free the strings and "
7461 "the array after use>."
7462 msgstr ""
7463
7464 # type: textblock
7465 #. type: textblock
7466 #: ../src/guestfs-actions.pod:467 ../src/guestfs-actions.pod:998
7467 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:1426
7468 #: ../src/guestfs-actions.pod:3345 ../src/guestfs-actions.pod:3376
7469 #: ../src/guestfs-actions.pod:3970 ../src/guestfs-actions.pod:4020
7470 #: ../src/guestfs-actions.pod:4207 ../src/guestfs-actions.pod:4240
7471 #: ../src/guestfs-actions.pod:4403 ../src/guestfs-actions.pod:4838
7472 #: ../src/guestfs-actions.pod:5304 ../src/guestfs-actions.pod:5699
7473 #: ../src/guestfs-actions.pod:5713 ../src/guestfs-actions.pod:5725
7474 #: ../src/guestfs-actions.pod:6172 ../src/guestfs-actions.pod:6831
7475 #: ../src/guestfs-actions.pod:6844 ../src/guestfs-actions.pod:7083
7476 #: ../src/guestfs-actions.pod:7326
7477 msgid "(Added in 0.8)"
7478 msgstr ""
7479
7480 # type: =head2
7481 #. type: =head2
7482 #: ../src/guestfs-actions.pod:469
7483 msgid "guestfs_aug_match"
7484 msgstr ""
7485
7486 # type: verbatim
7487 #. type: verbatim
7488 #: ../src/guestfs-actions.pod:471
7489 #, no-wrap
7490 msgid ""
7491 " char **\n"
7492 " guestfs_aug_match (guestfs_h *g,\n"
7493 "                    const char *augpath);\n"
7494 "\n"
7495 msgstr ""
7496
7497 # type: textblock
7498 #. type: textblock
7499 #: ../src/guestfs-actions.pod:475 ../fish/guestfish-actions.pod:311
7500 msgid ""
7501 "Returns a list of paths which match the path expression C<path>.  The "
7502 "returned paths are sufficiently qualified so that they match exactly one "
7503 "node in the current tree."
7504 msgstr ""
7505
7506 # type: =head2
7507 #. type: =head2
7508 #: ../src/guestfs-actions.pod:485
7509 msgid "guestfs_aug_mv"
7510 msgstr ""
7511
7512 # type: verbatim
7513 #. type: verbatim
7514 #: ../src/guestfs-actions.pod:487
7515 #, no-wrap
7516 msgid ""
7517 " int\n"
7518 " guestfs_aug_mv (guestfs_h *g,\n"
7519 "                 const char *src,\n"
7520 "                 const char *dest);\n"
7521 "\n"
7522 msgstr ""
7523
7524 # type: textblock
7525 #. type: textblock
7526 #: ../src/guestfs-actions.pod:492 ../fish/guestfish-actions.pod:319
7527 msgid ""
7528 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
7529 "C<dest> is overwritten if it exists."
7530 msgstr ""
7531
7532 # type: =head2
7533 #. type: =head2
7534 #: ../src/guestfs-actions.pod:499
7535 msgid "guestfs_aug_rm"
7536 msgstr ""
7537
7538 # type: verbatim
7539 #. type: verbatim
7540 #: ../src/guestfs-actions.pod:501
7541 #, no-wrap
7542 msgid ""
7543 " int\n"
7544 " guestfs_aug_rm (guestfs_h *g,\n"
7545 "                 const char *augpath);\n"
7546 "\n"
7547 msgstr ""
7548
7549 # type: textblock
7550 #. type: textblock
7551 #: ../src/guestfs-actions.pod:505 ../fish/guestfish-actions.pod:326
7552 msgid "Remove C<path> and all of its children."
7553 msgstr ""
7554
7555 # type: textblock
7556 #. type: textblock
7557 #: ../src/guestfs-actions.pod:507 ../fish/guestfish-actions.pod:328
7558 msgid "On success this returns the number of entries which were removed."
7559 msgstr ""
7560
7561 # type: =head2
7562 #. type: =head2
7563 #: ../src/guestfs-actions.pod:513
7564 msgid "guestfs_aug_save"
7565 msgstr ""
7566
7567 # type: verbatim
7568 #. type: verbatim
7569 #: ../src/guestfs-actions.pod:515
7570 #, no-wrap
7571 msgid ""
7572 " int\n"
7573 " guestfs_aug_save (guestfs_h *g);\n"
7574 "\n"
7575 msgstr ""
7576
7577 # type: textblock
7578 #. type: textblock
7579 #: ../src/guestfs-actions.pod:518 ../fish/guestfish-actions.pod:334
7580 msgid "This writes all pending changes to disk."
7581 msgstr ""
7582
7583 # type: textblock
7584 #. type: textblock
7585 #: ../src/guestfs-actions.pod:520
7586 msgid ""
7587 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
7588 "are saved."
7589 msgstr ""
7590
7591 # type: =head2
7592 #. type: =head2
7593 #: ../src/guestfs-actions.pod:527
7594 msgid "guestfs_aug_set"
7595 msgstr ""
7596
7597 # type: verbatim
7598 #. type: verbatim
7599 #: ../src/guestfs-actions.pod:529
7600 #, no-wrap
7601 msgid ""
7602 " int\n"
7603 " guestfs_aug_set (guestfs_h *g,\n"
7604 "                  const char *augpath,\n"
7605 "                  const char *val);\n"
7606 "\n"
7607 msgstr ""
7608
7609 # type: textblock
7610 #. type: textblock
7611 #: ../src/guestfs-actions.pod:534 ../fish/guestfish-actions.pod:343
7612 msgid "Set the value associated with C<path> to C<val>."
7613 msgstr ""
7614
7615 # type: textblock
7616 #. type: textblock
7617 #: ../src/guestfs-actions.pod:536
7618 msgid ""
7619 "In the Augeas API, it is possible to clear a node by setting the value to "
7620 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
7621 "this call.  Instead you must use the C<guestfs_aug_clear> call."
7622 msgstr ""
7623
7624 # type: =head2
7625 #. type: =head2
7626 #: ../src/guestfs-actions.pod:545
7627 msgid "guestfs_available"
7628 msgstr ""
7629
7630 # type: verbatim
7631 #. type: verbatim
7632 #: ../src/guestfs-actions.pod:547
7633 #, no-wrap
7634 msgid ""
7635 " int\n"
7636 " guestfs_available (guestfs_h *g,\n"
7637 "                    char *const *groups);\n"
7638 "\n"
7639 msgstr ""
7640
7641 # type: textblock
7642 #. type: textblock
7643 #: ../src/guestfs-actions.pod:551 ../fish/guestfish-actions.pod:354
7644 msgid ""
7645 "This command is used to check the availability of some groups of "
7646 "functionality in the appliance, which not all builds of the libguestfs "
7647 "appliance will be able to provide."
7648 msgstr ""
7649
7650 # type: textblock
7651 #. type: textblock
7652 #: ../src/guestfs-actions.pod:555
7653 msgid ""
7654 "The libguestfs groups, and the functions that those groups correspond to, "
7655 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
7656 "runtime by calling C<guestfs_available_all_groups>."
7657 msgstr ""
7658
7659 # type: textblock
7660 #. type: textblock
7661 #: ../src/guestfs-actions.pod:560 ../fish/guestfish-actions.pod:363
7662 msgid ""
7663 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", \"augeas"
7664 "\"]> would check for the availability of the Linux inotify functions and "
7665 "Augeas (configuration file editing) functions."
7666 msgstr ""
7667
7668 # type: textblock
7669 #. type: textblock
7670 #: ../src/guestfs-actions.pod:565 ../fish/guestfish-actions.pod:368
7671 msgid "The command returns no error if I<all> requested groups are available."
7672 msgstr ""
7673
7674 # type: textblock
7675 #. type: textblock
7676 #: ../src/guestfs-actions.pod:567 ../fish/guestfish-actions.pod:370
7677 msgid ""
7678 "It fails with an error if one or more of the requested groups is unavailable "
7679 "in the appliance."
7680 msgstr ""
7681
7682 # type: textblock
7683 #. type: textblock
7684 #: ../src/guestfs-actions.pod:570 ../fish/guestfish-actions.pod:373
7685 msgid ""
7686 "If an unknown group name is included in the list of groups then an error is "
7687 "always returned."
7688 msgstr ""
7689
7690 # type: textblock
7691 #. type: textblock
7692 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:376
7693 msgid "I<Notes:>"
7694 msgstr ""
7695
7696 # type: textblock
7697 #. type: textblock
7698 #: ../src/guestfs-actions.pod:579
7699 msgid "You must call C<guestfs_launch> before calling this function."
7700 msgstr ""
7701
7702 # type: textblock
7703 #. type: textblock
7704 #: ../src/guestfs-actions.pod:581 ../fish/guestfish-actions.pod:384
7705 msgid ""
7706 "The reason is because we don't know what groups are supported by the "
7707 "appliance/daemon until it is running and can be queried."
7708 msgstr ""
7709
7710 # type: textblock
7711 #. type: textblock
7712 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:390
7713 msgid ""
7714 "If a group of functions is available, this does not necessarily mean that "
7715 "they will work.  You still have to check for errors when calling individual "
7716 "API functions even if they are available."
7717 msgstr ""
7718
7719 # type: textblock
7720 #. type: textblock
7721 #: ../src/guestfs-actions.pod:594 ../fish/guestfish-actions.pod:397
7722 msgid ""
7723 "It is usually the job of distro packagers to build complete functionality "
7724 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
7725 "with all requirements satisfied, will support everything."
7726 msgstr ""
7727
7728 # type: textblock
7729 #. type: textblock
7730 #: ../src/guestfs-actions.pod:601
7731 msgid ""
7732 "This call was added in version C<1.0.80>.  In previous versions of "
7733 "libguestfs all you could do would be to speculatively execute a command to "
7734 "find out if the daemon implemented it.  See also C<guestfs_version>."
7735 msgstr ""
7736
7737 # type: textblock
7738 #. type: textblock
7739 #: ../src/guestfs-actions.pod:610 ../src/guestfs-actions.pod:1171
7740 msgid "(Added in 1.0.80)"
7741 msgstr ""
7742
7743 # type: =head2
7744 #. type: =head2
7745 #: ../src/guestfs-actions.pod:612
7746 msgid "guestfs_available_all_groups"
7747 msgstr ""
7748
7749 # type: verbatim
7750 #. type: verbatim
7751 #: ../src/guestfs-actions.pod:614
7752 #, no-wrap
7753 msgid ""
7754 " char **\n"
7755 " guestfs_available_all_groups (guestfs_h *g);\n"
7756 "\n"
7757 msgstr ""
7758
7759 # type: textblock
7760 #. type: textblock
7761 #: ../src/guestfs-actions.pod:617
7762 msgid ""
7763 "This command returns a list of all optional groups that this daemon knows "
7764 "about.  Note this returns both supported and unsupported groups.  To find "
7765 "out which ones the daemon can actually support you have to call "
7766 "C<guestfs_available> on each member of the returned list."
7767 msgstr ""
7768
7769 # type: textblock
7770 #. type: textblock
7771 #: ../src/guestfs-actions.pod:623
7772 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
7773 msgstr ""
7774
7775 # type: textblock
7776 #. type: textblock
7777 #: ../src/guestfs-actions.pod:629
7778 msgid "(Added in 1.3.15)"
7779 msgstr ""
7780
7781 # type: =head2
7782 #. type: =head2
7783 #: ../src/guestfs-actions.pod:631
7784 msgid "guestfs_base64_in"
7785 msgstr ""
7786
7787 # type: verbatim
7788 #. type: verbatim
7789 #: ../src/guestfs-actions.pod:633
7790 #, no-wrap
7791 msgid ""
7792 " int\n"
7793 " guestfs_base64_in (guestfs_h *g,\n"
7794 "                    const char *base64file,\n"
7795 "                    const char *filename);\n"
7796 "\n"
7797 msgstr ""
7798
7799 # type: textblock
7800 #. type: textblock
7801 #: ../src/guestfs-actions.pod:638 ../fish/guestfish-actions.pod:427
7802 msgid ""
7803 "This command uploads base64-encoded data from C<base64file> to C<filename>."
7804 msgstr ""
7805
7806 # type: textblock
7807 #. type: textblock
7808 #: ../src/guestfs-actions.pod:643 ../src/guestfs-actions.pod:657
7809 msgid "(Added in 1.3.5)"
7810 msgstr ""
7811
7812 # type: =head2
7813 #. type: =head2
7814 #: ../src/guestfs-actions.pod:645
7815 msgid "guestfs_base64_out"
7816 msgstr ""
7817
7818 # type: verbatim
7819 #. type: verbatim
7820 #: ../src/guestfs-actions.pod:647
7821 #, no-wrap
7822 msgid ""
7823 " int\n"
7824 " guestfs_base64_out (guestfs_h *g,\n"
7825 "                     const char *filename,\n"
7826 "                     const char *base64file);\n"
7827 "\n"
7828 msgstr ""
7829
7830 # type: textblock
7831 #. type: textblock
7832 #: ../src/guestfs-actions.pod:652 ../fish/guestfish-actions.pod:436
7833 msgid ""
7834 "This command downloads the contents of C<filename>, writing it out to local "
7835 "file C<base64file> encoded as base64."
7836 msgstr ""
7837
7838 # type: =head2
7839 #. type: =head2
7840 #: ../src/guestfs-actions.pod:659
7841 msgid "guestfs_blockdev_flushbufs"
7842 msgstr ""
7843
7844 # type: verbatim
7845 #. type: verbatim
7846 #: ../src/guestfs-actions.pod:661
7847 #, no-wrap
7848 msgid ""
7849 " int\n"
7850 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
7851 "                             const char *device);\n"
7852 "\n"
7853 msgstr ""
7854
7855 # type: textblock
7856 #. type: textblock
7857 #: ../src/guestfs-actions.pod:665 ../fish/guestfish-actions.pod:445
7858 msgid ""
7859 "This tells the kernel to flush internal buffers associated with C<device>."
7860 msgstr ""
7861
7862 # type: textblock
7863 #. type: textblock
7864 #: ../src/guestfs-actions.pod:668 ../src/guestfs-actions.pod:685
7865 #: ../src/guestfs-actions.pod:700 ../src/guestfs-actions.pod:716
7866 #: ../src/guestfs-actions.pod:734 ../src/guestfs-actions.pod:753
7867 #: ../src/guestfs-actions.pod:767 ../src/guestfs-actions.pod:785
7868 #: ../src/guestfs-actions.pod:799 ../src/guestfs-actions.pod:813
7869 #: ../fish/guestfish-actions.pod:448 ../fish/guestfish-actions.pod:459
7870 #: ../fish/guestfish-actions.pod:468 ../fish/guestfish-actions.pod:478
7871 #: ../fish/guestfish-actions.pod:490 ../fish/guestfish-actions.pod:503
7872 #: ../fish/guestfish-actions.pod:511 ../fish/guestfish-actions.pod:522
7873 #: ../fish/guestfish-actions.pod:530 ../fish/guestfish-actions.pod:538
7874 msgid "This uses the L<blockdev(8)> command."
7875 msgstr ""
7876
7877 # type: textblock
7878 #. type: textblock
7879 #: ../src/guestfs-actions.pod:672 ../src/guestfs-actions.pod:689
7880 #: ../src/guestfs-actions.pod:704 ../src/guestfs-actions.pod:720
7881 #: ../src/guestfs-actions.pod:738 ../src/guestfs-actions.pod:757
7882 #: ../src/guestfs-actions.pod:771 ../src/guestfs-actions.pod:789
7883 #: ../src/guestfs-actions.pod:803 ../src/guestfs-actions.pod:817
7884 msgid "(Added in 0.9.3)"
7885 msgstr ""
7886
7887 # type: =head2
7888 #. type: =head2
7889 #: ../src/guestfs-actions.pod:674
7890 msgid "guestfs_blockdev_getbsz"
7891 msgstr ""
7892
7893 # type: verbatim
7894 #. type: verbatim
7895 #: ../src/guestfs-actions.pod:676
7896 #, no-wrap
7897 msgid ""
7898 " int\n"
7899 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
7900 "                          const char *device);\n"
7901 "\n"
7902 msgstr ""
7903
7904 # type: textblock
7905 #. type: textblock
7906 #: ../src/guestfs-actions.pod:680 ../fish/guestfish-actions.pod:454
7907 msgid "This returns the block size of a device."
7908 msgstr ""
7909
7910 # type: textblock
7911 #. type: textblock
7912 #: ../src/guestfs-actions.pod:682 ../src/guestfs-actions.pod:782
7913 #: ../fish/guestfish-actions.pod:456 ../fish/guestfish-actions.pod:519
7914 msgid ""
7915 "(Note this is different from both I<size in blocks> and I<filesystem block "
7916 "size>)."
7917 msgstr ""
7918
7919 # type: =head2
7920 #. type: =head2
7921 #: ../src/guestfs-actions.pod:691
7922 msgid "guestfs_blockdev_getro"
7923 msgstr ""
7924
7925 # type: verbatim
7926 #. type: verbatim
7927 #: ../src/guestfs-actions.pod:693
7928 #, no-wrap
7929 msgid ""
7930 " int\n"
7931 " guestfs_blockdev_getro (guestfs_h *g,\n"
7932 "                         const char *device);\n"
7933 "\n"
7934 msgstr ""
7935
7936 # type: textblock
7937 #. type: textblock
7938 #: ../src/guestfs-actions.pod:697 ../fish/guestfish-actions.pod:465
7939 msgid ""
7940 "Returns a boolean indicating if the block device is read-only (true if read-"
7941 "only, false if not)."
7942 msgstr ""
7943
7944 # type: textblock
7945 #. type: textblock
7946 #: ../src/guestfs-actions.pod:702 ../src/guestfs-actions.pod:1409
7947 #: ../src/guestfs-actions.pod:1424 ../src/guestfs-actions.pod:1911
7948 #: ../src/guestfs-actions.pod:1922 ../src/guestfs-actions.pod:1994
7949 #: ../src/guestfs-actions.pod:2049 ../src/guestfs-actions.pod:2064
7950 #: ../src/guestfs-actions.pod:2089 ../src/guestfs-actions.pod:2112
7951 #: ../src/guestfs-actions.pod:3085 ../src/guestfs-actions.pod:3102
7952 #: ../src/guestfs-actions.pod:3121 ../src/guestfs-actions.pod:3284
7953 #: ../src/guestfs-actions.pod:3298 ../src/guestfs-actions.pod:3313
7954 #: ../src/guestfs-actions.pod:3327 ../src/guestfs-actions.pod:3343
7955 #: ../src/guestfs-actions.pod:3358 ../src/guestfs-actions.pod:3374
7956 #: ../src/guestfs-actions.pod:3388 ../src/guestfs-actions.pod:3401
7957 #: ../src/guestfs-actions.pod:3415 ../src/guestfs-actions.pod:3430
7958 #: ../src/guestfs-actions.pod:3445 ../src/guestfs-actions.pod:4992
7959 msgid "This function returns a C truth value on success or -1 on error."
7960 msgstr ""
7961
7962 # type: =head2
7963 #. type: =head2
7964 #: ../src/guestfs-actions.pod:706
7965 msgid "guestfs_blockdev_getsize64"
7966 msgstr ""
7967
7968 # type: verbatim
7969 #. type: verbatim
7970 #: ../src/guestfs-actions.pod:708
7971 #, no-wrap
7972 msgid ""
7973 " int64_t\n"
7974 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7975 "                             const char *device);\n"
7976 "\n"
7977 msgstr ""
7978
7979 # type: textblock
7980 #. type: textblock
7981 #: ../src/guestfs-actions.pod:712 ../fish/guestfish-actions.pod:474
7982 msgid "This returns the size of the device in bytes."
7983 msgstr ""
7984
7985 # type: textblock
7986 #. type: textblock
7987 #: ../src/guestfs-actions.pod:714
7988 msgid "See also C<guestfs_blockdev_getsz>."
7989 msgstr ""
7990
7991 # type: =head2
7992 #. type: =head2
7993 #: ../src/guestfs-actions.pod:722
7994 msgid "guestfs_blockdev_getss"
7995 msgstr ""
7996
7997 # type: verbatim
7998 #. type: verbatim
7999 #: ../src/guestfs-actions.pod:724
8000 #, no-wrap
8001 msgid ""
8002 " int\n"
8003 " guestfs_blockdev_getss (guestfs_h *g,\n"
8004 "                         const char *device);\n"
8005 "\n"
8006 msgstr ""
8007
8008 # type: textblock
8009 #. type: textblock
8010 #: ../src/guestfs-actions.pod:728 ../fish/guestfish-actions.pod:484
8011 msgid ""
8012 "This returns the size of sectors on a block device.  Usually 512, but can be "
8013 "larger for modern devices."
8014 msgstr ""
8015
8016 # type: textblock
8017 #. type: textblock
8018 #: ../src/guestfs-actions.pod:731
8019 msgid ""
8020 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
8021 "that)."
8022 msgstr ""
8023
8024 # type: =head2
8025 #. type: =head2
8026 #: ../src/guestfs-actions.pod:740
8027 msgid "guestfs_blockdev_getsz"
8028 msgstr ""
8029
8030 # type: verbatim
8031 #. type: verbatim
8032 #: ../src/guestfs-actions.pod:742
8033 #, no-wrap
8034 msgid ""
8035 " int64_t\n"
8036 " guestfs_blockdev_getsz (guestfs_h *g,\n"
8037 "                         const char *device);\n"
8038 "\n"
8039 msgstr ""
8040
8041 # type: textblock
8042 #. type: textblock
8043 #: ../src/guestfs-actions.pod:746 ../fish/guestfish-actions.pod:496
8044 msgid ""
8045 "This returns the size of the device in units of 512-byte sectors (even if "
8046 "the sectorsize isn't 512 bytes ... weird)."
8047 msgstr ""
8048
8049 # type: textblock
8050 #. type: textblock
8051 #: ../src/guestfs-actions.pod:749
8052 msgid ""
8053 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
8054 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
8055 msgstr ""
8056
8057 # type: =head2
8058 #. type: =head2
8059 #: ../src/guestfs-actions.pod:759
8060 msgid "guestfs_blockdev_rereadpt"
8061 msgstr ""
8062
8063 # type: verbatim
8064 #. type: verbatim
8065 #: ../src/guestfs-actions.pod:761
8066 #, no-wrap
8067 msgid ""
8068 " int\n"
8069 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
8070 "                            const char *device);\n"
8071 "\n"
8072 msgstr ""
8073
8074 # type: textblock
8075 #. type: textblock
8076 #: ../src/guestfs-actions.pod:765 ../fish/guestfish-actions.pod:509
8077 msgid "Reread the partition table on C<device>."
8078 msgstr ""
8079
8080 # type: =head2
8081 #. type: =head2
8082 #: ../src/guestfs-actions.pod:773
8083 msgid "guestfs_blockdev_setbsz"
8084 msgstr ""
8085
8086 # type: verbatim
8087 #. type: verbatim
8088 #: ../src/guestfs-actions.pod:775
8089 #, no-wrap
8090 msgid ""
8091 " int\n"
8092 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
8093 "                          const char *device,\n"
8094 "                          int blocksize);\n"
8095 "\n"
8096 msgstr ""
8097
8098 # type: textblock
8099 #. type: textblock
8100 #: ../src/guestfs-actions.pod:780 ../fish/guestfish-actions.pod:517
8101 msgid "This sets the block size of a device."
8102 msgstr ""
8103
8104 # type: =head2
8105 #. type: =head2
8106 #: ../src/guestfs-actions.pod:791
8107 msgid "guestfs_blockdev_setro"
8108 msgstr ""
8109
8110 # type: verbatim
8111 #. type: verbatim
8112 #: ../src/guestfs-actions.pod:793
8113 #, no-wrap
8114 msgid ""
8115 " int\n"
8116 " guestfs_blockdev_setro (guestfs_h *g,\n"
8117 "                         const char *device);\n"
8118 "\n"
8119 msgstr ""
8120
8121 # type: textblock
8122 #. type: textblock
8123 #: ../src/guestfs-actions.pod:797 ../fish/guestfish-actions.pod:528
8124 msgid "Sets the block device named C<device> to read-only."
8125 msgstr ""
8126
8127 # type: =head2
8128 #. type: =head2
8129 #: ../src/guestfs-actions.pod:805
8130 msgid "guestfs_blockdev_setrw"
8131 msgstr ""
8132
8133 # type: verbatim
8134 #. type: verbatim
8135 #: ../src/guestfs-actions.pod:807
8136 #, no-wrap
8137 msgid ""
8138 " int\n"
8139 " guestfs_blockdev_setrw (guestfs_h *g,\n"
8140 "                         const char *device);\n"
8141 "\n"
8142 msgstr ""
8143
8144 # type: textblock
8145 #. type: textblock
8146 #: ../src/guestfs-actions.pod:811 ../fish/guestfish-actions.pod:536
8147 msgid "Sets the block device named C<device> to read-write."
8148 msgstr ""
8149
8150 # type: =head2
8151 #. type: =head2
8152 #: ../src/guestfs-actions.pod:819
8153 msgid "guestfs_case_sensitive_path"
8154 msgstr ""
8155
8156 # type: verbatim
8157 #. type: verbatim
8158 #: ../src/guestfs-actions.pod:821
8159 #, no-wrap
8160 msgid ""
8161 " char *\n"
8162 " guestfs_case_sensitive_path (guestfs_h *g,\n"
8163 "                              const char *path);\n"
8164 "\n"
8165 msgstr ""
8166
8167 # type: textblock
8168 #. type: textblock
8169 #: ../src/guestfs-actions.pod:825 ../fish/guestfish-actions.pod:544
8170 msgid ""
8171 "This can be used to resolve case insensitive paths on a filesystem which is "
8172 "case sensitive.  The use case is to resolve paths which you have read from "
8173 "Windows configuration files or the Windows Registry, to the true path."
8174 msgstr ""
8175
8176 # type: textblock
8177 #. type: textblock
8178 #: ../src/guestfs-actions.pod:830 ../fish/guestfish-actions.pod:549
8179 msgid ""
8180 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
8181 "(and probably others), which is that although the underlying filesystem is "
8182 "case-insensitive, the driver exports the filesystem to Linux as case-"
8183 "sensitive."
8184 msgstr ""
8185
8186 # type: textblock
8187 #. type: textblock
8188 #: ../src/guestfs-actions.pod:835 ../fish/guestfish-actions.pod:554
8189 msgid ""
8190 "One consequence of this is that special directories such as C<c:\\windows> "
8191 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
8192 "precise details of how they were created.  In Windows itself this would not "
8193 "be a problem."
8194 msgstr ""
8195
8196 # type: textblock
8197 #. type: textblock
8198 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:560
8199 msgid ""
8200 "Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-faq/"
8201 "#posixfilenames1>"
8202 msgstr ""
8203
8204 # type: textblock
8205 #. type: textblock
8206 #: ../src/guestfs-actions.pod:844 ../fish/guestfish-actions.pod:563
8207 msgid ""
8208 "This function resolves the true case of each element in the path and returns "
8209 "the case-sensitive path."
8210 msgstr ""
8211
8212 # type: textblock
8213 #. type: textblock
8214 #: ../src/guestfs-actions.pod:847
8215 msgid ""
8216 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return C<"
8217 "\"/WINDOWS/system32\"> (the exact return value would depend on details of "
8218 "how the directories were originally created under Windows)."
8219 msgstr ""
8220
8221 # type: textblock
8222 #. type: textblock
8223 #: ../src/guestfs-actions.pod:852 ../fish/guestfish-actions.pod:571
8224 msgid "I<Note>: This function does not handle drive names, backslashes etc."
8225 msgstr ""
8226
8227 # type: textblock
8228 #. type: textblock
8229 #: ../src/guestfs-actions.pod:855
8230 msgid "See also C<guestfs_realpath>."
8231 msgstr ""
8232
8233 # type: textblock
8234 #. type: textblock
8235 #: ../src/guestfs-actions.pod:860 ../src/guestfs-actions.pod:7011
8236 msgid "(Added in 1.0.75)"
8237 msgstr ""
8238
8239 # type: =head2
8240 #. type: =head2
8241 #: ../src/guestfs-actions.pod:862
8242 msgid "guestfs_cat"
8243 msgstr ""
8244
8245 # type: verbatim
8246 #. type: verbatim
8247 #: ../src/guestfs-actions.pod:864
8248 #, no-wrap
8249 msgid ""
8250 " char *\n"
8251 " guestfs_cat (guestfs_h *g,\n"
8252 "              const char *path);\n"
8253 "\n"
8254 msgstr ""
8255
8256 # type: textblock
8257 #. type: textblock
8258 #: ../src/guestfs-actions.pod:868 ../src/guestfs-actions.pod:5479
8259 #: ../fish/guestfish-actions.pod:580 ../fish/guestfish-actions.pod:3680
8260 msgid "Return the contents of the file named C<path>."
8261 msgstr ""
8262
8263 # type: textblock
8264 #. type: textblock
8265 #: ../src/guestfs-actions.pod:870
8266 msgid ""
8267 "Note that this function cannot correctly handle binary files (specifically, "
8268 "files containing C<\\0> character which is treated as end of string).  For "
8269 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
8270 "functions which have a more complex interface."
8271 msgstr ""
8272
8273 # type: textblock
8274 #. type: textblock
8275 #: ../src/guestfs-actions.pod:878 ../src/guestfs-actions.pod:1057
8276 #: ../src/guestfs-actions.pod:1077 ../src/guestfs-actions.pod:1373
8277 #: ../src/guestfs-actions.pod:1392 ../src/guestfs-actions.pod:1495
8278 #: ../src/guestfs-actions.pod:1514 ../src/guestfs-actions.pod:1760
8279 #: ../src/guestfs-actions.pod:2218 ../src/guestfs-actions.pod:2237
8280 #: ../src/guestfs-actions.pod:2280 ../src/guestfs-actions.pod:2304
8281 #: ../src/guestfs-actions.pod:2321 ../src/guestfs-actions.pod:2350
8282 #: ../src/guestfs-actions.pod:5261 ../src/guestfs-actions.pod:5287
8283 #: ../src/guestfs-actions.pod:5418 ../src/guestfs-actions.pod:5444
8284 #: ../src/guestfs-actions.pod:5468 ../src/guestfs-actions.pod:6396
8285 #: ../src/guestfs-actions.pod:6451 ../src/guestfs-actions.pod:6597
8286 #: ../src/guestfs-actions.pod:6621 ../src/guestfs-actions.pod:7290
8287 #: ../src/guestfs-actions.pod:7316 ../src/guestfs-actions.pod:7342
8288 #: ../src/guestfs-actions.pod:7361 ../src/guestfs-actions.pod:7446
8289 #: ../src/guestfs-actions.pod:7465 ../src/guestfs-actions.pod:7511
8290 #: ../src/guestfs-actions.pod:7530 ../fish/guestfish-actions.pod:587
8291 #: ../fish/guestfish-actions.pod:722 ../fish/guestfish-actions.pod:734
8292 #: ../fish/guestfish-actions.pod:910 ../fish/guestfish-actions.pod:920
8293 #: ../fish/guestfish-actions.pod:987 ../fish/guestfish-actions.pod:997
8294 #: ../fish/guestfish-actions.pod:1189 ../fish/guestfish-actions.pod:1490
8295 #: ../fish/guestfish-actions.pod:1500 ../fish/guestfish-actions.pod:1528
8296 #: ../fish/guestfish-actions.pod:1543 ../fish/guestfish-actions.pod:1553
8297 #: ../fish/guestfish-actions.pod:1572 ../fish/guestfish-actions.pod:3550
8298 #: ../fish/guestfish-actions.pod:3565 ../fish/guestfish-actions.pod:3641
8299 #: ../fish/guestfish-actions.pod:3658 ../fish/guestfish-actions.pod:3673
8300 #: ../fish/guestfish-actions.pod:4327 ../fish/guestfish-actions.pod:4373
8301 #: ../fish/guestfish-actions.pod:4458 ../fish/guestfish-actions.pod:4473
8302 #: ../fish/guestfish-actions.pod:4883 ../fish/guestfish-actions.pod:4901
8303 #: ../fish/guestfish-actions.pod:4918 ../fish/guestfish-actions.pod:4928
8304 #: ../fish/guestfish-actions.pod:4976 ../fish/guestfish-actions.pod:4986
8305 #: ../fish/guestfish-actions.pod:5015 ../fish/guestfish-actions.pod:5025
8306 msgid ""
8307 "Because of the message protocol, there is a transfer limit of somewhere "
8308 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
8309 msgstr ""
8310
8311 # type: textblock
8312 #. type: textblock
8313 #: ../src/guestfs-actions.pod:881 ../src/guestfs-actions.pod:3561
8314 #: ../src/guestfs-actions.pod:3623 ../src/guestfs-actions.pod:3640
8315 #: ../src/guestfs-actions.pod:3728 ../src/guestfs-actions.pod:4133
8316 #: ../src/guestfs-actions.pod:4147 ../src/guestfs-actions.pod:5367
8317 #: ../src/guestfs-actions.pod:5381 ../src/guestfs-actions.pod:7170
8318 #: ../src/guestfs-actions.pod:7184
8319 msgid "(Added in 0.4)"
8320 msgstr ""
8321
8322 # type: =head2
8323 #. type: =head2
8324 #: ../src/guestfs-actions.pod:883
8325 msgid "guestfs_checksum"
8326 msgstr ""
8327
8328 # type: verbatim
8329 #. type: verbatim
8330 #: ../src/guestfs-actions.pod:885
8331 #, no-wrap
8332 msgid ""
8333 " char *\n"
8334 " guestfs_checksum (guestfs_h *g,\n"
8335 "                   const char *csumtype,\n"
8336 "                   const char *path);\n"
8337 "\n"
8338 msgstr ""
8339
8340 # type: textblock
8341 #. type: textblock
8342 #: ../src/guestfs-actions.pod:890 ../fish/guestfish-actions.pod:594
8343 msgid ""
8344 "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
8345 msgstr ""
8346
8347 # type: textblock
8348 #. type: textblock
8349 #: ../src/guestfs-actions.pod:893 ../fish/guestfish-actions.pod:597
8350 msgid ""
8351 "The type of checksum to compute is given by the C<csumtype> parameter which "
8352 "must have one of the following values:"
8353 msgstr ""
8354
8355 # type: =item
8356 #. type: =item
8357 #: ../src/guestfs-actions.pod:898 ../fish/guestfish-actions.pod:602
8358 msgid "C<crc>"
8359 msgstr ""
8360
8361 # type: textblock
8362 #. type: textblock
8363 #: ../src/guestfs-actions.pod:900 ../fish/guestfish-actions.pod:604
8364 msgid ""
8365 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
8366 "C<cksum> command."
8367 msgstr ""
8368
8369 # type: =item
8370 #. type: =item
8371 #: ../src/guestfs-actions.pod:903 ../fish/guestfish-actions.pod:607
8372 msgid "C<md5>"
8373 msgstr ""
8374
8375 # type: textblock
8376 #. type: textblock
8377 #: ../src/guestfs-actions.pod:905 ../fish/guestfish-actions.pod:609
8378 msgid "Compute the MD5 hash (using the C<md5sum> program)."
8379 msgstr ""
8380
8381 # type: =item
8382 #. type: =item
8383 #: ../src/guestfs-actions.pod:907 ../fish/guestfish-actions.pod:611
8384 msgid "C<sha1>"
8385 msgstr ""
8386
8387 # type: textblock
8388 #. type: textblock
8389 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:613
8390 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
8391 msgstr ""
8392
8393 # type: =item
8394 #. type: =item
8395 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:615
8396 msgid "C<sha224>"
8397 msgstr ""
8398
8399 # type: textblock
8400 #. type: textblock
8401 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:617
8402 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
8403 msgstr ""
8404
8405 # type: =item
8406 #. type: =item
8407 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:619
8408 msgid "C<sha256>"
8409 msgstr ""
8410
8411 # type: textblock
8412 #. type: textblock
8413 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:621
8414 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
8415 msgstr ""
8416
8417 # type: =item
8418 #. type: =item
8419 #: ../src/guestfs-actions.pod:919 ../fish/guestfish-actions.pod:623
8420 msgid "C<sha384>"
8421 msgstr ""
8422
8423 # type: textblock
8424 #. type: textblock
8425 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:625
8426 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
8427 msgstr ""
8428
8429 # type: =item
8430 #. type: =item
8431 #: ../src/guestfs-actions.pod:923 ../fish/guestfish-actions.pod:627
8432 msgid "C<sha512>"
8433 msgstr ""
8434
8435 # type: textblock
8436 #. type: textblock
8437 #: ../src/guestfs-actions.pod:925 ../fish/guestfish-actions.pod:629
8438 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
8439 msgstr ""
8440
8441 # type: textblock
8442 #. type: textblock
8443 #: ../src/guestfs-actions.pod:929 ../fish/guestfish-actions.pod:633
8444 msgid "The checksum is returned as a printable string."
8445 msgstr ""
8446
8447 # type: textblock
8448 #. type: textblock
8449 #: ../src/guestfs-actions.pod:931
8450 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
8451 msgstr ""
8452
8453 # type: textblock
8454 #. type: textblock
8455 #: ../src/guestfs-actions.pod:933
8456 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
8457 msgstr ""
8458
8459 # type: textblock
8460 #. type: textblock
8461 #: ../src/guestfs-actions.pod:938 ../src/guestfs-actions.pod:1246
8462 #: ../src/guestfs-actions.pod:2080 ../src/guestfs-actions.pod:3300
8463 #: ../src/guestfs-actions.pod:3329 ../src/guestfs-actions.pod:3390
8464 #: ../src/guestfs-actions.pod:3417 ../src/guestfs-actions.pod:6867
8465 msgid "(Added in 1.0.2)"
8466 msgstr ""
8467
8468 # type: =head2
8469 #. type: =head2
8470 #: ../src/guestfs-actions.pod:940
8471 msgid "guestfs_checksum_device"
8472 msgstr ""
8473
8474 # type: verbatim
8475 #. type: verbatim
8476 #: ../src/guestfs-actions.pod:942
8477 #, no-wrap
8478 msgid ""
8479 " char *\n"
8480 " guestfs_checksum_device (guestfs_h *g,\n"
8481 "                          const char *csumtype,\n"
8482 "                          const char *device);\n"
8483 "\n"
8484 msgstr ""
8485
8486 # type: textblock
8487 #. type: textblock
8488 #: ../src/guestfs-actions.pod:947
8489 msgid ""
8490 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
8491 "device named C<device>.  For the types of checksums supported see the "
8492 "C<guestfs_checksum> command."
8493 msgstr ""
8494
8495 # type: textblock
8496 #. type: textblock
8497 #: ../src/guestfs-actions.pod:954 ../src/guestfs-actions.pod:4898
8498 #: ../src/guestfs-actions.pod:4957 ../src/guestfs-actions.pod:4994
8499 #: ../src/guestfs-actions.pod:5012 ../src/guestfs-actions.pod:5188
8500 #: ../src/guestfs-actions.pod:6776 ../src/guestfs-actions.pod:6790
8501 #: ../src/guestfs-actions.pod:7196
8502 msgid "(Added in 1.3.2)"
8503 msgstr ""
8504
8505 # type: =head2
8506 #. type: =head2
8507 #: ../src/guestfs-actions.pod:956
8508 msgid "guestfs_checksums_out"
8509 msgstr ""
8510
8511 # type: verbatim
8512 #. type: verbatim
8513 #: ../src/guestfs-actions.pod:958
8514 #, no-wrap
8515 msgid ""
8516 " int\n"
8517 " guestfs_checksums_out (guestfs_h *g,\n"
8518 "                        const char *csumtype,\n"
8519 "                        const char *directory,\n"
8520 "                        const char *sumsfile);\n"
8521 "\n"
8522 msgstr ""
8523
8524 # type: textblock
8525 #. type: textblock
8526 #: ../src/guestfs-actions.pod:964 ../fish/guestfish-actions.pod:651
8527 msgid ""
8528 "This command computes the checksums of all regular files in C<directory> and "
8529 "then emits a list of those checksums to the local output file C<sumsfile>."
8530 msgstr ""
8531
8532 # type: textblock
8533 #. type: textblock
8534 #: ../src/guestfs-actions.pod:968 ../fish/guestfish-actions.pod:655
8535 msgid ""
8536 "This can be used for verifying the integrity of a virtual machine.  However "
8537 "to be properly secure you should pay attention to the output of the checksum "
8538 "command (it uses the ones from GNU coreutils).  In particular when the "
8539 "filename is not printable, coreutils uses a special backslash syntax.  For "
8540 "more information, see the GNU coreutils info file."
8541 msgstr ""
8542
8543 # type: textblock
8544 #. type: textblock
8545 #: ../src/guestfs-actions.pod:978
8546 msgid "(Added in 1.3.7)"
8547 msgstr ""
8548
8549 # type: =head2
8550 #. type: =head2
8551 #: ../src/guestfs-actions.pod:980
8552 msgid "guestfs_chmod"
8553 msgstr ""
8554
8555 # type: verbatim
8556 #. type: verbatim
8557 #: ../src/guestfs-actions.pod:982
8558 #, no-wrap
8559 msgid ""
8560 " int\n"
8561 " guestfs_chmod (guestfs_h *g,\n"
8562 "                int mode,\n"
8563 "                const char *path);\n"
8564 "\n"
8565 msgstr ""
8566
8567 # type: textblock
8568 #. type: textblock
8569 #: ../src/guestfs-actions.pod:987 ../fish/guestfish-actions.pod:669
8570 msgid ""
8571 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
8572 "supported."
8573 msgstr ""
8574
8575 # type: textblock
8576 #. type: textblock
8577 #: ../src/guestfs-actions.pod:990 ../fish/guestfish-actions.pod:672
8578 msgid ""
8579 "I<Note>: When using this command from guestfish, C<mode> by default would be "
8580 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
8581 "C<700>."
8582 msgstr ""
8583
8584 # type: textblock
8585 #. type: textblock
8586 #: ../src/guestfs-actions.pod:994 ../src/guestfs-actions.pod:4384
8587 #: ../src/guestfs-actions.pod:4581 ../src/guestfs-actions.pod:4600
8588 #: ../src/guestfs-actions.pod:4619 ../fish/guestfish-actions.pod:676
8589 #: ../fish/guestfish-actions.pod:2980 ../fish/guestfish-actions.pod:3109
8590 #: ../fish/guestfish-actions.pod:3119 ../fish/guestfish-actions.pod:3129
8591 msgid "The mode actually set is affected by the umask."
8592 msgstr ""
8593
8594 # type: =head2
8595 #. type: =head2
8596 #: ../src/guestfs-actions.pod:1000
8597 msgid "guestfs_chown"
8598 msgstr ""
8599
8600 # type: verbatim
8601 #. type: verbatim
8602 #: ../src/guestfs-actions.pod:1002
8603 #, no-wrap
8604 msgid ""
8605 " int\n"
8606 " guestfs_chown (guestfs_h *g,\n"
8607 "                int owner,\n"
8608 "                int group,\n"
8609 "                const char *path);\n"
8610 "\n"
8611 msgstr ""
8612
8613 # type: textblock
8614 #. type: textblock
8615 #: ../src/guestfs-actions.pod:1008 ../fish/guestfish-actions.pod:682
8616 msgid "Change the file owner to C<owner> and group to C<group>."
8617 msgstr ""
8618
8619 # type: textblock
8620 #. type: textblock
8621 #: ../src/guestfs-actions.pod:1010 ../src/guestfs-actions.pod:3492
8622 #: ../fish/guestfish-actions.pod:684 ../fish/guestfish-actions.pod:2438
8623 msgid ""
8624 "Only numeric uid and gid are supported.  If you want to use names, you will "
8625 "need to locate and parse the password file yourself (Augeas support makes "
8626 "this relatively easy)."
8627 msgstr ""
8628
8629 # type: =head2
8630 #. type: =head2
8631 #: ../src/guestfs-actions.pod:1018
8632 msgid "guestfs_command"
8633 msgstr ""
8634
8635 # type: verbatim
8636 #. type: verbatim
8637 #: ../src/guestfs-actions.pod:1020
8638 #, no-wrap
8639 msgid ""
8640 " char *\n"
8641 " guestfs_command (guestfs_h *g,\n"
8642 "                  char *const *arguments);\n"
8643 "\n"
8644 msgstr ""
8645
8646 # type: textblock
8647 #. type: textblock
8648 #: ../src/guestfs-actions.pod:1024 ../fish/guestfish-actions.pod:692
8649 msgid ""
8650 "This call runs a command from the guest filesystem.  The filesystem must be "
8651 "mounted, and must contain a compatible operating system (ie. something "
8652 "Linux, with the same or compatible processor architecture)."
8653 msgstr ""
8654
8655 # type: textblock
8656 #. type: textblock
8657 #: ../src/guestfs-actions.pod:1029
8658 msgid ""
8659 "The single parameter is an argv-style list of arguments.  The first element "
8660 "is the name of the program to run.  Subsequent elements are parameters.  The "
8661 "list must be non-empty (ie. must contain a program name).  Note that the "
8662 "command runs directly, and is I<not> invoked via the shell (see "
8663 "C<guestfs_sh>)."
8664 msgstr ""
8665
8666 # type: textblock
8667 #. type: textblock
8668 #: ../src/guestfs-actions.pod:1036 ../fish/guestfish-actions.pod:704
8669 msgid "The return value is anything printed to I<stdout> by the command."
8670 msgstr ""
8671
8672 # type: textblock
8673 #. type: textblock
8674 #: ../src/guestfs-actions.pod:1039 ../fish/guestfish-actions.pod:707
8675 msgid ""
8676 "If the command returns a non-zero exit status, then this function returns an "
8677 "error message.  The error message string is the content of I<stderr> from "
8678 "the command."
8679 msgstr ""
8680
8681 # type: textblock
8682 #. type: textblock
8683 #: ../src/guestfs-actions.pod:1043 ../fish/guestfish-actions.pod:711
8684 msgid ""
8685 "The C<$PATH> environment variable will contain at least C</usr/bin> and C</"
8686 "bin>.  If you require a program from another location, you should provide "
8687 "the full path in the first parameter."
8688 msgstr ""
8689
8690 # type: textblock
8691 #. type: textblock
8692 #: ../src/guestfs-actions.pod:1048 ../fish/guestfish-actions.pod:716
8693 msgid ""
8694 "Shared libraries and data files required by the program must be available on "
8695 "filesystems which are mounted in the correct places.  It is the caller's "
8696 "responsibility to ensure all filesystems that are needed are mounted at the "
8697 "right locations."
8698 msgstr ""
8699
8700 # type: textblock
8701 #. type: textblock
8702 #: ../src/guestfs-actions.pod:1060 ../src/guestfs-actions.pod:1080
8703 #: ../src/guestfs-actions.pod:1545
8704 msgid "(Added in 0.9.1)"
8705 msgstr ""
8706
8707 # type: =head2
8708 #. type: =head2
8709 #: ../src/guestfs-actions.pod:1062
8710 msgid "guestfs_command_lines"
8711 msgstr ""
8712
8713 # type: verbatim
8714 #. type: verbatim
8715 #: ../src/guestfs-actions.pod:1064
8716 #, no-wrap
8717 msgid ""
8718 " char **\n"
8719 " guestfs_command_lines (guestfs_h *g,\n"
8720 "                        char *const *arguments);\n"
8721 "\n"
8722 msgstr ""
8723
8724 # type: textblock
8725 #. type: textblock
8726 #: ../src/guestfs-actions.pod:1068
8727 msgid ""
8728 "This is the same as C<guestfs_command>, but splits the result into a list of "
8729 "lines."
8730 msgstr ""
8731
8732 # type: textblock
8733 #. type: textblock
8734 #: ../src/guestfs-actions.pod:1071
8735 msgid "See also: C<guestfs_sh_lines>"
8736 msgstr ""
8737
8738 # type: =head2
8739 #. type: =head2
8740 #: ../src/guestfs-actions.pod:1082
8741 msgid "guestfs_config"
8742 msgstr ""
8743
8744 # type: verbatim
8745 #. type: verbatim
8746 #: ../src/guestfs-actions.pod:1084
8747 #, no-wrap
8748 msgid ""
8749 " int\n"
8750 " guestfs_config (guestfs_h *g,\n"
8751 "                 const char *qemuparam,\n"
8752 "                 const char *qemuvalue);\n"
8753 "\n"
8754 msgstr ""
8755
8756 #. type: textblock
8757 #: ../src/guestfs-actions.pod:1089 ../fish/guestfish-actions.pod:741
8758 msgid ""
8759 "This can be used to add arbitrary qemu command line parameters of the form "
8760 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
8761 "setting some parameters which would interfere with parameters that we use."
8762 msgstr ""
8763
8764 # type: textblock
8765 #. type: textblock
8766 #: ../src/guestfs-actions.pod:1094 ../fish/guestfish-actions.pod:746
8767 msgid "The first character of C<param> string must be a C<-> (dash)."
8768 msgstr ""
8769
8770 # type: textblock
8771 #. type: textblock
8772 #: ../src/guestfs-actions.pod:1096 ../fish/guestfish-actions.pod:748
8773 msgid "C<value> can be NULL."
8774 msgstr ""
8775
8776 # type: =head2
8777 #. type: =head2
8778 #: ../src/guestfs-actions.pod:1102
8779 msgid "guestfs_copy_size"
8780 msgstr ""
8781
8782 # type: verbatim
8783 #. type: verbatim
8784 #: ../src/guestfs-actions.pod:1104
8785 #, no-wrap
8786 msgid ""
8787 " int\n"
8788 " guestfs_copy_size (guestfs_h *g,\n"
8789 "                    const char *src,\n"
8790 "                    const char *dest,\n"
8791 "                    int64_t size);\n"
8792 "\n"
8793 msgstr ""
8794
8795 # type: textblock
8796 #. type: textblock
8797 #: ../src/guestfs-actions.pod:1110 ../fish/guestfish-actions.pod:754
8798 msgid ""
8799 "This command copies exactly C<size> bytes from one source device or file "
8800 "C<src> to another destination device or file C<dest>."
8801 msgstr ""
8802
8803 # type: textblock
8804 #. type: textblock
8805 #: ../src/guestfs-actions.pod:1113 ../fish/guestfish-actions.pod:757
8806 msgid ""
8807 "Note this will fail if the source is too short or if the destination is not "
8808 "large enough."
8809 msgstr ""
8810
8811 #. type: textblock
8812 #: ../src/guestfs-actions.pod:1118 ../src/guestfs-actions.pod:1241
8813 #: ../src/guestfs-actions.pod:1272 ../src/guestfs-actions.pod:1317
8814 #: ../src/guestfs-actions.pod:1694 ../src/guestfs-actions.pod:1716
8815 #: ../src/guestfs-actions.pod:3473 ../src/guestfs-actions.pod:6862
8816 #: ../src/guestfs-actions.pod:6896 ../src/guestfs-actions.pod:7382
8817 #: ../src/guestfs-actions.pod:7401
8818 msgid ""
8819 "This long-running command can generate progress notification messages so "
8820 "that the caller can display a progress bar or indicator.  To receive these "
8821 "messages, the caller must register a progress event callback.  See L<guestfs"
8822 "(3)/GUESTFS_EVENT_PROGRESS>."
8823 msgstr ""
8824
8825 # type: textblock
8826 #. type: textblock
8827 #: ../src/guestfs-actions.pod:1123 ../src/guestfs-actions.pod:4160
8828 #: ../src/guestfs-actions.pod:5394 ../src/guestfs-actions.pod:7103
8829 #: ../src/guestfs-actions.pod:7123 ../src/guestfs-actions.pod:7209
8830 msgid "(Added in 1.0.87)"
8831 msgstr ""
8832
8833 # type: =head2
8834 #. type: =head2
8835 #: ../src/guestfs-actions.pod:1125
8836 msgid "guestfs_cp"
8837 msgstr ""
8838
8839 # type: verbatim
8840 #. type: verbatim
8841 #: ../src/guestfs-actions.pod:1127
8842 #, no-wrap
8843 msgid ""
8844 " int\n"
8845 " guestfs_cp (guestfs_h *g,\n"
8846 "             const char *src,\n"
8847 "             const char *dest);\n"
8848 "\n"
8849 msgstr ""
8850
8851 # type: textblock
8852 #. type: textblock
8853 #: ../src/guestfs-actions.pod:1132 ../fish/guestfish-actions.pod:764
8854 msgid ""
8855 "This copies a file from C<src> to C<dest> where C<dest> is either a "
8856 "destination filename or destination directory."
8857 msgstr ""
8858
8859 # type: textblock
8860 #. type: textblock
8861 #: ../src/guestfs-actions.pod:1137 ../src/guestfs-actions.pod:1151
8862 #: ../src/guestfs-actions.pod:1223 ../src/guestfs-actions.pod:1297
8863 #: ../src/guestfs-actions.pod:1411 ../src/guestfs-actions.pod:4852
8864 #: ../src/guestfs-actions.pod:5238
8865 msgid "(Added in 1.0.18)"
8866 msgstr ""
8867
8868 # type: =head2
8869 #. type: =head2
8870 #: ../src/guestfs-actions.pod:1139
8871 msgid "guestfs_cp_a"
8872 msgstr ""
8873
8874 # type: verbatim
8875 #. type: verbatim
8876 #: ../src/guestfs-actions.pod:1141
8877 #, no-wrap
8878 msgid ""
8879 " int\n"
8880 " guestfs_cp_a (guestfs_h *g,\n"
8881 "               const char *src,\n"
8882 "               const char *dest);\n"
8883 "\n"
8884 msgstr ""
8885
8886 # type: textblock
8887 #. type: textblock
8888 #: ../src/guestfs-actions.pod:1146 ../fish/guestfish-actions.pod:771
8889 msgid ""
8890 "This copies a file or directory from C<src> to C<dest> recursively using the "
8891 "C<cp -a> command."
8892 msgstr ""
8893
8894 # type: =head2
8895 #. type: =head2
8896 #: ../src/guestfs-actions.pod:1153
8897 msgid "guestfs_dd"
8898 msgstr ""
8899
8900 # type: verbatim
8901 #. type: verbatim
8902 #: ../src/guestfs-actions.pod:1155
8903 #, no-wrap
8904 msgid ""
8905 " int\n"
8906 " guestfs_dd (guestfs_h *g,\n"
8907 "             const char *src,\n"
8908 "             const char *dest);\n"
8909 "\n"
8910 msgstr ""
8911
8912 # type: textblock
8913 #. type: textblock
8914 #: ../src/guestfs-actions.pod:1160 ../fish/guestfish-actions.pod:778
8915 msgid ""
8916 "This command copies from one source device or file C<src> to another "
8917 "destination device or file C<dest>.  Normally you would use this to copy to "
8918 "or from a device or partition, for example to duplicate a filesystem."
8919 msgstr ""
8920
8921 # type: textblock
8922 #. type: textblock
8923 #: ../src/guestfs-actions.pod:1165
8924 msgid ""
8925 "If the destination is a device, it must be as large or larger than the "
8926 "source file or device, otherwise the copy will fail.  This command cannot do "
8927 "partial copies (see C<guestfs_copy_size>)."
8928 msgstr ""
8929
8930 # type: =head2
8931 #. type: =head2
8932 #: ../src/guestfs-actions.pod:1173
8933 msgid "guestfs_df"
8934 msgstr ""
8935
8936 # type: verbatim
8937 #. type: verbatim
8938 #: ../src/guestfs-actions.pod:1175
8939 #, no-wrap
8940 msgid ""
8941 " char *\n"
8942 " guestfs_df (guestfs_h *g);\n"
8943 "\n"
8944 msgstr ""
8945
8946 # type: textblock
8947 #. type: textblock
8948 #: ../src/guestfs-actions.pod:1178 ../fish/guestfish-actions.pod:791
8949 msgid "This command runs the C<df> command to report disk space used."
8950 msgstr ""
8951
8952 # type: textblock
8953 #. type: textblock
8954 #: ../src/guestfs-actions.pod:1180 ../src/guestfs-actions.pod:1197
8955 msgid ""
8956 "This command is mostly useful for interactive sessions.  It is I<not> "
8957 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
8958 "from programs."
8959 msgstr ""
8960
8961 # type: textblock
8962 #. type: textblock
8963 #: ../src/guestfs-actions.pod:1187 ../src/guestfs-actions.pod:1204
8964 #: ../src/guestfs-actions.pod:1322 ../src/guestfs-actions.pod:2283
8965 #: ../src/guestfs-actions.pod:2307 ../src/guestfs-actions.pod:2375
8966 #: ../src/guestfs-actions.pod:4270 ../src/guestfs-actions.pod:4752
8967 #: ../src/guestfs-actions.pod:6600 ../src/guestfs-actions.pod:6624
8968 #: ../src/guestfs-actions.pod:7249 ../src/guestfs-actions.pod:7262
8969 #: ../src/guestfs-actions.pod:7275
8970 msgid "(Added in 1.0.54)"
8971 msgstr ""
8972
8973 # type: =head2
8974 #. type: =head2
8975 #: ../src/guestfs-actions.pod:1189
8976 msgid "guestfs_df_h"
8977 msgstr ""
8978
8979 # type: verbatim
8980 #. type: verbatim
8981 #: ../src/guestfs-actions.pod:1191
8982 #, no-wrap
8983 msgid ""
8984 " char *\n"
8985 " guestfs_df_h (guestfs_h *g);\n"
8986 "\n"
8987 msgstr ""
8988
8989 # type: textblock
8990 #. type: textblock
8991 #: ../src/guestfs-actions.pod:1194 ../fish/guestfish-actions.pod:801
8992 msgid ""
8993 "This command runs the C<df -h> command to report disk space used in human-"
8994 "readable format."
8995 msgstr ""
8996
8997 # type: =head2
8998 #. type: =head2
8999 #: ../src/guestfs-actions.pod:1206
9000 msgid "guestfs_dmesg"
9001 msgstr ""
9002
9003 # type: verbatim
9004 #. type: verbatim
9005 #: ../src/guestfs-actions.pod:1208
9006 #, no-wrap
9007 msgid ""
9008 " char *\n"
9009 " guestfs_dmesg (guestfs_h *g);\n"
9010 "\n"
9011 msgstr ""
9012
9013 # type: textblock
9014 #. type: textblock
9015 #: ../src/guestfs-actions.pod:1211 ../fish/guestfish-actions.pod:812
9016 msgid ""
9017 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
9018 "This is sometimes useful for extended debugging of problems."
9019 msgstr ""
9020
9021 # type: textblock
9022 #. type: textblock
9023 #: ../src/guestfs-actions.pod:1215
9024 msgid ""
9025 "Another way to get the same information is to enable verbose messages with "
9026 "C<guestfs_set_verbose> or by setting the environment variable "
9027 "C<LIBGUESTFS_DEBUG=1> before running the program."
9028 msgstr ""
9029
9030 # type: =head2
9031 #. type: =head2
9032 #: ../src/guestfs-actions.pod:1225
9033 msgid "guestfs_download"
9034 msgstr ""
9035
9036 # type: verbatim
9037 #. type: verbatim
9038 #: ../src/guestfs-actions.pod:1227
9039 #, no-wrap
9040 msgid ""
9041 " int\n"
9042 " guestfs_download (guestfs_h *g,\n"
9043 "                   const char *remotefilename,\n"
9044 "                   const char *filename);\n"
9045 "\n"
9046 msgstr ""
9047
9048 # type: textblock
9049 #. type: textblock
9050 #: ../src/guestfs-actions.pod:1232 ../src/guestfs-actions.pod:1257
9051 #: ../fish/guestfish-actions.pod:825 ../fish/guestfish-actions.pod:838
9052 msgid ""
9053 "Download file C<remotefilename> and save it as C<filename> on the local "
9054 "machine."
9055 msgstr ""
9056
9057 # type: textblock
9058 #. type: textblock
9059 #: ../src/guestfs-actions.pod:1235 ../src/guestfs-actions.pod:6856
9060 #: ../fish/guestfish-actions.pod:828 ../fish/guestfish-actions.pod:4631
9061 msgid "C<filename> can also be a named pipe."
9062 msgstr ""
9063
9064 # type: textblock
9065 #. type: textblock
9066 #: ../src/guestfs-actions.pod:1237
9067 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
9068 msgstr ""
9069
9070 # type: =head2
9071 #. type: =head2
9072 #: ../src/guestfs-actions.pod:1248
9073 msgid "guestfs_download_offset"
9074 msgstr ""
9075
9076 # type: verbatim
9077 #. type: verbatim
9078 #: ../src/guestfs-actions.pod:1250
9079 #, no-wrap
9080 msgid ""
9081 " int\n"
9082 " guestfs_download_offset (guestfs_h *g,\n"
9083 "                          const char *remotefilename,\n"
9084 "                          const char *filename,\n"
9085 "                          int64_t offset,\n"
9086 "                          int64_t size);\n"
9087 "\n"
9088 msgstr ""
9089
9090 # type: textblock
9091 #. type: textblock
9092 #: ../src/guestfs-actions.pod:1260 ../fish/guestfish-actions.pod:841
9093 msgid ""
9094 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
9095 "region must be within the file or device)."
9096 msgstr ""
9097
9098 # type: textblock
9099 #. type: textblock
9100 #: ../src/guestfs-actions.pod:1263
9101 msgid ""
9102 "Note that there is no limit on the amount of data that can be downloaded "
9103 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
9104 "full amount unless an error occurs."
9105 msgstr ""
9106
9107 # type: textblock
9108 #. type: textblock
9109 #: ../src/guestfs-actions.pod:1268
9110 msgid "See also C<guestfs_download>, C<guestfs_pread>."
9111 msgstr ""
9112
9113 # type: textblock
9114 #. type: textblock
9115 #: ../src/guestfs-actions.pod:1277 ../src/guestfs-actions.pod:6901
9116 msgid "(Added in 1.5.17)"
9117 msgstr ""
9118
9119 # type: =head2
9120 #. type: =head2
9121 #: ../src/guestfs-actions.pod:1279
9122 msgid "guestfs_drop_caches"
9123 msgstr ""
9124
9125 # type: verbatim
9126 #. type: verbatim
9127 #: ../src/guestfs-actions.pod:1281
9128 #, no-wrap
9129 msgid ""
9130 " int\n"
9131 " guestfs_drop_caches (guestfs_h *g,\n"
9132 "                      int whattodrop);\n"
9133 "\n"
9134 msgstr ""
9135
9136 # type: textblock
9137 #. type: textblock
9138 #: ../src/guestfs-actions.pod:1285 ../fish/guestfish-actions.pod:857
9139 msgid ""
9140 "This instructs the guest kernel to drop its page cache, and/or dentries and "
9141 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
9142 "to drop, see L<http://linux-mm.org/Drop_Caches>"
9143 msgstr ""
9144
9145 # type: textblock
9146 #. type: textblock
9147 #: ../src/guestfs-actions.pod:1290 ../fish/guestfish-actions.pod:862
9148 msgid "Setting C<whattodrop> to 3 should drop everything."
9149 msgstr ""
9150
9151 # type: textblock
9152 #. type: textblock
9153 #: ../src/guestfs-actions.pod:1292 ../fish/guestfish-actions.pod:864
9154 msgid ""
9155 "This automatically calls L<sync(2)> before the operation, so that the "
9156 "maximum guest memory is freed."
9157 msgstr ""
9158
9159 # type: =head2
9160 #. type: =head2
9161 #: ../src/guestfs-actions.pod:1299
9162 msgid "guestfs_du"
9163 msgstr ""
9164
9165 # type: verbatim
9166 #. type: verbatim
9167 #: ../src/guestfs-actions.pod:1301
9168 #, no-wrap
9169 msgid ""
9170 " int64_t\n"
9171 " guestfs_du (guestfs_h *g,\n"
9172 "             const char *path);\n"
9173 "\n"
9174 msgstr ""
9175
9176 # type: textblock
9177 #. type: textblock
9178 #: ../src/guestfs-actions.pod:1305 ../fish/guestfish-actions.pod:871
9179 msgid ""
9180 "This command runs the C<du -s> command to estimate file space usage for "
9181 "C<path>."
9182 msgstr ""
9183
9184 # type: textblock
9185 #. type: textblock
9186 #: ../src/guestfs-actions.pod:1308 ../fish/guestfish-actions.pod:874
9187 msgid ""
9188 "C<path> can be a file or a directory.  If C<path> is a directory then the "
9189 "estimate includes the contents of the directory and all subdirectories "
9190 "(recursively)."
9191 msgstr ""
9192
9193 # type: textblock
9194 #. type: textblock
9195 #: ../src/guestfs-actions.pod:1312 ../fish/guestfish-actions.pod:878
9196 msgid ""
9197 "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
9198 msgstr ""
9199
9200 # type: =head2
9201 #. type: =head2
9202 #: ../src/guestfs-actions.pod:1324
9203 msgid "guestfs_e2fsck_f"
9204 msgstr ""
9205
9206 # type: verbatim
9207 #. type: verbatim
9208 #: ../src/guestfs-actions.pod:1326
9209 #, no-wrap
9210 msgid ""
9211 " int\n"
9212 " guestfs_e2fsck_f (guestfs_h *g,\n"
9213 "                   const char *device);\n"
9214 "\n"
9215 msgstr ""
9216
9217 #. type: textblock
9218 #: ../src/guestfs-actions.pod:1330 ../fish/guestfish-actions.pod:885
9219 msgid ""
9220 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
9221 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
9222 "clean (I<-f>)."
9223 msgstr ""
9224
9225 # type: textblock
9226 #. type: textblock
9227 #: ../src/guestfs-actions.pod:1334
9228 msgid ""
9229 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
9230 "Normally you should use C<guestfs_fsck>."
9231 msgstr ""
9232
9233 # type: textblock
9234 #. type: textblock
9235 #: ../src/guestfs-actions.pod:1339
9236 msgid "(Added in 1.0.29)"
9237 msgstr ""
9238
9239 # type: =head2
9240 #. type: =head2
9241 #: ../src/guestfs-actions.pod:1341
9242 msgid "guestfs_echo_daemon"
9243 msgstr ""
9244
9245 # type: verbatim
9246 #. type: verbatim
9247 #: ../src/guestfs-actions.pod:1343
9248 #, no-wrap
9249 msgid ""
9250 " char *\n"
9251 " guestfs_echo_daemon (guestfs_h *g,\n"
9252 "                      char *const *words);\n"
9253 "\n"
9254 msgstr ""
9255
9256 # type: textblock
9257 #. type: textblock
9258 #: ../src/guestfs-actions.pod:1347 ../fish/guestfish-actions.pod:896
9259 msgid ""
9260 "This command concatenates the list of C<words> passed with single spaces "
9261 "between them and returns the resulting string."
9262 msgstr ""
9263
9264 # type: textblock
9265 #. type: textblock
9266 #: ../src/guestfs-actions.pod:1350 ../fish/guestfish-actions.pod:899
9267 msgid "You can use this command to test the connection through to the daemon."
9268 msgstr ""
9269
9270 # type: textblock
9271 #. type: textblock
9272 #: ../src/guestfs-actions.pod:1352
9273 msgid "See also C<guestfs_ping_daemon>."
9274 msgstr ""
9275
9276 # type: textblock
9277 #. type: textblock
9278 #: ../src/guestfs-actions.pod:1357 ../src/guestfs-actions.pod:2091
9279 #: ../src/guestfs-actions.pod:6072
9280 msgid "(Added in 1.0.69)"
9281 msgstr ""
9282
9283 # type: =head2
9284 #. type: =head2
9285 #: ../src/guestfs-actions.pod:1359
9286 msgid "guestfs_egrep"
9287 msgstr ""
9288
9289 # type: verbatim
9290 #. type: verbatim
9291 #: ../src/guestfs-actions.pod:1361
9292 #, no-wrap
9293 msgid ""
9294 " char **\n"
9295 " guestfs_egrep (guestfs_h *g,\n"
9296 "                const char *regex,\n"
9297 "                const char *path);\n"
9298 "\n"
9299 msgstr ""
9300
9301 # type: textblock
9302 #. type: textblock
9303 #: ../src/guestfs-actions.pod:1366 ../fish/guestfish-actions.pod:907
9304 msgid ""
9305 "This calls the external C<egrep> program and returns the matching lines."
9306 msgstr ""
9307
9308 # type: textblock
9309 #. type: textblock
9310 #: ../src/guestfs-actions.pod:1376 ../src/guestfs-actions.pod:1395
9311 #: ../src/guestfs-actions.pod:1452 ../src/guestfs-actions.pod:1498
9312 #: ../src/guestfs-actions.pod:1517 ../src/guestfs-actions.pod:2221
9313 #: ../src/guestfs-actions.pod:2240 ../src/guestfs-actions.pod:2396
9314 #: ../src/guestfs-actions.pod:2409 ../src/guestfs-actions.pod:2424
9315 #: ../src/guestfs-actions.pod:2470 ../src/guestfs-actions.pod:2492
9316 #: ../src/guestfs-actions.pod:2505 ../src/guestfs-actions.pod:3653
9317 #: ../src/guestfs-actions.pod:3667 ../src/guestfs-actions.pod:3680
9318 #: ../src/guestfs-actions.pod:3694 ../src/guestfs-actions.pod:4680
9319 #: ../src/guestfs-actions.pod:5572 ../src/guestfs-actions.pod:5621
9320 #: ../src/guestfs-actions.pod:6468 ../src/guestfs-actions.pod:6480
9321 #: ../src/guestfs-actions.pod:6493 ../src/guestfs-actions.pod:6506
9322 #: ../src/guestfs-actions.pod:6528 ../src/guestfs-actions.pod:6541
9323 #: ../src/guestfs-actions.pod:6554 ../src/guestfs-actions.pod:6567
9324 #: ../src/guestfs-actions.pod:7345 ../src/guestfs-actions.pod:7364
9325 #: ../src/guestfs-actions.pod:7449 ../src/guestfs-actions.pod:7468
9326 #: ../src/guestfs-actions.pod:7514 ../src/guestfs-actions.pod:7533
9327 msgid "(Added in 1.0.66)"
9328 msgstr ""
9329
9330 # type: =head2
9331 #. type: =head2
9332 #: ../src/guestfs-actions.pod:1378
9333 msgid "guestfs_egrepi"
9334 msgstr ""
9335
9336 # type: verbatim
9337 #. type: verbatim
9338 #: ../src/guestfs-actions.pod:1380
9339 #, no-wrap
9340 msgid ""
9341 " char **\n"
9342 " guestfs_egrepi (guestfs_h *g,\n"
9343 "                 const char *regex,\n"
9344 "                 const char *path);\n"
9345 "\n"
9346 msgstr ""
9347
9348 # type: textblock
9349 #. type: textblock
9350 #: ../src/guestfs-actions.pod:1385 ../fish/guestfish-actions.pod:917
9351 msgid ""
9352 "This calls the external C<egrep -i> program and returns the matching lines."
9353 msgstr ""
9354
9355 # type: =head2
9356 #. type: =head2
9357 #: ../src/guestfs-actions.pod:1397
9358 msgid "guestfs_equal"
9359 msgstr ""
9360
9361 # type: verbatim
9362 #. type: verbatim
9363 #: ../src/guestfs-actions.pod:1399
9364 #, no-wrap
9365 msgid ""
9366 " int\n"
9367 " guestfs_equal (guestfs_h *g,\n"
9368 "                const char *file1,\n"
9369 "                const char *file2);\n"
9370 "\n"
9371 msgstr ""
9372
9373 # type: textblock
9374 #. type: textblock
9375 #: ../src/guestfs-actions.pod:1404 ../fish/guestfish-actions.pod:927
9376 msgid ""
9377 "This compares the two files C<file1> and C<file2> and returns true if their "
9378 "content is exactly equal, or false otherwise."
9379 msgstr ""
9380
9381 # type: textblock
9382 #. type: textblock
9383 #: ../src/guestfs-actions.pod:1407 ../fish/guestfish-actions.pod:930
9384 msgid "The external L<cmp(1)> program is used for the comparison."
9385 msgstr ""
9386
9387 # type: =head2
9388 #. type: =head2
9389 #: ../src/guestfs-actions.pod:1413
9390 msgid "guestfs_exists"
9391 msgstr ""
9392
9393 # type: verbatim
9394 #. type: verbatim
9395 #: ../src/guestfs-actions.pod:1415
9396 #, no-wrap
9397 msgid ""
9398 " int\n"
9399 " guestfs_exists (guestfs_h *g,\n"
9400 "                 const char *path);\n"
9401 "\n"
9402 msgstr ""
9403
9404 # type: textblock
9405 #. type: textblock
9406 #: ../src/guestfs-actions.pod:1419 ../fish/guestfish-actions.pod:936
9407 msgid ""
9408 "This returns C<true> if and only if there is a file, directory (or anything) "
9409 "with the given C<path> name."
9410 msgstr ""
9411
9412 # type: textblock
9413 #. type: textblock
9414 #: ../src/guestfs-actions.pod:1422
9415 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
9416 msgstr ""
9417
9418 # type: =head2
9419 #. type: =head2
9420 #: ../src/guestfs-actions.pod:1428
9421 msgid "guestfs_fallocate"
9422 msgstr ""
9423
9424 # type: verbatim
9425 #. type: verbatim
9426 #: ../src/guestfs-actions.pod:1430
9427 #, no-wrap
9428 msgid ""
9429 " int\n"
9430 " guestfs_fallocate (guestfs_h *g,\n"
9431 "                    const char *path,\n"
9432 "                    int len);\n"
9433 "\n"
9434 msgstr ""
9435
9436 # type: textblock
9437 #. type: textblock
9438 #: ../src/guestfs-actions.pod:1435 ../src/guestfs-actions.pod:1461
9439 #: ../fish/guestfish-actions.pod:945 ../fish/guestfish-actions.pod:964
9440 msgid ""
9441 "This command preallocates a file (containing zero bytes) named C<path> of "
9442 "size C<len> bytes.  If the file exists already, it is overwritten."
9443 msgstr ""
9444
9445 # type: textblock
9446 #. type: textblock
9447 #: ../src/guestfs-actions.pod:1439 ../fish/guestfish-actions.pod:949
9448 msgid ""
9449 "Do not confuse this with the guestfish-specific C<alloc> command which "
9450 "allocates a file in the host and attaches it as a device."
9451 msgstr ""
9452
9453 #. type: textblock
9454 #: ../src/guestfs-actions.pod:1445
9455 msgid ""
9456 "This function is deprecated.  In new code, use the L</guestfs_fallocate64> "
9457 "call instead."
9458 msgstr ""
9459
9460 # type: =head2
9461 #. type: =head2
9462 #: ../src/guestfs-actions.pod:1454
9463 msgid "guestfs_fallocate64"
9464 msgstr ""
9465
9466 # type: verbatim
9467 #. type: verbatim
9468 #: ../src/guestfs-actions.pod:1456
9469 #, no-wrap
9470 msgid ""
9471 " int\n"
9472 " guestfs_fallocate64 (guestfs_h *g,\n"
9473 "                      const char *path,\n"
9474 "                      int64_t len);\n"
9475 "\n"
9476 msgstr ""
9477
9478 # type: textblock
9479 #. type: textblock
9480 #: ../src/guestfs-actions.pod:1465
9481 msgid ""
9482 "Note that this call allocates disk blocks for the file.  To create a sparse "
9483 "file use C<guestfs_truncate_size> instead."
9484 msgstr ""
9485
9486 # type: textblock
9487 #. type: textblock
9488 #: ../src/guestfs-actions.pod:1468
9489 msgid ""
9490 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
9491 "oversight it only allowed 30 bit lengths to be specified, effectively "
9492 "limiting the maximum size of files created through that call to 1GB."
9493 msgstr ""
9494
9495 # type: textblock
9496 #. type: textblock
9497 #: ../src/guestfs-actions.pod:1473 ../fish/guestfish-actions.pod:976
9498 msgid ""
9499 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
9500 "commands which create a file in the host and attach it as a device."
9501 msgstr ""
9502
9503 # type: textblock
9504 #. type: textblock
9505 #: ../src/guestfs-actions.pod:1479
9506 msgid "(Added in 1.3.17)"
9507 msgstr ""
9508
9509 # type: =head2
9510 #. type: =head2
9511 #: ../src/guestfs-actions.pod:1481
9512 msgid "guestfs_fgrep"
9513 msgstr ""
9514
9515 # type: verbatim
9516 #. type: verbatim
9517 #: ../src/guestfs-actions.pod:1483
9518 #, no-wrap
9519 msgid ""
9520 " char **\n"
9521 " guestfs_fgrep (guestfs_h *g,\n"
9522 "                const char *pattern,\n"
9523 "                const char *path);\n"
9524 "\n"
9525 msgstr ""
9526
9527 # type: textblock
9528 #. type: textblock
9529 #: ../src/guestfs-actions.pod:1488 ../fish/guestfish-actions.pod:984
9530 msgid ""
9531 "This calls the external C<fgrep> program and returns the matching lines."
9532 msgstr ""
9533
9534 # type: =head2
9535 #. type: =head2
9536 #: ../src/guestfs-actions.pod:1500
9537 msgid "guestfs_fgrepi"
9538 msgstr ""
9539
9540 # type: verbatim
9541 #. type: verbatim
9542 #: ../src/guestfs-actions.pod:1502
9543 #, no-wrap
9544 msgid ""
9545 " char **\n"
9546 " guestfs_fgrepi (guestfs_h *g,\n"
9547 "                 const char *pattern,\n"
9548 "                 const char *path);\n"
9549 "\n"
9550 msgstr ""
9551
9552 # type: textblock
9553 #. type: textblock
9554 #: ../src/guestfs-actions.pod:1507 ../fish/guestfish-actions.pod:994
9555 msgid ""
9556 "This calls the external C<fgrep -i> program and returns the matching lines."
9557 msgstr ""
9558
9559 # type: =head2
9560 #. type: =head2
9561 #: ../src/guestfs-actions.pod:1519
9562 msgid "guestfs_file"
9563 msgstr ""
9564
9565 # type: verbatim
9566 #. type: verbatim
9567 #: ../src/guestfs-actions.pod:1521
9568 #, no-wrap
9569 msgid ""
9570 " char *\n"
9571 " guestfs_file (guestfs_h *g,\n"
9572 "               const char *path);\n"
9573 "\n"
9574 msgstr ""
9575
9576 # type: textblock
9577 #. type: textblock
9578 #: ../src/guestfs-actions.pod:1525 ../fish/guestfish-actions.pod:1004
9579 msgid ""
9580 "This call uses the standard L<file(1)> command to determine the type or "
9581 "contents of the file."
9582 msgstr ""
9583
9584 # type: textblock
9585 #. type: textblock
9586 #: ../src/guestfs-actions.pod:1528 ../fish/guestfish-actions.pod:1007
9587 msgid ""
9588 "This call will also transparently look inside various types of compressed "
9589 "file."
9590 msgstr ""
9591
9592 #. type: textblock
9593 #: ../src/guestfs-actions.pod:1531 ../fish/guestfish-actions.pod:1010
9594 msgid ""
9595 "The exact command which runs is C<file -zb path>.  Note in particular that "
9596 "the filename is not prepended to the output (the I<-b> option)."
9597 msgstr ""
9598
9599 #. type: textblock
9600 #: ../src/guestfs-actions.pod:1535 ../fish/guestfish-actions.pod:1014
9601 msgid ""
9602 "The output depends on the output of the underlying L<file(1)> command and it "
9603 "can change in future in ways beyond our control.  In other words, the output "
9604 "is not guaranteed by the ABI."
9605 msgstr ""
9606
9607 #. type: textblock
9608 #: ../src/guestfs-actions.pod:1539
9609 msgid ""
9610 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
9611 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc)."
9612 msgstr ""
9613
9614 # type: =head2
9615 #. type: =head2
9616 #: ../src/guestfs-actions.pod:1547
9617 msgid "guestfs_file_architecture"
9618 msgstr ""
9619
9620 # type: verbatim
9621 #. type: verbatim
9622 #: ../src/guestfs-actions.pod:1549
9623 #, no-wrap
9624 msgid ""
9625 " char *\n"
9626 " guestfs_file_architecture (guestfs_h *g,\n"
9627 "                            const char *filename);\n"
9628 "\n"
9629 msgstr ""
9630
9631 # type: textblock
9632 #. type: textblock
9633 #: ../src/guestfs-actions.pod:1553 ../fish/guestfish-actions.pod:1025
9634 msgid ""
9635 "This detects the architecture of the binary C<filename>, and returns it if "
9636 "known."
9637 msgstr ""
9638
9639 # type: textblock
9640 #. type: textblock
9641 #: ../src/guestfs-actions.pod:1556 ../fish/guestfish-actions.pod:1028
9642 msgid "Currently defined architectures are:"
9643 msgstr ""
9644
9645 # type: =item
9646 #. type: =item
9647 #: ../src/guestfs-actions.pod:1560 ../fish/guestfish-actions.pod:1032
9648 msgid "\"i386\""
9649 msgstr ""
9650
9651 # type: textblock
9652 #. type: textblock
9653 #: ../src/guestfs-actions.pod:1562 ../fish/guestfish-actions.pod:1034
9654 msgid ""
9655 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
9656 "irrespective of the precise processor requirements of the binary."
9657 msgstr ""
9658
9659 # type: =item
9660 #. type: =item
9661 #: ../src/guestfs-actions.pod:1565 ../fish/guestfish-actions.pod:1037
9662 msgid "\"x86_64\""
9663 msgstr ""
9664
9665 # type: textblock
9666 #. type: textblock
9667 #: ../src/guestfs-actions.pod:1567 ../fish/guestfish-actions.pod:1039
9668 msgid "64 bit x86-64."
9669 msgstr ""
9670
9671 # type: =item
9672 #. type: =item
9673 #: ../src/guestfs-actions.pod:1569 ../fish/guestfish-actions.pod:1041
9674 msgid "\"sparc\""
9675 msgstr ""
9676
9677 # type: textblock
9678 #. type: textblock
9679 #: ../src/guestfs-actions.pod:1571 ../fish/guestfish-actions.pod:1043
9680 msgid "32 bit SPARC."
9681 msgstr ""
9682
9683 # type: =item
9684 #. type: =item
9685 #: ../src/guestfs-actions.pod:1573 ../fish/guestfish-actions.pod:1045
9686 msgid "\"sparc64\""
9687 msgstr ""
9688
9689 # type: textblock
9690 #. type: textblock
9691 #: ../src/guestfs-actions.pod:1575 ../fish/guestfish-actions.pod:1047
9692 msgid "64 bit SPARC V9 and above."
9693 msgstr ""
9694
9695 # type: =item
9696 #. type: =item
9697 #: ../src/guestfs-actions.pod:1577 ../fish/guestfish-actions.pod:1049
9698 msgid "\"ia64\""
9699 msgstr ""
9700
9701 # type: textblock
9702 #. type: textblock
9703 #: ../src/guestfs-actions.pod:1579 ../fish/guestfish-actions.pod:1051
9704 msgid "Intel Itanium."
9705 msgstr ""
9706
9707 # type: =item
9708 #. type: =item
9709 #: ../src/guestfs-actions.pod:1581 ../fish/guestfish-actions.pod:1053
9710 msgid "\"ppc\""
9711 msgstr ""
9712
9713 # type: textblock
9714 #. type: textblock
9715 #: ../src/guestfs-actions.pod:1583 ../fish/guestfish-actions.pod:1055
9716 msgid "32 bit Power PC."
9717 msgstr ""
9718
9719 # type: =item
9720 #. type: =item
9721 #: ../src/guestfs-actions.pod:1585 ../fish/guestfish-actions.pod:1057
9722 msgid "\"ppc64\""
9723 msgstr ""
9724
9725 # type: textblock
9726 #. type: textblock
9727 #: ../src/guestfs-actions.pod:1587 ../fish/guestfish-actions.pod:1059
9728 msgid "64 bit Power PC."
9729 msgstr ""
9730
9731 # type: textblock
9732 #. type: textblock
9733 #: ../src/guestfs-actions.pod:1591 ../fish/guestfish-actions.pod:1063
9734 msgid "Libguestfs may return other architecture strings in future."
9735 msgstr ""
9736
9737 # type: textblock
9738 #. type: textblock
9739 #: ../src/guestfs-actions.pod:1593 ../fish/guestfish-actions.pod:1065
9740 msgid "The function works on at least the following types of files:"
9741 msgstr ""
9742
9743 # type: textblock
9744 #. type: textblock
9745 #: ../src/guestfs-actions.pod:1599 ../fish/guestfish-actions.pod:1071
9746 msgid "many types of Un*x and Linux binary"
9747 msgstr ""
9748
9749 # type: textblock
9750 #. type: textblock
9751 #: ../src/guestfs-actions.pod:1603 ../fish/guestfish-actions.pod:1075
9752 msgid "many types of Un*x and Linux shared library"
9753 msgstr ""
9754
9755 # type: textblock
9756 #. type: textblock
9757 #: ../src/guestfs-actions.pod:1607 ../fish/guestfish-actions.pod:1079
9758 msgid "Windows Win32 and Win64 binaries"
9759 msgstr ""
9760
9761 # type: textblock
9762 #. type: textblock
9763 #: ../src/guestfs-actions.pod:1611 ../fish/guestfish-actions.pod:1083
9764 msgid "Windows Win32 and Win64 DLLs"
9765 msgstr ""
9766
9767 # type: textblock
9768 #. type: textblock
9769 #: ../src/guestfs-actions.pod:1613 ../fish/guestfish-actions.pod:1085
9770 msgid "Win32 binaries and DLLs return C<i386>."
9771 msgstr ""
9772
9773 # type: textblock
9774 #. type: textblock
9775 #: ../src/guestfs-actions.pod:1615 ../fish/guestfish-actions.pod:1087
9776 msgid "Win64 binaries and DLLs return C<x86_64>."
9777 msgstr ""
9778
9779 # type: textblock
9780 #. type: textblock
9781 #: ../src/guestfs-actions.pod:1619 ../fish/guestfish-actions.pod:1091
9782 msgid "Linux kernel modules"
9783 msgstr ""
9784
9785 # type: textblock
9786 #. type: textblock
9787 #: ../src/guestfs-actions.pod:1623 ../fish/guestfish-actions.pod:1095
9788 msgid "Linux new-style initrd images"
9789 msgstr ""
9790
9791 # type: textblock
9792 #. type: textblock
9793 #: ../src/guestfs-actions.pod:1627 ../fish/guestfish-actions.pod:1099
9794 msgid "some non-x86 Linux vmlinuz kernels"
9795 msgstr ""
9796
9797 # type: textblock
9798 #. type: textblock
9799 #: ../src/guestfs-actions.pod:1631 ../fish/guestfish-actions.pod:1103
9800 msgid "What it can't do currently:"
9801 msgstr ""
9802
9803 # type: textblock
9804 #. type: textblock
9805 #: ../src/guestfs-actions.pod:1637 ../fish/guestfish-actions.pod:1109
9806 msgid "static libraries (libfoo.a)"
9807 msgstr ""
9808
9809 # type: textblock
9810 #. type: textblock
9811 #: ../src/guestfs-actions.pod:1641 ../fish/guestfish-actions.pod:1113
9812 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
9813 msgstr ""
9814
9815 # type: textblock
9816 #. type: textblock
9817 #: ../src/guestfs-actions.pod:1645 ../fish/guestfish-actions.pod:1117
9818 msgid "x86 Linux vmlinuz kernels"
9819 msgstr ""
9820
9821 # type: textblock
9822 #. type: textblock
9823 #: ../src/guestfs-actions.pod:1647 ../fish/guestfish-actions.pod:1119
9824 msgid ""
9825 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
9826 "compressed code, and are horribly hard to unpack.  If you want to find the "
9827 "architecture of a kernel, use the architecture of the associated initrd or "
9828 "kernel module(s) instead."
9829 msgstr ""
9830
9831 # type: textblock
9832 #. type: textblock
9833 #: ../src/guestfs-actions.pod:1657 ../src/guestfs-actions.pod:1820
9834 #: ../src/guestfs-actions.pod:1837 ../src/guestfs-actions.pod:2528
9835 #: ../src/guestfs-actions.pod:2621 ../src/guestfs-actions.pod:2691
9836 #: ../src/guestfs-actions.pod:2779 ../src/guestfs-actions.pod:2800
9837 #: ../src/guestfs-actions.pod:2843 ../src/guestfs-actions.pod:2927
9838 #: ../src/guestfs-actions.pod:3024 ../src/guestfs-actions.pod:3271
9839 #: ../src/guestfs-actions.pod:3403
9840 msgid "(Added in 1.5.3)"
9841 msgstr ""
9842
9843 # type: =head2
9844 #. type: =head2
9845 #: ../src/guestfs-actions.pod:1659
9846 msgid "guestfs_filesize"
9847 msgstr ""
9848
9849 # type: verbatim
9850 #. type: verbatim
9851 #: ../src/guestfs-actions.pod:1661
9852 #, no-wrap
9853 msgid ""
9854 " int64_t\n"
9855 " guestfs_filesize (guestfs_h *g,\n"
9856 "                   const char *file);\n"
9857 "\n"
9858 msgstr ""
9859
9860 # type: textblock
9861 #. type: textblock
9862 #: ../src/guestfs-actions.pod:1665 ../fish/guestfish-actions.pod:1130
9863 msgid "This command returns the size of C<file> in bytes."
9864 msgstr ""
9865
9866 # type: textblock
9867 #. type: textblock
9868 #: ../src/guestfs-actions.pod:1667
9869 msgid ""
9870 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
9871 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
9872 "devices, use C<guestfs_blockdev_getsize64>."
9873 msgstr ""
9874
9875 # type: textblock
9876 #. type: textblock
9877 #: ../src/guestfs-actions.pod:1673
9878 msgid "(Added in 1.0.82)"
9879 msgstr ""
9880
9881 # type: =head2
9882 #. type: =head2
9883 #: ../src/guestfs-actions.pod:1675
9884 msgid "guestfs_fill"
9885 msgstr ""
9886
9887 # type: verbatim
9888 #. type: verbatim
9889 #: ../src/guestfs-actions.pod:1677
9890 #, no-wrap
9891 msgid ""
9892 " int\n"
9893 " guestfs_fill (guestfs_h *g,\n"
9894 "               int c,\n"
9895 "               int len,\n"
9896 "               const char *path);\n"
9897 "\n"
9898 msgstr ""
9899
9900 # type: textblock
9901 #. type: textblock
9902 #: ../src/guestfs-actions.pod:1683 ../fish/guestfish-actions.pod:1140
9903 msgid ""
9904 "This command creates a new file called C<path>.  The initial content of the "
9905 "file is C<len> octets of C<c>, where C<c> must be a number in the range C<"
9906 "[0..255]>."
9907 msgstr ""
9908
9909 # type: textblock
9910 #. type: textblock
9911 #: ../src/guestfs-actions.pod:1687
9912 msgid ""
9913 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
9914 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
9915 "bytes use C<guestfs_fill_pattern>."
9916 msgstr ""
9917
9918 # type: textblock
9919 #. type: textblock
9920 #: ../src/guestfs-actions.pod:1699
9921 msgid "(Added in 1.0.79)"
9922 msgstr ""
9923
9924 # type: =head2
9925 #. type: =head2
9926 #: ../src/guestfs-actions.pod:1701
9927 msgid "guestfs_fill_pattern"
9928 msgstr ""
9929
9930 # type: verbatim
9931 #. type: verbatim
9932 #: ../src/guestfs-actions.pod:1703
9933 #, no-wrap
9934 msgid ""
9935 " int\n"
9936 " guestfs_fill_pattern (guestfs_h *g,\n"
9937 "                       const char *pattern,\n"
9938 "                       int len,\n"
9939 "                       const char *path);\n"
9940 "\n"
9941 msgstr ""
9942
9943 # type: textblock
9944 #. type: textblock
9945 #: ../src/guestfs-actions.pod:1709
9946 msgid ""
9947 "This function is like C<guestfs_fill> except that it creates a new file of "
9948 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
9949 "pattern is truncated if necessary to ensure the length of the file is "
9950 "exactly C<len> bytes."
9951 msgstr ""
9952
9953 # type: textblock
9954 #. type: textblock
9955 #: ../src/guestfs-actions.pod:1721
9956 msgid "(Added in 1.3.12)"
9957 msgstr ""
9958
9959 # type: =head2
9960 #. type: =head2
9961 #: ../src/guestfs-actions.pod:1723
9962 msgid "guestfs_find"
9963 msgstr ""
9964
9965 # type: verbatim
9966 #. type: verbatim
9967 #: ../src/guestfs-actions.pod:1725
9968 #, no-wrap
9969 msgid ""
9970 " char **\n"
9971 " guestfs_find (guestfs_h *g,\n"
9972 "               const char *directory);\n"
9973 "\n"
9974 msgstr ""
9975
9976 # type: textblock
9977 #. type: textblock
9978 #: ../src/guestfs-actions.pod:1729 ../fish/guestfish-actions.pod:1162
9979 msgid ""
9980 "This command lists out all files and directories, recursively, starting at "
9981 "C<directory>.  It is essentially equivalent to running the shell command "
9982 "C<find directory -print> but some post-processing happens on the output, "
9983 "described below."
9984 msgstr ""
9985
9986 # type: textblock
9987 #. type: textblock
9988 #: ../src/guestfs-actions.pod:1734 ../fish/guestfish-actions.pod:1167
9989 msgid ""
9990 "This returns a list of strings I<without any prefix>.  Thus if the directory "
9991 "structure was:"
9992 msgstr ""
9993
9994 # type: verbatim
9995 #. type: verbatim
9996 #: ../src/guestfs-actions.pod:1737 ../fish/guestfish-actions.pod:1170
9997 #, no-wrap
9998 msgid ""
9999 " /tmp/a\n"
10000 " /tmp/b\n"
10001 " /tmp/c/d\n"
10002 "\n"
10003 msgstr ""
10004
10005 # type: textblock
10006 #. type: textblock
10007 #: ../src/guestfs-actions.pod:1741
10008 msgid ""
10009 "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
10010 msgstr ""
10011
10012 # type: verbatim
10013 #. type: verbatim
10014 #: ../src/guestfs-actions.pod:1744 ../fish/guestfish-actions.pod:1177
10015 #, no-wrap
10016 msgid ""
10017 " a\n"
10018 " b\n"
10019 " c\n"
10020 " c/d\n"
10021 "\n"
10022 msgstr ""
10023
10024 # type: textblock
10025 #. type: textblock
10026 #: ../src/guestfs-actions.pod:1749 ../fish/guestfish-actions.pod:1182
10027 msgid "If C<directory> is not a directory, then this command returns an error."
10028 msgstr ""
10029
10030 # type: textblock
10031 #. type: textblock
10032 #: ../src/guestfs-actions.pod:1752 ../fish/guestfish-actions.pod:1185
10033 msgid "The returned list is sorted."
10034 msgstr ""
10035
10036 # type: textblock
10037 #. type: textblock
10038 #: ../src/guestfs-actions.pod:1754
10039 msgid "See also C<guestfs_find0>."
10040 msgstr ""
10041
10042 # type: textblock
10043 #. type: textblock
10044 #: ../src/guestfs-actions.pod:1763 ../src/guestfs-actions.pod:4097
10045 #: ../src/guestfs-actions.pod:5656
10046 msgid "(Added in 1.0.27)"
10047 msgstr ""
10048
10049 # type: =head2
10050 #. type: =head2
10051 #: ../src/guestfs-actions.pod:1765
10052 msgid "guestfs_find0"
10053 msgstr ""
10054
10055 # type: verbatim
10056 #. type: verbatim
10057 #: ../src/guestfs-actions.pod:1767
10058 #, no-wrap
10059 msgid ""
10060 " int\n"
10061 " guestfs_find0 (guestfs_h *g,\n"
10062 "                const char *directory,\n"
10063 "                const char *files);\n"
10064 "\n"
10065 msgstr ""
10066
10067 # type: textblock
10068 #. type: textblock
10069 #: ../src/guestfs-actions.pod:1772 ../fish/guestfish-actions.pod:1196
10070 msgid ""
10071 "This command lists out all files and directories, recursively, starting at "
10072 "C<directory>, placing the resulting list in the external file called "
10073 "C<files>."
10074 msgstr ""
10075
10076 # type: textblock
10077 #. type: textblock
10078 #: ../src/guestfs-actions.pod:1776
10079 msgid ""
10080 "This command works the same way as C<guestfs_find> with the following "
10081 "exceptions:"
10082 msgstr ""
10083
10084 # type: textblock
10085 #. type: textblock
10086 #: ../src/guestfs-actions.pod:1783 ../fish/guestfish-actions.pod:1207
10087 msgid "The resulting list is written to an external file."
10088 msgstr ""
10089
10090 # type: textblock
10091 #. type: textblock
10092 #: ../src/guestfs-actions.pod:1787 ../fish/guestfish-actions.pod:1211
10093 msgid ""
10094 "Items (filenames) in the result are separated by C<\\0> characters.  See "
10095 "L<find(1)> option I<-print0>."
10096 msgstr ""
10097
10098 # type: textblock
10099 #. type: textblock
10100 #: ../src/guestfs-actions.pod:1792 ../fish/guestfish-actions.pod:1216
10101 msgid "This command is not limited in the number of names that it can return."
10102 msgstr ""
10103
10104 # type: textblock
10105 #. type: textblock
10106 #: ../src/guestfs-actions.pod:1797 ../fish/guestfish-actions.pod:1221
10107 msgid "The result list is not sorted."
10108 msgstr ""
10109
10110 # type: textblock
10111 #. type: textblock
10112 #: ../src/guestfs-actions.pod:1803
10113 msgid "(Added in 1.0.74)"
10114 msgstr ""
10115
10116 # type: =head2
10117 #. type: =head2
10118 #: ../src/guestfs-actions.pod:1805
10119 msgid "guestfs_findfs_label"
10120 msgstr ""
10121
10122 # type: verbatim
10123 #. type: verbatim
10124 #: ../src/guestfs-actions.pod:1807
10125 #, no-wrap
10126 msgid ""
10127 " char *\n"
10128 " guestfs_findfs_label (guestfs_h *g,\n"
10129 "                       const char *label);\n"
10130 "\n"
10131 msgstr ""
10132
10133 # type: textblock
10134 #. type: textblock
10135 #: ../src/guestfs-actions.pod:1811 ../fish/guestfish-actions.pod:1231
10136 msgid ""
10137 "This command searches the filesystems and returns the one which has the "
10138 "given label.  An error is returned if no such filesystem can be found."
10139 msgstr ""
10140
10141 # type: textblock
10142 #. type: textblock
10143 #: ../src/guestfs-actions.pod:1815
10144 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
10145 msgstr ""
10146
10147 # type: =head2
10148 #. type: =head2
10149 #: ../src/guestfs-actions.pod:1822
10150 msgid "guestfs_findfs_uuid"
10151 msgstr ""
10152
10153 # type: verbatim
10154 #. type: verbatim
10155 #: ../src/guestfs-actions.pod:1824
10156 #, no-wrap
10157 msgid ""
10158 " char *\n"
10159 " guestfs_findfs_uuid (guestfs_h *g,\n"
10160 "                      const char *uuid);\n"
10161 "\n"
10162 msgstr ""
10163
10164 # type: textblock
10165 #. type: textblock
10166 #: ../src/guestfs-actions.pod:1828 ../fish/guestfish-actions.pod:1241
10167 msgid ""
10168 "This command searches the filesystems and returns the one which has the "
10169 "given UUID.  An error is returned if no such filesystem can be found."
10170 msgstr ""
10171
10172 # type: textblock
10173 #. type: textblock
10174 #: ../src/guestfs-actions.pod:1832
10175 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
10176 msgstr ""
10177
10178 # type: =head2
10179 #. type: =head2
10180 #: ../src/guestfs-actions.pod:1839
10181 msgid "guestfs_fsck"
10182 msgstr ""
10183
10184 # type: verbatim
10185 #. type: verbatim
10186 #: ../src/guestfs-actions.pod:1841
10187 #, no-wrap
10188 msgid ""
10189 " int\n"
10190 " guestfs_fsck (guestfs_h *g,\n"
10191 "               const char *fstype,\n"
10192 "               const char *device);\n"
10193 "\n"
10194 msgstr ""
10195
10196 # type: textblock
10197 #. type: textblock
10198 #: ../src/guestfs-actions.pod:1846 ../fish/guestfish-actions.pod:1251
10199 msgid ""
10200 "This runs the filesystem checker (fsck) on C<device> which should have "
10201 "filesystem type C<fstype>."
10202 msgstr ""
10203
10204 # type: textblock
10205 #. type: textblock
10206 #: ../src/guestfs-actions.pod:1849 ../fish/guestfish-actions.pod:1254
10207 msgid ""
10208 "The returned integer is the status.  See L<fsck(8)> for the list of status "
10209 "codes from C<fsck>."
10210 msgstr ""
10211
10212 # type: textblock
10213 #. type: textblock
10214 #: ../src/guestfs-actions.pod:1858 ../fish/guestfish-actions.pod:1263
10215 msgid "Multiple status codes can be summed together."
10216 msgstr ""
10217
10218 # type: textblock
10219 #. type: textblock
10220 #: ../src/guestfs-actions.pod:1862 ../fish/guestfish-actions.pod:1267
10221 msgid ""
10222 "A non-zero return code can mean \"success\", for example if errors have been "
10223 "corrected on the filesystem."
10224 msgstr ""
10225
10226 # type: textblock
10227 #. type: textblock
10228 #: ../src/guestfs-actions.pod:1867 ../fish/guestfish-actions.pod:1272
10229 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
10230 msgstr ""
10231
10232 # type: textblock
10233 #. type: textblock
10234 #: ../src/guestfs-actions.pod:1872 ../fish/guestfish-actions.pod:1277
10235 msgid ""
10236 "This command is entirely equivalent to running C<fsck -a -t fstype device>."
10237 msgstr ""
10238
10239 # type: textblock
10240 #. type: textblock
10241 #: ../src/guestfs-actions.pod:1876 ../src/guestfs-actions.pod:7387
10242 msgid "(Added in 1.0.16)"
10243 msgstr ""
10244
10245 # type: =head2
10246 #. type: =head2
10247 #: ../src/guestfs-actions.pod:1878
10248 msgid "guestfs_get_append"
10249 msgstr ""
10250
10251 # type: verbatim
10252 #. type: verbatim
10253 #: ../src/guestfs-actions.pod:1880
10254 #, no-wrap
10255 msgid ""
10256 " const char *\n"
10257 " guestfs_get_append (guestfs_h *g);\n"
10258 "\n"
10259 msgstr ""
10260
10261 # type: textblock
10262 #. type: textblock
10263 #: ../src/guestfs-actions.pod:1883 ../fish/guestfish-actions.pod:1283
10264 msgid ""
10265 "Return the additional kernel options which are added to the guest kernel "
10266 "command line."
10267 msgstr ""
10268
10269 # type: textblock
10270 #. type: textblock
10271 #: ../src/guestfs-actions.pod:1886 ../fish/guestfish-actions.pod:1286
10272 msgid "If C<NULL> then no options are added."
10273 msgstr ""
10274
10275 # type: textblock
10276 #. type: textblock
10277 #: ../src/guestfs-actions.pod:1888
10278 msgid ""
10279 "This function returns a string which may be NULL.  There is no way to return "
10280 "an error from this function.  The string is owned by the guest handle and "
10281 "must I<not> be freed."
10282 msgstr ""
10283
10284 # type: textblock
10285 #. type: textblock
10286 #: ../src/guestfs-actions.pod:1892 ../src/guestfs-actions.pod:5334
10287 #: ../src/guestfs-actions.pod:5814 ../src/guestfs-actions.pod:6235
10288 #: ../src/guestfs-actions.pod:6254 ../src/guestfs-actions.pod:6270
10289 #: ../src/guestfs-actions.pod:6294 ../src/guestfs-actions.pod:7051
10290 #: ../src/guestfs-actions.pod:7069 ../src/guestfs-actions.pod:7430
10291 msgid "(Added in 1.0.26)"
10292 msgstr ""
10293
10294 #. type: =head2
10295 #: ../src/guestfs-actions.pod:1894
10296 msgid "guestfs_get_attach_method"
10297 msgstr ""
10298
10299 #. type: verbatim
10300 #: ../src/guestfs-actions.pod:1896
10301 #, no-wrap
10302 msgid ""
10303 " char *\n"
10304 " guestfs_get_attach_method (guestfs_h *g);\n"
10305 "\n"
10306 msgstr ""
10307
10308 #. type: textblock
10309 #: ../src/guestfs-actions.pod:1899
10310 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
10311 msgstr ""
10312
10313 # type: =head2
10314 #. type: =head2
10315 #: ../src/guestfs-actions.pod:1904
10316 msgid "guestfs_get_autosync"
10317 msgstr ""
10318
10319 # type: verbatim
10320 #. type: verbatim
10321 #: ../src/guestfs-actions.pod:1906
10322 #, no-wrap
10323 msgid ""
10324 " int\n"
10325 " guestfs_get_autosync (guestfs_h *g);\n"
10326 "\n"
10327 msgstr ""
10328
10329 # type: textblock
10330 #. type: textblock
10331 #: ../src/guestfs-actions.pod:1909 ../fish/guestfish-actions.pod:1298
10332 msgid "Get the autosync flag."
10333 msgstr ""
10334
10335 # type: =head2
10336 #. type: =head2
10337 #: ../src/guestfs-actions.pod:1915
10338 msgid "guestfs_get_direct"
10339 msgstr ""
10340
10341 # type: verbatim
10342 #. type: verbatim
10343 #: ../src/guestfs-actions.pod:1917
10344 #, no-wrap
10345 msgid ""
10346 " int\n"
10347 " guestfs_get_direct (guestfs_h *g);\n"
10348 "\n"
10349 msgstr ""
10350
10351 # type: textblock
10352 #. type: textblock
10353 #: ../src/guestfs-actions.pod:1920 ../fish/guestfish-actions.pod:1304
10354 msgid "Return the direct appliance mode flag."
10355 msgstr ""
10356
10357 # type: textblock
10358 #. type: textblock
10359 #: ../src/guestfs-actions.pod:1924 ../src/guestfs-actions.pod:5883
10360 msgid "(Added in 1.0.72)"
10361 msgstr ""
10362
10363 # type: =head2
10364 #. type: =head2
10365 #: ../src/guestfs-actions.pod:1926
10366 msgid "guestfs_get_e2label"
10367 msgstr ""
10368
10369 # type: verbatim
10370 #. type: verbatim
10371 #: ../src/guestfs-actions.pod:1928
10372 #, no-wrap
10373 msgid ""
10374 " char *\n"
10375 " guestfs_get_e2label (guestfs_h *g,\n"
10376 "                      const char *device);\n"
10377 "\n"
10378 msgstr ""
10379
10380 # type: textblock
10381 #. type: textblock
10382 #: ../src/guestfs-actions.pod:1932 ../fish/guestfish-actions.pod:1310
10383 msgid ""
10384 "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
10385 msgstr ""
10386
10387 #. type: textblock
10388 #: ../src/guestfs-actions.pod:1938
10389 msgid ""
10390 "This function is deprecated.  In new code, use the L</guestfs_vfs_label> "
10391 "call instead."
10392 msgstr ""
10393
10394 # type: textblock
10395 #. type: textblock
10396 #: ../src/guestfs-actions.pod:1945 ../src/guestfs-actions.pod:1966
10397 #: ../src/guestfs-actions.pod:5901 ../src/guestfs-actions.pod:5920
10398 msgid "(Added in 1.0.15)"
10399 msgstr ""
10400
10401 # type: =head2
10402 #. type: =head2
10403 #: ../src/guestfs-actions.pod:1947
10404 msgid "guestfs_get_e2uuid"
10405 msgstr ""
10406
10407 # type: verbatim
10408 #. type: verbatim
10409 #: ../src/guestfs-actions.pod:1949
10410 #, no-wrap
10411 msgid ""
10412 " char *\n"
10413 " guestfs_get_e2uuid (guestfs_h *g,\n"
10414 "                     const char *device);\n"
10415 "\n"
10416 msgstr ""
10417
10418 # type: textblock
10419 #. type: textblock
10420 #: ../src/guestfs-actions.pod:1953 ../fish/guestfish-actions.pod:1324
10421 msgid ""
10422 "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
10423 msgstr ""
10424
10425 #. type: textblock
10426 #: ../src/guestfs-actions.pod:1959
10427 msgid ""
10428 "This function is deprecated.  In new code, use the L</guestfs_vfs_uuid> call "
10429 "instead."
10430 msgstr ""
10431
10432 # type: =head2
10433 #. type: =head2
10434 #: ../src/guestfs-actions.pod:1968
10435 msgid "guestfs_get_memsize"
10436 msgstr ""
10437
10438 # type: verbatim
10439 #. type: verbatim
10440 #: ../src/guestfs-actions.pod:1970
10441 #, no-wrap
10442 msgid ""
10443 " int\n"
10444 " guestfs_get_memsize (guestfs_h *g);\n"
10445 "\n"
10446 msgstr ""
10447
10448 # type: textblock
10449 #. type: textblock
10450 #: ../src/guestfs-actions.pod:1973 ../fish/guestfish-actions.pod:1338
10451 msgid ""
10452 "This gets the memory size in megabytes allocated to the qemu subprocess."
10453 msgstr ""
10454
10455 # type: textblock
10456 #. type: textblock
10457 #: ../src/guestfs-actions.pod:1976
10458 msgid ""
10459 "If C<guestfs_set_memsize> was not called on this handle, and if "
10460 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
10461 "value for memsize."
10462 msgstr ""
10463
10464 # type: textblock
10465 #. type: textblock
10466 #: ../src/guestfs-actions.pod:1980 ../src/guestfs-actions.pod:2061
10467 #: ../src/guestfs-actions.pod:5936 ../src/guestfs-actions.pod:6043
10468 #: ../fish/guestfish-actions.pod:1345 ../fish/guestfish-actions.pod:1396
10469 #: ../fish/guestfish-actions.pod:4006 ../fish/guestfish-actions.pod:4093
10470 msgid ""
10471 "For more information on the architecture of libguestfs, see L<guestfs(3)>."
10472 msgstr ""
10473
10474 # type: textblock
10475 #. type: textblock
10476 #: ../src/guestfs-actions.pod:1985 ../src/guestfs-actions.pod:4388
10477 #: ../src/guestfs-actions.pod:4585 ../src/guestfs-actions.pod:4604
10478 #: ../src/guestfs-actions.pod:4623 ../src/guestfs-actions.pod:4635
10479 #: ../src/guestfs-actions.pod:4652 ../src/guestfs-actions.pod:4665
10480 #: ../src/guestfs-actions.pod:5559 ../src/guestfs-actions.pod:5941
10481 #: ../src/guestfs-actions.pod:6202 ../src/guestfs-actions.pod:6817
10482 msgid "(Added in 1.0.55)"
10483 msgstr ""
10484
10485 # type: =head2
10486 #. type: =head2
10487 #: ../src/guestfs-actions.pod:1987
10488 msgid "guestfs_get_network"
10489 msgstr ""
10490
10491 # type: verbatim
10492 #. type: verbatim
10493 #: ../src/guestfs-actions.pod:1989
10494 #, no-wrap
10495 msgid ""
10496 " int\n"
10497 " guestfs_get_network (guestfs_h *g);\n"
10498 "\n"
10499 msgstr ""
10500
10501 # type: textblock
10502 #. type: textblock
10503 #: ../src/guestfs-actions.pod:1992 ../fish/guestfish-actions.pod:1352
10504 msgid "This returns the enable network flag."
10505 msgstr ""
10506
10507 # type: textblock
10508 #. type: textblock
10509 #: ../src/guestfs-actions.pod:1996 ../src/guestfs-actions.pod:5960
10510 msgid "(Added in 1.5.4)"
10511 msgstr ""
10512
10513 # type: =head2
10514 #. type: =head2
10515 #: ../src/guestfs-actions.pod:1998
10516 msgid "guestfs_get_path"
10517 msgstr ""
10518
10519 # type: verbatim
10520 #. type: verbatim
10521 #: ../src/guestfs-actions.pod:2000
10522 #, no-wrap
10523 msgid ""
10524 " const char *\n"
10525 " guestfs_get_path (guestfs_h *g);\n"
10526 "\n"
10527 msgstr ""
10528
10529 # type: textblock
10530 #. type: textblock
10531 #: ../src/guestfs-actions.pod:2003 ../fish/guestfish-actions.pod:1358
10532 msgid "Return the current search path."
10533 msgstr ""
10534
10535 # type: textblock
10536 #. type: textblock
10537 #: ../src/guestfs-actions.pod:2005 ../fish/guestfish-actions.pod:1360
10538 msgid ""
10539 "This is always non-NULL.  If it wasn't set already, then this will return "
10540 "the default path."
10541 msgstr ""
10542
10543 # type: textblock
10544 #. type: textblock
10545 #: ../src/guestfs-actions.pod:2008 ../src/guestfs-actions.pod:2037
10546 msgid ""
10547 "This function returns a string, or NULL on error.  The string is owned by "
10548 "the guest handle and must I<not> be freed."
10549 msgstr ""
10550
10551 # type: =head2
10552 #. type: =head2
10553 #: ../src/guestfs-actions.pod:2013
10554 msgid "guestfs_get_pid"
10555 msgstr ""
10556
10557 # type: verbatim
10558 #. type: verbatim
10559 #: ../src/guestfs-actions.pod:2015
10560 #, no-wrap
10561 msgid ""
10562 " int\n"
10563 " guestfs_get_pid (guestfs_h *g);\n"
10564 "\n"
10565 msgstr ""
10566
10567 # type: textblock
10568 #. type: textblock
10569 #: ../src/guestfs-actions.pod:2018 ../fish/guestfish-actions.pod:1369
10570 msgid ""
10571 "Return the process ID of the qemu subprocess.  If there is no qemu "
10572 "subprocess, then this will return an error."
10573 msgstr ""
10574
10575 # type: textblock
10576 #. type: textblock
10577 #: ../src/guestfs-actions.pod:2021 ../fish/guestfish-actions.pod:1372
10578 msgid "This is an internal call used for debugging and testing."
10579 msgstr ""
10580
10581 # type: textblock
10582 #. type: textblock
10583 #: ../src/guestfs-actions.pod:2025
10584 msgid "(Added in 1.0.56)"
10585 msgstr ""
10586
10587 # type: =head2
10588 #. type: =head2
10589 #: ../src/guestfs-actions.pod:2027
10590 msgid "guestfs_get_qemu"
10591 msgstr ""
10592
10593 # type: verbatim
10594 #. type: verbatim
10595 #: ../src/guestfs-actions.pod:2029
10596 #, no-wrap
10597 msgid ""
10598 " const char *\n"
10599 " guestfs_get_qemu (guestfs_h *g);\n"
10600 "\n"
10601 msgstr ""
10602
10603 # type: textblock
10604 #. type: textblock
10605 #: ../src/guestfs-actions.pod:2032 ../fish/guestfish-actions.pod:1378
10606 msgid "Return the current qemu binary."
10607 msgstr ""
10608
10609 # type: textblock
10610 #. type: textblock
10611 #: ../src/guestfs-actions.pod:2034 ../fish/guestfish-actions.pod:1380
10612 msgid ""
10613 "This is always non-NULL.  If it wasn't set already, then this will return "
10614 "the default qemu binary name."
10615 msgstr ""
10616
10617 # type: textblock
10618 #. type: textblock
10619 #: ../src/guestfs-actions.pod:2040 ../src/guestfs-actions.pod:6005
10620 msgid "(Added in 1.0.6)"
10621 msgstr ""
10622
10623 # type: =head2
10624 #. type: =head2
10625 #: ../src/guestfs-actions.pod:2042
10626 msgid "guestfs_get_recovery_proc"
10627 msgstr ""
10628
10629 # type: verbatim
10630 #. type: verbatim
10631 #: ../src/guestfs-actions.pod:2044
10632 #, no-wrap
10633 msgid ""
10634 " int\n"
10635 " guestfs_get_recovery_proc (guestfs_h *g);\n"
10636 "\n"
10637 msgstr ""
10638
10639 # type: textblock
10640 #. type: textblock
10641 #: ../src/guestfs-actions.pod:2047 ../fish/guestfish-actions.pod:1387
10642 msgid "Return the recovery process enabled flag."
10643 msgstr ""
10644
10645 # type: textblock
10646 #. type: textblock
10647 #: ../src/guestfs-actions.pod:2051 ../src/guestfs-actions.pod:3498
10648 #: ../src/guestfs-actions.pod:3795 ../src/guestfs-actions.pod:4195
10649 #: ../src/guestfs-actions.pod:4227 ../src/guestfs-actions.pod:5264
10650 #: ../src/guestfs-actions.pod:5607 ../src/guestfs-actions.pod:6029
10651 #: ../src/guestfs-actions.pod:6720 ../src/guestfs-actions.pod:6740
10652 #: ../src/guestfs-actions.pod:6932
10653 msgid "(Added in 1.0.77)"
10654 msgstr ""
10655
10656 # type: =head2
10657 #. type: =head2
10658 #: ../src/guestfs-actions.pod:2053
10659 msgid "guestfs_get_selinux"
10660 msgstr ""
10661
10662 # type: verbatim
10663 #. type: verbatim
10664 #: ../src/guestfs-actions.pod:2055
10665 #, no-wrap
10666 msgid ""
10667 " int\n"
10668 " guestfs_get_selinux (guestfs_h *g);\n"
10669 "\n"
10670 msgstr ""
10671
10672 # type: textblock
10673 #. type: textblock
10674 #: ../src/guestfs-actions.pod:2058
10675 msgid ""
10676 "This returns the current setting of the selinux flag which is passed to the "
10677 "appliance at boot time.  See C<guestfs_set_selinux>."
10678 msgstr ""
10679
10680 # type: textblock
10681 #. type: textblock
10682 #: ../src/guestfs-actions.pod:2066 ../src/guestfs-actions.pod:2129
10683 #: ../src/guestfs-actions.pod:6048 ../src/guestfs-actions.pod:6106
10684 msgid "(Added in 1.0.67)"
10685 msgstr ""
10686
10687 # type: =head2
10688 #. type: =head2
10689 #: ../src/guestfs-actions.pod:2068
10690 msgid "guestfs_get_state"
10691 msgstr ""
10692
10693 # type: verbatim
10694 #. type: verbatim
10695 #: ../src/guestfs-actions.pod:2070
10696 #, no-wrap
10697 msgid ""
10698 " int\n"
10699 " guestfs_get_state (guestfs_h *g);\n"
10700 "\n"
10701 msgstr ""
10702
10703 # type: textblock
10704 #. type: textblock
10705 #: ../src/guestfs-actions.pod:2073 ../fish/guestfish-actions.pod:1403
10706 msgid ""
10707 "This returns the current state as an opaque integer.  This is only useful "
10708 "for printing debug and internal error messages."
10709 msgstr ""
10710
10711 # type: textblock
10712 #. type: textblock
10713 #: ../src/guestfs-actions.pod:2076 ../src/guestfs-actions.pod:3296
10714 #: ../src/guestfs-actions.pod:3325 ../src/guestfs-actions.pod:3386
10715 #: ../src/guestfs-actions.pod:3413 ../fish/guestfish-actions.pod:1406
10716 #: ../fish/guestfish-actions.pod:2320 ../fish/guestfish-actions.pod:2338
10717 #: ../fish/guestfish-actions.pod:2376 ../fish/guestfish-actions.pod:2392
10718 msgid "For more information on states, see L<guestfs(3)>."
10719 msgstr ""
10720
10721 # type: =head2
10722 #. type: =head2
10723 #: ../src/guestfs-actions.pod:2082
10724 msgid "guestfs_get_trace"
10725 msgstr ""
10726
10727 # type: verbatim
10728 #. type: verbatim
10729 #: ../src/guestfs-actions.pod:2084
10730 #, no-wrap
10731 msgid ""
10732 " int\n"
10733 " guestfs_get_trace (guestfs_h *g);\n"
10734 "\n"
10735 msgstr ""
10736
10737 # type: textblock
10738 #. type: textblock
10739 #: ../src/guestfs-actions.pod:2087 ../fish/guestfish-actions.pod:1412
10740 msgid "Return the command trace flag."
10741 msgstr ""
10742
10743 # type: =head2
10744 #. type: =head2
10745 #: ../src/guestfs-actions.pod:2093
10746 msgid "guestfs_get_umask"
10747 msgstr ""
10748
10749 # type: verbatim
10750 #. type: verbatim
10751 #: ../src/guestfs-actions.pod:2095
10752 #, no-wrap
10753 msgid ""
10754 " int\n"
10755 " guestfs_get_umask (guestfs_h *g);\n"
10756 "\n"
10757 msgstr ""
10758
10759 # type: textblock
10760 #. type: textblock
10761 #: ../src/guestfs-actions.pod:2098
10762 msgid ""
10763 "Return the current umask.  By default the umask is C<022> unless it has been "
10764 "set by calling C<guestfs_umask>."
10765 msgstr ""
10766
10767 # type: =head2
10768 #. type: =head2
10769 #: ../src/guestfs-actions.pod:2105
10770 msgid "guestfs_get_verbose"
10771 msgstr ""
10772
10773 # type: verbatim
10774 #. type: verbatim
10775 #: ../src/guestfs-actions.pod:2107
10776 #, no-wrap
10777 msgid ""
10778 " int\n"
10779 " guestfs_get_verbose (guestfs_h *g);\n"
10780 "\n"
10781 msgstr ""
10782
10783 # type: textblock
10784 #. type: textblock
10785 #: ../src/guestfs-actions.pod:2110 ../fish/guestfish-actions.pod:1425
10786 msgid "This returns the verbose messages flag."
10787 msgstr ""
10788
10789 # type: =head2
10790 #. type: =head2
10791 #: ../src/guestfs-actions.pod:2116
10792 msgid "guestfs_getcon"
10793 msgstr ""
10794
10795 # type: verbatim
10796 #. type: verbatim
10797 #: ../src/guestfs-actions.pod:2118
10798 #, no-wrap
10799 msgid ""
10800 " char *\n"
10801 " guestfs_getcon (guestfs_h *g);\n"
10802 "\n"
10803 msgstr ""
10804
10805 # type: textblock
10806 #. type: textblock
10807 #: ../src/guestfs-actions.pod:2121 ../fish/guestfish-actions.pod:1431
10808 msgid "This gets the SELinux security context of the daemon."
10809 msgstr ""
10810
10811 # type: textblock
10812 #. type: textblock
10813 #: ../src/guestfs-actions.pod:2123
10814 msgid ""
10815 "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
10816 msgstr ""
10817
10818 # type: =head2
10819 #. type: =head2
10820 #: ../src/guestfs-actions.pod:2131
10821 msgid "guestfs_getxattr"
10822 msgstr ""
10823
10824 # type: verbatim
10825 #. type: verbatim
10826 #: ../src/guestfs-actions.pod:2133
10827 #, no-wrap
10828 msgid ""
10829 " char *\n"
10830 " guestfs_getxattr (guestfs_h *g,\n"
10831 "                   const char *path,\n"
10832 "                   const char *name,\n"
10833 "                   size_t *size_r);\n"
10834 "\n"
10835 msgstr ""
10836
10837 # type: textblock
10838 #. type: textblock
10839 #: ../src/guestfs-actions.pod:2139
10840 msgid ""
10841 "Get a single extended attribute from file C<path> named C<name>.  This call "
10842 "follows symlinks.  If you want to lookup an extended attribute for the "
10843 "symlink itself, use C<guestfs_lgetxattr>."
10844 msgstr ""
10845
10846 # type: textblock
10847 #. type: textblock
10848 #: ../src/guestfs-actions.pod:2143 ../src/guestfs-actions.pod:3512
10849 msgid ""
10850 "Normally it is better to get all extended attributes from a file in one go "
10851 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
10852 "implementations are buggy and do not provide a way to list out attributes.  "
10853 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
10854 "extended attributes you want in advance and call this function."
10855 msgstr ""
10856
10857 # type: textblock
10858 #. type: textblock
10859 #: ../src/guestfs-actions.pod:2150 ../src/guestfs-actions.pod:3519
10860 #: ../fish/guestfish-actions.pod:1451 ../fish/guestfish-actions.pod:2457
10861 msgid ""
10862 "Extended attribute values are blobs of binary data.  If there is no extended "
10863 "attribute named C<name>, this returns an error."
10864 msgstr ""
10865
10866 # type: textblock
10867 #. type: textblock
10868 #: ../src/guestfs-actions.pod:2153
10869 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
10870 msgstr ""
10871
10872 # type: textblock
10873 #. type: textblock
10874 #: ../src/guestfs-actions.pod:2155 ../src/guestfs-actions.pod:2346
10875 #: ../src/guestfs-actions.pod:3524 ../src/guestfs-actions.pod:5257
10876 #: ../src/guestfs-actions.pod:5283 ../src/guestfs-actions.pod:5464
10877 msgid ""
10878 "This function returns a buffer, or NULL on error.  The size of the returned "
10879 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
10880 "after use>."
10881 msgstr ""
10882
10883 #. type: textblock
10884 #: ../src/guestfs-actions.pod:2159 ../src/guestfs-actions.pod:3528
10885 msgid "(Added in 1.7.24)"
10886 msgstr ""
10887
10888 # type: =head2
10889 #. type: =head2
10890 #: ../src/guestfs-actions.pod:2161
10891 msgid "guestfs_getxattrs"
10892 msgstr ""
10893
10894 # type: verbatim
10895 #. type: verbatim
10896 #: ../src/guestfs-actions.pod:2163
10897 #, no-wrap
10898 msgid ""
10899 " struct guestfs_xattr_list *\n"
10900 " guestfs_getxattrs (guestfs_h *g,\n"
10901 "                    const char *path);\n"
10902 "\n"
10903 msgstr ""
10904
10905 # type: textblock
10906 #. type: textblock
10907 #: ../src/guestfs-actions.pod:2167 ../fish/guestfish-actions.pod:1460
10908 msgid ""
10909 "This call lists the extended attributes of the file or directory C<path>."
10910 msgstr ""
10911
10912 # type: textblock
10913 #. type: textblock
10914 #: ../src/guestfs-actions.pod:2170 ../fish/guestfish-actions.pod:1463
10915 msgid ""
10916 "At the system call level, this is a combination of the L<listxattr(2)> and "
10917 "L<getxattr(2)> calls."
10918 msgstr ""
10919
10920 # type: textblock
10921 #. type: textblock
10922 #: ../src/guestfs-actions.pod:2173
10923 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
10924 msgstr ""
10925
10926 # type: textblock
10927 #. type: textblock
10928 #: ../src/guestfs-actions.pod:2175 ../src/guestfs-actions.pod:3540
10929 #: ../src/guestfs-actions.pod:4191
10930 msgid ""
10931 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
10932 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
10933 msgstr ""
10934
10935 # type: textblock
10936 #. type: textblock
10937 #: ../src/guestfs-actions.pod:2179 ../src/guestfs-actions.pod:3544
10938 #: ../src/guestfs-actions.pod:3709 ../src/guestfs-actions.pod:3745
10939 #: ../src/guestfs-actions.pod:5637 ../src/guestfs-actions.pod:6125
10940 #: ../src/guestfs-actions.pod:7495
10941 msgid "(Added in 1.0.59)"
10942 msgstr ""
10943
10944 # type: =head2
10945 #. type: =head2
10946 #: ../src/guestfs-actions.pod:2181
10947 msgid "guestfs_glob_expand"
10948 msgstr ""
10949
10950 # type: verbatim
10951 #. type: verbatim
10952 #: ../src/guestfs-actions.pod:2183
10953 #, no-wrap
10954 msgid ""
10955 " char **\n"
10956 " guestfs_glob_expand (guestfs_h *g,\n"
10957 "                      const char *pattern);\n"
10958 "\n"
10959 msgstr ""
10960
10961 # type: textblock
10962 #. type: textblock
10963 #: ../src/guestfs-actions.pod:2187 ../fish/guestfish-actions.pod:1472
10964 msgid ""
10965 "This command searches for all the pathnames matching C<pattern> according to "
10966 "the wildcard expansion rules used by the shell."
10967 msgstr ""
10968
10969 # type: textblock
10970 #. type: textblock
10971 #: ../src/guestfs-actions.pod:2191 ../fish/guestfish-actions.pod:1476
10972 msgid ""
10973 "If no paths match, then this returns an empty list (note: not an error)."
10974 msgstr ""
10975
10976 # type: textblock
10977 #. type: textblock
10978 #: ../src/guestfs-actions.pod:2194 ../fish/guestfish-actions.pod:1479
10979 msgid ""
10980 "It is just a wrapper around the C L<glob(3)> function with flags C<GLOB_MARK|"
10981 "GLOB_BRACE>.  See that manual page for more details."
10982 msgstr ""
10983
10984 # type: textblock
10985 #. type: textblock
10986 #: ../src/guestfs-actions.pod:2202 ../src/guestfs-actions.pod:6318
10987 #: ../src/guestfs-actions.pod:6335
10988 msgid "(Added in 1.0.50)"
10989 msgstr ""
10990
10991 # type: =head2
10992 #. type: =head2
10993 #: ../src/guestfs-actions.pod:2204
10994 msgid "guestfs_grep"
10995 msgstr ""
10996
10997 # type: verbatim
10998 #. type: verbatim
10999 #: ../src/guestfs-actions.pod:2206
11000 #, no-wrap
11001 msgid ""
11002 " char **\n"
11003 " guestfs_grep (guestfs_h *g,\n"
11004 "               const char *regex,\n"
11005 "               const char *path);\n"
11006 "\n"
11007 msgstr ""
11008
11009 # type: textblock
11010 #. type: textblock
11011 #: ../src/guestfs-actions.pod:2211 ../fish/guestfish-actions.pod:1487
11012 msgid "This calls the external C<grep> program and returns the matching lines."
11013 msgstr ""
11014
11015 # type: =head2
11016 #. type: =head2
11017 #: ../src/guestfs-actions.pod:2223
11018 msgid "guestfs_grepi"
11019 msgstr ""
11020
11021 # type: verbatim
11022 #. type: verbatim
11023 #: ../src/guestfs-actions.pod:2225
11024 #, no-wrap
11025 msgid ""
11026 " char **\n"
11027 " guestfs_grepi (guestfs_h *g,\n"
11028 "                const char *regex,\n"
11029 "                const char *path);\n"
11030 "\n"
11031 msgstr ""
11032
11033 # type: textblock
11034 #. type: textblock
11035 #: ../src/guestfs-actions.pod:2230 ../fish/guestfish-actions.pod:1497
11036 msgid ""
11037 "This calls the external C<grep -i> program and returns the matching lines."
11038 msgstr ""
11039
11040 # type: =head2
11041 #. type: =head2
11042 #: ../src/guestfs-actions.pod:2242
11043 msgid "guestfs_grub_install"
11044 msgstr ""
11045
11046 # type: verbatim
11047 #. type: verbatim
11048 #: ../src/guestfs-actions.pod:2244
11049 #, no-wrap
11050 msgid ""
11051 " int\n"
11052 " guestfs_grub_install (guestfs_h *g,\n"
11053 "                       const char *root,\n"
11054 "                       const char *device);\n"
11055 "\n"
11056 msgstr ""
11057
11058 # type: textblock
11059 #. type: textblock
11060 #: ../src/guestfs-actions.pod:2249 ../fish/guestfish-actions.pod:1507
11061 msgid ""
11062 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
11063 "the root directory being C<root>."
11064 msgstr ""
11065
11066 # type: textblock
11067 #. type: textblock
11068 #: ../src/guestfs-actions.pod:2252 ../fish/guestfish-actions.pod:1510
11069 msgid ""
11070 "Note: If grub-install reports the error \"No suitable drive was found in the "
11071 "generated device map.\" it may be that you need to create a C</boot/grub/"
11072 "device.map> file first that contains the mapping between grub device names "
11073 "and Linux device names.  It is usually sufficient to create a file "
11074 "containing:"
11075 msgstr ""
11076
11077 # type: verbatim
11078 #. type: verbatim
11079 #: ../src/guestfs-actions.pod:2259 ../fish/guestfish-actions.pod:1517
11080 #, no-wrap
11081 msgid ""
11082 " (hd0) /dev/vda\n"
11083 "\n"
11084 msgstr ""
11085
11086 # type: textblock
11087 #. type: textblock
11088 #: ../src/guestfs-actions.pod:2261 ../fish/guestfish-actions.pod:1519
11089 msgid "replacing C</dev/vda> with the name of the installation device."
11090 msgstr ""
11091
11092 # type: textblock
11093 #. type: textblock
11094 #: ../src/guestfs-actions.pod:2265
11095 msgid "(Added in 1.0.17)"
11096 msgstr ""
11097
11098 # type: =head2
11099 #. type: =head2
11100 #: ../src/guestfs-actions.pod:2267
11101 msgid "guestfs_head"
11102 msgstr ""
11103
11104 # type: verbatim
11105 #. type: verbatim
11106 #: ../src/guestfs-actions.pod:2269
11107 #, no-wrap
11108 msgid ""
11109 " char **\n"
11110 " guestfs_head (guestfs_h *g,\n"
11111 "               const char *path);\n"
11112 "\n"
11113 msgstr ""
11114
11115 # type: textblock
11116 #. type: textblock
11117 #: ../src/guestfs-actions.pod:2273 ../fish/guestfish-actions.pod:1525
11118 msgid ""
11119 "This command returns up to the first 10 lines of a file as a list of strings."
11120 msgstr ""
11121
11122 # type: =head2
11123 #. type: =head2
11124 #: ../src/guestfs-actions.pod:2285
11125 msgid "guestfs_head_n"
11126 msgstr ""
11127
11128 # type: verbatim
11129 #. type: verbatim
11130 #: ../src/guestfs-actions.pod:2287
11131 #, no-wrap
11132 msgid ""
11133 " char **\n"
11134 " guestfs_head_n (guestfs_h *g,\n"
11135 "                 int nrlines,\n"
11136 "                 const char *path);\n"
11137 "\n"
11138 msgstr ""
11139
11140 # type: textblock
11141 #. type: textblock
11142 #: ../src/guestfs-actions.pod:2292 ../fish/guestfish-actions.pod:1535
11143 msgid ""
11144 "If the parameter C<nrlines> is a positive number, this returns the first "
11145 "C<nrlines> lines of the file C<path>."
11146 msgstr ""
11147
11148 # type: textblock
11149 #. type: textblock
11150 #: ../src/guestfs-actions.pod:2295 ../fish/guestfish-actions.pod:1538
11151 msgid ""
11152 "If the parameter C<nrlines> is a negative number, this returns lines from "
11153 "the file C<path>, excluding the last C<nrlines> lines."
11154 msgstr ""
11155
11156 # type: textblock
11157 #. type: textblock
11158 #: ../src/guestfs-actions.pod:2298 ../src/guestfs-actions.pod:6615
11159 #: ../fish/guestfish-actions.pod:1541 ../fish/guestfish-actions.pod:4471
11160 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
11161 msgstr ""
11162
11163 # type: =head2
11164 #. type: =head2
11165 #: ../src/guestfs-actions.pod:2309
11166 msgid "guestfs_hexdump"
11167 msgstr ""
11168
11169 # type: verbatim
11170 #. type: verbatim
11171 #: ../src/guestfs-actions.pod:2311
11172 #, no-wrap
11173 msgid ""
11174 " char *\n"
11175 " guestfs_hexdump (guestfs_h *g,\n"
11176 "                  const char *path);\n"
11177 "\n"
11178 msgstr ""
11179
11180 # type: textblock
11181 #. type: textblock
11182 #: ../src/guestfs-actions.pod:2315 ../fish/guestfish-actions.pod:1550
11183 msgid ""
11184 "This runs C<hexdump -C> on the given C<path>.  The result is the human-"
11185 "readable, canonical hex dump of the file."
11186 msgstr ""
11187
11188 # type: textblock
11189 #. type: textblock
11190 #: ../src/guestfs-actions.pod:2324 ../src/guestfs-actions.pod:6399
11191 #: ../src/guestfs-actions.pod:6454
11192 msgid "(Added in 1.0.22)"
11193 msgstr ""
11194
11195 # type: =head2
11196 #. type: =head2
11197 #: ../src/guestfs-actions.pod:2326
11198 msgid "guestfs_initrd_cat"
11199 msgstr ""
11200
11201 # type: verbatim
11202 #. type: verbatim
11203 #: ../src/guestfs-actions.pod:2328
11204 #, no-wrap
11205 msgid ""
11206 " char *\n"
11207 " guestfs_initrd_cat (guestfs_h *g,\n"
11208 "                     const char *initrdpath,\n"
11209 "                     const char *filename,\n"
11210 "                     size_t *size_r);\n"
11211 "\n"
11212 msgstr ""
11213
11214 # type: textblock
11215 #. type: textblock
11216 #: ../src/guestfs-actions.pod:2334 ../fish/guestfish-actions.pod:1560
11217 msgid ""
11218 "This command unpacks the file C<filename> from the initrd file called "
11219 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
11220 "character."
11221 msgstr ""
11222
11223 # type: textblock
11224 #. type: textblock
11225 #: ../src/guestfs-actions.pod:2338 ../fish/guestfish-actions.pod:1564
11226 msgid ""
11227 "For example, in guestfish you could use the following command to examine the "
11228 "boot script (usually called C</init>)  contained in a Linux initrd or "
11229 "initramfs image:"
11230 msgstr ""
11231
11232 # type: verbatim
11233 #. type: verbatim
11234 #: ../src/guestfs-actions.pod:2342 ../fish/guestfish-actions.pod:1568
11235 #, no-wrap
11236 msgid ""
11237 " initrd-cat /boot/initrd-<version>.img init\n"
11238 "\n"
11239 msgstr ""
11240
11241 # type: textblock
11242 #. type: textblock
11243 #: ../src/guestfs-actions.pod:2344
11244 msgid "See also C<guestfs_initrd_list>."
11245 msgstr ""
11246
11247 # type: =head2
11248 #. type: =head2
11249 #: ../src/guestfs-actions.pod:2355
11250 msgid "guestfs_initrd_list"
11251 msgstr ""
11252
11253 # type: verbatim
11254 #. type: verbatim
11255 #: ../src/guestfs-actions.pod:2357
11256 #, no-wrap
11257 msgid ""
11258 " char **\n"
11259 " guestfs_initrd_list (guestfs_h *g,\n"
11260 "                      const char *path);\n"
11261 "\n"
11262 msgstr ""
11263
11264 # type: textblock
11265 #. type: textblock
11266 #: ../src/guestfs-actions.pod:2361 ../fish/guestfish-actions.pod:1579
11267 msgid "This command lists out files contained in an initrd."
11268 msgstr ""
11269
11270 # type: textblock
11271 #. type: textblock
11272 #: ../src/guestfs-actions.pod:2363 ../fish/guestfish-actions.pod:1581
11273 msgid ""
11274 "The files are listed without any initial C</> character.  The files are "
11275 "listed in the order they appear (not necessarily alphabetical).  Directory "
11276 "names are listed as separate items."
11277 msgstr ""
11278
11279 # type: textblock
11280 #. type: textblock
11281 #: ../src/guestfs-actions.pod:2367 ../fish/guestfish-actions.pod:1585
11282 msgid ""
11283 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
11284 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
11285 "files)."
11286 msgstr ""
11287
11288 # type: =head2
11289 #. type: =head2
11290 #: ../src/guestfs-actions.pod:2377
11291 msgid "guestfs_inotify_add_watch"
11292 msgstr ""
11293
11294 # type: verbatim
11295 #. type: verbatim
11296 #: ../src/guestfs-actions.pod:2379
11297 #, no-wrap
11298 msgid ""
11299 " int64_t\n"
11300 " guestfs_inotify_add_watch (guestfs_h *g,\n"
11301 "                            const char *path,\n"
11302 "                            int mask);\n"
11303 "\n"
11304 msgstr ""
11305
11306 # type: textblock
11307 #. type: textblock
11308 #: ../src/guestfs-actions.pod:2384 ../fish/guestfish-actions.pod:1593
11309 msgid "Watch C<path> for the events listed in C<mask>."
11310 msgstr ""
11311
11312 # type: textblock
11313 #. type: textblock
11314 #: ../src/guestfs-actions.pod:2386 ../fish/guestfish-actions.pod:1595
11315 msgid ""
11316 "Note that if C<path> is a directory then events within that directory are "
11317 "watched, but this does I<not> happen recursively (in subdirectories)."
11318 msgstr ""
11319
11320 # type: textblock
11321 #. type: textblock
11322 #: ../src/guestfs-actions.pod:2390 ../fish/guestfish-actions.pod:1599
11323 msgid ""
11324 "Note for non-C or non-Linux callers: the inotify events are defined by the "
11325 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
11326 msgstr ""
11327
11328 # type: =head2
11329 #. type: =head2
11330 #: ../src/guestfs-actions.pod:2398
11331 msgid "guestfs_inotify_close"
11332 msgstr ""
11333
11334 # type: verbatim
11335 #. type: verbatim
11336 #: ../src/guestfs-actions.pod:2400
11337 #, no-wrap
11338 msgid ""
11339 " int\n"
11340 " guestfs_inotify_close (guestfs_h *g);\n"
11341 "\n"
11342 msgstr ""
11343
11344 # type: textblock
11345 #. type: textblock
11346 #: ../src/guestfs-actions.pod:2403 ../fish/guestfish-actions.pod:1607
11347 msgid ""
11348 "This closes the inotify handle which was previously opened by inotify_init.  "
11349 "It removes all watches, throws away any pending events, and deallocates all "
11350 "resources."
11351 msgstr ""
11352
11353 # type: =head2
11354 #. type: =head2
11355 #: ../src/guestfs-actions.pod:2411
11356 msgid "guestfs_inotify_files"
11357 msgstr ""
11358
11359 # type: verbatim
11360 #. type: verbatim
11361 #: ../src/guestfs-actions.pod:2413
11362 #, no-wrap
11363 msgid ""
11364 " char **\n"
11365 " guestfs_inotify_files (guestfs_h *g);\n"
11366 "\n"
11367 msgstr ""
11368
11369 # type: textblock
11370 #. type: textblock
11371 #: ../src/guestfs-actions.pod:2416
11372 msgid ""
11373 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
11374 "returns a list of pathnames of objects that were touched.  The returned "
11375 "pathnames are sorted and deduplicated."
11376 msgstr ""
11377
11378 # type: =head2
11379 #. type: =head2
11380 #: ../src/guestfs-actions.pod:2426
11381 msgid "guestfs_inotify_init"
11382 msgstr ""
11383
11384 # type: verbatim
11385 #. type: verbatim
11386 #: ../src/guestfs-actions.pod:2428
11387 #, no-wrap
11388 msgid ""
11389 " int\n"
11390 " guestfs_inotify_init (guestfs_h *g,\n"
11391 "                       int maxevents);\n"
11392 "\n"
11393 msgstr ""
11394
11395 # type: textblock
11396 #. type: textblock
11397 #: ../src/guestfs-actions.pod:2432 ../fish/guestfish-actions.pod:1623
11398 msgid ""
11399 "This command creates a new inotify handle.  The inotify subsystem can be "
11400 "used to notify events which happen to objects in the guest filesystem."
11401 msgstr ""
11402
11403 # type: textblock
11404 #. type: textblock
11405 #: ../src/guestfs-actions.pod:2436
11406 msgid ""
11407 "C<maxevents> is the maximum number of events which will be queued up between "
11408 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
11409 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
11410 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
11411 "throws away events, but records the fact that it threw them away by setting "
11412 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
11413 "C<guestfs_inotify_read>)."
11414 msgstr ""
11415
11416 # type: textblock
11417 #. type: textblock
11418 #: ../src/guestfs-actions.pod:2446
11419 msgid ""
11420 "Before any events are generated, you have to add some watches to the "
11421 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
11422 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
11423 msgstr ""
11424
11425 # type: textblock
11426 #. type: textblock
11427 #: ../src/guestfs-actions.pod:2452
11428 msgid ""
11429 "Queued up events should be read periodically by calling "
11430 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
11431 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
11432 "often enough then you risk the internal queue overflowing."
11433 msgstr ""
11434
11435 # type: textblock
11436 #. type: textblock
11437 #: ../src/guestfs-actions.pod:2459
11438 msgid ""
11439 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
11440 "This also removes any watches automatically."
11441 msgstr ""
11442
11443 # type: textblock
11444 #. type: textblock
11445 #: ../src/guestfs-actions.pod:2463 ../fish/guestfish-actions.pod:1654
11446 msgid ""
11447 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
11448 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
11449 "that there is one global inotify handle per libguestfs instance."
11450 msgstr ""
11451
11452 # type: =head2
11453 #. type: =head2
11454 #: ../src/guestfs-actions.pod:2472
11455 msgid "guestfs_inotify_read"
11456 msgstr ""
11457
11458 # type: verbatim
11459 #. type: verbatim
11460 #: ../src/guestfs-actions.pod:2474
11461 #, no-wrap
11462 msgid ""
11463 " struct guestfs_inotify_event_list *\n"
11464 " guestfs_inotify_read (guestfs_h *g);\n"
11465 "\n"
11466 msgstr ""
11467
11468 # type: textblock
11469 #. type: textblock
11470 #: ../src/guestfs-actions.pod:2477 ../fish/guestfish-actions.pod:1663
11471 msgid ""
11472 "Return the complete queue of events that have happened since the previous "
11473 "read call."
11474 msgstr ""
11475
11476 # type: textblock
11477 #. type: textblock
11478 #: ../src/guestfs-actions.pod:2480 ../fish/guestfish-actions.pod:1666
11479 msgid "If no events have happened, this returns an empty list."
11480 msgstr ""
11481
11482 # type: textblock
11483 #. type: textblock
11484 #: ../src/guestfs-actions.pod:2482 ../fish/guestfish-actions.pod:1668
11485 msgid ""
11486 "I<Note>: In order to make sure that all events have been read, you must call "
11487 "this function repeatedly until it returns an empty list.  The reason is that "
11488 "the call will read events up to the maximum appliance-to-host message size "
11489 "and leave remaining events in the queue."
11490 msgstr ""
11491
11492 # type: textblock
11493 #. type: textblock
11494 #: ../src/guestfs-actions.pod:2488
11495 msgid ""
11496 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
11497 "there was an error.  I<The caller must call "
11498 "C<guestfs_free_inotify_event_list> after use>."
11499 msgstr ""
11500
11501 # type: =head2
11502 #. type: =head2
11503 #: ../src/guestfs-actions.pod:2494
11504 msgid "guestfs_inotify_rm_watch"
11505 msgstr ""
11506
11507 # type: verbatim
11508 #. type: verbatim
11509 #: ../src/guestfs-actions.pod:2496
11510 #, no-wrap
11511 msgid ""
11512 " int\n"
11513 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
11514 "                           int wd);\n"
11515 "\n"
11516 msgstr ""
11517
11518 # type: textblock
11519 #. type: textblock
11520 #: ../src/guestfs-actions.pod:2500
11521 msgid ""
11522 "Remove a previously defined inotify watch.  See C<guestfs_inotify_add_watch>."
11523 msgstr ""
11524
11525 # type: =head2
11526 #. type: =head2
11527 #: ../src/guestfs-actions.pod:2507
11528 msgid "guestfs_inspect_get_arch"
11529 msgstr ""
11530
11531 # type: verbatim
11532 #. type: verbatim
11533 #: ../src/guestfs-actions.pod:2509
11534 #, no-wrap
11535 msgid ""
11536 " char *\n"
11537 " guestfs_inspect_get_arch (guestfs_h *g,\n"
11538 "                           const char *root);\n"
11539 "\n"
11540 msgstr ""
11541
11542 # type: textblock
11543 #. type: textblock
11544 #: ../src/guestfs-actions.pod:2513 ../src/guestfs-actions.pod:2536
11545 #: ../src/guestfs-actions.pod:2629 ../src/guestfs-actions.pod:2673
11546 #: ../src/guestfs-actions.pod:2699 ../src/guestfs-actions.pod:2738
11547 #: ../src/guestfs-actions.pod:2760 ../src/guestfs-actions.pod:2787
11548 #: ../src/guestfs-actions.pod:2808 ../src/guestfs-actions.pod:2851
11549 #: ../src/guestfs-actions.pod:2880 ../src/guestfs-actions.pod:2911
11550 #: ../src/guestfs-actions.pod:2935 ../src/guestfs-actions.pod:2990
11551 #: ../src/guestfs-actions.pod:3032 ../src/guestfs-actions.pod:3053
11552 #: ../src/guestfs-actions.pod:3076 ../src/guestfs-actions.pod:3093
11553 #: ../src/guestfs-actions.pod:3110 ../src/guestfs-actions.pod:3129
11554 msgid ""
11555 "This function should only be called with a root device string as returned by "
11556 "C<guestfs_inspect_os>."
11557 msgstr ""
11558
11559 # type: textblock
11560 #. type: textblock
11561 #: ../src/guestfs-actions.pod:2516
11562 msgid ""
11563 "This returns the architecture of the inspected operating system.  The "
11564 "possible return values are listed under C<guestfs_file_architecture>."
11565 msgstr ""
11566
11567 # type: textblock
11568 #. type: textblock
11569 #: ../src/guestfs-actions.pod:2520 ../fish/guestfish-actions.pod:1692
11570 msgid ""
11571 "If the architecture could not be determined, then the string C<unknown> is "
11572 "returned."
11573 msgstr ""
11574
11575 # type: textblock
11576 #. type: textblock
11577 #: ../src/guestfs-actions.pod:2523 ../src/guestfs-actions.pod:2616
11578 #: ../src/guestfs-actions.pod:2727 ../src/guestfs-actions.pod:2747
11579 #: ../src/guestfs-actions.pod:2775 ../src/guestfs-actions.pod:2867
11580 #: ../src/guestfs-actions.pod:2898 ../src/guestfs-actions.pod:2922
11581 #: ../src/guestfs-actions.pod:2976 ../src/guestfs-actions.pod:3019
11582 #: ../src/guestfs-actions.pod:3042 ../src/guestfs-actions.pod:3063
11583 #: ../src/guestfs-actions.pod:3083 ../src/guestfs-actions.pod:3100
11584 #: ../src/guestfs-actions.pod:3119 ../src/guestfs-actions.pod:3222
11585 #: ../src/guestfs-actions.pod:3263 ../fish/guestfish-actions.pod:1695
11586 #: ../fish/guestfish-actions.pod:1781 ../fish/guestfish-actions.pod:1869
11587 #: ../fish/guestfish-actions.pod:1884 ../fish/guestfish-actions.pod:1905
11588 #: ../fish/guestfish-actions.pod:1975 ../fish/guestfish-actions.pod:1999
11589 #: ../fish/guestfish-actions.pod:2016 ../fish/guestfish-actions.pod:2059
11590 #: ../fish/guestfish-actions.pod:2094 ../fish/guestfish-actions.pod:2110
11591 #: ../fish/guestfish-actions.pod:2126 ../fish/guestfish-actions.pod:2139
11592 #: ../fish/guestfish-actions.pod:2152 ../fish/guestfish-actions.pod:2167
11593 #: ../fish/guestfish-actions.pod:2266 ../fish/guestfish-actions.pod:2300
11594 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
11595 msgstr ""
11596
11597 # type: =head2
11598 #. type: =head2
11599 #: ../src/guestfs-actions.pod:2530
11600 msgid "guestfs_inspect_get_distro"
11601 msgstr ""
11602
11603 # type: verbatim
11604 #. type: verbatim
11605 #: ../src/guestfs-actions.pod:2532
11606 #, no-wrap
11607 msgid ""
11608 " char *\n"
11609 " guestfs_inspect_get_distro (guestfs_h *g,\n"
11610 "                             const char *root);\n"
11611 "\n"
11612 msgstr ""
11613
11614 # type: textblock
11615 #. type: textblock
11616 #: ../src/guestfs-actions.pod:2539 ../fish/guestfish-actions.pod:1704
11617 msgid ""
11618 "This returns the distro (distribution) of the inspected operating system."
11619 msgstr ""
11620
11621 # type: textblock
11622 #. type: textblock
11623 #: ../src/guestfs-actions.pod:2542 ../fish/guestfish-actions.pod:1707
11624 msgid "Currently defined distros are:"
11625 msgstr ""
11626
11627 # type: =item
11628 #. type: =item
11629 #: ../src/guestfs-actions.pod:2546 ../fish/guestfish-actions.pod:1711
11630 msgid "\"archlinux\""
11631 msgstr ""
11632
11633 # type: textblock
11634 #. type: textblock
11635 #: ../src/guestfs-actions.pod:2548 ../fish/guestfish-actions.pod:1713
11636 msgid "Arch Linux."
11637 msgstr ""
11638
11639 #. type: =item
11640 #: ../src/guestfs-actions.pod:2550 ../fish/guestfish-actions.pod:1715
11641 msgid "\"centos\""
11642 msgstr ""
11643
11644 #. type: textblock
11645 #: ../src/guestfs-actions.pod:2552 ../fish/guestfish-actions.pod:1717
11646 msgid "CentOS."
11647 msgstr ""
11648
11649 # type: =item
11650 #. type: =item
11651 #: ../src/guestfs-actions.pod:2554 ../fish/guestfish-actions.pod:1719
11652 msgid "\"debian\""
11653 msgstr ""
11654
11655 # type: textblock
11656 #. type: textblock
11657 #: ../src/guestfs-actions.pod:2556 ../fish/guestfish-actions.pod:1721
11658 msgid "Debian."
11659 msgstr ""
11660
11661 # type: =item
11662 #. type: =item
11663 #: ../src/guestfs-actions.pod:2558 ../fish/guestfish-actions.pod:1723
11664 msgid "\"fedora\""
11665 msgstr ""
11666
11667 # type: textblock
11668 #. type: textblock
11669 #: ../src/guestfs-actions.pod:2560 ../fish/guestfish-actions.pod:1725
11670 msgid "Fedora."
11671 msgstr ""
11672
11673 # type: =item
11674 #. type: =item
11675 #: ../src/guestfs-actions.pod:2562 ../fish/guestfish-actions.pod:1727
11676 msgid "\"gentoo\""
11677 msgstr ""
11678
11679 # type: textblock
11680 #. type: textblock
11681 #: ../src/guestfs-actions.pod:2564 ../fish/guestfish-actions.pod:1729
11682 msgid "Gentoo."
11683 msgstr ""
11684
11685 # type: =item
11686 #. type: =item
11687 #: ../src/guestfs-actions.pod:2566 ../fish/guestfish-actions.pod:1731
11688 msgid "\"linuxmint\""
11689 msgstr ""
11690
11691 # type: textblock
11692 #. type: textblock
11693 #: ../src/guestfs-actions.pod:2568 ../fish/guestfish-actions.pod:1733
11694 msgid "Linux Mint."
11695 msgstr ""
11696
11697 # type: =item
11698 #. type: =item
11699 #: ../src/guestfs-actions.pod:2570 ../fish/guestfish-actions.pod:1735
11700 msgid "\"mandriva\""
11701 msgstr ""
11702
11703 # type: textblock
11704 #. type: textblock
11705 #: ../src/guestfs-actions.pod:2572 ../fish/guestfish-actions.pod:1737
11706 msgid "Mandriva."
11707 msgstr ""
11708
11709 # type: =item
11710 #. type: =item
11711 #: ../src/guestfs-actions.pod:2574 ../fish/guestfish-actions.pod:1739
11712 msgid "\"meego\""
11713 msgstr ""
11714
11715 # type: textblock
11716 #. type: textblock
11717 #: ../src/guestfs-actions.pod:2576 ../fish/guestfish-actions.pod:1741
11718 msgid "MeeGo."
11719 msgstr ""
11720
11721 # type: =item
11722 #. type: =item
11723 #: ../src/guestfs-actions.pod:2578 ../fish/guestfish-actions.pod:1743
11724 msgid "\"pardus\""
11725 msgstr ""
11726
11727 # type: textblock
11728 #. type: textblock
11729 #: ../src/guestfs-actions.pod:2580 ../fish/guestfish-actions.pod:1745
11730 msgid "Pardus."
11731 msgstr ""
11732
11733 # type: =item
11734 #. type: =item
11735 #: ../src/guestfs-actions.pod:2582 ../fish/guestfish-actions.pod:1747
11736 msgid "\"redhat-based\""
11737 msgstr ""
11738
11739 # type: textblock
11740 #. type: textblock
11741 #: ../src/guestfs-actions.pod:2584 ../fish/guestfish-actions.pod:1749
11742 msgid "Some Red Hat-derived distro."
11743 msgstr ""
11744
11745 # type: =item
11746 #. type: =item
11747 #: ../src/guestfs-actions.pod:2586 ../fish/guestfish-actions.pod:1751
11748 msgid "\"rhel\""
11749 msgstr ""
11750
11751 #. type: textblock
11752 #: ../src/guestfs-actions.pod:2588 ../fish/guestfish-actions.pod:1753
11753 msgid "Red Hat Enterprise Linux."
11754 msgstr ""
11755
11756 #. type: =item
11757 #: ../src/guestfs-actions.pod:2590 ../fish/guestfish-actions.pod:1755
11758 msgid "\"scientificlinux\""
11759 msgstr ""
11760
11761 #. type: textblock
11762 #: ../src/guestfs-actions.pod:2592 ../fish/guestfish-actions.pod:1757
11763 msgid "Scientific Linux."
11764 msgstr ""
11765
11766 #. type: =item
11767 #: ../src/guestfs-actions.pod:2594 ../fish/guestfish-actions.pod:1759
11768 msgid "\"slackware\""
11769 msgstr ""
11770
11771 #. type: textblock
11772 #: ../src/guestfs-actions.pod:2596 ../fish/guestfish-actions.pod:1761
11773 msgid "Slackware."
11774 msgstr ""
11775
11776 # type: =item
11777 #. type: =item
11778 #: ../src/guestfs-actions.pod:2598 ../fish/guestfish-actions.pod:1763
11779 msgid "\"ubuntu\""
11780 msgstr ""
11781
11782 # type: textblock
11783 #. type: textblock
11784 #: ../src/guestfs-actions.pod:2600 ../fish/guestfish-actions.pod:1765
11785 msgid "Ubuntu."
11786 msgstr ""
11787
11788 # type: =item
11789 #. type: =item
11790 #: ../src/guestfs-actions.pod:2602 ../src/guestfs-actions.pod:2718
11791 #: ../src/guestfs-actions.pod:3010 ../fish/guestfish-actions.pod:1767
11792 #: ../fish/guestfish-actions.pod:1860 ../fish/guestfish-actions.pod:2085
11793 msgid "\"unknown\""
11794 msgstr ""
11795
11796 # type: textblock
11797 #. type: textblock
11798 #: ../src/guestfs-actions.pod:2604 ../fish/guestfish-actions.pod:1769
11799 msgid "The distro could not be determined."
11800 msgstr ""
11801
11802 # type: =item
11803 #. type: =item
11804 #: ../src/guestfs-actions.pod:2606 ../src/guestfs-actions.pod:3002
11805 #: ../fish/guestfish-actions.pod:1771 ../fish/guestfish-actions.pod:2077
11806 msgid "\"windows\""
11807 msgstr ""
11808
11809 # type: textblock
11810 #. type: textblock
11811 #: ../src/guestfs-actions.pod:2608 ../fish/guestfish-actions.pod:1773
11812 msgid ""
11813 "Windows does not have distributions.  This string is returned if the OS type "
11814 "is Windows."
11815 msgstr ""
11816
11817 # type: textblock
11818 #. type: textblock
11819 #: ../src/guestfs-actions.pod:2613 ../src/guestfs-actions.pod:2724
11820 #: ../src/guestfs-actions.pod:3016 ../fish/guestfish-actions.pod:1778
11821 #: ../fish/guestfish-actions.pod:1866 ../fish/guestfish-actions.pod:2091
11822 msgid ""
11823 "Future versions of libguestfs may return other strings here.  The caller "
11824 "should be prepared to handle any string."
11825 msgstr ""
11826
11827 #. type: =head2
11828 #: ../src/guestfs-actions.pod:2623
11829 msgid "guestfs_inspect_get_drive_mappings"
11830 msgstr ""
11831
11832 #. type: verbatim
11833 #: ../src/guestfs-actions.pod:2625
11834 #, no-wrap
11835 msgid ""
11836 " char **\n"
11837 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
11838 "                                     const char *root);\n"
11839 "\n"
11840 msgstr ""
11841
11842 #. type: textblock
11843 #: ../src/guestfs-actions.pod:2632 ../fish/guestfish-actions.pod:1790
11844 msgid ""
11845 "This call is useful for Windows which uses a primitive system of assigning "
11846 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
11847 "Windows Registry to find out how disks/partitions are mapped to drive "
11848 "letters, and returns a hash table as in the example below:"
11849 msgstr ""
11850
11851 #. type: verbatim
11852 #: ../src/guestfs-actions.pod:2638 ../fish/guestfish-actions.pod:1796
11853 #, no-wrap
11854 msgid ""
11855 " C      =>     /dev/vda2\n"
11856 " E      =>     /dev/vdb1\n"
11857 " F      =>     /dev/vdc1\n"
11858 "\n"
11859 msgstr ""
11860
11861 #. type: textblock
11862 #: ../src/guestfs-actions.pod:2642 ../fish/guestfish-actions.pod:1800
11863 msgid ""
11864 "Note that keys are drive letters.  For Windows, the key is case insensitive "
11865 "and just contains the drive letter, without the customary colon separator "
11866 "character."
11867 msgstr ""
11868
11869 #. type: textblock
11870 #: ../src/guestfs-actions.pod:2646 ../fish/guestfish-actions.pod:1804
11871 msgid ""
11872 "In future we may support other operating systems that also used drive "
11873 "letters, but the keys for those might not be case insensitive and might be "
11874 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
11875 "C<h1> etc."
11876 msgstr ""
11877
11878 #. type: textblock
11879 #: ../src/guestfs-actions.pod:2651 ../fish/guestfish-actions.pod:1809
11880 msgid ""
11881 "For Windows guests, currently only hard drive mappings are returned.  "
11882 "Removable disks (eg. DVD-ROMs) are ignored."
11883 msgstr ""
11884
11885 #. type: textblock
11886 #: ../src/guestfs-actions.pod:2654 ../fish/guestfish-actions.pod:1812
11887 msgid ""
11888 "For guests that do not use drive mappings, or if the drive mappings could "
11889 "not be determined, this returns an empty hash table."
11890 msgstr ""
11891
11892 #. type: textblock
11893 #: ../src/guestfs-actions.pod:2657
11894 msgid ""
11895 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11896 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
11897 msgstr ""
11898
11899 # type: textblock
11900 #. type: textblock
11901 #: ../src/guestfs-actions.pod:2661 ../src/guestfs-actions.pod:2837
11902 #: ../src/guestfs-actions.pod:3597 ../src/guestfs-actions.pod:4814
11903 #: ../src/guestfs-actions.pod:6756
11904 msgid ""
11905 "This function returns a NULL-terminated array of strings, or NULL if there "
11906 "was an error.  The array of strings will always have length C<2n+1>, where "
11907 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
11908 "caller must free the strings and the array after use>."
11909 msgstr ""
11910
11911 # type: =head2
11912 #. type: =head2
11913 #: ../src/guestfs-actions.pod:2667
11914 msgid "guestfs_inspect_get_filesystems"
11915 msgstr ""
11916
11917 # type: verbatim
11918 #. type: verbatim
11919 #: ../src/guestfs-actions.pod:2669
11920 #, no-wrap
11921 msgid ""
11922 " char **\n"
11923 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
11924 "                                  const char *root);\n"
11925 "\n"
11926 msgstr ""
11927
11928 # type: textblock
11929 #. type: textblock
11930 #: ../src/guestfs-actions.pod:2676 ../fish/guestfish-actions.pod:1826
11931 msgid ""
11932 "This returns a list of all the filesystems that we think are associated with "
11933 "this operating system.  This includes the root filesystem, other ordinary "
11934 "filesystems, and non-mounted devices like swap partitions."
11935 msgstr ""
11936
11937 # type: textblock
11938 #. type: textblock
11939 #: ../src/guestfs-actions.pod:2681 ../fish/guestfish-actions.pod:1831
11940 msgid ""
11941 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
11942 "to be shared between operating systems."
11943 msgstr ""
11944
11945 # type: textblock
11946 #. type: textblock
11947 #: ../src/guestfs-actions.pod:2684
11948 msgid ""
11949 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11950 "C<guestfs_inspect_get_mountpoints>."
11951 msgstr ""
11952
11953 #. type: =head2
11954 #: ../src/guestfs-actions.pod:2693
11955 msgid "guestfs_inspect_get_format"
11956 msgstr ""
11957
11958 #. type: verbatim
11959 #: ../src/guestfs-actions.pod:2695
11960 #, no-wrap
11961 msgid ""
11962 " char *\n"
11963 " guestfs_inspect_get_format (guestfs_h *g,\n"
11964 "                             const char *root);\n"
11965 "\n"
11966 msgstr ""
11967
11968 #. type: textblock
11969 #: ../src/guestfs-actions.pod:2702 ../fish/guestfish-actions.pod:1844
11970 msgid ""
11971 "This returns the format of the inspected operating system.  You can use it "
11972 "to detect install images, live CDs and similar."
11973 msgstr ""
11974
11975 #. type: textblock
11976 #: ../src/guestfs-actions.pod:2705 ../fish/guestfish-actions.pod:1847
11977 msgid "Currently defined formats are:"
11978 msgstr ""
11979
11980 #. type: =item
11981 #: ../src/guestfs-actions.pod:2709 ../fish/guestfish-actions.pod:1851
11982 msgid "\"installed\""
11983 msgstr ""
11984
11985 #. type: textblock
11986 #: ../src/guestfs-actions.pod:2711 ../fish/guestfish-actions.pod:1853
11987 msgid "This is an installed operating system."
11988 msgstr ""
11989
11990 #. type: =item
11991 #: ../src/guestfs-actions.pod:2713 ../fish/guestfish-actions.pod:1855
11992 msgid "\"installer\""
11993 msgstr ""
11994
11995 #. type: textblock
11996 #: ../src/guestfs-actions.pod:2715 ../fish/guestfish-actions.pod:1857
11997 msgid ""
11998 "The disk image being inspected is not an installed operating system, but a "
11999 "I<bootable> install disk, live CD, or similar."
12000 msgstr ""
12001
12002 #. type: textblock
12003 #: ../src/guestfs-actions.pod:2720 ../fish/guestfish-actions.pod:1862
12004 msgid "The format of this disk image is not known."
12005 msgstr ""
12006
12007 # type: =head2
12008 #. type: =head2
12009 #: ../src/guestfs-actions.pod:2732
12010 msgid "guestfs_inspect_get_hostname"
12011 msgstr ""
12012
12013 # type: verbatim
12014 #. type: verbatim
12015 #: ../src/guestfs-actions.pod:2734
12016 #, no-wrap
12017 msgid ""
12018 " char *\n"
12019 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
12020 "                               const char *root);\n"
12021 "\n"
12022 msgstr ""
12023
12024 # type: textblock
12025 #. type: textblock
12026 #: ../src/guestfs-actions.pod:2741 ../fish/guestfish-actions.pod:1878
12027 msgid ""
12028 "This function returns the hostname of the operating system as found by "
12029 "inspection of the guest's configuration files."
12030 msgstr ""
12031
12032 # type: textblock
12033 #. type: textblock
12034 #: ../src/guestfs-actions.pod:2744 ../fish/guestfish-actions.pod:1881
12035 msgid ""
12036 "If the hostname could not be determined, then the string C<unknown> is "
12037 "returned."
12038 msgstr ""
12039
12040 # type: textblock
12041 #. type: textblock
12042 #: ../src/guestfs-actions.pod:2752
12043 msgid "(Added in 1.7.9)"
12044 msgstr ""
12045
12046 # type: =head2
12047 #. type: =head2
12048 #: ../src/guestfs-actions.pod:2754
12049 msgid "guestfs_inspect_get_major_version"
12050 msgstr ""
12051
12052 # type: verbatim
12053 #. type: verbatim
12054 #: ../src/guestfs-actions.pod:2756
12055 #, no-wrap
12056 msgid ""
12057 " int\n"
12058 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
12059 "                                    const char *root);\n"
12060 "\n"
12061 msgstr ""
12062
12063 # type: textblock
12064 #. type: textblock
12065 #: ../src/guestfs-actions.pod:2763 ../fish/guestfish-actions.pod:1893
12066 msgid ""
12067 "This returns the major version number of the inspected operating system."
12068 msgstr ""
12069
12070 # type: textblock
12071 #. type: textblock
12072 #: ../src/guestfs-actions.pod:2766 ../fish/guestfish-actions.pod:1896
12073 msgid ""
12074 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
12075 "popular public names used by the operating system.  Notably the operating "
12076 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
12077 "1).  You can find out the real versions corresponding to releases of Windows "
12078 "by consulting Wikipedia or MSDN."
12079 msgstr ""
12080
12081 # type: textblock
12082 #. type: textblock
12083 #: ../src/guestfs-actions.pod:2773 ../src/guestfs-actions.pod:2793
12084 #: ../fish/guestfish-actions.pod:1903 ../fish/guestfish-actions.pod:1917
12085 msgid "If the version could not be determined, then C<0> is returned."
12086 msgstr ""
12087
12088 # type: =head2
12089 #. type: =head2
12090 #: ../src/guestfs-actions.pod:2781
12091 msgid "guestfs_inspect_get_minor_version"
12092 msgstr ""
12093
12094 # type: verbatim
12095 #. type: verbatim
12096 #: ../src/guestfs-actions.pod:2783
12097 #, no-wrap
12098 msgid ""
12099 " int\n"
12100 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
12101 "                                    const char *root);\n"
12102 "\n"
12103 msgstr ""
12104
12105 # type: textblock
12106 #. type: textblock
12107 #: ../src/guestfs-actions.pod:2790 ../fish/guestfish-actions.pod:1914
12108 msgid ""
12109 "This returns the minor version number of the inspected operating system."
12110 msgstr ""
12111
12112 # type: textblock
12113 #. type: textblock
12114 #: ../src/guestfs-actions.pod:2795
12115 msgid ""
12116 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
12117 "C<guestfs_inspect_get_major_version>."
12118 msgstr ""
12119
12120 # type: =head2
12121 #. type: =head2
12122 #: ../src/guestfs-actions.pod:2802
12123 msgid "guestfs_inspect_get_mountpoints"
12124 msgstr ""
12125
12126 # type: verbatim
12127 #. type: verbatim
12128 #: ../src/guestfs-actions.pod:2804
12129 #, no-wrap
12130 msgid ""
12131 " char **\n"
12132 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
12133 "                                  const char *root);\n"
12134 "\n"
12135 msgstr ""
12136
12137 #. type: textblock
12138 #: ../src/guestfs-actions.pod:2811 ../fish/guestfish-actions.pod:1929
12139 msgid ""
12140 "This returns a hash of where we think the filesystems associated with this "
12141 "operating system should be mounted.  Callers should note that this is at "
12142 "best an educated guess made by reading configuration files such as C</etc/"
12143 "fstab>.  I<In particular note> that this may return filesystems which are "
12144 "non-existent or not mountable and callers should be prepared to handle or "
12145 "ignore failures if they try to mount them."
12146 msgstr ""
12147
12148 # type: textblock
12149 #. type: textblock
12150 #: ../src/guestfs-actions.pod:2820 ../fish/guestfish-actions.pod:1938
12151 msgid ""
12152 "Each element in the returned hashtable has a key which is the path of the "
12153 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
12154 "mounted there (eg. C</dev/sda1>)."
12155 msgstr ""
12156
12157 # type: textblock
12158 #. type: textblock
12159 #: ../src/guestfs-actions.pod:2825 ../fish/guestfish-actions.pod:1943
12160 msgid ""
12161 "Non-mounted devices such as swap devices are I<not> returned in this list."
12162 msgstr ""
12163
12164 #. type: textblock
12165 #: ../src/guestfs-actions.pod:2828
12166 msgid ""
12167 "For operating systems like Windows which still use drive letters, this call "
12168 "will only return an entry for the first drive \"mounted on\" C</>.  For "
12169 "information about the mapping of drive letters to partitions, see "
12170 "C<guestfs_inspect_get_drive_mappings>."
12171 msgstr ""
12172
12173 # type: textblock
12174 #. type: textblock
12175 #: ../src/guestfs-actions.pod:2834
12176 msgid ""
12177 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
12178 "C<guestfs_inspect_get_filesystems>."
12179 msgstr ""
12180
12181 # type: =head2
12182 #. type: =head2
12183 #: ../src/guestfs-actions.pod:2845
12184 msgid "guestfs_inspect_get_package_format"
12185 msgstr ""
12186
12187 # type: verbatim
12188 #. type: verbatim
12189 #: ../src/guestfs-actions.pod:2847
12190 #, no-wrap
12191 msgid ""
12192 " char *\n"
12193 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
12194 "                                     const char *root);\n"
12195 "\n"
12196 msgstr ""
12197
12198 # type: textblock
12199 #. type: textblock
12200 #: ../src/guestfs-actions.pod:2854
12201 msgid ""
12202 "This function and C<guestfs_inspect_get_package_management> return the "
12203 "package format and package management tool used by the inspected operating "
12204 "system.  For example for Fedora these functions would return C<rpm> (package "
12205 "format) and C<yum> (package management)."
12206 msgstr ""
12207
12208 # type: textblock
12209 #. type: textblock
12210 #: ../src/guestfs-actions.pod:2860 ../fish/guestfish-actions.pod:1968
12211 msgid ""
12212 "This returns the string C<unknown> if we could not determine the package "
12213 "format I<or> if the operating system does not have a real packaging system "
12214 "(eg. Windows)."
12215 msgstr ""
12216
12217 # type: textblock
12218 #. type: textblock
12219 #: ../src/guestfs-actions.pod:2864 ../fish/guestfish-actions.pod:1972
12220 msgid ""
12221 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
12222 "Future versions of libguestfs may return other strings."
12223 msgstr ""
12224
12225 # type: textblock
12226 #. type: textblock
12227 #: ../src/guestfs-actions.pod:2872 ../src/guestfs-actions.pod:2903
12228 msgid "(Added in 1.7.5)"
12229 msgstr ""
12230
12231 # type: =head2
12232 #. type: =head2
12233 #: ../src/guestfs-actions.pod:2874
12234 msgid "guestfs_inspect_get_package_management"
12235 msgstr ""
12236
12237 # type: verbatim
12238 #. type: verbatim
12239 #: ../src/guestfs-actions.pod:2876
12240 #, no-wrap
12241 msgid ""
12242 " char *\n"
12243 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
12244 "                                         const char *root);\n"
12245 "\n"
12246 msgstr ""
12247
12248 # type: textblock
12249 #. type: textblock
12250 #: ../src/guestfs-actions.pod:2883
12251 msgid ""
12252 "C<guestfs_inspect_get_package_format> and this function return the package "
12253 "format and package management tool used by the inspected operating system.  "
12254 "For example for Fedora these functions would return C<rpm> (package format) "
12255 "and C<yum> (package management)."
12256 msgstr ""
12257
12258 # type: textblock
12259 #. type: textblock
12260 #: ../src/guestfs-actions.pod:2889 ../fish/guestfish-actions.pod:1990
12261 msgid ""
12262 "This returns the string C<unknown> if we could not determine the package "
12263 "management tool I<or> if the operating system does not have a real packaging "
12264 "system (eg. Windows)."
12265 msgstr ""
12266
12267 # type: textblock
12268 #. type: textblock
12269 #: ../src/guestfs-actions.pod:2893 ../fish/guestfish-actions.pod:1994
12270 msgid ""
12271 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
12272 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
12273 "libguestfs may return other strings."
12274 msgstr ""
12275
12276 # type: =head2
12277 #. type: =head2
12278 #: ../src/guestfs-actions.pod:2905
12279 msgid "guestfs_inspect_get_product_name"
12280 msgstr ""
12281
12282 # type: verbatim
12283 #. type: verbatim
12284 #: ../src/guestfs-actions.pod:2907
12285 #, no-wrap
12286 msgid ""
12287 " char *\n"
12288 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
12289 "                                   const char *root);\n"
12290 "\n"
12291 msgstr ""
12292
12293 # type: textblock
12294 #. type: textblock
12295 #: ../src/guestfs-actions.pod:2914 ../fish/guestfish-actions.pod:2008
12296 msgid ""
12297 "This returns the product name of the inspected operating system.  The "
12298 "product name is generally some freeform string which can be displayed to the "
12299 "user, but should not be parsed by programs."
12300 msgstr ""
12301
12302 # type: textblock
12303 #. type: textblock
12304 #: ../src/guestfs-actions.pod:2919 ../fish/guestfish-actions.pod:2013
12305 msgid ""
12306 "If the product name could not be determined, then the string C<unknown> is "
12307 "returned."
12308 msgstr ""
12309
12310 #. type: =head2
12311 #: ../src/guestfs-actions.pod:2929
12312 msgid "guestfs_inspect_get_product_variant"
12313 msgstr ""
12314
12315 #. type: verbatim
12316 #: ../src/guestfs-actions.pod:2931
12317 #, no-wrap
12318 msgid ""
12319 " char *\n"
12320 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
12321 "                                      const char *root);\n"
12322 "\n"
12323 msgstr ""
12324
12325 #. type: textblock
12326 #: ../src/guestfs-actions.pod:2938 ../fish/guestfish-actions.pod:2025
12327 msgid "This returns the product variant of the inspected operating system."
12328 msgstr ""
12329
12330 #. type: textblock
12331 #: ../src/guestfs-actions.pod:2941 ../fish/guestfish-actions.pod:2028
12332 msgid ""
12333 "For Windows guests, this returns the contents of the Registry key C<HKLM"
12334 "\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
12335 "is usually a string such as C<Client> or C<Server> (other values are "
12336 "possible).  This can be used to distinguish consumer and enterprise versions "
12337 "of Windows that have the same version number (for example, Windows 7 and "
12338 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
12339 "the latter is C<Server>)."
12340 msgstr ""
12341
12342 #. type: textblock
12343 #: ../src/guestfs-actions.pod:2950 ../fish/guestfish-actions.pod:2037
12344 msgid ""
12345 "For enterprise Linux guests, in future we intend this to return the product "
12346 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
12347 "implemented at present."
12348 msgstr ""
12349
12350 #. type: textblock
12351 #: ../src/guestfs-actions.pod:2954 ../fish/guestfish-actions.pod:2041
12352 msgid ""
12353 "If the product variant could not be determined, then the string C<unknown> "
12354 "is returned."
12355 msgstr ""
12356
12357 #. type: textblock
12358 #: ../src/guestfs-actions.pod:2957
12359 msgid ""
12360 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
12361 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
12362 msgstr ""
12363
12364 # type: =head2
12365 #. type: =head2
12366 #: ../src/guestfs-actions.pod:2964
12367 msgid "guestfs_inspect_get_roots"
12368 msgstr ""
12369
12370 # type: verbatim
12371 #. type: verbatim
12372 #: ../src/guestfs-actions.pod:2966
12373 #, no-wrap
12374 msgid ""
12375 " char **\n"
12376 " guestfs_inspect_get_roots (guestfs_h *g);\n"
12377 "\n"
12378 msgstr ""
12379
12380 # type: textblock
12381 #. type: textblock
12382 #: ../src/guestfs-actions.pod:2969
12383 msgid ""
12384 "This function is a convenient way to get the list of root devices, as "
12385 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
12386 "the whole inspection process."
12387 msgstr ""
12388
12389 # type: textblock
12390 #. type: textblock
12391 #: ../src/guestfs-actions.pod:2973
12392 msgid ""
12393 "This returns an empty list if either no root devices were found or the "
12394 "caller has not called C<guestfs_inspect_os>."
12395 msgstr ""
12396
12397 # type: textblock
12398 #. type: textblock
12399 #: ../src/guestfs-actions.pod:2982
12400 msgid "(Added in 1.7.3)"
12401 msgstr ""
12402
12403 # type: =head2
12404 #. type: =head2
12405 #: ../src/guestfs-actions.pod:2984
12406 msgid "guestfs_inspect_get_type"
12407 msgstr ""
12408
12409 # type: verbatim
12410 #. type: verbatim
12411 #: ../src/guestfs-actions.pod:2986
12412 #, no-wrap
12413 msgid ""
12414 " char *\n"
12415 " guestfs_inspect_get_type (guestfs_h *g,\n"
12416 "                           const char *root);\n"
12417 "\n"
12418 msgstr ""
12419
12420 # type: textblock
12421 #. type: textblock
12422 #: ../src/guestfs-actions.pod:2993 ../fish/guestfish-actions.pod:2068
12423 msgid ""
12424 "This returns the type of the inspected operating system.  Currently defined "
12425 "types are:"
12426 msgstr ""
12427
12428 # type: =item
12429 #. type: =item
12430 #: ../src/guestfs-actions.pod:2998 ../fish/guestfish-actions.pod:2073
12431 msgid "\"linux\""
12432 msgstr ""
12433
12434 # type: textblock
12435 #. type: textblock
12436 #: ../src/guestfs-actions.pod:3000 ../fish/guestfish-actions.pod:2075
12437 msgid "Any Linux-based operating system."
12438 msgstr ""
12439
12440 # type: textblock
12441 #. type: textblock
12442 #: ../src/guestfs-actions.pod:3004 ../fish/guestfish-actions.pod:2079
12443 msgid "Any Microsoft Windows operating system."
12444 msgstr ""
12445
12446 # type: =item
12447 #. type: =item
12448 #: ../src/guestfs-actions.pod:3006 ../fish/guestfish-actions.pod:2081
12449 msgid "\"freebsd\""
12450 msgstr ""
12451
12452 # type: textblock
12453 #. type: textblock
12454 #: ../src/guestfs-actions.pod:3008 ../fish/guestfish-actions.pod:2083
12455 msgid "FreeBSD."
12456 msgstr ""
12457
12458 # type: textblock
12459 #. type: textblock
12460 #: ../src/guestfs-actions.pod:3012 ../fish/guestfish-actions.pod:2087
12461 msgid "The operating system type could not be determined."
12462 msgstr ""
12463
12464 #. type: =head2
12465 #: ../src/guestfs-actions.pod:3026
12466 msgid "guestfs_inspect_get_windows_current_control_set"
12467 msgstr ""
12468
12469 #. type: verbatim
12470 #: ../src/guestfs-actions.pod:3028
12471 #, no-wrap
12472 msgid ""
12473 " char *\n"
12474 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
12475 "                                                  const char *root);\n"
12476 "\n"
12477 msgstr ""
12478
12479 #. type: textblock
12480 #: ../src/guestfs-actions.pod:3035 ../fish/guestfish-actions.pod:2103
12481 msgid ""
12482 "This returns the Windows CurrentControlSet of the inspected guest.  The "
12483 "CurrentControlSet is a registry key name such as C<ControlSet001>."
12484 msgstr ""
12485
12486 #. type: textblock
12487 #: ../src/guestfs-actions.pod:3038 ../fish/guestfish-actions.pod:2106
12488 msgid ""
12489 "This call assumes that the guest is Windows and that the Registry could be "
12490 "examined by inspection.  If this is not the case then an error is returned."
12491 msgstr ""
12492
12493 # type: =head2
12494 #. type: =head2
12495 #: ../src/guestfs-actions.pod:3047
12496 msgid "guestfs_inspect_get_windows_systemroot"
12497 msgstr ""
12498
12499 # type: verbatim
12500 #. type: verbatim
12501 #: ../src/guestfs-actions.pod:3049
12502 #, no-wrap
12503 msgid ""
12504 " char *\n"
12505 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
12506 "                                         const char *root);\n"
12507 "\n"
12508 msgstr ""
12509
12510 # type: textblock
12511 #. type: textblock
12512 #: ../src/guestfs-actions.pod:3056 ../fish/guestfish-actions.pod:2119
12513 msgid ""
12514 "This returns the Windows systemroot of the inspected guest.  The systemroot "
12515 "is a directory path such as C</WINDOWS>."
12516 msgstr ""
12517
12518 # type: textblock
12519 #. type: textblock
12520 #: ../src/guestfs-actions.pod:3059 ../fish/guestfish-actions.pod:2122
12521 msgid ""
12522 "This call assumes that the guest is Windows and that the systemroot could be "
12523 "determined by inspection.  If this is not the case then an error is returned."
12524 msgstr ""
12525
12526 # type: textblock
12527 #. type: textblock
12528 #: ../src/guestfs-actions.pod:3068
12529 msgid "(Added in 1.5.25)"
12530 msgstr ""
12531
12532 #. type: =head2
12533 #: ../src/guestfs-actions.pod:3070
12534 msgid "guestfs_inspect_is_live"
12535 msgstr ""
12536
12537 #. type: verbatim
12538 #: ../src/guestfs-actions.pod:3072
12539 #, no-wrap
12540 msgid ""
12541 " int\n"
12542 " guestfs_inspect_is_live (guestfs_h *g,\n"
12543 "                          const char *root);\n"
12544 "\n"
12545 msgstr ""
12546
12547 #. type: textblock
12548 #: ../src/guestfs-actions.pod:3079
12549 msgid ""
12550 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12551 "disk), then this returns true if a live image was detected on the disk."
12552 msgstr ""
12553
12554 #. type: =head2
12555 #: ../src/guestfs-actions.pod:3087
12556 msgid "guestfs_inspect_is_multipart"
12557 msgstr ""
12558
12559 #. type: verbatim
12560 #: ../src/guestfs-actions.pod:3089
12561 #, no-wrap
12562 msgid ""
12563 " int\n"
12564 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
12565 "                               const char *root);\n"
12566 "\n"
12567 msgstr ""
12568
12569 #. type: textblock
12570 #: ../src/guestfs-actions.pod:3096
12571 msgid ""
12572 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12573 "disk), then this returns true if the disk is part of a set."
12574 msgstr ""
12575
12576 #. type: =head2
12577 #: ../src/guestfs-actions.pod:3104
12578 msgid "guestfs_inspect_is_netinst"
12579 msgstr ""
12580
12581 #. type: verbatim
12582 #: ../src/guestfs-actions.pod:3106
12583 #, no-wrap
12584 msgid ""
12585 " int\n"
12586 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
12587 "                             const char *root);\n"
12588 "\n"
12589 msgstr ""
12590
12591 #. type: textblock
12592 #: ../src/guestfs-actions.pod:3113
12593 msgid ""
12594 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12595 "disk), then this returns true if the disk is a network installer, ie. not a "
12596 "self-contained install CD but one which is likely to require network access "
12597 "to complete the install."
12598 msgstr ""
12599
12600 # type: =head2
12601 #. type: =head2
12602 #: ../src/guestfs-actions.pod:3123
12603 msgid "guestfs_inspect_list_applications"
12604 msgstr ""
12605
12606 # type: verbatim
12607 #. type: verbatim
12608 #: ../src/guestfs-actions.pod:3125
12609 #, no-wrap
12610 msgid ""
12611 " struct guestfs_application_list *\n"
12612 " guestfs_inspect_list_applications (guestfs_h *g,\n"
12613 "                                    const char *root);\n"
12614 "\n"
12615 msgstr ""
12616
12617 # type: textblock
12618 #. type: textblock
12619 #: ../src/guestfs-actions.pod:3132 ../fish/guestfish-actions.pod:2176
12620 msgid "Return the list of applications installed in the operating system."
12621 msgstr ""
12622
12623 # type: textblock
12624 #. type: textblock
12625 #: ../src/guestfs-actions.pod:3134
12626 msgid ""
12627 "I<Note:> This call works differently from other parts of the inspection "
12628 "API.  You have to call C<guestfs_inspect_os>, then "
12629 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
12630 "this.  Listing applications is a significantly more difficult operation "
12631 "which requires access to the full filesystem.  Also note that unlike the "
12632 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
12633 "the libguestfs handle, this call actually reads parts of the mounted "
12634 "filesystems during the call."
12635 msgstr ""
12636
12637 # type: textblock
12638 #. type: textblock
12639 #: ../src/guestfs-actions.pod:3144 ../fish/guestfish-actions.pod:2188
12640 msgid ""
12641 "This returns an empty list if the inspection code was not able to determine "
12642 "the list of applications."
12643 msgstr ""
12644
12645 # type: textblock
12646 #. type: textblock
12647 #: ../src/guestfs-actions.pod:3147 ../fish/guestfish-actions.pod:2191
12648 msgid "The application structure contains the following fields:"
12649 msgstr ""
12650
12651 # type: =item
12652 #. type: =item
12653 #: ../src/guestfs-actions.pod:3151 ../fish/guestfish-actions.pod:2195
12654 msgid "C<app_name>"
12655 msgstr ""
12656
12657 # type: textblock
12658 #. type: textblock
12659 #: ../src/guestfs-actions.pod:3153 ../fish/guestfish-actions.pod:2197
12660 msgid ""
12661 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
12662 "guests, this is the package name."
12663 msgstr ""
12664
12665 # type: =item
12666 #. type: =item
12667 #: ../src/guestfs-actions.pod:3156 ../fish/guestfish-actions.pod:2200
12668 msgid "C<app_display_name>"
12669 msgstr ""
12670
12671 # type: textblock
12672 #. type: textblock
12673 #: ../src/guestfs-actions.pod:3158 ../fish/guestfish-actions.pod:2202
12674 msgid ""
12675 "The display name of the application, sometimes localized to the install "
12676 "language of the guest operating system."
12677 msgstr ""
12678
12679 # type: textblock
12680 #. type: textblock
12681 #: ../src/guestfs-actions.pod:3161 ../fish/guestfish-actions.pod:2205
12682 msgid ""
12683 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
12684 "to display something can use C<app_name> instead."
12685 msgstr ""
12686
12687 # type: =item
12688 #. type: =item
12689 #: ../src/guestfs-actions.pod:3164 ../fish/guestfish-actions.pod:2208
12690 msgid "C<app_epoch>"
12691 msgstr ""
12692
12693 # type: textblock
12694 #. type: textblock
12695 #: ../src/guestfs-actions.pod:3166 ../fish/guestfish-actions.pod:2210
12696 msgid ""
12697 "For package managers which use epochs, this contains the epoch of the "
12698 "package (an integer).  If unavailable, this is returned as C<0>."
12699 msgstr ""
12700
12701 # type: =item
12702 #. type: =item
12703 #: ../src/guestfs-actions.pod:3169 ../fish/guestfish-actions.pod:2213
12704 msgid "C<app_version>"
12705 msgstr ""
12706
12707 # type: textblock
12708 #. type: textblock
12709 #: ../src/guestfs-actions.pod:3171 ../fish/guestfish-actions.pod:2215
12710 msgid ""
12711 "The version string of the application or package.  If unavailable this is "
12712 "returned as an empty string C<\"\">."
12713 msgstr ""
12714
12715 # type: =item
12716 #. type: =item
12717 #: ../src/guestfs-actions.pod:3174 ../fish/guestfish-actions.pod:2218
12718 msgid "C<app_release>"
12719 msgstr ""
12720
12721 # type: textblock
12722 #. type: textblock
12723 #: ../src/guestfs-actions.pod:3176 ../fish/guestfish-actions.pod:2220
12724 msgid ""
12725 "The release string of the application or package, for package managers that "
12726 "use this.  If unavailable this is returned as an empty string C<\"\">."
12727 msgstr ""
12728
12729 # type: =item
12730 #. type: =item
12731 #: ../src/guestfs-actions.pod:3180 ../fish/guestfish-actions.pod:2224
12732 msgid "C<app_install_path>"
12733 msgstr ""
12734
12735 # type: textblock
12736 #. type: textblock
12737 #: ../src/guestfs-actions.pod:3182 ../fish/guestfish-actions.pod:2226
12738 msgid ""
12739 "The installation path of the application (on operating systems such as "
12740 "Windows which use installation paths).  This path is in the format used by "
12741 "the guest operating system, it is not a libguestfs path."
12742 msgstr ""
12743
12744 # type: textblock
12745 #. type: textblock
12746 #: ../src/guestfs-actions.pod:3187 ../fish/guestfish-actions.pod:2231
12747 msgid "If unavailable this is returned as an empty string C<\"\">."
12748 msgstr ""
12749
12750 # type: =item
12751 #. type: =item
12752 #: ../src/guestfs-actions.pod:3189 ../fish/guestfish-actions.pod:2233
12753 msgid "C<app_trans_path>"
12754 msgstr ""
12755
12756 # type: textblock
12757 #. type: textblock
12758 #: ../src/guestfs-actions.pod:3191 ../fish/guestfish-actions.pod:2235
12759 msgid ""
12760 "The install path translated into a libguestfs path.  If unavailable this is "
12761 "returned as an empty string C<\"\">."
12762 msgstr ""
12763
12764 # type: =item
12765 #. type: =item
12766 #: ../src/guestfs-actions.pod:3194 ../fish/guestfish-actions.pod:2238
12767 msgid "C<app_publisher>"
12768 msgstr ""
12769
12770 # type: textblock
12771 #. type: textblock
12772 #: ../src/guestfs-actions.pod:3196 ../fish/guestfish-actions.pod:2240
12773 msgid ""
12774 "The name of the publisher of the application, for package managers that use "
12775 "this.  If unavailable this is returned as an empty string C<\"\">."
12776 msgstr ""
12777
12778 # type: =item
12779 #. type: =item
12780 #: ../src/guestfs-actions.pod:3200 ../fish/guestfish-actions.pod:2244
12781 msgid "C<app_url>"
12782 msgstr ""
12783
12784 # type: textblock
12785 #. type: textblock
12786 #: ../src/guestfs-actions.pod:3202 ../fish/guestfish-actions.pod:2246
12787 msgid ""
12788 "The URL (eg. upstream URL) of the application.  If unavailable this is "
12789 "returned as an empty string C<\"\">."
12790 msgstr ""
12791
12792 # type: =item
12793 #. type: =item
12794 #: ../src/guestfs-actions.pod:3205 ../fish/guestfish-actions.pod:2249
12795 msgid "C<app_source_package>"
12796 msgstr ""
12797
12798 # type: textblock
12799 #. type: textblock
12800 #: ../src/guestfs-actions.pod:3207 ../fish/guestfish-actions.pod:2251
12801 msgid ""
12802 "For packaging systems which support this, the name of the source package.  "
12803 "If unavailable this is returned as an empty string C<\"\">."
12804 msgstr ""
12805
12806 # type: =item
12807 #. type: =item
12808 #: ../src/guestfs-actions.pod:3210 ../fish/guestfish-actions.pod:2254
12809 msgid "C<app_summary>"
12810 msgstr ""
12811
12812 # type: textblock
12813 #. type: textblock
12814 #: ../src/guestfs-actions.pod:3212 ../fish/guestfish-actions.pod:2256
12815 msgid ""
12816 "A short (usually one line) description of the application or package.  If "
12817 "unavailable this is returned as an empty string C<\"\">."
12818 msgstr ""
12819
12820 # type: =item
12821 #. type: =item
12822 #: ../src/guestfs-actions.pod:3215 ../fish/guestfish-actions.pod:2259
12823 msgid "C<app_description>"
12824 msgstr ""
12825
12826 # type: textblock
12827 #. type: textblock
12828 #: ../src/guestfs-actions.pod:3217 ../fish/guestfish-actions.pod:2261
12829 msgid ""
12830 "A longer description of the application or package.  If unavailable this is "
12831 "returned as an empty string C<\"\">."
12832 msgstr ""
12833
12834 # type: textblock
12835 #. type: textblock
12836 #: ../src/guestfs-actions.pod:3224
12837 msgid ""
12838 "This function returns a C<struct guestfs_application_list *>, or NULL if "
12839 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
12840 "after use>."
12841 msgstr ""
12842
12843 # type: textblock
12844 #. type: textblock
12845 #: ../src/guestfs-actions.pod:3228
12846 msgid "(Added in 1.7.8)"
12847 msgstr ""
12848
12849 # type: =head2
12850 #. type: =head2
12851 #: ../src/guestfs-actions.pod:3230
12852 msgid "guestfs_inspect_os"
12853 msgstr ""
12854
12855 # type: verbatim
12856 #. type: verbatim
12857 #: ../src/guestfs-actions.pod:3232
12858 #, no-wrap
12859 msgid ""
12860 " char **\n"
12861 " guestfs_inspect_os (guestfs_h *g);\n"
12862 "\n"
12863 msgstr ""
12864
12865 # type: textblock
12866 #. type: textblock
12867 #: ../src/guestfs-actions.pod:3235 ../fish/guestfish-actions.pod:2272
12868 msgid ""
12869 "This function uses other libguestfs functions and certain heuristics to "
12870 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
12871 "for operating systems."
12872 msgstr ""
12873
12874 # type: textblock
12875 #. type: textblock
12876 #: ../src/guestfs-actions.pod:3239 ../fish/guestfish-actions.pod:2276
12877 msgid "The list returned is empty if no operating systems were found."
12878 msgstr ""
12879
12880 # type: textblock
12881 #. type: textblock
12882 #: ../src/guestfs-actions.pod:3241 ../fish/guestfish-actions.pod:2278
12883 msgid ""
12884 "If one operating system was found, then this returns a list with a single "
12885 "element, which is the name of the root filesystem of this operating system.  "
12886 "It is also possible for this function to return a list containing more than "
12887 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
12888 "element being the root filesystem of one of the operating systems."
12889 msgstr ""
12890
12891 # type: textblock
12892 #. type: textblock
12893 #: ../src/guestfs-actions.pod:3248
12894 msgid ""
12895 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
12896 "functions in order to query further information about each operating system, "
12897 "such as the name and version."
12898 msgstr ""
12899
12900 # type: textblock
12901 #. type: textblock
12902 #: ../src/guestfs-actions.pod:3253
12903 msgid ""
12904 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
12905 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
12906 "the contents.  This should be called with no disks currently mounted.  The "
12907 "function may also use Augeas, so any existing Augeas handle will be closed."
12908 msgstr ""
12909
12910 # type: textblock
12911 #. type: textblock
12912 #: ../src/guestfs-actions.pod:3259 ../fish/guestfish-actions.pod:2296
12913 msgid ""
12914 "This function cannot decrypt encrypted disks.  The caller must do that first "
12915 "(supplying the necessary keys) if the disk is encrypted."
12916 msgstr ""
12917
12918 # type: textblock
12919 #. type: textblock
12920 #: ../src/guestfs-actions.pod:3265 ../src/guestfs-actions.pod:3555
12921 #: ../src/guestfs-actions.pod:3617
12922 msgid "See also C<guestfs_list_filesystems>."
12923 msgstr ""
12924
12925 # type: =head2
12926 #. type: =head2
12927 #: ../src/guestfs-actions.pod:3273
12928 msgid "guestfs_is_blockdev"
12929 msgstr ""
12930
12931 # type: verbatim
12932 #. type: verbatim
12933 #: ../src/guestfs-actions.pod:3275
12934 #, no-wrap
12935 msgid ""
12936 " int\n"
12937 " guestfs_is_blockdev (guestfs_h *g,\n"
12938 "                      const char *path);\n"
12939 "\n"
12940 msgstr ""
12941
12942 # type: textblock
12943 #. type: textblock
12944 #: ../src/guestfs-actions.pod:3279 ../fish/guestfish-actions.pod:2308
12945 msgid ""
12946 "This returns C<true> if and only if there is a block device with the given "
12947 "C<path> name."
12948 msgstr ""
12949
12950 # type: textblock
12951 #. type: textblock
12952 #: ../src/guestfs-actions.pod:3282 ../src/guestfs-actions.pod:3311
12953 #: ../src/guestfs-actions.pod:3341 ../src/guestfs-actions.pod:3356
12954 #: ../src/guestfs-actions.pod:3372 ../src/guestfs-actions.pod:3428
12955 #: ../src/guestfs-actions.pod:3443
12956 msgid "See also C<guestfs_stat>."
12957 msgstr ""
12958
12959 # type: textblock
12960 #. type: textblock
12961 #: ../src/guestfs-actions.pod:3286 ../src/guestfs-actions.pod:3315
12962 #: ../src/guestfs-actions.pod:3360 ../src/guestfs-actions.pod:3432
12963 #: ../src/guestfs-actions.pod:3447
12964 msgid "(Added in 1.5.10)"
12965 msgstr ""
12966
12967 # type: =head2
12968 #. type: =head2
12969 #: ../src/guestfs-actions.pod:3288
12970 msgid "guestfs_is_busy"
12971 msgstr ""
12972
12973 # type: verbatim
12974 #. type: verbatim
12975 #: ../src/guestfs-actions.pod:3290
12976 #, no-wrap
12977 msgid ""
12978 " int\n"
12979 " guestfs_is_busy (guestfs_h *g);\n"
12980 "\n"
12981 msgstr ""
12982
12983 # type: textblock
12984 #. type: textblock
12985 #: ../src/guestfs-actions.pod:3293 ../fish/guestfish-actions.pod:2317
12986 msgid ""
12987 "This returns true iff this handle is busy processing a command (in the "
12988 "C<BUSY> state)."
12989 msgstr ""
12990
12991 # type: =head2
12992 #. type: =head2
12993 #: ../src/guestfs-actions.pod:3302
12994 msgid "guestfs_is_chardev"
12995 msgstr ""
12996
12997 # type: verbatim
12998 #. type: verbatim
12999 #: ../src/guestfs-actions.pod:3304
13000 #, no-wrap
13001 msgid ""
13002 " int\n"
13003 " guestfs_is_chardev (guestfs_h *g,\n"
13004 "                     const char *path);\n"
13005 "\n"
13006 msgstr ""
13007
13008 # type: textblock
13009 #. type: textblock
13010 #: ../src/guestfs-actions.pod:3308 ../fish/guestfish-actions.pod:2326
13011 msgid ""
13012 "This returns C<true> if and only if there is a character device with the "
13013 "given C<path> name."
13014 msgstr ""
13015
13016 # type: =head2
13017 #. type: =head2
13018 #: ../src/guestfs-actions.pod:3317
13019 msgid "guestfs_is_config"
13020 msgstr ""
13021
13022 # type: verbatim
13023 #. type: verbatim
13024 #: ../src/guestfs-actions.pod:3319
13025 #, no-wrap
13026 msgid ""
13027 " int\n"
13028 " guestfs_is_config (guestfs_h *g);\n"
13029 "\n"
13030 msgstr ""
13031
13032 # type: textblock
13033 #. type: textblock
13034 #: ../src/guestfs-actions.pod:3322 ../fish/guestfish-actions.pod:2335
13035 msgid ""
13036 "This returns true iff this handle is being configured (in the C<CONFIG> "
13037 "state)."
13038 msgstr ""
13039
13040 # type: =head2
13041 #. type: =head2
13042 #: ../src/guestfs-actions.pod:3331
13043 msgid "guestfs_is_dir"
13044 msgstr ""
13045
13046 # type: verbatim
13047 #. type: verbatim
13048 #: ../src/guestfs-actions.pod:3333
13049 #, no-wrap
13050 msgid ""
13051 " int\n"
13052 " guestfs_is_dir (guestfs_h *g,\n"
13053 "                 const char *path);\n"
13054 "\n"
13055 msgstr ""
13056
13057 # type: textblock
13058 #. type: textblock
13059 #: ../src/guestfs-actions.pod:3337 ../fish/guestfish-actions.pod:2344
13060 msgid ""
13061 "This returns C<true> if and only if there is a directory with the given "
13062 "C<path> name.  Note that it returns false for other objects like files."
13063 msgstr ""
13064
13065 # type: =head2
13066 #. type: =head2
13067 #: ../src/guestfs-actions.pod:3347
13068 msgid "guestfs_is_fifo"
13069 msgstr ""
13070
13071 # type: verbatim
13072 #. type: verbatim
13073 #: ../src/guestfs-actions.pod:3349
13074 #, no-wrap
13075 msgid ""
13076 " int\n"
13077 " guestfs_is_fifo (guestfs_h *g,\n"
13078 "                  const char *path);\n"
13079 "\n"
13080 msgstr ""
13081
13082 # type: textblock
13083 #. type: textblock
13084 #: ../src/guestfs-actions.pod:3353 ../fish/guestfish-actions.pod:2354
13085 msgid ""
13086 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
13087 "given C<path> name."
13088 msgstr ""
13089
13090 # type: =head2
13091 #. type: =head2
13092 #: ../src/guestfs-actions.pod:3362
13093 msgid "guestfs_is_file"
13094 msgstr ""
13095
13096 # type: verbatim
13097 #. type: verbatim
13098 #: ../src/guestfs-actions.pod:3364
13099 #, no-wrap
13100 msgid ""
13101 " int\n"
13102 " guestfs_is_file (guestfs_h *g,\n"
13103 "                  const char *path);\n"
13104 "\n"
13105 msgstr ""
13106
13107 # type: textblock
13108 #. type: textblock
13109 #: ../src/guestfs-actions.pod:3368 ../fish/guestfish-actions.pod:2363
13110 msgid ""
13111 "This returns C<true> if and only if there is a regular file with the given "
13112 "C<path> name.  Note that it returns false for other objects like directories."
13113 msgstr ""
13114
13115 # type: =head2
13116 #. type: =head2
13117 #: ../src/guestfs-actions.pod:3378
13118 msgid "guestfs_is_launching"
13119 msgstr ""
13120
13121 # type: verbatim
13122 #. type: verbatim
13123 #: ../src/guestfs-actions.pod:3380
13124 #, no-wrap
13125 msgid ""
13126 " int\n"
13127 " guestfs_is_launching (guestfs_h *g);\n"
13128 "\n"
13129 msgstr ""
13130
13131 # type: textblock
13132 #. type: textblock
13133 #: ../src/guestfs-actions.pod:3383 ../fish/guestfish-actions.pod:2373
13134 msgid ""
13135 "This returns true iff this handle is launching the subprocess (in the "
13136 "C<LAUNCHING> state)."
13137 msgstr ""
13138
13139 # type: =head2
13140 #. type: =head2
13141 #: ../src/guestfs-actions.pod:3392
13142 msgid "guestfs_is_lv"
13143 msgstr ""
13144
13145 # type: verbatim
13146 #. type: verbatim
13147 #: ../src/guestfs-actions.pod:3394
13148 #, no-wrap
13149 msgid ""
13150 " int\n"
13151 " guestfs_is_lv (guestfs_h *g,\n"
13152 "                const char *device);\n"
13153 "\n"
13154 msgstr ""
13155
13156 # type: textblock
13157 #. type: textblock
13158 #: ../src/guestfs-actions.pod:3398 ../fish/guestfish-actions.pod:2382
13159 msgid ""
13160 "This command tests whether C<device> is a logical volume, and returns true "
13161 "iff this is the case."
13162 msgstr ""
13163
13164 # type: =head2
13165 #. type: =head2
13166 #: ../src/guestfs-actions.pod:3405
13167 msgid "guestfs_is_ready"
13168 msgstr ""
13169
13170 # type: verbatim
13171 #. type: verbatim
13172 #: ../src/guestfs-actions.pod:3407
13173 #, no-wrap
13174 msgid ""
13175 " int\n"
13176 " guestfs_is_ready (guestfs_h *g);\n"
13177 "\n"
13178 msgstr ""
13179
13180 # type: textblock
13181 #. type: textblock
13182 #: ../src/guestfs-actions.pod:3410 ../fish/guestfish-actions.pod:2389
13183 msgid ""
13184 "This returns true iff this handle is ready to accept commands (in the "
13185 "C<READY> state)."
13186 msgstr ""
13187
13188 # type: =head2
13189 #. type: =head2
13190 #: ../src/guestfs-actions.pod:3419
13191 msgid "guestfs_is_socket"
13192 msgstr ""
13193
13194 # type: verbatim
13195 #. type: verbatim
13196 #: ../src/guestfs-actions.pod:3421
13197 #, no-wrap
13198 msgid ""
13199 " int\n"
13200 " guestfs_is_socket (guestfs_h *g,\n"
13201 "                    const char *path);\n"
13202 "\n"
13203 msgstr ""
13204
13205 # type: textblock
13206 #. type: textblock
13207 #: ../src/guestfs-actions.pod:3425 ../fish/guestfish-actions.pod:2398
13208 msgid ""
13209 "This returns C<true> if and only if there is a Unix domain socket with the "
13210 "given C<path> name."
13211 msgstr ""
13212
13213 # type: =head2
13214 #. type: =head2
13215 #: ../src/guestfs-actions.pod:3434
13216 msgid "guestfs_is_symlink"
13217 msgstr ""
13218
13219 # type: verbatim
13220 #. type: verbatim
13221 #: ../src/guestfs-actions.pod:3436
13222 #, no-wrap
13223 msgid ""
13224 " int\n"
13225 " guestfs_is_symlink (guestfs_h *g,\n"
13226 "                     const char *path);\n"
13227 "\n"
13228 msgstr ""
13229
13230 # type: textblock
13231 #. type: textblock
13232 #: ../src/guestfs-actions.pod:3440 ../fish/guestfish-actions.pod:2407
13233 msgid ""
13234 "This returns C<true> if and only if there is a symbolic link with the given "
13235 "C<path> name."
13236 msgstr ""
13237
13238 # type: =head2
13239 #. type: =head2
13240 #: ../src/guestfs-actions.pod:3449
13241 msgid "guestfs_kill_subprocess"
13242 msgstr ""
13243
13244 # type: verbatim
13245 #. type: verbatim
13246 #: ../src/guestfs-actions.pod:3451
13247 #, no-wrap
13248 msgid ""
13249 " int\n"
13250 " guestfs_kill_subprocess (guestfs_h *g);\n"
13251 "\n"
13252 msgstr ""
13253
13254 # type: textblock
13255 #. type: textblock
13256 #: ../src/guestfs-actions.pod:3454 ../fish/guestfish-actions.pod:2416
13257 msgid "This kills the qemu subprocess.  You should never need to call this."
13258 msgstr ""
13259
13260 # type: =head2
13261 #. type: =head2
13262 #: ../src/guestfs-actions.pod:3460
13263 msgid "guestfs_launch"
13264 msgstr ""
13265
13266 # type: verbatim
13267 #. type: verbatim
13268 #: ../src/guestfs-actions.pod:3462
13269 #, no-wrap
13270 msgid ""
13271 " int\n"
13272 " guestfs_launch (guestfs_h *g);\n"
13273 "\n"
13274 msgstr ""
13275
13276 # type: textblock
13277 #. type: textblock
13278 #: ../src/guestfs-actions.pod:3465 ../fish/guestfish-actions.pod:2424
13279 msgid ""
13280 "Internally libguestfs is implemented by running a virtual machine using "
13281 "L<qemu(1)>."
13282 msgstr ""
13283
13284 # type: textblock
13285 #. type: textblock
13286 #: ../src/guestfs-actions.pod:3468 ../fish/guestfish-actions.pod:2427
13287 msgid ""
13288 "You should call this after configuring the handle (eg. adding drives) but "
13289 "before performing any actions."
13290 msgstr ""
13291
13292 # type: =head2
13293 #. type: =head2
13294 #: ../src/guestfs-actions.pod:3480
13295 msgid "guestfs_lchown"
13296 msgstr ""
13297
13298 # type: verbatim
13299 #. type: verbatim
13300 #: ../src/guestfs-actions.pod:3482
13301 #, no-wrap
13302 msgid ""
13303 " int\n"
13304 " guestfs_lchown (guestfs_h *g,\n"
13305 "                 int owner,\n"
13306 "                 int group,\n"
13307 "                 const char *path);\n"
13308 "\n"
13309 msgstr ""
13310
13311 # type: textblock
13312 #. type: textblock
13313 #: ../src/guestfs-actions.pod:3488
13314 msgid ""
13315 "Change the file owner to C<owner> and group to C<group>.  This is like "
13316 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
13317 "changed, not the target."
13318 msgstr ""
13319
13320 # type: =head2
13321 #. type: =head2
13322 #: ../src/guestfs-actions.pod:3500
13323 msgid "guestfs_lgetxattr"
13324 msgstr ""
13325
13326 # type: verbatim
13327 #. type: verbatim
13328 #: ../src/guestfs-actions.pod:3502
13329 #, no-wrap
13330 msgid ""
13331 " char *\n"
13332 " guestfs_lgetxattr (guestfs_h *g,\n"
13333 "                    const char *path,\n"
13334 "                    const char *name,\n"
13335 "                    size_t *size_r);\n"
13336 "\n"
13337 msgstr ""
13338
13339 # type: textblock
13340 #. type: textblock
13341 #: ../src/guestfs-actions.pod:3508 ../fish/guestfish-actions.pod:2446
13342 msgid ""
13343 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
13344 "is a symlink, then this call returns an extended attribute from the symlink."
13345 msgstr ""
13346
13347 # type: textblock
13348 #. type: textblock
13349 #: ../src/guestfs-actions.pod:3522
13350 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
13351 msgstr ""
13352
13353 # type: =head2
13354 #. type: =head2
13355 #: ../src/guestfs-actions.pod:3530
13356 msgid "guestfs_lgetxattrs"
13357 msgstr ""
13358
13359 # type: verbatim
13360 #. type: verbatim
13361 #: ../src/guestfs-actions.pod:3532
13362 #, no-wrap
13363 msgid ""
13364 " struct guestfs_xattr_list *\n"
13365 " guestfs_lgetxattrs (guestfs_h *g,\n"
13366 "                     const char *path);\n"
13367 "\n"
13368 msgstr ""
13369
13370 # type: textblock
13371 #. type: textblock
13372 #: ../src/guestfs-actions.pod:3536
13373 msgid ""
13374 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
13375 "then it returns the extended attributes of the link itself."
13376 msgstr ""
13377
13378 # type: =head2
13379 #. type: =head2
13380 #: ../src/guestfs-actions.pod:3546
13381 msgid "guestfs_list_devices"
13382 msgstr ""
13383
13384 # type: verbatim
13385 #. type: verbatim
13386 #: ../src/guestfs-actions.pod:3548
13387 #, no-wrap
13388 msgid ""
13389 " char **\n"
13390 " guestfs_list_devices (guestfs_h *g);\n"
13391 "\n"
13392 msgstr ""
13393
13394 # type: textblock
13395 #. type: textblock
13396 #: ../src/guestfs-actions.pod:3551 ../fish/guestfish-actions.pod:2474
13397 msgid "List all the block devices."
13398 msgstr ""
13399
13400 # type: textblock
13401 #. type: textblock
13402 #: ../src/guestfs-actions.pod:3553 ../fish/guestfish-actions.pod:2476
13403 msgid "The full block device names are returned, eg. C</dev/sda>."
13404 msgstr ""
13405
13406 # type: =head2
13407 #. type: =head2
13408 #: ../src/guestfs-actions.pod:3563
13409 msgid "guestfs_list_filesystems"
13410 msgstr ""
13411
13412 # type: verbatim
13413 #. type: verbatim
13414 #: ../src/guestfs-actions.pod:3565
13415 #, no-wrap
13416 msgid ""
13417 " char **\n"
13418 " guestfs_list_filesystems (guestfs_h *g);\n"
13419 "\n"
13420 msgstr ""
13421
13422 # type: textblock
13423 #. type: textblock
13424 #: ../src/guestfs-actions.pod:3568 ../fish/guestfish-actions.pod:2484
13425 msgid ""
13426 "This inspection command looks for filesystems on partitions, block devices "
13427 "and logical volumes, returning a list of devices containing filesystems and "
13428 "their type."
13429 msgstr ""
13430
13431 # type: textblock
13432 #. type: textblock
13433 #: ../src/guestfs-actions.pod:3572 ../fish/guestfish-actions.pod:2488
13434 msgid ""
13435 "The return value is a hash, where the keys are the devices containing "
13436 "filesystems, and the values are the filesystem types.  For example:"
13437 msgstr ""
13438
13439 # type: verbatim
13440 #. type: verbatim
13441 #: ../src/guestfs-actions.pod:3576 ../fish/guestfish-actions.pod:2492
13442 #, no-wrap
13443 msgid ""
13444 " \"/dev/sda1\" => \"ntfs\"\n"
13445 " \"/dev/sda2\" => \"ext2\"\n"
13446 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
13447 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
13448 "\n"
13449 msgstr ""
13450
13451 # type: textblock
13452 #. type: textblock
13453 #: ../src/guestfs-actions.pod:3581 ../fish/guestfish-actions.pod:2497
13454 msgid ""
13455 "The value can have the special value \"unknown\", meaning the content of the "
13456 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
13457 msgstr ""
13458
13459 # type: textblock
13460 #. type: textblock
13461 #: ../src/guestfs-actions.pod:3585
13462 msgid ""
13463 "This command runs other libguestfs commands, which might include "
13464 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
13465 "soon after launch and only when nothing is mounted."
13466 msgstr ""
13467
13468 # type: textblock
13469 #. type: textblock
13470 #: ../src/guestfs-actions.pod:3589
13471 msgid ""
13472 "Not all of the filesystems returned will be mountable.  In particular, swap "
13473 "partitions are returned in the list.  Also this command does not check that "
13474 "each filesystem found is valid and mountable, and some filesystems might be "
13475 "mountable but require special options.  Filesystems may not all belong to a "
13476 "single logical operating system (use C<guestfs_inspect_os> to look for OSes)."
13477 msgstr ""
13478
13479 # type: textblock
13480 #. type: textblock
13481 #: ../src/guestfs-actions.pod:3603 ../src/guestfs-actions.pod:5224
13482 msgid "(Added in 1.5.15)"
13483 msgstr ""
13484
13485 # type: =head2
13486 #. type: =head2
13487 #: ../src/guestfs-actions.pod:3605
13488 msgid "guestfs_list_partitions"
13489 msgstr ""
13490
13491 # type: verbatim
13492 #. type: verbatim
13493 #: ../src/guestfs-actions.pod:3607
13494 #, no-wrap
13495 msgid ""
13496 " char **\n"
13497 " guestfs_list_partitions (guestfs_h *g);\n"
13498 "\n"
13499 msgstr ""
13500
13501 # type: textblock
13502 #. type: textblock
13503 #: ../src/guestfs-actions.pod:3610 ../fish/guestfish-actions.pod:2517
13504 msgid "List all the partitions detected on all block devices."
13505 msgstr ""
13506
13507 # type: textblock
13508 #. type: textblock
13509 #: ../src/guestfs-actions.pod:3612 ../fish/guestfish-actions.pod:2519
13510 msgid "The full partition device names are returned, eg. C</dev/sda1>"
13511 msgstr ""
13512
13513 # type: textblock
13514 #. type: textblock
13515 #: ../src/guestfs-actions.pod:3614
13516 msgid ""
13517 "This does not return logical volumes.  For that you will need to call "
13518 "C<guestfs_lvs>."
13519 msgstr ""
13520
13521 # type: =head2
13522 #. type: =head2
13523 #: ../src/guestfs-actions.pod:3625
13524 msgid "guestfs_ll"
13525 msgstr ""
13526
13527 # type: verbatim
13528 #. type: verbatim
13529 #: ../src/guestfs-actions.pod:3627
13530 #, no-wrap
13531 msgid ""
13532 " char *\n"
13533 " guestfs_ll (guestfs_h *g,\n"
13534 "             const char *directory);\n"
13535 "\n"
13536 msgstr ""
13537
13538 # type: textblock
13539 #. type: textblock
13540 #: ../src/guestfs-actions.pod:3631 ../fish/guestfish-actions.pod:2530
13541 msgid ""
13542 "List the files in C<directory> (relative to the root directory, there is no "
13543 "cwd) in the format of 'ls -la'."
13544 msgstr ""
13545
13546 # type: textblock
13547 #. type: textblock
13548 #: ../src/guestfs-actions.pod:3634 ../fish/guestfish-actions.pod:2533
13549 msgid ""
13550 "This command is mostly useful for interactive sessions.  It is I<not> "
13551 "intended that you try to parse the output string."
13552 msgstr ""
13553
13554 # type: =head2
13555 #. type: =head2
13556 #: ../src/guestfs-actions.pod:3642
13557 msgid "guestfs_ln"
13558 msgstr ""
13559
13560 # type: verbatim
13561 #. type: verbatim
13562 #: ../src/guestfs-actions.pod:3644
13563 #, no-wrap
13564 msgid ""
13565 " int\n"
13566 " guestfs_ln (guestfs_h *g,\n"
13567 "             const char *target,\n"
13568 "             const char *linkname);\n"
13569 "\n"
13570 msgstr ""
13571
13572 # type: textblock
13573 #. type: textblock
13574 #: ../src/guestfs-actions.pod:3649 ../fish/guestfish-actions.pod:2540
13575 msgid "This command creates a hard link using the C<ln> command."
13576 msgstr ""
13577
13578 # type: =head2
13579 #. type: =head2
13580 #: ../src/guestfs-actions.pod:3655
13581 msgid "guestfs_ln_f"
13582 msgstr ""
13583
13584 # type: verbatim
13585 #. type: verbatim
13586 #: ../src/guestfs-actions.pod:3657
13587 #, no-wrap
13588 msgid ""
13589 " int\n"
13590 " guestfs_ln_f (guestfs_h *g,\n"
13591 "               const char *target,\n"
13592 "               const char *linkname);\n"
13593 "\n"
13594 msgstr ""
13595
13596 #. type: textblock
13597 #: ../src/guestfs-actions.pod:3662 ../fish/guestfish-actions.pod:2546
13598 msgid ""
13599 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
13600 "option removes the link (C<linkname>) if it exists already."
13601 msgstr ""
13602
13603 # type: =head2
13604 #. type: =head2
13605 #: ../src/guestfs-actions.pod:3669
13606 msgid "guestfs_ln_s"
13607 msgstr ""
13608
13609 # type: verbatim
13610 #. type: verbatim
13611 #: ../src/guestfs-actions.pod:3671
13612 #, no-wrap
13613 msgid ""
13614 " int\n"
13615 " guestfs_ln_s (guestfs_h *g,\n"
13616 "               const char *target,\n"
13617 "               const char *linkname);\n"
13618 "\n"
13619 msgstr ""
13620
13621 # type: textblock
13622 #. type: textblock
13623 #: ../src/guestfs-actions.pod:3676 ../fish/guestfish-actions.pod:2553
13624 msgid "This command creates a symbolic link using the C<ln -s> command."
13625 msgstr ""
13626
13627 # type: =head2
13628 #. type: =head2
13629 #: ../src/guestfs-actions.pod:3682
13630 msgid "guestfs_ln_sf"
13631 msgstr ""
13632
13633 # type: verbatim
13634 #. type: verbatim
13635 #: ../src/guestfs-actions.pod:3684
13636 #, no-wrap
13637 msgid ""
13638 " int\n"
13639 " guestfs_ln_sf (guestfs_h *g,\n"
13640 "                const char *target,\n"
13641 "                const char *linkname);\n"
13642 "\n"
13643 msgstr ""
13644
13645 #. type: textblock
13646 #: ../src/guestfs-actions.pod:3689 ../fish/guestfish-actions.pod:2559
13647 msgid ""
13648 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
13649 "option removes the link (C<linkname>) if it exists already."
13650 msgstr ""
13651
13652 # type: =head2
13653 #. type: =head2
13654 #: ../src/guestfs-actions.pod:3696
13655 msgid "guestfs_lremovexattr"
13656 msgstr ""
13657
13658 # type: verbatim
13659 #. type: verbatim
13660 #: ../src/guestfs-actions.pod:3698
13661 #, no-wrap
13662 msgid ""
13663 " int\n"
13664 " guestfs_lremovexattr (guestfs_h *g,\n"
13665 "                       const char *xattr,\n"
13666 "                       const char *path);\n"
13667 "\n"
13668 msgstr ""
13669
13670 # type: textblock
13671 #. type: textblock
13672 #: ../src/guestfs-actions.pod:3703
13673 msgid ""
13674 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
13675 "link, then it removes an extended attribute of the link itself."
13676 msgstr ""
13677
13678 # type: =head2
13679 #. type: =head2
13680 #: ../src/guestfs-actions.pod:3711
13681 msgid "guestfs_ls"
13682 msgstr ""
13683
13684 # type: verbatim
13685 #. type: verbatim
13686 #: ../src/guestfs-actions.pod:3713
13687 #, no-wrap
13688 msgid ""
13689 " char **\n"
13690 " guestfs_ls (guestfs_h *g,\n"
13691 "             const char *directory);\n"
13692 "\n"
13693 msgstr ""
13694
13695 # type: textblock
13696 #. type: textblock
13697 #: ../src/guestfs-actions.pod:3717 ../fish/guestfish-actions.pod:2574
13698 msgid ""
13699 "List the files in C<directory> (relative to the root directory, there is no "
13700 "cwd).  The '.' and '..' entries are not returned, but hidden files are shown."
13701 msgstr ""
13702
13703 # type: textblock
13704 #. type: textblock
13705 #: ../src/guestfs-actions.pod:3721
13706 msgid ""
13707 "This command is mostly useful for interactive sessions.  Programs should "
13708 "probably use C<guestfs_readdir> instead."
13709 msgstr ""
13710
13711 # type: =head2
13712 #. type: =head2
13713 #: ../src/guestfs-actions.pod:3730
13714 msgid "guestfs_lsetxattr"
13715 msgstr ""
13716
13717 # type: verbatim
13718 #. type: verbatim
13719 #: ../src/guestfs-actions.pod:3732
13720 #, no-wrap
13721 msgid ""
13722 " int\n"
13723 " guestfs_lsetxattr (guestfs_h *g,\n"
13724 "                    const char *xattr,\n"
13725 "                    const char *val,\n"
13726 "                    int vallen,\n"
13727 "                    const char *path);\n"
13728 "\n"
13729 msgstr ""
13730
13731 # type: textblock
13732 #. type: textblock
13733 #: ../src/guestfs-actions.pod:3739
13734 msgid ""
13735 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
13736 "then it sets an extended attribute of the link itself."
13737 msgstr ""
13738
13739 # type: =head2
13740 #. type: =head2
13741 #: ../src/guestfs-actions.pod:3747
13742 msgid "guestfs_lstat"
13743 msgstr ""
13744
13745 # type: verbatim
13746 #. type: verbatim
13747 #: ../src/guestfs-actions.pod:3749
13748 #, no-wrap
13749 msgid ""
13750 " struct guestfs_stat *\n"
13751 " guestfs_lstat (guestfs_h *g,\n"
13752 "                const char *path);\n"
13753 "\n"
13754 msgstr ""
13755
13756 # type: textblock
13757 #. type: textblock
13758 #: ../src/guestfs-actions.pod:3753 ../src/guestfs-actions.pod:6355
13759 #: ../fish/guestfish-actions.pod:2593 ../fish/guestfish-actions.pod:4306
13760 msgid "Returns file information for the given C<path>."
13761 msgstr ""
13762
13763 # type: textblock
13764 #. type: textblock
13765 #: ../src/guestfs-actions.pod:3755
13766 msgid ""
13767 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
13768 "link, then the link is stat-ed, not the file it refers to."
13769 msgstr ""
13770
13771 # type: textblock
13772 #. type: textblock
13773 #: ../src/guestfs-actions.pod:3759 ../fish/guestfish-actions.pod:2599
13774 msgid "This is the same as the C<lstat(2)> system call."
13775 msgstr ""
13776
13777 # type: textblock
13778 #. type: textblock
13779 #: ../src/guestfs-actions.pod:3761 ../src/guestfs-actions.pod:6359
13780 msgid ""
13781 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
13782 "error.  I<The caller must call C<guestfs_free_stat> after use>."
13783 msgstr ""
13784
13785 # type: textblock
13786 #. type: textblock
13787 #: ../src/guestfs-actions.pod:3765 ../src/guestfs-actions.pod:6363
13788 #: ../src/guestfs-actions.pod:6381 ../src/guestfs-actions.pod:6762
13789 msgid "(Added in 0.9.2)"
13790 msgstr ""
13791
13792 # type: =head2
13793 #. type: =head2
13794 #: ../src/guestfs-actions.pod:3767
13795 msgid "guestfs_lstatlist"
13796 msgstr ""
13797
13798 # type: verbatim
13799 #. type: verbatim
13800 #: ../src/guestfs-actions.pod:3769
13801 #, no-wrap
13802 msgid ""
13803 " struct guestfs_stat_list *\n"
13804 " guestfs_lstatlist (guestfs_h *g,\n"
13805 "                    const char *path,\n"
13806 "                    char *const *names);\n"
13807 "\n"
13808 msgstr ""
13809
13810 # type: textblock
13811 #. type: textblock
13812 #: ../src/guestfs-actions.pod:3774
13813 msgid ""
13814 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
13815 "files, where all files are in the directory C<path>.  C<names> is the list "
13816 "of files from this directory."
13817 msgstr ""
13818
13819 # type: textblock
13820 #. type: textblock
13821 #: ../src/guestfs-actions.pod:3778 ../fish/guestfish-actions.pod:2609
13822 msgid ""
13823 "On return you get a list of stat structs, with a one-to-one correspondence "
13824 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
13825 "then the C<ino> field of that structure is set to C<-1>."
13826 msgstr ""
13827
13828 # type: textblock
13829 #. type: textblock
13830 #: ../src/guestfs-actions.pod:3783
13831 msgid ""
13832 "This call is intended for programs that want to efficiently list a directory "
13833 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
13834 "for a similarly efficient call for getting extended attributes.  Very long "
13835 "directory listings might cause the protocol message size to be exceeded, "
13836 "causing this call to fail.  The caller must split up such requests into "
13837 "smaller groups of names."
13838 msgstr ""
13839
13840 # type: textblock
13841 #. type: textblock
13842 #: ../src/guestfs-actions.pod:3791
13843 msgid ""
13844 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
13845 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
13846 msgstr ""
13847
13848 # type: =head2
13849 #. type: =head2
13850 #: ../src/guestfs-actions.pod:3797
13851 msgid "guestfs_luks_add_key"
13852 msgstr ""
13853
13854 # type: verbatim
13855 #. type: verbatim
13856 #: ../src/guestfs-actions.pod:3799
13857 #, no-wrap
13858 msgid ""
13859 " int\n"
13860 " guestfs_luks_add_key (guestfs_h *g,\n"
13861 "                       const char *device,\n"
13862 "                       const char *key,\n"
13863 "                       const char *newkey,\n"
13864 "                       int keyslot);\n"
13865 "\n"
13866 msgstr ""
13867
13868 # type: textblock
13869 #. type: textblock
13870 #: ../src/guestfs-actions.pod:3806 ../fish/guestfish-actions.pod:2626
13871 msgid ""
13872 "This command adds a new key on LUKS device C<device>.  C<key> is any "
13873 "existing key, and is used to access the device.  C<newkey> is the new key to "
13874 "add.  C<keyslot> is the key slot that will be replaced."
13875 msgstr ""
13876
13877 # type: textblock
13878 #. type: textblock
13879 #: ../src/guestfs-actions.pod:3811
13880 msgid ""
13881 "Note that if C<keyslot> already contains a key, then this command will "
13882 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
13883 msgstr ""
13884
13885 # type: textblock
13886 #. type: textblock
13887 #: ../src/guestfs-actions.pod:3817 ../src/guestfs-actions.pod:3857
13888 #: ../src/guestfs-actions.pod:3880 ../src/guestfs-actions.pod:3900
13889 #: ../src/guestfs-actions.pod:3932 ../src/guestfs-actions.pod:3951
13890 msgid ""
13891 "This function takes a key or passphrase parameter which could contain "
13892 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
13893 "information."
13894 msgstr ""
13895
13896 # type: textblock
13897 #. type: textblock
13898 #: ../src/guestfs-actions.pod:3821 ../src/guestfs-actions.pod:3861
13899 #: ../src/guestfs-actions.pod:3884 ../src/guestfs-actions.pod:3904
13900 msgid "(Added in 1.5.2)"
13901 msgstr ""
13902
13903 # type: =head2
13904 #. type: =head2
13905 #: ../src/guestfs-actions.pod:3823
13906 msgid "guestfs_luks_close"
13907 msgstr ""
13908
13909 # type: verbatim
13910 #. type: verbatim
13911 #: ../src/guestfs-actions.pod:3825
13912 #, no-wrap
13913 msgid ""
13914 " int\n"
13915 " guestfs_luks_close (guestfs_h *g,\n"
13916 "                     const char *device);\n"
13917 "\n"
13918 msgstr ""
13919
13920 # type: textblock
13921 #. type: textblock
13922 #: ../src/guestfs-actions.pod:3829
13923 msgid ""
13924 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
13925 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
13926 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
13927 "underlying block device."
13928 msgstr ""
13929
13930 # type: textblock
13931 #. type: textblock
13932 #: ../src/guestfs-actions.pod:3837 ../src/guestfs-actions.pod:3936
13933 #: ../src/guestfs-actions.pod:3955 ../src/guestfs-actions.pod:4005
13934 #: ../src/guestfs-actions.pod:4053
13935 msgid "(Added in 1.5.1)"
13936 msgstr ""
13937
13938 # type: =head2
13939 #. type: =head2
13940 #: ../src/guestfs-actions.pod:3839
13941 msgid "guestfs_luks_format"
13942 msgstr ""
13943
13944 # type: verbatim
13945 #. type: verbatim
13946 #: ../src/guestfs-actions.pod:3841
13947 #, no-wrap
13948 msgid ""
13949 " int\n"
13950 " guestfs_luks_format (guestfs_h *g,\n"
13951 "                      const char *device,\n"
13952 "                      const char *key,\n"
13953 "                      int keyslot);\n"
13954 "\n"
13955 msgstr ""
13956
13957 # type: textblock
13958 #. type: textblock
13959 #: ../src/guestfs-actions.pod:3847 ../fish/guestfish-actions.pod:2652
13960 msgid ""
13961 "This command erases existing data on C<device> and formats the device as a "
13962 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
13963 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
13964 msgstr ""
13965
13966 # type: textblock
13967 #. type: textblock
13968 #: ../src/guestfs-actions.pod:3854 ../src/guestfs-actions.pod:3877
13969 #: ../src/guestfs-actions.pod:4017 ../src/guestfs-actions.pod:4975
13970 #: ../src/guestfs-actions.pod:5755 ../src/guestfs-actions.pod:6162
13971 #: ../src/guestfs-actions.pod:6192 ../src/guestfs-actions.pod:6225
13972 #: ../src/guestfs-actions.pod:7406 ../fish/guestfish-actions.pod:2660
13973 #: ../fish/guestfish-actions.pod:2673 ../fish/guestfish-actions.pod:2757
13974 #: ../fish/guestfish-actions.pod:3347 ../fish/guestfish-actions.pod:3867
13975 #: ../fish/guestfish-actions.pod:4177 ../fish/guestfish-actions.pod:4200
13976 #: ../fish/guestfish-actions.pod:4222 ../fish/guestfish-actions.pod:4951
13977 msgid ""
13978 "B<This command is dangerous.  Without careful use you can easily destroy all "
13979 "your data>."
13980 msgstr ""
13981
13982 # type: =head2
13983 #. type: =head2
13984 #: ../src/guestfs-actions.pod:3863
13985 msgid "guestfs_luks_format_cipher"
13986 msgstr ""
13987
13988 # type: verbatim
13989 #. type: verbatim
13990 #: ../src/guestfs-actions.pod:3865
13991 #, no-wrap
13992 msgid ""
13993 " int\n"
13994 " guestfs_luks_format_cipher (guestfs_h *g,\n"
13995 "                             const char *device,\n"
13996 "                             const char *key,\n"
13997 "                             int keyslot,\n"
13998 "                             const char *cipher);\n"
13999 "\n"
14000 msgstr ""
14001
14002 # type: textblock
14003 #. type: textblock
14004 #: ../src/guestfs-actions.pod:3872
14005 msgid ""
14006 "This command is the same as C<guestfs_luks_format> but it also allows you to "
14007 "set the C<cipher> used."
14008 msgstr ""
14009
14010 # type: =head2
14011 #. type: =head2
14012 #: ../src/guestfs-actions.pod:3886
14013 msgid "guestfs_luks_kill_slot"
14014 msgstr ""
14015
14016 # type: verbatim
14017 #. type: verbatim
14018 #: ../src/guestfs-actions.pod:3888
14019 #, no-wrap
14020 msgid ""
14021 " int\n"
14022 " guestfs_luks_kill_slot (guestfs_h *g,\n"
14023 "                         const char *device,\n"
14024 "                         const char *key,\n"
14025 "                         int keyslot);\n"
14026 "\n"
14027 msgstr ""
14028
14029 # type: textblock
14030 #. type: textblock
14031 #: ../src/guestfs-actions.pod:3894 ../fish/guestfish-actions.pod:2680
14032 msgid ""
14033 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
14034 "device C<device>.  C<key> must be one of the I<other> keys."
14035 msgstr ""
14036
14037 # type: =head2
14038 #. type: =head2
14039 #: ../src/guestfs-actions.pod:3906
14040 msgid "guestfs_luks_open"
14041 msgstr ""
14042
14043 # type: verbatim
14044 #. type: verbatim
14045 #: ../src/guestfs-actions.pod:3908
14046 #, no-wrap
14047 msgid ""
14048 " int\n"
14049 " guestfs_luks_open (guestfs_h *g,\n"
14050 "                    const char *device,\n"
14051 "                    const char *key,\n"
14052 "                    const char *mapname);\n"
14053 "\n"
14054 msgstr ""
14055
14056 # type: textblock
14057 #. type: textblock
14058 #: ../src/guestfs-actions.pod:3914 ../fish/guestfish-actions.pod:2691
14059 msgid ""
14060 "This command opens a block device which has been encrypted according to the "
14061 "Linux Unified Key Setup (LUKS) standard."
14062 msgstr ""
14063
14064 # type: textblock
14065 #. type: textblock
14066 #: ../src/guestfs-actions.pod:3917 ../fish/guestfish-actions.pod:2694
14067 msgid "C<device> is the encrypted block device or partition."
14068 msgstr ""
14069
14070 # type: textblock
14071 #. type: textblock
14072 #: ../src/guestfs-actions.pod:3919 ../fish/guestfish-actions.pod:2696
14073 msgid ""
14074 "The caller must supply one of the keys associated with the LUKS block "
14075 "device, in the C<key> parameter."
14076 msgstr ""
14077
14078 # type: textblock
14079 #. type: textblock
14080 #: ../src/guestfs-actions.pod:3922 ../fish/guestfish-actions.pod:2699
14081 msgid ""
14082 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
14083 "writes to this block device are decrypted from and encrypted to the "
14084 "underlying C<device> respectively."
14085 msgstr ""
14086
14087 # type: textblock
14088 #. type: textblock
14089 #: ../src/guestfs-actions.pod:3926
14090 msgid ""
14091 "If this block device contains LVM volume groups, then calling "
14092 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
14093 "visible."
14094 msgstr ""
14095
14096 # type: =head2
14097 #. type: =head2
14098 #: ../src/guestfs-actions.pod:3938
14099 msgid "guestfs_luks_open_ro"
14100 msgstr ""
14101
14102 # type: verbatim
14103 #. type: verbatim
14104 #: ../src/guestfs-actions.pod:3940
14105 #, no-wrap
14106 msgid ""
14107 " int\n"
14108 " guestfs_luks_open_ro (guestfs_h *g,\n"
14109 "                       const char *device,\n"
14110 "                       const char *key,\n"
14111 "                       const char *mapname);\n"
14112 "\n"
14113 msgstr ""
14114
14115 # type: textblock
14116 #. type: textblock
14117 #: ../src/guestfs-actions.pod:3946
14118 msgid ""
14119 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
14120 "created."
14121 msgstr ""
14122
14123 # type: =head2
14124 #. type: =head2
14125 #: ../src/guestfs-actions.pod:3957
14126 msgid "guestfs_lvcreate"
14127 msgstr ""
14128
14129 # type: verbatim
14130 #. type: verbatim
14131 #: ../src/guestfs-actions.pod:3959
14132 #, no-wrap
14133 msgid ""
14134 " int\n"
14135 " guestfs_lvcreate (guestfs_h *g,\n"
14136 "                   const char *logvol,\n"
14137 "                   const char *volgroup,\n"
14138 "                   int mbytes);\n"
14139 "\n"
14140 msgstr ""
14141
14142 # type: textblock
14143 #. type: textblock
14144 #: ../src/guestfs-actions.pod:3965 ../fish/guestfish-actions.pod:2724
14145 msgid ""
14146 "This creates an LVM logical volume called C<logvol> on the volume group "
14147 "C<volgroup>, with C<size> megabytes."
14148 msgstr ""
14149
14150 # type: =head2
14151 #. type: =head2
14152 #: ../src/guestfs-actions.pod:3972
14153 msgid "guestfs_lvm_canonical_lv_name"
14154 msgstr ""
14155
14156 # type: verbatim
14157 #. type: verbatim
14158 #: ../src/guestfs-actions.pod:3974
14159 #, no-wrap
14160 msgid ""
14161 " char *\n"
14162 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
14163 "                                const char *lvname);\n"
14164 "\n"
14165 msgstr ""
14166
14167 # type: textblock
14168 #. type: textblock
14169 #: ../src/guestfs-actions.pod:3978 ../fish/guestfish-actions.pod:2731
14170 msgid ""
14171 "This converts alternative naming schemes for LVs that you might find to the "
14172 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to C</dev/VG/"
14173 "LV>."
14174 msgstr ""
14175
14176 # type: textblock
14177 #. type: textblock
14178 #: ../src/guestfs-actions.pod:3982 ../fish/guestfish-actions.pod:2735
14179 msgid ""
14180 "This command returns an error if the C<lvname> parameter does not refer to a "
14181 "logical volume."
14182 msgstr ""
14183
14184 # type: textblock
14185 #. type: textblock
14186 #: ../src/guestfs-actions.pod:3985
14187 msgid "See also C<guestfs_is_lv>."
14188 msgstr ""
14189
14190 # type: textblock
14191 #. type: textblock
14192 #: ../src/guestfs-actions.pod:3990
14193 msgid "(Added in 1.5.24)"
14194 msgstr ""
14195
14196 # type: =head2
14197 #. type: =head2
14198 #: ../src/guestfs-actions.pod:3992
14199 msgid "guestfs_lvm_clear_filter"
14200 msgstr ""
14201
14202 # type: verbatim
14203 #. type: verbatim
14204 #: ../src/guestfs-actions.pod:3994
14205 #, no-wrap
14206 msgid ""
14207 " int\n"
14208 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
14209 "\n"
14210 msgstr ""
14211
14212 # type: textblock
14213 #. type: textblock
14214 #: ../src/guestfs-actions.pod:3997
14215 msgid ""
14216 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
14217 "see every block device."
14218 msgstr ""
14219
14220 # type: textblock
14221 #. type: textblock
14222 #: ../src/guestfs-actions.pod:4000 ../src/guestfs-actions.pod:4042
14223 #: ../fish/guestfish-actions.pod:2747 ../fish/guestfish-actions.pod:2778
14224 msgid ""
14225 "This command also clears the LVM cache and performs a volume group scan."
14226 msgstr ""
14227
14228 # type: =head2
14229 #. type: =head2
14230 #: ../src/guestfs-actions.pod:4007
14231 msgid "guestfs_lvm_remove_all"
14232 msgstr ""
14233
14234 # type: verbatim
14235 #. type: verbatim
14236 #: ../src/guestfs-actions.pod:4009
14237 #, no-wrap
14238 msgid ""
14239 " int\n"
14240 " guestfs_lvm_remove_all (guestfs_h *g);\n"
14241 "\n"
14242 msgstr ""
14243
14244 # type: textblock
14245 #. type: textblock
14246 #: ../src/guestfs-actions.pod:4012 ../fish/guestfish-actions.pod:2754
14247 msgid ""
14248 "This command removes all LVM logical volumes, volume groups and physical "
14249 "volumes."
14250 msgstr ""
14251
14252 # type: =head2
14253 #. type: =head2
14254 #: ../src/guestfs-actions.pod:4022
14255 msgid "guestfs_lvm_set_filter"
14256 msgstr ""
14257
14258 # type: verbatim
14259 #. type: verbatim
14260 #: ../src/guestfs-actions.pod:4024
14261 #, no-wrap
14262 msgid ""
14263 " int\n"
14264 " guestfs_lvm_set_filter (guestfs_h *g,\n"
14265 "                         char *const *devices);\n"
14266 "\n"
14267 msgstr ""
14268
14269 # type: textblock
14270 #. type: textblock
14271 #: ../src/guestfs-actions.pod:4028 ../fish/guestfish-actions.pod:2764
14272 msgid ""
14273 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
14274 "block devices in the list C<devices>, and will ignore all other attached "
14275 "block devices."
14276 msgstr ""
14277
14278 # type: textblock
14279 #. type: textblock
14280 #: ../src/guestfs-actions.pod:4032 ../fish/guestfish-actions.pod:2768
14281 msgid ""
14282 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
14283 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
14284 "there are two types of duplication possible: either cloned PVs/VGs which "
14285 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
14286 "same name.  In normal operation you cannot create this situation, but you "
14287 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
14288 "inside the LVM metadata."
14289 msgstr ""
14290
14291 # type: textblock
14292 #. type: textblock
14293 #: ../src/guestfs-actions.pod:4045 ../fish/guestfish-actions.pod:2781
14294 msgid "You can filter whole block devices or individual partitions."
14295 msgstr ""
14296
14297 # type: textblock
14298 #. type: textblock
14299 #: ../src/guestfs-actions.pod:4047 ../fish/guestfish-actions.pod:2783
14300 msgid ""
14301 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
14302 "filesystem), even if you are not filtering out that VG."
14303 msgstr ""
14304
14305 # type: =head2
14306 #. type: =head2
14307 #: ../src/guestfs-actions.pod:4055
14308 msgid "guestfs_lvremove"
14309 msgstr ""
14310
14311 # type: verbatim
14312 #. type: verbatim
14313 #: ../src/guestfs-actions.pod:4057
14314 #, no-wrap
14315 msgid ""
14316 " int\n"
14317 " guestfs_lvremove (guestfs_h *g,\n"
14318 "                   const char *device);\n"
14319 "\n"
14320 msgstr ""
14321
14322 # type: textblock
14323 #. type: textblock
14324 #: ../src/guestfs-actions.pod:4061 ../fish/guestfish-actions.pod:2791
14325 msgid ""
14326 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
14327 "LV, such as C</dev/VG/LV>."
14328 msgstr ""
14329
14330 # type: textblock
14331 #. type: textblock
14332 #: ../src/guestfs-actions.pod:4064 ../fish/guestfish-actions.pod:2794
14333 msgid ""
14334 "You can also remove all LVs in a volume group by specifying the VG name, C</"
14335 "dev/VG>."
14336 msgstr ""
14337
14338 # type: textblock
14339 #. type: textblock
14340 #: ../src/guestfs-actions.pod:4069 ../src/guestfs-actions.pod:5321
14341 #: ../src/guestfs-actions.pod:7138
14342 msgid "(Added in 1.0.13)"
14343 msgstr ""
14344
14345 # type: =head2
14346 #. type: =head2
14347 #: ../src/guestfs-actions.pod:4071
14348 msgid "guestfs_lvrename"
14349 msgstr ""
14350
14351 # type: verbatim
14352 #. type: verbatim
14353 #: ../src/guestfs-actions.pod:4073
14354 #, no-wrap
14355 msgid ""
14356 " int\n"
14357 " guestfs_lvrename (guestfs_h *g,\n"
14358 "                   const char *logvol,\n"
14359 "                   const char *newlogvol);\n"
14360 "\n"
14361 msgstr ""
14362
14363 # type: textblock
14364 #. type: textblock
14365 #: ../src/guestfs-actions.pod:4078 ../fish/guestfish-actions.pod:2801
14366 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
14367 msgstr ""
14368
14369 # type: textblock
14370 #. type: textblock
14371 #: ../src/guestfs-actions.pod:4082 ../src/guestfs-actions.pod:7151
14372 msgid "(Added in 1.0.83)"
14373 msgstr ""
14374
14375 # type: =head2
14376 #. type: =head2
14377 #: ../src/guestfs-actions.pod:4084
14378 msgid "guestfs_lvresize"
14379 msgstr ""
14380
14381 # type: verbatim
14382 #. type: verbatim
14383 #: ../src/guestfs-actions.pod:4086
14384 #, no-wrap
14385 msgid ""
14386 " int\n"
14387 " guestfs_lvresize (guestfs_h *g,\n"
14388 "                   const char *device,\n"
14389 "                   int mbytes);\n"
14390 "\n"
14391 msgstr ""
14392
14393 # type: textblock
14394 #. type: textblock
14395 #: ../src/guestfs-actions.pod:4091 ../fish/guestfish-actions.pod:2807
14396 msgid ""
14397 "This resizes (expands or shrinks) an existing LVM logical volume to "
14398 "C<mbytes>.  When reducing, data in the reduced part is lost."
14399 msgstr ""
14400
14401 # type: =head2
14402 #. type: =head2
14403 #: ../src/guestfs-actions.pod:4099
14404 msgid "guestfs_lvresize_free"
14405 msgstr ""
14406
14407 # type: verbatim
14408 #. type: verbatim
14409 #: ../src/guestfs-actions.pod:4101
14410 #, no-wrap
14411 msgid ""
14412 " int\n"
14413 " guestfs_lvresize_free (guestfs_h *g,\n"
14414 "                        const char *lv,\n"
14415 "                        int percent);\n"
14416 "\n"
14417 msgstr ""
14418
14419 # type: textblock
14420 #. type: textblock
14421 #: ../src/guestfs-actions.pod:4106 ../fish/guestfish-actions.pod:2815
14422 msgid ""
14423 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
14424 "remaining free space in the volume group.  Commonly you would call this with "
14425 "pc = 100 which expands the logical volume as much as possible, using all "
14426 "remaining free space in the volume group."
14427 msgstr ""
14428
14429 # type: textblock
14430 #. type: textblock
14431 #: ../src/guestfs-actions.pod:4114
14432 msgid "(Added in 1.3.3)"
14433 msgstr ""
14434
14435 # type: =head2
14436 #. type: =head2
14437 #: ../src/guestfs-actions.pod:4116
14438 msgid "guestfs_lvs"
14439 msgstr ""
14440
14441 # type: verbatim
14442 #. type: verbatim
14443 #: ../src/guestfs-actions.pod:4118
14444 #, no-wrap
14445 msgid ""
14446 " char **\n"
14447 " guestfs_lvs (guestfs_h *g);\n"
14448 "\n"
14449 msgstr ""
14450
14451 # type: textblock
14452 #. type: textblock
14453 #: ../src/guestfs-actions.pod:4121 ../fish/guestfish-actions.pod:2825
14454 msgid ""
14455 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
14456 "(8)> command."
14457 msgstr ""
14458
14459 # type: textblock
14460 #. type: textblock
14461 #: ../src/guestfs-actions.pod:4124 ../fish/guestfish-actions.pod:2828
14462 msgid ""
14463 "This returns a list of the logical volume device names (eg. C</dev/"
14464 "VolGroup00/LogVol00>)."
14465 msgstr ""
14466
14467 # type: textblock
14468 #. type: textblock
14469 #: ../src/guestfs-actions.pod:4127
14470 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
14471 msgstr ""
14472
14473 # type: =head2
14474 #. type: =head2
14475 #: ../src/guestfs-actions.pod:4135
14476 msgid "guestfs_lvs_full"
14477 msgstr ""
14478
14479 # type: verbatim
14480 #. type: verbatim
14481 #: ../src/guestfs-actions.pod:4137
14482 #, no-wrap
14483 msgid ""
14484 " struct guestfs_lvm_lv_list *\n"
14485 " guestfs_lvs_full (guestfs_h *g);\n"
14486 "\n"
14487 msgstr ""
14488
14489 # type: textblock
14490 #. type: textblock
14491 #: ../src/guestfs-actions.pod:4140 ../fish/guestfish-actions.pod:2837
14492 msgid ""
14493 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
14494 "(8)> command.  The \"full\" version includes all fields."
14495 msgstr ""
14496
14497 # type: textblock
14498 #. type: textblock
14499 #: ../src/guestfs-actions.pod:4143
14500 msgid ""
14501 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
14502 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after use>."
14503 msgstr ""
14504
14505 # type: =head2
14506 #. type: =head2
14507 #: ../src/guestfs-actions.pod:4149
14508 msgid "guestfs_lvuuid"
14509 msgstr ""
14510
14511 # type: verbatim
14512 #. type: verbatim
14513 #: ../src/guestfs-actions.pod:4151
14514 #, no-wrap
14515 msgid ""
14516 " char *\n"
14517 " guestfs_lvuuid (guestfs_h *g,\n"
14518 "                 const char *device);\n"
14519 "\n"
14520 msgstr ""
14521
14522 # type: textblock
14523 #. type: textblock
14524 #: ../src/guestfs-actions.pod:4155 ../fish/guestfish-actions.pod:2844
14525 msgid "This command returns the UUID of the LVM LV C<device>."
14526 msgstr ""
14527
14528 # type: =head2
14529 #. type: =head2
14530 #: ../src/guestfs-actions.pod:4162
14531 msgid "guestfs_lxattrlist"
14532 msgstr ""
14533
14534 # type: verbatim
14535 #. type: verbatim
14536 #: ../src/guestfs-actions.pod:4164
14537 #, no-wrap
14538 msgid ""
14539 " struct guestfs_xattr_list *\n"
14540 " guestfs_lxattrlist (guestfs_h *g,\n"
14541 "                     const char *path,\n"
14542 "                     char *const *names);\n"
14543 "\n"
14544 msgstr ""
14545
14546 # type: textblock
14547 #. type: textblock
14548 #: ../src/guestfs-actions.pod:4169 ../fish/guestfish-actions.pod:2850
14549 msgid ""
14550 "This call allows you to get the extended attributes of multiple files, where "
14551 "all files are in the directory C<path>.  C<names> is the list of files from "
14552 "this directory."
14553 msgstr ""
14554
14555 # type: textblock
14556 #. type: textblock
14557 #: ../src/guestfs-actions.pod:4173 ../fish/guestfish-actions.pod:2854
14558 msgid ""
14559 "On return you get a flat list of xattr structs which must be interpreted "
14560 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
14561 "C<attrval> in this struct is zero-length to indicate there was an error "
14562 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
14563 "number (the number of following attributes for this file, which could be C<"
14564 "\"0\">).  Then after the first xattr struct are the zero or more attributes "
14565 "for the first named file.  This repeats for the second and subsequent files."
14566 msgstr ""
14567
14568 # type: textblock
14569 #. type: textblock
14570 #: ../src/guestfs-actions.pod:4183
14571 msgid ""
14572 "This call is intended for programs that want to efficiently list a directory "
14573 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
14574 "a similarly efficient call for getting standard stats.  Very long directory "
14575 "listings might cause the protocol message size to be exceeded, causing this "
14576 "call to fail.  The caller must split up such requests into smaller groups of "
14577 "names."
14578 msgstr ""
14579
14580 # type: =head2
14581 #. type: =head2
14582 #: ../src/guestfs-actions.pod:4197
14583 msgid "guestfs_mkdir"
14584 msgstr ""
14585
14586 # type: verbatim
14587 #. type: verbatim
14588 #: ../src/guestfs-actions.pod:4199
14589 #, no-wrap
14590 msgid ""
14591 " int\n"
14592 " guestfs_mkdir (guestfs_h *g,\n"
14593 "                const char *path);\n"
14594 "\n"
14595 msgstr ""
14596
14597 # type: textblock
14598 #. type: textblock
14599 #: ../src/guestfs-actions.pod:4203 ../fish/guestfish-actions.pod:2876
14600 msgid "Create a directory named C<path>."
14601 msgstr ""
14602
14603 # type: =head2
14604 #. type: =head2
14605 #: ../src/guestfs-actions.pod:4209
14606 msgid "guestfs_mkdir_mode"
14607 msgstr ""
14608
14609 # type: verbatim
14610 #. type: verbatim
14611 #: ../src/guestfs-actions.pod:4211
14612 #, no-wrap
14613 msgid ""
14614 " int\n"
14615 " guestfs_mkdir_mode (guestfs_h *g,\n"
14616 "                     const char *path,\n"
14617 "                     int mode);\n"
14618 "\n"
14619 msgstr ""
14620
14621 # type: textblock
14622 #. type: textblock
14623 #: ../src/guestfs-actions.pod:4216 ../fish/guestfish-actions.pod:2882
14624 msgid ""
14625 "This command creates a directory, setting the initial permissions of the "
14626 "directory to C<mode>."
14627 msgstr ""
14628
14629 # type: textblock
14630 #. type: textblock
14631 #: ../src/guestfs-actions.pod:4219 ../fish/guestfish-actions.pod:2885
14632 msgid ""
14633 "For common Linux filesystems, the actual mode which is set will be C<mode & "
14634 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
14635 "other ways."
14636 msgstr ""
14637
14638 # type: textblock
14639 #. type: textblock
14640 #: ../src/guestfs-actions.pod:4223
14641 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
14642 msgstr ""
14643
14644 # type: =head2
14645 #. type: =head2
14646 #: ../src/guestfs-actions.pod:4229
14647 msgid "guestfs_mkdir_p"
14648 msgstr ""
14649
14650 # type: verbatim
14651 #. type: verbatim
14652 #: ../src/guestfs-actions.pod:4231
14653 #, no-wrap
14654 msgid ""
14655 " int\n"
14656 " guestfs_mkdir_p (guestfs_h *g,\n"
14657 "                  const char *path);\n"
14658 "\n"
14659 msgstr ""
14660
14661 # type: textblock
14662 #. type: textblock
14663 #: ../src/guestfs-actions.pod:4235 ../fish/guestfish-actions.pod:2895
14664 msgid ""
14665 "Create a directory named C<path>, creating any parent directories as "
14666 "necessary.  This is like the C<mkdir -p> shell command."
14667 msgstr ""
14668
14669 # type: =head2
14670 #. type: =head2
14671 #: ../src/guestfs-actions.pod:4242
14672 msgid "guestfs_mkdtemp"
14673 msgstr ""
14674
14675 # type: verbatim
14676 #. type: verbatim
14677 #: ../src/guestfs-actions.pod:4244
14678 #, no-wrap
14679 msgid ""
14680 " char *\n"
14681 " guestfs_mkdtemp (guestfs_h *g,\n"
14682 "                  const char *template);\n"
14683 "\n"
14684 msgstr ""
14685
14686 # type: textblock
14687 #. type: textblock
14688 #: ../src/guestfs-actions.pod:4248 ../fish/guestfish-actions.pod:2902
14689 msgid ""
14690 "This command creates a temporary directory.  The C<template> parameter "
14691 "should be a full pathname for the temporary directory name with the final "
14692 "six characters being \"XXXXXX\"."
14693 msgstr ""
14694
14695 # type: textblock
14696 #. type: textblock
14697 #: ../src/guestfs-actions.pod:4253 ../fish/guestfish-actions.pod:2907
14698 msgid ""
14699 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
14700 "being suitable for Windows filesystems."
14701 msgstr ""
14702
14703 # type: textblock
14704 #. type: textblock
14705 #: ../src/guestfs-actions.pod:4256 ../fish/guestfish-actions.pod:2910
14706 msgid "The name of the temporary directory that was created is returned."
14707 msgstr ""
14708
14709 # type: textblock
14710 #. type: textblock
14711 #: ../src/guestfs-actions.pod:4259 ../fish/guestfish-actions.pod:2913
14712 msgid "The temporary directory is created with mode 0700 and is owned by root."
14713 msgstr ""
14714
14715 # type: textblock
14716 #. type: textblock
14717 #: ../src/guestfs-actions.pod:4262 ../fish/guestfish-actions.pod:2916
14718 msgid ""
14719 "The caller is responsible for deleting the temporary directory and its "
14720 "contents after use."
14721 msgstr ""
14722
14723 # type: textblock
14724 #. type: textblock
14725 #: ../src/guestfs-actions.pod:4265 ../fish/guestfish-actions.pod:2919
14726 msgid "See also: L<mkdtemp(3)>"
14727 msgstr ""
14728
14729 # type: =head2
14730 #. type: =head2
14731 #: ../src/guestfs-actions.pod:4272
14732 msgid "guestfs_mke2fs_J"
14733 msgstr ""
14734
14735 # type: verbatim
14736 #. type: verbatim
14737 #: ../src/guestfs-actions.pod:4274
14738 #, no-wrap
14739 msgid ""
14740 " int\n"
14741 " guestfs_mke2fs_J (guestfs_h *g,\n"
14742 "                   const char *fstype,\n"
14743 "                   int blocksize,\n"
14744 "                   const char *device,\n"
14745 "                   const char *journal);\n"
14746 "\n"
14747 msgstr ""
14748
14749 # type: textblock
14750 #. type: textblock
14751 #: ../src/guestfs-actions.pod:4281 ../fish/guestfish-actions.pod:2925
14752 msgid ""
14753 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14754 "C<journal>.  It is equivalent to the command:"
14755 msgstr ""
14756
14757 # type: verbatim
14758 #. type: verbatim
14759 #: ../src/guestfs-actions.pod:4285 ../fish/guestfish-actions.pod:2929
14760 #, no-wrap
14761 msgid ""
14762 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
14763 "\n"
14764 msgstr ""
14765
14766 # type: textblock
14767 #. type: textblock
14768 #: ../src/guestfs-actions.pod:4287
14769 msgid "See also C<guestfs_mke2journal>."
14770 msgstr ""
14771
14772 # type: textblock
14773 #. type: textblock
14774 #: ../src/guestfs-actions.pod:4291 ../src/guestfs-actions.pod:4309
14775 #: ../src/guestfs-actions.pod:4327 ../src/guestfs-actions.pod:4343
14776 #: ../src/guestfs-actions.pod:4357 ../src/guestfs-actions.pod:4371
14777 #: ../src/guestfs-actions.pod:4430 ../src/guestfs-actions.pod:4695
14778 msgid "(Added in 1.0.68)"
14779 msgstr ""
14780
14781 # type: =head2
14782 #. type: =head2
14783 #: ../src/guestfs-actions.pod:4293
14784 msgid "guestfs_mke2fs_JL"
14785 msgstr ""
14786
14787 # type: verbatim
14788 #. type: verbatim
14789 #: ../src/guestfs-actions.pod:4295
14790 #, no-wrap
14791 msgid ""
14792 " int\n"
14793 " guestfs_mke2fs_JL (guestfs_h *g,\n"
14794 "                    const char *fstype,\n"
14795 "                    int blocksize,\n"
14796 "                    const char *device,\n"
14797 "                    const char *label);\n"
14798 "\n"
14799 msgstr ""
14800
14801 # type: textblock
14802 #. type: textblock
14803 #: ../src/guestfs-actions.pod:4302 ../fish/guestfish-actions.pod:2937
14804 msgid ""
14805 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14806 "the journal labeled C<label>."
14807 msgstr ""
14808
14809 # type: textblock
14810 #. type: textblock
14811 #: ../src/guestfs-actions.pod:4305
14812 msgid "See also C<guestfs_mke2journal_L>."
14813 msgstr ""
14814
14815 # type: =head2
14816 #. type: =head2
14817 #: ../src/guestfs-actions.pod:4311
14818 msgid "guestfs_mke2fs_JU"
14819 msgstr ""
14820
14821 # type: verbatim
14822 #. type: verbatim
14823 #: ../src/guestfs-actions.pod:4313
14824 #, no-wrap
14825 msgid ""
14826 " int\n"
14827 " guestfs_mke2fs_JU (guestfs_h *g,\n"
14828 "                    const char *fstype,\n"
14829 "                    int blocksize,\n"
14830 "                    const char *device,\n"
14831 "                    const char *uuid);\n"
14832 "\n"
14833 msgstr ""
14834
14835 # type: textblock
14836 #. type: textblock
14837 #: ../src/guestfs-actions.pod:4320 ../fish/guestfish-actions.pod:2946
14838 msgid ""
14839 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14840 "the journal with UUID C<uuid>."
14841 msgstr ""
14842
14843 # type: textblock
14844 #. type: textblock
14845 #: ../src/guestfs-actions.pod:4323
14846 msgid "See also C<guestfs_mke2journal_U>."
14847 msgstr ""
14848
14849 # type: =head2
14850 #. type: =head2
14851 #: ../src/guestfs-actions.pod:4329
14852 msgid "guestfs_mke2journal"
14853 msgstr ""
14854
14855 # type: verbatim
14856 #. type: verbatim
14857 #: ../src/guestfs-actions.pod:4331
14858 #, no-wrap
14859 msgid ""
14860 " int\n"
14861 " guestfs_mke2journal (guestfs_h *g,\n"
14862 "                      int blocksize,\n"
14863 "                      const char *device);\n"
14864 "\n"
14865 msgstr ""
14866
14867 # type: textblock
14868 #. type: textblock
14869 #: ../src/guestfs-actions.pod:4336 ../fish/guestfish-actions.pod:2955
14870 msgid ""
14871 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
14872 "command:"
14873 msgstr ""
14874
14875 # type: verbatim
14876 #. type: verbatim
14877 #: ../src/guestfs-actions.pod:4339 ../fish/guestfish-actions.pod:2958
14878 #, no-wrap
14879 msgid ""
14880 " mke2fs -O journal_dev -b blocksize device\n"
14881 "\n"
14882 msgstr ""
14883
14884 # type: =head2
14885 #. type: =head2
14886 #: ../src/guestfs-actions.pod:4345
14887 msgid "guestfs_mke2journal_L"
14888 msgstr ""
14889
14890 # type: verbatim
14891 #. type: verbatim
14892 #: ../src/guestfs-actions.pod:4347
14893 #, no-wrap
14894 msgid ""
14895 " int\n"
14896 " guestfs_mke2journal_L (guestfs_h *g,\n"
14897 "                        int blocksize,\n"
14898 "                        const char *label,\n"
14899 "                        const char *device);\n"
14900 "\n"
14901 msgstr ""
14902
14903 # type: textblock
14904 #. type: textblock
14905 #: ../src/guestfs-actions.pod:4353 ../fish/guestfish-actions.pod:2964
14906 msgid "This creates an ext2 external journal on C<device> with label C<label>."
14907 msgstr ""
14908
14909 # type: =head2
14910 #. type: =head2
14911 #: ../src/guestfs-actions.pod:4359
14912 msgid "guestfs_mke2journal_U"
14913 msgstr ""
14914
14915 # type: verbatim
14916 #. type: verbatim
14917 #: ../src/guestfs-actions.pod:4361
14918 #, no-wrap
14919 msgid ""
14920 " int\n"
14921 " guestfs_mke2journal_U (guestfs_h *g,\n"
14922 "                        int blocksize,\n"
14923 "                        const char *uuid,\n"
14924 "                        const char *device);\n"
14925 "\n"
14926 msgstr ""
14927
14928 # type: textblock
14929 #. type: textblock
14930 #: ../src/guestfs-actions.pod:4367 ../fish/guestfish-actions.pod:2970
14931 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
14932 msgstr ""
14933
14934 # type: =head2
14935 #. type: =head2
14936 #: ../src/guestfs-actions.pod:4373
14937 msgid "guestfs_mkfifo"
14938 msgstr ""
14939
14940 # type: verbatim
14941 #. type: verbatim
14942 #: ../src/guestfs-actions.pod:4375
14943 #, no-wrap
14944 msgid ""
14945 " int\n"
14946 " guestfs_mkfifo (guestfs_h *g,\n"
14947 "                 int mode,\n"
14948 "                 const char *path);\n"
14949 "\n"
14950 msgstr ""
14951
14952 # type: textblock
14953 #. type: textblock
14954 #: ../src/guestfs-actions.pod:4380
14955 msgid ""
14956 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
14957 "is just a convenient wrapper around C<guestfs_mknod>."
14958 msgstr ""
14959
14960 # type: =head2
14961 #. type: =head2
14962 #: ../src/guestfs-actions.pod:4390
14963 msgid "guestfs_mkfs"
14964 msgstr ""
14965
14966 # type: verbatim
14967 #. type: verbatim
14968 #: ../src/guestfs-actions.pod:4392
14969 #, no-wrap
14970 msgid ""
14971 " int\n"
14972 " guestfs_mkfs (guestfs_h *g,\n"
14973 "               const char *fstype,\n"
14974 "               const char *device);\n"
14975 "\n"
14976 msgstr ""
14977
14978 # type: textblock
14979 #. type: textblock
14980 #: ../src/guestfs-actions.pod:4397 ../fish/guestfish-actions.pod:2986
14981 msgid ""
14982 "This creates a filesystem on C<device> (usually a partition or LVM logical "
14983 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
14984 msgstr ""
14985
14986 # type: =head2
14987 #. type: =head2
14988 #: ../src/guestfs-actions.pod:4405
14989 msgid "guestfs_mkfs_b"
14990 msgstr ""
14991
14992 # type: verbatim
14993 #. type: verbatim
14994 #: ../src/guestfs-actions.pod:4407
14995 #, no-wrap
14996 msgid ""
14997 " int\n"
14998 " guestfs_mkfs_b (guestfs_h *g,\n"
14999 "                 const char *fstype,\n"
15000 "                 int blocksize,\n"
15001 "                 const char *device);\n"
15002 "\n"
15003 msgstr ""
15004
15005 # type: textblock
15006 #. type: textblock
15007 #: ../src/guestfs-actions.pod:4413
15008 msgid ""
15009 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
15010 "block size of the resulting filesystem.  Supported block sizes depend on the "
15011 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
15012 msgstr ""
15013
15014 # type: textblock
15015 #. type: textblock
15016 #: ../src/guestfs-actions.pod:4418 ../src/guestfs-actions.pod:4461
15017 #: ../fish/guestfish-actions.pod:2999 ../fish/guestfish-actions.pod:3026
15018 msgid ""
15019 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
15020 "cluster size."
15021 msgstr ""
15022
15023 #. type: textblock
15024 #: ../src/guestfs-actions.pod:4423
15025 msgid ""
15026 "This function is deprecated.  In new code, use the L</guestfs_mkfs_opts> "
15027 "call instead."
15028 msgstr ""
15029
15030 # type: =head2
15031 #. type: =head2
15032 #: ../src/guestfs-actions.pod:4432
15033 msgid "guestfs_mkfs_opts"
15034 msgstr ""
15035
15036 # type: verbatim
15037 #. type: verbatim
15038 #: ../src/guestfs-actions.pod:4434
15039 #, no-wrap
15040 msgid ""
15041 " int\n"
15042 " guestfs_mkfs_opts (guestfs_h *g,\n"
15043 "                    const char *fstype,\n"
15044 "                    const char *device,\n"
15045 "                    ...);\n"
15046 "\n"
15047 msgstr ""
15048
15049 #. type: verbatim
15050 #: ../src/guestfs-actions.pod:4445
15051 #, no-wrap
15052 msgid ""
15053 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
15054 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
15055 "\n"
15056 msgstr ""
15057
15058 # type: textblock
15059 #. type: textblock
15060 #: ../src/guestfs-actions.pod:4448 ../fish/guestfish-actions.pod:3013
15061 msgid ""
15062 "This function creates a filesystem on C<device>.  The filesystem type is "
15063 "C<fstype>, for example C<ext3>."
15064 msgstr ""
15065
15066 # type: =item
15067 #. type: =item
15068 #: ../src/guestfs-actions.pod:4455 ../fish/guestfish-actions.pod:3020
15069 msgid "C<blocksize>"
15070 msgstr ""
15071
15072 # type: textblock
15073 #. type: textblock
15074 #: ../src/guestfs-actions.pod:4457 ../fish/guestfish-actions.pod:3022
15075 msgid ""
15076 "The filesystem block size.  Supported block sizes depend on the filesystem "
15077 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
15078 "filesystems."
15079 msgstr ""
15080
15081 #. type: textblock
15082 #: ../src/guestfs-actions.pod:4464 ../fish/guestfish-actions.pod:3029
15083 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
15084 msgstr ""
15085
15086 #. type: =item
15087 #: ../src/guestfs-actions.pod:4466 ../fish/guestfish-actions.pod:3031
15088 msgid "C<features>"
15089 msgstr ""
15090
15091 #. type: textblock
15092 #: ../src/guestfs-actions.pod:4468 ../fish/guestfish-actions.pod:3033
15093 msgid "This passes the I<-O> parameter to the external mkfs program."
15094 msgstr ""
15095
15096 #. type: textblock
15097 #: ../src/guestfs-actions.pod:4470 ../fish/guestfish-actions.pod:3035
15098 msgid ""
15099 "For certain filesystem types, this allows extra filesystem features to be "
15100 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
15101 msgstr ""
15102
15103 #. type: textblock
15104 #: ../src/guestfs-actions.pod:4474 ../fish/guestfish-actions.pod:3039
15105 msgid ""
15106 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
15107 "type."
15108 msgstr ""
15109
15110 #. type: textblock
15111 #: ../src/guestfs-actions.pod:4481
15112 msgid "(Added in 1.7.19)"
15113 msgstr ""
15114
15115 # type: =head2
15116 #. type: =head2
15117 #: ../src/guestfs-actions.pod:4483
15118 msgid "guestfs_mkfs_opts_va"
15119 msgstr ""
15120
15121 # type: verbatim
15122 #. type: verbatim
15123 #: ../src/guestfs-actions.pod:4485
15124 #, no-wrap
15125 msgid ""
15126 " int\n"
15127 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
15128 "                       const char *fstype,\n"
15129 "                       const char *device,\n"
15130 "                       va_list args);\n"
15131 "\n"
15132 msgstr ""
15133
15134 # type: textblock
15135 #. type: textblock
15136 #: ../src/guestfs-actions.pod:4491
15137 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
15138 msgstr ""
15139
15140 # type: =head2
15141 #. type: =head2
15142 #: ../src/guestfs-actions.pod:4495
15143 msgid "guestfs_mkfs_opts_argv"
15144 msgstr ""
15145
15146 # type: verbatim
15147 #. type: verbatim
15148 #: ../src/guestfs-actions.pod:4497
15149 #, no-wrap
15150 msgid ""
15151 " int\n"
15152 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
15153 "                         const char *fstype,\n"
15154 "                         const char *device,\n"
15155 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
15156 "\n"
15157 msgstr ""
15158
15159 # type: textblock
15160 #. type: textblock
15161 #: ../src/guestfs-actions.pod:4503
15162 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
15163 msgstr ""
15164
15165 # type: =head2
15166 #. type: =head2
15167 #: ../src/guestfs-actions.pod:4507
15168 msgid "guestfs_mkmountpoint"
15169 msgstr ""
15170
15171 # type: verbatim
15172 #. type: verbatim
15173 #: ../src/guestfs-actions.pod:4509
15174 #, no-wrap
15175 msgid ""
15176 " int\n"
15177 " guestfs_mkmountpoint (guestfs_h *g,\n"
15178 "                       const char *exemptpath);\n"
15179 "\n"
15180 msgstr ""
15181
15182 # type: textblock
15183 #. type: textblock
15184 #: ../src/guestfs-actions.pod:4513
15185 msgid ""
15186 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
15187 "that can be used to create extra mountpoints before mounting the first "
15188 "filesystem."
15189 msgstr ""
15190
15191 # type: textblock
15192 #. type: textblock
15193 #: ../src/guestfs-actions.pod:4517 ../fish/guestfish-actions.pod:3054
15194 msgid ""
15195 "These calls are I<only> necessary in some very limited circumstances, mainly "
15196 "the case where you want to mount a mix of unrelated and/or read-only "
15197 "filesystems together."
15198 msgstr ""
15199
15200 # type: textblock
15201 #. type: textblock
15202 #: ../src/guestfs-actions.pod:4521 ../fish/guestfish-actions.pod:3058
15203 msgid ""
15204 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
15205 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
15206 "inside that.  You can unpack this as follows in guestfish:"
15207 msgstr ""
15208
15209 # type: verbatim
15210 #. type: verbatim
15211 #: ../src/guestfs-actions.pod:4526 ../fish/guestfish-actions.pod:3063
15212 #, no-wrap
15213 msgid ""
15214 " add-ro Fedora-11-i686-Live.iso\n"
15215 " run\n"
15216 " mkmountpoint /cd\n"
15217 " mkmountpoint /sqsh\n"
15218 " mkmountpoint /ext3fs\n"
15219 " mount /dev/sda /cd\n"
15220 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
15221 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
15222 "\n"
15223 msgstr ""
15224
15225 # type: textblock
15226 #. type: textblock
15227 #: ../src/guestfs-actions.pod:4535 ../fish/guestfish-actions.pod:3072
15228 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
15229 msgstr ""
15230
15231 # type: textblock
15232 #. type: textblock
15233 #: ../src/guestfs-actions.pod:4537
15234 msgid ""
15235 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
15236 "may get unexpected errors if you try to mix these calls.  It is safest to "
15237 "manually unmount filesystems and remove mountpoints after use."
15238 msgstr ""
15239
15240 # type: textblock
15241 #. type: textblock
15242 #: ../src/guestfs-actions.pod:4541
15243 msgid ""
15244 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
15245 "first, so for this to work for manual mountpoints, you must ensure that the "
15246 "innermost mountpoints have the longest pathnames, as in the example code "
15247 "above."
15248 msgstr ""
15249
15250 # type: textblock
15251 #. type: textblock
15252 #: ../src/guestfs-actions.pod:4546 ../fish/guestfish-actions.pod:3083
15253 msgid ""
15254 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
15255 msgstr ""
15256
15257 #. type: textblock
15258 #: ../src/guestfs-actions.pod:4548
15259 msgid ""
15260 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
15261 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
15262 "can also trigger these issues."
15263 msgstr ""
15264
15265 # type: textblock
15266 #. type: textblock
15267 #: ../src/guestfs-actions.pod:4554 ../src/guestfs-actions.pod:4820
15268 #: ../src/guestfs-actions.pod:5739
15269 msgid "(Added in 1.0.62)"
15270 msgstr ""
15271
15272 # type: =head2
15273 #. type: =head2
15274 #: ../src/guestfs-actions.pod:4556
15275 msgid "guestfs_mknod"
15276 msgstr ""
15277
15278 # type: verbatim
15279 #. type: verbatim
15280 #: ../src/guestfs-actions.pod:4558
15281 #, no-wrap
15282 msgid ""
15283 " int\n"
15284 " guestfs_mknod (guestfs_h *g,\n"
15285 "                int mode,\n"
15286 "                int devmajor,\n"
15287 "                int devminor,\n"
15288 "                const char *path);\n"
15289 "\n"
15290 msgstr ""
15291
15292 # type: textblock
15293 #. type: textblock
15294 #: ../src/guestfs-actions.pod:4565 ../fish/guestfish-actions.pod:3093
15295 msgid ""
15296 "This call creates block or character special devices, or named pipes (FIFOs)."
15297 msgstr ""
15298
15299 # type: textblock
15300 #. type: textblock
15301 #: ../src/guestfs-actions.pod:4568 ../fish/guestfish-actions.pod:3096
15302 msgid ""
15303 "The C<mode> parameter should be the mode, using the standard constants.  "
15304 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
15305 "used when creating block and character special devices."
15306 msgstr ""
15307
15308 # type: textblock
15309 #. type: textblock
15310 #: ../src/guestfs-actions.pod:4573
15311 msgid ""
15312 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
15313 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
15314 "regular file).  These constants are available in the standard Linux header "
15315 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
15316 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
15317 "the appropriate constant for you."
15318 msgstr ""
15319
15320 # type: =head2
15321 #. type: =head2
15322 #: ../src/guestfs-actions.pod:4587
15323 msgid "guestfs_mknod_b"
15324 msgstr ""
15325
15326 # type: verbatim
15327 #. type: verbatim
15328 #: ../src/guestfs-actions.pod:4589
15329 #, no-wrap
15330 msgid ""
15331 " int\n"
15332 " guestfs_mknod_b (guestfs_h *g,\n"
15333 "                  int mode,\n"
15334 "                  int devmajor,\n"
15335 "                  int devminor,\n"
15336 "                  const char *path);\n"
15337 "\n"
15338 msgstr ""
15339
15340 # type: textblock
15341 #. type: textblock
15342 #: ../src/guestfs-actions.pod:4596
15343 msgid ""
15344 "This call creates a block device node called C<path> with mode C<mode> and "
15345 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
15346 "wrapper around C<guestfs_mknod>."
15347 msgstr ""
15348
15349 # type: =head2
15350 #. type: =head2
15351 #: ../src/guestfs-actions.pod:4606
15352 msgid "guestfs_mknod_c"
15353 msgstr ""
15354
15355 # type: verbatim
15356 #. type: verbatim
15357 #: ../src/guestfs-actions.pod:4608
15358 #, no-wrap
15359 msgid ""
15360 " int\n"
15361 " guestfs_mknod_c (guestfs_h *g,\n"
15362 "                  int mode,\n"
15363 "                  int devmajor,\n"
15364 "                  int devminor,\n"
15365 "                  const char *path);\n"
15366 "\n"
15367 msgstr ""
15368
15369 # type: textblock
15370 #. type: textblock
15371 #: ../src/guestfs-actions.pod:4615
15372 msgid ""
15373 "This call creates a char device node called C<path> with mode C<mode> and "
15374 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
15375 "wrapper around C<guestfs_mknod>."
15376 msgstr ""
15377
15378 # type: =head2
15379 #. type: =head2
15380 #: ../src/guestfs-actions.pod:4625
15381 msgid "guestfs_mkswap"
15382 msgstr ""
15383
15384 # type: verbatim
15385 #. type: verbatim
15386 #: ../src/guestfs-actions.pod:4627
15387 #, no-wrap
15388 msgid ""
15389 " int\n"
15390 " guestfs_mkswap (guestfs_h *g,\n"
15391 "                 const char *device);\n"
15392 "\n"
15393 msgstr ""
15394
15395 # type: textblock
15396 #. type: textblock
15397 #: ../src/guestfs-actions.pod:4631 ../fish/guestfish-actions.pod:3135
15398 msgid "Create a swap partition on C<device>."
15399 msgstr ""
15400
15401 # type: =head2
15402 #. type: =head2
15403 #: ../src/guestfs-actions.pod:4637
15404 msgid "guestfs_mkswap_L"
15405 msgstr ""
15406
15407 # type: verbatim
15408 #. type: verbatim
15409 #: ../src/guestfs-actions.pod:4639
15410 #, no-wrap
15411 msgid ""
15412 " int\n"
15413 " guestfs_mkswap_L (guestfs_h *g,\n"
15414 "                   const char *label,\n"
15415 "                   const char *device);\n"
15416 "\n"
15417 msgstr ""
15418
15419 # type: textblock
15420 #. type: textblock
15421 #: ../src/guestfs-actions.pod:4644 ../fish/guestfish-actions.pod:3141
15422 msgid "Create a swap partition on C<device> with label C<label>."
15423 msgstr ""
15424
15425 # type: textblock
15426 #. type: textblock
15427 #: ../src/guestfs-actions.pod:4646 ../fish/guestfish-actions.pod:3143
15428 msgid ""
15429 "Note that you cannot attach a swap label to a block device (eg. C</dev/"
15430 "sda>), just to a partition.  This appears to be a limitation of the kernel "
15431 "or swap tools."
15432 msgstr ""
15433
15434 # type: =head2
15435 #. type: =head2
15436 #: ../src/guestfs-actions.pod:4654
15437 msgid "guestfs_mkswap_U"
15438 msgstr ""
15439
15440 # type: verbatim
15441 #. type: verbatim
15442 #: ../src/guestfs-actions.pod:4656
15443 #, no-wrap
15444 msgid ""
15445 " int\n"
15446 " guestfs_mkswap_U (guestfs_h *g,\n"
15447 "                   const char *uuid,\n"
15448 "                   const char *device);\n"
15449 "\n"
15450 msgstr ""
15451
15452 # type: textblock
15453 #. type: textblock
15454 #: ../src/guestfs-actions.pod:4661 ../fish/guestfish-actions.pod:3151
15455 msgid "Create a swap partition on C<device> with UUID C<uuid>."
15456 msgstr ""
15457
15458 # type: =head2
15459 #. type: =head2
15460 #: ../src/guestfs-actions.pod:4667
15461 msgid "guestfs_mkswap_file"
15462 msgstr ""
15463
15464 # type: verbatim
15465 #. type: verbatim
15466 #: ../src/guestfs-actions.pod:4669
15467 #, no-wrap
15468 msgid ""
15469 " int\n"
15470 " guestfs_mkswap_file (guestfs_h *g,\n"
15471 "                      const char *path);\n"
15472 "\n"
15473 msgstr ""
15474
15475 # type: textblock
15476 #. type: textblock
15477 #: ../src/guestfs-actions.pod:4673 ../fish/guestfish-actions.pod:3157
15478 msgid "Create a swap file."
15479 msgstr ""
15480
15481 # type: textblock
15482 #. type: textblock
15483 #: ../src/guestfs-actions.pod:4675
15484 msgid ""
15485 "This command just writes a swap file signature to an existing file.  To "
15486 "create the file itself, use something like C<guestfs_fallocate>."
15487 msgstr ""
15488
15489 # type: =head2
15490 #. type: =head2
15491 #: ../src/guestfs-actions.pod:4682
15492 msgid "guestfs_modprobe"
15493 msgstr ""
15494
15495 # type: verbatim
15496 #. type: verbatim
15497 #: ../src/guestfs-actions.pod:4684
15498 #, no-wrap
15499 msgid ""
15500 " int\n"
15501 " guestfs_modprobe (guestfs_h *g,\n"
15502 "                   const char *modulename);\n"
15503 "\n"
15504 msgstr ""
15505
15506 # type: textblock
15507 #. type: textblock
15508 #: ../src/guestfs-actions.pod:4688 ../fish/guestfish-actions.pod:3166
15509 msgid "This loads a kernel module in the appliance."
15510 msgstr ""
15511
15512 # type: textblock
15513 #. type: textblock
15514 #: ../src/guestfs-actions.pod:4690 ../fish/guestfish-actions.pod:3168
15515 msgid ""
15516 "The kernel module must have been whitelisted when libguestfs was built (see "
15517 "C<appliance/kmod.whitelist.in> in the source)."
15518 msgstr ""
15519
15520 # type: =head2
15521 #. type: =head2
15522 #: ../src/guestfs-actions.pod:4697
15523 msgid "guestfs_mount"
15524 msgstr ""
15525
15526 # type: verbatim
15527 #. type: verbatim
15528 #: ../src/guestfs-actions.pod:4699
15529 #, no-wrap
15530 msgid ""
15531 " int\n"
15532 " guestfs_mount (guestfs_h *g,\n"
15533 "                const char *device,\n"
15534 "                const char *mountpoint);\n"
15535 "\n"
15536 msgstr ""
15537
15538 # type: textblock
15539 #. type: textblock
15540 #: ../src/guestfs-actions.pod:4704 ../fish/guestfish-actions.pod:3175
15541 msgid ""
15542 "Mount a guest disk at a position in the filesystem.  Block devices are named "
15543 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
15544 "those block devices contain partitions, they will have the usual names (eg. "
15545 "C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
15546 msgstr ""
15547
15548 # type: textblock
15549 #. type: textblock
15550 #: ../src/guestfs-actions.pod:4710 ../fish/guestfish-actions.pod:3181
15551 msgid ""
15552 "The rules are the same as for L<mount(2)>: A filesystem must first be "
15553 "mounted on C</> before others can be mounted.  Other filesystems can only be "
15554 "mounted on directories which already exist."
15555 msgstr ""
15556
15557 # type: textblock
15558 #. type: textblock
15559 #: ../src/guestfs-actions.pod:4715 ../fish/guestfish-actions.pod:3186
15560 msgid ""
15561 "The mounted filesystem is writable, if we have sufficient permissions on the "
15562 "underlying device."
15563 msgstr ""
15564
15565 # type: textblock
15566 #. type: textblock
15567 #: ../src/guestfs-actions.pod:4718
15568 msgid ""
15569 "B<Important note:> When you use this call, the filesystem options C<sync> "
15570 "and C<noatime> are set implicitly.  This was originally done because we "
15571 "thought it would improve reliability, but it turns out that I<-o sync> has a "
15572 "very large negative performance impact and negligible effect on "
15573 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
15574 "in any code that needs performance, and instead use C<guestfs_mount_options> "
15575 "(use an empty string for the first parameter if you don't want any options)."
15576 msgstr ""
15577
15578 #. type: textblock
15579 #: ../src/guestfs-actions.pod:4730
15580 msgid ""
15581 "This function is deprecated.  In new code, use the L</guestfs_mount_options> "
15582 "call instead."
15583 msgstr ""
15584
15585 # type: =head2
15586 #. type: =head2
15587 #: ../src/guestfs-actions.pod:4739
15588 msgid "guestfs_mount_loop"
15589 msgstr ""
15590
15591 # type: verbatim
15592 #. type: verbatim
15593 #: ../src/guestfs-actions.pod:4741
15594 #, no-wrap
15595 msgid ""
15596 " int\n"
15597 " guestfs_mount_loop (guestfs_h *g,\n"
15598 "                     const char *file,\n"
15599 "                     const char *mountpoint);\n"
15600 "\n"
15601 msgstr ""
15602
15603 # type: textblock
15604 #. type: textblock
15605 #: ../src/guestfs-actions.pod:4746 ../fish/guestfish-actions.pod:3210
15606 msgid ""
15607 "This command lets you mount C<file> (a filesystem image in a file) on a "
15608 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
15609 "mountpoint>."
15610 msgstr ""
15611
15612 # type: =head2
15613 #. type: =head2
15614 #: ../src/guestfs-actions.pod:4754
15615 msgid "guestfs_mount_options"
15616 msgstr ""
15617
15618 # type: verbatim
15619 #. type: verbatim
15620 #: ../src/guestfs-actions.pod:4756
15621 #, no-wrap
15622 msgid ""
15623 " int\n"
15624 " guestfs_mount_options (guestfs_h *g,\n"
15625 "                        const char *options,\n"
15626 "                        const char *device,\n"
15627 "                        const char *mountpoint);\n"
15628 "\n"
15629 msgstr ""
15630
15631 # type: textblock
15632 #. type: textblock
15633 #: ../src/guestfs-actions.pod:4762
15634 msgid ""
15635 "This is the same as the C<guestfs_mount> command, but it allows you to set "
15636 "the mount options as for the L<mount(8)> I<-o> flag."
15637 msgstr ""
15638
15639 # type: textblock
15640 #. type: textblock
15641 #: ../src/guestfs-actions.pod:4766 ../fish/guestfish-actions.pod:3222
15642 msgid ""
15643 "If the C<options> parameter is an empty string, then no options are passed "
15644 "(all options default to whatever the filesystem uses)."
15645 msgstr ""
15646
15647 # type: textblock
15648 #. type: textblock
15649 #: ../src/guestfs-actions.pod:4772 ../src/guestfs-actions.pod:4786
15650 #: ../src/guestfs-actions.pod:4803
15651 msgid "(Added in 1.0.10)"
15652 msgstr ""
15653
15654 # type: =head2
15655 #. type: =head2
15656 #: ../src/guestfs-actions.pod:4774
15657 msgid "guestfs_mount_ro"
15658 msgstr ""
15659
15660 # type: verbatim
15661 #. type: verbatim
15662 #: ../src/guestfs-actions.pod:4776
15663 #, no-wrap
15664 msgid ""
15665 " int\n"
15666 " guestfs_mount_ro (guestfs_h *g,\n"
15667 "                   const char *device,\n"
15668 "                   const char *mountpoint);\n"
15669 "\n"
15670 msgstr ""
15671
15672 # type: textblock
15673 #. type: textblock
15674 #: ../src/guestfs-actions.pod:4781
15675 msgid ""
15676 "This is the same as the C<guestfs_mount> command, but it mounts the "
15677 "filesystem with the read-only (I<-o ro>) flag."
15678 msgstr ""
15679
15680 # type: =head2
15681 #. type: =head2
15682 #: ../src/guestfs-actions.pod:4788
15683 msgid "guestfs_mount_vfs"
15684 msgstr ""
15685
15686 # type: verbatim
15687 #. type: verbatim
15688 #: ../src/guestfs-actions.pod:4790
15689 #, no-wrap
15690 msgid ""
15691 " int\n"
15692 " guestfs_mount_vfs (guestfs_h *g,\n"
15693 "                    const char *options,\n"
15694 "                    const char *vfstype,\n"
15695 "                    const char *device,\n"
15696 "                    const char *mountpoint);\n"
15697 "\n"
15698 msgstr ""
15699
15700 # type: textblock
15701 #. type: textblock
15702 #: ../src/guestfs-actions.pod:4797
15703 msgid ""
15704 "This is the same as the C<guestfs_mount> command, but it allows you to set "
15705 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
15706 "t> flags."
15707 msgstr ""
15708
15709 # type: =head2
15710 #. type: =head2
15711 #: ../src/guestfs-actions.pod:4805
15712 msgid "guestfs_mountpoints"
15713 msgstr ""
15714
15715 # type: verbatim
15716 #. type: verbatim
15717 #: ../src/guestfs-actions.pod:4807
15718 #, no-wrap
15719 msgid ""
15720 " char **\n"
15721 " guestfs_mountpoints (guestfs_h *g);\n"
15722 "\n"
15723 msgstr ""
15724
15725 # type: textblock
15726 #. type: textblock
15727 #: ../src/guestfs-actions.pod:4810
15728 msgid ""
15729 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
15730 "devices.  This one returns a hash table (map) of device name to directory "
15731 "where the device is mounted."
15732 msgstr ""
15733
15734 # type: =head2
15735 #. type: =head2
15736 #: ../src/guestfs-actions.pod:4822
15737 msgid "guestfs_mounts"
15738 msgstr ""
15739
15740 # type: verbatim
15741 #. type: verbatim
15742 #: ../src/guestfs-actions.pod:4824
15743 #, no-wrap
15744 msgid ""
15745 " char **\n"
15746 " guestfs_mounts (guestfs_h *g);\n"
15747 "\n"
15748 msgstr ""
15749
15750 # type: textblock
15751 #. type: textblock
15752 #: ../src/guestfs-actions.pod:4827 ../fish/guestfish-actions.pod:3253
15753 msgid ""
15754 "This returns the list of currently mounted filesystems.  It returns the list "
15755 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
15756 msgstr ""
15757
15758 # type: textblock
15759 #. type: textblock
15760 #: ../src/guestfs-actions.pod:4830 ../fish/guestfish-actions.pod:3256
15761 msgid "Some internal mounts are not shown."
15762 msgstr ""
15763
15764 # type: textblock
15765 #. type: textblock
15766 #: ../src/guestfs-actions.pod:4832
15767 msgid "See also: C<guestfs_mountpoints>"
15768 msgstr ""
15769
15770 # type: =head2
15771 #. type: =head2
15772 #: ../src/guestfs-actions.pod:4840
15773 msgid "guestfs_mv"
15774 msgstr ""
15775
15776 # type: verbatim
15777 #. type: verbatim
15778 #: ../src/guestfs-actions.pod:4842
15779 #, no-wrap
15780 msgid ""
15781 " int\n"
15782 " guestfs_mv (guestfs_h *g,\n"
15783 "             const char *src,\n"
15784 "             const char *dest);\n"
15785 "\n"
15786 msgstr ""
15787
15788 # type: textblock
15789 #. type: textblock
15790 #: ../src/guestfs-actions.pod:4847 ../fish/guestfish-actions.pod:3264
15791 msgid ""
15792 "This moves a file from C<src> to C<dest> where C<dest> is either a "
15793 "destination filename or destination directory."
15794 msgstr ""
15795
15796 # type: =head2
15797 #. type: =head2
15798 #: ../src/guestfs-actions.pod:4854
15799 msgid "guestfs_ntfs_3g_probe"
15800 msgstr ""
15801
15802 # type: verbatim
15803 #. type: verbatim
15804 #: ../src/guestfs-actions.pod:4856
15805 #, no-wrap
15806 msgid ""
15807 " int\n"
15808 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
15809 "                        int rw,\n"
15810 "                        const char *device);\n"
15811 "\n"
15812 msgstr ""
15813
15814 # type: textblock
15815 #. type: textblock
15816 #: ../src/guestfs-actions.pod:4861 ../fish/guestfish-actions.pod:3271
15817 msgid ""
15818 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
15819 "C<device> for mountability.  (Not all NTFS volumes can be mounted read-"
15820 "write, and some cannot be mounted at all)."
15821 msgstr ""
15822
15823 # type: textblock
15824 #. type: textblock
15825 #: ../src/guestfs-actions.pod:4865 ../fish/guestfish-actions.pod:3275
15826 msgid ""
15827 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
15828 "can be mounted read-write.  Set it to false if you want to test if the "
15829 "volume can be mounted read-only."
15830 msgstr ""
15831
15832 # type: textblock
15833 #. type: textblock
15834 #: ../src/guestfs-actions.pod:4869 ../fish/guestfish-actions.pod:3279
15835 msgid ""
15836 "The return value is an integer which C<0> if the operation would succeed, or "
15837 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
15838 msgstr ""
15839
15840 # type: textblock
15841 #. type: textblock
15842 #: ../src/guestfs-actions.pod:4875
15843 msgid "(Added in 1.0.43)"
15844 msgstr ""
15845
15846 # type: =head2
15847 #. type: =head2
15848 #: ../src/guestfs-actions.pod:4877
15849 msgid "guestfs_ntfsresize"
15850 msgstr ""
15851
15852 # type: verbatim
15853 #. type: verbatim
15854 #: ../src/guestfs-actions.pod:4879
15855 #, no-wrap
15856 msgid ""
15857 " int\n"
15858 " guestfs_ntfsresize (guestfs_h *g,\n"
15859 "                     const char *device);\n"
15860 "\n"
15861 msgstr ""
15862
15863 #. type: textblock
15864 #: ../src/guestfs-actions.pod:4883 ../fish/guestfish-actions.pod:3287
15865 msgid ""
15866 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
15867 "size of the underlying device."
15868 msgstr ""
15869
15870 #. type: textblock
15871 #: ../src/guestfs-actions.pod:4886 ../fish/guestfish-actions.pod:3290
15872 msgid ""
15873 "I<Note:> After the resize operation, the filesystem is marked as requiring a "
15874 "consistency check (for safety).  You have to boot into Windows to perform "
15875 "this check and clear this condition.  Furthermore, ntfsresize refuses to "
15876 "resize filesystems which have been marked in this way.  So in effect it is "
15877 "not possible to call ntfsresize multiple times on a single filesystem "
15878 "without booting into Windows between each resize."
15879 msgstr ""
15880
15881 #. type: textblock
15882 #: ../src/guestfs-actions.pod:4894 ../fish/guestfish-actions.pod:3298
15883 msgid "See also L<ntfsresize(8)>."
15884 msgstr ""
15885
15886 # type: =head2
15887 #. type: =head2
15888 #: ../src/guestfs-actions.pod:4900
15889 msgid "guestfs_ntfsresize_size"
15890 msgstr ""
15891
15892 # type: verbatim
15893 #. type: verbatim
15894 #: ../src/guestfs-actions.pod:4902
15895 #, no-wrap
15896 msgid ""
15897 " int\n"
15898 " guestfs_ntfsresize_size (guestfs_h *g,\n"
15899 "                          const char *device,\n"
15900 "                          int64_t size);\n"
15901 "\n"
15902 msgstr ""
15903
15904 # type: textblock
15905 #. type: textblock
15906 #: ../src/guestfs-actions.pod:4907
15907 msgid ""
15908 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
15909 "to specify the new size (in bytes) explicitly."
15910 msgstr ""
15911
15912 # type: textblock
15913 #. type: textblock
15914 #: ../src/guestfs-actions.pod:4912 ../src/guestfs-actions.pod:5348
15915 #: ../src/guestfs-actions.pod:5421 ../src/guestfs-actions.pod:5687
15916 #: ../src/guestfs-actions.pod:7293
15917 msgid "(Added in 1.3.14)"
15918 msgstr ""
15919
15920 # type: =head2
15921 #. type: =head2
15922 #: ../src/guestfs-actions.pod:4914
15923 msgid "guestfs_part_add"
15924 msgstr ""
15925
15926 # type: verbatim
15927 #. type: verbatim
15928 #: ../src/guestfs-actions.pod:4916
15929 #, no-wrap
15930 msgid ""
15931 " int\n"
15932 " guestfs_part_add (guestfs_h *g,\n"
15933 "                   const char *device,\n"
15934 "                   const char *prlogex,\n"
15935 "                   int64_t startsect,\n"
15936 "                   int64_t endsect);\n"
15937 "\n"
15938 msgstr ""
15939
15940 # type: textblock
15941 #. type: textblock
15942 #: ../src/guestfs-actions.pod:4923
15943 msgid ""
15944 "This command adds a partition to C<device>.  If there is no partition table "
15945 "on the device, call C<guestfs_part_init> first."
15946 msgstr ""
15947
15948 # type: textblock
15949 #. type: textblock
15950 #: ../src/guestfs-actions.pod:4926 ../fish/guestfish-actions.pod:3314
15951 msgid ""
15952 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
15953 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
15954 "C<logical>) and C<e> (or C<extended>) partition types."
15955 msgstr ""
15956
15957 # type: textblock
15958 #. type: textblock
15959 #: ../src/guestfs-actions.pod:4931 ../fish/guestfish-actions.pod:3319
15960 msgid ""
15961 "C<startsect> and C<endsect> are the start and end of the partition in "
15962 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
15963 "from the end of the disk (C<-1> is the last sector)."
15964 msgstr ""
15965
15966 # type: textblock
15967 #. type: textblock
15968 #: ../src/guestfs-actions.pod:4935
15969 msgid ""
15970 "Creating a partition which covers the whole disk is not so easy.  Use "
15971 "C<guestfs_part_disk> to do that."
15972 msgstr ""
15973
15974 # type: textblock
15975 #. type: textblock
15976 #: ../src/guestfs-actions.pod:4940 ../src/guestfs-actions.pod:4978
15977 #: ../src/guestfs-actions.pod:5031 ../src/guestfs-actions.pod:5109
15978 #: ../src/guestfs-actions.pod:5147 ../src/guestfs-actions.pod:5166
15979 #: ../src/guestfs-actions.pod:5206
15980 msgid "(Added in 1.0.78)"
15981 msgstr ""
15982
15983 # type: =head2
15984 #. type: =head2
15985 #: ../src/guestfs-actions.pod:4942
15986 msgid "guestfs_part_del"
15987 msgstr ""
15988
15989 # type: verbatim
15990 #. type: verbatim
15991 #: ../src/guestfs-actions.pod:4944
15992 #, no-wrap
15993 msgid ""
15994 " int\n"
15995 " guestfs_part_del (guestfs_h *g,\n"
15996 "                   const char *device,\n"
15997 "                   int partnum);\n"
15998 "\n"
15999 msgstr ""
16000
16001 # type: textblock
16002 #. type: textblock
16003 #: ../src/guestfs-actions.pod:4949 ../fish/guestfish-actions.pod:3330
16004 msgid "This command deletes the partition numbered C<partnum> on C<device>."
16005 msgstr ""
16006
16007 # type: textblock
16008 #. type: textblock
16009 #: ../src/guestfs-actions.pod:4951 ../fish/guestfish-actions.pod:3332
16010 msgid ""
16011 "Note that in the case of MBR partitioning, deleting an extended partition "
16012 "also deletes any logical partitions it contains."
16013 msgstr ""
16014
16015 # type: =head2
16016 #. type: =head2
16017 #: ../src/guestfs-actions.pod:4959
16018 msgid "guestfs_part_disk"
16019 msgstr ""
16020
16021 # type: verbatim
16022 #. type: verbatim
16023 #: ../src/guestfs-actions.pod:4961
16024 #, no-wrap
16025 msgid ""
16026 " int\n"
16027 " guestfs_part_disk (guestfs_h *g,\n"
16028 "                    const char *device,\n"
16029 "                    const char *parttype);\n"
16030 "\n"
16031 msgstr ""
16032
16033 # type: textblock
16034 #. type: textblock
16035 #: ../src/guestfs-actions.pod:4966
16036 msgid ""
16037 "This command is simply a combination of C<guestfs_part_init> followed by "
16038 "C<guestfs_part_add> to create a single primary partition covering the whole "
16039 "disk."
16040 msgstr ""
16041
16042 # type: textblock
16043 #. type: textblock
16044 #: ../src/guestfs-actions.pod:4970
16045 msgid ""
16046 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
16047 "possible values are described in C<guestfs_part_init>."
16048 msgstr ""
16049
16050 # type: =head2
16051 #. type: =head2
16052 #: ../src/guestfs-actions.pod:4980
16053 msgid "guestfs_part_get_bootable"
16054 msgstr ""
16055
16056 # type: verbatim
16057 #. type: verbatim
16058 #: ../src/guestfs-actions.pod:4982
16059 #, no-wrap
16060 msgid ""
16061 " int\n"
16062 " guestfs_part_get_bootable (guestfs_h *g,\n"
16063 "                            const char *device,\n"
16064 "                            int partnum);\n"
16065 "\n"
16066 msgstr ""
16067
16068 # type: textblock
16069 #. type: textblock
16070 #: ../src/guestfs-actions.pod:4987 ../fish/guestfish-actions.pod:3354
16071 msgid ""
16072 "This command returns true if the partition C<partnum> on C<device> has the "
16073 "bootable flag set."
16074 msgstr ""
16075
16076 # type: textblock
16077 #. type: textblock
16078 #: ../src/guestfs-actions.pod:4990
16079 msgid "See also C<guestfs_part_set_bootable>."
16080 msgstr ""
16081
16082 # type: =head2
16083 #. type: =head2
16084 #: ../src/guestfs-actions.pod:4996
16085 msgid "guestfs_part_get_mbr_id"
16086 msgstr ""
16087
16088 # type: verbatim
16089 #. type: verbatim
16090 #: ../src/guestfs-actions.pod:4998
16091 #, no-wrap
16092 msgid ""
16093 " int\n"
16094 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
16095 "                          const char *device,\n"
16096 "                          int partnum);\n"
16097 "\n"
16098 msgstr ""
16099
16100 # type: textblock
16101 #. type: textblock
16102 #: ../src/guestfs-actions.pod:5003 ../fish/guestfish-actions.pod:3363
16103 msgid ""
16104 "Returns the MBR type byte (also known as the ID byte) from the numbered "
16105 "partition C<partnum>."
16106 msgstr ""
16107
16108 # type: textblock
16109 #. type: textblock
16110 #: ../src/guestfs-actions.pod:5006 ../src/guestfs-actions.pod:5182
16111 msgid ""
16112 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
16113 "undefined results for other partition table types (see "
16114 "C<guestfs_part_get_parttype>)."
16115 msgstr ""
16116
16117 # type: =head2
16118 #. type: =head2
16119 #: ../src/guestfs-actions.pod:5014
16120 msgid "guestfs_part_get_parttype"
16121 msgstr ""
16122
16123 # type: verbatim
16124 #. type: verbatim
16125 #: ../src/guestfs-actions.pod:5016
16126 #, no-wrap
16127 msgid ""
16128 " char *\n"
16129 " guestfs_part_get_parttype (guestfs_h *g,\n"
16130 "                            const char *device);\n"
16131 "\n"
16132 msgstr ""
16133
16134 # type: textblock
16135 #. type: textblock
16136 #: ../src/guestfs-actions.pod:5020 ../fish/guestfish-actions.pod:3374
16137 msgid ""
16138 "This command examines the partition table on C<device> and returns the "
16139 "partition table type (format) being used."
16140 msgstr ""
16141
16142 # type: textblock
16143 #. type: textblock
16144 #: ../src/guestfs-actions.pod:5023
16145 msgid ""
16146 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
16147 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
16148 "possible, although unusual.  See C<guestfs_part_init> for a full list."
16149 msgstr ""
16150
16151 # type: =head2
16152 #. type: =head2
16153 #: ../src/guestfs-actions.pod:5033
16154 msgid "guestfs_part_init"
16155 msgstr ""
16156
16157 # type: verbatim
16158 #. type: verbatim
16159 #: ../src/guestfs-actions.pod:5035
16160 #, no-wrap
16161 msgid ""
16162 " int\n"
16163 " guestfs_part_init (guestfs_h *g,\n"
16164 "                    const char *device,\n"
16165 "                    const char *parttype);\n"
16166 "\n"
16167 msgstr ""
16168
16169 # type: textblock
16170 #. type: textblock
16171 #: ../src/guestfs-actions.pod:5040 ../fish/guestfish-actions.pod:3386
16172 msgid ""
16173 "This creates an empty partition table on C<device> of one of the partition "
16174 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
16175 "(for large disks)."
16176 msgstr ""
16177
16178 # type: textblock
16179 #. type: textblock
16180 #: ../src/guestfs-actions.pod:5044
16181 msgid ""
16182 "Initially there are no partitions.  Following this, you should call "
16183 "C<guestfs_part_add> for each partition required."
16184 msgstr ""
16185
16186 # type: textblock
16187 #. type: textblock
16188 #: ../src/guestfs-actions.pod:5047 ../fish/guestfish-actions.pod:3393
16189 msgid "Possible values for C<parttype> are:"
16190 msgstr ""
16191
16192 # type: =item
16193 #. type: =item
16194 #: ../src/guestfs-actions.pod:5051 ../fish/guestfish-actions.pod:3397
16195 msgid "B<efi> | B<gpt>"
16196 msgstr ""
16197
16198 # type: textblock
16199 #. type: textblock
16200 #: ../src/guestfs-actions.pod:5053 ../fish/guestfish-actions.pod:3399
16201 msgid "Intel EFI / GPT partition table."
16202 msgstr ""
16203
16204 # type: textblock
16205 #. type: textblock
16206 #: ../src/guestfs-actions.pod:5055 ../fish/guestfish-actions.pod:3401
16207 msgid ""
16208 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
16209 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
16210 "the C<mbr> format."
16211 msgstr ""
16212
16213 # type: =item
16214 #. type: =item
16215 #: ../src/guestfs-actions.pod:5059 ../fish/guestfish-actions.pod:3405
16216 msgid "B<mbr> | B<msdos>"
16217 msgstr ""
16218
16219 # type: textblock
16220 #. type: textblock
16221 #: ../src/guestfs-actions.pod:5061 ../fish/guestfish-actions.pod:3407
16222 msgid ""
16223 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
16224 "Windows.  This partition type will B<only> work for device sizes up to 2 "
16225 "TB.  For large disks we recommend using C<gpt>."
16226 msgstr ""
16227
16228 # type: textblock
16229 #. type: textblock
16230 #: ../src/guestfs-actions.pod:5068 ../fish/guestfish-actions.pod:3414
16231 msgid ""
16232 "Other partition table types that may work but are not supported include:"
16233 msgstr ""
16234
16235 # type: =item
16236 #. type: =item
16237 #: ../src/guestfs-actions.pod:5073 ../fish/guestfish-actions.pod:3419
16238 msgid "B<aix>"
16239 msgstr ""
16240
16241 # type: textblock
16242 #. type: textblock
16243 #: ../src/guestfs-actions.pod:5075 ../fish/guestfish-actions.pod:3421
16244 msgid "AIX disk labels."
16245 msgstr ""
16246
16247 # type: =item
16248 #. type: =item
16249 #: ../src/guestfs-actions.pod:5077 ../fish/guestfish-actions.pod:3423
16250 msgid "B<amiga> | B<rdb>"
16251 msgstr ""
16252
16253 # type: textblock
16254 #. type: textblock
16255 #: ../src/guestfs-actions.pod:5079 ../fish/guestfish-actions.pod:3425
16256 msgid "Amiga \"Rigid Disk Block\" format."
16257 msgstr ""
16258
16259 # type: =item
16260 #. type: =item
16261 #: ../src/guestfs-actions.pod:5081 ../fish/guestfish-actions.pod:3427
16262 msgid "B<bsd>"
16263 msgstr ""
16264
16265 # type: textblock
16266 #. type: textblock
16267 #: ../src/guestfs-actions.pod:5083 ../fish/guestfish-actions.pod:3429
16268 msgid "BSD disk labels."
16269 msgstr ""
16270
16271 # type: =item
16272 #. type: =item
16273 #: ../src/guestfs-actions.pod:5085 ../fish/guestfish-actions.pod:3431
16274 msgid "B<dasd>"
16275 msgstr ""
16276
16277 # type: textblock
16278 #. type: textblock
16279 #: ../src/guestfs-actions.pod:5087 ../fish/guestfish-actions.pod:3433
16280 msgid "DASD, used on IBM mainframes."
16281 msgstr ""
16282
16283 # type: =item
16284 #. type: =item
16285 #: ../src/guestfs-actions.pod:5089 ../fish/guestfish-actions.pod:3435
16286 msgid "B<dvh>"
16287 msgstr ""
16288
16289 # type: textblock
16290 #. type: textblock
16291 #: ../src/guestfs-actions.pod:5091 ../fish/guestfish-actions.pod:3437
16292 msgid "MIPS/SGI volumes."
16293 msgstr ""
16294
16295 # type: =item
16296 #. type: =item
16297 #: ../src/guestfs-actions.pod:5093 ../fish/guestfish-actions.pod:3439
16298 msgid "B<mac>"
16299 msgstr ""
16300
16301 # type: textblock
16302 #. type: textblock
16303 #: ../src/guestfs-actions.pod:5095 ../fish/guestfish-actions.pod:3441
16304 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
16305 msgstr ""
16306
16307 # type: =item
16308 #. type: =item
16309 #: ../src/guestfs-actions.pod:5097 ../fish/guestfish-actions.pod:3443
16310 msgid "B<pc98>"
16311 msgstr ""
16312
16313 # type: textblock
16314 #. type: textblock
16315 #: ../src/guestfs-actions.pod:5099 ../fish/guestfish-actions.pod:3445
16316 msgid "NEC PC-98 format, common in Japan apparently."
16317 msgstr ""
16318
16319 # type: =item
16320 #. type: =item
16321 #: ../src/guestfs-actions.pod:5101 ../fish/guestfish-actions.pod:3447
16322 msgid "B<sun>"
16323 msgstr ""
16324
16325 # type: textblock
16326 #. type: textblock
16327 #: ../src/guestfs-actions.pod:5103 ../fish/guestfish-actions.pod:3449
16328 msgid "Sun disk labels."
16329 msgstr ""
16330
16331 # type: =head2
16332 #. type: =head2
16333 #: ../src/guestfs-actions.pod:5111
16334 msgid "guestfs_part_list"
16335 msgstr ""
16336
16337 # type: verbatim
16338 #. type: verbatim
16339 #: ../src/guestfs-actions.pod:5113
16340 #, no-wrap
16341 msgid ""
16342 " struct guestfs_partition_list *\n"
16343 " guestfs_part_list (guestfs_h *g,\n"
16344 "                    const char *device);\n"
16345 "\n"
16346 msgstr ""
16347
16348 # type: textblock
16349 #. type: textblock
16350 #: ../src/guestfs-actions.pod:5117 ../fish/guestfish-actions.pod:3457
16351 msgid ""
16352 "This command parses the partition table on C<device> and returns the list of "
16353 "partitions found."
16354 msgstr ""
16355
16356 # type: textblock
16357 #. type: textblock
16358 #: ../src/guestfs-actions.pod:5120 ../fish/guestfish-actions.pod:3460
16359 msgid "The fields in the returned structure are:"
16360 msgstr ""
16361
16362 # type: =item
16363 #. type: =item
16364 #: ../src/guestfs-actions.pod:5124 ../fish/guestfish-actions.pod:3464
16365 msgid "B<part_num>"
16366 msgstr ""
16367
16368 # type: textblock
16369 #. type: textblock
16370 #: ../src/guestfs-actions.pod:5126 ../fish/guestfish-actions.pod:3466
16371 msgid "Partition number, counting from 1."
16372 msgstr ""
16373
16374 # type: =item
16375 #. type: =item
16376 #: ../src/guestfs-actions.pod:5128 ../fish/guestfish-actions.pod:3468
16377 msgid "B<part_start>"
16378 msgstr ""
16379
16380 # type: textblock
16381 #. type: textblock
16382 #: ../src/guestfs-actions.pod:5130
16383 msgid ""
16384 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
16385 "the device's sector size, see C<guestfs_blockdev_getss>."
16386 msgstr ""
16387
16388 # type: =item
16389 #. type: =item
16390 #: ../src/guestfs-actions.pod:5133 ../fish/guestfish-actions.pod:3473
16391 msgid "B<part_end>"
16392 msgstr ""
16393
16394 # type: textblock
16395 #. type: textblock
16396 #: ../src/guestfs-actions.pod:5135 ../fish/guestfish-actions.pod:3475
16397 msgid "End of the partition in bytes."
16398 msgstr ""
16399
16400 # type: =item
16401 #. type: =item
16402 #: ../src/guestfs-actions.pod:5137 ../fish/guestfish-actions.pod:3477
16403 msgid "B<part_size>"
16404 msgstr ""
16405
16406 # type: textblock
16407 #. type: textblock
16408 #: ../src/guestfs-actions.pod:5139 ../fish/guestfish-actions.pod:3479
16409 msgid "Size of the partition in bytes."
16410 msgstr ""
16411
16412 # type: textblock
16413 #. type: textblock
16414 #: ../src/guestfs-actions.pod:5143
16415 msgid ""
16416 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
16417 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
16418 "use>."
16419 msgstr ""
16420
16421 # type: =head2
16422 #. type: =head2
16423 #: ../src/guestfs-actions.pod:5149
16424 msgid "guestfs_part_set_bootable"
16425 msgstr ""
16426
16427 # type: verbatim
16428 #. type: verbatim
16429 #: ../src/guestfs-actions.pod:5151
16430 #, no-wrap
16431 msgid ""
16432 " int\n"
16433 " guestfs_part_set_bootable (guestfs_h *g,\n"
16434 "                            const char *device,\n"
16435 "                            int partnum,\n"
16436 "                            int bootable);\n"
16437 "\n"
16438 msgstr ""
16439
16440 # type: textblock
16441 #. type: textblock
16442 #: ../src/guestfs-actions.pod:5157 ../fish/guestfish-actions.pod:3487
16443 msgid ""
16444 "This sets the bootable flag on partition numbered C<partnum> on device "
16445 "C<device>.  Note that partitions are numbered from 1."
16446 msgstr ""
16447
16448 # type: textblock
16449 #. type: textblock
16450 #: ../src/guestfs-actions.pod:5160 ../fish/guestfish-actions.pod:3490
16451 msgid ""
16452 "The bootable flag is used by some operating systems (notably Windows) to "
16453 "determine which partition to boot from.  It is by no means universally "
16454 "recognized."
16455 msgstr ""
16456
16457 # type: =head2
16458 #. type: =head2
16459 #: ../src/guestfs-actions.pod:5168
16460 msgid "guestfs_part_set_mbr_id"
16461 msgstr ""
16462
16463 # type: verbatim
16464 #. type: verbatim
16465 #: ../src/guestfs-actions.pod:5170
16466 #, no-wrap
16467 msgid ""
16468 " int\n"
16469 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
16470 "                          const char *device,\n"
16471 "                          int partnum,\n"
16472 "                          int idbyte);\n"
16473 "\n"
16474 msgstr ""
16475
16476 # type: textblock
16477 #. type: textblock
16478 #: ../src/guestfs-actions.pod:5176 ../fish/guestfish-actions.pod:3498
16479 msgid ""
16480 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
16481 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
16482 "documentation are in fact hexadecimal numbers, but usually documented "
16483 "without any leading \"0x\" which might be confusing."
16484 msgstr ""
16485
16486 # type: =head2
16487 #. type: =head2
16488 #: ../src/guestfs-actions.pod:5190
16489 msgid "guestfs_part_set_name"
16490 msgstr ""
16491
16492 # type: verbatim
16493 #. type: verbatim
16494 #: ../src/guestfs-actions.pod:5192
16495 #, no-wrap
16496 msgid ""
16497 " int\n"
16498 " guestfs_part_set_name (guestfs_h *g,\n"
16499 "                        const char *device,\n"
16500 "                        int partnum,\n"
16501 "                        const char *name);\n"
16502 "\n"
16503 msgstr ""
16504
16505 # type: textblock
16506 #. type: textblock
16507 #: ../src/guestfs-actions.pod:5198 ../fish/guestfish-actions.pod:3512
16508 msgid ""
16509 "This sets the partition name on partition numbered C<partnum> on device "
16510 "C<device>.  Note that partitions are numbered from 1."
16511 msgstr ""
16512
16513 # type: textblock
16514 #. type: textblock
16515 #: ../src/guestfs-actions.pod:5201 ../fish/guestfish-actions.pod:3515
16516 msgid ""
16517 "The partition name can only be set on certain types of partition table.  "
16518 "This works on C<gpt> but not on C<mbr> partitions."
16519 msgstr ""
16520
16521 # type: =head2
16522 #. type: =head2
16523 #: ../src/guestfs-actions.pod:5208
16524 msgid "guestfs_part_to_dev"
16525 msgstr ""
16526
16527 # type: verbatim
16528 #. type: verbatim
16529 #: ../src/guestfs-actions.pod:5210
16530 #, no-wrap
16531 msgid ""
16532 " char *\n"
16533 " guestfs_part_to_dev (guestfs_h *g,\n"
16534 "                      const char *partition);\n"
16535 "\n"
16536 msgstr ""
16537
16538 # type: textblock
16539 #. type: textblock
16540 #: ../src/guestfs-actions.pod:5214 ../fish/guestfish-actions.pod:3522
16541 msgid ""
16542 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
16543 "partition number, returning the device name (eg. \"/dev/sdb\")."
16544 msgstr ""
16545
16546 # type: textblock
16547 #. type: textblock
16548 #: ../src/guestfs-actions.pod:5218
16549 msgid ""
16550 "The named partition must exist, for example as a string returned from "
16551 "C<guestfs_list_partitions>."
16552 msgstr ""
16553
16554 # type: =head2
16555 #. type: =head2
16556 #: ../src/guestfs-actions.pod:5226
16557 msgid "guestfs_ping_daemon"
16558 msgstr ""
16559
16560 # type: verbatim
16561 #. type: verbatim
16562 #: ../src/guestfs-actions.pod:5228
16563 #, no-wrap
16564 msgid ""
16565 " int\n"
16566 " guestfs_ping_daemon (guestfs_h *g);\n"
16567 "\n"
16568 msgstr ""
16569
16570 # type: textblock
16571 #. type: textblock
16572 #: ../src/guestfs-actions.pod:5231 ../fish/guestfish-actions.pod:3533
16573 msgid ""
16574 "This is a test probe into the guestfs daemon running inside the qemu "
16575 "subprocess.  Calling this function checks that the daemon responds to the "
16576 "ping message, without affecting the daemon or attached block device(s) in "
16577 "any other way."
16578 msgstr ""
16579
16580 # type: =head2
16581 #. type: =head2
16582 #: ../src/guestfs-actions.pod:5240
16583 msgid "guestfs_pread"
16584 msgstr ""
16585
16586 # type: verbatim
16587 #. type: verbatim
16588 #: ../src/guestfs-actions.pod:5242
16589 #, no-wrap
16590 msgid ""
16591 " char *\n"
16592 " guestfs_pread (guestfs_h *g,\n"
16593 "                const char *path,\n"
16594 "                int count,\n"
16595 "                int64_t offset,\n"
16596 "                size_t *size_r);\n"
16597 "\n"
16598 msgstr ""
16599
16600 # type: textblock
16601 #. type: textblock
16602 #: ../src/guestfs-actions.pod:5249 ../fish/guestfish-actions.pod:3542
16603 msgid ""
16604 "This command lets you read part of a file.  It reads C<count> bytes of the "
16605 "file, starting at C<offset>, from file C<path>."
16606 msgstr ""
16607
16608 # type: textblock
16609 #. type: textblock
16610 #: ../src/guestfs-actions.pod:5252 ../src/guestfs-actions.pod:5278
16611 #: ../fish/guestfish-actions.pod:3545 ../fish/guestfish-actions.pod:3560
16612 msgid ""
16613 "This may read fewer bytes than requested.  For further details see the "
16614 "L<pread(2)> system call."
16615 msgstr ""
16616
16617 # type: textblock
16618 #. type: textblock
16619 #: ../src/guestfs-actions.pod:5255
16620 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
16621 msgstr ""
16622
16623 # type: =head2
16624 #. type: =head2
16625 #: ../src/guestfs-actions.pod:5266
16626 msgid "guestfs_pread_device"
16627 msgstr ""
16628
16629 # type: verbatim
16630 #. type: verbatim
16631 #: ../src/guestfs-actions.pod:5268
16632 #, no-wrap
16633 msgid ""
16634 " char *\n"
16635 " guestfs_pread_device (guestfs_h *g,\n"
16636 "                       const char *device,\n"
16637 "                       int count,\n"
16638 "                       int64_t offset,\n"
16639 "                       size_t *size_r);\n"
16640 "\n"
16641 msgstr ""
16642
16643 # type: textblock
16644 #. type: textblock
16645 #: ../src/guestfs-actions.pod:5275 ../fish/guestfish-actions.pod:3557
16646 msgid ""
16647 "This command lets you read part of a file.  It reads C<count> bytes of "
16648 "C<device>, starting at C<offset>."
16649 msgstr ""
16650
16651 # type: textblock
16652 #. type: textblock
16653 #: ../src/guestfs-actions.pod:5281
16654 msgid "See also C<guestfs_pread>."
16655 msgstr ""
16656
16657 # type: textblock
16658 #. type: textblock
16659 #: ../src/guestfs-actions.pod:5290
16660 msgid "(Added in 1.5.21)"
16661 msgstr ""
16662
16663 # type: =head2
16664 #. type: =head2
16665 #: ../src/guestfs-actions.pod:5292
16666 msgid "guestfs_pvcreate"
16667 msgstr ""
16668
16669 # type: verbatim
16670 #. type: verbatim
16671 #: ../src/guestfs-actions.pod:5294
16672 #, no-wrap
16673 msgid ""
16674 " int\n"
16675 " guestfs_pvcreate (guestfs_h *g,\n"
16676 "                   const char *device);\n"
16677 "\n"
16678 msgstr ""
16679
16680 # type: textblock
16681 #. type: textblock
16682 #: ../src/guestfs-actions.pod:5298 ../fish/guestfish-actions.pod:3572
16683 msgid ""
16684 "This creates an LVM physical volume on the named C<device>, where C<device> "
16685 "should usually be a partition name such as C</dev/sda1>."
16686 msgstr ""
16687
16688 # type: =head2
16689 #. type: =head2
16690 #: ../src/guestfs-actions.pod:5306
16691 msgid "guestfs_pvremove"
16692 msgstr ""
16693
16694 # type: verbatim
16695 #. type: verbatim
16696 #: ../src/guestfs-actions.pod:5308
16697 #, no-wrap
16698 msgid ""
16699 " int\n"
16700 " guestfs_pvremove (guestfs_h *g,\n"
16701 "                   const char *device);\n"
16702 "\n"
16703 msgstr ""
16704
16705 # type: textblock
16706 #. type: textblock
16707 #: ../src/guestfs-actions.pod:5312 ../fish/guestfish-actions.pod:3580
16708 msgid ""
16709 "This wipes a physical volume C<device> so that LVM will no longer recognise "
16710 "it."
16711 msgstr ""
16712
16713 # type: textblock
16714 #. type: textblock
16715 #: ../src/guestfs-actions.pod:5315 ../fish/guestfish-actions.pod:3583
16716 msgid ""
16717 "The implementation uses the C<pvremove> command which refuses to wipe "
16718 "physical volumes that contain any volume groups, so you have to remove those "
16719 "first."
16720 msgstr ""
16721
16722 # type: =head2
16723 #. type: =head2
16724 #: ../src/guestfs-actions.pod:5323
16725 msgid "guestfs_pvresize"
16726 msgstr ""
16727
16728 # type: verbatim
16729 #. type: verbatim
16730 #: ../src/guestfs-actions.pod:5325
16731 #, no-wrap
16732 msgid ""
16733 " int\n"
16734 " guestfs_pvresize (guestfs_h *g,\n"
16735 "                   const char *device);\n"
16736 "\n"
16737 msgstr ""
16738
16739 # type: textblock
16740 #. type: textblock
16741 #: ../src/guestfs-actions.pod:5329 ../fish/guestfish-actions.pod:3591
16742 msgid ""
16743 "This resizes (expands or shrinks) an existing LVM physical volume to match "
16744 "the new size of the underlying device."
16745 msgstr ""
16746
16747 # type: =head2
16748 #. type: =head2
16749 #: ../src/guestfs-actions.pod:5336
16750 msgid "guestfs_pvresize_size"
16751 msgstr ""
16752
16753 # type: verbatim
16754 #. type: verbatim
16755 #: ../src/guestfs-actions.pod:5338
16756 #, no-wrap
16757 msgid ""
16758 " int\n"
16759 " guestfs_pvresize_size (guestfs_h *g,\n"
16760 "                        const char *device,\n"
16761 "                        int64_t size);\n"
16762 "\n"
16763 msgstr ""
16764
16765 # type: textblock
16766 #. type: textblock
16767 #: ../src/guestfs-actions.pod:5343
16768 msgid ""
16769 "This command is the same as C<guestfs_pvresize> except that it allows you to "
16770 "specify the new size (in bytes) explicitly."
16771 msgstr ""
16772
16773 # type: =head2
16774 #. type: =head2
16775 #: ../src/guestfs-actions.pod:5350
16776 msgid "guestfs_pvs"
16777 msgstr ""
16778
16779 # type: verbatim
16780 #. type: verbatim
16781 #: ../src/guestfs-actions.pod:5352
16782 #, no-wrap
16783 msgid ""
16784 " char **\n"
16785 " guestfs_pvs (guestfs_h *g);\n"
16786 "\n"
16787 msgstr ""
16788
16789 # type: textblock
16790 #. type: textblock
16791 #: ../src/guestfs-actions.pod:5355 ../fish/guestfish-actions.pod:3605
16792 msgid ""
16793 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
16794 "(8)> command."
16795 msgstr ""
16796
16797 # type: textblock
16798 #. type: textblock
16799 #: ../src/guestfs-actions.pod:5358 ../fish/guestfish-actions.pod:3608
16800 msgid ""
16801 "This returns a list of just the device names that contain PVs (eg. C</dev/"
16802 "sda2>)."
16803 msgstr ""
16804
16805 # type: textblock
16806 #. type: textblock
16807 #: ../src/guestfs-actions.pod:5361
16808 msgid "See also C<guestfs_pvs_full>."
16809 msgstr ""
16810
16811 # type: =head2
16812 #. type: =head2
16813 #: ../src/guestfs-actions.pod:5369
16814 msgid "guestfs_pvs_full"
16815 msgstr ""
16816
16817 # type: verbatim
16818 #. type: verbatim
16819 #: ../src/guestfs-actions.pod:5371
16820 #, no-wrap
16821 msgid ""
16822 " struct guestfs_lvm_pv_list *\n"
16823 " guestfs_pvs_full (guestfs_h *g);\n"
16824 "\n"
16825 msgstr ""
16826
16827 # type: textblock
16828 #. type: textblock
16829 #: ../src/guestfs-actions.pod:5374 ../fish/guestfish-actions.pod:3617
16830 msgid ""
16831 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
16832 "(8)> command.  The \"full\" version includes all fields."
16833 msgstr ""
16834
16835 # type: textblock
16836 #. type: textblock
16837 #: ../src/guestfs-actions.pod:5377
16838 msgid ""
16839 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
16840 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
16841 msgstr ""
16842
16843 # type: =head2
16844 #. type: =head2
16845 #: ../src/guestfs-actions.pod:5383
16846 msgid "guestfs_pvuuid"
16847 msgstr ""
16848
16849 # type: verbatim
16850 #. type: verbatim
16851 #: ../src/guestfs-actions.pod:5385
16852 #, no-wrap
16853 msgid ""
16854 " char *\n"
16855 " guestfs_pvuuid (guestfs_h *g,\n"
16856 "                 const char *device);\n"
16857 "\n"
16858 msgstr ""
16859
16860 # type: textblock
16861 #. type: textblock
16862 #: ../src/guestfs-actions.pod:5389 ../fish/guestfish-actions.pod:3624
16863 msgid "This command returns the UUID of the LVM PV C<device>."
16864 msgstr ""
16865
16866 # type: =head2
16867 #. type: =head2
16868 #: ../src/guestfs-actions.pod:5396
16869 msgid "guestfs_pwrite"
16870 msgstr ""
16871
16872 # type: verbatim
16873 #. type: verbatim
16874 #: ../src/guestfs-actions.pod:5398
16875 #, no-wrap
16876 msgid ""
16877 " int\n"
16878 " guestfs_pwrite (guestfs_h *g,\n"
16879 "                 const char *path,\n"
16880 "                 const char *content,\n"
16881 "                 size_t content_size,\n"
16882 "                 int64_t offset);\n"
16883 "\n"
16884 msgstr ""
16885
16886 # type: textblock
16887 #. type: textblock
16888 #: ../src/guestfs-actions.pod:5405 ../fish/guestfish-actions.pod:3630
16889 msgid ""
16890 "This command writes to part of a file.  It writes the data buffer C<content> "
16891 "to the file C<path> starting at offset C<offset>."
16892 msgstr ""
16893
16894 # type: textblock
16895 #. type: textblock
16896 #: ../src/guestfs-actions.pod:5408 ../fish/guestfish-actions.pod:3633
16897 msgid ""
16898 "This command implements the L<pwrite(2)> system call, and like that system "
16899 "call it may not write the full data requested.  The return value is the "
16900 "number of bytes that were actually written to the file.  This could even be "
16901 "0, although short writes are unlikely for regular files in ordinary "
16902 "circumstances."
16903 msgstr ""
16904
16905 # type: textblock
16906 #. type: textblock
16907 #: ../src/guestfs-actions.pod:5414
16908 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
16909 msgstr ""
16910
16911 # type: =head2
16912 #. type: =head2
16913 #: ../src/guestfs-actions.pod:5423
16914 msgid "guestfs_pwrite_device"
16915 msgstr ""
16916
16917 # type: verbatim
16918 #. type: verbatim
16919 #: ../src/guestfs-actions.pod:5425
16920 #, no-wrap
16921 msgid ""
16922 " int\n"
16923 " guestfs_pwrite_device (guestfs_h *g,\n"
16924 "                        const char *device,\n"
16925 "                        const char *content,\n"
16926 "                        size_t content_size,\n"
16927 "                        int64_t offset);\n"
16928 "\n"
16929 msgstr ""
16930
16931 # type: textblock
16932 #. type: textblock
16933 #: ../src/guestfs-actions.pod:5432 ../fish/guestfish-actions.pod:3648
16934 msgid ""
16935 "This command writes to part of a device.  It writes the data buffer "
16936 "C<content> to C<device> starting at offset C<offset>."
16937 msgstr ""
16938
16939 # type: textblock
16940 #. type: textblock
16941 #: ../src/guestfs-actions.pod:5435 ../fish/guestfish-actions.pod:3651
16942 msgid ""
16943 "This command implements the L<pwrite(2)> system call, and like that system "
16944 "call it may not write the full data requested (although short writes to disk "
16945 "devices and partitions are probably impossible with standard Linux kernels)."
16946 msgstr ""
16947
16948 # type: textblock
16949 #. type: textblock
16950 #: ../src/guestfs-actions.pod:5440
16951 msgid "See also C<guestfs_pwrite>."
16952 msgstr ""
16953
16954 # type: textblock
16955 #. type: textblock
16956 #: ../src/guestfs-actions.pod:5447
16957 msgid "(Added in 1.5.20)"
16958 msgstr ""
16959
16960 # type: =head2
16961 #. type: =head2
16962 #: ../src/guestfs-actions.pod:5449
16963 msgid "guestfs_read_file"
16964 msgstr ""
16965
16966 # type: verbatim
16967 #. type: verbatim
16968 #: ../src/guestfs-actions.pod:5451
16969 #, no-wrap
16970 msgid ""
16971 " char *\n"
16972 " guestfs_read_file (guestfs_h *g,\n"
16973 "                    const char *path,\n"
16974 "                    size_t *size_r);\n"
16975 "\n"
16976 msgstr ""
16977
16978 # type: textblock
16979 #. type: textblock
16980 #: ../src/guestfs-actions.pod:5456 ../fish/guestfish-actions.pod:3665
16981 msgid "This calls returns the contents of the file C<path> as a buffer."
16982 msgstr ""
16983
16984 # type: textblock
16985 #. type: textblock
16986 #: ../src/guestfs-actions.pod:5459
16987 msgid ""
16988 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
16989 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
16990 "function is limited in the total size of file that can be handled."
16991 msgstr ""
16992
16993 # type: textblock
16994 #. type: textblock
16995 #: ../src/guestfs-actions.pod:5471
16996 msgid "(Added in 1.0.63)"
16997 msgstr ""
16998
16999 # type: =head2
17000 #. type: =head2
17001 #: ../src/guestfs-actions.pod:5473
17002 msgid "guestfs_read_lines"
17003 msgstr ""
17004
17005 # type: verbatim
17006 #. type: verbatim
17007 #: ../src/guestfs-actions.pod:5475
17008 #, no-wrap
17009 msgid ""
17010 " char **\n"
17011 " guestfs_read_lines (guestfs_h *g,\n"
17012 "                     const char *path);\n"
17013 "\n"
17014 msgstr ""
17015
17016 # type: textblock
17017 #. type: textblock
17018 #: ../src/guestfs-actions.pod:5481 ../fish/guestfish-actions.pod:3682
17019 msgid ""
17020 "The file contents are returned as a list of lines.  Trailing C<LF> and "
17021 "C<CRLF> character sequences are I<not> returned."
17022 msgstr ""
17023
17024 # type: textblock
17025 #. type: textblock
17026 #: ../src/guestfs-actions.pod:5484
17027 msgid ""
17028 "Note that this function cannot correctly handle binary files (specifically, "
17029 "files containing C<\\0> character which is treated as end of line).  For "
17030 "those you need to use the C<guestfs_read_file> function which has a more "
17031 "complex interface."
17032 msgstr ""
17033
17034 # type: =head2
17035 #. type: =head2
17036 #: ../src/guestfs-actions.pod:5495
17037 msgid "guestfs_readdir"
17038 msgstr ""
17039
17040 # type: verbatim
17041 #. type: verbatim
17042 #: ../src/guestfs-actions.pod:5497
17043 #, no-wrap
17044 msgid ""
17045 " struct guestfs_dirent_list *\n"
17046 " guestfs_readdir (guestfs_h *g,\n"
17047 "                  const char *dir);\n"
17048 "\n"
17049 msgstr ""
17050
17051 # type: textblock
17052 #. type: textblock
17053 #: ../src/guestfs-actions.pod:5501 ../fish/guestfish-actions.pod:3694
17054 msgid "This returns the list of directory entries in directory C<dir>."
17055 msgstr ""
17056
17057 # type: textblock
17058 #. type: textblock
17059 #: ../src/guestfs-actions.pod:5503 ../fish/guestfish-actions.pod:3696
17060 msgid ""
17061 "All entries in the directory are returned, including C<.> and C<..>.  The "
17062 "entries are I<not> sorted, but returned in the same order as the underlying "
17063 "filesystem."
17064 msgstr ""
17065
17066 # type: textblock
17067 #. type: textblock
17068 #: ../src/guestfs-actions.pod:5507 ../fish/guestfish-actions.pod:3700
17069 msgid ""
17070 "Also this call returns basic file type information about each file.  The "
17071 "C<ftyp> field will contain one of the following characters:"
17072 msgstr ""
17073
17074 # type: =item
17075 #. type: =item
17076 #: ../src/guestfs-actions.pod:5512 ../fish/guestfish-actions.pod:3705
17077 msgid "'b'"
17078 msgstr ""
17079
17080 # type: textblock
17081 #. type: textblock
17082 #: ../src/guestfs-actions.pod:5514 ../fish/guestfish-actions.pod:3707
17083 msgid "Block special"
17084 msgstr ""
17085
17086 # type: =item
17087 #. type: =item
17088 #: ../src/guestfs-actions.pod:5516 ../fish/guestfish-actions.pod:3709
17089 msgid "'c'"
17090 msgstr ""
17091
17092 # type: textblock
17093 #. type: textblock
17094 #: ../src/guestfs-actions.pod:5518 ../fish/guestfish-actions.pod:3711
17095 msgid "Char special"
17096 msgstr ""
17097
17098 # type: =item
17099 #. type: =item
17100 #: ../src/guestfs-actions.pod:5520 ../fish/guestfish-actions.pod:3713
17101 msgid "'d'"
17102 msgstr ""
17103
17104 # type: textblock
17105 #. type: textblock
17106 #: ../src/guestfs-actions.pod:5522 ../fish/guestfish-actions.pod:3715
17107 msgid "Directory"
17108 msgstr ""
17109
17110 # type: =item
17111 #. type: =item
17112 #: ../src/guestfs-actions.pod:5524 ../fish/guestfish-actions.pod:3717
17113 msgid "'f'"
17114 msgstr ""
17115
17116 # type: textblock
17117 #. type: textblock
17118 #: ../src/guestfs-actions.pod:5526 ../fish/guestfish-actions.pod:3719
17119 msgid "FIFO (named pipe)"
17120 msgstr ""
17121
17122 # type: =item
17123 #. type: =item
17124 #: ../src/guestfs-actions.pod:5528 ../fish/guestfish-actions.pod:3721
17125 msgid "'l'"
17126 msgstr ""
17127
17128 # type: textblock
17129 #. type: textblock
17130 #: ../src/guestfs-actions.pod:5530 ../fish/guestfish-actions.pod:3723
17131 msgid "Symbolic link"
17132 msgstr ""
17133
17134 # type: =item
17135 #. type: =item
17136 #: ../src/guestfs-actions.pod:5532 ../fish/guestfish-actions.pod:3725
17137 msgid "'r'"
17138 msgstr ""
17139
17140 # type: textblock
17141 #. type: textblock
17142 #: ../src/guestfs-actions.pod:5534 ../fish/guestfish-actions.pod:3727
17143 msgid "Regular file"
17144 msgstr ""
17145
17146 # type: =item
17147 #. type: =item
17148 #: ../src/guestfs-actions.pod:5536 ../fish/guestfish-actions.pod:3729
17149 msgid "'s'"
17150 msgstr ""
17151
17152 # type: textblock
17153 #. type: textblock
17154 #: ../src/guestfs-actions.pod:5538 ../fish/guestfish-actions.pod:3731
17155 msgid "Socket"
17156 msgstr ""
17157
17158 # type: =item
17159 #. type: =item
17160 #: ../src/guestfs-actions.pod:5540 ../fish/guestfish-actions.pod:3733
17161 msgid "'u'"
17162 msgstr ""
17163
17164 # type: textblock
17165 #. type: textblock
17166 #: ../src/guestfs-actions.pod:5542 ../fish/guestfish-actions.pod:3735
17167 msgid "Unknown file type"
17168 msgstr ""
17169
17170 # type: =item
17171 #. type: =item
17172 #: ../src/guestfs-actions.pod:5544 ../fish/guestfish-actions.pod:3737
17173 msgid "'?'"
17174 msgstr ""
17175
17176 # type: textblock
17177 #. type: textblock
17178 #: ../src/guestfs-actions.pod:5546 ../fish/guestfish-actions.pod:3739
17179 msgid ""
17180 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
17181 msgstr ""
17182
17183 # type: textblock
17184 #. type: textblock
17185 #: ../src/guestfs-actions.pod:5551
17186 msgid ""
17187 "This function is primarily intended for use by programs.  To get a simple "
17188 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
17189 "consumption, use C<guestfs_ll>."
17190 msgstr ""
17191
17192 # type: textblock
17193 #. type: textblock
17194 #: ../src/guestfs-actions.pod:5555
17195 msgid ""
17196 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
17197 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after use>."
17198 msgstr ""
17199
17200 # type: =head2
17201 #. type: =head2
17202 #: ../src/guestfs-actions.pod:5561
17203 msgid "guestfs_readlink"
17204 msgstr ""
17205
17206 # type: verbatim
17207 #. type: verbatim
17208 #: ../src/guestfs-actions.pod:5563
17209 #, no-wrap
17210 msgid ""
17211 " char *\n"
17212 " guestfs_readlink (guestfs_h *g,\n"
17213 "                   const char *path);\n"
17214 "\n"
17215 msgstr ""
17216
17217 # type: textblock
17218 #. type: textblock
17219 #: ../src/guestfs-actions.pod:5567 ../fish/guestfish-actions.pod:3752
17220 msgid "This command reads the target of a symbolic link."
17221 msgstr ""
17222
17223 # type: =head2
17224 #. type: =head2
17225 #: ../src/guestfs-actions.pod:5574
17226 msgid "guestfs_readlinklist"
17227 msgstr ""
17228
17229 # type: verbatim
17230 #. type: verbatim
17231 #: ../src/guestfs-actions.pod:5576
17232 #, no-wrap
17233 msgid ""
17234 " char **\n"
17235 " guestfs_readlinklist (guestfs_h *g,\n"
17236 "                       const char *path,\n"
17237 "                       char *const *names);\n"
17238 "\n"
17239 msgstr ""
17240
17241 # type: textblock
17242 #. type: textblock
17243 #: ../src/guestfs-actions.pod:5581 ../fish/guestfish-actions.pod:3758
17244 msgid ""
17245 "This call allows you to do a C<readlink> operation on multiple files, where "
17246 "all files are in the directory C<path>.  C<names> is the list of files from "
17247 "this directory."
17248 msgstr ""
17249
17250 # type: textblock
17251 #. type: textblock
17252 #: ../src/guestfs-actions.pod:5585 ../fish/guestfish-actions.pod:3762
17253 msgid ""
17254 "On return you get a list of strings, with a one-to-one correspondence to the "
17255 "C<names> list.  Each string is the value of the symbolic link."
17256 msgstr ""
17257
17258 # type: textblock
17259 #. type: textblock
17260 #: ../src/guestfs-actions.pod:5589 ../fish/guestfish-actions.pod:3766
17261 msgid ""
17262 "If the C<readlink(2)> operation fails on any name, then the corresponding "
17263 "result string is the empty string C<\"\">.  However the whole operation is "
17264 "completed even if there were C<readlink(2)> errors, and so you can call this "
17265 "function with names where you don't know if they are symbolic links already "
17266 "(albeit slightly less efficient)."
17267 msgstr ""
17268
17269 # type: textblock
17270 #. type: textblock
17271 #: ../src/guestfs-actions.pod:5596 ../fish/guestfish-actions.pod:3773
17272 msgid ""
17273 "This call is intended for programs that want to efficiently list a directory "
17274 "contents without making many round-trips.  Very long directory listings "
17275 "might cause the protocol message size to be exceeded, causing this call to "
17276 "fail.  The caller must split up such requests into smaller groups of names."
17277 msgstr ""
17278
17279 # type: =head2
17280 #. type: =head2
17281 #: ../src/guestfs-actions.pod:5609
17282 msgid "guestfs_realpath"
17283 msgstr ""
17284
17285 # type: verbatim
17286 #. type: verbatim
17287 #: ../src/guestfs-actions.pod:5611
17288 #, no-wrap
17289 msgid ""
17290 " char *\n"
17291 " guestfs_realpath (guestfs_h *g,\n"
17292 "                   const char *path);\n"
17293 "\n"
17294 msgstr ""
17295
17296 # type: textblock
17297 #. type: textblock
17298 #: ../src/guestfs-actions.pod:5615 ../fish/guestfish-actions.pod:3784
17299 msgid ""
17300 "Return the canonicalized absolute pathname of C<path>.  The returned path "
17301 "has no C<.>, C<..> or symbolic link path elements."
17302 msgstr ""
17303
17304 # type: =head2
17305 #. type: =head2
17306 #: ../src/guestfs-actions.pod:5623
17307 msgid "guestfs_removexattr"
17308 msgstr ""
17309
17310 # type: verbatim
17311 #. type: verbatim
17312 #: ../src/guestfs-actions.pod:5625
17313 #, no-wrap
17314 msgid ""
17315 " int\n"
17316 " guestfs_removexattr (guestfs_h *g,\n"
17317 "                      const char *xattr,\n"
17318 "                      const char *path);\n"
17319 "\n"
17320 msgstr ""
17321
17322 # type: textblock
17323 #. type: textblock
17324 #: ../src/guestfs-actions.pod:5630 ../fish/guestfish-actions.pod:3791
17325 msgid ""
17326 "This call removes the extended attribute named C<xattr> of the file C<path>."
17327 msgstr ""
17328
17329 # type: textblock
17330 #. type: textblock
17331 #: ../src/guestfs-actions.pod:5633
17332 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
17333 msgstr ""
17334
17335 # type: =head2
17336 #. type: =head2
17337 #: ../src/guestfs-actions.pod:5639
17338 msgid "guestfs_resize2fs"
17339 msgstr ""
17340
17341 # type: verbatim
17342 #. type: verbatim
17343 #: ../src/guestfs-actions.pod:5641
17344 #, no-wrap
17345 msgid ""
17346 " int\n"
17347 " guestfs_resize2fs (guestfs_h *g,\n"
17348 "                    const char *device);\n"
17349 "\n"
17350 msgstr ""
17351
17352 # type: textblock
17353 #. type: textblock
17354 #: ../src/guestfs-actions.pod:5645 ../fish/guestfish-actions.pod:3800
17355 msgid ""
17356 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
17357 "underlying device."
17358 msgstr ""
17359
17360 # type: textblock
17361 #. type: textblock
17362 #: ../src/guestfs-actions.pod:5648
17363 msgid ""
17364 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
17365 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
17366 "sometimes gives an error about this and sometimes not.  In any case, it is "
17367 "always safe to call C<guestfs_e2fsck_f> before calling this function."
17368 msgstr ""
17369
17370 #. type: =head2
17371 #: ../src/guestfs-actions.pod:5658
17372 msgid "guestfs_resize2fs_M"
17373 msgstr ""
17374
17375 #. type: verbatim
17376 #: ../src/guestfs-actions.pod:5660
17377 #, no-wrap
17378 msgid ""
17379 " int\n"
17380 " guestfs_resize2fs_M (guestfs_h *g,\n"
17381 "                      const char *device);\n"
17382 "\n"
17383 msgstr ""
17384
17385 #. type: textblock
17386 #: ../src/guestfs-actions.pod:5664
17387 msgid ""
17388 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
17389 "resized to its minimum size.  This works like the I<-M> option to the "
17390 "C<resize2fs> command."
17391 msgstr ""
17392
17393 #. type: textblock
17394 #: ../src/guestfs-actions.pod:5668
17395 msgid ""
17396 "To get the resulting size of the filesystem you should call "
17397 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
17398 "These two numbers, multiplied together, give the resulting size of the "
17399 "minimal filesystem in bytes."
17400 msgstr ""
17401
17402 # type: =head2
17403 #. type: =head2
17404 #: ../src/guestfs-actions.pod:5675
17405 msgid "guestfs_resize2fs_size"
17406 msgstr ""
17407
17408 # type: verbatim
17409 #. type: verbatim
17410 #: ../src/guestfs-actions.pod:5677
17411 #, no-wrap
17412 msgid ""
17413 " int\n"
17414 " guestfs_resize2fs_size (guestfs_h *g,\n"
17415 "                         const char *device,\n"
17416 "                         int64_t size);\n"
17417 "\n"
17418 msgstr ""
17419
17420 # type: textblock
17421 #. type: textblock
17422 #: ../src/guestfs-actions.pod:5682
17423 msgid ""
17424 "This command is the same as C<guestfs_resize2fs> except that it allows you "
17425 "to specify the new size (in bytes) explicitly."
17426 msgstr ""
17427
17428 # type: =head2
17429 #. type: =head2
17430 #: ../src/guestfs-actions.pod:5689
17431 msgid "guestfs_rm"
17432 msgstr ""
17433
17434 # type: verbatim
17435 #. type: verbatim
17436 #: ../src/guestfs-actions.pod:5691
17437 #, no-wrap
17438 msgid ""
17439 " int\n"
17440 " guestfs_rm (guestfs_h *g,\n"
17441 "             const char *path);\n"
17442 "\n"
17443 msgstr ""
17444
17445 # type: textblock
17446 #. type: textblock
17447 #: ../src/guestfs-actions.pod:5695 ../fish/guestfish-actions.pod:3833
17448 msgid "Remove the single file C<path>."
17449 msgstr ""
17450
17451 # type: =head2
17452 #. type: =head2
17453 #: ../src/guestfs-actions.pod:5701
17454 msgid "guestfs_rm_rf"
17455 msgstr ""
17456
17457 # type: verbatim
17458 #. type: verbatim
17459 #: ../src/guestfs-actions.pod:5703
17460 #, no-wrap
17461 msgid ""
17462 " int\n"
17463 " guestfs_rm_rf (guestfs_h *g,\n"
17464 "                const char *path);\n"
17465 "\n"
17466 msgstr ""
17467
17468 # type: textblock
17469 #. type: textblock
17470 #: ../src/guestfs-actions.pod:5707 ../fish/guestfish-actions.pod:3839
17471 msgid ""
17472 "Remove the file or directory C<path>, recursively removing the contents if "
17473 "its a directory.  This is like the C<rm -rf> shell command."
17474 msgstr ""
17475
17476 # type: =head2
17477 #. type: =head2
17478 #: ../src/guestfs-actions.pod:5715
17479 msgid "guestfs_rmdir"
17480 msgstr ""
17481
17482 # type: verbatim
17483 #. type: verbatim
17484 #: ../src/guestfs-actions.pod:5717
17485 #, no-wrap
17486 msgid ""
17487 " int\n"
17488 " guestfs_rmdir (guestfs_h *g,\n"
17489 "                const char *path);\n"
17490 "\n"
17491 msgstr ""
17492
17493 # type: textblock
17494 #. type: textblock
17495 #: ../src/guestfs-actions.pod:5721 ../fish/guestfish-actions.pod:3847
17496 msgid "Remove the single directory C<path>."
17497 msgstr ""
17498
17499 # type: =head2
17500 #. type: =head2
17501 #: ../src/guestfs-actions.pod:5727
17502 msgid "guestfs_rmmountpoint"
17503 msgstr ""
17504
17505 # type: verbatim
17506 #. type: verbatim
17507 #: ../src/guestfs-actions.pod:5729
17508 #, no-wrap
17509 msgid ""
17510 " int\n"
17511 " guestfs_rmmountpoint (guestfs_h *g,\n"
17512 "                       const char *exemptpath);\n"
17513 "\n"
17514 msgstr ""
17515
17516 # type: textblock
17517 #. type: textblock
17518 #: ../src/guestfs-actions.pod:5733
17519 msgid ""
17520 "This calls removes a mountpoint that was previously created with "
17521 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
17522 msgstr ""
17523
17524 # type: =head2
17525 #. type: =head2
17526 #: ../src/guestfs-actions.pod:5741
17527 msgid "guestfs_scrub_device"
17528 msgstr ""
17529
17530 # type: verbatim
17531 #. type: verbatim
17532 #: ../src/guestfs-actions.pod:5743
17533 #, no-wrap
17534 msgid ""
17535 " int\n"
17536 " guestfs_scrub_device (guestfs_h *g,\n"
17537 "                       const char *device);\n"
17538 "\n"
17539 msgstr ""
17540
17541 # type: textblock
17542 #. type: textblock
17543 #: ../src/guestfs-actions.pod:5747 ../fish/guestfish-actions.pod:3861
17544 msgid ""
17545 "This command writes patterns over C<device> to make data retrieval more "
17546 "difficult."
17547 msgstr ""
17548
17549 # type: textblock
17550 #. type: textblock
17551 #: ../src/guestfs-actions.pod:5750 ../src/guestfs-actions.pod:5771
17552 #: ../src/guestfs-actions.pod:5790 ../fish/guestfish-actions.pod:3864
17553 #: ../fish/guestfish-actions.pod:3879 ../fish/guestfish-actions.pod:3892
17554 msgid ""
17555 "It is an interface to the L<scrub(1)> program.  See that manual page for "
17556 "more details."
17557 msgstr ""
17558
17559 # type: textblock
17560 #. type: textblock
17561 #: ../src/guestfs-actions.pod:5758 ../src/guestfs-actions.pod:5776
17562 #: ../src/guestfs-actions.pod:5795
17563 msgid "(Added in 1.0.52)"
17564 msgstr ""
17565
17566 # type: =head2
17567 #. type: =head2
17568 #: ../src/guestfs-actions.pod:5760
17569 msgid "guestfs_scrub_file"
17570 msgstr ""
17571
17572 # type: verbatim
17573 #. type: verbatim
17574 #: ../src/guestfs-actions.pod:5762
17575 #, no-wrap
17576 msgid ""
17577 " int\n"
17578 " guestfs_scrub_file (guestfs_h *g,\n"
17579 "                     const char *file);\n"
17580 "\n"
17581 msgstr ""
17582
17583 # type: textblock
17584 #. type: textblock
17585 #: ../src/guestfs-actions.pod:5766 ../fish/guestfish-actions.pod:3874
17586 msgid ""
17587 "This command writes patterns over a file to make data retrieval more "
17588 "difficult."
17589 msgstr ""
17590
17591 # type: textblock
17592 #. type: textblock
17593 #: ../src/guestfs-actions.pod:5769 ../fish/guestfish-actions.pod:3877
17594 msgid "The file is I<removed> after scrubbing."
17595 msgstr ""
17596
17597 # type: =head2
17598 #. type: =head2
17599 #: ../src/guestfs-actions.pod:5778
17600 msgid "guestfs_scrub_freespace"
17601 msgstr ""
17602
17603 # type: verbatim
17604 #. type: verbatim
17605 #: ../src/guestfs-actions.pod:5780
17606 #, no-wrap
17607 msgid ""
17608 " int\n"
17609 " guestfs_scrub_freespace (guestfs_h *g,\n"
17610 "                          const char *dir);\n"
17611 "\n"
17612 msgstr ""
17613
17614 # type: textblock
17615 #. type: textblock
17616 #: ../src/guestfs-actions.pod:5784
17617 msgid ""
17618 "This command creates the directory C<dir> and then fills it with files until "
17619 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
17620 "and deletes them.  The intention is to scrub any free space on the partition "
17621 "containing C<dir>."
17622 msgstr ""
17623
17624 # type: =head2
17625 #. type: =head2
17626 #: ../src/guestfs-actions.pod:5797
17627 msgid "guestfs_set_append"
17628 msgstr ""
17629
17630 # type: verbatim
17631 #. type: verbatim
17632 #: ../src/guestfs-actions.pod:5799
17633 #, no-wrap
17634 msgid ""
17635 " int\n"
17636 " guestfs_set_append (guestfs_h *g,\n"
17637 "                     const char *append);\n"
17638 "\n"
17639 msgstr ""
17640
17641 # type: textblock
17642 #. type: textblock
17643 #: ../src/guestfs-actions.pod:5803 ../fish/guestfish-actions.pod:3901
17644 msgid ""
17645 "This function is used to add additional options to the guest kernel command "
17646 "line."
17647 msgstr ""
17648
17649 # type: textblock
17650 #. type: textblock
17651 #: ../src/guestfs-actions.pod:5806 ../fish/guestfish-actions.pod:3904
17652 msgid ""
17653 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
17654 "environment variable."
17655 msgstr ""
17656
17657 # type: textblock
17658 #. type: textblock
17659 #: ../src/guestfs-actions.pod:5809 ../fish/guestfish-actions.pod:3907
17660 msgid ""
17661 "Setting C<append> to C<NULL> means I<no> additional options are passed "
17662 "(libguestfs always adds a few of its own)."
17663 msgstr ""
17664
17665 #. type: =head2
17666 #: ../src/guestfs-actions.pod:5816
17667 msgid "guestfs_set_attach_method"
17668 msgstr ""
17669
17670 #. type: verbatim
17671 #: ../src/guestfs-actions.pod:5818
17672 #, no-wrap
17673 msgid ""
17674 " int\n"
17675 " guestfs_set_attach_method (guestfs_h *g,\n"
17676 "                            const char *attachmethod);\n"
17677 "\n"
17678 msgstr ""
17679
17680 #. type: textblock
17681 #: ../src/guestfs-actions.pod:5822 ../fish/guestfish-actions.pod:3916
17682 msgid ""
17683 "Set the method that libguestfs uses to connect to the back end guestfsd "
17684 "daemon.  Possible methods are:"
17685 msgstr ""
17686
17687 #. type: textblock
17688 #: ../src/guestfs-actions.pod:5829 ../fish/guestfish-actions.pod:3923
17689 msgid ""
17690 "Launch an appliance and connect to it.  This is the ordinary method and the "
17691 "default."
17692 msgstr ""
17693
17694 #. type: =item
17695 #: ../src/guestfs-actions.pod:5832 ../fish/guestfish-actions.pod:3926
17696 msgid "C<unix:I<path>>"
17697 msgstr ""
17698
17699 #. type: textblock
17700 #: ../src/guestfs-actions.pod:5834 ../fish/guestfish-actions.pod:3928
17701 msgid "Connect to the Unix domain socket I<path>."
17702 msgstr ""
17703
17704 #. type: textblock
17705 #: ../src/guestfs-actions.pod:5836 ../fish/guestfish-actions.pod:3930
17706 msgid ""
17707 "This method lets you connect to an existing daemon or (using virtio-serial) "
17708 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
17709 "RUNNING DAEMONS>."
17710 msgstr ""
17711
17712 # type: =head2
17713 #. type: =head2
17714 #: ../src/guestfs-actions.pod:5844
17715 msgid "guestfs_set_autosync"
17716 msgstr ""
17717
17718 # type: verbatim
17719 #. type: verbatim
17720 #: ../src/guestfs-actions.pod:5846
17721 #, no-wrap
17722 msgid ""
17723 " int\n"
17724 " guestfs_set_autosync (guestfs_h *g,\n"
17725 "                       int autosync);\n"
17726 "\n"
17727 msgstr ""
17728
17729 #. type: textblock
17730 #: ../src/guestfs-actions.pod:5850 ../fish/guestfish-actions.pod:3942
17731 msgid ""
17732 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
17733 "effort attempt to make filesystems consistent and synchronized when the "
17734 "handle is closed (also if the program exits without closing handles)."
17735 msgstr ""
17736
17737 # type: textblock
17738 #. type: textblock
17739 #: ../src/guestfs-actions.pod:5855 ../fish/guestfish-actions.pod:3947
17740 msgid ""
17741 "This is enabled by default (since libguestfs 1.5.24, previously it was "
17742 "disabled by default)."
17743 msgstr ""
17744
17745 # type: =head2
17746 #. type: =head2
17747 #: ../src/guestfs-actions.pod:5862
17748 msgid "guestfs_set_direct"
17749 msgstr ""
17750
17751 # type: verbatim
17752 #. type: verbatim
17753 #: ../src/guestfs-actions.pod:5864
17754 #, no-wrap
17755 msgid ""
17756 " int\n"
17757 " guestfs_set_direct (guestfs_h *g,\n"
17758 "                     int direct);\n"
17759 "\n"
17760 msgstr ""
17761
17762 # type: textblock
17763 #. type: textblock
17764 #: ../src/guestfs-actions.pod:5868 ../fish/guestfish-actions.pod:3956
17765 msgid ""
17766 "If the direct appliance mode flag is enabled, then stdin and stdout are "
17767 "passed directly through to the appliance once it is launched."
17768 msgstr ""
17769
17770 # type: textblock
17771 #. type: textblock
17772 #: ../src/guestfs-actions.pod:5872
17773 msgid ""
17774 "One consequence of this is that log messages aren't caught by the library "
17775 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
17776 "stdout."
17777 msgstr ""
17778
17779 # type: textblock
17780 #. type: textblock
17781 #: ../src/guestfs-actions.pod:5876 ../fish/guestfish-actions.pod:3964
17782 msgid "You probably don't want to use this unless you know what you are doing."
17783 msgstr ""
17784
17785 # type: textblock
17786 #. type: textblock
17787 #: ../src/guestfs-actions.pod:5879 ../fish/guestfish-actions.pod:3967
17788 msgid "The default is disabled."
17789 msgstr ""
17790
17791 # type: =head2
17792 #. type: =head2
17793 #: ../src/guestfs-actions.pod:5885
17794 msgid "guestfs_set_e2label"
17795 msgstr ""
17796
17797 # type: verbatim
17798 #. type: verbatim
17799 #: ../src/guestfs-actions.pod:5887
17800 #, no-wrap
17801 msgid ""
17802 " int\n"
17803 " guestfs_set_e2label (guestfs_h *g,\n"
17804 "                      const char *device,\n"
17805 "                      const char *label);\n"
17806 "\n"
17807 msgstr ""
17808
17809 # type: textblock
17810 #. type: textblock
17811 #: ../src/guestfs-actions.pod:5892 ../fish/guestfish-actions.pod:3973
17812 msgid ""
17813 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
17814 "C<label>.  Filesystem labels are limited to 16 characters."
17815 msgstr ""
17816
17817 # type: textblock
17818 #. type: textblock
17819 #: ../src/guestfs-actions.pod:5896
17820 msgid ""
17821 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
17822 "the existing label on a filesystem."
17823 msgstr ""
17824
17825 # type: =head2
17826 #. type: =head2
17827 #: ../src/guestfs-actions.pod:5903
17828 msgid "guestfs_set_e2uuid"
17829 msgstr ""
17830
17831 # type: verbatim
17832 #. type: verbatim
17833 #: ../src/guestfs-actions.pod:5905
17834 #, no-wrap
17835 msgid ""
17836 " int\n"
17837 " guestfs_set_e2uuid (guestfs_h *g,\n"
17838 "                     const char *device,\n"
17839 "                     const char *uuid);\n"
17840 "\n"
17841 msgstr ""
17842
17843 # type: textblock
17844 #. type: textblock
17845 #: ../src/guestfs-actions.pod:5910 ../fish/guestfish-actions.pod:3984
17846 msgid ""
17847 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
17848 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
17849 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
17850 msgstr ""
17851
17852 # type: textblock
17853 #. type: textblock
17854 #: ../src/guestfs-actions.pod:5915
17855 msgid ""
17856 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
17857 "the existing UUID of a filesystem."
17858 msgstr ""
17859
17860 # type: =head2
17861 #. type: =head2
17862 #: ../src/guestfs-actions.pod:5922
17863 msgid "guestfs_set_memsize"
17864 msgstr ""
17865
17866 # type: verbatim
17867 #. type: verbatim
17868 #: ../src/guestfs-actions.pod:5924
17869 #, no-wrap
17870 msgid ""
17871 " int\n"
17872 " guestfs_set_memsize (guestfs_h *g,\n"
17873 "                      int memsize);\n"
17874 "\n"
17875 msgstr ""
17876
17877 # type: textblock
17878 #. type: textblock
17879 #: ../src/guestfs-actions.pod:5928
17880 msgid ""
17881 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
17882 "This only has any effect if called before C<guestfs_launch>."
17883 msgstr ""
17884
17885 # type: textblock
17886 #. type: textblock
17887 #: ../src/guestfs-actions.pod:5932 ../fish/guestfish-actions.pod:4002
17888 msgid ""
17889 "You can also change this by setting the environment variable "
17890 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
17891 msgstr ""
17892
17893 # type: =head2
17894 #. type: =head2
17895 #: ../src/guestfs-actions.pod:5943
17896 msgid "guestfs_set_network"
17897 msgstr ""
17898
17899 # type: verbatim
17900 #. type: verbatim
17901 #: ../src/guestfs-actions.pod:5945
17902 #, no-wrap
17903 msgid ""
17904 " int\n"
17905 " guestfs_set_network (guestfs_h *g,\n"
17906 "                      int network);\n"
17907 "\n"
17908 msgstr ""
17909
17910 # type: textblock
17911 #. type: textblock
17912 #: ../src/guestfs-actions.pod:5949 ../fish/guestfish-actions.pod:4015
17913 msgid ""
17914 "If C<network> is true, then the network is enabled in the libguestfs "
17915 "appliance.  The default is false."
17916 msgstr ""
17917
17918 # type: textblock
17919 #. type: textblock
17920 #: ../src/guestfs-actions.pod:5952 ../fish/guestfish-actions.pod:4018
17921 msgid ""
17922 "This affects whether commands are able to access the network (see L<guestfs"
17923 "(3)/RUNNING COMMANDS>)."
17924 msgstr ""
17925
17926 # type: textblock
17927 #. type: textblock
17928 #: ../src/guestfs-actions.pod:5955
17929 msgid ""
17930 "You must call this before calling C<guestfs_launch>, otherwise it has no "
17931 "effect."
17932 msgstr ""
17933
17934 # type: =head2
17935 #. type: =head2
17936 #: ../src/guestfs-actions.pod:5962
17937 msgid "guestfs_set_path"
17938 msgstr ""
17939
17940 # type: verbatim
17941 #. type: verbatim
17942 #: ../src/guestfs-actions.pod:5964
17943 #, no-wrap
17944 msgid ""
17945 " int\n"
17946 " guestfs_set_path (guestfs_h *g,\n"
17947 "                   const char *searchpath);\n"
17948 "\n"
17949 msgstr ""
17950
17951 # type: textblock
17952 #. type: textblock
17953 #: ../src/guestfs-actions.pod:5968 ../fish/guestfish-actions.pod:4030
17954 msgid "Set the path that libguestfs searches for kernel and initrd.img."
17955 msgstr ""
17956
17957 # type: textblock
17958 #. type: textblock
17959 #: ../src/guestfs-actions.pod:5970 ../fish/guestfish-actions.pod:4032
17960 msgid ""
17961 "The default is C<$libdir/guestfs> unless overridden by setting "
17962 "C<LIBGUESTFS_PATH> environment variable."
17963 msgstr ""
17964
17965 # type: textblock
17966 #. type: textblock
17967 #: ../src/guestfs-actions.pod:5973 ../fish/guestfish-actions.pod:4035
17968 msgid "Setting C<path> to C<NULL> restores the default path."
17969 msgstr ""
17970
17971 # type: =head2
17972 #. type: =head2
17973 #: ../src/guestfs-actions.pod:5979
17974 msgid "guestfs_set_qemu"
17975 msgstr ""
17976
17977 # type: verbatim
17978 #. type: verbatim
17979 #: ../src/guestfs-actions.pod:5981
17980 #, no-wrap
17981 msgid ""
17982 " int\n"
17983 " guestfs_set_qemu (guestfs_h *g,\n"
17984 "                   const char *qemu);\n"
17985 "\n"
17986 msgstr ""
17987
17988 # type: textblock
17989 #. type: textblock
17990 #: ../src/guestfs-actions.pod:5985 ../fish/guestfish-actions.pod:4043
17991 msgid "Set the qemu binary that we will use."
17992 msgstr ""
17993
17994 # type: textblock
17995 #. type: textblock
17996 #: ../src/guestfs-actions.pod:5987 ../fish/guestfish-actions.pod:4045
17997 msgid ""
17998 "The default is chosen when the library was compiled by the configure script."
17999 msgstr ""
18000
18001 # type: textblock
18002 #. type: textblock
18003 #: ../src/guestfs-actions.pod:5990 ../fish/guestfish-actions.pod:4048
18004 msgid ""
18005 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
18006 "variable."
18007 msgstr ""
18008
18009 # type: textblock
18010 #. type: textblock
18011 #: ../src/guestfs-actions.pod:5993 ../fish/guestfish-actions.pod:4051
18012 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
18013 msgstr ""
18014
18015 # type: textblock
18016 #. type: textblock
18017 #: ../src/guestfs-actions.pod:5995 ../fish/guestfish-actions.pod:4053
18018 msgid ""
18019 "Note that you should call this function as early as possible after creating "
18020 "the handle.  This is because some pre-launch operations depend on testing "
18021 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
18022 "don't retest features, and so you might see inconsistent results.  Using the "
18023 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
18024 "the qemu binary at the same time as the handle is created."
18025 msgstr ""
18026
18027 # type: =head2
18028 #. type: =head2
18029 #: ../src/guestfs-actions.pod:6007
18030 msgid "guestfs_set_recovery_proc"
18031 msgstr ""
18032
18033 # type: verbatim
18034 #. type: verbatim
18035 #: ../src/guestfs-actions.pod:6009
18036 #, no-wrap
18037 msgid ""
18038 " int\n"
18039 " guestfs_set_recovery_proc (guestfs_h *g,\n"
18040 "                            int recoveryproc);\n"
18041 "\n"
18042 msgstr ""
18043
18044 # type: textblock
18045 #. type: textblock
18046 #: ../src/guestfs-actions.pod:6013
18047 msgid ""
18048 "If this is called with the parameter C<false> then C<guestfs_launch> does "
18049 "not create a recovery process.  The purpose of the recovery process is to "
18050 "stop runaway qemu processes in the case where the main program aborts "
18051 "abruptly."
18052 msgstr ""
18053
18054 # type: textblock
18055 #. type: textblock
18056 #: ../src/guestfs-actions.pod:6018
18057 msgid ""
18058 "This only has any effect if called before C<guestfs_launch>, and the default "
18059 "is true."
18060 msgstr ""
18061
18062 # type: textblock
18063 #. type: textblock
18064 #: ../src/guestfs-actions.pod:6021 ../fish/guestfish-actions.pod:4075
18065 msgid ""
18066 "About the only time when you would want to disable this is if the main "
18067 "process will fork itself into the background (\"daemonize\" itself).  In "
18068 "this case the recovery process thinks that the main program has disappeared "
18069 "and so kills qemu, which is not very helpful."
18070 msgstr ""
18071
18072 # type: =head2
18073 #. type: =head2
18074 #: ../src/guestfs-actions.pod:6031
18075 msgid "guestfs_set_selinux"
18076 msgstr ""
18077
18078 # type: verbatim
18079 #. type: verbatim
18080 #: ../src/guestfs-actions.pod:6033
18081 #, no-wrap
18082 msgid ""
18083 " int\n"
18084 " guestfs_set_selinux (guestfs_h *g,\n"
18085 "                      int selinux);\n"
18086 "\n"
18087 msgstr ""
18088
18089 # type: textblock
18090 #. type: textblock
18091 #: ../src/guestfs-actions.pod:6037 ../fish/guestfish-actions.pod:4087
18092 msgid ""
18093 "This sets the selinux flag that is passed to the appliance at boot time.  "
18094 "The default is C<selinux=0> (disabled)."
18095 msgstr ""
18096
18097 # type: textblock
18098 #. type: textblock
18099 #: ../src/guestfs-actions.pod:6040 ../fish/guestfish-actions.pod:4090
18100 msgid ""
18101 "Note that if SELinux is enabled, it is always in Permissive mode "
18102 "(C<enforcing=0>)."
18103 msgstr ""
18104
18105 # type: =head2
18106 #. type: =head2
18107 #: ../src/guestfs-actions.pod:6050
18108 msgid "guestfs_set_trace"
18109 msgstr ""
18110
18111 # type: verbatim
18112 #. type: verbatim
18113 #: ../src/guestfs-actions.pod:6052
18114 #, no-wrap
18115 msgid ""
18116 " int\n"
18117 " guestfs_set_trace (guestfs_h *g,\n"
18118 "                    int trace);\n"
18119 "\n"
18120 msgstr ""
18121
18122 #. type: textblock
18123 #: ../src/guestfs-actions.pod:6056 ../fish/guestfish-actions.pod:4102
18124 msgid ""
18125 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
18126 "return values are traced."
18127 msgstr ""
18128
18129 # type: textblock
18130 #. type: textblock
18131 #: ../src/guestfs-actions.pod:6059 ../fish/guestfish-actions.pod:4105
18132 msgid ""
18133 "If you want to trace C API calls into libguestfs (and other libraries) then "
18134 "possibly a better way is to use the external ltrace(1) command."
18135 msgstr ""
18136
18137 # type: textblock
18138 #. type: textblock
18139 #: ../src/guestfs-actions.pod:6063 ../fish/guestfish-actions.pod:4109
18140 msgid ""
18141 "Command traces are disabled unless the environment variable "
18142 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
18143 msgstr ""
18144
18145 #. type: textblock
18146 #: ../src/guestfs-actions.pod:6066
18147 msgid ""
18148 "Trace messages are normally sent to C<stderr>, unless you register a "
18149 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
18150 msgstr ""
18151
18152 # type: =head2
18153 #. type: =head2
18154 #: ../src/guestfs-actions.pod:6074
18155 msgid "guestfs_set_verbose"
18156 msgstr ""
18157
18158 # type: verbatim
18159 #. type: verbatim
18160 #: ../src/guestfs-actions.pod:6076
18161 #, no-wrap
18162 msgid ""
18163 " int\n"
18164 " guestfs_set_verbose (guestfs_h *g,\n"
18165 "                      int verbose);\n"
18166 "\n"
18167 msgstr ""
18168
18169 #. type: textblock
18170 #: ../src/guestfs-actions.pod:6080 ../fish/guestfish-actions.pod:4122
18171 msgid "If C<verbose> is true, this turns on verbose messages."
18172 msgstr ""
18173
18174 # type: textblock
18175 #. type: textblock
18176 #: ../src/guestfs-actions.pod:6082 ../fish/guestfish-actions.pod:4124
18177 msgid ""
18178 "Verbose messages are disabled unless the environment variable "
18179 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
18180 msgstr ""
18181
18182 #. type: textblock
18183 #: ../src/guestfs-actions.pod:6085
18184 msgid ""
18185 "Verbose messages are normally sent to C<stderr>, unless you register a "
18186 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
18187 msgstr ""
18188
18189 # type: =head2
18190 #. type: =head2
18191 #: ../src/guestfs-actions.pod:6093
18192 msgid "guestfs_setcon"
18193 msgstr ""
18194
18195 # type: verbatim
18196 #. type: verbatim
18197 #: ../src/guestfs-actions.pod:6095
18198 #, no-wrap
18199 msgid ""
18200 " int\n"
18201 " guestfs_setcon (guestfs_h *g,\n"
18202 "                 const char *context);\n"
18203 "\n"
18204 msgstr ""
18205
18206 # type: textblock
18207 #. type: textblock
18208 #: ../src/guestfs-actions.pod:6099 ../fish/guestfish-actions.pod:4135
18209 msgid ""
18210 "This sets the SELinux security context of the daemon to the string "
18211 "C<context>."
18212 msgstr ""
18213
18214 # type: textblock
18215 #. type: textblock
18216 #: ../src/guestfs-actions.pod:6102 ../fish/guestfish-actions.pod:4138
18217 msgid "See the documentation about SELINUX in L<guestfs(3)>."
18218 msgstr ""
18219
18220 # type: =head2
18221 #. type: =head2
18222 #: ../src/guestfs-actions.pod:6108
18223 msgid "guestfs_setxattr"
18224 msgstr ""
18225
18226 # type: verbatim
18227 #. type: verbatim
18228 #: ../src/guestfs-actions.pod:6110
18229 #, no-wrap
18230 msgid ""
18231 " int\n"
18232 " guestfs_setxattr (guestfs_h *g,\n"
18233 "                   const char *xattr,\n"
18234 "                   const char *val,\n"
18235 "                   int vallen,\n"
18236 "                   const char *path);\n"
18237 "\n"
18238 msgstr ""
18239
18240 # type: textblock
18241 #. type: textblock
18242 #: ../src/guestfs-actions.pod:6117 ../fish/guestfish-actions.pod:4144
18243 msgid ""
18244 "This call sets the extended attribute named C<xattr> of the file C<path> to "
18245 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
18246 msgstr ""
18247
18248 # type: textblock
18249 #. type: textblock
18250 #: ../src/guestfs-actions.pod:6121
18251 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
18252 msgstr ""
18253
18254 # type: =head2
18255 #. type: =head2
18256 #: ../src/guestfs-actions.pod:6127
18257 msgid "guestfs_sfdisk"
18258 msgstr ""
18259
18260 # type: verbatim
18261 #. type: verbatim
18262 #: ../src/guestfs-actions.pod:6129
18263 #, no-wrap
18264 msgid ""
18265 " int\n"
18266 " guestfs_sfdisk (guestfs_h *g,\n"
18267 "                 const char *device,\n"
18268 "                 int cyls,\n"
18269 "                 int heads,\n"
18270 "                 int sectors,\n"
18271 "                 char *const *lines);\n"
18272 "\n"
18273 msgstr ""
18274
18275 # type: textblock
18276 #. type: textblock
18277 #: ../src/guestfs-actions.pod:6137 ../fish/guestfish-actions.pod:4154
18278 msgid ""
18279 "This is a direct interface to the L<sfdisk(8)> program for creating "
18280 "partitions on block devices."
18281 msgstr ""
18282
18283 # type: textblock
18284 #. type: textblock
18285 #: ../src/guestfs-actions.pod:6140 ../fish/guestfish-actions.pod:4157
18286 msgid "C<device> should be a block device, for example C</dev/sda>."
18287 msgstr ""
18288
18289 # type: textblock
18290 #. type: textblock
18291 #: ../src/guestfs-actions.pod:6142 ../fish/guestfish-actions.pod:4159
18292 msgid ""
18293 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
18294 "sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
18295 "H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
18296 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
18297 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
18298 "the kernel) cannot work out the right geometry and you will need to tell it."
18299 msgstr ""
18300
18301 # type: textblock
18302 #. type: textblock
18303 #: ../src/guestfs-actions.pod:6150 ../fish/guestfish-actions.pod:4167
18304 msgid ""
18305 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
18306 "refer to the L<sfdisk(8)> manpage."
18307 msgstr ""
18308
18309 # type: textblock
18310 #. type: textblock
18311 #: ../src/guestfs-actions.pod:6153 ../fish/guestfish-actions.pod:4170
18312 msgid ""
18313 "To create a single partition occupying the whole disk, you would pass "
18314 "C<lines> as a single element list, when the single element being the string "
18315 "C<,> (comma)."
18316 msgstr ""
18317
18318 # type: textblock
18319 #. type: textblock
18320 #: ../src/guestfs-actions.pod:6157
18321 msgid ""
18322 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
18323 msgstr ""
18324
18325 #. type: textblock
18326 #: ../src/guestfs-actions.pod:6165 ../src/guestfs-actions.pod:6195
18327 #: ../src/guestfs-actions.pod:6228
18328 msgid ""
18329 "This function is deprecated.  In new code, use the L</guestfs_part_add> call "
18330 "instead."
18331 msgstr ""
18332
18333 # type: =head2
18334 #. type: =head2
18335 #: ../src/guestfs-actions.pod:6174
18336 msgid "guestfs_sfdiskM"
18337 msgstr ""
18338
18339 # type: verbatim
18340 #. type: verbatim
18341 #: ../src/guestfs-actions.pod:6176
18342 #, no-wrap
18343 msgid ""
18344 " int\n"
18345 " guestfs_sfdiskM (guestfs_h *g,\n"
18346 "                  const char *device,\n"
18347 "                  char *const *lines);\n"
18348 "\n"
18349 msgstr ""
18350
18351 # type: textblock
18352 #. type: textblock
18353 #: ../src/guestfs-actions.pod:6181
18354 msgid ""
18355 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
18356 "partition sizes are specified in megabytes only (rounded to the nearest "
18357 "cylinder) and you don't need to specify the cyls, heads and sectors "
18358 "parameters which were rarely if ever used anyway."
18359 msgstr ""
18360
18361 # type: textblock
18362 #. type: textblock
18363 #: ../src/guestfs-actions.pod:6187
18364 msgid ""
18365 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
18366 "C<guestfs_part_disk>"
18367 msgstr ""
18368
18369 # type: =head2
18370 #. type: =head2
18371 #: ../src/guestfs-actions.pod:6204
18372 msgid "guestfs_sfdisk_N"
18373 msgstr ""
18374
18375 # type: verbatim
18376 #. type: verbatim
18377 #: ../src/guestfs-actions.pod:6206
18378 #, no-wrap
18379 msgid ""
18380 " int\n"
18381 " guestfs_sfdisk_N (guestfs_h *g,\n"
18382 "                   const char *device,\n"
18383 "                   int partnum,\n"
18384 "                   int cyls,\n"
18385 "                   int heads,\n"
18386 "                   int sectors,\n"
18387 "                   const char *line);\n"
18388 "\n"
18389 msgstr ""
18390
18391 # type: textblock
18392 #. type: textblock
18393 #: ../src/guestfs-actions.pod:6215 ../fish/guestfish-actions.pod:4214
18394 msgid ""
18395 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
18396 "(note: C<n> counts from 1)."
18397 msgstr ""
18398
18399 # type: textblock
18400 #. type: textblock
18401 #: ../src/guestfs-actions.pod:6218
18402 msgid ""
18403 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
18404 "for the cyls/heads/sectors parameters."
18405 msgstr ""
18406
18407 # type: textblock
18408 #. type: textblock
18409 #: ../src/guestfs-actions.pod:6221
18410 msgid "See also: C<guestfs_part_add>"
18411 msgstr ""
18412
18413 # type: =head2
18414 #. type: =head2
18415 #: ../src/guestfs-actions.pod:6237
18416 msgid "guestfs_sfdisk_disk_geometry"
18417 msgstr ""
18418
18419 # type: verbatim
18420 #. type: verbatim
18421 #: ../src/guestfs-actions.pod:6239
18422 #, no-wrap
18423 msgid ""
18424 " char *\n"
18425 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
18426 "                               const char *device);\n"
18427 "\n"
18428 msgstr ""
18429
18430 # type: textblock
18431 #. type: textblock
18432 #: ../src/guestfs-actions.pod:6243
18433 msgid ""
18434 "This displays the disk geometry of C<device> read from the partition table.  "
18435 "Especially in the case where the underlying block device has been resized, "
18436 "this can be different from the kernel's idea of the geometry (see "
18437 "C<guestfs_sfdisk_kernel_geometry>)."
18438 msgstr ""
18439
18440 # type: textblock
18441 #. type: textblock
18442 #: ../src/guestfs-actions.pod:6248 ../src/guestfs-actions.pod:6264
18443 #: ../fish/guestfish-actions.pod:4241 ../fish/guestfish-actions.pod:4250
18444 msgid "The result is in human-readable format, and not designed to be parsed."
18445 msgstr ""
18446
18447 # type: =head2
18448 #. type: =head2
18449 #: ../src/guestfs-actions.pod:6256
18450 msgid "guestfs_sfdisk_kernel_geometry"
18451 msgstr ""
18452
18453 # type: verbatim
18454 #. type: verbatim
18455 #: ../src/guestfs-actions.pod:6258
18456 #, no-wrap
18457 msgid ""
18458 " char *\n"
18459 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
18460 "                                 const char *device);\n"
18461 "\n"
18462 msgstr ""
18463
18464 # type: textblock
18465 #. type: textblock
18466 #: ../src/guestfs-actions.pod:6262 ../fish/guestfish-actions.pod:4248
18467 msgid "This displays the kernel's idea of the geometry of C<device>."
18468 msgstr ""
18469
18470 # type: =head2
18471 #. type: =head2
18472 #: ../src/guestfs-actions.pod:6272
18473 msgid "guestfs_sfdisk_l"
18474 msgstr ""
18475
18476 # type: verbatim
18477 #. type: verbatim
18478 #: ../src/guestfs-actions.pod:6274
18479 #, no-wrap
18480 msgid ""
18481 " char *\n"
18482 " guestfs_sfdisk_l (guestfs_h *g,\n"
18483 "                   const char *device);\n"
18484 "\n"
18485 msgstr ""
18486
18487 # type: textblock
18488 #. type: textblock
18489 #: ../src/guestfs-actions.pod:6278 ../fish/guestfish-actions.pod:4257
18490 msgid ""
18491 "This displays the partition table on C<device>, in the human-readable output "
18492 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
18493 msgstr ""
18494
18495 # type: textblock
18496 #. type: textblock
18497 #: ../src/guestfs-actions.pod:6282
18498 msgid "See also: C<guestfs_part_list>"
18499 msgstr ""
18500
18501 #. type: textblock
18502 #: ../src/guestfs-actions.pod:6287
18503 msgid ""
18504 "This function is deprecated.  In new code, use the L</guestfs_part_list> "
18505 "call instead."
18506 msgstr ""
18507
18508 # type: =head2
18509 #. type: =head2
18510 #: ../src/guestfs-actions.pod:6296
18511 msgid "guestfs_sh"
18512 msgstr ""
18513
18514 # type: verbatim
18515 #. type: verbatim
18516 #: ../src/guestfs-actions.pod:6298
18517 #, no-wrap
18518 msgid ""
18519 " char *\n"
18520 " guestfs_sh (guestfs_h *g,\n"
18521 "             const char *command);\n"
18522 "\n"
18523 msgstr ""
18524
18525 # type: textblock
18526 #. type: textblock
18527 #: ../src/guestfs-actions.pod:6302 ../fish/guestfish-actions.pod:4274
18528 msgid ""
18529 "This call runs a command from the guest filesystem via the guest's C</bin/"
18530 "sh>."
18531 msgstr ""
18532
18533 # type: textblock
18534 #. type: textblock
18535 #: ../src/guestfs-actions.pod:6305
18536 msgid "This is like C<guestfs_command>, but passes the command to:"
18537 msgstr ""
18538
18539 # type: verbatim
18540 #. type: verbatim
18541 #: ../src/guestfs-actions.pod:6307 ../fish/guestfish-actions.pod:4279
18542 #, no-wrap
18543 msgid ""
18544 " /bin/sh -c \"command\"\n"
18545 "\n"
18546 msgstr ""
18547
18548 # type: textblock
18549 #. type: textblock
18550 #: ../src/guestfs-actions.pod:6309 ../fish/guestfish-actions.pod:4281
18551 msgid ""
18552 "Depending on the guest's shell, this usually results in wildcards being "
18553 "expanded, shell expressions being interpolated and so on."
18554 msgstr ""
18555
18556 # type: textblock
18557 #. type: textblock
18558 #: ../src/guestfs-actions.pod:6313
18559 msgid "All the provisos about C<guestfs_command> apply to this call."
18560 msgstr ""
18561
18562 # type: =head2
18563 #. type: =head2
18564 #: ../src/guestfs-actions.pod:6320
18565 msgid "guestfs_sh_lines"
18566 msgstr ""
18567
18568 # type: verbatim
18569 #. type: verbatim
18570 #: ../src/guestfs-actions.pod:6322
18571 #, no-wrap
18572 msgid ""
18573 " char **\n"
18574 " guestfs_sh_lines (guestfs_h *g,\n"
18575 "                   const char *command);\n"
18576 "\n"
18577 msgstr ""
18578
18579 # type: textblock
18580 #. type: textblock
18581 #: ../src/guestfs-actions.pod:6326
18582 msgid ""
18583 "This is the same as C<guestfs_sh>, but splits the result into a list of "
18584 "lines."
18585 msgstr ""
18586
18587 # type: textblock
18588 #. type: textblock
18589 #: ../src/guestfs-actions.pod:6329
18590 msgid "See also: C<guestfs_command_lines>"
18591 msgstr ""
18592
18593 # type: =head2
18594 #. type: =head2
18595 #: ../src/guestfs-actions.pod:6337
18596 msgid "guestfs_sleep"
18597 msgstr ""
18598
18599 # type: verbatim
18600 #. type: verbatim
18601 #: ../src/guestfs-actions.pod:6339
18602 #, no-wrap
18603 msgid ""
18604 " int\n"
18605 " guestfs_sleep (guestfs_h *g,\n"
18606 "                int secs);\n"
18607 "\n"
18608 msgstr ""
18609
18610 # type: textblock
18611 #. type: textblock
18612 #: ../src/guestfs-actions.pod:6343 ../fish/guestfish-actions.pod:4300
18613 msgid "Sleep for C<secs> seconds."
18614 msgstr ""
18615
18616 # type: textblock
18617 #. type: textblock
18618 #: ../src/guestfs-actions.pod:6347
18619 msgid "(Added in 1.0.41)"
18620 msgstr ""
18621
18622 # type: =head2
18623 #. type: =head2
18624 #: ../src/guestfs-actions.pod:6349 ../src/guestfs-structs.pod:109
18625 msgid "guestfs_stat"
18626 msgstr ""
18627
18628 # type: verbatim
18629 #. type: verbatim
18630 #: ../src/guestfs-actions.pod:6351
18631 #, no-wrap
18632 msgid ""
18633 " struct guestfs_stat *\n"
18634 " guestfs_stat (guestfs_h *g,\n"
18635 "               const char *path);\n"
18636 "\n"
18637 msgstr ""
18638
18639 # type: textblock
18640 #. type: textblock
18641 #: ../src/guestfs-actions.pod:6357 ../fish/guestfish-actions.pod:4308
18642 msgid "This is the same as the C<stat(2)> system call."
18643 msgstr ""
18644
18645 # type: =head2
18646 #. type: =head2
18647 #: ../src/guestfs-actions.pod:6365 ../src/guestfs-structs.pod:135
18648 msgid "guestfs_statvfs"
18649 msgstr ""
18650
18651 # type: verbatim
18652 #. type: verbatim
18653 #: ../src/guestfs-actions.pod:6367
18654 #, no-wrap
18655 msgid ""
18656 " struct guestfs_statvfs *\n"
18657 " guestfs_statvfs (guestfs_h *g,\n"
18658 "                  const char *path);\n"
18659 "\n"
18660 msgstr ""
18661
18662 # type: textblock
18663 #. type: textblock
18664 #: ../src/guestfs-actions.pod:6371 ../fish/guestfish-actions.pod:4314
18665 msgid ""
18666 "Returns file system statistics for any mounted file system.  C<path> should "
18667 "be a file or directory in the mounted file system (typically it is the mount "
18668 "point itself, but it doesn't need to be)."
18669 msgstr ""
18670
18671 # type: textblock
18672 #. type: textblock
18673 #: ../src/guestfs-actions.pod:6375 ../fish/guestfish-actions.pod:4318
18674 msgid "This is the same as the C<statvfs(2)> system call."
18675 msgstr ""
18676
18677 # type: textblock
18678 #. type: textblock
18679 #: ../src/guestfs-actions.pod:6377
18680 msgid ""
18681 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
18682 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
18683 msgstr ""
18684
18685 # type: =head2
18686 #. type: =head2
18687 #: ../src/guestfs-actions.pod:6383
18688 msgid "guestfs_strings"
18689 msgstr ""
18690
18691 # type: verbatim
18692 #. type: verbatim
18693 #: ../src/guestfs-actions.pod:6385
18694 #, no-wrap
18695 msgid ""
18696 " char **\n"
18697 " guestfs_strings (guestfs_h *g,\n"
18698 "                  const char *path);\n"
18699 "\n"
18700 msgstr ""
18701
18702 # type: textblock
18703 #. type: textblock
18704 #: ../src/guestfs-actions.pod:6389 ../fish/guestfish-actions.pod:4324
18705 msgid ""
18706 "This runs the L<strings(1)> command on a file and returns the list of "
18707 "printable strings found."
18708 msgstr ""
18709
18710 # type: =head2
18711 #. type: =head2
18712 #: ../src/guestfs-actions.pod:6401
18713 msgid "guestfs_strings_e"
18714 msgstr ""
18715
18716 # type: verbatim
18717 #. type: verbatim
18718 #: ../src/guestfs-actions.pod:6403
18719 #, no-wrap
18720 msgid ""
18721 " char **\n"
18722 " guestfs_strings_e (guestfs_h *g,\n"
18723 "                    const char *encoding,\n"
18724 "                    const char *path);\n"
18725 "\n"
18726 msgstr ""
18727
18728 # type: textblock
18729 #. type: textblock
18730 #: ../src/guestfs-actions.pod:6408
18731 msgid ""
18732 "This is like the C<guestfs_strings> command, but allows you to specify the "
18733 "encoding of strings that are looked for in the source file C<path>."
18734 msgstr ""
18735
18736 # type: textblock
18737 #. type: textblock
18738 #: ../src/guestfs-actions.pod:6412 ../fish/guestfish-actions.pod:4338
18739 msgid "Allowed encodings are:"
18740 msgstr ""
18741
18742 # type: =item
18743 #. type: =item
18744 #: ../src/guestfs-actions.pod:6416 ../fish/guestfish-actions.pod:4342
18745 msgid "s"
18746 msgstr ""
18747
18748 # type: textblock
18749 #. type: textblock
18750 #: ../src/guestfs-actions.pod:6418
18751 msgid ""
18752 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
18753 "ISO-8859-X (this is what C<guestfs_strings> uses)."
18754 msgstr ""
18755
18756 # type: =item
18757 #. type: =item
18758 #: ../src/guestfs-actions.pod:6421 ../fish/guestfish-actions.pod:4347
18759 msgid "S"
18760 msgstr ""
18761
18762 # type: textblock
18763 #. type: textblock
18764 #: ../src/guestfs-actions.pod:6423 ../fish/guestfish-actions.pod:4349
18765 msgid "Single 8-bit-byte characters."
18766 msgstr ""
18767
18768 # type: =item
18769 #. type: =item
18770 #: ../src/guestfs-actions.pod:6425 ../fish/guestfish-actions.pod:4351
18771 msgid "b"
18772 msgstr ""
18773
18774 # type: textblock
18775 #. type: textblock
18776 #: ../src/guestfs-actions.pod:6427 ../fish/guestfish-actions.pod:4353
18777 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
18778 msgstr ""
18779
18780 # type: =item
18781 #. type: =item
18782 #: ../src/guestfs-actions.pod:6430 ../fish/guestfish-actions.pod:4356
18783 msgid "l (lower case letter L)"
18784 msgstr ""
18785
18786 # type: textblock
18787 #. type: textblock
18788 #: ../src/guestfs-actions.pod:6432 ../fish/guestfish-actions.pod:4358
18789 msgid ""
18790 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
18791 "examining binaries in Windows guests."
18792 msgstr ""
18793
18794 # type: =item
18795 #. type: =item
18796 #: ../src/guestfs-actions.pod:6435 ../fish/guestfish-actions.pod:4361
18797 msgid "B"
18798 msgstr ""
18799
18800 # type: textblock
18801 #. type: textblock
18802 #: ../src/guestfs-actions.pod:6437 ../fish/guestfish-actions.pod:4363
18803 msgid "32-bit big endian such as UCS-4BE."
18804 msgstr ""
18805
18806 # type: =item
18807 #. type: =item
18808 #: ../src/guestfs-actions.pod:6439 ../fish/guestfish-actions.pod:4365
18809 msgid "L"
18810 msgstr ""
18811
18812 # type: textblock
18813 #. type: textblock
18814 #: ../src/guestfs-actions.pod:6441 ../fish/guestfish-actions.pod:4367
18815 msgid "32-bit little endian such as UCS-4LE."
18816 msgstr ""
18817
18818 # type: textblock
18819 #. type: textblock
18820 #: ../src/guestfs-actions.pod:6445 ../fish/guestfish-actions.pod:4371
18821 msgid "The returned strings are transcoded to UTF-8."
18822 msgstr ""
18823
18824 # type: =head2
18825 #. type: =head2
18826 #: ../src/guestfs-actions.pod:6456
18827 msgid "guestfs_swapoff_device"
18828 msgstr ""
18829
18830 # type: verbatim
18831 #. type: verbatim
18832 #: ../src/guestfs-actions.pod:6458
18833 #, no-wrap
18834 msgid ""
18835 " int\n"
18836 " guestfs_swapoff_device (guestfs_h *g,\n"
18837 "                         const char *device);\n"
18838 "\n"
18839 msgstr ""
18840
18841 # type: textblock
18842 #. type: textblock
18843 #: ../src/guestfs-actions.pod:6462
18844 msgid ""
18845 "This command disables the libguestfs appliance swap device or partition "
18846 "named C<device>.  See C<guestfs_swapon_device>."
18847 msgstr ""
18848
18849 # type: =head2
18850 #. type: =head2
18851 #: ../src/guestfs-actions.pod:6470
18852 msgid "guestfs_swapoff_file"
18853 msgstr ""
18854
18855 # type: verbatim
18856 #. type: verbatim
18857 #: ../src/guestfs-actions.pod:6472
18858 #, no-wrap
18859 msgid ""
18860 " int\n"
18861 " guestfs_swapoff_file (guestfs_h *g,\n"
18862 "                       const char *file);\n"
18863 "\n"
18864 msgstr ""
18865
18866 # type: textblock
18867 #. type: textblock
18868 #: ../src/guestfs-actions.pod:6476 ../fish/guestfish-actions.pod:4388
18869 msgid "This command disables the libguestfs appliance swap on file."
18870 msgstr ""
18871
18872 # type: =head2
18873 #. type: =head2
18874 #: ../src/guestfs-actions.pod:6482
18875 msgid "guestfs_swapoff_label"
18876 msgstr ""
18877
18878 # type: verbatim
18879 #. type: verbatim
18880 #: ../src/guestfs-actions.pod:6484
18881 #, no-wrap
18882 msgid ""
18883 " int\n"
18884 " guestfs_swapoff_label (guestfs_h *g,\n"
18885 "                        const char *label);\n"
18886 "\n"
18887 msgstr ""
18888
18889 # type: textblock
18890 #. type: textblock
18891 #: ../src/guestfs-actions.pod:6488 ../fish/guestfish-actions.pod:4394
18892 msgid ""
18893 "This command disables the libguestfs appliance swap on labeled swap "
18894 "partition."
18895 msgstr ""
18896
18897 # type: =head2
18898 #. type: =head2
18899 #: ../src/guestfs-actions.pod:6495
18900 msgid "guestfs_swapoff_uuid"
18901 msgstr ""
18902
18903 # type: verbatim
18904 #. type: verbatim
18905 #: ../src/guestfs-actions.pod:6497
18906 #, no-wrap
18907 msgid ""
18908 " int\n"
18909 " guestfs_swapoff_uuid (guestfs_h *g,\n"
18910 "                       const char *uuid);\n"
18911 "\n"
18912 msgstr ""
18913
18914 # type: textblock
18915 #. type: textblock
18916 #: ../src/guestfs-actions.pod:6501 ../fish/guestfish-actions.pod:4401
18917 msgid ""
18918 "This command disables the libguestfs appliance swap partition with the given "
18919 "UUID."
18920 msgstr ""
18921
18922 # type: =head2
18923 #. type: =head2
18924 #: ../src/guestfs-actions.pod:6508
18925 msgid "guestfs_swapon_device"
18926 msgstr ""
18927
18928 # type: verbatim
18929 #. type: verbatim
18930 #: ../src/guestfs-actions.pod:6510
18931 #, no-wrap
18932 msgid ""
18933 " int\n"
18934 " guestfs_swapon_device (guestfs_h *g,\n"
18935 "                        const char *device);\n"
18936 "\n"
18937 msgstr ""
18938
18939 # type: textblock
18940 #. type: textblock
18941 #: ../src/guestfs-actions.pod:6514
18942 msgid ""
18943 "This command enables the libguestfs appliance to use the swap device or "
18944 "partition named C<device>.  The increased memory is made available for all "
18945 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
18946 msgstr ""
18947
18948 # type: textblock
18949 #. type: textblock
18950 #: ../src/guestfs-actions.pod:6519 ../fish/guestfish-actions.pod:4413
18951 msgid ""
18952 "Note that you should not swap to existing guest swap partitions unless you "
18953 "know what you are doing.  They may contain hibernation information, or other "
18954 "information that the guest doesn't want you to trash.  You also risk leaking "
18955 "information about the host to the guest this way.  Instead, attach a new "
18956 "host device to the guest and swap on that."
18957 msgstr ""
18958
18959 # type: =head2
18960 #. type: =head2
18961 #: ../src/guestfs-actions.pod:6530
18962 msgid "guestfs_swapon_file"
18963 msgstr ""
18964
18965 # type: verbatim
18966 #. type: verbatim
18967 #: ../src/guestfs-actions.pod:6532
18968 #, no-wrap
18969 msgid ""
18970 " int\n"
18971 " guestfs_swapon_file (guestfs_h *g,\n"
18972 "                      const char *file);\n"
18973 "\n"
18974 msgstr ""
18975
18976 # type: textblock
18977 #. type: textblock
18978 #: ../src/guestfs-actions.pod:6536
18979 msgid ""
18980 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
18981 "notes."
18982 msgstr ""
18983
18984 # type: =head2
18985 #. type: =head2
18986 #: ../src/guestfs-actions.pod:6543
18987 msgid "guestfs_swapon_label"
18988 msgstr ""
18989
18990 # type: verbatim
18991 #. type: verbatim
18992 #: ../src/guestfs-actions.pod:6545
18993 #, no-wrap
18994 msgid ""
18995 " int\n"
18996 " guestfs_swapon_label (guestfs_h *g,\n"
18997 "                       const char *label);\n"
18998 "\n"
18999 msgstr ""
19000
19001 # type: textblock
19002 #. type: textblock
19003 #: ../src/guestfs-actions.pod:6549
19004 msgid ""
19005 "This command enables swap to a labeled swap partition.  See "
19006 "C<guestfs_swapon_device> for other notes."
19007 msgstr ""
19008
19009 # type: =head2
19010 #. type: =head2
19011 #: ../src/guestfs-actions.pod:6556
19012 msgid "guestfs_swapon_uuid"
19013 msgstr ""
19014
19015 # type: verbatim
19016 #. type: verbatim
19017 #: ../src/guestfs-actions.pod:6558
19018 #, no-wrap
19019 msgid ""
19020 " int\n"
19021 " guestfs_swapon_uuid (guestfs_h *g,\n"
19022 "                      const char *uuid);\n"
19023 "\n"
19024 msgstr ""
19025
19026 # type: textblock
19027 #. type: textblock
19028 #: ../src/guestfs-actions.pod:6562
19029 msgid ""
19030 "This command enables swap to a swap partition with the given UUID.  See "
19031 "C<guestfs_swapon_device> for other notes."
19032 msgstr ""
19033
19034 # type: =head2
19035 #. type: =head2
19036 #: ../src/guestfs-actions.pod:6569
19037 msgid "guestfs_sync"
19038 msgstr ""
19039
19040 # type: verbatim
19041 #. type: verbatim
19042 #: ../src/guestfs-actions.pod:6571
19043 #, no-wrap
19044 msgid ""
19045 " int\n"
19046 " guestfs_sync (guestfs_h *g);\n"
19047 "\n"
19048 msgstr ""
19049
19050 # type: textblock
19051 #. type: textblock
19052 #: ../src/guestfs-actions.pod:6574 ../fish/guestfish-actions.pod:4445
19053 msgid ""
19054 "This syncs the disk, so that any writes are flushed through to the "
19055 "underlying disk image."
19056 msgstr ""
19057
19058 # type: textblock
19059 #. type: textblock
19060 #: ../src/guestfs-actions.pod:6577 ../fish/guestfish-actions.pod:4448
19061 msgid ""
19062 "You should always call this if you have modified a disk image, before "
19063 "closing the handle."
19064 msgstr ""
19065
19066 # type: =head2
19067 #. type: =head2
19068 #: ../src/guestfs-actions.pod:6584
19069 msgid "guestfs_tail"
19070 msgstr ""
19071
19072 # type: verbatim
19073 #. type: verbatim
19074 #: ../src/guestfs-actions.pod:6586
19075 #, no-wrap
19076 msgid ""
19077 " char **\n"
19078 " guestfs_tail (guestfs_h *g,\n"
19079 "               const char *path);\n"
19080 "\n"
19081 msgstr ""
19082
19083 # type: textblock
19084 #. type: textblock
19085 #: ../src/guestfs-actions.pod:6590 ../fish/guestfish-actions.pod:4455
19086 msgid ""
19087 "This command returns up to the last 10 lines of a file as a list of strings."
19088 msgstr ""
19089
19090 # type: =head2
19091 #. type: =head2
19092 #: ../src/guestfs-actions.pod:6602
19093 msgid "guestfs_tail_n"
19094 msgstr ""
19095
19096 # type: verbatim
19097 #. type: verbatim
19098 #: ../src/guestfs-actions.pod:6604
19099 #, no-wrap
19100 msgid ""
19101 " char **\n"
19102 " guestfs_tail_n (guestfs_h *g,\n"
19103 "                 int nrlines,\n"
19104 "                 const char *path);\n"
19105 "\n"
19106 msgstr ""
19107
19108 # type: textblock
19109 #. type: textblock
19110 #: ../src/guestfs-actions.pod:6609 ../fish/guestfish-actions.pod:4465
19111 msgid ""
19112 "If the parameter C<nrlines> is a positive number, this returns the last "
19113 "C<nrlines> lines of the file C<path>."
19114 msgstr ""
19115
19116 # type: textblock
19117 #. type: textblock
19118 #: ../src/guestfs-actions.pod:6612 ../fish/guestfish-actions.pod:4468
19119 msgid ""
19120 "If the parameter C<nrlines> is a negative number, this returns lines from "
19121 "the file C<path>, starting with the C<-nrlines>th line."
19122 msgstr ""
19123
19124 # type: =head2
19125 #. type: =head2
19126 #: ../src/guestfs-actions.pod:6626
19127 msgid "guestfs_tar_in"
19128 msgstr ""
19129
19130 # type: verbatim
19131 #. type: verbatim
19132 #: ../src/guestfs-actions.pod:6628
19133 #, no-wrap
19134 msgid ""
19135 " int\n"
19136 " guestfs_tar_in (guestfs_h *g,\n"
19137 "                 const char *tarfile,\n"
19138 "                 const char *directory);\n"
19139 "\n"
19140 msgstr ""
19141
19142 # type: textblock
19143 #. type: textblock
19144 #: ../src/guestfs-actions.pod:6633 ../fish/guestfish-actions.pod:4480
19145 msgid ""
19146 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
19147 "tar file) into C<directory>."
19148 msgstr ""
19149
19150 # type: textblock
19151 #. type: textblock
19152 #: ../src/guestfs-actions.pod:6636
19153 msgid ""
19154 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
19155 msgstr ""
19156
19157 # type: textblock
19158 #. type: textblock
19159 #: ../src/guestfs-actions.pod:6641 ../src/guestfs-actions.pod:6658
19160 #: ../src/guestfs-actions.pod:6674 ../src/guestfs-actions.pod:6690
19161 msgid "(Added in 1.0.3)"
19162 msgstr ""
19163
19164 # type: =head2
19165 #. type: =head2
19166 #: ../src/guestfs-actions.pod:6643
19167 msgid "guestfs_tar_out"
19168 msgstr ""
19169
19170 # type: verbatim
19171 #. type: verbatim
19172 #: ../src/guestfs-actions.pod:6645
19173 #, no-wrap
19174 msgid ""
19175 " int\n"
19176 " guestfs_tar_out (guestfs_h *g,\n"
19177 "                  const char *directory,\n"
19178 "                  const char *tarfile);\n"
19179 "\n"
19180 msgstr ""
19181
19182 # type: textblock
19183 #. type: textblock
19184 #: ../src/guestfs-actions.pod:6650 ../fish/guestfish-actions.pod:4492
19185 msgid ""
19186 "This command packs the contents of C<directory> and downloads it to local "
19187 "file C<tarfile>."
19188 msgstr ""
19189
19190 # type: textblock
19191 #. type: textblock
19192 #: ../src/guestfs-actions.pod:6653
19193 msgid ""
19194 "To download a compressed tarball, use C<guestfs_tgz_out> or "
19195 "C<guestfs_txz_out>."
19196 msgstr ""
19197
19198 # type: =head2
19199 #. type: =head2
19200 #: ../src/guestfs-actions.pod:6660
19201 msgid "guestfs_tgz_in"
19202 msgstr ""
19203
19204 # type: verbatim
19205 #. type: verbatim
19206 #: ../src/guestfs-actions.pod:6662
19207 #, no-wrap
19208 msgid ""
19209 " int\n"
19210 " guestfs_tgz_in (guestfs_h *g,\n"
19211 "                 const char *tarball,\n"
19212 "                 const char *directory);\n"
19213 "\n"
19214 msgstr ""
19215
19216 # type: textblock
19217 #. type: textblock
19218 #: ../src/guestfs-actions.pod:6667 ../fish/guestfish-actions.pod:4504
19219 msgid ""
19220 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
19221 "tar file) into C<directory>."
19222 msgstr ""
19223
19224 # type: textblock
19225 #. type: textblock
19226 #: ../src/guestfs-actions.pod:6670
19227 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
19228 msgstr ""
19229
19230 # type: =head2
19231 #. type: =head2
19232 #: ../src/guestfs-actions.pod:6676
19233 msgid "guestfs_tgz_out"
19234 msgstr ""
19235
19236 # type: verbatim
19237 #. type: verbatim
19238 #: ../src/guestfs-actions.pod:6678
19239 #, no-wrap
19240 msgid ""
19241 " int\n"
19242 " guestfs_tgz_out (guestfs_h *g,\n"
19243 "                  const char *directory,\n"
19244 "                  const char *tarball);\n"
19245 "\n"
19246 msgstr ""
19247
19248 # type: textblock
19249 #. type: textblock
19250 #: ../src/guestfs-actions.pod:6683 ../fish/guestfish-actions.pod:4515
19251 msgid ""
19252 "This command packs the contents of C<directory> and downloads it to local "
19253 "file C<tarball>."
19254 msgstr ""
19255
19256 # type: textblock
19257 #. type: textblock
19258 #: ../src/guestfs-actions.pod:6686
19259 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
19260 msgstr ""
19261
19262 # type: =head2
19263 #. type: =head2
19264 #: ../src/guestfs-actions.pod:6692
19265 msgid "guestfs_touch"
19266 msgstr ""
19267
19268 # type: verbatim
19269 #. type: verbatim
19270 #: ../src/guestfs-actions.pod:6694
19271 #, no-wrap
19272 msgid ""
19273 " int\n"
19274 " guestfs_touch (guestfs_h *g,\n"
19275 "                const char *path);\n"
19276 "\n"
19277 msgstr ""
19278
19279 # type: textblock
19280 #. type: textblock
19281 #: ../src/guestfs-actions.pod:6698 ../fish/guestfish-actions.pod:4526
19282 msgid ""
19283 "Touch acts like the L<touch(1)> command.  It can be used to update the "
19284 "timestamps on a file, or, if the file does not exist, to create a new zero-"
19285 "length file."
19286 msgstr ""
19287
19288 # type: textblock
19289 #. type: textblock
19290 #: ../src/guestfs-actions.pod:6702 ../fish/guestfish-actions.pod:4530
19291 msgid ""
19292 "This command only works on regular files, and will fail on other file types "
19293 "such as directories, symbolic links, block special etc."
19294 msgstr ""
19295
19296 # type: =head2
19297 #. type: =head2
19298 #: ../src/guestfs-actions.pod:6709
19299 msgid "guestfs_truncate"
19300 msgstr ""
19301
19302 # type: verbatim
19303 #. type: verbatim
19304 #: ../src/guestfs-actions.pod:6711
19305 #, no-wrap
19306 msgid ""
19307 " int\n"
19308 " guestfs_truncate (guestfs_h *g,\n"
19309 "                   const char *path);\n"
19310 "\n"
19311 msgstr ""
19312
19313 # type: textblock
19314 #. type: textblock
19315 #: ../src/guestfs-actions.pod:6715 ../fish/guestfish-actions.pod:4537
19316 msgid ""
19317 "This command truncates C<path> to a zero-length file.  The file must exist "
19318 "already."
19319 msgstr ""
19320
19321 # type: =head2
19322 #. type: =head2
19323 #: ../src/guestfs-actions.pod:6722
19324 msgid "guestfs_truncate_size"
19325 msgstr ""
19326
19327 # type: verbatim
19328 #. type: verbatim
19329 #: ../src/guestfs-actions.pod:6724
19330 #, no-wrap
19331 msgid ""
19332 " int\n"
19333 " guestfs_truncate_size (guestfs_h *g,\n"
19334 "                        const char *path,\n"
19335 "                        int64_t size);\n"
19336 "\n"
19337 msgstr ""
19338
19339 # type: textblock
19340 #. type: textblock
19341 #: ../src/guestfs-actions.pod:6729 ../fish/guestfish-actions.pod:4544
19342 msgid ""
19343 "This command truncates C<path> to size C<size> bytes.  The file must exist "
19344 "already."
19345 msgstr ""
19346
19347 # type: textblock
19348 #. type: textblock
19349 #: ../src/guestfs-actions.pod:6732
19350 msgid ""
19351 "If the current file size is less than C<size> then the file is extended to "
19352 "the required size with zero bytes.  This creates a sparse file (ie. disk "
19353 "blocks are not allocated for the file until you write to it).  To create a "
19354 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
19355 msgstr ""
19356
19357 # type: =head2
19358 #. type: =head2
19359 #: ../src/guestfs-actions.pod:6742
19360 msgid "guestfs_tune2fs_l"
19361 msgstr ""
19362
19363 # type: verbatim
19364 #. type: verbatim
19365 #: ../src/guestfs-actions.pod:6744
19366 #, no-wrap
19367 msgid ""
19368 " char **\n"
19369 " guestfs_tune2fs_l (guestfs_h *g,\n"
19370 "                    const char *device);\n"
19371 "\n"
19372 msgstr ""
19373
19374 # type: textblock
19375 #. type: textblock
19376 #: ../src/guestfs-actions.pod:6748 ../fish/guestfish-actions.pod:4557
19377 msgid ""
19378 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
19379 "C<device>."
19380 msgstr ""
19381
19382 # type: textblock
19383 #. type: textblock
19384 #: ../src/guestfs-actions.pod:6751 ../fish/guestfish-actions.pod:4560
19385 msgid ""
19386 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
19387 "for more details.  The list of fields returned isn't clearly defined, and "
19388 "depends on both the version of C<tune2fs> that libguestfs was built against, "
19389 "and the filesystem itself."
19390 msgstr ""
19391
19392 # type: =head2
19393 #. type: =head2
19394 #: ../src/guestfs-actions.pod:6764
19395 msgid "guestfs_txz_in"
19396 msgstr ""
19397
19398 # type: verbatim
19399 #. type: verbatim
19400 #: ../src/guestfs-actions.pod:6766
19401 #, no-wrap
19402 msgid ""
19403 " int\n"
19404 " guestfs_txz_in (guestfs_h *g,\n"
19405 "                 const char *tarball,\n"
19406 "                 const char *directory);\n"
19407 "\n"
19408 msgstr ""
19409
19410 # type: textblock
19411 #. type: textblock
19412 #: ../src/guestfs-actions.pod:6771 ../fish/guestfish-actions.pod:4569
19413 msgid ""
19414 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
19415 "tar file) into C<directory>."
19416 msgstr ""
19417
19418 # type: =head2
19419 #. type: =head2
19420 #: ../src/guestfs-actions.pod:6778
19421 msgid "guestfs_txz_out"
19422 msgstr ""
19423
19424 # type: verbatim
19425 #. type: verbatim
19426 #: ../src/guestfs-actions.pod:6780
19427 #, no-wrap
19428 msgid ""
19429 " int\n"
19430 " guestfs_txz_out (guestfs_h *g,\n"
19431 "                  const char *directory,\n"
19432 "                  const char *tarball);\n"
19433 "\n"
19434 msgstr ""
19435
19436 # type: textblock
19437 #. type: textblock
19438 #: ../src/guestfs-actions.pod:6785 ../fish/guestfish-actions.pod:4578
19439 msgid ""
19440 "This command packs the contents of C<directory> and downloads it to local "
19441 "file C<tarball> (as an xz compressed tar archive)."
19442 msgstr ""
19443
19444 # type: =head2
19445 #. type: =head2
19446 #: ../src/guestfs-actions.pod:6792
19447 msgid "guestfs_umask"
19448 msgstr ""
19449
19450 # type: verbatim
19451 #. type: verbatim
19452 #: ../src/guestfs-actions.pod:6794
19453 #, no-wrap
19454 msgid ""
19455 " int\n"
19456 " guestfs_umask (guestfs_h *g,\n"
19457 "                int mask);\n"
19458 "\n"
19459 msgstr ""
19460
19461 # type: textblock
19462 #. type: textblock
19463 #: ../src/guestfs-actions.pod:6798 ../fish/guestfish-actions.pod:4587
19464 msgid ""
19465 "This function sets the mask used for creating new files and device nodes to "
19466 "C<mask & 0777>."
19467 msgstr ""
19468
19469 # type: textblock
19470 #. type: textblock
19471 #: ../src/guestfs-actions.pod:6801 ../fish/guestfish-actions.pod:4590
19472 msgid ""
19473 "Typical umask values would be C<022> which creates new files with "
19474 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
19475 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
19476 msgstr ""
19477
19478 # type: textblock
19479 #. type: textblock
19480 #: ../src/guestfs-actions.pod:6806 ../fish/guestfish-actions.pod:4595
19481 msgid ""
19482 "The default umask is C<022>.  This is important because it means that "
19483 "directories and device nodes will be created with C<0644> or C<0755> mode "
19484 "even if you specify C<0777>."
19485 msgstr ""
19486
19487 # type: textblock
19488 #. type: textblock
19489 #: ../src/guestfs-actions.pod:6810
19490 msgid ""
19491 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
19492 "C<guestfs_mkdir>."
19493 msgstr ""
19494
19495 # type: textblock
19496 #. type: textblock
19497 #: ../src/guestfs-actions.pod:6813 ../fish/guestfish-actions.pod:4602
19498 msgid "This call returns the previous umask."
19499 msgstr ""
19500
19501 # type: =head2
19502 #. type: =head2
19503 #: ../src/guestfs-actions.pod:6819
19504 msgid "guestfs_umount"
19505 msgstr ""
19506
19507 # type: verbatim
19508 #. type: verbatim
19509 #: ../src/guestfs-actions.pod:6821
19510 #, no-wrap
19511 msgid ""
19512 " int\n"
19513 " guestfs_umount (guestfs_h *g,\n"
19514 "                 const char *pathordevice);\n"
19515 "\n"
19516 msgstr ""
19517
19518 # type: textblock
19519 #. type: textblock
19520 #: ../src/guestfs-actions.pod:6825 ../fish/guestfish-actions.pod:4610
19521 msgid ""
19522 "This unmounts the given filesystem.  The filesystem may be specified either "
19523 "by its mountpoint (path) or the device which contains the filesystem."
19524 msgstr ""
19525
19526 # type: =head2
19527 #. type: =head2
19528 #: ../src/guestfs-actions.pod:6833
19529 msgid "guestfs_umount_all"
19530 msgstr ""
19531
19532 # type: verbatim
19533 #. type: verbatim
19534 #: ../src/guestfs-actions.pod:6835
19535 #, no-wrap
19536 msgid ""
19537 " int\n"
19538 " guestfs_umount_all (guestfs_h *g);\n"
19539 "\n"
19540 msgstr ""
19541
19542 # type: textblock
19543 #. type: textblock
19544 #: ../src/guestfs-actions.pod:6838 ../fish/guestfish-actions.pod:4620
19545 msgid "This unmounts all mounted filesystems."
19546 msgstr ""
19547
19548 # type: textblock
19549 #. type: textblock
19550 #: ../src/guestfs-actions.pod:6840 ../fish/guestfish-actions.pod:4622
19551 msgid "Some internal mounts are not unmounted by this call."
19552 msgstr ""
19553
19554 # type: =head2
19555 #. type: =head2
19556 #: ../src/guestfs-actions.pod:6846
19557 msgid "guestfs_upload"
19558 msgstr ""
19559
19560 # type: verbatim
19561 #. type: verbatim
19562 #: ../src/guestfs-actions.pod:6848
19563 #, no-wrap
19564 msgid ""
19565 " int\n"
19566 " guestfs_upload (guestfs_h *g,\n"
19567 "                 const char *filename,\n"
19568 "                 const char *remotefilename);\n"
19569 "\n"
19570 msgstr ""
19571
19572 # type: textblock
19573 #. type: textblock
19574 #: ../src/guestfs-actions.pod:6853 ../src/guestfs-actions.pod:6877
19575 #: ../fish/guestfish-actions.pod:4628 ../fish/guestfish-actions.pod:4641
19576 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
19577 msgstr ""
19578
19579 # type: textblock
19580 #. type: textblock
19581 #: ../src/guestfs-actions.pod:6858
19582 msgid "See also C<guestfs_download>."
19583 msgstr ""
19584
19585 # type: =head2
19586 #. type: =head2
19587 #: ../src/guestfs-actions.pod:6869
19588 msgid "guestfs_upload_offset"
19589 msgstr ""
19590
19591 # type: verbatim
19592 #. type: verbatim
19593 #: ../src/guestfs-actions.pod:6871
19594 #, no-wrap
19595 msgid ""
19596 " int\n"
19597 " guestfs_upload_offset (guestfs_h *g,\n"
19598 "                        const char *filename,\n"
19599 "                        const char *remotefilename,\n"
19600 "                        int64_t offset);\n"
19601 "\n"
19602 msgstr ""
19603
19604 # type: textblock
19605 #. type: textblock
19606 #: ../src/guestfs-actions.pod:6880 ../fish/guestfish-actions.pod:4644
19607 msgid ""
19608 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
19609 "The intention is to overwrite parts of existing files or devices, although "
19610 "if a non-existant file is specified then it is created with a \"hole\" "
19611 "before C<offset>.  The size of the data written is implicit in the size of "
19612 "the source C<filename>."
19613 msgstr ""
19614
19615 # type: textblock
19616 #. type: textblock
19617 #: ../src/guestfs-actions.pod:6887
19618 msgid ""
19619 "Note that there is no limit on the amount of data that can be uploaded with "
19620 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
19621 "full amount unless an error occurs."
19622 msgstr ""
19623
19624 # type: textblock
19625 #. type: textblock
19626 #: ../src/guestfs-actions.pod:6892
19627 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
19628 msgstr ""
19629
19630 # type: =head2
19631 #. type: =head2
19632 #: ../src/guestfs-actions.pod:6903
19633 msgid "guestfs_utimens"
19634 msgstr ""
19635
19636 # type: verbatim
19637 #. type: verbatim
19638 #: ../src/guestfs-actions.pod:6905
19639 #, no-wrap
19640 msgid ""
19641 " int\n"
19642 " guestfs_utimens (guestfs_h *g,\n"
19643 "                  const char *path,\n"
19644 "                  int64_t atsecs,\n"
19645 "                  int64_t atnsecs,\n"
19646 "                  int64_t mtsecs,\n"
19647 "                  int64_t mtnsecs);\n"
19648 "\n"
19649 msgstr ""
19650
19651 # type: textblock
19652 #. type: textblock
19653 #: ../src/guestfs-actions.pod:6913 ../fish/guestfish-actions.pod:4664
19654 msgid "This command sets the timestamps of a file with nanosecond precision."
19655 msgstr ""
19656
19657 # type: textblock
19658 #. type: textblock
19659 #: ../src/guestfs-actions.pod:6916 ../fish/guestfish-actions.pod:4667
19660 msgid ""
19661 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
19662 "from the epoch."
19663 msgstr ""
19664
19665 # type: textblock
19666 #. type: textblock
19667 #: ../src/guestfs-actions.pod:6919 ../fish/guestfish-actions.pod:4670
19668 msgid ""
19669 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
19670 "nanoseconds from the epoch."
19671 msgstr ""
19672
19673 # type: textblock
19674 #. type: textblock
19675 #: ../src/guestfs-actions.pod:6922 ../fish/guestfish-actions.pod:4673
19676 msgid ""
19677 "If the C<*nsecs> field contains the special value C<-1> then the "
19678 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
19679 "ignored in this case)."
19680 msgstr ""
19681
19682 # type: textblock
19683 #. type: textblock
19684 #: ../src/guestfs-actions.pod:6926 ../fish/guestfish-actions.pod:4677
19685 msgid ""
19686 "If the C<*nsecs> field contains the special value C<-2> then the "
19687 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
19688 "in this case)."
19689 msgstr ""
19690
19691 # type: =head2
19692 #. type: =head2
19693 #: ../src/guestfs-actions.pod:6934 ../src/guestfs-structs.pod:175
19694 msgid "guestfs_version"
19695 msgstr ""
19696
19697 # type: verbatim
19698 #. type: verbatim
19699 #: ../src/guestfs-actions.pod:6936
19700 #, no-wrap
19701 msgid ""
19702 " struct guestfs_version *\n"
19703 " guestfs_version (guestfs_h *g);\n"
19704 "\n"
19705 msgstr ""
19706
19707 # type: textblock
19708 #. type: textblock
19709 #: ../src/guestfs-actions.pod:6939 ../fish/guestfish-actions.pod:4685
19710 msgid ""
19711 "Return the libguestfs version number that the program is linked against."
19712 msgstr ""
19713
19714 # type: textblock
19715 #. type: textblock
19716 #: ../src/guestfs-actions.pod:6942 ../fish/guestfish-actions.pod:4688
19717 msgid ""
19718 "Note that because of dynamic linking this is not necessarily the version of "
19719 "libguestfs that you compiled against.  You can compile the program, and then "
19720 "at runtime dynamically link against a completely different C<libguestfs.so> "
19721 "library."
19722 msgstr ""
19723
19724 # type: textblock
19725 #. type: textblock
19726 #: ../src/guestfs-actions.pod:6947 ../fish/guestfish-actions.pod:4693
19727 msgid ""
19728 "This call was added in version C<1.0.58>.  In previous versions of "
19729 "libguestfs there was no way to get the version number.  From C code you can "
19730 "use dynamic linker functions to find out if this symbol exists (if it "
19731 "doesn't, then it's an earlier version)."
19732 msgstr ""
19733
19734 # type: textblock
19735 #. type: textblock
19736 #: ../src/guestfs-actions.pod:6953 ../fish/guestfish-actions.pod:4699
19737 msgid ""
19738 "The call returns a structure with four elements.  The first three (C<major>, "
19739 "C<minor> and C<release>) are numbers and correspond to the usual version "
19740 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
19741 "but may be used for distro-specific information."
19742 msgstr ""
19743
19744 # type: textblock
19745 #. type: textblock
19746 #: ../src/guestfs-actions.pod:6959 ../fish/guestfish-actions.pod:4705
19747 msgid ""
19748 "To construct the original version string: C<$major.$minor.$release$extra>"
19749 msgstr ""
19750
19751 # type: textblock
19752 #. type: textblock
19753 #: ../src/guestfs-actions.pod:6962 ../fish/guestfish-actions.pod:4708
19754 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
19755 msgstr ""
19756
19757 # type: textblock
19758 #. type: textblock
19759 #: ../src/guestfs-actions.pod:6964
19760 msgid ""
19761 "I<Note:> Don't use this call to test for availability of features.  In "
19762 "enterprise distributions we backport features from later versions into "
19763 "earlier versions, making this an unreliable way to test for features.  Use "
19764 "C<guestfs_available> instead."
19765 msgstr ""
19766
19767 # type: textblock
19768 #. type: textblock
19769 #: ../src/guestfs-actions.pod:6970
19770 msgid ""
19771 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
19772 "error.  I<The caller must call C<guestfs_free_version> after use>."
19773 msgstr ""
19774
19775 # type: textblock
19776 #. type: textblock
19777 #: ../src/guestfs-actions.pod:6974
19778 msgid "(Added in 1.0.58)"
19779 msgstr ""
19780
19781 # type: =head2
19782 #. type: =head2
19783 #: ../src/guestfs-actions.pod:6976
19784 msgid "guestfs_vfs_label"
19785 msgstr ""
19786
19787 # type: verbatim
19788 #. type: verbatim
19789 #: ../src/guestfs-actions.pod:6978
19790 #, no-wrap
19791 msgid ""
19792 " char *\n"
19793 " guestfs_vfs_label (guestfs_h *g,\n"
19794 "                    const char *device);\n"
19795 "\n"
19796 msgstr ""
19797
19798 # type: textblock
19799 #. type: textblock
19800 #: ../src/guestfs-actions.pod:6982 ../fish/guestfish-actions.pod:4720
19801 msgid "This returns the filesystem label of the filesystem on C<device>."
19802 msgstr ""
19803
19804 # type: textblock
19805 #. type: textblock
19806 #: ../src/guestfs-actions.pod:6985 ../fish/guestfish-actions.pod:4723
19807 msgid "If the filesystem is unlabeled, this returns the empty string."
19808 msgstr ""
19809
19810 # type: textblock
19811 #. type: textblock
19812 #: ../src/guestfs-actions.pod:6987
19813 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
19814 msgstr ""
19815
19816 # type: textblock
19817 #. type: textblock
19818 #: ../src/guestfs-actions.pod:6992 ../src/guestfs-actions.pod:7029
19819 msgid "(Added in 1.3.18)"
19820 msgstr ""
19821
19822 # type: =head2
19823 #. type: =head2
19824 #: ../src/guestfs-actions.pod:6994
19825 msgid "guestfs_vfs_type"
19826 msgstr ""
19827
19828 # type: verbatim
19829 #. type: verbatim
19830 #: ../src/guestfs-actions.pod:6996
19831 #, no-wrap
19832 msgid ""
19833 " char *\n"
19834 " guestfs_vfs_type (guestfs_h *g,\n"
19835 "                   const char *device);\n"
19836 "\n"
19837 msgstr ""
19838
19839 # type: textblock
19840 #. type: textblock
19841 #: ../src/guestfs-actions.pod:7000 ../fish/guestfish-actions.pod:4731
19842 msgid ""
19843 "This command gets the filesystem type corresponding to the filesystem on "
19844 "C<device>."
19845 msgstr ""
19846
19847 # type: textblock
19848 #. type: textblock
19849 #: ../src/guestfs-actions.pod:7003 ../fish/guestfish-actions.pod:4734
19850 msgid ""
19851 "For most filesystems, the result is the name of the Linux VFS module which "
19852 "would be used to mount this filesystem if you mounted it without specifying "
19853 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
19854 msgstr ""
19855
19856 # type: =head2
19857 #. type: =head2
19858 #: ../src/guestfs-actions.pod:7013
19859 msgid "guestfs_vfs_uuid"
19860 msgstr ""
19861
19862 # type: verbatim
19863 #. type: verbatim
19864 #: ../src/guestfs-actions.pod:7015
19865 #, no-wrap
19866 msgid ""
19867 " char *\n"
19868 " guestfs_vfs_uuid (guestfs_h *g,\n"
19869 "                   const char *device);\n"
19870 "\n"
19871 msgstr ""
19872
19873 # type: textblock
19874 #. type: textblock
19875 #: ../src/guestfs-actions.pod:7019 ../fish/guestfish-actions.pod:4743
19876 msgid "This returns the filesystem UUID of the filesystem on C<device>."
19877 msgstr ""
19878
19879 # type: textblock
19880 #. type: textblock
19881 #: ../src/guestfs-actions.pod:7022 ../fish/guestfish-actions.pod:4746
19882 msgid "If the filesystem does not have a UUID, this returns the empty string."
19883 msgstr ""
19884
19885 # type: textblock
19886 #. type: textblock
19887 #: ../src/guestfs-actions.pod:7024
19888 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
19889 msgstr ""
19890
19891 # type: =head2
19892 #. type: =head2
19893 #: ../src/guestfs-actions.pod:7031
19894 msgid "guestfs_vg_activate"
19895 msgstr ""
19896
19897 # type: verbatim
19898 #. type: verbatim
19899 #: ../src/guestfs-actions.pod:7033
19900 #, no-wrap
19901 msgid ""
19902 " int\n"
19903 " guestfs_vg_activate (guestfs_h *g,\n"
19904 "                      int activate,\n"
19905 "                      char *const *volgroups);\n"
19906 "\n"
19907 msgstr ""
19908
19909 # type: textblock
19910 #. type: textblock
19911 #: ../src/guestfs-actions.pod:7038 ../fish/guestfish-actions.pod:4754
19912 msgid ""
19913 "This command activates or (if C<activate> is false) deactivates all logical "
19914 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
19915 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
19916 "deactivated, then those devices disappear."
19917 msgstr ""
19918
19919 # type: textblock
19920 #. type: textblock
19921 #: ../src/guestfs-actions.pod:7044 ../fish/guestfish-actions.pod:4760
19922 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
19923 msgstr ""
19924
19925 # type: textblock
19926 #. type: textblock
19927 #: ../src/guestfs-actions.pod:7046 ../fish/guestfish-actions.pod:4762
19928 msgid ""
19929 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
19930 "activated or deactivated."
19931 msgstr ""
19932
19933 # type: =head2
19934 #. type: =head2
19935 #: ../src/guestfs-actions.pod:7053
19936 msgid "guestfs_vg_activate_all"
19937 msgstr ""
19938
19939 # type: verbatim
19940 #. type: verbatim
19941 #: ../src/guestfs-actions.pod:7055
19942 #, no-wrap
19943 msgid ""
19944 " int\n"
19945 " guestfs_vg_activate_all (guestfs_h *g,\n"
19946 "                          int activate);\n"
19947 "\n"
19948 msgstr ""
19949
19950 # type: textblock
19951 #. type: textblock
19952 #: ../src/guestfs-actions.pod:7059 ../fish/guestfish-actions.pod:4769
19953 msgid ""
19954 "This command activates or (if C<activate> is false) deactivates all logical "
19955 "volumes in all volume groups.  If activated, then they are made known to the "
19956 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
19957 "those devices disappear."
19958 msgstr ""
19959
19960 # type: textblock
19961 #. type: textblock
19962 #: ../src/guestfs-actions.pod:7065 ../fish/guestfish-actions.pod:4775
19963 msgid "This command is the same as running C<vgchange -a y|n>"
19964 msgstr ""
19965
19966 # type: =head2
19967 #. type: =head2
19968 #: ../src/guestfs-actions.pod:7071
19969 msgid "guestfs_vgcreate"
19970 msgstr ""
19971
19972 # type: verbatim
19973 #. type: verbatim
19974 #: ../src/guestfs-actions.pod:7073
19975 #, no-wrap
19976 msgid ""
19977 " int\n"
19978 " guestfs_vgcreate (guestfs_h *g,\n"
19979 "                   const char *volgroup,\n"
19980 "                   char *const *physvols);\n"
19981 "\n"
19982 msgstr ""
19983
19984 # type: textblock
19985 #. type: textblock
19986 #: ../src/guestfs-actions.pod:7078 ../fish/guestfish-actions.pod:4781
19987 msgid ""
19988 "This creates an LVM volume group called C<volgroup> from the non-empty list "
19989 "of physical volumes C<physvols>."
19990 msgstr ""
19991
19992 # type: =head2
19993 #. type: =head2
19994 #: ../src/guestfs-actions.pod:7085
19995 msgid "guestfs_vglvuuids"
19996 msgstr ""
19997
19998 # type: verbatim
19999 #. type: verbatim
20000 #: ../src/guestfs-actions.pod:7087
20001 #, no-wrap
20002 msgid ""
20003 " char **\n"
20004 " guestfs_vglvuuids (guestfs_h *g,\n"
20005 "                    const char *vgname);\n"
20006 "\n"
20007 msgstr ""
20008
20009 # type: textblock
20010 #. type: textblock
20011 #: ../src/guestfs-actions.pod:7091 ../fish/guestfish-actions.pod:4788
20012 msgid ""
20013 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
20014 "volumes created in this volume group."
20015 msgstr ""
20016
20017 # type: textblock
20018 #. type: textblock
20019 #: ../src/guestfs-actions.pod:7094
20020 msgid ""
20021 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
20022 "associate logical volumes and volume groups."
20023 msgstr ""
20024
20025 # type: textblock
20026 #. type: textblock
20027 #: ../src/guestfs-actions.pod:7097
20028 msgid "See also C<guestfs_vgpvuuids>."
20029 msgstr ""
20030
20031 # type: =head2
20032 #. type: =head2
20033 #: ../src/guestfs-actions.pod:7105
20034 msgid "guestfs_vgpvuuids"
20035 msgstr ""
20036
20037 # type: verbatim
20038 #. type: verbatim
20039 #: ../src/guestfs-actions.pod:7107
20040 #, no-wrap
20041 msgid ""
20042 " char **\n"
20043 " guestfs_vgpvuuids (guestfs_h *g,\n"
20044 "                    const char *vgname);\n"
20045 "\n"
20046 msgstr ""
20047
20048 # type: textblock
20049 #. type: textblock
20050 #: ../src/guestfs-actions.pod:7111 ../fish/guestfish-actions.pod:4800
20051 msgid ""
20052 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
20053 "volumes that this volume group resides on."
20054 msgstr ""
20055
20056 # type: textblock
20057 #. type: textblock
20058 #: ../src/guestfs-actions.pod:7114
20059 msgid ""
20060 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
20061 "associate physical volumes and volume groups."
20062 msgstr ""
20063
20064 # type: textblock
20065 #. type: textblock
20066 #: ../src/guestfs-actions.pod:7117
20067 msgid "See also C<guestfs_vglvuuids>."
20068 msgstr ""
20069
20070 # type: =head2
20071 #. type: =head2
20072 #: ../src/guestfs-actions.pod:7125
20073 msgid "guestfs_vgremove"
20074 msgstr ""
20075
20076 # type: verbatim
20077 #. type: verbatim
20078 #: ../src/guestfs-actions.pod:7127
20079 #, no-wrap
20080 msgid ""
20081 " int\n"
20082 " guestfs_vgremove (guestfs_h *g,\n"
20083 "                   const char *vgname);\n"
20084 "\n"
20085 msgstr ""
20086
20087 # type: textblock
20088 #. type: textblock
20089 #: ../src/guestfs-actions.pod:7131 ../fish/guestfish-actions.pod:4812
20090 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
20091 msgstr ""
20092
20093 # type: textblock
20094 #. type: textblock
20095 #: ../src/guestfs-actions.pod:7133 ../fish/guestfish-actions.pod:4814
20096 msgid ""
20097 "This also forcibly removes all logical volumes in the volume group (if any)."
20098 msgstr ""
20099
20100 # type: =head2
20101 #. type: =head2
20102 #: ../src/guestfs-actions.pod:7140
20103 msgid "guestfs_vgrename"
20104 msgstr ""
20105
20106 # type: verbatim
20107 #. type: verbatim
20108 #: ../src/guestfs-actions.pod:7142
20109 #, no-wrap
20110 msgid ""
20111 " int\n"
20112 " guestfs_vgrename (guestfs_h *g,\n"
20113 "                   const char *volgroup,\n"
20114 "                   const char *newvolgroup);\n"
20115 "\n"
20116 msgstr ""
20117
20118 # type: textblock
20119 #. type: textblock
20120 #: ../src/guestfs-actions.pod:7147 ../fish/guestfish-actions.pod:4821
20121 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
20122 msgstr ""
20123
20124 # type: =head2
20125 #. type: =head2
20126 #: ../src/guestfs-actions.pod:7153
20127 msgid "guestfs_vgs"
20128 msgstr ""
20129
20130 # type: verbatim
20131 #. type: verbatim
20132 #: ../src/guestfs-actions.pod:7155
20133 #, no-wrap
20134 msgid ""
20135 " char **\n"
20136 " guestfs_vgs (guestfs_h *g);\n"
20137 "\n"
20138 msgstr ""
20139
20140 # type: textblock
20141 #. type: textblock
20142 #: ../src/guestfs-actions.pod:7158 ../fish/guestfish-actions.pod:4827
20143 msgid ""
20144 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
20145 "> command."
20146 msgstr ""
20147
20148 # type: textblock
20149 #. type: textblock
20150 #: ../src/guestfs-actions.pod:7161 ../fish/guestfish-actions.pod:4830
20151 msgid ""
20152 "This returns a list of just the volume group names that were detected (eg. "
20153 "C<VolGroup00>)."
20154 msgstr ""
20155
20156 # type: textblock
20157 #. type: textblock
20158 #: ../src/guestfs-actions.pod:7164
20159 msgid "See also C<guestfs_vgs_full>."
20160 msgstr ""
20161
20162 # type: =head2
20163 #. type: =head2
20164 #: ../src/guestfs-actions.pod:7172
20165 msgid "guestfs_vgs_full"
20166 msgstr ""
20167
20168 # type: verbatim
20169 #. type: verbatim
20170 #: ../src/guestfs-actions.pod:7174
20171 #, no-wrap
20172 msgid ""
20173 " struct guestfs_lvm_vg_list *\n"
20174 " guestfs_vgs_full (guestfs_h *g);\n"
20175 "\n"
20176 msgstr ""
20177
20178 # type: textblock
20179 #. type: textblock
20180 #: ../src/guestfs-actions.pod:7177 ../fish/guestfish-actions.pod:4839
20181 msgid ""
20182 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
20183 "> command.  The \"full\" version includes all fields."
20184 msgstr ""
20185
20186 # type: textblock
20187 #. type: textblock
20188 #: ../src/guestfs-actions.pod:7180
20189 msgid ""
20190 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
20191 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
20192 msgstr ""
20193
20194 # type: =head2
20195 #. type: =head2
20196 #: ../src/guestfs-actions.pod:7186
20197 msgid "guestfs_vgscan"
20198 msgstr ""
20199
20200 # type: verbatim
20201 #. type: verbatim
20202 #: ../src/guestfs-actions.pod:7188
20203 #, no-wrap
20204 msgid ""
20205 " int\n"
20206 " guestfs_vgscan (guestfs_h *g);\n"
20207 "\n"
20208 msgstr ""
20209
20210 # type: textblock
20211 #. type: textblock
20212 #: ../src/guestfs-actions.pod:7191 ../fish/guestfish-actions.pod:4846
20213 msgid ""
20214 "This rescans all block devices and rebuilds the list of LVM physical "
20215 "volumes, volume groups and logical volumes."
20216 msgstr ""
20217
20218 # type: =head2
20219 #. type: =head2
20220 #: ../src/guestfs-actions.pod:7198
20221 msgid "guestfs_vguuid"
20222 msgstr ""
20223
20224 # type: verbatim
20225 #. type: verbatim
20226 #: ../src/guestfs-actions.pod:7200
20227 #, no-wrap
20228 msgid ""
20229 " char *\n"
20230 " guestfs_vguuid (guestfs_h *g,\n"
20231 "                 const char *vgname);\n"
20232 "\n"
20233 msgstr ""
20234
20235 # type: textblock
20236 #. type: textblock
20237 #: ../src/guestfs-actions.pod:7204 ../fish/guestfish-actions.pod:4853
20238 msgid "This command returns the UUID of the LVM VG named C<vgname>."
20239 msgstr ""
20240
20241 # type: =head2
20242 #. type: =head2
20243 #: ../src/guestfs-actions.pod:7211
20244 msgid "guestfs_wait_ready"
20245 msgstr ""
20246
20247 # type: verbatim
20248 #. type: verbatim
20249 #: ../src/guestfs-actions.pod:7213
20250 #, no-wrap
20251 msgid ""
20252 " int\n"
20253 " guestfs_wait_ready (guestfs_h *g);\n"
20254 "\n"
20255 msgstr ""
20256
20257 # type: textblock
20258 #. type: textblock
20259 #: ../src/guestfs-actions.pod:7216
20260 msgid "This function is a no op."
20261 msgstr ""
20262
20263 # type: textblock
20264 #. type: textblock
20265 #: ../src/guestfs-actions.pod:7218
20266 msgid ""
20267 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
20268 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
20269 "is no longer necessary because C<guestfs_launch> now does the waiting."
20270 msgstr ""
20271
20272 # type: textblock
20273 #. type: textblock
20274 #: ../src/guestfs-actions.pod:7223
20275 msgid ""
20276 "If you see any calls to this function in code then you can just remove them, "
20277 "unless you want to retain compatibility with older versions of the API."
20278 msgstr ""
20279
20280 #. type: textblock
20281 #: ../src/guestfs-actions.pod:7229
20282 msgid ""
20283 "This function is deprecated.  In new code, use the L</guestfs_launch> call "
20284 "instead."
20285 msgstr ""
20286
20287 # type: =head2
20288 #. type: =head2
20289 #: ../src/guestfs-actions.pod:7238
20290 msgid "guestfs_wc_c"
20291 msgstr ""
20292
20293 # type: verbatim
20294 #. type: verbatim
20295 #: ../src/guestfs-actions.pod:7240
20296 #, no-wrap
20297 msgid ""
20298 " int\n"
20299 " guestfs_wc_c (guestfs_h *g,\n"
20300 "               const char *path);\n"
20301 "\n"
20302 msgstr ""
20303
20304 # type: textblock
20305 #. type: textblock
20306 #: ../src/guestfs-actions.pod:7244 ../fish/guestfish-actions.pod:4859
20307 msgid ""
20308 "This command counts the characters in a file, using the C<wc -c> external "
20309 "command."
20310 msgstr ""
20311
20312 # type: =head2
20313 #. type: =head2
20314 #: ../src/guestfs-actions.pod:7251
20315 msgid "guestfs_wc_l"
20316 msgstr ""
20317
20318 # type: verbatim
20319 #. type: verbatim
20320 #: ../src/guestfs-actions.pod:7253
20321 #, no-wrap
20322 msgid ""
20323 " int\n"
20324 " guestfs_wc_l (guestfs_h *g,\n"
20325 "               const char *path);\n"
20326 "\n"
20327 msgstr ""
20328
20329 # type: textblock
20330 #. type: textblock
20331 #: ../src/guestfs-actions.pod:7257 ../fish/guestfish-actions.pod:4866
20332 msgid ""
20333 "This command counts the lines in a file, using the C<wc -l> external command."
20334 msgstr ""
20335
20336 # type: =head2
20337 #. type: =head2
20338 #: ../src/guestfs-actions.pod:7264
20339 msgid "guestfs_wc_w"
20340 msgstr ""
20341
20342 # type: verbatim
20343 #. type: verbatim
20344 #: ../src/guestfs-actions.pod:7266
20345 #, no-wrap
20346 msgid ""
20347 " int\n"
20348 " guestfs_wc_w (guestfs_h *g,\n"
20349 "               const char *path);\n"
20350 "\n"
20351 msgstr ""
20352
20353 # type: textblock
20354 #. type: textblock
20355 #: ../src/guestfs-actions.pod:7270 ../fish/guestfish-actions.pod:4873
20356 msgid ""
20357 "This command counts the words in a file, using the C<wc -w> external command."
20358 msgstr ""
20359
20360 # type: =head2
20361 #. type: =head2
20362 #: ../src/guestfs-actions.pod:7277
20363 msgid "guestfs_write"
20364 msgstr ""
20365
20366 # type: verbatim
20367 #. type: verbatim
20368 #: ../src/guestfs-actions.pod:7279
20369 #, no-wrap
20370 msgid ""
20371 " int\n"
20372 " guestfs_write (guestfs_h *g,\n"
20373 "                const char *path,\n"
20374 "                const char *content,\n"
20375 "                size_t content_size);\n"
20376 "\n"
20377 msgstr ""
20378
20379 # type: textblock
20380 #. type: textblock
20381 #: ../src/guestfs-actions.pod:7285 ../fish/guestfish-actions.pod:4880
20382 msgid ""
20383 "This call creates a file called C<path>.  The content of the file is the "
20384 "string C<content> (which can contain any 8 bit data)."
20385 msgstr ""
20386
20387 # type: =head2
20388 #. type: =head2
20389 #: ../src/guestfs-actions.pod:7295
20390 msgid "guestfs_write_file"
20391 msgstr ""
20392
20393 # type: verbatim
20394 #. type: verbatim
20395 #: ../src/guestfs-actions.pod:7297
20396 #, no-wrap
20397 msgid ""
20398 " int\n"
20399 " guestfs_write_file (guestfs_h *g,\n"
20400 "                     const char *path,\n"
20401 "                     const char *content,\n"
20402 "                     int size);\n"
20403 "\n"
20404 msgstr ""
20405
20406 # type: textblock
20407 #. type: textblock
20408 #: ../src/guestfs-actions.pod:7303 ../fish/guestfish-actions.pod:4890
20409 msgid ""
20410 "This call creates a file called C<path>.  The contents of the file is the "
20411 "string C<content> (which can contain any 8 bit data), with length C<size>."
20412 msgstr ""
20413
20414 # type: textblock
20415 #. type: textblock
20416 #: ../src/guestfs-actions.pod:7307 ../fish/guestfish-actions.pod:4894
20417 msgid ""
20418 "As a special case, if C<size> is C<0> then the length is calculated using "
20419 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
20420 msgstr ""
20421
20422 # type: textblock
20423 #. type: textblock
20424 #: ../src/guestfs-actions.pod:7311 ../fish/guestfish-actions.pod:4898
20425 msgid ""
20426 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
20427 "I<not> work, even if the length is specified."
20428 msgstr ""
20429
20430 #. type: textblock
20431 #: ../src/guestfs-actions.pod:7319
20432 msgid ""
20433 "This function is deprecated.  In new code, use the L</guestfs_write> call "
20434 "instead."
20435 msgstr ""
20436
20437 # type: =head2
20438 #. type: =head2
20439 #: ../src/guestfs-actions.pod:7328
20440 msgid "guestfs_zegrep"
20441 msgstr ""
20442
20443 # type: verbatim
20444 #. type: verbatim
20445 #: ../src/guestfs-actions.pod:7330
20446 #, no-wrap
20447 msgid ""
20448 " char **\n"
20449 " guestfs_zegrep (guestfs_h *g,\n"
20450 "                 const char *regex,\n"
20451 "                 const char *path);\n"
20452 "\n"
20453 msgstr ""
20454
20455 # type: textblock
20456 #. type: textblock
20457 #: ../src/guestfs-actions.pod:7335 ../fish/guestfish-actions.pod:4915
20458 msgid ""
20459 "This calls the external C<zegrep> program and returns the matching lines."
20460 msgstr ""
20461
20462 # type: =head2
20463 #. type: =head2
20464 #: ../src/guestfs-actions.pod:7347
20465 msgid "guestfs_zegrepi"
20466 msgstr ""
20467
20468 # type: verbatim
20469 #. type: verbatim
20470 #: ../src/guestfs-actions.pod:7349
20471 #, no-wrap
20472 msgid ""
20473 " char **\n"
20474 " guestfs_zegrepi (guestfs_h *g,\n"
20475 "                  const char *regex,\n"
20476 "                  const char *path);\n"
20477 "\n"
20478 msgstr ""
20479
20480 # type: textblock
20481 #. type: textblock
20482 #: ../src/guestfs-actions.pod:7354 ../fish/guestfish-actions.pod:4925
20483 msgid ""
20484 "This calls the external C<zegrep -i> program and returns the matching lines."
20485 msgstr ""
20486
20487 # type: =head2
20488 #. type: =head2
20489 #: ../src/guestfs-actions.pod:7366
20490 msgid "guestfs_zero"
20491 msgstr ""
20492
20493 # type: verbatim
20494 #. type: verbatim
20495 #: ../src/guestfs-actions.pod:7368
20496 #, no-wrap
20497 msgid ""
20498 " int\n"
20499 " guestfs_zero (guestfs_h *g,\n"
20500 "               const char *device);\n"
20501 "\n"
20502 msgstr ""
20503
20504 # type: textblock
20505 #. type: textblock
20506 #: ../src/guestfs-actions.pod:7372 ../fish/guestfish-actions.pod:4935
20507 msgid "This command writes zeroes over the first few blocks of C<device>."
20508 msgstr ""
20509
20510 # type: textblock
20511 #. type: textblock
20512 #: ../src/guestfs-actions.pod:7374 ../fish/guestfish-actions.pod:4937
20513 msgid ""
20514 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
20515 "securely wipe the device).  It should be sufficient to remove any partition "
20516 "tables, filesystem superblocks and so on."
20517 msgstr ""
20518
20519 # type: textblock
20520 #. type: textblock
20521 #: ../src/guestfs-actions.pod:7378
20522 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
20523 msgstr ""
20524
20525 # type: =head2
20526 #. type: =head2
20527 #: ../src/guestfs-actions.pod:7389
20528 msgid "guestfs_zero_device"
20529 msgstr ""
20530
20531 # type: verbatim
20532 #. type: verbatim
20533 #: ../src/guestfs-actions.pod:7391
20534 #, no-wrap
20535 msgid ""
20536 " int\n"
20537 " guestfs_zero_device (guestfs_h *g,\n"
20538 "                      const char *device);\n"
20539 "\n"
20540 msgstr ""
20541
20542 # type: textblock
20543 #. type: textblock
20544 #: ../src/guestfs-actions.pod:7395
20545 msgid ""
20546 "This command writes zeroes over the entire C<device>.  Compare with "
20547 "C<guestfs_zero> which just zeroes the first few blocks of a device."
20548 msgstr ""
20549
20550 # type: textblock
20551 #. type: textblock
20552 #: ../src/guestfs-actions.pod:7409
20553 msgid "(Added in 1.3.1)"
20554 msgstr ""
20555
20556 # type: =head2
20557 #. type: =head2
20558 #: ../src/guestfs-actions.pod:7411
20559 msgid "guestfs_zerofree"
20560 msgstr ""
20561
20562 # type: verbatim
20563 #. type: verbatim
20564 #: ../src/guestfs-actions.pod:7413
20565 #, no-wrap
20566 msgid ""
20567 " int\n"
20568 " guestfs_zerofree (guestfs_h *g,\n"
20569 "                   const char *device);\n"
20570 "\n"
20571 msgstr ""
20572
20573 # type: textblock
20574 #. type: textblock
20575 #: ../src/guestfs-actions.pod:7417 ../fish/guestfish-actions.pod:4958
20576 msgid ""
20577 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
20578 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
20579 "possible to compress the filesystem more effectively."
20580 msgstr ""
20581
20582 # type: textblock
20583 #. type: textblock
20584 #: ../src/guestfs-actions.pod:7422 ../fish/guestfish-actions.pod:4963
20585 msgid "You should B<not> run this program if the filesystem is mounted."
20586 msgstr ""
20587
20588 # type: textblock
20589 #. type: textblock
20590 #: ../src/guestfs-actions.pod:7425 ../fish/guestfish-actions.pod:4966
20591 msgid ""
20592 "It is possible that using this program can damage the filesystem or data on "
20593 "the filesystem."
20594 msgstr ""
20595
20596 # type: =head2
20597 #. type: =head2
20598 #: ../src/guestfs-actions.pod:7432
20599 msgid "guestfs_zfgrep"
20600 msgstr ""
20601
20602 # type: verbatim
20603 #. type: verbatim
20604 #: ../src/guestfs-actions.pod:7434
20605 #, no-wrap
20606 msgid ""
20607 " char **\n"
20608 " guestfs_zfgrep (guestfs_h *g,\n"
20609 "                 const char *pattern,\n"
20610 "                 const char *path);\n"
20611 "\n"
20612 msgstr ""
20613
20614 # type: textblock
20615 #. type: textblock
20616 #: ../src/guestfs-actions.pod:7439 ../fish/guestfish-actions.pod:4973
20617 msgid ""
20618 "This calls the external C<zfgrep> program and returns the matching lines."
20619 msgstr ""
20620
20621 # type: =head2
20622 #. type: =head2
20623 #: ../src/guestfs-actions.pod:7451
20624 msgid "guestfs_zfgrepi"
20625 msgstr ""
20626
20627 # type: verbatim
20628 #. type: verbatim
20629 #: ../src/guestfs-actions.pod:7453
20630 #, no-wrap
20631 msgid ""
20632 " char **\n"
20633 " guestfs_zfgrepi (guestfs_h *g,\n"
20634 "                  const char *pattern,\n"
20635 "                  const char *path);\n"
20636 "\n"
20637 msgstr ""
20638
20639 # type: textblock
20640 #. type: textblock
20641 #: ../src/guestfs-actions.pod:7458 ../fish/guestfish-actions.pod:4983
20642 msgid ""
20643 "This calls the external C<zfgrep -i> program and returns the matching lines."
20644 msgstr ""
20645
20646 # type: =head2
20647 #. type: =head2
20648 #: ../src/guestfs-actions.pod:7470
20649 msgid "guestfs_zfile"
20650 msgstr ""
20651
20652 # type: verbatim
20653 #. type: verbatim
20654 #: ../src/guestfs-actions.pod:7472
20655 #, no-wrap
20656 msgid ""
20657 " char *\n"
20658 " guestfs_zfile (guestfs_h *g,\n"
20659 "                const char *meth,\n"
20660 "                const char *path);\n"
20661 "\n"
20662 msgstr ""
20663
20664 # type: textblock
20665 #. type: textblock
20666 #: ../src/guestfs-actions.pod:7477 ../fish/guestfish-actions.pod:4993
20667 msgid ""
20668 "This command runs C<file> after first decompressing C<path> using C<method>."
20669 msgstr ""
20670
20671 # type: textblock
20672 #. type: textblock
20673 #: ../src/guestfs-actions.pod:7480 ../fish/guestfish-actions.pod:4996
20674 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
20675 msgstr ""
20676
20677 # type: textblock
20678 #. type: textblock
20679 #: ../src/guestfs-actions.pod:7482
20680 msgid ""
20681 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
20682 "files."
20683 msgstr ""
20684
20685 #. type: textblock
20686 #: ../src/guestfs-actions.pod:7488
20687 msgid ""
20688 "This function is deprecated.  In new code, use the L</guestfs_file> call "
20689 "instead."
20690 msgstr ""
20691
20692 # type: =head2
20693 #. type: =head2
20694 #: ../src/guestfs-actions.pod:7497
20695 msgid "guestfs_zgrep"
20696 msgstr ""
20697
20698 # type: verbatim
20699 #. type: verbatim
20700 #: ../src/guestfs-actions.pod:7499
20701 #, no-wrap
20702 msgid ""
20703 " char **\n"
20704 " guestfs_zgrep (guestfs_h *g,\n"
20705 "                const char *regex,\n"
20706 "                const char *path);\n"
20707 "\n"
20708 msgstr ""
20709
20710 # type: textblock
20711 #. type: textblock
20712 #: ../src/guestfs-actions.pod:7504 ../fish/guestfish-actions.pod:5012
20713 msgid ""
20714 "This calls the external C<zgrep> program and returns the matching lines."
20715 msgstr ""
20716
20717 # type: =head2
20718 #. type: =head2
20719 #: ../src/guestfs-actions.pod:7516
20720 msgid "guestfs_zgrepi"
20721 msgstr ""
20722
20723 # type: verbatim
20724 #. type: verbatim
20725 #: ../src/guestfs-actions.pod:7518
20726 #, no-wrap
20727 msgid ""
20728 " char **\n"
20729 " guestfs_zgrepi (guestfs_h *g,\n"
20730 "                 const char *regex,\n"
20731 "                 const char *path);\n"
20732 "\n"
20733 msgstr ""
20734
20735 # type: textblock
20736 #. type: textblock
20737 #: ../src/guestfs-actions.pod:7523 ../fish/guestfish-actions.pod:5022
20738 msgid ""
20739 "This calls the external C<zgrep -i> program and returns the matching lines."
20740 msgstr ""
20741
20742 # type: =item
20743 #. type: =item
20744 #: ../src/guestfs-availability.pod:3
20745 msgid "B<augeas>"
20746 msgstr ""
20747
20748 # type: textblock
20749 #. type: textblock
20750 #: ../src/guestfs-availability.pod:5
20751 msgid ""
20752 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> L</"
20753 "guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> L</"
20754 "guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> L</"
20755 "guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> L</guestfs_aug_rm> "
20756 "L</guestfs_aug_save> L</guestfs_aug_set>"
20757 msgstr ""
20758
20759 # type: =item
20760 #. type: =item
20761 #: ../src/guestfs-availability.pod:21
20762 msgid "B<inotify>"
20763 msgstr ""
20764
20765 # type: textblock
20766 #. type: textblock
20767 #: ../src/guestfs-availability.pod:23
20768 msgid ""
20769 "The following functions: L</guestfs_inotify_add_watch> L</"
20770 "guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> L</"
20771 "guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
20772 msgstr ""
20773
20774 # type: =item
20775 #. type: =item
20776 #: ../src/guestfs-availability.pod:31
20777 msgid "B<linuxfsuuid>"
20778 msgstr ""
20779
20780 # type: textblock
20781 #. type: textblock
20782 #: ../src/guestfs-availability.pod:33
20783 msgid ""
20784 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> L</"
20785 "guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
20786 msgstr ""
20787
20788 # type: =item
20789 #. type: =item
20790 #: ../src/guestfs-availability.pod:40
20791 msgid "B<linuxmodules>"
20792 msgstr ""
20793
20794 # type: textblock
20795 #. type: textblock
20796 #: ../src/guestfs-availability.pod:42
20797 msgid "The following functions: L</guestfs_modprobe>"
20798 msgstr ""
20799
20800 # type: =item
20801 #. type: =item
20802 #: ../src/guestfs-availability.pod:45
20803 msgid "B<linuxxattrs>"
20804 msgstr ""
20805
20806 # type: textblock
20807 #. type: textblock
20808 #: ../src/guestfs-availability.pod:47
20809 msgid ""
20810 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> L</"
20811 "guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> L</"
20812 "guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> L</"
20813 "guestfs_setxattr>"
20814 msgstr ""
20815
20816 # type: =item
20817 #. type: =item
20818 #: ../src/guestfs-availability.pod:58
20819 msgid "B<luks>"
20820 msgstr ""
20821
20822 # type: textblock
20823 #. type: textblock
20824 #: ../src/guestfs-availability.pod:60
20825 msgid ""
20826 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> L</"
20827 "guestfs_luks_format> L</guestfs_luks_format_cipher> L</"
20828 "guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
20829 msgstr ""
20830
20831 # type: =item
20832 #. type: =item
20833 #: ../src/guestfs-availability.pod:69
20834 msgid "B<lvm2>"
20835 msgstr ""
20836
20837 # type: textblock
20838 #. type: textblock
20839 #: ../src/guestfs-availability.pod:71
20840 msgid ""
20841 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> L</"
20842 "guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> L</"
20843 "guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> L</"
20844 "guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> L</"
20845 "guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> L</"
20846 "guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> L</"
20847 "guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> L</guestfs_vgs_full>"
20848 msgstr ""
20849
20850 # type: =item
20851 #. type: =item
20852 #: ../src/guestfs-availability.pod:94
20853 msgid "B<mknod>"
20854 msgstr ""
20855
20856 # type: textblock
20857 #. type: textblock
20858 #: ../src/guestfs-availability.pod:96
20859 msgid ""
20860 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> L</"
20861 "guestfs_mknod_b> L</guestfs_mknod_c>"
20862 msgstr ""
20863
20864 # type: =item
20865 #. type: =item
20866 #: ../src/guestfs-availability.pod:102
20867 msgid "B<ntfs3g>"
20868 msgstr ""
20869
20870 # type: textblock
20871 #. type: textblock
20872 #: ../src/guestfs-availability.pod:104
20873 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
20874 msgstr ""
20875
20876 # type: =item
20877 #. type: =item
20878 #: ../src/guestfs-availability.pod:107
20879 msgid "B<ntfsprogs>"
20880 msgstr ""
20881
20882 # type: textblock
20883 #. type: textblock
20884 #: ../src/guestfs-availability.pod:109
20885 msgid ""
20886 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
20887 msgstr ""
20888
20889 # type: =item
20890 #. type: =item
20891 #: ../src/guestfs-availability.pod:113
20892 msgid "B<realpath>"
20893 msgstr ""
20894
20895 # type: textblock
20896 #. type: textblock
20897 #: ../src/guestfs-availability.pod:115
20898 msgid "The following functions: L</guestfs_realpath>"
20899 msgstr ""
20900
20901 # type: =item
20902 #. type: =item
20903 #: ../src/guestfs-availability.pod:118
20904 msgid "B<scrub>"
20905 msgstr ""
20906
20907 # type: textblock
20908 #. type: textblock
20909 #: ../src/guestfs-availability.pod:120
20910 msgid ""
20911 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> L</"
20912 "guestfs_scrub_freespace>"
20913 msgstr ""
20914
20915 # type: =item
20916 #. type: =item
20917 #: ../src/guestfs-availability.pod:125
20918 msgid "B<selinux>"
20919 msgstr ""
20920
20921 # type: textblock
20922 #. type: textblock
20923 #: ../src/guestfs-availability.pod:127
20924 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
20925 msgstr ""
20926
20927 # type: =item
20928 #. type: =item
20929 #: ../src/guestfs-availability.pod:131
20930 msgid "B<xz>"
20931 msgstr ""
20932
20933 # type: textblock
20934 #. type: textblock
20935 #: ../src/guestfs-availability.pod:133
20936 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
20937 msgstr ""
20938
20939 # type: =item
20940 #. type: =item
20941 #: ../src/guestfs-availability.pod:137
20942 msgid "B<zerofree>"
20943 msgstr ""
20944
20945 # type: textblock
20946 #. type: textblock
20947 #: ../src/guestfs-availability.pod:139
20948 msgid "The following functions: L</guestfs_zerofree>"
20949 msgstr ""
20950
20951 # type: =head2
20952 #. type: =head2
20953 #: ../src/guestfs-structs.pod:1
20954 msgid "guestfs_int_bool"
20955 msgstr ""
20956
20957 # type: verbatim
20958 #. type: verbatim
20959 #: ../src/guestfs-structs.pod:3
20960 #, no-wrap
20961 msgid ""
20962 " struct guestfs_int_bool {\n"
20963 "   int32_t i;\n"
20964 "   int32_t b;\n"
20965 " };\n"
20966 " \n"
20967 msgstr ""
20968
20969 # type: verbatim
20970 #. type: verbatim
20971 #: ../src/guestfs-structs.pod:8
20972 #, no-wrap
20973 msgid ""
20974 " struct guestfs_int_bool_list {\n"
20975 "   uint32_t len; /* Number of elements in list. */\n"
20976 "   struct guestfs_int_bool *val; /* Elements. */\n"
20977 " };\n"
20978 " \n"
20979 msgstr ""
20980
20981 # type: verbatim
20982 #. type: verbatim
20983 #: ../src/guestfs-structs.pod:13
20984 #, no-wrap
20985 msgid ""
20986 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
20987 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
20988 "\n"
20989 msgstr ""
20990
20991 # type: =head2
20992 #. type: =head2
20993 #: ../src/guestfs-structs.pod:16
20994 msgid "guestfs_lvm_pv"
20995 msgstr ""
20996
20997 # type: verbatim
20998 #. type: verbatim
20999 #: ../src/guestfs-structs.pod:18
21000 #, no-wrap
21001 msgid ""
21002 " struct guestfs_lvm_pv {\n"
21003 "   char *pv_name;\n"
21004 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
21005 "   char pv_uuid[32];\n"
21006 "   char *pv_fmt;\n"
21007 "   uint64_t pv_size;\n"
21008 "   uint64_t dev_size;\n"
21009 "   uint64_t pv_free;\n"
21010 "   uint64_t pv_used;\n"
21011 "   char *pv_attr;\n"
21012 "   int64_t pv_pe_count;\n"
21013 "   int64_t pv_pe_alloc_count;\n"
21014 "   char *pv_tags;\n"
21015 "   uint64_t pe_start;\n"
21016 "   int64_t pv_mda_count;\n"
21017 "   uint64_t pv_mda_free;\n"
21018 " };\n"
21019 " \n"
21020 msgstr ""
21021
21022 # type: verbatim
21023 #. type: verbatim
21024 #: ../src/guestfs-structs.pod:36
21025 #, no-wrap
21026 msgid ""
21027 " struct guestfs_lvm_pv_list {\n"
21028 "   uint32_t len; /* Number of elements in list. */\n"
21029 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
21030 " };\n"
21031 " \n"
21032 msgstr ""
21033
21034 # type: verbatim
21035 #. type: verbatim
21036 #: ../src/guestfs-structs.pod:41
21037 #, no-wrap
21038 msgid ""
21039 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
21040 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
21041 "\n"
21042 msgstr ""
21043
21044 # type: =head2
21045 #. type: =head2
21046 #: ../src/guestfs-structs.pod:44
21047 msgid "guestfs_lvm_vg"
21048 msgstr ""
21049
21050 # type: verbatim
21051 #. type: verbatim
21052 #: ../src/guestfs-structs.pod:46
21053 #, no-wrap
21054 msgid ""
21055 " struct guestfs_lvm_vg {\n"
21056 "   char *vg_name;\n"
21057 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
21058 "   char vg_uuid[32];\n"
21059 "   char *vg_fmt;\n"
21060 "   char *vg_attr;\n"
21061 "   uint64_t vg_size;\n"
21062 "   uint64_t vg_free;\n"
21063 "   char *vg_sysid;\n"
21064 "   uint64_t vg_extent_size;\n"
21065 "   int64_t vg_extent_count;\n"
21066 "   int64_t vg_free_count;\n"
21067 "   int64_t max_lv;\n"
21068 "   int64_t max_pv;\n"
21069 "   int64_t pv_count;\n"
21070 "   int64_t lv_count;\n"
21071 "   int64_t snap_count;\n"
21072 "   int64_t vg_seqno;\n"
21073 "   char *vg_tags;\n"
21074 "   int64_t vg_mda_count;\n"
21075 "   uint64_t vg_mda_free;\n"
21076 " };\n"
21077 " \n"
21078 msgstr ""
21079
21080 # type: verbatim
21081 #. type: verbatim
21082 #: ../src/guestfs-structs.pod:69
21083 #, no-wrap
21084 msgid ""
21085 " struct guestfs_lvm_vg_list {\n"
21086 "   uint32_t len; /* Number of elements in list. */\n"
21087 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
21088 " };\n"
21089 " \n"
21090 msgstr ""
21091
21092 # type: verbatim
21093 #. type: verbatim
21094 #: ../src/guestfs-structs.pod:74
21095 #, no-wrap
21096 msgid ""
21097 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
21098 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
21099 "\n"
21100 msgstr ""
21101
21102 # type: =head2
21103 #. type: =head2
21104 #: ../src/guestfs-structs.pod:77
21105 msgid "guestfs_lvm_lv"
21106 msgstr ""
21107
21108 # type: verbatim
21109 #. type: verbatim
21110 #: ../src/guestfs-structs.pod:79
21111 #, no-wrap
21112 msgid ""
21113 " struct guestfs_lvm_lv {\n"
21114 "   char *lv_name;\n"
21115 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
21116 "   char lv_uuid[32];\n"
21117 "   char *lv_attr;\n"
21118 "   int64_t lv_major;\n"
21119 "   int64_t lv_minor;\n"
21120 "   int64_t lv_kernel_major;\n"
21121 "   int64_t lv_kernel_minor;\n"
21122 "   uint64_t lv_size;\n"
21123 "   int64_t seg_count;\n"
21124 "   char *origin;\n"
21125 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
21126 "   float snap_percent;\n"
21127 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
21128 "   float copy_percent;\n"
21129 "   char *move_pv;\n"
21130 "   char *lv_tags;\n"
21131 "   char *mirror_log;\n"
21132 "   char *modules;\n"
21133 " };\n"
21134 " \n"
21135 msgstr ""
21136
21137 # type: verbatim
21138 #. type: verbatim
21139 #: ../src/guestfs-structs.pod:101
21140 #, no-wrap
21141 msgid ""
21142 " struct guestfs_lvm_lv_list {\n"
21143 "   uint32_t len; /* Number of elements in list. */\n"
21144 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
21145 " };\n"
21146 " \n"
21147 msgstr ""
21148
21149 # type: verbatim
21150 #. type: verbatim
21151 #: ../src/guestfs-structs.pod:106
21152 #, no-wrap
21153 msgid ""
21154 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
21155 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
21156 "\n"
21157 msgstr ""
21158
21159 # type: verbatim
21160 #. type: verbatim
21161 #: ../src/guestfs-structs.pod:111
21162 #, no-wrap
21163 msgid ""
21164 " struct guestfs_stat {\n"
21165 "   int64_t dev;\n"
21166 "   int64_t ino;\n"
21167 "   int64_t mode;\n"
21168 "   int64_t nlink;\n"
21169 "   int64_t uid;\n"
21170 "   int64_t gid;\n"
21171 "   int64_t rdev;\n"
21172 "   int64_t size;\n"
21173 "   int64_t blksize;\n"
21174 "   int64_t blocks;\n"
21175 "   int64_t atime;\n"
21176 "   int64_t mtime;\n"
21177 "   int64_t ctime;\n"
21178 " };\n"
21179 " \n"
21180 msgstr ""
21181
21182 # type: verbatim
21183 #. type: verbatim
21184 #: ../src/guestfs-structs.pod:127
21185 #, no-wrap
21186 msgid ""
21187 " struct guestfs_stat_list {\n"
21188 "   uint32_t len; /* Number of elements in list. */\n"
21189 "   struct guestfs_stat *val; /* Elements. */\n"
21190 " };\n"
21191 " \n"
21192 msgstr ""
21193
21194 # type: verbatim
21195 #. type: verbatim
21196 #: ../src/guestfs-structs.pod:132
21197 #, no-wrap
21198 msgid ""
21199 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
21200 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
21201 "\n"
21202 msgstr ""
21203
21204 # type: verbatim
21205 #. type: verbatim
21206 #: ../src/guestfs-structs.pod:137
21207 #, no-wrap
21208 msgid ""
21209 " struct guestfs_statvfs {\n"
21210 "   int64_t bsize;\n"
21211 "   int64_t frsize;\n"
21212 "   int64_t blocks;\n"
21213 "   int64_t bfree;\n"
21214 "   int64_t bavail;\n"
21215 "   int64_t files;\n"
21216 "   int64_t ffree;\n"
21217 "   int64_t favail;\n"
21218 "   int64_t fsid;\n"
21219 "   int64_t flag;\n"
21220 "   int64_t namemax;\n"
21221 " };\n"
21222 " \n"
21223 msgstr ""
21224
21225 # type: verbatim
21226 #. type: verbatim
21227 #: ../src/guestfs-structs.pod:151
21228 #, no-wrap
21229 msgid ""
21230 " struct guestfs_statvfs_list {\n"
21231 "   uint32_t len; /* Number of elements in list. */\n"
21232 "   struct guestfs_statvfs *val; /* Elements. */\n"
21233 " };\n"
21234 " \n"
21235 msgstr ""
21236
21237 # type: verbatim
21238 #. type: verbatim
21239 #: ../src/guestfs-structs.pod:156
21240 #, no-wrap
21241 msgid ""
21242 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
21243 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
21244 "\n"
21245 msgstr ""
21246
21247 # type: =head2
21248 #. type: =head2
21249 #: ../src/guestfs-structs.pod:159
21250 msgid "guestfs_dirent"
21251 msgstr ""
21252
21253 # type: verbatim
21254 #. type: verbatim
21255 #: ../src/guestfs-structs.pod:161
21256 #, no-wrap
21257 msgid ""
21258 " struct guestfs_dirent {\n"
21259 "   int64_t ino;\n"
21260 "   char ftyp;\n"
21261 "   char *name;\n"
21262 " };\n"
21263 " \n"
21264 msgstr ""
21265
21266 # type: verbatim
21267 #. type: verbatim
21268 #: ../src/guestfs-structs.pod:167
21269 #, no-wrap
21270 msgid ""
21271 " struct guestfs_dirent_list {\n"
21272 "   uint32_t len; /* Number of elements in list. */\n"
21273 "   struct guestfs_dirent *val; /* Elements. */\n"
21274 " };\n"
21275 " \n"
21276 msgstr ""
21277
21278 # type: verbatim
21279 #. type: verbatim
21280 #: ../src/guestfs-structs.pod:172
21281 #, no-wrap
21282 msgid ""
21283 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
21284 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
21285 "\n"
21286 msgstr ""
21287
21288 # type: verbatim
21289 #. type: verbatim
21290 #: ../src/guestfs-structs.pod:177
21291 #, no-wrap
21292 msgid ""
21293 " struct guestfs_version {\n"
21294 "   int64_t major;\n"
21295 "   int64_t minor;\n"
21296 "   int64_t release;\n"
21297 "   char *extra;\n"
21298 " };\n"
21299 " \n"
21300 msgstr ""
21301
21302 # type: verbatim
21303 #. type: verbatim
21304 #: ../src/guestfs-structs.pod:184
21305 #, no-wrap
21306 msgid ""
21307 " struct guestfs_version_list {\n"
21308 "   uint32_t len; /* Number of elements in list. */\n"
21309 "   struct guestfs_version *val; /* Elements. */\n"
21310 " };\n"
21311 " \n"
21312 msgstr ""
21313
21314 # type: verbatim
21315 #. type: verbatim
21316 #: ../src/guestfs-structs.pod:189
21317 #, no-wrap
21318 msgid ""
21319 " void guestfs_free_version (struct guestfs_free_version *);\n"
21320 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
21321 "\n"
21322 msgstr ""
21323
21324 # type: =head2
21325 #. type: =head2
21326 #: ../src/guestfs-structs.pod:192
21327 msgid "guestfs_xattr"
21328 msgstr ""
21329
21330 # type: verbatim
21331 #. type: verbatim
21332 #: ../src/guestfs-structs.pod:194
21333 #, no-wrap
21334 msgid ""
21335 " struct guestfs_xattr {\n"
21336 "   char *attrname;\n"
21337 "   /* The next two fields describe a byte array. */\n"
21338 "   uint32_t attrval_len;\n"
21339 "   char *attrval;\n"
21340 " };\n"
21341 " \n"
21342 msgstr ""
21343
21344 # type: verbatim
21345 #. type: verbatim
21346 #: ../src/guestfs-structs.pod:201
21347 #, no-wrap
21348 msgid ""
21349 " struct guestfs_xattr_list {\n"
21350 "   uint32_t len; /* Number of elements in list. */\n"
21351 "   struct guestfs_xattr *val; /* Elements. */\n"
21352 " };\n"
21353 " \n"
21354 msgstr ""
21355
21356 # type: verbatim
21357 #. type: verbatim
21358 #: ../src/guestfs-structs.pod:206
21359 #, no-wrap
21360 msgid ""
21361 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
21362 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
21363 "\n"
21364 msgstr ""
21365
21366 # type: =head2
21367 #. type: =head2
21368 #: ../src/guestfs-structs.pod:209
21369 msgid "guestfs_inotify_event"
21370 msgstr ""
21371
21372 # type: verbatim
21373 #. type: verbatim
21374 #: ../src/guestfs-structs.pod:211
21375 #, no-wrap
21376 msgid ""
21377 " struct guestfs_inotify_event {\n"
21378 "   int64_t in_wd;\n"
21379 "   uint32_t in_mask;\n"
21380 "   uint32_t in_cookie;\n"
21381 "   char *in_name;\n"
21382 " };\n"
21383 " \n"
21384 msgstr ""
21385
21386 # type: verbatim
21387 #. type: verbatim
21388 #: ../src/guestfs-structs.pod:218
21389 #, no-wrap
21390 msgid ""
21391 " struct guestfs_inotify_event_list {\n"
21392 "   uint32_t len; /* Number of elements in list. */\n"
21393 "   struct guestfs_inotify_event *val; /* Elements. */\n"
21394 " };\n"
21395 " \n"
21396 msgstr ""
21397
21398 # type: verbatim
21399 #. type: verbatim
21400 #: ../src/guestfs-structs.pod:223
21401 #, no-wrap
21402 msgid ""
21403 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
21404 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
21405 "\n"
21406 msgstr ""
21407
21408 # type: =head2
21409 #. type: =head2
21410 #: ../src/guestfs-structs.pod:226
21411 msgid "guestfs_partition"
21412 msgstr ""
21413
21414 # type: verbatim
21415 #. type: verbatim
21416 #: ../src/guestfs-structs.pod:228
21417 #, no-wrap
21418 msgid ""
21419 " struct guestfs_partition {\n"
21420 "   int32_t part_num;\n"
21421 "   uint64_t part_start;\n"
21422 "   uint64_t part_end;\n"
21423 "   uint64_t part_size;\n"
21424 " };\n"
21425 " \n"
21426 msgstr ""
21427
21428 # type: verbatim
21429 #. type: verbatim
21430 #: ../src/guestfs-structs.pod:235
21431 #, no-wrap
21432 msgid ""
21433 " struct guestfs_partition_list {\n"
21434 "   uint32_t len; /* Number of elements in list. */\n"
21435 "   struct guestfs_partition *val; /* Elements. */\n"
21436 " };\n"
21437 " \n"
21438 msgstr ""
21439
21440 # type: verbatim
21441 #. type: verbatim
21442 #: ../src/guestfs-structs.pod:240
21443 #, no-wrap
21444 msgid ""
21445 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
21446 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
21447 "\n"
21448 msgstr ""
21449
21450 # type: =head2
21451 #. type: =head2
21452 #: ../src/guestfs-structs.pod:243
21453 msgid "guestfs_application"
21454 msgstr ""
21455
21456 # type: verbatim
21457 #. type: verbatim
21458 #: ../src/guestfs-structs.pod:245
21459 #, no-wrap
21460 msgid ""
21461 " struct guestfs_application {\n"
21462 "   char *app_name;\n"
21463 "   char *app_display_name;\n"
21464 "   int32_t app_epoch;\n"
21465 "   char *app_version;\n"
21466 "   char *app_release;\n"
21467 "   char *app_install_path;\n"
21468 "   char *app_trans_path;\n"
21469 "   char *app_publisher;\n"
21470 "   char *app_url;\n"
21471 "   char *app_source_package;\n"
21472 "   char *app_summary;\n"
21473 "   char *app_description;\n"
21474 " };\n"
21475 " \n"
21476 msgstr ""
21477
21478 # type: verbatim
21479 #. type: verbatim
21480 #: ../src/guestfs-structs.pod:260
21481 #, no-wrap
21482 msgid ""
21483 " struct guestfs_application_list {\n"
21484 "   uint32_t len; /* Number of elements in list. */\n"
21485 "   struct guestfs_application *val; /* Elements. */\n"
21486 " };\n"
21487 " \n"
21488 msgstr ""
21489
21490 # type: verbatim
21491 #. type: verbatim
21492 #: ../src/guestfs-structs.pod:265
21493 #, no-wrap
21494 msgid ""
21495 " void guestfs_free_application (struct guestfs_free_application *);\n"
21496 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
21497 "\n"
21498 msgstr ""
21499
21500 # type: textblock
21501 #. type: textblock
21502 #: ../fish/guestfish.pod:5
21503 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
21504 msgstr ""
21505
21506 # type: verbatim
21507 #. type: verbatim
21508 #: ../fish/guestfish.pod:9
21509 #, no-wrap
21510 msgid ""
21511 " guestfish [--options] [commands]\n"
21512 "\n"
21513 msgstr ""
21514
21515 # type: verbatim
21516 #. type: verbatim
21517 #: ../fish/guestfish.pod:11
21518 #, no-wrap
21519 msgid ""
21520 " guestfish\n"
21521 "\n"
21522 msgstr ""
21523
21524 # type: verbatim
21525 #. type: verbatim
21526 #: ../fish/guestfish.pod:13
21527 #, no-wrap
21528 msgid ""
21529 " guestfish [--ro|--rw] -a disk.img\n"
21530 "\n"
21531 msgstr ""
21532
21533 # type: verbatim
21534 #. type: verbatim
21535 #: ../fish/guestfish.pod:15
21536 #, no-wrap
21537 msgid ""
21538 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
21539 "\n"
21540 msgstr ""
21541
21542 # type: verbatim
21543 #. type: verbatim
21544 #: ../fish/guestfish.pod:17
21545 #, no-wrap
21546 msgid ""
21547 " guestfish -d libvirt-domain\n"
21548 "\n"
21549 msgstr ""
21550
21551 # type: verbatim
21552 #. type: verbatim
21553 #: ../fish/guestfish.pod:19
21554 #, no-wrap
21555 msgid ""
21556 " guestfish [--ro|--rw] -a disk.img -i\n"
21557 "\n"
21558 msgstr ""
21559
21560 # type: verbatim
21561 #. type: verbatim
21562 #: ../fish/guestfish.pod:21
21563 #, no-wrap
21564 msgid ""
21565 " guestfish -d libvirt-domain -i\n"
21566 "\n"
21567 msgstr ""
21568
21569 # type: =head1
21570 #. type: =head1
21571 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-edit.pl:44
21572 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
21573 msgid "WARNING"
21574 msgstr ""
21575
21576 # type: textblock
21577 #. type: textblock
21578 #: ../fish/guestfish.pod:25
21579 msgid ""
21580 "Using guestfish in read/write mode on live virtual machines can be "
21581 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
21582 "option to use guestfish safely if the disk image or virtual machine might be "
21583 "live."
21584 msgstr ""
21585
21586 # type: textblock
21587 #. type: textblock
21588 #: ../fish/guestfish.pod:32
21589 msgid ""
21590 "Guestfish is a shell and command-line tool for examining and modifying "
21591 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
21592 "functionality of the guestfs API, see L<guestfs(3)>."
21593 msgstr ""
21594
21595 # type: textblock
21596 #. type: textblock
21597 #: ../fish/guestfish.pod:36
21598 msgid ""
21599 "Guestfish gives you structured access to the libguestfs API, from shell "
21600 "scripts or the command line or interactively.  If you want to rescue a "
21601 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
21602 "command."
21603 msgstr ""
21604
21605 # type: =head1
21606 #. type: =head1
21607 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:947
21608 #: ../fuse/guestmount.pod:39 ../tools/virt-edit.pl:63 ../tools/virt-tar.pl:50
21609 msgid "EXAMPLES"
21610 msgstr ""
21611
21612 # type: =head2
21613 #. type: =head2
21614 #: ../fish/guestfish.pod:43
21615 msgid "As an interactive shell"
21616 msgstr ""
21617
21618 # type: verbatim
21619 #. type: verbatim
21620 #: ../fish/guestfish.pod:45
21621 #, no-wrap
21622 msgid ""
21623 " $ guestfish\n"
21624 " \n"
21625 msgstr ""
21626
21627 # type: verbatim
21628 #. type: verbatim
21629 #: ../fish/guestfish.pod:47
21630 #, no-wrap
21631 msgid ""
21632 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
21633 " editing virtual machine filesystems.\n"
21634 " \n"
21635 msgstr ""
21636
21637 # type: verbatim
21638 #. type: verbatim
21639 #: ../fish/guestfish.pod:50
21640 #, no-wrap
21641 msgid ""
21642 " Type: 'help' for a list of commands\n"
21643 "       'man' to read the manual\n"
21644 "       'quit' to quit the shell\n"
21645 " \n"
21646 msgstr ""
21647
21648 # type: verbatim
21649 #. type: verbatim
21650 #: ../fish/guestfish.pod:54
21651 #, no-wrap
21652 msgid ""
21653 " ><fs> add-ro disk.img\n"
21654 " ><fs> run\n"
21655 " ><fs> list-filesystems\n"
21656 " /dev/sda1: ext4\n"
21657 " /dev/vg_guest/lv_root: ext4\n"
21658 " /dev/vg_guest/lv_swap: swap\n"
21659 " ><fs> mount /dev/vg_guest/lv_root /\n"
21660 " ><fs> cat /etc/fstab\n"
21661 " # /etc/fstab\n"
21662 " # Created by anaconda\n"
21663 " [...]\n"
21664 " ><fs> exit\n"
21665 "\n"
21666 msgstr ""
21667
21668 # type: =head2
21669 #. type: =head2
21670 #: ../fish/guestfish.pod:67
21671 msgid "From shell scripts"
21672 msgstr ""
21673
21674 # type: textblock
21675 #. type: textblock
21676 #: ../fish/guestfish.pod:69
21677 msgid "Create a new C</etc/motd> file in a guest or disk image:"
21678 msgstr ""
21679
21680 # type: verbatim
21681 #. type: verbatim
21682 #: ../fish/guestfish.pod:71
21683 #, no-wrap
21684 msgid ""
21685 " guestfish <<_EOF_\n"
21686 " add disk.img\n"
21687 " run\n"
21688 " mount /dev/vg_guest/lv_root /\n"
21689 " write /etc/motd \"Welcome, new users\"\n"
21690 " _EOF_\n"
21691 "\n"
21692 msgstr ""
21693
21694 # type: textblock
21695 #. type: textblock
21696 #: ../fish/guestfish.pod:78
21697 msgid "List the LVM logical volumes in a disk image:"
21698 msgstr ""
21699
21700 # type: verbatim
21701 #. type: verbatim
21702 #: ../fish/guestfish.pod:80
21703 #, no-wrap
21704 msgid ""
21705 " guestfish -a disk.img --ro <<_EOF_\n"
21706 " run\n"
21707 " lvs\n"
21708 " _EOF_\n"
21709 "\n"
21710 msgstr ""
21711
21712 # type: textblock
21713 #. type: textblock
21714 #: ../fish/guestfish.pod:85
21715 msgid "List all the filesystems in a disk image:"
21716 msgstr ""
21717
21718 # type: verbatim
21719 #. type: verbatim
21720 #: ../fish/guestfish.pod:87
21721 #, no-wrap
21722 msgid ""
21723 " guestfish -a disk.img --ro <<_EOF_\n"
21724 " run\n"
21725 " list-filesystems\n"
21726 " _EOF_\n"
21727 "\n"
21728 msgstr ""
21729
21730 # type: =head2
21731 #. type: =head2
21732 #: ../fish/guestfish.pod:92
21733 msgid "On one command line"
21734 msgstr ""
21735
21736 # type: textblock
21737 #. type: textblock
21738 #: ../fish/guestfish.pod:94
21739 msgid "Update C</etc/resolv.conf> in a guest:"
21740 msgstr ""
21741
21742 # type: verbatim
21743 #. type: verbatim
21744 #: ../fish/guestfish.pod:96
21745 #, no-wrap
21746 msgid ""
21747 " guestfish \\\n"
21748 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
21749 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
21750 "\n"
21751 msgstr ""
21752
21753 # type: textblock
21754 #. type: textblock
21755 #: ../fish/guestfish.pod:100
21756 msgid "Edit C</boot/grub/grub.conf> interactively:"
21757 msgstr ""
21758
21759 # type: verbatim
21760 #. type: verbatim
21761 #: ../fish/guestfish.pod:102
21762 #, no-wrap
21763 msgid ""
21764 " guestfish --rw --add disk.img \\\n"
21765 "   --mount /dev/vg_guest/lv_root \\\n"
21766 "   --mount /dev/sda1:/boot \\\n"
21767 "   edit /boot/grub/grub.conf\n"
21768 "\n"
21769 msgstr ""
21770
21771 # type: =head2
21772 #. type: =head2
21773 #: ../fish/guestfish.pod:107
21774 msgid "Mount disks automatically"
21775 msgstr ""
21776
21777 # type: textblock
21778 #. type: textblock
21779 #: ../fish/guestfish.pod:109
21780 msgid ""
21781 "Use the I<-i> option to automatically mount the disks from a virtual machine:"
21782 msgstr ""
21783
21784 # type: verbatim
21785 #. type: verbatim
21786 #: ../fish/guestfish.pod:112
21787 #, no-wrap
21788 msgid ""
21789 " guestfish --ro -a disk.img -i cat /etc/group\n"
21790 "\n"
21791 msgstr ""
21792
21793 # type: verbatim
21794 #. type: verbatim
21795 #: ../fish/guestfish.pod:114
21796 #, no-wrap
21797 msgid ""
21798 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
21799 "\n"
21800 msgstr ""
21801
21802 # type: textblock
21803 #. type: textblock
21804 #: ../fish/guestfish.pod:116
21805 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
21806 msgstr ""
21807
21808 # type: verbatim
21809 #. type: verbatim
21810 #: ../fish/guestfish.pod:118
21811 #, no-wrap
21812 msgid ""
21813 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
21814 "\n"
21815 msgstr ""
21816
21817 # type: =head2
21818 #. type: =head2
21819 #: ../fish/guestfish.pod:120
21820 msgid "As a script interpreter"
21821 msgstr ""
21822
21823 # type: textblock
21824 #. type: textblock
21825 #: ../fish/guestfish.pod:122
21826 msgid "Create a 100MB disk containing an ext2-formatted partition:"
21827 msgstr ""
21828
21829 # type: verbatim
21830 #. type: verbatim
21831 #: ../fish/guestfish.pod:124
21832 #, no-wrap
21833 msgid ""
21834 " #!/usr/bin/guestfish -f\n"
21835 " sparse test1.img 100M\n"
21836 " run\n"
21837 " part-disk /dev/sda mbr\n"
21838 " mkfs ext2 /dev/sda1\n"
21839 "\n"
21840 msgstr ""
21841
21842 # type: =head2
21843 #. type: =head2
21844 #: ../fish/guestfish.pod:130
21845 msgid "Start with a prepared disk"
21846 msgstr ""
21847
21848 # type: textblock
21849 #. type: textblock
21850 #: ../fish/guestfish.pod:132
21851 msgid ""
21852 "An alternate way to create a 100MB disk called C<test1.img> containing a "
21853 "single ext2-formatted partition:"
21854 msgstr ""
21855
21856 # type: verbatim
21857 #. type: verbatim
21858 #: ../fish/guestfish.pod:135
21859 #, no-wrap
21860 msgid ""
21861 " guestfish -N fs\n"
21862 "\n"
21863 msgstr ""
21864
21865 # type: textblock
21866 #. type: textblock
21867 #: ../fish/guestfish.pod:137
21868 msgid "To list what is available do:"
21869 msgstr ""
21870
21871 # type: verbatim
21872 #. type: verbatim
21873 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:938
21874 #, no-wrap
21875 msgid ""
21876 " guestfish -N help | less\n"
21877 "\n"
21878 msgstr ""
21879
21880 # type: =head2
21881 #. type: =head2
21882 #: ../fish/guestfish.pod:141
21883 msgid "Remote control"
21884 msgstr ""
21885
21886 # type: verbatim
21887 #. type: verbatim
21888 #: ../fish/guestfish.pod:143
21889 #, no-wrap
21890 msgid ""
21891 " eval \"`guestfish --listen`\"\n"
21892 " guestfish --remote add-ro disk.img\n"
21893 " guestfish --remote run\n"
21894 " guestfish --remote lvs\n"
21895 "\n"
21896 msgstr ""
21897
21898 # type: =head1
21899 #. type: =head1
21900 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
21901 #: ../fuse/guestmount.pod:83 ../tools/virt-edit.pl:81
21902 #: ../tools/virt-win-reg.pl:96 ../tools/virt-list-filesystems.pl:53
21903 #: ../tools/virt-tar.pl:103 ../tools/virt-make-fs.pl:153
21904 #: ../tools/virt-list-partitions.pl:54
21905 msgid "OPTIONS"
21906 msgstr ""
21907
21908 # type: =item
21909 #. type: =item
21910 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:141
21911 #: ../tools/virt-edit.pl:89 ../tools/virt-win-reg.pl:104
21912 #: ../tools/virt-list-filesystems.pl:61 ../tools/virt-tar.pl:111
21913 #: ../tools/virt-make-fs.pl:161 ../tools/virt-list-partitions.pl:62
21914 msgid "B<--help>"
21915 msgstr ""
21916
21917 # type: textblock
21918 #. type: textblock
21919 #: ../fish/guestfish.pod:154
21920 msgid "Displays general help on options."
21921 msgstr ""
21922
21923 # type: =item
21924 #. type: =item
21925 #: ../fish/guestfish.pod:156
21926 msgid "B<-h>"
21927 msgstr ""
21928
21929 # type: =item
21930 #. type: =item
21931 #: ../fish/guestfish.pod:158
21932 msgid "B<--cmd-help>"
21933 msgstr ""
21934
21935 # type: textblock
21936 #. type: textblock
21937 #: ../fish/guestfish.pod:160
21938 msgid "Lists all available guestfish commands."
21939 msgstr ""
21940
21941 # type: =item
21942 #. type: =item
21943 #: ../fish/guestfish.pod:162
21944 msgid "B<-h cmd>"
21945 msgstr ""
21946
21947 # type: =item
21948 #. type: =item
21949 #: ../fish/guestfish.pod:164
21950 msgid "B<--cmd-help cmd>"
21951 msgstr ""
21952
21953 # type: textblock
21954 #. type: textblock
21955 #: ../fish/guestfish.pod:166
21956 msgid "Displays detailed help on a single command C<cmd>."
21957 msgstr ""
21958
21959 # type: =item
21960 #. type: =item
21961 #: ../fish/guestfish.pod:168
21962 msgid "B<-a image>"
21963 msgstr ""
21964
21965 # type: =item
21966 #. type: =item
21967 #: ../fish/guestfish.pod:170
21968 msgid "B<--add image>"
21969 msgstr ""
21970
21971 # type: textblock
21972 #. type: textblock
21973 #: ../fish/guestfish.pod:172
21974 msgid "Add a block device or virtual machine image to the shell."
21975 msgstr ""
21976
21977 # type: textblock
21978 #. type: textblock
21979 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
21980 msgid ""
21981 "The format of the disk image is auto-detected.  To override this and force a "
21982 "particular format use the I<--format=..> option."
21983 msgstr ""
21984
21985 #. type: textblock
21986 #: ../fish/guestfish.pod:177
21987 msgid ""
21988 "Using this flag is mostly equivalent to using the C<add> command, with "
21989 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
21990 "the I<--format=...> flag was given."
21991 msgstr ""
21992
21993 # type: =item
21994 #. type: =item
21995 #: ../fish/guestfish.pod:181
21996 msgid "B<-c URI>"
21997 msgstr ""
21998
21999 # type: =item
22000 #. type: =item
22001 #: ../fish/guestfish.pod:183
22002 msgid "B<--connect URI>"
22003 msgstr ""
22004
22005 # type: textblock
22006 #. type: textblock
22007 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
22008 msgid ""
22009 "When used in conjunction with the I<-d> option, this specifies the libvirt "
22010 "URI to use.  The default is to use the default libvirt connection."
22011 msgstr ""
22012
22013 # type: =item
22014 #. type: =item
22015 #: ../fish/guestfish.pod:189
22016 msgid "B<--csh>"
22017 msgstr ""
22018
22019 # type: textblock
22020 #. type: textblock
22021 #: ../fish/guestfish.pod:191
22022 msgid ""
22023 "If using the I<--listen> option and a csh-like shell, use this option.  See "
22024 "section L</REMOTE CONTROL AND CSH> below."
22025 msgstr ""
22026
22027 # type: =item
22028 #. type: =item
22029 #: ../fish/guestfish.pod:194
22030 msgid "B<-d libvirt-domain>"
22031 msgstr ""
22032
22033 # type: =item
22034 #. type: =item
22035 #: ../fish/guestfish.pod:196
22036 msgid "B<--domain libvirt-domain>"
22037 msgstr ""
22038
22039 # type: textblock
22040 #. type: textblock
22041 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
22042 msgid ""
22043 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
22044 "used, then any libvirt domain can be used.  However in write mode, only "
22045 "libvirt domains which are shut down can be named here."
22046 msgstr ""
22047
22048 # type: textblock
22049 #. type: textblock
22050 #: ../fish/guestfish.pod:202
22051 msgid ""
22052 "Using this flag is mostly equivalent to using the C<add-domain> command, "
22053 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
22054 "if the I<--format:...> flag was given."
22055 msgstr ""
22056
22057 # type: =item
22058 #. type: =item
22059 #: ../fish/guestfish.pod:206
22060 msgid "B<-D>"
22061 msgstr ""
22062
22063 # type: =item
22064 #. type: =item
22065 #: ../fish/guestfish.pod:208
22066 msgid "B<--no-dest-paths>"
22067 msgstr ""
22068
22069 # type: textblock
22070 #. type: textblock
22071 #: ../fish/guestfish.pod:210
22072 msgid ""
22073 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
22074 "to hit the tab key to complete paths on the guest filesystem, but this "
22075 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
22076 "allow this feature to be disabled."
22077 msgstr ""
22078
22079 # type: =item
22080 #. type: =item
22081 #: ../fish/guestfish.pod:215 ../fuse/guestmount.pod:118
22082 msgid "B<--echo-keys>"
22083 msgstr ""
22084
22085 # type: textblock
22086 #. type: textblock
22087 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
22088 msgid ""
22089 "When prompting for keys and passphrases, guestfish normally turns echoing "
22090 "off so you cannot see what you are typing.  If you are not worried about "
22091 "Tempest attacks and there is no one else in the room you can specify this "
22092 "flag to see what you are typing."
22093 msgstr ""
22094
22095 # type: =item
22096 #. type: =item
22097 #: ../fish/guestfish.pod:222
22098 msgid "B<-f file>"
22099 msgstr ""
22100
22101 # type: =item
22102 #. type: =item
22103 #: ../fish/guestfish.pod:224
22104 msgid "B<--file file>"
22105 msgstr ""
22106
22107 # type: textblock
22108 #. type: textblock
22109 #: ../fish/guestfish.pod:226
22110 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
22111 msgstr ""
22112
22113 # type: verbatim
22114 #. type: verbatim
22115 #: ../fish/guestfish.pod:229
22116 #, no-wrap
22117 msgid ""
22118 " #!/usr/bin/guestfish -f\n"
22119 "\n"
22120 msgstr ""
22121
22122 # type: =item
22123 #. type: =item
22124 #: ../fish/guestfish.pod:231
22125 msgid "B<--format=raw|qcow2|..>"
22126 msgstr ""
22127
22128 # type: =item
22129 #. type: =item
22130 #: ../fish/guestfish.pod:233
22131 msgid "B<--format>"
22132 msgstr ""
22133
22134 # type: textblock
22135 #. type: textblock
22136 #: ../fish/guestfish.pod:235 ../fuse/guestmount.pod:127
22137 msgid ""
22138 "The default for the I<-a> option is to auto-detect the format of the disk "
22139 "image.  Using this forces the disk format for I<-a> options which follow on "
22140 "the command line.  Using I<--format> with no argument switches back to auto-"
22141 "detection for subsequent I<-a> options."
22142 msgstr ""
22143
22144 # type: verbatim
22145 #. type: verbatim
22146 #: ../fish/guestfish.pod:242
22147 #, no-wrap
22148 msgid ""
22149 " guestfish --format=raw -a disk.img\n"
22150 "\n"
22151 msgstr ""
22152
22153 # type: textblock
22154 #. type: textblock
22155 #: ../fish/guestfish.pod:244
22156 msgid "forces raw format (no auto-detection) for C<disk.img>."
22157 msgstr ""
22158
22159 # type: verbatim
22160 #. type: verbatim
22161 #: ../fish/guestfish.pod:246
22162 #, no-wrap
22163 msgid ""
22164 " guestfish --format=raw -a disk.img --format -a another.img\n"
22165 "\n"
22166 msgstr ""
22167
22168 # type: textblock
22169 #. type: textblock
22170 #: ../fish/guestfish.pod:248
22171 msgid ""
22172 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
22173 "detection for C<another.img>."
22174 msgstr ""
22175
22176 # type: textblock
22177 #. type: textblock
22178 #: ../fish/guestfish.pod:251
22179 msgid ""
22180 "If you have untrusted raw-format guest disk images, you should use this "
22181 "option to specify the disk format.  This avoids a possible security problem "
22182 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
22183 msgstr ""
22184
22185 # type: =item
22186 #. type: =item
22187 #: ../fish/guestfish.pod:256
22188 msgid "B<-i>"
22189 msgstr ""
22190
22191 # type: =item
22192 #. type: =item
22193 #: ../fish/guestfish.pod:258
22194 msgid "B<--inspector>"
22195 msgstr ""
22196
22197 # type: textblock
22198 #. type: textblock
22199 #: ../fish/guestfish.pod:260 ../fuse/guestmount.pod:147
22200 msgid ""
22201 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
22202 "system and mount filesystems as they would be mounted on the real virtual "
22203 "machine."
22204 msgstr ""
22205
22206 # type: textblock
22207 #. type: textblock
22208 #: ../fish/guestfish.pod:264
22209 msgid "Typical usage is either:"
22210 msgstr ""
22211
22212 # type: verbatim
22213 #. type: verbatim
22214 #: ../fish/guestfish.pod:266
22215 #, no-wrap
22216 msgid ""
22217 " guestfish -d myguest -i\n"
22218 "\n"
22219 msgstr ""
22220
22221 # type: textblock
22222 #. type: textblock
22223 #: ../fish/guestfish.pod:268
22224 msgid "(for an inactive libvirt domain called I<myguest>), or:"
22225 msgstr ""
22226
22227 # type: verbatim
22228 #. type: verbatim
22229 #: ../fish/guestfish.pod:270
22230 #, no-wrap
22231 msgid ""
22232 " guestfish --ro -d myguest -i\n"
22233 "\n"
22234 msgstr ""
22235
22236 # type: textblock
22237 #. type: textblock
22238 #: ../fish/guestfish.pod:272
22239 msgid "(for active domains, readonly), or specify the block device directly:"
22240 msgstr ""
22241
22242 # type: verbatim
22243 #. type: verbatim
22244 #: ../fish/guestfish.pod:274
22245 #, no-wrap
22246 msgid ""
22247 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
22248 "\n"
22249 msgstr ""
22250
22251 # type: textblock
22252 #. type: textblock
22253 #: ../fish/guestfish.pod:276
22254 msgid ""
22255 "Note that the command line syntax changed slightly over older versions of "
22256 "guestfish.  You can still use the old syntax:"
22257 msgstr ""
22258
22259 # type: verbatim
22260 #. type: verbatim
22261 #: ../fish/guestfish.pod:279
22262 #, no-wrap
22263 msgid ""
22264 " guestfish [--ro] -i disk.img\n"
22265 "\n"
22266 msgstr ""
22267
22268 # type: verbatim
22269 #. type: verbatim
22270 #: ../fish/guestfish.pod:281
22271 #, no-wrap
22272 msgid ""
22273 " guestfish [--ro] -i libvirt-domain\n"
22274 "\n"
22275 msgstr ""
22276
22277 # type: textblock
22278 #. type: textblock
22279 #: ../fish/guestfish.pod:283
22280 msgid ""
22281 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
22282 "then using other commands to mount the filesystems that were found."
22283 msgstr ""
22284
22285 # type: =item
22286 #. type: =item
22287 #: ../fish/guestfish.pod:287 ../fuse/guestmount.pod:151
22288 msgid "B<--keys-from-stdin>"
22289 msgstr ""
22290
22291 # type: textblock
22292 #. type: textblock
22293 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
22294 msgid ""
22295 "Read key or passphrase parameters from stdin.  The default is to try to read "
22296 "passphrases from the user by opening C</dev/tty>."
22297 msgstr ""
22298
22299 # type: =item
22300 #. type: =item
22301 #: ../fish/guestfish.pod:292
22302 msgid "B<--listen>"
22303 msgstr ""
22304
22305 # type: textblock
22306 #. type: textblock
22307 #: ../fish/guestfish.pod:294
22308 msgid ""
22309 "Fork into the background and listen for remote commands.  See section L</"
22310 "REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
22311 msgstr ""
22312
22313 #. type: =item
22314 #: ../fish/guestfish.pod:297 ../fuse/guestmount.pod:156
22315 msgid "B<--live>"
22316 msgstr ""
22317
22318 #. type: textblock
22319 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
22320 msgid ""
22321 "Connect to a live virtual machine.  (Experimental, see L<guestfs(3)/"
22322 "ATTACHING TO RUNNING DAEMONS>)."
22323 msgstr ""
22324
22325 #. type: =item
22326 #: ../fish/guestfish.pod:302 ../fuse/guestmount.pod:161
22327 msgid "B<-m dev[:mountpoint[:options]]>"
22328 msgstr ""
22329
22330 #. type: =item
22331 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
22332 msgid "B<--mount dev[:mountpoint[:options]]>"
22333 msgstr ""
22334
22335 # type: textblock
22336 #. type: textblock
22337 #: ../fish/guestfish.pod:306
22338 msgid "Mount the named partition or logical volume on the given mountpoint."
22339 msgstr ""
22340
22341 # type: textblock
22342 #. type: textblock
22343 #: ../fish/guestfish.pod:308
22344 msgid "If the mountpoint is omitted, it defaults to C</>."
22345 msgstr ""
22346
22347 # type: textblock
22348 #. type: textblock
22349 #: ../fish/guestfish.pod:310
22350 msgid "You have to mount something on C</> before most commands will work."
22351 msgstr ""
22352
22353 # type: textblock
22354 #. type: textblock
22355 #: ../fish/guestfish.pod:312
22356 msgid ""
22357 "If any I<-m> or I<--mount> options are given, the guest is automatically "
22358 "launched."
22359 msgstr ""
22360
22361 # type: textblock
22362 #. type: textblock
22363 #: ../fish/guestfish.pod:315
22364 msgid ""
22365 "If you don't know what filesystems a disk image contains, you can either run "
22366 "guestfish without this option, then list the partitions, filesystems and LVs "
22367 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
22368 "commands), or you can use the L<virt-filesystems(1)> program."
22369 msgstr ""
22370
22371 #. type: textblock
22372 #: ../fish/guestfish.pod:321 ../fuse/guestmount.pod:171
22373 msgid ""
22374 "The third (and rarely used) part of the mount parameter is the list of mount "
22375 "options used to mount the underlying filesystem.  If this is not given, then "
22376 "the mount options are either the empty string or C<ro> (the latter if the "
22377 "I<--ro> flag is used).  By specifying the mount options, you override this "
22378 "default choice.  Probably the only time you would use this is to enable ACLs "
22379 "and/or extended attributes if the filesystem can support them:"
22380 msgstr ""
22381
22382 #. type: verbatim
22383 #: ../fish/guestfish.pod:329 ../fuse/guestmount.pod:179
22384 #, no-wrap
22385 msgid ""
22386 " -m /dev/sda1:/:acl,user_xattr\n"
22387 "\n"
22388 msgstr ""
22389
22390 #. type: textblock
22391 #: ../fish/guestfish.pod:331
22392 msgid "Using this flag is equivalent to using the C<mount-options> command."
22393 msgstr ""
22394
22395 # type: =item
22396 #. type: =item
22397 #: ../fish/guestfish.pod:333
22398 msgid "B<-n>"
22399 msgstr ""
22400
22401 # type: =item
22402 #. type: =item
22403 #: ../fish/guestfish.pod:335
22404 msgid "B<--no-sync>"
22405 msgstr ""
22406
22407 # type: textblock
22408 #. type: textblock
22409 #: ../fish/guestfish.pod:337
22410 msgid ""
22411 "Disable autosync.  This is enabled by default.  See the discussion of "
22412 "autosync in the L<guestfs(3)> manpage."
22413 msgstr ""
22414
22415 # type: =item
22416 #. type: =item
22417 #: ../fish/guestfish.pod:340
22418 msgid "B<-N type>"
22419 msgstr ""
22420
22421 # type: =item
22422 #. type: =item
22423 #: ../fish/guestfish.pod:342
22424 msgid "B<--new type>"
22425 msgstr ""
22426
22427 # type: =item
22428 #. type: =item
22429 #: ../fish/guestfish.pod:344
22430 msgid "B<-N help>"
22431 msgstr ""
22432
22433 # type: textblock
22434 #. type: textblock
22435 #: ../fish/guestfish.pod:346
22436 msgid ""
22437 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
22438 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
22439 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
22440 "IMAGES> below."
22441 msgstr ""
22442
22443 # type: =item
22444 #. type: =item
22445 #: ../fish/guestfish.pod:351
22446 msgid "B<--progress-bars>"
22447 msgstr ""
22448
22449 # type: textblock
22450 #. type: textblock
22451 #: ../fish/guestfish.pod:353
22452 msgid "Enable progress bars, even when guestfish is used non-interactively."
22453 msgstr ""
22454
22455 # type: textblock
22456 #. type: textblock
22457 #: ../fish/guestfish.pod:355
22458 msgid ""
22459 "Progress bars are enabled by default when guestfish is used as an "
22460 "interactive shell."
22461 msgstr ""
22462
22463 # type: =item
22464 #. type: =item
22465 #: ../fish/guestfish.pod:358
22466 msgid "B<--no-progress-bars>"
22467 msgstr ""
22468
22469 # type: textblock
22470 #. type: textblock
22471 #: ../fish/guestfish.pod:360
22472 msgid "Disable progress bars."
22473 msgstr ""
22474
22475 # type: =item
22476 #. type: =item
22477 #: ../fish/guestfish.pod:362
22478 msgid "B<--remote[=pid]>"
22479 msgstr ""
22480
22481 # type: textblock
22482 #. type: textblock
22483 #: ../fish/guestfish.pod:364
22484 msgid ""
22485 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
22486 "CONTROL GUESTFISH OVER A SOCKET> below."
22487 msgstr ""
22488
22489 # type: =item
22490 #. type: =item
22491 #: ../fish/guestfish.pod:367
22492 msgid "B<-r>"
22493 msgstr ""
22494
22495 # type: =item
22496 #. type: =item
22497 #: ../fish/guestfish.pod:369
22498 msgid "B<--ro>"
22499 msgstr ""
22500
22501 # type: textblock
22502 #. type: textblock
22503 #: ../fish/guestfish.pod:371
22504 msgid ""
22505 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
22506 "mounts are done read-only."
22507 msgstr ""
22508
22509 # type: textblock
22510 #. type: textblock
22511 #: ../fish/guestfish.pod:374
22512 msgid ""
22513 "The option must always be used if the disk image or virtual machine might be "
22514 "running, and is generally recommended in cases where you don't need write "
22515 "access to the disk."
22516 msgstr ""
22517
22518 # type: textblock
22519 #. type: textblock
22520 #: ../fish/guestfish.pod:378
22521 msgid ""
22522 "Note that prepared disk images created with I<-N> are not affected by this "
22523 "option.  Also commands like C<add> are not affected - you have to specify "
22524 "the C<readonly:true> option explicitly if you need it."
22525 msgstr ""
22526
22527 # type: textblock
22528 #. type: textblock
22529 #: ../fish/guestfish.pod:382
22530 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
22531 msgstr ""
22532
22533 # type: =item
22534 #. type: =item
22535 #: ../fish/guestfish.pod:384 ../fuse/guestmount.pod:235
22536 msgid "B<--selinux>"
22537 msgstr ""
22538
22539 # type: textblock
22540 #. type: textblock
22541 #: ../fish/guestfish.pod:386
22542 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
22543 msgstr ""
22544
22545 # type: =item
22546 #. type: =item
22547 #: ../fish/guestfish.pod:388
22548 msgid "B<-v>"
22549 msgstr ""
22550
22551 # type: =item
22552 #. type: =item
22553 #: ../fish/guestfish.pod:390
22554 msgid "B<--verbose>"
22555 msgstr ""
22556
22557 # type: textblock
22558 #. type: textblock
22559 #: ../fish/guestfish.pod:392
22560 msgid ""
22561 "Enable very verbose messages.  This is particularly useful if you find a bug."
22562 msgstr ""
22563
22564 # type: =item
22565 #. type: =item
22566 #: ../fish/guestfish.pod:395
22567 msgid "B<-V>"
22568 msgstr ""
22569
22570 # type: =item
22571 #. type: =item
22572 #: ../fish/guestfish.pod:397 ../tools/virt-edit.pl:97
22573 #: ../tools/virt-win-reg.pl:112 ../tools/virt-list-filesystems.pl:69
22574 #: ../tools/virt-tar.pl:119 ../tools/virt-make-fs.pl:169
22575 #: ../tools/virt-list-partitions.pl:70
22576 msgid "B<--version>"
22577 msgstr ""
22578
22579 # type: textblock
22580 #. type: textblock
22581 #: ../fish/guestfish.pod:399
22582 msgid "Display the guestfish / libguestfs version number and exit."
22583 msgstr ""
22584
22585 # type: =item
22586 #. type: =item
22587 #: ../fish/guestfish.pod:401
22588 msgid "B<-w>"
22589 msgstr ""
22590
22591 # type: =item
22592 #. type: =item
22593 #: ../fish/guestfish.pod:403
22594 msgid "B<--rw>"
22595 msgstr ""
22596
22597 #. type: textblock
22598 #: ../fish/guestfish.pod:405 ../fuse/guestmount.pod:249
22599 msgid ""
22600 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
22601 "mounts are done read-write."
22602 msgstr ""
22603
22604 #. type: textblock
22605 #: ../fish/guestfish.pod:408
22606 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
22607 msgstr ""
22608
22609 # type: =item
22610 #. type: =item
22611 #: ../fish/guestfish.pod:410
22612 msgid "B<-x>"
22613 msgstr ""
22614
22615 # type: textblock
22616 #. type: textblock
22617 #: ../fish/guestfish.pod:412
22618 msgid "Echo each command before executing it."
22619 msgstr ""
22620
22621 # type: =head1
22622 #. type: =head1
22623 #: ../fish/guestfish.pod:416
22624 msgid "COMMANDS ON COMMAND LINE"
22625 msgstr ""
22626
22627 # type: textblock
22628 #. type: textblock
22629 #: ../fish/guestfish.pod:418
22630 msgid ""
22631 "Any additional (non-option) arguments are treated as commands to execute."
22632 msgstr ""
22633
22634 # type: textblock
22635 #. type: textblock
22636 #: ../fish/guestfish.pod:421
22637 msgid ""
22638 "Commands to execute should be separated by a colon (C<:>), where the colon "
22639 "is a separate parameter.  Thus:"
22640 msgstr ""
22641
22642 # type: verbatim
22643 #. type: verbatim
22644 #: ../fish/guestfish.pod:424
22645 #, no-wrap
22646 msgid ""
22647 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
22648 "\n"
22649 msgstr ""
22650
22651 # type: textblock
22652 #. type: textblock
22653 #: ../fish/guestfish.pod:426
22654 msgid ""
22655 "If there are no additional arguments, then we enter a shell, either an "
22656 "interactive shell with a prompt (if the input is a terminal) or a non-"
22657 "interactive shell."
22658 msgstr ""
22659
22660 # type: textblock
22661 #. type: textblock
22662 #: ../fish/guestfish.pod:430
22663 msgid ""
22664 "In either command line mode or non-interactive shell, the first command that "
22665 "gives an error causes the whole shell to exit.  In interactive mode (with a "
22666 "prompt) if a command fails, you can continue to enter commands."
22667 msgstr ""
22668
22669 # type: =head1
22670 #. type: =head1
22671 #: ../fish/guestfish.pod:435
22672 msgid "USING launch (OR run)"
22673 msgstr ""
22674
22675 # type: textblock
22676 #. type: textblock
22677 #: ../fish/guestfish.pod:437
22678 msgid ""
22679 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
22680 "then launch it, then mount any disks you need, and finally issue actions/"
22681 "commands.  So the general order of the day is:"
22682 msgstr ""
22683
22684 # type: textblock
22685 #. type: textblock
22686 #: ../fish/guestfish.pod:445
22687 msgid "add or -a/--add"
22688 msgstr ""
22689
22690 # type: textblock
22691 #. type: textblock
22692 #: ../fish/guestfish.pod:449
22693 msgid "launch (aka run)"
22694 msgstr ""
22695
22696 # type: textblock
22697 #. type: textblock
22698 #: ../fish/guestfish.pod:453
22699 msgid "mount or -m/--mount"
22700 msgstr ""
22701
22702 # type: textblock
22703 #. type: textblock
22704 #: ../fish/guestfish.pod:457
22705 msgid "any other commands"
22706 msgstr ""
22707
22708 # type: textblock
22709 #. type: textblock
22710 #: ../fish/guestfish.pod:461
22711 msgid ""
22712 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
22713 "guest before mounting or performing any other commands."
22714 msgstr ""
22715
22716 # type: textblock
22717 #. type: textblock
22718 #: ../fish/guestfish.pod:464
22719 msgid ""
22720 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
22721 "I<--new> options were given then C<run> is done automatically, simply "
22722 "because guestfish can't perform the action you asked for without doing this."
22723 msgstr ""
22724
22725 # type: =head1
22726 #. type: =head1
22727 #: ../fish/guestfish.pod:469
22728 msgid "OPENING DISKS FOR READ AND WRITE"
22729 msgstr ""
22730
22731 #. type: textblock
22732 #: ../fish/guestfish.pod:471
22733 msgid ""
22734 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
22735 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
22736 "I<-i> and I<-m> open disk images read-only or for writing."
22737 msgstr ""
22738
22739 #. type: textblock
22740 #: ../fish/guestfish.pod:476
22741 msgid ""
22742 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
22743 "opening disk images supplied on the command line for write.  To open a disk "
22744 "image read-only you have to do I<-a image --ro>."
22745 msgstr ""
22746
22747 # type: textblock
22748 #. type: textblock
22749 #: ../fish/guestfish.pod:480
22750 msgid ""
22751 "This matters: If you accidentally open a live VM disk image writable then "
22752 "you will cause irreversible disk corruption."
22753 msgstr ""
22754
22755 #. type: textblock
22756 #: ../fish/guestfish.pod:483
22757 msgid ""
22758 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
22759 "images will be opened read-only.  You will have to either specify "
22760 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
22761 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
22762 "access for disk images specified by those other command line options."
22763 msgstr ""
22764
22765 #. type: textblock
22766 #: ../fish/guestfish.pod:490
22767 msgid ""
22768 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
22769 "which does nothing (it is already the default).  However it is highly "
22770 "recommended that you use this option to indicate that you need write access, "
22771 "and prepare your scripts for the day when this option will be required for "
22772 "write access."
22773 msgstr ""
22774
22775 # type: textblock
22776 #. type: textblock
22777 #: ../fish/guestfish.pod:496
22778 msgid ""
22779 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
22780 "other libguestfs program apart from guestfish and guestmount."
22781 msgstr ""
22782
22783 # type: =head1
22784 #. type: =head1
22785 #: ../fish/guestfish.pod:499
22786 msgid "QUOTING"
22787 msgstr ""
22788
22789 # type: textblock
22790 #. type: textblock
22791 #: ../fish/guestfish.pod:501
22792 msgid ""
22793 "You can quote ordinary parameters using either single or double quotes.  For "
22794 "example:"
22795 msgstr ""
22796
22797 # type: verbatim
22798 #. type: verbatim
22799 #: ../fish/guestfish.pod:504
22800 #, no-wrap
22801 msgid ""
22802 " add \"file with a space.img\"\n"
22803 "\n"
22804 msgstr ""
22805
22806 # type: verbatim
22807 #. type: verbatim
22808 #: ../fish/guestfish.pod:506
22809 #, no-wrap
22810 msgid ""
22811 " rm '/file name'\n"
22812 "\n"
22813 msgstr ""
22814
22815 # type: verbatim
22816 #. type: verbatim
22817 #: ../fish/guestfish.pod:508
22818 #, no-wrap
22819 msgid ""
22820 " rm '/\"'\n"
22821 "\n"
22822 msgstr ""
22823
22824 # type: textblock
22825 #. type: textblock
22826 #: ../fish/guestfish.pod:510
22827 msgid ""
22828 "A few commands require a list of strings to be passed.  For these, use a "
22829 "whitespace-separated list, enclosed in quotes.  Strings containing "
22830 "whitespace to be passed through must be enclosed in single quotes.  A "
22831 "literal single quote must be escaped with a backslash."
22832 msgstr ""
22833
22834 # type: verbatim
22835 #. type: verbatim
22836 #: ../fish/guestfish.pod:515
22837 #, no-wrap
22838 msgid ""
22839 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
22840 " command \"/bin/echo 'foo      bar'\"\n"
22841 " command \"/bin/echo \\'foo\\'\"\n"
22842 "\n"
22843 msgstr ""
22844
22845 # type: =head1
22846 #. type: =head1
22847 #: ../fish/guestfish.pod:519
22848 msgid "OPTIONAL ARGUMENTS"
22849 msgstr ""
22850
22851 # type: textblock
22852 #. type: textblock
22853 #: ../fish/guestfish.pod:521
22854 msgid ""
22855 "Some commands take optional arguments.  These arguments appear in this "
22856 "documentation as C<[argname:..]>.  You can use them as in these examples:"
22857 msgstr ""
22858
22859 # type: verbatim
22860 #. type: verbatim
22861 #: ../fish/guestfish.pod:525
22862 #, no-wrap
22863 msgid ""
22864 " add-drive-opts filename\n"
22865 "\n"
22866 msgstr ""
22867
22868 # type: verbatim
22869 #. type: verbatim
22870 #: ../fish/guestfish.pod:527
22871 #, no-wrap
22872 msgid ""
22873 " add-drive-opts filename readonly:true\n"
22874 "\n"
22875 msgstr ""
22876
22877 # type: verbatim
22878 #. type: verbatim
22879 #: ../fish/guestfish.pod:529
22880 #, no-wrap
22881 msgid ""
22882 " add-drive-opts filename format:qcow2 readonly:false\n"
22883 "\n"
22884 msgstr ""
22885
22886 # type: textblock
22887 #. type: textblock
22888 #: ../fish/guestfish.pod:531
22889 msgid ""
22890 "Each optional argument can appear at most once.  All optional arguments must "
22891 "appear after the required ones."
22892 msgstr ""
22893
22894 # type: =head1
22895 #. type: =head1
22896 #: ../fish/guestfish.pod:534
22897 msgid "NUMBERS"
22898 msgstr ""
22899
22900 # type: textblock
22901 #. type: textblock
22902 #: ../fish/guestfish.pod:536
22903 msgid ""
22904 "This section applies to all commands which can take integers as parameters."
22905 msgstr ""
22906
22907 # type: =head2
22908 #. type: =head2
22909 #: ../fish/guestfish.pod:539
22910 msgid "SIZE SUFFIX"
22911 msgstr ""
22912
22913 # type: textblock
22914 #. type: textblock
22915 #: ../fish/guestfish.pod:541
22916 msgid ""
22917 "When the command takes a parameter measured in bytes, you can use one of the "
22918 "following suffixes to specify kilobytes, megabytes and larger sizes:"
22919 msgstr ""
22920
22921 # type: =item
22922 #. type: =item
22923 #: ../fish/guestfish.pod:547
22924 msgid "B<k> or B<K> or B<KiB>"
22925 msgstr ""
22926
22927 # type: textblock
22928 #. type: textblock
22929 #: ../fish/guestfish.pod:549
22930 msgid "The size in kilobytes (multiplied by 1024)."
22931 msgstr ""
22932
22933 # type: =item
22934 #. type: =item
22935 #: ../fish/guestfish.pod:551
22936 msgid "B<KB>"
22937 msgstr ""
22938
22939 # type: textblock
22940 #. type: textblock
22941 #: ../fish/guestfish.pod:553
22942 msgid "The size in SI 1000 byte units."
22943 msgstr ""
22944
22945 # type: =item
22946 #. type: =item
22947 #: ../fish/guestfish.pod:555
22948 msgid "B<M> or B<MiB>"
22949 msgstr ""
22950
22951 # type: textblock
22952 #. type: textblock
22953 #: ../fish/guestfish.pod:557
22954 msgid "The size in megabytes (multiplied by 1048576)."
22955 msgstr ""
22956
22957 # type: =item
22958 #. type: =item
22959 #: ../fish/guestfish.pod:559
22960 msgid "B<MB>"
22961 msgstr ""
22962
22963 # type: textblock
22964 #. type: textblock
22965 #: ../fish/guestfish.pod:561
22966 msgid "The size in SI 1000000 byte units."
22967 msgstr ""
22968
22969 # type: =item
22970 #. type: =item
22971 #: ../fish/guestfish.pod:563
22972 msgid "B<G> or B<GiB>"
22973 msgstr ""
22974
22975 # type: textblock
22976 #. type: textblock
22977 #: ../fish/guestfish.pod:565
22978 msgid "The size in gigabytes (multiplied by 2**30)."
22979 msgstr ""
22980
22981 # type: =item
22982 #. type: =item
22983 #: ../fish/guestfish.pod:567
22984 msgid "B<GB>"
22985 msgstr ""
22986
22987 # type: textblock
22988 #. type: textblock
22989 #: ../fish/guestfish.pod:569
22990 msgid "The size in SI 10**9 byte units."
22991 msgstr ""
22992
22993 # type: =item
22994 #. type: =item
22995 #: ../fish/guestfish.pod:571
22996 msgid "B<T> or B<TiB>"
22997 msgstr ""
22998
22999 # type: textblock
23000 #. type: textblock
23001 #: ../fish/guestfish.pod:573
23002 msgid "The size in terabytes (multiplied by 2**40)."
23003 msgstr ""
23004
23005 # type: =item
23006 #. type: =item
23007 #: ../fish/guestfish.pod:575
23008 msgid "B<TB>"
23009 msgstr ""
23010
23011 # type: textblock
23012 #. type: textblock
23013 #: ../fish/guestfish.pod:577
23014 msgid "The size in SI 10**12 byte units."
23015 msgstr ""
23016
23017 # type: =item
23018 #. type: =item
23019 #: ../fish/guestfish.pod:579
23020 msgid "B<P> or B<PiB>"
23021 msgstr ""
23022
23023 # type: textblock
23024 #. type: textblock
23025 #: ../fish/guestfish.pod:581
23026 msgid "The size in petabytes (multiplied by 2**50)."
23027 msgstr ""
23028
23029 # type: =item
23030 #. type: =item
23031 #: ../fish/guestfish.pod:583
23032 msgid "B<PB>"
23033 msgstr ""
23034
23035 # type: textblock
23036 #. type: textblock
23037 #: ../fish/guestfish.pod:585
23038 msgid "The size in SI 10**15 byte units."
23039 msgstr ""
23040
23041 # type: =item
23042 #. type: =item
23043 #: ../fish/guestfish.pod:587
23044 msgid "B<E> or B<EiB>"
23045 msgstr ""
23046
23047 # type: textblock
23048 #. type: textblock
23049 #: ../fish/guestfish.pod:589
23050 msgid "The size in exabytes (multiplied by 2**60)."
23051 msgstr ""
23052
23053 # type: =item
23054 #. type: =item
23055 #: ../fish/guestfish.pod:591
23056 msgid "B<EB>"
23057 msgstr ""
23058
23059 # type: textblock
23060 #. type: textblock
23061 #: ../fish/guestfish.pod:593
23062 msgid "The size in SI 10**18 byte units."
23063 msgstr ""
23064
23065 # type: =item
23066 #. type: =item
23067 #: ../fish/guestfish.pod:595
23068 msgid "B<Z> or B<ZiB>"
23069 msgstr ""
23070
23071 # type: textblock
23072 #. type: textblock
23073 #: ../fish/guestfish.pod:597
23074 msgid "The size in zettabytes (multiplied by 2**70)."
23075 msgstr ""
23076
23077 # type: =item
23078 #. type: =item
23079 #: ../fish/guestfish.pod:599
23080 msgid "B<ZB>"
23081 msgstr ""
23082
23083 # type: textblock
23084 #. type: textblock
23085 #: ../fish/guestfish.pod:601
23086 msgid "The size in SI 10**21 byte units."
23087 msgstr ""
23088
23089 # type: =item
23090 #. type: =item
23091 #: ../fish/guestfish.pod:603
23092 msgid "B<Y> or B<YiB>"
23093 msgstr ""
23094
23095 # type: textblock
23096 #. type: textblock
23097 #: ../fish/guestfish.pod:605
23098 msgid "The size in yottabytes (multiplied by 2**80)."
23099 msgstr ""
23100
23101 # type: =item
23102 #. type: =item
23103 #: ../fish/guestfish.pod:607
23104 msgid "B<YB>"
23105 msgstr ""
23106
23107 # type: textblock
23108 #. type: textblock
23109 #: ../fish/guestfish.pod:609
23110 msgid "The size in SI 10**24 byte units."
23111 msgstr ""
23112
23113 # type: verbatim
23114 #. type: verbatim
23115 #: ../fish/guestfish.pod:615
23116 #, no-wrap
23117 msgid ""
23118 " truncate-size /file 1G\n"
23119 "\n"
23120 msgstr ""
23121
23122 # type: textblock
23123 #. type: textblock
23124 #: ../fish/guestfish.pod:617
23125 msgid "would truncate the file to 1 gigabyte."
23126 msgstr ""
23127
23128 # type: textblock
23129 #. type: textblock
23130 #: ../fish/guestfish.pod:619
23131 msgid ""
23132 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
23133 "the parameter to L</memsize> is specified in megabytes already).  Adding a "
23134 "suffix will probably not do what you expect."
23135 msgstr ""
23136
23137 # type: =head2
23138 #. type: =head2
23139 #: ../fish/guestfish.pod:623
23140 msgid "OCTAL AND HEXADECIMAL NUMBERS"
23141 msgstr ""
23142
23143 # type: textblock
23144 #. type: textblock
23145 #: ../fish/guestfish.pod:625
23146 msgid ""
23147 "For specifying the radix (base) use the C convention: C<0> to prefix an "
23148 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
23149 msgstr ""
23150
23151 # type: verbatim
23152 #. type: verbatim
23153 #: ../fish/guestfish.pod:628
23154 #, no-wrap
23155 msgid ""
23156 " 1234      decimal number 1234\n"
23157 " 02322     octal number, equivalent to decimal 1234\n"
23158 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
23159 "\n"
23160 msgstr ""
23161
23162 # type: textblock
23163 #. type: textblock
23164 #: ../fish/guestfish.pod:632
23165 msgid ""
23166 "When using the C<chmod> command, you almost always want to specify an octal "
23167 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
23168 "L<chmod(1)> program):"
23169 msgstr ""
23170
23171 # type: verbatim
23172 #. type: verbatim
23173 #: ../fish/guestfish.pod:636
23174 #, no-wrap
23175 msgid ""
23176 " chmod 0777 /public  # OK\n"
23177 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
23178 "\n"
23179 msgstr ""
23180
23181 # type: textblock
23182 #. type: textblock
23183 #: ../fish/guestfish.pod:639
23184 msgid ""
23185 "Commands that return numbers usually print them in decimal, but some "
23186 "commands print numbers in other radices (eg. C<umask> prints the mode in "
23187 "octal, preceeded by C<0>)."
23188 msgstr ""
23189
23190 # type: =head1
23191 #. type: =head1
23192 #: ../fish/guestfish.pod:643
23193 msgid "WILDCARDS AND GLOBBING"
23194 msgstr ""
23195
23196 # type: textblock
23197 #. type: textblock
23198 #: ../fish/guestfish.pod:645
23199 msgid ""
23200 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
23201 "(globbing) by default.  So for example the following will not do what you "
23202 "expect:"
23203 msgstr ""
23204
23205 # type: verbatim
23206 #. type: verbatim
23207 #: ../fish/guestfish.pod:649
23208 #, no-wrap
23209 msgid ""
23210 " rm-rf /home/*\n"
23211 "\n"
23212 msgstr ""
23213
23214 # type: textblock
23215 #. type: textblock
23216 #: ../fish/guestfish.pod:651
23217 msgid ""
23218 "Assuming you don't have a directory called literally C</home/*> then the "
23219 "above command will return an error."
23220 msgstr ""
23221
23222 # type: textblock
23223 #. type: textblock
23224 #: ../fish/guestfish.pod:654
23225 msgid "To perform wildcard expansion, use the C<glob> command."
23226 msgstr ""
23227
23228 # type: verbatim
23229 #. type: verbatim
23230 #: ../fish/guestfish.pod:656
23231 #, no-wrap
23232 msgid ""
23233 " glob rm-rf /home/*\n"
23234 "\n"
23235 msgstr ""
23236
23237 # type: textblock
23238 #. type: textblock
23239 #: ../fish/guestfish.pod:658
23240 msgid ""
23241 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
23242 "many times), equivalent to:"
23243 msgstr ""
23244
23245 # type: verbatim
23246 #. type: verbatim
23247 #: ../fish/guestfish.pod:661
23248 #, no-wrap
23249 msgid ""
23250 " rm-rf /home/jim\n"
23251 " rm-rf /home/joe\n"
23252 " rm-rf /home/mary\n"
23253 "\n"
23254 msgstr ""
23255
23256 # type: textblock
23257 #. type: textblock
23258 #: ../fish/guestfish.pod:665
23259 msgid "C<glob> only works on simple guest paths and not on device names."
23260 msgstr ""
23261
23262 # type: textblock
23263 #. type: textblock
23264 #: ../fish/guestfish.pod:667
23265 msgid ""
23266 "If you have several parameters, each containing a wildcard, then glob will "
23267 "perform a Cartesian product."
23268 msgstr ""
23269
23270 # type: =head1
23271 #. type: =head1
23272 #: ../fish/guestfish.pod:670
23273 msgid "COMMENTS"
23274 msgstr ""
23275
23276 # type: textblock
23277 #. type: textblock
23278 #: ../fish/guestfish.pod:672
23279 msgid ""
23280 "Any line which starts with a I<#> character is treated as a comment and "
23281 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
23282 "a command.  For example:"
23283 msgstr ""
23284
23285 # type: verbatim
23286 #. type: verbatim
23287 #: ../fish/guestfish.pod:676
23288 #, no-wrap
23289 msgid ""
23290 " # this is a comment\n"
23291 "         # this is a comment\n"
23292 " foo # NOT a comment\n"
23293 "\n"
23294 msgstr ""
23295
23296 # type: textblock
23297 #. type: textblock
23298 #: ../fish/guestfish.pod:680
23299 msgid "Blank lines are also ignored."
23300 msgstr ""
23301
23302 # type: =head1
23303 #. type: =head1
23304 #: ../fish/guestfish.pod:682
23305 msgid "RUNNING COMMANDS LOCALLY"
23306 msgstr ""
23307
23308 # type: textblock
23309 #. type: textblock
23310 #: ../fish/guestfish.pod:684
23311 msgid ""
23312 "Any line which starts with a I<!> character is treated as a command sent to "
23313 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
23314 msgstr ""
23315
23316 # type: verbatim
23317 #. type: verbatim
23318 #: ../fish/guestfish.pod:688
23319 #, no-wrap
23320 msgid ""
23321 " !mkdir local\n"
23322 " tgz-out /remote local/remote-data.tar.gz\n"
23323 "\n"
23324 msgstr ""
23325
23326 # type: textblock
23327 #. type: textblock
23328 #: ../fish/guestfish.pod:691
23329 msgid ""
23330 "will create a directory C<local> on the host, and then export the contents "
23331 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
23332 "(See C<tgz-out>)."
23333 msgstr ""
23334
23335 # type: textblock
23336 #. type: textblock
23337 #: ../fish/guestfish.pod:695
23338 msgid ""
23339 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
23340 "effect, due to the way that subprocesses work in Unix."
23341 msgstr ""
23342
23343 #. type: =head2
23344 #: ../fish/guestfish.pod:698
23345 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
23346 msgstr ""
23347
23348 #. type: textblock
23349 #: ../fish/guestfish.pod:700
23350 msgid ""
23351 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
23352 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
23353 "and executed as guestfish commands."
23354 msgstr ""
23355
23356 #. type: textblock
23357 #: ../fish/guestfish.pod:704
23358 msgid ""
23359 "Thus you can use shell script to construct arbitrary guestfish commands "
23360 "which are then parsed by guestfish."
23361 msgstr ""
23362
23363 #. type: textblock
23364 #: ../fish/guestfish.pod:707
23365 msgid ""
23366 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
23367 "through C</foo.100>) using guestfish commands alone.  However this is simple "
23368 "if we use a shell script to create the guestfish commands for us:"
23369 msgstr ""
23370
23371 #. type: verbatim
23372 #: ../fish/guestfish.pod:712
23373 #, no-wrap
23374 msgid ""
23375 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
23376 "\n"
23377 msgstr ""
23378
23379 #. type: textblock
23380 #: ../fish/guestfish.pod:714
23381 msgid "or with names like C</foo.001>:"
23382 msgstr ""
23383
23384 #. type: verbatim
23385 #: ../fish/guestfish.pod:716
23386 #, no-wrap
23387 msgid ""
23388 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
23389 "\n"
23390 msgstr ""
23391
23392 #. type: textblock
23393 #: ../fish/guestfish.pod:718
23394 msgid ""
23395 "When using guestfish interactively it can be helpful to just run the shell "
23396 "script first (ie. remove the initial C<E<lt>> character so it is just an "
23397 "ordinary I<!> local command), see what guestfish commands it would run, and "
23398 "when you are happy with those prepend the C<E<lt>> character to run the "
23399 "guestfish commands for real."
23400 msgstr ""
23401
23402 # type: =head1
23403 #. type: =head1
23404 #: ../fish/guestfish.pod:724
23405 msgid "PIPES"
23406 msgstr ""
23407
23408 # type: textblock
23409 #. type: textblock
23410 #: ../fish/guestfish.pod:726
23411 msgid ""
23412 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
23413 "command (a guestfish command) to the second command (any host command).  For "
23414 "example:"
23415 msgstr ""
23416
23417 # type: verbatim
23418 #. type: verbatim
23419 #: ../fish/guestfish.pod:730
23420 #, no-wrap
23421 msgid ""
23422 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
23423 "\n"
23424 msgstr ""
23425
23426 # type: textblock
23427 #. type: textblock
23428 #: ../fish/guestfish.pod:732
23429 msgid ""
23430 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
23431 "program).  The above command would list all accounts in the guest filesystem "
23432 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
23433 msgstr ""
23434
23435 # type: verbatim
23436 #. type: verbatim
23437 #: ../fish/guestfish.pod:737
23438 #, no-wrap
23439 msgid ""
23440 " hexdump /bin/ls | head\n"
23441 " list-devices | tail -1\n"
23442 " tgz-out / - | tar ztf -\n"
23443 "\n"
23444 msgstr ""
23445
23446 # type: textblock
23447 #. type: textblock
23448 #: ../fish/guestfish.pod:741
23449 msgid ""
23450 "The space before the pipe symbol is required, any space after the pipe "
23451 "symbol is optional.  Everything after the pipe symbol is just passed "
23452 "straight to the host shell, so it can contain redirections, globs and "
23453 "anything else that makes sense on the host side."
23454 msgstr ""
23455
23456 # type: textblock
23457 #. type: textblock
23458 #: ../fish/guestfish.pod:746
23459 msgid ""
23460 "To use a literal argument which begins with a pipe symbol, you have to quote "
23461 "it, eg:"
23462 msgstr ""
23463
23464 # type: verbatim
23465 #. type: verbatim
23466 #: ../fish/guestfish.pod:749
23467 #, no-wrap
23468 msgid ""
23469 " echo \"|\"\n"
23470 "\n"
23471 msgstr ""
23472
23473 # type: =head1
23474 #. type: =head1
23475 #: ../fish/guestfish.pod:751
23476 msgid "HOME DIRECTORIES"
23477 msgstr ""
23478
23479 # type: textblock
23480 #. type: textblock
23481 #: ../fish/guestfish.pod:753
23482 msgid ""
23483 "If a parameter starts with the character C<~> then the tilde may be expanded "
23484 "as a home directory path (either C<~> for the current user's home directory, "
23485 "or C<~user> for another user)."
23486 msgstr ""
23487
23488 # type: textblock
23489 #. type: textblock
23490 #: ../fish/guestfish.pod:757
23491 msgid ""
23492 "Note that home directory expansion happens for users known I<on the host>, "
23493 "not in the guest filesystem."
23494 msgstr ""
23495
23496 # type: textblock
23497 #. type: textblock
23498 #: ../fish/guestfish.pod:760
23499 msgid ""
23500 "To use a literal argument which begins with a tilde, you have to quote it, "
23501 "eg:"
23502 msgstr ""
23503
23504 # type: verbatim
23505 #. type: verbatim
23506 #: ../fish/guestfish.pod:763
23507 #, no-wrap
23508 msgid ""
23509 " echo \"~\"\n"
23510 "\n"
23511 msgstr ""
23512
23513 # type: textblock
23514 #. type: textblock
23515 #: ../fish/guestfish.pod:767
23516 msgid ""
23517 "Libguestfs has some support for Linux guests encrypted according to the "
23518 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
23519 "disk encryption systems used by modern Linux guests.  Currently only LVM-on-"
23520 "LUKS is supported."
23521 msgstr ""
23522
23523 # type: textblock
23524 #. type: textblock
23525 #: ../fish/guestfish.pod:772
23526 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
23527 msgstr ""
23528
23529 # type: verbatim
23530 #. type: verbatim
23531 #: ../fish/guestfish.pod:774
23532 #, no-wrap
23533 msgid ""
23534 " ><fs> vfs-type /dev/sda2\n"
23535 " crypto_LUKS\n"
23536 "\n"
23537 msgstr ""
23538
23539 # type: textblock
23540 #. type: textblock
23541 #: ../fish/guestfish.pod:777
23542 msgid ""
23543 "Then open those devices using L</luks-open>.  This creates a device-mapper "
23544 "device called C</dev/mapper/luksdev>."
23545 msgstr ""
23546
23547 # type: verbatim
23548 #. type: verbatim
23549 #: ../fish/guestfish.pod:780
23550 #, no-wrap
23551 msgid ""
23552 " ><fs> luks-open /dev/sda2 luksdev\n"
23553 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
23554 "\n"
23555 msgstr ""
23556
23557 # type: textblock
23558 #. type: textblock
23559 #: ../fish/guestfish.pod:783
23560 msgid ""
23561 "Finally you have to tell LVM to scan for volume groups on the newly created "
23562 "mapper device:"
23563 msgstr ""
23564
23565 # type: verbatim
23566 #. type: verbatim
23567 #: ../fish/guestfish.pod:786
23568 #, no-wrap
23569 msgid ""
23570 " vgscan\n"
23571 " vg-activate-all true\n"
23572 "\n"
23573 msgstr ""
23574
23575 # type: textblock
23576 #. type: textblock
23577 #: ../fish/guestfish.pod:789
23578 msgid "The logical volume(s) can now be mounted in the usual way."
23579 msgstr ""
23580
23581 # type: textblock
23582 #. type: textblock
23583 #: ../fish/guestfish.pod:791
23584 msgid ""
23585 "Before closing a LUKS device you must unmount any logical volumes on it and "
23586 "deactivate the volume groups by calling C<vg-activate false VG> on each "
23587 "one.  Then you can close the mapper device:"
23588 msgstr ""
23589
23590 # type: verbatim
23591 #. type: verbatim
23592 #: ../fish/guestfish.pod:795
23593 #, no-wrap
23594 msgid ""
23595 " vg-activate false /dev/VG\n"
23596 " luks-close /dev/mapper/luksdev\n"
23597 "\n"
23598 msgstr ""
23599
23600 # type: =head1
23601 #. type: =head1
23602 #: ../fish/guestfish.pod:798 ../tools/virt-edit.pl:342
23603 msgid "WINDOWS PATHS"
23604 msgstr ""
23605
23606 #. type: textblock
23607 #: ../fish/guestfish.pod:800
23608 msgid ""
23609 "If a path is prefixed with C<win:> then you can use Windows-style drive "
23610 "letters and paths (with some limitations).  The following commands are "
23611 "equivalent:"
23612 msgstr ""
23613
23614 # type: verbatim
23615 #. type: verbatim
23616 #: ../fish/guestfish.pod:804
23617 #, no-wrap
23618 msgid ""
23619 " file /WINDOWS/system32/config/system.LOG\n"
23620 "\n"
23621 msgstr ""
23622
23623 # type: verbatim
23624 #. type: verbatim
23625 #: ../fish/guestfish.pod:806
23626 #, no-wrap
23627 msgid ""
23628 " file win:\\windows\\system32\\config\\system.log\n"
23629 "\n"
23630 msgstr ""
23631
23632 #. type: verbatim
23633 #: ../fish/guestfish.pod:808
23634 #, no-wrap
23635 msgid ""
23636 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
23637 "\n"
23638 msgstr ""
23639
23640 #. type: textblock
23641 #: ../fish/guestfish.pod:810
23642 msgid ""
23643 "The parameter is rewritten \"behind the scenes\" by looking up the position "
23644 "where the drive is mounted, prepending that to the path, changing all "
23645 "backslash characters to forward slash, then resolving the result using L</"
23646 "case-sensitive-path>.  For example if the E: drive was mounted on C</e> then "
23647 "the parameter might be rewritten like this:"
23648 msgstr ""
23649
23650 #. type: verbatim
23651 #: ../fish/guestfish.pod:816
23652 #, no-wrap
23653 msgid ""
23654 " win:e:\\foo\\bar => /e/FOO/bar\n"
23655 "\n"
23656 msgstr ""
23657
23658 #. type: textblock
23659 #: ../fish/guestfish.pod:818
23660 msgid "This only works in argument positions that expect a path."
23661 msgstr ""
23662
23663 # type: =head1
23664 #. type: =head1
23665 #: ../fish/guestfish.pod:820
23666 msgid "UPLOADING AND DOWNLOADING FILES"
23667 msgstr ""
23668
23669 # type: textblock
23670 #. type: textblock
23671 #: ../fish/guestfish.pod:822
23672 msgid ""
23673 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
23674 "others which upload from or download to a local file, you can use the "
23675 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
23676 msgstr ""
23677
23678 # type: verbatim
23679 #. type: verbatim
23680 #: ../fish/guestfish.pod:826
23681 #, no-wrap
23682 msgid ""
23683 " upload - /foo\n"
23684 "\n"
23685 msgstr ""
23686
23687 # type: textblock
23688 #. type: textblock
23689 #: ../fish/guestfish.pod:828
23690 msgid ""
23691 "reads stdin and creates from that a file C</foo> in the disk image, and:"
23692 msgstr ""
23693
23694 # type: verbatim
23695 #. type: verbatim
23696 #: ../fish/guestfish.pod:831
23697 #, no-wrap
23698 msgid ""
23699 " tar-out /etc - | tar tf -\n"
23700 "\n"
23701 msgstr ""
23702
23703 # type: textblock
23704 #. type: textblock
23705 #: ../fish/guestfish.pod:833
23706 msgid ""
23707 "writes the tarball to stdout and then pipes that into the external \"tar\" "
23708 "command (see L</PIPES>)."
23709 msgstr ""
23710
23711 # type: textblock
23712 #. type: textblock
23713 #: ../fish/guestfish.pod:836
23714 msgid ""
23715 "When using C<-> to read from stdin, the input is read up to the end of "
23716 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
23717 "some arbitrary end marker:"
23718 msgstr ""
23719
23720 # type: verbatim
23721 #. type: verbatim
23722 #: ../fish/guestfish.pod:840
23723 #, no-wrap
23724 msgid ""
23725 " upload -<<END /foo\n"
23726 " input line 1\n"
23727 " input line 2\n"
23728 " input line 3\n"
23729 " END\n"
23730 "\n"
23731 msgstr ""
23732
23733 # type: textblock
23734 #. type: textblock
23735 #: ../fish/guestfish.pod:846
23736 msgid ""
23737 "Any string of characters can be used instead of C<END>.  The end marker must "
23738 "appear on a line of its own, without any preceeding or following characters "
23739 "(not even spaces)."
23740 msgstr ""
23741
23742 # type: textblock
23743 #. type: textblock
23744 #: ../fish/guestfish.pod:850
23745 msgid ""
23746 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
23747 "upload local files (so-called \"FileIn\" parameters in the generator)."
23748 msgstr ""
23749
23750 # type: =head1
23751 #. type: =head1
23752 #: ../fish/guestfish.pod:853
23753 msgid "EXIT ON ERROR BEHAVIOUR"
23754 msgstr ""
23755
23756 # type: textblock
23757 #. type: textblock
23758 #: ../fish/guestfish.pod:855
23759 msgid ""
23760 "By default, guestfish will ignore any errors when in interactive mode (ie. "
23761 "taking commands from a human over a tty), and will exit on the first error "
23762 "in non-interactive mode (scripts, commands given on the command line)."
23763 msgstr ""
23764
23765 # type: textblock
23766 #. type: textblock
23767 #: ../fish/guestfish.pod:860
23768 msgid ""
23769 "If you prefix a command with a I<-> character, then that command will not "
23770 "cause guestfish to exit, even if that (one) command returns an error."
23771 msgstr ""
23772
23773 # type: =head1
23774 #. type: =head1
23775 #: ../fish/guestfish.pod:864
23776 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
23777 msgstr ""
23778
23779 # type: textblock
23780 #. type: textblock
23781 #: ../fish/guestfish.pod:866
23782 msgid ""
23783 "Guestfish can be remote-controlled over a socket.  This is useful "
23784 "particularly in shell scripts where you want to make several different "
23785 "changes to a filesystem, but you don't want the overhead of starting up a "
23786 "guestfish process each time."
23787 msgstr ""
23788
23789 # type: textblock
23790 #. type: textblock
23791 #: ../fish/guestfish.pod:871
23792 msgid "Start a guestfish server process using:"
23793 msgstr ""
23794
23795 # type: verbatim
23796 #. type: verbatim
23797 #: ../fish/guestfish.pod:873
23798 #, no-wrap
23799 msgid ""
23800 " eval \"`guestfish --listen`\"\n"
23801 "\n"
23802 msgstr ""
23803
23804 # type: textblock
23805 #. type: textblock
23806 #: ../fish/guestfish.pod:875
23807 msgid "and then send it commands by doing:"
23808 msgstr ""
23809
23810 # type: verbatim
23811 #. type: verbatim
23812 #: ../fish/guestfish.pod:877
23813 #, no-wrap
23814 msgid ""
23815 " guestfish --remote cmd [...]\n"
23816 "\n"
23817 msgstr ""
23818
23819 # type: textblock
23820 #. type: textblock
23821 #: ../fish/guestfish.pod:879
23822 msgid "To cause the server to exit, send it the exit command:"
23823 msgstr ""
23824
23825 # type: verbatim
23826 #. type: verbatim
23827 #: ../fish/guestfish.pod:881
23828 #, no-wrap
23829 msgid ""
23830 " guestfish --remote exit\n"
23831 "\n"
23832 msgstr ""
23833
23834 # type: textblock
23835 #. type: textblock
23836 #: ../fish/guestfish.pod:883
23837 msgid ""
23838 "Note that the server will normally exit if there is an error in a command.  "
23839 "You can change this in the usual way.  See section L</EXIT ON ERROR "
23840 "BEHAVIOUR>."
23841 msgstr ""
23842
23843 # type: =head2
23844 #. type: =head2
23845 #: ../fish/guestfish.pod:887
23846 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
23847 msgstr ""
23848
23849 # type: textblock
23850 #. type: textblock
23851 #: ../fish/guestfish.pod:889
23852 msgid ""
23853 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
23854 "is how the I<--remote> option knows where to send the commands.  You can "
23855 "have several guestfish listener processes running using:"
23856 msgstr ""
23857
23858 # type: verbatim
23859 #. type: verbatim
23860 #: ../fish/guestfish.pod:893
23861 #, no-wrap
23862 msgid ""
23863 " eval \"`guestfish --listen`\"\n"
23864 " pid1=$GUESTFISH_PID\n"
23865 " eval \"`guestfish --listen`\"\n"
23866 " pid2=$GUESTFISH_PID\n"
23867 " ...\n"
23868 " guestfish --remote=$pid1 cmd\n"
23869 " guestfish --remote=$pid2 cmd\n"
23870 "\n"
23871 msgstr ""
23872
23873 # type: =head2
23874 #. type: =head2
23875 #: ../fish/guestfish.pod:901
23876 msgid "REMOTE CONTROL AND CSH"
23877 msgstr ""
23878
23879 # type: textblock
23880 #. type: textblock
23881 #: ../fish/guestfish.pod:903
23882 msgid ""
23883 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
23884 "option:"
23885 msgstr ""
23886
23887 # type: verbatim
23888 #. type: verbatim
23889 #: ../fish/guestfish.pod:906
23890 #, no-wrap
23891 msgid ""
23892 " eval \"`guestfish --listen --csh`\"\n"
23893 "\n"
23894 msgstr ""
23895
23896 # type: =head2
23897 #. type: =head2
23898 #: ../fish/guestfish.pod:908
23899 msgid "REMOTE CONTROL DETAILS"
23900 msgstr ""
23901
23902 # type: textblock
23903 #. type: textblock
23904 #: ../fish/guestfish.pod:910
23905 msgid ""
23906 "Remote control happens over a Unix domain socket called C</tmp/.guestfish-"
23907 "$UID/socket-$PID>, where C<$UID> is the effective user ID of the process, "
23908 "and C<$PID> is the process ID of the server."
23909 msgstr ""
23910
23911 # type: textblock
23912 #. type: textblock
23913 #: ../fish/guestfish.pod:914
23914 msgid "Guestfish client and server versions must match exactly."
23915 msgstr ""
23916
23917 # type: =head1
23918 #. type: =head1
23919 #: ../fish/guestfish.pod:916
23920 msgid "PREPARED DISK IMAGES"
23921 msgstr ""
23922
23923 # type: textblock
23924 #. type: textblock
23925 #: ../fish/guestfish.pod:918
23926 msgid ""
23927 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
23928 "preformatted disk images that guestfish can make for you to save typing.  "
23929 "This is particularly useful for testing purposes.  This option is used "
23930 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
23931 "can be mixed with I<-a>)."
23932 msgstr ""
23933
23934 # type: textblock
23935 #. type: textblock
23936 #: ../fish/guestfish.pod:924
23937 msgid ""
23938 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
23939 "the second and so on.  Existing files in the current directory are "
23940 "I<overwritten>."
23941 msgstr ""
23942
23943 # type: textblock
23944 #. type: textblock
23945 #: ../fish/guestfish.pod:928
23946 msgid ""
23947 "The type briefly describes how the disk should be sized, partitioned, how "
23948 "filesystem(s) should be created, and how content should be added.  "
23949 "Optionally the type can be followed by extra parameters, separated by C<:> "
23950 "(colon) characters.  For example, I<-N fs> creates a default 100MB, sparsely-"
23951 "allocated disk, containing a single partition, with the partition formatted "
23952 "as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem on a 1GB "
23953 "disk instead."
23954 msgstr ""
23955
23956 # type: textblock
23957 #. type: textblock
23958 #: ../fish/guestfish.pod:936
23959 msgid "To list the available types and any extra parameters they take, run:"
23960 msgstr ""
23961
23962 # type: textblock
23963 #. type: textblock
23964 #: ../fish/guestfish.pod:940
23965 msgid ""
23966 "Note that the prepared filesystem is not mounted.  You would usually have to "
23967 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
23968 msgstr ""
23969
23970 # type: textblock
23971 #. type: textblock
23972 #: ../fish/guestfish.pod:944
23973 msgid ""
23974 "If any I<-N> or I<--new> options are given, the guest is automatically "
23975 "launched."
23976 msgstr ""
23977
23978 # type: textblock
23979 #. type: textblock
23980 #: ../fish/guestfish.pod:949
23981 msgid "Create a 100MB disk with an ext4-formatted partition:"
23982 msgstr ""
23983
23984 # type: verbatim
23985 #. type: verbatim
23986 #: ../fish/guestfish.pod:951
23987 #, no-wrap
23988 msgid ""
23989 " guestfish -N fs:ext4\n"
23990 "\n"
23991 msgstr ""
23992
23993 # type: textblock
23994 #. type: textblock
23995 #: ../fish/guestfish.pod:953
23996 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
23997 msgstr ""
23998
23999 # type: verbatim
24000 #. type: verbatim
24001 #: ../fish/guestfish.pod:955
24002 #, no-wrap
24003 msgid ""
24004 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
24005 "\n"
24006 msgstr ""
24007
24008 # type: textblock
24009 #. type: textblock
24010 #: ../fish/guestfish.pod:957
24011 msgid "Create a blank 200MB disk:"
24012 msgstr ""
24013
24014 # type: verbatim
24015 #. type: verbatim
24016 #: ../fish/guestfish.pod:959
24017 #, no-wrap
24018 msgid ""
24019 " guestfish -N disk:200M\n"
24020 "\n"
24021 msgstr ""
24022
24023 # type: =head1
24024 #. type: =head1
24025 #: ../fish/guestfish.pod:961
24026 msgid "PROGRESS BARS"
24027 msgstr ""
24028
24029 # type: textblock
24030 #. type: textblock
24031 #: ../fish/guestfish.pod:963
24032 msgid ""
24033 "Some (not all) long-running commands send progress notification messages as "
24034 "they are running.  Guestfish turns these messages into progress bars."
24035 msgstr ""
24036
24037 # type: textblock
24038 #. type: textblock
24039 #: ../fish/guestfish.pod:967
24040 msgid ""
24041 "When a command that supports progress bars takes longer than two seconds to "
24042 "run, and if progress bars are enabled, then you will see one appearing below "
24043 "the command:"
24044 msgstr ""
24045
24046 # type: verbatim
24047 #. type: verbatim
24048 #: ../fish/guestfish.pod:971
24049 #, no-wrap
24050 msgid ""
24051 " ><fs> copy-size /large-file /another-file 2048M\n"
24052 " / 10% [#####-----------------------------------------] 00:30\n"
24053 "\n"
24054 msgstr ""
24055
24056 # type: textblock
24057 #. type: textblock
24058 #: ../fish/guestfish.pod:974
24059 msgid ""
24060 "The spinner on the left hand side moves round once for every progress "
24061 "notification received from the backend.  This is a (reasonably) golden "
24062 "assurance that the command is \"doing something\" even if the progress bar "
24063 "is not moving, because the command is able to send the progress "
24064 "notifications.  When the bar reaches 100% and the command finishes, the "
24065 "spinner disappears."
24066 msgstr ""
24067
24068 # type: textblock
24069 #. type: textblock
24070 #: ../fish/guestfish.pod:981
24071 msgid ""
24072 "Progress bars are enabled by default when guestfish is used interactively.  "
24073 "You can enable them even for non-interactive modes using I<--progress-bars>, "
24074 "and you can disable them completely using I<--no-progress-bars>."
24075 msgstr ""
24076
24077 # type: =head1
24078 #. type: =head1
24079 #: ../fish/guestfish.pod:986
24080 msgid "GUESTFISH COMMANDS"
24081 msgstr ""
24082
24083 # type: textblock
24084 #. type: textblock
24085 #: ../fish/guestfish.pod:988
24086 msgid ""
24087 "The commands in this section are guestfish convenience commands, in other "
24088 "words, they are not part of the L<guestfs(3)> API."
24089 msgstr ""
24090
24091 # type: =head2
24092 #. type: =head2
24093 #: ../fish/guestfish.pod:991
24094 msgid "help"
24095 msgstr ""
24096
24097 # type: verbatim
24098 #. type: verbatim
24099 #: ../fish/guestfish.pod:993
24100 #, no-wrap
24101 msgid ""
24102 " help\n"
24103 " help cmd\n"
24104 "\n"
24105 msgstr ""
24106
24107 # type: textblock
24108 #. type: textblock
24109 #: ../fish/guestfish.pod:996
24110 msgid "Without any parameter, this provides general help."
24111 msgstr ""
24112
24113 # type: textblock
24114 #. type: textblock
24115 #: ../fish/guestfish.pod:998
24116 msgid "With a C<cmd> parameter, this displays detailed help for that command."
24117 msgstr ""
24118
24119 # type: =head2
24120 #. type: =head2
24121 #: ../fish/guestfish.pod:1000
24122 msgid "quit | exit"
24123 msgstr ""
24124
24125 # type: textblock
24126 #. type: textblock
24127 #: ../fish/guestfish.pod:1002
24128 msgid "This exits guestfish.  You can also use C<^D> key."
24129 msgstr ""
24130
24131 # type: textblock
24132 #. type: textblock
24133 #: ../fish/guestfish.pod:1004
24134 msgid "@FISH_COMMANDS@"
24135 msgstr ""
24136
24137 # type: =head1
24138 #. type: =head1
24139 #: ../fish/guestfish.pod:1006
24140 msgid "COMMANDS"
24141 msgstr ""
24142
24143 # type: =head1
24144 #. type: =head1
24145 #: ../fish/guestfish.pod:1010 ../test-tool/libguestfs-test-tool.pod:77
24146 msgid "EXIT CODE"
24147 msgstr ""
24148
24149 # type: textblock
24150 #. type: textblock
24151 #: ../fish/guestfish.pod:1012
24152 msgid ""
24153 "guestfish returns 0 if the commands completed without error, or 1 if there "
24154 "was an error."
24155 msgstr ""
24156
24157 # type: =item
24158 #. type: =item
24159 #: ../fish/guestfish.pod:1019
24160 msgid "EDITOR"
24161 msgstr ""
24162
24163 # type: textblock
24164 #. type: textblock
24165 #: ../fish/guestfish.pod:1021
24166 msgid ""
24167 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
24168 "C<vi>."
24169 msgstr ""
24170
24171 # type: =item
24172 #. type: =item
24173 #: ../fish/guestfish.pod:1024
24174 msgid "GUESTFISH_PID"
24175 msgstr ""
24176
24177 # type: textblock
24178 #. type: textblock
24179 #: ../fish/guestfish.pod:1026
24180 msgid ""
24181 "Used with the I<--remote> option to specify the remote guestfish process to "
24182 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
24183 msgstr ""
24184
24185 # type: =item
24186 #. type: =item
24187 #: ../fish/guestfish.pod:1030
24188 msgid "HEXEDITOR"
24189 msgstr ""
24190
24191 # type: textblock
24192 #. type: textblock
24193 #: ../fish/guestfish.pod:1032
24194 msgid ""
24195 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
24196 "not specified, the external L<hexedit(1)> program is used."
24197 msgstr ""
24198
24199 # type: =item
24200 #. type: =item
24201 #: ../fish/guestfish.pod:1036
24202 msgid "HOME"
24203 msgstr ""
24204
24205 # type: textblock
24206 #. type: textblock
24207 #: ../fish/guestfish.pod:1038
24208 msgid ""
24209 "If compiled with GNU readline support, various files in the home directory "
24210 "can be used.  See L</FILES>."
24211 msgstr ""
24212
24213 # type: textblock
24214 #. type: textblock
24215 #: ../fish/guestfish.pod:1047
24216 msgid ""
24217 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
24218 "effect as using the B<-v> option."
24219 msgstr ""
24220
24221 # type: textblock
24222 #. type: textblock
24223 #: ../fish/guestfish.pod:1059
24224 msgid ""
24225 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
24226 "the discussion of paths in L<guestfs(3)>."
24227 msgstr ""
24228
24229 # type: textblock
24230 #. type: textblock
24231 #: ../fish/guestfish.pod:1070
24232 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
24233 msgstr ""
24234
24235 # type: =item
24236 #. type: =item
24237 #: ../fish/guestfish.pod:1072
24238 msgid "PAGER"
24239 msgstr ""
24240
24241 # type: textblock
24242 #. type: textblock
24243 #: ../fish/guestfish.pod:1074
24244 msgid ""
24245 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
24246 "C<more>."
24247 msgstr ""
24248
24249 # type: =head1
24250 #. type: =head1
24251 #: ../fish/guestfish.pod:1090 ../fuse/guestmount.pod:262
24252 msgid "FILES"
24253 msgstr ""
24254
24255 #. type: =item
24256 #: ../fish/guestfish.pod:1094 ../fuse/guestmount.pod:266
24257 msgid "$HOME/.libguestfs-tools.rc"
24258 msgstr ""
24259
24260 #. type: =item
24261 #: ../fish/guestfish.pod:1096 ../fuse/guestmount.pod:268
24262 msgid "/etc/libguestfs-tools.conf"
24263 msgstr ""
24264
24265 #. type: textblock
24266 #: ../fish/guestfish.pod:1098 ../fuse/guestmount.pod:270
24267 msgid ""
24268 "This configuration file controls the default read-only or read-write mode "
24269 "(I<--ro> or I<--rw>)."
24270 msgstr ""
24271
24272 #. type: textblock
24273 #: ../fish/guestfish.pod:1101
24274 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
24275 msgstr ""
24276
24277 # type: =item
24278 #. type: =item
24279 #: ../fish/guestfish.pod:1103
24280 msgid "$HOME/.guestfish"
24281 msgstr ""
24282
24283 # type: textblock
24284 #. type: textblock
24285 #: ../fish/guestfish.pod:1105
24286 msgid ""
24287 "If compiled with GNU readline support, then the command history is saved in "
24288 "this file."
24289 msgstr ""
24290
24291 # type: =item
24292 #. type: =item
24293 #: ../fish/guestfish.pod:1108
24294 msgid "$HOME/.inputrc"
24295 msgstr ""
24296
24297 # type: =item
24298 #. type: =item
24299 #: ../fish/guestfish.pod:1110
24300 msgid "/etc/inputrc"
24301 msgstr ""
24302
24303 # type: textblock
24304 #. type: textblock
24305 #: ../fish/guestfish.pod:1112
24306 msgid ""
24307 "If compiled with GNU readline support, then these files can be used to "
24308 "configure readline.  For further information, please see L<readline(3)/"
24309 "INITIALIZATION FILE>."
24310 msgstr ""
24311
24312 # type: textblock
24313 #. type: textblock
24314 #: ../fish/guestfish.pod:1116
24315 msgid "To write rules which only apply to guestfish, use:"
24316 msgstr ""
24317
24318 # type: verbatim
24319 #. type: verbatim
24320 #: ../fish/guestfish.pod:1118
24321 #, no-wrap
24322 msgid ""
24323 " $if guestfish\n"
24324 " ...\n"
24325 " $endif\n"
24326 "\n"
24327 msgstr ""
24328
24329 # type: textblock
24330 #. type: textblock
24331 #: ../fish/guestfish.pod:1122
24332 msgid ""
24333 "Variables that you can set in inputrc that change the behaviour of guestfish "
24334 "in useful ways include:"
24335 msgstr ""
24336
24337 # type: =item
24338 #. type: =item
24339 #: ../fish/guestfish.pod:1127
24340 msgid "completion-ignore-case (default: on)"
24341 msgstr ""
24342
24343 # type: textblock
24344 #. type: textblock
24345 #: ../fish/guestfish.pod:1129
24346 msgid ""
24347 "By default, guestfish will ignore case when tab-completing paths on the "
24348 "disk.  Use:"
24349 msgstr ""
24350
24351 # type: verbatim
24352 #. type: verbatim
24353 #: ../fish/guestfish.pod:1132
24354 #, no-wrap
24355 msgid ""
24356 " set completion-ignore-case off\n"
24357 "\n"
24358 msgstr ""
24359
24360 # type: textblock
24361 #. type: textblock
24362 #: ../fish/guestfish.pod:1134
24363 msgid "to make guestfish case sensitive."
24364 msgstr ""
24365
24366 # type: =item
24367 #. type: =item
24368 #: ../fish/guestfish.pod:1138
24369 msgid "test1.img"
24370 msgstr ""
24371
24372 # type: =item
24373 #. type: =item
24374 #: ../fish/guestfish.pod:1140
24375 msgid "test2.img (etc)"
24376 msgstr ""
24377
24378 #. type: textblock
24379 #: ../fish/guestfish.pod:1142
24380 msgid ""
24381 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
24382 "will be created in the file C<test1.img> in the current directory.  The "
24383 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
24384 "the same name will be overwritten."
24385 msgstr ""
24386
24387 #. type: textblock
24388 #: ../fish/guestfish.pod:1151
24389 msgid ""
24390 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-in(1)"
24391 ">, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)"
24392 ">, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-partitions"
24393 "(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)"
24394 ">, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)"
24395 ">, L<hexedit(1)>."
24396 msgstr ""
24397
24398 # type: textblock
24399 #. type: textblock
24400 #: ../fish/guestfish.pod:1181 ../test-tool/libguestfs-test-tool.pod:102
24401 #: ../fuse/guestmount.pod:297 ../tools/virt-edit.pl:518
24402 #: ../tools/virt-win-reg.pl:606 ../tools/virt-list-filesystems.pl:210
24403 #: ../tools/virt-tar.pl:309 ../tools/virt-make-fs.pl:572
24404 #: ../tools/virt-list-partitions.pl:277
24405 msgid ""
24406 "This program is free software; you can redistribute it and/or modify it "
24407 "under the terms of the GNU General Public License as published by the Free "
24408 "Software Foundation; either version 2 of the License, or (at your option) "
24409 "any later version."
24410 msgstr ""
24411
24412 # type: textblock
24413 #. type: textblock
24414 #: ../fish/guestfish.pod:1186 ../test-tool/libguestfs-test-tool.pod:107
24415 #: ../fuse/guestmount.pod:302 ../tools/virt-edit.pl:523
24416 #: ../tools/virt-win-reg.pl:611 ../tools/virt-list-filesystems.pl:215
24417 #: ../tools/virt-tar.pl:314 ../tools/virt-make-fs.pl:577
24418 #: ../tools/virt-list-partitions.pl:282
24419 msgid ""
24420 "This program is distributed in the hope that it will be useful, but WITHOUT "
24421 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
24422 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
24423 "more details."
24424 msgstr ""
24425
24426 # type: textblock
24427 #. type: textblock
24428 #: ../fish/guestfish.pod:1191 ../test-tool/libguestfs-test-tool.pod:112
24429 #: ../fuse/guestmount.pod:307 ../tools/virt-edit.pl:528
24430 #: ../tools/virt-win-reg.pl:616 ../tools/virt-list-filesystems.pl:220
24431 #: ../tools/virt-tar.pl:319 ../tools/virt-make-fs.pl:582
24432 #: ../tools/virt-list-partitions.pl:287
24433 msgid ""
24434 "You should have received a copy of the GNU General Public License along with "
24435 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
24436 "Ave, Cambridge, MA 02139, USA."
24437 msgstr ""
24438
24439 # type: =head2
24440 #. type: =head2
24441 #: ../fish/guestfish-actions.pod:1
24442 msgid "add-cdrom"
24443 msgstr ""
24444
24445 # type: verbatim
24446 #. type: verbatim
24447 #: ../fish/guestfish-actions.pod:3
24448 #, no-wrap
24449 msgid ""
24450 " add-cdrom filename\n"
24451 "\n"
24452 msgstr ""
24453
24454 # type: textblock
24455 #. type: textblock
24456 #: ../fish/guestfish-actions.pod:15
24457 msgid ""
24458 "This call checks for the existence of C<filename>.  This stops you from "
24459 "specifying other types of drive which are supported by qemu such as C<nbd:> "
24460 "and C<http:> URLs.  To specify those, use the general L</config> call "
24461 "instead."
24462 msgstr ""
24463
24464 # type: textblock
24465 #. type: textblock
24466 #: ../fish/guestfish-actions.pod:22
24467 msgid ""
24468 "If you just want to add an ISO file (often you use this as an efficient way "
24469 "to transfer large files into the guest), then you should probably use L</add-"
24470 "drive-ro> instead."
24471 msgstr ""
24472
24473 #. type: textblock
24474 #: ../fish/guestfish-actions.pod:28 ../fish/guestfish-actions.pod:158
24475 #: ../fish/guestfish-actions.pod:172
24476 msgid ""
24477 "This function is deprecated.  In new code, use the L</add_drive_opts> call "
24478 "instead."
24479 msgstr ""
24480
24481 # type: =head2
24482 #. type: =head2
24483 #: ../fish/guestfish-actions.pod:35
24484 msgid "add-domain"
24485 msgstr ""
24486
24487 # type: =head2
24488 #. type: =head2
24489 #: ../fish/guestfish-actions.pod:37
24490 msgid "domain"
24491 msgstr ""
24492
24493 #. type: verbatim
24494 #: ../fish/guestfish-actions.pod:39
24495 #, no-wrap
24496 msgid ""
24497 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..]\n"
24498 "\n"
24499 msgstr ""
24500
24501 # type: textblock
24502 #. type: textblock
24503 #: ../fish/guestfish-actions.pod:41
24504 msgid ""
24505 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
24506 "It works by connecting to libvirt, requesting the domain and domain XML from "
24507 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
24508 msgstr ""
24509
24510 # type: textblock
24511 #. type: textblock
24512 #: ../fish/guestfish-actions.pod:71
24513 msgid ""
24514 "The other optional parameters are passed directly through to L</add-drive-"
24515 "opts>."
24516 msgstr ""
24517
24518 # type: textblock
24519 #. type: textblock
24520 #: ../fish/guestfish-actions.pod:74 ../fish/guestfish-actions.pod:138
24521 #: ../fish/guestfish-actions.pod:3044
24522 msgid ""
24523 "This command has one or more optional arguments.  See L</OPTIONAL ARGUMENTS>."
24524 msgstr ""
24525
24526 # type: =head2
24527 #. type: =head2
24528 #: ../fish/guestfish-actions.pod:76
24529 msgid "add-drive"
24530 msgstr ""
24531
24532 # type: verbatim
24533 #. type: verbatim
24534 #: ../fish/guestfish-actions.pod:78
24535 #, no-wrap
24536 msgid ""
24537 " add-drive filename\n"
24538 "\n"
24539 msgstr ""
24540
24541 # type: textblock
24542 #. type: textblock
24543 #: ../fish/guestfish-actions.pod:80
24544 msgid ""
24545 "This function is the equivalent of calling L</add-drive-opts> with no "
24546 "optional parameters, so the disk is added writable, with the format being "
24547 "detected automatically."
24548 msgstr ""
24549
24550 # type: textblock
24551 #. type: textblock
24552 #: ../fish/guestfish-actions.pod:84
24553 msgid ""
24554 "Automatic detection of the format opens you up to a potential security hole "
24555 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
24556 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
24557 "you should think about replacing calls to this function with calls to L</add-"
24558 "drive-opts>, and specifying the format."
24559 msgstr ""
24560
24561 # type: =head2
24562 #. type: =head2
24563 #: ../fish/guestfish-actions.pod:91
24564 msgid "add-drive-opts"
24565 msgstr ""
24566
24567 # type: =head2
24568 #. type: =head2
24569 #: ../fish/guestfish-actions.pod:93
24570 msgid "add"
24571 msgstr ""
24572
24573 # type: verbatim
24574 #. type: verbatim
24575 #: ../fish/guestfish-actions.pod:95
24576 #, no-wrap
24577 msgid ""
24578 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
24579 "\n"
24580 msgstr ""
24581
24582 # type: textblock
24583 #. type: textblock
24584 #: ../fish/guestfish-actions.pod:122
24585 msgid ""
24586 "This forces the image format.  If you omit this (or use L</add-drive> or L</"
24587 "add-drive-ro>) then the format is automatically detected.  Possible formats "
24588 "include C<raw> and C<qcow2>."
24589 msgstr ""
24590
24591 # type: textblock
24592 #. type: textblock
24593 #: ../fish/guestfish-actions.pod:133
24594 msgid ""
24595 "This rarely-used option lets you emulate the behaviour of the deprecated L</"
24596 "add-drive-with-if> call (q.v.)"
24597 msgstr ""
24598
24599 # type: =head2
24600 #. type: =head2
24601 #: ../fish/guestfish-actions.pod:140
24602 msgid "add-drive-ro"
24603 msgstr ""
24604
24605 # type: =head2
24606 #. type: =head2
24607 #: ../fish/guestfish-actions.pod:142
24608 msgid "add-ro"
24609 msgstr ""
24610
24611 # type: verbatim
24612 #. type: verbatim
24613 #: ../fish/guestfish-actions.pod:144
24614 #, no-wrap
24615 msgid ""
24616 " add-drive-ro filename\n"
24617 "\n"
24618 msgstr ""
24619
24620 # type: textblock
24621 #. type: textblock
24622 #: ../fish/guestfish-actions.pod:146
24623 msgid ""
24624 "This function is the equivalent of calling L</add-drive-opts> with the "
24625 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
24626 "is added read-only, with the format being detected automatically."
24627 msgstr ""
24628
24629 # type: =head2
24630 #. type: =head2
24631 #: ../fish/guestfish-actions.pod:151
24632 msgid "add-drive-ro-with-if"
24633 msgstr ""
24634
24635 # type: verbatim
24636 #. type: verbatim
24637 #: ../fish/guestfish-actions.pod:153
24638 #, no-wrap
24639 msgid ""
24640 " add-drive-ro-with-if filename iface\n"
24641 "\n"
24642 msgstr ""
24643
24644 # type: textblock
24645 #. type: textblock
24646 #: ../fish/guestfish-actions.pod:155
24647 msgid ""
24648 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
24649 "interface emulation to use at run time."
24650 msgstr ""
24651
24652 # type: =head2
24653 #. type: =head2
24654 #: ../fish/guestfish-actions.pod:165
24655 msgid "add-drive-with-if"
24656 msgstr ""
24657
24658 # type: verbatim
24659 #. type: verbatim
24660 #: ../fish/guestfish-actions.pod:167
24661 #, no-wrap
24662 msgid ""
24663 " add-drive-with-if filename iface\n"
24664 "\n"
24665 msgstr ""
24666
24667 # type: textblock
24668 #. type: textblock
24669 #: ../fish/guestfish-actions.pod:169
24670 msgid ""
24671 "This is the same as L</add-drive> but it allows you to specify the QEMU "
24672 "interface emulation to use at run time."
24673 msgstr ""
24674
24675 # type: =head2
24676 #. type: =head2
24677 #: ../fish/guestfish-actions.pod:179
24678 msgid "aug-clear"
24679 msgstr ""
24680
24681 # type: verbatim
24682 #. type: verbatim
24683 #: ../fish/guestfish-actions.pod:181
24684 #, no-wrap
24685 msgid ""
24686 " aug-clear augpath\n"
24687 "\n"
24688 msgstr ""
24689
24690 # type: =head2
24691 #. type: =head2
24692 #: ../fish/guestfish-actions.pod:186
24693 msgid "aug-close"
24694 msgstr ""
24695
24696 # type: verbatim
24697 #. type: verbatim
24698 #: ../fish/guestfish-actions.pod:188
24699 #, no-wrap
24700 msgid ""
24701 " aug-close\n"
24702 "\n"
24703 msgstr ""
24704
24705 # type: textblock
24706 #. type: textblock
24707 #: ../fish/guestfish-actions.pod:190
24708 msgid ""
24709 "Close the current Augeas handle and free up any resources used by it.  After "
24710 "calling this, you have to call L</aug-init> again before you can use any "
24711 "other Augeas functions."
24712 msgstr ""
24713
24714 # type: =head2
24715 #. type: =head2
24716 #: ../fish/guestfish-actions.pod:195
24717 msgid "aug-defnode"
24718 msgstr ""
24719
24720 # type: verbatim
24721 #. type: verbatim
24722 #: ../fish/guestfish-actions.pod:197
24723 #, no-wrap
24724 msgid ""
24725 " aug-defnode name expr val\n"
24726 "\n"
24727 msgstr ""
24728
24729 # type: textblock
24730 #. type: textblock
24731 #: ../fish/guestfish-actions.pod:202
24732 msgid ""
24733 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
24734 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
24735 "containing that single node."
24736 msgstr ""
24737
24738 # type: =head2
24739 #. type: =head2
24740 #: ../fish/guestfish-actions.pod:210
24741 msgid "aug-defvar"
24742 msgstr ""
24743
24744 # type: verbatim
24745 #. type: verbatim
24746 #: ../fish/guestfish-actions.pod:212
24747 #, no-wrap
24748 msgid ""
24749 " aug-defvar name expr\n"
24750 "\n"
24751 msgstr ""
24752
24753 # type: =head2
24754 #. type: =head2
24755 #: ../fish/guestfish-actions.pod:221
24756 msgid "aug-get"
24757 msgstr ""
24758
24759 # type: verbatim
24760 #. type: verbatim
24761 #: ../fish/guestfish-actions.pod:223
24762 #, no-wrap
24763 msgid ""
24764 " aug-get augpath\n"
24765 "\n"
24766 msgstr ""
24767
24768 # type: =head2
24769 #. type: =head2
24770 #: ../fish/guestfish-actions.pod:228
24771 msgid "aug-init"
24772 msgstr ""
24773
24774 # type: verbatim
24775 #. type: verbatim
24776 #: ../fish/guestfish-actions.pod:230
24777 #, no-wrap
24778 msgid ""
24779 " aug-init root flags\n"
24780 "\n"
24781 msgstr ""
24782
24783 # type: textblock
24784 #. type: textblock
24785 #: ../fish/guestfish-actions.pod:236
24786 msgid "You must call this before using any other L</aug-*> commands."
24787 msgstr ""
24788
24789 # type: textblock
24790 #. type: textblock
24791 #: ../fish/guestfish-actions.pod:271
24792 msgid "Do not load the tree in L</aug-init>."
24793 msgstr ""
24794
24795 # type: textblock
24796 #. type: textblock
24797 #: ../fish/guestfish-actions.pod:275
24798 msgid "To close the handle, you can call L</aug-close>."
24799 msgstr ""
24800
24801 # type: =head2
24802 #. type: =head2
24803 #: ../fish/guestfish-actions.pod:279
24804 msgid "aug-insert"
24805 msgstr ""
24806
24807 # type: verbatim
24808 #. type: verbatim
24809 #: ../fish/guestfish-actions.pod:281
24810 #, no-wrap
24811 msgid ""
24812 " aug-insert augpath label true|false\n"
24813 "\n"
24814 msgstr ""
24815
24816 # type: =head2
24817 #. type: =head2
24818 #: ../fish/guestfish-actions.pod:291
24819 msgid "aug-load"
24820 msgstr ""
24821
24822 # type: verbatim
24823 #. type: verbatim
24824 #: ../fish/guestfish-actions.pod:293
24825 #, no-wrap
24826 msgid ""
24827 " aug-load\n"
24828 "\n"
24829 msgstr ""
24830
24831 # type: =head2
24832 #. type: =head2
24833 #: ../fish/guestfish-actions.pod:300
24834 msgid "aug-ls"
24835 msgstr ""
24836
24837 # type: verbatim
24838 #. type: verbatim
24839 #: ../fish/guestfish-actions.pod:302
24840 #, no-wrap
24841 msgid ""
24842 " aug-ls augpath\n"
24843 "\n"
24844 msgstr ""
24845
24846 # type: textblock
24847 #. type: textblock
24848 #: ../fish/guestfish-actions.pod:304
24849 msgid ""
24850 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
24851 "resulting nodes into alphabetical order."
24852 msgstr ""
24853
24854 # type: =head2
24855 #. type: =head2
24856 #: ../fish/guestfish-actions.pod:307
24857 msgid "aug-match"
24858 msgstr ""
24859
24860 # type: verbatim
24861 #. type: verbatim
24862 #: ../fish/guestfish-actions.pod:309
24863 #, no-wrap
24864 msgid ""
24865 " aug-match augpath\n"
24866 "\n"
24867 msgstr ""
24868
24869 # type: =head2
24870 #. type: =head2
24871 #: ../fish/guestfish-actions.pod:315
24872 msgid "aug-mv"
24873 msgstr ""
24874
24875 # type: verbatim
24876 #. type: verbatim
24877 #: ../fish/guestfish-actions.pod:317
24878 #, no-wrap
24879 msgid ""
24880 " aug-mv src dest\n"
24881 "\n"
24882 msgstr ""
24883
24884 # type: =head2
24885 #. type: =head2
24886 #: ../fish/guestfish-actions.pod:322
24887 msgid "aug-rm"
24888 msgstr ""
24889
24890 # type: verbatim
24891 #. type: verbatim
24892 #: ../fish/guestfish-actions.pod:324
24893 #, no-wrap
24894 msgid ""
24895 " aug-rm augpath\n"
24896 "\n"
24897 msgstr ""
24898
24899 # type: =head2
24900 #. type: =head2
24901 #: ../fish/guestfish-actions.pod:330
24902 msgid "aug-save"
24903 msgstr ""
24904
24905 # type: verbatim
24906 #. type: verbatim
24907 #: ../fish/guestfish-actions.pod:332
24908 #, no-wrap
24909 msgid ""
24910 " aug-save\n"
24911 "\n"
24912 msgstr ""
24913
24914 # type: textblock
24915 #. type: textblock
24916 #: ../fish/guestfish-actions.pod:336
24917 msgid ""
24918 "The flags which were passed to L</aug-init> affect exactly how files are "
24919 "saved."
24920 msgstr ""
24921
24922 # type: =head2
24923 #. type: =head2
24924 #: ../fish/guestfish-actions.pod:339
24925 msgid "aug-set"
24926 msgstr ""
24927
24928 # type: verbatim
24929 #. type: verbatim
24930 #: ../fish/guestfish-actions.pod:341
24931 #, no-wrap
24932 msgid ""
24933 " aug-set augpath val\n"
24934 "\n"
24935 msgstr ""
24936
24937 # type: textblock
24938 #. type: textblock
24939 #: ../fish/guestfish-actions.pod:345
24940 msgid ""
24941 "In the Augeas API, it is possible to clear a node by setting the value to "
24942 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
24943 "this call.  Instead you must use the L</aug-clear> call."
24944 msgstr ""
24945
24946 # type: =head2
24947 #. type: =head2
24948 #: ../fish/guestfish-actions.pod:350
24949 msgid "available"
24950 msgstr ""
24951
24952 # type: verbatim
24953 #. type: verbatim
24954 #: ../fish/guestfish-actions.pod:352
24955 #, no-wrap
24956 msgid ""
24957 " available 'groups ...'\n"
24958 "\n"
24959 msgstr ""
24960
24961 # type: textblock
24962 #. type: textblock
24963 #: ../fish/guestfish-actions.pod:358
24964 msgid ""
24965 "The libguestfs groups, and the functions that those groups correspond to, "
24966 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
24967 "runtime by calling L</available-all-groups>."
24968 msgstr ""
24969
24970 # type: textblock
24971 #. type: textblock
24972 #: ../fish/guestfish-actions.pod:382
24973 msgid "You must call L</launch> before calling this function."
24974 msgstr ""
24975
24976 # type: textblock
24977 #. type: textblock
24978 #: ../fish/guestfish-actions.pod:404
24979 msgid ""
24980 "This call was added in version C<1.0.80>.  In previous versions of "
24981 "libguestfs all you could do would be to speculatively execute a command to "
24982 "find out if the daemon implemented it.  See also L</version>."
24983 msgstr ""
24984
24985 # type: =head2
24986 #. type: =head2
24987 #: ../fish/guestfish-actions.pod:411
24988 msgid "available-all-groups"
24989 msgstr ""
24990
24991 # type: verbatim
24992 #. type: verbatim
24993 #: ../fish/guestfish-actions.pod:413
24994 #, no-wrap
24995 msgid ""
24996 " available-all-groups\n"
24997 "\n"
24998 msgstr ""
24999
25000 # type: textblock
25001 #. type: textblock
25002 #: ../fish/guestfish-actions.pod:415
25003 msgid ""
25004 "This command returns a list of all optional groups that this daemon knows "
25005 "about.  Note this returns both supported and unsupported groups.  To find "
25006 "out which ones the daemon can actually support you have to call L</"
25007 "available> on each member of the returned list."
25008 msgstr ""
25009
25010 # type: textblock
25011 #. type: textblock
25012 #: ../fish/guestfish-actions.pod:421
25013 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
25014 msgstr ""
25015
25016 # type: =head2
25017 #. type: =head2
25018 #: ../fish/guestfish-actions.pod:423
25019 msgid "base64-in"
25020 msgstr ""
25021
25022 # type: verbatim
25023 #. type: verbatim
25024 #: ../fish/guestfish-actions.pod:425
25025 #, no-wrap
25026 msgid ""
25027 " base64-in (base64file|-) filename\n"
25028 "\n"
25029 msgstr ""
25030
25031 # type: textblock
25032 #. type: textblock
25033 #: ../fish/guestfish-actions.pod:430 ../fish/guestfish-actions.pod:439
25034 #: ../fish/guestfish-actions.pod:663 ../fish/guestfish-actions.pod:832
25035 #: ../fish/guestfish-actions.pod:851 ../fish/guestfish-actions.pod:1225
25036 #: ../fish/guestfish-actions.pod:4486 ../fish/guestfish-actions.pod:4498
25037 #: ../fish/guestfish-actions.pod:4509 ../fish/guestfish-actions.pod:4520
25038 #: ../fish/guestfish-actions.pod:4572 ../fish/guestfish-actions.pod:4581
25039 #: ../fish/guestfish-actions.pod:4635 ../fish/guestfish-actions.pod:4658
25040 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
25041 msgstr ""
25042
25043 # type: =head2
25044 #. type: =head2
25045 #: ../fish/guestfish-actions.pod:432
25046 msgid "base64-out"
25047 msgstr ""
25048
25049 # type: verbatim
25050 #. type: verbatim
25051 #: ../fish/guestfish-actions.pod:434
25052 #, no-wrap
25053 msgid ""
25054 " base64-out filename (base64file|-)\n"
25055 "\n"
25056 msgstr ""
25057
25058 # type: =head2
25059 #. type: =head2
25060 #: ../fish/guestfish-actions.pod:441
25061 msgid "blockdev-flushbufs"
25062 msgstr ""
25063
25064 # type: verbatim
25065 #. type: verbatim
25066 #: ../fish/guestfish-actions.pod:443
25067 #, no-wrap
25068 msgid ""
25069 " blockdev-flushbufs device\n"
25070 "\n"
25071 msgstr ""
25072
25073 # type: =head2
25074 #. type: =head2
25075 #: ../fish/guestfish-actions.pod:450
25076 msgid "blockdev-getbsz"
25077 msgstr ""
25078
25079 # type: verbatim
25080 #. type: verbatim
25081 #: ../fish/guestfish-actions.pod:452
25082 #, no-wrap
25083 msgid ""
25084 " blockdev-getbsz device\n"
25085 "\n"
25086 msgstr ""
25087
25088 # type: =head2
25089 #. type: =head2
25090 #: ../fish/guestfish-actions.pod:461
25091 msgid "blockdev-getro"
25092 msgstr ""
25093
25094 # type: verbatim
25095 #. type: verbatim
25096 #: ../fish/guestfish-actions.pod:463
25097 #, no-wrap
25098 msgid ""
25099 " blockdev-getro device\n"
25100 "\n"
25101 msgstr ""
25102
25103 # type: =head2
25104 #. type: =head2
25105 #: ../fish/guestfish-actions.pod:470
25106 msgid "blockdev-getsize64"
25107 msgstr ""
25108
25109 # type: verbatim
25110 #. type: verbatim
25111 #: ../fish/guestfish-actions.pod:472
25112 #, no-wrap
25113 msgid ""
25114 " blockdev-getsize64 device\n"
25115 "\n"
25116 msgstr ""
25117
25118 # type: textblock
25119 #. type: textblock
25120 #: ../fish/guestfish-actions.pod:476
25121 msgid "See also L</blockdev-getsz>."
25122 msgstr ""
25123
25124 # type: =head2
25125 #. type: =head2
25126 #: ../fish/guestfish-actions.pod:480
25127 msgid "blockdev-getss"
25128 msgstr ""
25129
25130 # type: verbatim
25131 #. type: verbatim
25132 #: ../fish/guestfish-actions.pod:482
25133 #, no-wrap
25134 msgid ""
25135 " blockdev-getss device\n"
25136 "\n"
25137 msgstr ""
25138
25139 # type: textblock
25140 #. type: textblock
25141 #: ../fish/guestfish-actions.pod:487
25142 msgid ""
25143 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
25144 msgstr ""
25145
25146 # type: =head2
25147 #. type: =head2
25148 #: ../fish/guestfish-actions.pod:492
25149 msgid "blockdev-getsz"
25150 msgstr ""
25151
25152 # type: verbatim
25153 #. type: verbatim
25154 #: ../fish/guestfish-actions.pod:494
25155 #, no-wrap
25156 msgid ""
25157 " blockdev-getsz device\n"
25158 "\n"
25159 msgstr ""
25160
25161 # type: textblock
25162 #. type: textblock
25163 #: ../fish/guestfish-actions.pod:499
25164 msgid ""
25165 "See also L</blockdev-getss> for the real sector size of the device, and L</"
25166 "blockdev-getsize64> for the more useful I<size in bytes>."
25167 msgstr ""
25168
25169 # type: =head2
25170 #. type: =head2
25171 #: ../fish/guestfish-actions.pod:505
25172 msgid "blockdev-rereadpt"
25173 msgstr ""
25174
25175 # type: verbatim
25176 #. type: verbatim
25177 #: ../fish/guestfish-actions.pod:507
25178 #, no-wrap
25179 msgid ""
25180 " blockdev-rereadpt device\n"
25181 "\n"
25182 msgstr ""
25183
25184 # type: =head2
25185 #. type: =head2
25186 #: ../fish/guestfish-actions.pod:513
25187 msgid "blockdev-setbsz"
25188 msgstr ""
25189
25190 # type: verbatim
25191 #. type: verbatim
25192 #: ../fish/guestfish-actions.pod:515
25193 #, no-wrap
25194 msgid ""
25195 " blockdev-setbsz device blocksize\n"
25196 "\n"
25197 msgstr ""
25198
25199 # type: =head2
25200 #. type: =head2
25201 #: ../fish/guestfish-actions.pod:524
25202 msgid "blockdev-setro"
25203 msgstr ""
25204
25205 # type: verbatim
25206 #. type: verbatim
25207 #: ../fish/guestfish-actions.pod:526
25208 #, no-wrap
25209 msgid ""
25210 " blockdev-setro device\n"
25211 "\n"
25212 msgstr ""
25213
25214 # type: =head2
25215 #. type: =head2
25216 #: ../fish/guestfish-actions.pod:532
25217 msgid "blockdev-setrw"
25218 msgstr ""
25219
25220 # type: verbatim
25221 #. type: verbatim
25222 #: ../fish/guestfish-actions.pod:534
25223 #, no-wrap
25224 msgid ""
25225 " blockdev-setrw device\n"
25226 "\n"
25227 msgstr ""
25228
25229 # type: =head2
25230 #. type: =head2
25231 #: ../fish/guestfish-actions.pod:540
25232 msgid "case-sensitive-path"
25233 msgstr ""
25234
25235 # type: verbatim
25236 #. type: verbatim
25237 #: ../fish/guestfish-actions.pod:542
25238 #, no-wrap
25239 msgid ""
25240 " case-sensitive-path path\n"
25241 "\n"
25242 msgstr ""
25243
25244 # type: textblock
25245 #. type: textblock
25246 #: ../fish/guestfish-actions.pod:566
25247 msgid ""
25248 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return C<\"/"
25249 "WINDOWS/system32\"> (the exact return value would depend on details of how "
25250 "the directories were originally created under Windows)."
25251 msgstr ""
25252
25253 # type: textblock
25254 #. type: textblock
25255 #: ../fish/guestfish-actions.pod:574
25256 msgid "See also L</realpath>."
25257 msgstr ""
25258
25259 # type: =head2
25260 #. type: =head2
25261 #: ../fish/guestfish-actions.pod:576
25262 msgid "cat"
25263 msgstr ""
25264
25265 # type: verbatim
25266 #. type: verbatim
25267 #: ../fish/guestfish-actions.pod:578
25268 #, no-wrap
25269 msgid ""
25270 " cat path\n"
25271 "\n"
25272 msgstr ""
25273
25274 # type: textblock
25275 #. type: textblock
25276 #: ../fish/guestfish-actions.pod:582
25277 msgid ""
25278 "Note that this function cannot correctly handle binary files (specifically, "
25279 "files containing C<\\0> character which is treated as end of string).  For "
25280 "those you need to use the L</read-file> or L</download> functions which have "
25281 "a more complex interface."
25282 msgstr ""
25283
25284 # type: =head2
25285 #. type: =head2
25286 #: ../fish/guestfish-actions.pod:590
25287 msgid "checksum"
25288 msgstr ""
25289
25290 # type: verbatim
25291 #. type: verbatim
25292 #: ../fish/guestfish-actions.pod:592
25293 #, no-wrap
25294 msgid ""
25295 " checksum csumtype path\n"
25296 "\n"
25297 msgstr ""
25298
25299 # type: textblock
25300 #. type: textblock
25301 #: ../fish/guestfish-actions.pod:635
25302 msgid "To get the checksum for a device, use L</checksum-device>."
25303 msgstr ""
25304
25305 # type: textblock
25306 #. type: textblock
25307 #: ../fish/guestfish-actions.pod:637
25308 msgid "To get the checksums for many files, use L</checksums-out>."
25309 msgstr ""
25310
25311 # type: =head2
25312 #. type: =head2
25313 #: ../fish/guestfish-actions.pod:639
25314 msgid "checksum-device"
25315 msgstr ""
25316
25317 # type: verbatim
25318 #. type: verbatim
25319 #: ../fish/guestfish-actions.pod:641
25320 #, no-wrap
25321 msgid ""
25322 " checksum-device csumtype device\n"
25323 "\n"
25324 msgstr ""
25325
25326 # type: textblock
25327 #. type: textblock
25328 #: ../fish/guestfish-actions.pod:643
25329 msgid ""
25330 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
25331 "device named C<device>.  For the types of checksums supported see the L</"
25332 "checksum> command."
25333 msgstr ""
25334
25335 # type: =head2
25336 #. type: =head2
25337 #: ../fish/guestfish-actions.pod:647
25338 msgid "checksums-out"
25339 msgstr ""
25340
25341 # type: verbatim
25342 #. type: verbatim
25343 #: ../fish/guestfish-actions.pod:649
25344 #, no-wrap
25345 msgid ""
25346 " checksums-out csumtype directory (sumsfile|-)\n"
25347 "\n"
25348 msgstr ""
25349
25350 # type: =head2
25351 #. type: =head2
25352 #: ../fish/guestfish-actions.pod:665
25353 msgid "chmod"
25354 msgstr ""
25355
25356 # type: verbatim
25357 #. type: verbatim
25358 #: ../fish/guestfish-actions.pod:667
25359 #, no-wrap
25360 msgid ""
25361 " chmod mode path\n"
25362 "\n"
25363 msgstr ""
25364
25365 # type: =head2
25366 #. type: =head2
25367 #: ../fish/guestfish-actions.pod:678
25368 msgid "chown"
25369 msgstr ""
25370
25371 # type: verbatim
25372 #. type: verbatim
25373 #: ../fish/guestfish-actions.pod:680
25374 #, no-wrap
25375 msgid ""
25376 " chown owner group path\n"
25377 "\n"
25378 msgstr ""
25379
25380 # type: =head2
25381 #. type: =head2
25382 #: ../fish/guestfish-actions.pod:688
25383 msgid "command"
25384 msgstr ""
25385
25386 # type: verbatim
25387 #. type: verbatim
25388 #: ../fish/guestfish-actions.pod:690
25389 #, no-wrap
25390 msgid ""
25391 " command 'arguments ...'\n"
25392 "\n"
25393 msgstr ""
25394
25395 # type: textblock
25396 #. type: textblock
25397 #: ../fish/guestfish-actions.pod:697
25398 msgid ""
25399 "The single parameter is an argv-style list of arguments.  The first element "
25400 "is the name of the program to run.  Subsequent elements are parameters.  The "
25401 "list must be non-empty (ie. must contain a program name).  Note that the "
25402 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
25403 msgstr ""
25404
25405 # type: =head2
25406 #. type: =head2
25407 #: ../fish/guestfish-actions.pod:725
25408 msgid "command-lines"
25409 msgstr ""
25410
25411 # type: verbatim
25412 #. type: verbatim
25413 #: ../fish/guestfish-actions.pod:727
25414 #, no-wrap
25415 msgid ""
25416 " command-lines 'arguments ...'\n"
25417 "\n"
25418 msgstr ""
25419
25420 # type: textblock
25421 #. type: textblock
25422 #: ../fish/guestfish-actions.pod:729
25423 msgid ""
25424 "This is the same as L</command>, but splits the result into a list of lines."
25425 msgstr ""
25426
25427 # type: textblock
25428 #. type: textblock
25429 #: ../fish/guestfish-actions.pod:732
25430 msgid "See also: L</sh-lines>"
25431 msgstr ""
25432
25433 # type: =head2
25434 #. type: =head2
25435 #: ../fish/guestfish-actions.pod:737
25436 msgid "config"
25437 msgstr ""
25438
25439 # type: verbatim
25440 #. type: verbatim
25441 #: ../fish/guestfish-actions.pod:739
25442 #, no-wrap
25443 msgid ""
25444 " config qemuparam qemuvalue\n"
25445 "\n"
25446 msgstr ""
25447
25448 # type: =head2
25449 #. type: =head2
25450 #: ../fish/guestfish-actions.pod:750
25451 msgid "copy-size"
25452 msgstr ""
25453
25454 # type: verbatim
25455 #. type: verbatim
25456 #: ../fish/guestfish-actions.pod:752
25457 #, no-wrap
25458 msgid ""
25459 " copy-size src dest size\n"
25460 "\n"
25461 msgstr ""
25462
25463 # type: =head2
25464 #. type: =head2
25465 #: ../fish/guestfish-actions.pod:760
25466 msgid "cp"
25467 msgstr ""
25468
25469 # type: verbatim
25470 #. type: verbatim
25471 #: ../fish/guestfish-actions.pod:762
25472 #, no-wrap
25473 msgid ""
25474 " cp src dest\n"
25475 "\n"
25476 msgstr ""
25477
25478 # type: =head2
25479 #. type: =head2
25480 #: ../fish/guestfish-actions.pod:767
25481 msgid "cp-a"
25482 msgstr ""
25483
25484 # type: verbatim
25485 #. type: verbatim
25486 #: ../fish/guestfish-actions.pod:769
25487 #, no-wrap
25488 msgid ""
25489 " cp-a src dest\n"
25490 "\n"
25491 msgstr ""
25492
25493 # type: =head2
25494 #. type: =head2
25495 #: ../fish/guestfish-actions.pod:774
25496 msgid "dd"
25497 msgstr ""
25498
25499 # type: verbatim
25500 #. type: verbatim
25501 #: ../fish/guestfish-actions.pod:776
25502 #, no-wrap
25503 msgid ""
25504 " dd src dest\n"
25505 "\n"
25506 msgstr ""
25507
25508 # type: textblock
25509 #. type: textblock
25510 #: ../fish/guestfish-actions.pod:783
25511 msgid ""
25512 "If the destination is a device, it must be as large or larger than the "
25513 "source file or device, otherwise the copy will fail.  This command cannot do "
25514 "partial copies (see L</copy-size>)."
25515 msgstr ""
25516
25517 # type: =head2
25518 #. type: =head2
25519 #: ../fish/guestfish-actions.pod:787
25520 msgid "df"
25521 msgstr ""
25522
25523 # type: verbatim
25524 #. type: verbatim
25525 #: ../fish/guestfish-actions.pod:789
25526 #, no-wrap
25527 msgid ""
25528 " df\n"
25529 "\n"
25530 msgstr ""
25531
25532 # type: textblock
25533 #. type: textblock
25534 #: ../fish/guestfish-actions.pod:793 ../fish/guestfish-actions.pod:804
25535 msgid ""
25536 "This command is mostly useful for interactive sessions.  It is I<not> "
25537 "intended that you try to parse the output string.  Use L</statvfs> from "
25538 "programs."
25539 msgstr ""
25540
25541 # type: =head2
25542 #. type: =head2
25543 #: ../fish/guestfish-actions.pod:797
25544 msgid "df-h"
25545 msgstr ""
25546
25547 # type: verbatim
25548 #. type: verbatim
25549 #: ../fish/guestfish-actions.pod:799
25550 #, no-wrap
25551 msgid ""
25552 " df-h\n"
25553 "\n"
25554 msgstr ""
25555
25556 # type: =head2
25557 #. type: =head2
25558 #: ../fish/guestfish-actions.pod:808
25559 msgid "dmesg"
25560 msgstr ""
25561
25562 # type: verbatim
25563 #. type: verbatim
25564 #: ../fish/guestfish-actions.pod:810
25565 #, no-wrap
25566 msgid ""
25567 " dmesg\n"
25568 "\n"
25569 msgstr ""
25570
25571 # type: textblock
25572 #. type: textblock
25573 #: ../fish/guestfish-actions.pod:816
25574 msgid ""
25575 "Another way to get the same information is to enable verbose messages with "
25576 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
25577 "before running the program."
25578 msgstr ""
25579
25580 # type: =head2
25581 #. type: =head2
25582 #: ../fish/guestfish-actions.pod:821
25583 msgid "download"
25584 msgstr ""
25585
25586 # type: verbatim
25587 #. type: verbatim
25588 #: ../fish/guestfish-actions.pod:823
25589 #, no-wrap
25590 msgid ""
25591 " download remotefilename (filename|-)\n"
25592 "\n"
25593 msgstr ""
25594
25595 # type: textblock
25596 #. type: textblock
25597 #: ../fish/guestfish-actions.pod:830
25598 msgid "See also L</upload>, L</cat>."
25599 msgstr ""
25600
25601 # type: =head2
25602 #. type: =head2
25603 #: ../fish/guestfish-actions.pod:834
25604 msgid "download-offset"
25605 msgstr ""
25606
25607 # type: verbatim
25608 #. type: verbatim
25609 #: ../fish/guestfish-actions.pod:836
25610 #, no-wrap
25611 msgid ""
25612 " download-offset remotefilename (filename|-) offset size\n"
25613 "\n"
25614 msgstr ""
25615
25616 # type: textblock
25617 #. type: textblock
25618 #: ../fish/guestfish-actions.pod:844
25619 msgid ""
25620 "Note that there is no limit on the amount of data that can be downloaded "
25621 "with this call, unlike with L</pread>, and this call always reads the full "
25622 "amount unless an error occurs."
25623 msgstr ""
25624
25625 # type: textblock
25626 #. type: textblock
25627 #: ../fish/guestfish-actions.pod:849
25628 msgid "See also L</download>, L</pread>."
25629 msgstr ""
25630
25631 # type: =head2
25632 #. type: =head2
25633 #: ../fish/guestfish-actions.pod:853
25634 msgid "drop-caches"
25635 msgstr ""
25636
25637 # type: verbatim
25638 #. type: verbatim
25639 #: ../fish/guestfish-actions.pod:855
25640 #, no-wrap
25641 msgid ""
25642 " drop-caches whattodrop\n"
25643 "\n"
25644 msgstr ""
25645
25646 # type: =head2
25647 #. type: =head2
25648 #: ../fish/guestfish-actions.pod:867
25649 msgid "du"
25650 msgstr ""
25651
25652 # type: verbatim
25653 #. type: verbatim
25654 #: ../fish/guestfish-actions.pod:869
25655 #, no-wrap
25656 msgid ""
25657 " du path\n"
25658 "\n"
25659 msgstr ""
25660
25661 # type: =head2
25662 #. type: =head2
25663 #: ../fish/guestfish-actions.pod:881
25664 msgid "e2fsck-f"
25665 msgstr ""
25666
25667 # type: verbatim
25668 #. type: verbatim
25669 #: ../fish/guestfish-actions.pod:883
25670 #, no-wrap
25671 msgid ""
25672 " e2fsck-f device\n"
25673 "\n"
25674 msgstr ""
25675
25676 # type: textblock
25677 #. type: textblock
25678 #: ../fish/guestfish-actions.pod:889
25679 msgid ""
25680 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
25681 "should use L</fsck>."
25682 msgstr ""
25683
25684 # type: =head2
25685 #. type: =head2
25686 #: ../fish/guestfish-actions.pod:892
25687 msgid "echo-daemon"
25688 msgstr ""
25689
25690 # type: verbatim
25691 #. type: verbatim
25692 #: ../fish/guestfish-actions.pod:894
25693 #, no-wrap
25694 msgid ""
25695 " echo-daemon 'words ...'\n"
25696 "\n"
25697 msgstr ""
25698
25699 # type: textblock
25700 #. type: textblock
25701 #: ../fish/guestfish-actions.pod:901
25702 msgid "See also L</ping-daemon>."
25703 msgstr ""
25704
25705 # type: =head2
25706 #. type: =head2
25707 #: ../fish/guestfish-actions.pod:903
25708 msgid "egrep"
25709 msgstr ""
25710
25711 # type: verbatim
25712 #. type: verbatim
25713 #: ../fish/guestfish-actions.pod:905
25714 #, no-wrap
25715 msgid ""
25716 " egrep regex path\n"
25717 "\n"
25718 msgstr ""
25719
25720 # type: =head2
25721 #. type: =head2
25722 #: ../fish/guestfish-actions.pod:913
25723 msgid "egrepi"
25724 msgstr ""
25725
25726 # type: verbatim
25727 #. type: verbatim
25728 #: ../fish/guestfish-actions.pod:915
25729 #, no-wrap
25730 msgid ""
25731 " egrepi regex path\n"
25732 "\n"
25733 msgstr ""
25734
25735 # type: =head2
25736 #. type: =head2
25737 #: ../fish/guestfish-actions.pod:923
25738 msgid "equal"
25739 msgstr ""
25740
25741 # type: verbatim
25742 #. type: verbatim
25743 #: ../fish/guestfish-actions.pod:925
25744 #, no-wrap
25745 msgid ""
25746 " equal file1 file2\n"
25747 "\n"
25748 msgstr ""
25749
25750 # type: =head2
25751 #. type: =head2
25752 #: ../fish/guestfish-actions.pod:932
25753 msgid "exists"
25754 msgstr ""
25755
25756 # type: verbatim
25757 #. type: verbatim
25758 #: ../fish/guestfish-actions.pod:934
25759 #, no-wrap
25760 msgid ""
25761 " exists path\n"
25762 "\n"
25763 msgstr ""
25764
25765 # type: textblock
25766 #. type: textblock
25767 #: ../fish/guestfish-actions.pod:939
25768 msgid "See also L</is-file>, L</is-dir>, L</stat>."
25769 msgstr ""
25770
25771 # type: =head2
25772 #. type: =head2
25773 #: ../fish/guestfish-actions.pod:941
25774 msgid "fallocate"
25775 msgstr ""
25776
25777 # type: verbatim
25778 #. type: verbatim
25779 #: ../fish/guestfish-actions.pod:943
25780 #, no-wrap
25781 msgid ""
25782 " fallocate path len\n"
25783 "\n"
25784 msgstr ""
25785
25786 #. type: textblock
25787 #: ../fish/guestfish-actions.pod:953
25788 msgid ""
25789 "This function is deprecated.  In new code, use the L</fallocate64> call "
25790 "instead."
25791 msgstr ""
25792
25793 # type: =head2
25794 #. type: =head2
25795 #: ../fish/guestfish-actions.pod:960
25796 msgid "fallocate64"
25797 msgstr ""
25798
25799 # type: verbatim
25800 #. type: verbatim
25801 #: ../fish/guestfish-actions.pod:962
25802 #, no-wrap
25803 msgid ""
25804 " fallocate64 path len\n"
25805 "\n"
25806 msgstr ""
25807
25808 # type: textblock
25809 #. type: textblock
25810 #: ../fish/guestfish-actions.pod:968
25811 msgid ""
25812 "Note that this call allocates disk blocks for the file.  To create a sparse "
25813 "file use L</truncate-size> instead."
25814 msgstr ""
25815
25816 # type: textblock
25817 #. type: textblock
25818 #: ../fish/guestfish-actions.pod:971
25819 msgid ""
25820 "The deprecated call L</fallocate> does the same, but owing to an oversight "
25821 "it only allowed 30 bit lengths to be specified, effectively limiting the "
25822 "maximum size of files created through that call to 1GB."
25823 msgstr ""
25824
25825 # type: =head2
25826 #. type: =head2
25827 #: ../fish/guestfish-actions.pod:980
25828 msgid "fgrep"
25829 msgstr ""
25830
25831 # type: verbatim
25832 #. type: verbatim
25833 #: ../fish/guestfish-actions.pod:982
25834 #, no-wrap
25835 msgid ""
25836 " fgrep pattern path\n"
25837 "\n"
25838 msgstr ""
25839
25840 # type: =head2
25841 #. type: =head2
25842 #: ../fish/guestfish-actions.pod:990
25843 msgid "fgrepi"
25844 msgstr ""
25845
25846 # type: verbatim
25847 #. type: verbatim
25848 #: ../fish/guestfish-actions.pod:992
25849 #, no-wrap
25850 msgid ""
25851 " fgrepi pattern path\n"
25852 "\n"
25853 msgstr ""
25854
25855 # type: =head2
25856 #. type: =head2
25857 #: ../fish/guestfish-actions.pod:1000
25858 msgid "file"
25859 msgstr ""
25860
25861 # type: verbatim
25862 #. type: verbatim
25863 #: ../fish/guestfish-actions.pod:1002
25864 #, no-wrap
25865 msgid ""
25866 " file path\n"
25867 "\n"
25868 msgstr ""
25869
25870 #. type: textblock
25871 #: ../fish/guestfish-actions.pod:1018
25872 msgid ""
25873 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
25874 "(etc)."
25875 msgstr ""
25876
25877 # type: =head2
25878 #. type: =head2
25879 #: ../fish/guestfish-actions.pod:1021
25880 msgid "file-architecture"
25881 msgstr ""
25882
25883 # type: verbatim
25884 #. type: verbatim
25885 #: ../fish/guestfish-actions.pod:1023
25886 #, no-wrap
25887 msgid ""
25888 " file-architecture filename\n"
25889 "\n"
25890 msgstr ""
25891
25892 # type: =head2
25893 #. type: =head2
25894 #: ../fish/guestfish-actions.pod:1126
25895 msgid "filesize"
25896 msgstr ""
25897
25898 # type: verbatim
25899 #. type: verbatim
25900 #: ../fish/guestfish-actions.pod:1128
25901 #, no-wrap
25902 msgid ""
25903 " filesize file\n"
25904 "\n"
25905 msgstr ""
25906
25907 # type: textblock
25908 #. type: textblock
25909 #: ../fish/guestfish-actions.pod:1132
25910 msgid ""
25911 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
25912 "file> etc.  To get the size of block devices, use L</blockdev-getsize64>."
25913 msgstr ""
25914
25915 # type: =head2
25916 #. type: =head2
25917 #: ../fish/guestfish-actions.pod:1136
25918 msgid "fill"
25919 msgstr ""
25920
25921 # type: verbatim
25922 #. type: verbatim
25923 #: ../fish/guestfish-actions.pod:1138
25924 #, no-wrap
25925 msgid ""
25926 " fill c len path\n"
25927 "\n"
25928 msgstr ""
25929
25930 # type: textblock
25931 #. type: textblock
25932 #: ../fish/guestfish-actions.pod:1144
25933 msgid ""
25934 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
25935 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
25936 "L</fill-pattern>."
25937 msgstr ""
25938
25939 # type: =head2
25940 #. type: =head2
25941 #: ../fish/guestfish-actions.pod:1149
25942 msgid "fill-pattern"
25943 msgstr ""
25944
25945 # type: verbatim
25946 #. type: verbatim
25947 #: ../fish/guestfish-actions.pod:1151
25948 #, no-wrap
25949 msgid ""
25950 " fill-pattern pattern len path\n"
25951 "\n"
25952 msgstr ""
25953
25954 # type: textblock
25955 #. type: textblock
25956 #: ../fish/guestfish-actions.pod:1153
25957 msgid ""
25958 "This function is like L</fill> except that it creates a new file of length "
25959 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
25960 "is truncated if necessary to ensure the length of the file is exactly C<len> "
25961 "bytes."
25962 msgstr ""
25963
25964 # type: =head2
25965 #. type: =head2
25966 #: ../fish/guestfish-actions.pod:1158
25967 msgid "find"
25968 msgstr ""
25969
25970 # type: verbatim
25971 #. type: verbatim
25972 #: ../fish/guestfish-actions.pod:1160
25973 #, no-wrap
25974 msgid ""
25975 " find directory\n"
25976 "\n"
25977 msgstr ""
25978
25979 # type: textblock
25980 #. type: textblock
25981 #: ../fish/guestfish-actions.pod:1174
25982 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
25983 msgstr ""
25984
25985 # type: textblock
25986 #. type: textblock
25987 #: ../fish/guestfish-actions.pod:1187
25988 msgid "See also L</find0>."
25989 msgstr ""
25990
25991 # type: =head2
25992 #. type: =head2
25993 #: ../fish/guestfish-actions.pod:1192
25994 msgid "find0"
25995 msgstr ""
25996
25997 # type: verbatim
25998 #. type: verbatim
25999 #: ../fish/guestfish-actions.pod:1194
26000 #, no-wrap
26001 msgid ""
26002 " find0 directory (files|-)\n"
26003 "\n"
26004 msgstr ""
26005
26006 # type: textblock
26007 #. type: textblock
26008 #: ../fish/guestfish-actions.pod:1200
26009 msgid ""
26010 "This command works the same way as L</find> with the following exceptions:"
26011 msgstr ""
26012
26013 # type: =head2
26014 #. type: =head2
26015 #: ../fish/guestfish-actions.pod:1227
26016 msgid "findfs-label"
26017 msgstr ""
26018
26019 # type: verbatim
26020 #. type: verbatim
26021 #: ../fish/guestfish-actions.pod:1229
26022 #, no-wrap
26023 msgid ""
26024 " findfs-label label\n"
26025 "\n"
26026 msgstr ""
26027
26028 # type: textblock
26029 #. type: textblock
26030 #: ../fish/guestfish-actions.pod:1235
26031 msgid "To find the label of a filesystem, use L</vfs-label>."
26032 msgstr ""
26033
26034 # type: =head2
26035 #. type: =head2
26036 #: ../fish/guestfish-actions.pod:1237
26037 msgid "findfs-uuid"
26038 msgstr ""
26039
26040 # type: verbatim
26041 #. type: verbatim
26042 #: ../fish/guestfish-actions.pod:1239
26043 #, no-wrap
26044 msgid ""
26045 " findfs-uuid uuid\n"
26046 "\n"
26047 msgstr ""
26048
26049 # type: textblock
26050 #. type: textblock
26051 #: ../fish/guestfish-actions.pod:1245
26052 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
26053 msgstr ""
26054
26055 # type: =head2
26056 #. type: =head2
26057 #: ../fish/guestfish-actions.pod:1247
26058 msgid "fsck"
26059 msgstr ""
26060
26061 # type: verbatim
26062 #. type: verbatim
26063 #: ../fish/guestfish-actions.pod:1249
26064 #, no-wrap
26065 msgid ""
26066 " fsck fstype device\n"
26067 "\n"
26068 msgstr ""
26069
26070 # type: =head2
26071 #. type: =head2
26072 #: ../fish/guestfish-actions.pod:1279
26073 msgid "get-append"
26074 msgstr ""
26075
26076 # type: verbatim
26077 #. type: verbatim
26078 #: ../fish/guestfish-actions.pod:1281
26079 #, no-wrap
26080 msgid ""
26081 " get-append\n"
26082 "\n"
26083 msgstr ""
26084
26085 #. type: =head2
26086 #: ../fish/guestfish-actions.pod:1288
26087 msgid "get-attach-method"
26088 msgstr ""
26089
26090 #. type: verbatim
26091 #: ../fish/guestfish-actions.pod:1290
26092 #, no-wrap
26093 msgid ""
26094 " get-attach-method\n"
26095 "\n"
26096 msgstr ""
26097
26098 #. type: textblock
26099 #: ../fish/guestfish-actions.pod:1292
26100 msgid "Return the current attach method.  See L</set-attach-method>."
26101 msgstr ""
26102
26103 # type: =head2
26104 #. type: =head2
26105 #: ../fish/guestfish-actions.pod:1294
26106 msgid "get-autosync"
26107 msgstr ""
26108
26109 # type: verbatim
26110 #. type: verbatim
26111 #: ../fish/guestfish-actions.pod:1296
26112 #, no-wrap
26113 msgid ""
26114 " get-autosync\n"
26115 "\n"
26116 msgstr ""
26117
26118 # type: =head2
26119 #. type: =head2
26120 #: ../fish/guestfish-actions.pod:1300
26121 msgid "get-direct"
26122 msgstr ""
26123
26124 # type: verbatim
26125 #. type: verbatim
26126 #: ../fish/guestfish-actions.pod:1302
26127 #, no-wrap
26128 msgid ""
26129 " get-direct\n"
26130 "\n"
26131 msgstr ""
26132
26133 # type: =head2
26134 #. type: =head2
26135 #: ../fish/guestfish-actions.pod:1306
26136 msgid "get-e2label"
26137 msgstr ""
26138
26139 # type: verbatim
26140 #. type: verbatim
26141 #: ../fish/guestfish-actions.pod:1308
26142 #, no-wrap
26143 msgid ""
26144 " get-e2label device\n"
26145 "\n"
26146 msgstr ""
26147
26148 #. type: textblock
26149 #: ../fish/guestfish-actions.pod:1313
26150 msgid ""
26151 "This function is deprecated.  In new code, use the L</vfs_label> call "
26152 "instead."
26153 msgstr ""
26154
26155 # type: =head2
26156 #. type: =head2
26157 #: ../fish/guestfish-actions.pod:1320
26158 msgid "get-e2uuid"
26159 msgstr ""
26160
26161 # type: verbatim
26162 #. type: verbatim
26163 #: ../fish/guestfish-actions.pod:1322
26164 #, no-wrap
26165 msgid ""
26166 " get-e2uuid device\n"
26167 "\n"
26168 msgstr ""
26169
26170 #. type: textblock
26171 #: ../fish/guestfish-actions.pod:1327
26172 msgid ""
26173 "This function is deprecated.  In new code, use the L</vfs_uuid> call instead."
26174 msgstr ""
26175
26176 # type: =head2
26177 #. type: =head2
26178 #: ../fish/guestfish-actions.pod:1334
26179 msgid "get-memsize"
26180 msgstr ""
26181
26182 # type: verbatim
26183 #. type: verbatim
26184 #: ../fish/guestfish-actions.pod:1336
26185 #, no-wrap
26186 msgid ""
26187 " get-memsize\n"
26188 "\n"
26189 msgstr ""
26190
26191 # type: textblock
26192 #. type: textblock
26193 #: ../fish/guestfish-actions.pod:1341
26194 msgid ""
26195 "If L</set-memsize> was not called on this handle, and if "
26196 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
26197 "value for memsize."
26198 msgstr ""
26199
26200 # type: =head2
26201 #. type: =head2
26202 #: ../fish/guestfish-actions.pod:1348
26203 msgid "get-network"
26204 msgstr ""
26205
26206 # type: verbatim
26207 #. type: verbatim
26208 #: ../fish/guestfish-actions.pod:1350
26209 #, no-wrap
26210 msgid ""
26211 " get-network\n"
26212 "\n"
26213 msgstr ""
26214
26215 # type: =head2
26216 #. type: =head2
26217 #: ../fish/guestfish-actions.pod:1354
26218 msgid "get-path"
26219 msgstr ""
26220
26221 # type: verbatim
26222 #. type: verbatim
26223 #: ../fish/guestfish-actions.pod:1356
26224 #, no-wrap
26225 msgid ""
26226 " get-path\n"
26227 "\n"
26228 msgstr ""
26229
26230 # type: =head2
26231 #. type: =head2
26232 #: ../fish/guestfish-actions.pod:1363
26233 msgid "get-pid"
26234 msgstr ""
26235
26236 # type: =head2
26237 #. type: =head2
26238 #: ../fish/guestfish-actions.pod:1365
26239 msgid "pid"
26240 msgstr ""
26241
26242 # type: verbatim
26243 #. type: verbatim
26244 #: ../fish/guestfish-actions.pod:1367
26245 #, no-wrap
26246 msgid ""
26247 " get-pid\n"
26248 "\n"
26249 msgstr ""
26250
26251 # type: =head2
26252 #. type: =head2
26253 #: ../fish/guestfish-actions.pod:1374
26254 msgid "get-qemu"
26255 msgstr ""
26256
26257 # type: verbatim
26258 #. type: verbatim
26259 #: ../fish/guestfish-actions.pod:1376
26260 #, no-wrap
26261 msgid ""
26262 " get-qemu\n"
26263 "\n"
26264 msgstr ""
26265
26266 # type: =head2
26267 #. type: =head2
26268 #: ../fish/guestfish-actions.pod:1383
26269 msgid "get-recovery-proc"
26270 msgstr ""
26271
26272 # type: verbatim
26273 #. type: verbatim
26274 #: ../fish/guestfish-actions.pod:1385
26275 #, no-wrap
26276 msgid ""
26277 " get-recovery-proc\n"
26278 "\n"
26279 msgstr ""
26280
26281 # type: =head2
26282 #. type: =head2
26283 #: ../fish/guestfish-actions.pod:1389
26284 msgid "get-selinux"
26285 msgstr ""
26286
26287 # type: verbatim
26288 #. type: verbatim
26289 #: ../fish/guestfish-actions.pod:1391
26290 #, no-wrap
26291 msgid ""
26292 " get-selinux\n"
26293 "\n"
26294 msgstr ""
26295
26296 # type: textblock
26297 #. type: textblock
26298 #: ../fish/guestfish-actions.pod:1393
26299 msgid ""
26300 "This returns the current setting of the selinux flag which is passed to the "
26301 "appliance at boot time.  See L</set-selinux>."
26302 msgstr ""
26303
26304 # type: =head2
26305 #. type: =head2
26306 #: ../fish/guestfish-actions.pod:1399
26307 msgid "get-state"
26308 msgstr ""
26309
26310 # type: verbatim
26311 #. type: verbatim
26312 #: ../fish/guestfish-actions.pod:1401
26313 #, no-wrap
26314 msgid ""
26315 " get-state\n"
26316 "\n"
26317 msgstr ""
26318
26319 # type: =head2
26320 #. type: =head2
26321 #: ../fish/guestfish-actions.pod:1408
26322 msgid "get-trace"
26323 msgstr ""
26324
26325 # type: verbatim
26326 #. type: verbatim
26327 #: ../fish/guestfish-actions.pod:1410
26328 #, no-wrap
26329 msgid ""
26330 " get-trace\n"
26331 "\n"
26332 msgstr ""
26333
26334 # type: =head2
26335 #. type: =head2
26336 #: ../fish/guestfish-actions.pod:1414
26337 msgid "get-umask"
26338 msgstr ""
26339
26340 # type: verbatim
26341 #. type: verbatim
26342 #: ../fish/guestfish-actions.pod:1416
26343 #, no-wrap
26344 msgid ""
26345 " get-umask\n"
26346 "\n"
26347 msgstr ""
26348
26349 # type: textblock
26350 #. type: textblock
26351 #: ../fish/guestfish-actions.pod:1418
26352 msgid ""
26353 "Return the current umask.  By default the umask is C<022> unless it has been "
26354 "set by calling L</umask>."
26355 msgstr ""
26356
26357 # type: =head2
26358 #. type: =head2
26359 #: ../fish/guestfish-actions.pod:1421
26360 msgid "get-verbose"
26361 msgstr ""
26362
26363 # type: verbatim
26364 #. type: verbatim
26365 #: ../fish/guestfish-actions.pod:1423
26366 #, no-wrap
26367 msgid ""
26368 " get-verbose\n"
26369 "\n"
26370 msgstr ""
26371
26372 # type: =head2
26373 #. type: =head2
26374 #: ../fish/guestfish-actions.pod:1427
26375 msgid "getcon"
26376 msgstr ""
26377
26378 # type: verbatim
26379 #. type: verbatim
26380 #: ../fish/guestfish-actions.pod:1429
26381 #, no-wrap
26382 msgid ""
26383 " getcon\n"
26384 "\n"
26385 msgstr ""
26386
26387 # type: textblock
26388 #. type: textblock
26389 #: ../fish/guestfish-actions.pod:1433
26390 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
26391 msgstr ""
26392
26393 # type: =head2
26394 #. type: =head2
26395 #: ../fish/guestfish-actions.pod:1436
26396 msgid "getxattr"
26397 msgstr ""
26398
26399 # type: verbatim
26400 #. type: verbatim
26401 #: ../fish/guestfish-actions.pod:1438
26402 #, no-wrap
26403 msgid ""
26404 " getxattr path name\n"
26405 "\n"
26406 msgstr ""
26407
26408 # type: textblock
26409 #. type: textblock
26410 #: ../fish/guestfish-actions.pod:1440
26411 msgid ""
26412 "Get a single extended attribute from file C<path> named C<name>.  This call "
26413 "follows symlinks.  If you want to lookup an extended attribute for the "
26414 "symlink itself, use L</lgetxattr>."
26415 msgstr ""
26416
26417 # type: textblock
26418 #. type: textblock
26419 #: ../fish/guestfish-actions.pod:1444 ../fish/guestfish-actions.pod:2450
26420 msgid ""
26421 "Normally it is better to get all extended attributes from a file in one go "
26422 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
26423 "buggy and do not provide a way to list out attributes.  For these "
26424 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
26425 "attributes you want in advance and call this function."
26426 msgstr ""
26427
26428 # type: textblock
26429 #. type: textblock
26430 #: ../fish/guestfish-actions.pod:1454
26431 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
26432 msgstr ""
26433
26434 # type: =head2
26435 #. type: =head2
26436 #: ../fish/guestfish-actions.pod:1456
26437 msgid "getxattrs"
26438 msgstr ""
26439
26440 # type: verbatim
26441 #. type: verbatim
26442 #: ../fish/guestfish-actions.pod:1458
26443 #, no-wrap
26444 msgid ""
26445 " getxattrs path\n"
26446 "\n"
26447 msgstr ""
26448
26449 # type: textblock
26450 #. type: textblock
26451 #: ../fish/guestfish-actions.pod:1466
26452 msgid "See also: L</lgetxattrs>, L<attr(5)>."
26453 msgstr ""
26454
26455 # type: =head2
26456 #. type: =head2
26457 #: ../fish/guestfish-actions.pod:1468
26458 msgid "glob-expand"
26459 msgstr ""
26460
26461 # type: verbatim
26462 #. type: verbatim
26463 #: ../fish/guestfish-actions.pod:1470
26464 #, no-wrap
26465 msgid ""
26466 " glob-expand pattern\n"
26467 "\n"
26468 msgstr ""
26469
26470 # type: =head2
26471 #. type: =head2
26472 #: ../fish/guestfish-actions.pod:1483
26473 msgid "grep"
26474 msgstr ""
26475
26476 # type: verbatim
26477 #. type: verbatim
26478 #: ../fish/guestfish-actions.pod:1485
26479 #, no-wrap
26480 msgid ""
26481 " grep regex path\n"
26482 "\n"
26483 msgstr ""
26484
26485 # type: =head2
26486 #. type: =head2
26487 #: ../fish/guestfish-actions.pod:1493
26488 msgid "grepi"
26489 msgstr ""
26490
26491 # type: verbatim
26492 #. type: verbatim
26493 #: ../fish/guestfish-actions.pod:1495
26494 #, no-wrap
26495 msgid ""
26496 " grepi regex path\n"
26497 "\n"
26498 msgstr ""
26499
26500 # type: =head2
26501 #. type: =head2
26502 #: ../fish/guestfish-actions.pod:1503
26503 msgid "grub-install"
26504 msgstr ""
26505
26506 # type: verbatim
26507 #. type: verbatim
26508 #: ../fish/guestfish-actions.pod:1505
26509 #, no-wrap
26510 msgid ""
26511 " grub-install root device\n"
26512 "\n"
26513 msgstr ""
26514
26515 # type: =head2
26516 #. type: =head2
26517 #: ../fish/guestfish-actions.pod:1521
26518 msgid "head"
26519 msgstr ""
26520
26521 # type: verbatim
26522 #. type: verbatim
26523 #: ../fish/guestfish-actions.pod:1523
26524 #, no-wrap
26525 msgid ""
26526 " head path\n"
26527 "\n"
26528 msgstr ""
26529
26530 # type: =head2
26531 #. type: =head2
26532 #: ../fish/guestfish-actions.pod:1531
26533 msgid "head-n"
26534 msgstr ""
26535
26536 # type: verbatim
26537 #. type: verbatim
26538 #: ../fish/guestfish-actions.pod:1533
26539 #, no-wrap
26540 msgid ""
26541 " head-n nrlines path\n"
26542 "\n"
26543 msgstr ""
26544
26545 # type: =head2
26546 #. type: =head2
26547 #: ../fish/guestfish-actions.pod:1546
26548 msgid "hexdump"
26549 msgstr ""
26550
26551 # type: verbatim
26552 #. type: verbatim
26553 #: ../fish/guestfish-actions.pod:1548
26554 #, no-wrap
26555 msgid ""
26556 " hexdump path\n"
26557 "\n"
26558 msgstr ""
26559
26560 # type: =head2
26561 #. type: =head2
26562 #: ../fish/guestfish-actions.pod:1556
26563 msgid "initrd-cat"
26564 msgstr ""
26565
26566 # type: verbatim
26567 #. type: verbatim
26568 #: ../fish/guestfish-actions.pod:1558
26569 #, no-wrap
26570 msgid ""
26571 " initrd-cat initrdpath filename\n"
26572 "\n"
26573 msgstr ""
26574
26575 # type: textblock
26576 #. type: textblock
26577 #: ../fish/guestfish-actions.pod:1570
26578 msgid "See also L</initrd-list>."
26579 msgstr ""
26580
26581 # type: =head2
26582 #. type: =head2
26583 #: ../fish/guestfish-actions.pod:1575
26584 msgid "initrd-list"
26585 msgstr ""
26586
26587 # type: verbatim
26588 #. type: verbatim
26589 #: ../fish/guestfish-actions.pod:1577
26590 #, no-wrap
26591 msgid ""
26592 " initrd-list path\n"
26593 "\n"
26594 msgstr ""
26595
26596 # type: =head2
26597 #. type: =head2
26598 #: ../fish/guestfish-actions.pod:1589
26599 msgid "inotify-add-watch"
26600 msgstr ""
26601
26602 # type: verbatim
26603 #. type: verbatim
26604 #: ../fish/guestfish-actions.pod:1591
26605 #, no-wrap
26606 msgid ""
26607 " inotify-add-watch path mask\n"
26608 "\n"
26609 msgstr ""
26610
26611 # type: =head2
26612 #. type: =head2
26613 #: ../fish/guestfish-actions.pod:1603
26614 msgid "inotify-close"
26615 msgstr ""
26616
26617 # type: verbatim
26618 #. type: verbatim
26619 #: ../fish/guestfish-actions.pod:1605
26620 #, no-wrap
26621 msgid ""
26622 " inotify-close\n"
26623 "\n"
26624 msgstr ""
26625
26626 # type: =head2
26627 #. type: =head2
26628 #: ../fish/guestfish-actions.pod:1611
26629 msgid "inotify-files"
26630 msgstr ""
26631
26632 # type: verbatim
26633 #. type: verbatim
26634 #: ../fish/guestfish-actions.pod:1613
26635 #, no-wrap
26636 msgid ""
26637 " inotify-files\n"
26638 "\n"
26639 msgstr ""
26640
26641 # type: textblock
26642 #. type: textblock
26643 #: ../fish/guestfish-actions.pod:1615
26644 msgid ""
26645 "This function is a helpful wrapper around L</inotify-read> which just "
26646 "returns a list of pathnames of objects that were touched.  The returned "
26647 "pathnames are sorted and deduplicated."
26648 msgstr ""
26649
26650 # type: =head2
26651 #. type: =head2
26652 #: ../fish/guestfish-actions.pod:1619
26653 msgid "inotify-init"
26654 msgstr ""
26655
26656 # type: verbatim
26657 #. type: verbatim
26658 #: ../fish/guestfish-actions.pod:1621
26659 #, no-wrap
26660 msgid ""
26661 " inotify-init maxevents\n"
26662 "\n"
26663 msgstr ""
26664
26665 # type: textblock
26666 #. type: textblock
26667 #: ../fish/guestfish-actions.pod:1627
26668 msgid ""
26669 "C<maxevents> is the maximum number of events which will be queued up between "
26670 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
26671 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
26672 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
26673 "but records the fact that it threw them away by setting a flag "
26674 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
26675 msgstr ""
26676
26677 # type: textblock
26678 #. type: textblock
26679 #: ../fish/guestfish-actions.pod:1637
26680 msgid ""
26681 "Before any events are generated, you have to add some watches to the "
26682 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
26683 "L</inotify-watch-all>."
26684 msgstr ""
26685
26686 # type: textblock
26687 #. type: textblock
26688 #: ../fish/guestfish-actions.pod:1643
26689 msgid ""
26690 "Queued up events should be read periodically by calling L</inotify-read> (or "
26691 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
26692 "If you don't read the events out often enough then you risk the internal "
26693 "queue overflowing."
26694 msgstr ""
26695
26696 # type: textblock
26697 #. type: textblock
26698 #: ../fish/guestfish-actions.pod:1650
26699 msgid ""
26700 "The handle should be closed after use by calling L</inotify-close>.  This "
26701 "also removes any watches automatically."
26702 msgstr ""
26703
26704 # type: =head2
26705 #. type: =head2
26706 #: ../fish/guestfish-actions.pod:1659
26707 msgid "inotify-read"
26708 msgstr ""
26709
26710 # type: verbatim
26711 #. type: verbatim
26712 #: ../fish/guestfish-actions.pod:1661
26713 #, no-wrap
26714 msgid ""
26715 " inotify-read\n"
26716 "\n"
26717 msgstr ""
26718
26719 # type: =head2
26720 #. type: =head2
26721 #: ../fish/guestfish-actions.pod:1674
26722 msgid "inotify-rm-watch"
26723 msgstr ""
26724
26725 # type: verbatim
26726 #. type: verbatim
26727 #: ../fish/guestfish-actions.pod:1676
26728 #, no-wrap
26729 msgid ""
26730 " inotify-rm-watch wd\n"
26731 "\n"
26732 msgstr ""
26733
26734 # type: textblock
26735 #. type: textblock
26736 #: ../fish/guestfish-actions.pod:1678
26737 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
26738 msgstr ""
26739
26740 # type: =head2
26741 #. type: =head2
26742 #: ../fish/guestfish-actions.pod:1681
26743 msgid "inspect-get-arch"
26744 msgstr ""
26745
26746 # type: verbatim
26747 #. type: verbatim
26748 #: ../fish/guestfish-actions.pod:1683
26749 #, no-wrap
26750 msgid ""
26751 " inspect-get-arch root\n"
26752 "\n"
26753 msgstr ""
26754
26755 # type: textblock
26756 #. type: textblock
26757 #: ../fish/guestfish-actions.pod:1685 ../fish/guestfish-actions.pod:1701
26758 #: ../fish/guestfish-actions.pod:1787 ../fish/guestfish-actions.pod:1823
26759 #: ../fish/guestfish-actions.pod:1841 ../fish/guestfish-actions.pod:1875
26760 #: ../fish/guestfish-actions.pod:1890 ../fish/guestfish-actions.pod:1911
26761 #: ../fish/guestfish-actions.pod:1926 ../fish/guestfish-actions.pod:1959
26762 #: ../fish/guestfish-actions.pod:1981 ../fish/guestfish-actions.pod:2005
26763 #: ../fish/guestfish-actions.pod:2022 ../fish/guestfish-actions.pod:2065
26764 #: ../fish/guestfish-actions.pod:2100 ../fish/guestfish-actions.pod:2116
26765 #: ../fish/guestfish-actions.pod:2132 ../fish/guestfish-actions.pod:2145
26766 #: ../fish/guestfish-actions.pod:2158 ../fish/guestfish-actions.pod:2173
26767 msgid ""
26768 "This function should only be called with a root device string as returned by "
26769 "L</inspect-os>."
26770 msgstr ""
26771
26772 # type: textblock
26773 #. type: textblock
26774 #: ../fish/guestfish-actions.pod:1688
26775 msgid ""
26776 "This returns the architecture of the inspected operating system.  The "
26777 "possible return values are listed under L</file-architecture>."
26778 msgstr ""
26779
26780 # type: =head2
26781 #. type: =head2
26782 #: ../fish/guestfish-actions.pod:1697
26783 msgid "inspect-get-distro"
26784 msgstr ""
26785
26786 # type: verbatim
26787 #. type: verbatim
26788 #: ../fish/guestfish-actions.pod:1699
26789 #, no-wrap
26790 msgid ""
26791 " inspect-get-distro root\n"
26792 "\n"
26793 msgstr ""
26794
26795 #. type: =head2
26796 #: ../fish/guestfish-actions.pod:1783
26797 msgid "inspect-get-drive-mappings"
26798 msgstr ""
26799
26800 #. type: verbatim
26801 #: ../fish/guestfish-actions.pod:1785
26802 #, no-wrap
26803 msgid ""
26804 " inspect-get-drive-mappings root\n"
26805 "\n"
26806 msgstr ""
26807
26808 #. type: textblock
26809 #: ../fish/guestfish-actions.pod:1815
26810 msgid ""
26811 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26812 "get-mountpoints>, L</inspect-get-filesystems>."
26813 msgstr ""
26814
26815 # type: =head2
26816 #. type: =head2
26817 #: ../fish/guestfish-actions.pod:1819
26818 msgid "inspect-get-filesystems"
26819 msgstr ""
26820
26821 # type: verbatim
26822 #. type: verbatim
26823 #: ../fish/guestfish-actions.pod:1821
26824 #, no-wrap
26825 msgid ""
26826 " inspect-get-filesystems root\n"
26827 "\n"
26828 msgstr ""
26829
26830 # type: textblock
26831 #. type: textblock
26832 #: ../fish/guestfish-actions.pod:1834
26833 msgid ""
26834 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26835 "get-mountpoints>."
26836 msgstr ""
26837
26838 #. type: =head2
26839 #: ../fish/guestfish-actions.pod:1837
26840 msgid "inspect-get-format"
26841 msgstr ""
26842
26843 #. type: verbatim
26844 #: ../fish/guestfish-actions.pod:1839
26845 #, no-wrap
26846 msgid ""
26847 " inspect-get-format root\n"
26848 "\n"
26849 msgstr ""
26850
26851 # type: =head2
26852 #. type: =head2
26853 #: ../fish/guestfish-actions.pod:1871
26854 msgid "inspect-get-hostname"
26855 msgstr ""
26856
26857 # type: verbatim
26858 #. type: verbatim
26859 #: ../fish/guestfish-actions.pod:1873
26860 #, no-wrap
26861 msgid ""
26862 " inspect-get-hostname root\n"
26863 "\n"
26864 msgstr ""
26865
26866 # type: =head2
26867 #. type: =head2
26868 #: ../fish/guestfish-actions.pod:1886
26869 msgid "inspect-get-major-version"
26870 msgstr ""
26871
26872 # type: verbatim
26873 #. type: verbatim
26874 #: ../fish/guestfish-actions.pod:1888
26875 #, no-wrap
26876 msgid ""
26877 " inspect-get-major-version root\n"
26878 "\n"
26879 msgstr ""
26880
26881 # type: =head2
26882 #. type: =head2
26883 #: ../fish/guestfish-actions.pod:1907
26884 msgid "inspect-get-minor-version"
26885 msgstr ""
26886
26887 # type: verbatim
26888 #. type: verbatim
26889 #: ../fish/guestfish-actions.pod:1909
26890 #, no-wrap
26891 msgid ""
26892 " inspect-get-minor-version root\n"
26893 "\n"
26894 msgstr ""
26895
26896 # type: textblock
26897 #. type: textblock
26898 #: ../fish/guestfish-actions.pod:1919
26899 msgid ""
26900 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26901 "get-major-version>."
26902 msgstr ""
26903
26904 # type: =head2
26905 #. type: =head2
26906 #: ../fish/guestfish-actions.pod:1922
26907 msgid "inspect-get-mountpoints"
26908 msgstr ""
26909
26910 # type: verbatim
26911 #. type: verbatim
26912 #: ../fish/guestfish-actions.pod:1924
26913 #, no-wrap
26914 msgid ""
26915 " inspect-get-mountpoints root\n"
26916 "\n"
26917 msgstr ""
26918
26919 #. type: textblock
26920 #: ../fish/guestfish-actions.pod:1946
26921 msgid ""
26922 "For operating systems like Windows which still use drive letters, this call "
26923 "will only return an entry for the first drive \"mounted on\" C</>.  For "
26924 "information about the mapping of drive letters to partitions, see L</inspect-"
26925 "get-drive-mappings>."
26926 msgstr ""
26927
26928 # type: textblock
26929 #. type: textblock
26930 #: ../fish/guestfish-actions.pod:1952
26931 msgid ""
26932 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26933 "get-filesystems>."
26934 msgstr ""
26935
26936 # type: =head2
26937 #. type: =head2
26938 #: ../fish/guestfish-actions.pod:1955
26939 msgid "inspect-get-package-format"
26940 msgstr ""
26941
26942 # type: verbatim
26943 #. type: verbatim
26944 #: ../fish/guestfish-actions.pod:1957
26945 #, no-wrap
26946 msgid ""
26947 " inspect-get-package-format root\n"
26948 "\n"
26949 msgstr ""
26950
26951 # type: textblock
26952 #. type: textblock
26953 #: ../fish/guestfish-actions.pod:1962
26954 msgid ""
26955 "This function and L</inspect-get-package-management> return the package "
26956 "format and package management tool used by the inspected operating system.  "
26957 "For example for Fedora these functions would return C<rpm> (package format) "
26958 "and C<yum> (package management)."
26959 msgstr ""
26960
26961 # type: =head2
26962 #. type: =head2
26963 #: ../fish/guestfish-actions.pod:1977
26964 msgid "inspect-get-package-management"
26965 msgstr ""
26966
26967 # type: verbatim
26968 #. type: verbatim
26969 #: ../fish/guestfish-actions.pod:1979
26970 #, no-wrap
26971 msgid ""
26972 " inspect-get-package-management root\n"
26973 "\n"
26974 msgstr ""
26975
26976 # type: textblock
26977 #. type: textblock
26978 #: ../fish/guestfish-actions.pod:1984
26979 msgid ""
26980 "L</inspect-get-package-format> and this function return the package format "
26981 "and package management tool used by the inspected operating system.  For "
26982 "example for Fedora these functions would return C<rpm> (package format) and "
26983 "C<yum> (package management)."
26984 msgstr ""
26985
26986 # type: =head2
26987 #. type: =head2
26988 #: ../fish/guestfish-actions.pod:2001
26989 msgid "inspect-get-product-name"
26990 msgstr ""
26991
26992 # type: verbatim
26993 #. type: verbatim
26994 #: ../fish/guestfish-actions.pod:2003
26995 #, no-wrap
26996 msgid ""
26997 " inspect-get-product-name root\n"
26998 "\n"
26999 msgstr ""
27000
27001 #. type: =head2
27002 #: ../fish/guestfish-actions.pod:2018
27003 msgid "inspect-get-product-variant"
27004 msgstr ""
27005
27006 #. type: verbatim
27007 #: ../fish/guestfish-actions.pod:2020
27008 #, no-wrap
27009 msgid ""
27010 " inspect-get-product-variant root\n"
27011 "\n"
27012 msgstr ""
27013
27014 #. type: textblock
27015 #: ../fish/guestfish-actions.pod:2044
27016 msgid ""
27017 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
27018 "get-product-name>, L</inspect-get-major-version>."
27019 msgstr ""
27020
27021 # type: =head2
27022 #. type: =head2
27023 #: ../fish/guestfish-actions.pod:2048
27024 msgid "inspect-get-roots"
27025 msgstr ""
27026
27027 # type: verbatim
27028 #. type: verbatim
27029 #: ../fish/guestfish-actions.pod:2050
27030 #, no-wrap
27031 msgid ""
27032 " inspect-get-roots\n"
27033 "\n"
27034 msgstr ""
27035
27036 # type: textblock
27037 #. type: textblock
27038 #: ../fish/guestfish-actions.pod:2052
27039 msgid ""
27040 "This function is a convenient way to get the list of root devices, as "
27041 "returned from a previous call to L</inspect-os>, but without redoing the "
27042 "whole inspection process."
27043 msgstr ""
27044
27045 # type: textblock
27046 #. type: textblock
27047 #: ../fish/guestfish-actions.pod:2056
27048 msgid ""
27049 "This returns an empty list if either no root devices were found or the "
27050 "caller has not called L</inspect-os>."
27051 msgstr ""
27052
27053 # type: =head2
27054 #. type: =head2
27055 #: ../fish/guestfish-actions.pod:2061
27056 msgid "inspect-get-type"
27057 msgstr ""
27058
27059 # type: verbatim
27060 #. type: verbatim
27061 #: ../fish/guestfish-actions.pod:2063
27062 #, no-wrap
27063 msgid ""
27064 " inspect-get-type root\n"
27065 "\n"
27066 msgstr ""
27067
27068 #. type: =head2
27069 #: ../fish/guestfish-actions.pod:2096
27070 msgid "inspect-get-windows-current-control-set"
27071 msgstr ""
27072
27073 #. type: verbatim
27074 #: ../fish/guestfish-actions.pod:2098
27075 #, no-wrap
27076 msgid ""
27077 " inspect-get-windows-current-control-set root\n"
27078 "\n"
27079 msgstr ""
27080
27081 # type: =head2
27082 #. type: =head2
27083 #: ../fish/guestfish-actions.pod:2112
27084 msgid "inspect-get-windows-systemroot"
27085 msgstr ""
27086
27087 # type: verbatim
27088 #. type: verbatim
27089 #: ../fish/guestfish-actions.pod:2114
27090 #, no-wrap
27091 msgid ""
27092 " inspect-get-windows-systemroot root\n"
27093 "\n"
27094 msgstr ""
27095
27096 #. type: =head2
27097 #: ../fish/guestfish-actions.pod:2128
27098 msgid "inspect-is-live"
27099 msgstr ""
27100
27101 #. type: verbatim
27102 #: ../fish/guestfish-actions.pod:2130
27103 #, no-wrap
27104 msgid ""
27105 " inspect-is-live root\n"
27106 "\n"
27107 msgstr ""
27108
27109 #. type: textblock
27110 #: ../fish/guestfish-actions.pod:2135
27111 msgid ""
27112 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
27113 "then this returns true if a live image was detected on the disk."
27114 msgstr ""
27115
27116 #. type: =head2
27117 #: ../fish/guestfish-actions.pod:2141
27118 msgid "inspect-is-multipart"
27119 msgstr ""
27120
27121 #. type: verbatim
27122 #: ../fish/guestfish-actions.pod:2143
27123 #, no-wrap
27124 msgid ""
27125 " inspect-is-multipart root\n"
27126 "\n"
27127 msgstr ""
27128
27129 #. type: textblock
27130 #: ../fish/guestfish-actions.pod:2148
27131 msgid ""
27132 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
27133 "then this returns true if the disk is part of a set."
27134 msgstr ""
27135
27136 #. type: =head2
27137 #: ../fish/guestfish-actions.pod:2154
27138 msgid "inspect-is-netinst"
27139 msgstr ""
27140
27141 #. type: verbatim
27142 #: ../fish/guestfish-actions.pod:2156
27143 #, no-wrap
27144 msgid ""
27145 " inspect-is-netinst root\n"
27146 "\n"
27147 msgstr ""
27148
27149 #. type: textblock
27150 #: ../fish/guestfish-actions.pod:2161
27151 msgid ""
27152 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
27153 "then this returns true if the disk is a network installer, ie. not a self-"
27154 "contained install CD but one which is likely to require network access to "
27155 "complete the install."
27156 msgstr ""
27157
27158 # type: =head2
27159 #. type: =head2
27160 #: ../fish/guestfish-actions.pod:2169
27161 msgid "inspect-list-applications"
27162 msgstr ""
27163
27164 # type: verbatim
27165 #. type: verbatim
27166 #: ../fish/guestfish-actions.pod:2171
27167 #, no-wrap
27168 msgid ""
27169 " inspect-list-applications root\n"
27170 "\n"
27171 msgstr ""
27172
27173 # type: textblock
27174 #. type: textblock
27175 #: ../fish/guestfish-actions.pod:2178
27176 msgid ""
27177 "I<Note:> This call works differently from other parts of the inspection "
27178 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
27179 "then mount up the disks, before calling this.  Listing applications is a "
27180 "significantly more difficult operation which requires access to the full "
27181 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
27182 "are just returning data cached in the libguestfs handle, this call actually "
27183 "reads parts of the mounted filesystems during the call."
27184 msgstr ""
27185
27186 # type: =head2
27187 #. type: =head2
27188 #: ../fish/guestfish-actions.pod:2268
27189 msgid "inspect-os"
27190 msgstr ""
27191
27192 # type: verbatim
27193 #. type: verbatim
27194 #: ../fish/guestfish-actions.pod:2270
27195 #, no-wrap
27196 msgid ""
27197 " inspect-os\n"
27198 "\n"
27199 msgstr ""
27200
27201 # type: textblock
27202 #. type: textblock
27203 #: ../fish/guestfish-actions.pod:2285
27204 msgid ""
27205 "You can pass the root string(s) returned to other L</inspect-get-*> "
27206 "functions in order to query further information about each operating system, "
27207 "such as the name and version."
27208 msgstr ""
27209
27210 # type: textblock
27211 #. type: textblock
27212 #: ../fish/guestfish-actions.pod:2290
27213 msgid ""
27214 "This function uses other libguestfs features such as L</mount-ro> and L</"
27215 "umount-all> in order to mount and unmount filesystems and look at the "
27216 "contents.  This should be called with no disks currently mounted.  The "
27217 "function may also use Augeas, so any existing Augeas handle will be closed."
27218 msgstr ""
27219
27220 # type: textblock
27221 #. type: textblock
27222 #: ../fish/guestfish-actions.pod:2302 ../fish/guestfish-actions.pod:2478
27223 #: ../fish/guestfish-actions.pod:2524
27224 msgid "See also L</list-filesystems>."
27225 msgstr ""
27226
27227 # type: =head2
27228 #. type: =head2
27229 #: ../fish/guestfish-actions.pod:2304
27230 msgid "is-blockdev"
27231 msgstr ""
27232
27233 # type: verbatim
27234 #. type: verbatim
27235 #: ../fish/guestfish-actions.pod:2306
27236 #, no-wrap
27237 msgid ""
27238 " is-blockdev path\n"
27239 "\n"
27240 msgstr ""
27241
27242 # type: textblock
27243 #. type: textblock
27244 #: ../fish/guestfish-actions.pod:2311 ../fish/guestfish-actions.pod:2329
27245 #: ../fish/guestfish-actions.pod:2348 ../fish/guestfish-actions.pod:2357
27246 #: ../fish/guestfish-actions.pod:2367 ../fish/guestfish-actions.pod:2401
27247 #: ../fish/guestfish-actions.pod:2410
27248 msgid "See also L</stat>."
27249 msgstr ""
27250
27251 # type: =head2
27252 #. type: =head2
27253 #: ../fish/guestfish-actions.pod:2313
27254 msgid "is-busy"
27255 msgstr ""
27256
27257 # type: verbatim
27258 #. type: verbatim
27259 #: ../fish/guestfish-actions.pod:2315
27260 #, no-wrap
27261 msgid ""
27262 " is-busy\n"
27263 "\n"
27264 msgstr ""
27265
27266 # type: =head2
27267 #. type: =head2
27268 #: ../fish/guestfish-actions.pod:2322
27269 msgid "is-chardev"
27270 msgstr ""
27271
27272 # type: verbatim
27273 #. type: verbatim
27274 #: ../fish/guestfish-actions.pod:2324
27275 #, no-wrap
27276 msgid ""
27277 " is-chardev path\n"
27278 "\n"
27279 msgstr ""
27280
27281 # type: =head2
27282 #. type: =head2
27283 #: ../fish/guestfish-actions.pod:2331
27284 msgid "is-config"
27285 msgstr ""
27286
27287 # type: verbatim
27288 #. type: verbatim
27289 #: ../fish/guestfish-actions.pod:2333
27290 #, no-wrap
27291 msgid ""
27292 " is-config\n"
27293 "\n"
27294 msgstr ""
27295
27296 # type: =head2
27297 #. type: =head2
27298 #: ../fish/guestfish-actions.pod:2340
27299 msgid "is-dir"
27300 msgstr ""
27301
27302 # type: verbatim
27303 #. type: verbatim
27304 #: ../fish/guestfish-actions.pod:2342
27305 #, no-wrap
27306 msgid ""
27307 " is-dir path\n"
27308 "\n"
27309 msgstr ""
27310
27311 # type: =head2
27312 #. type: =head2
27313 #: ../fish/guestfish-actions.pod:2350
27314 msgid "is-fifo"
27315 msgstr ""
27316
27317 # type: verbatim
27318 #. type: verbatim
27319 #: ../fish/guestfish-actions.pod:2352
27320 #, no-wrap
27321 msgid ""
27322 " is-fifo path\n"
27323 "\n"
27324 msgstr ""
27325
27326 # type: =head2
27327 #. type: =head2
27328 #: ../fish/guestfish-actions.pod:2359
27329 msgid "is-file"
27330 msgstr ""
27331
27332 # type: verbatim
27333 #. type: verbatim
27334 #: ../fish/guestfish-actions.pod:2361
27335 #, no-wrap
27336 msgid ""
27337 " is-file path\n"
27338 "\n"
27339 msgstr ""
27340
27341 # type: =head2
27342 #. type: =head2
27343 #: ../fish/guestfish-actions.pod:2369
27344 msgid "is-launching"
27345 msgstr ""
27346
27347 # type: verbatim
27348 #. type: verbatim
27349 #: ../fish/guestfish-actions.pod:2371
27350 #, no-wrap
27351 msgid ""
27352 " is-launching\n"
27353 "\n"
27354 msgstr ""
27355
27356 # type: =head2
27357 #. type: =head2
27358 #: ../fish/guestfish-actions.pod:2378
27359 msgid "is-lv"
27360 msgstr ""
27361
27362 # type: verbatim
27363 #. type: verbatim
27364 #: ../fish/guestfish-actions.pod:2380
27365 #, no-wrap
27366 msgid ""
27367 " is-lv device\n"
27368 "\n"
27369 msgstr ""
27370
27371 # type: =head2
27372 #. type: =head2
27373 #: ../fish/guestfish-actions.pod:2385
27374 msgid "is-ready"
27375 msgstr ""
27376
27377 # type: verbatim
27378 #. type: verbatim
27379 #: ../fish/guestfish-actions.pod:2387
27380 #, no-wrap
27381 msgid ""
27382 " is-ready\n"
27383 "\n"
27384 msgstr ""
27385
27386 # type: =head2
27387 #. type: =head2
27388 #: ../fish/guestfish-actions.pod:2394
27389 msgid "is-socket"
27390 msgstr ""
27391
27392 # type: verbatim
27393 #. type: verbatim
27394 #: ../fish/guestfish-actions.pod:2396
27395 #, no-wrap
27396 msgid ""
27397 " is-socket path\n"
27398 "\n"
27399 msgstr ""
27400
27401 # type: =head2
27402 #. type: =head2
27403 #: ../fish/guestfish-actions.pod:2403
27404 msgid "is-symlink"
27405 msgstr ""
27406
27407 # type: verbatim
27408 #. type: verbatim
27409 #: ../fish/guestfish-actions.pod:2405
27410 #, no-wrap
27411 msgid ""
27412 " is-symlink path\n"
27413 "\n"
27414 msgstr ""
27415
27416 # type: =head2
27417 #. type: =head2
27418 #: ../fish/guestfish-actions.pod:2412
27419 msgid "kill-subprocess"
27420 msgstr ""
27421
27422 # type: verbatim
27423 #. type: verbatim
27424 #: ../fish/guestfish-actions.pod:2414
27425 #, no-wrap
27426 msgid ""
27427 " kill-subprocess\n"
27428 "\n"
27429 msgstr ""
27430
27431 # type: =head2
27432 #. type: =head2
27433 #: ../fish/guestfish-actions.pod:2418
27434 msgid "launch"
27435 msgstr ""
27436
27437 # type: =head2
27438 #. type: =head2
27439 #: ../fish/guestfish-actions.pod:2420
27440 msgid "run"
27441 msgstr ""
27442
27443 # type: verbatim
27444 #. type: verbatim
27445 #: ../fish/guestfish-actions.pod:2422
27446 #, no-wrap
27447 msgid ""
27448 " launch\n"
27449 "\n"
27450 msgstr ""
27451
27452 # type: =head2
27453 #. type: =head2
27454 #: ../fish/guestfish-actions.pod:2430
27455 msgid "lchown"
27456 msgstr ""
27457
27458 # type: verbatim
27459 #. type: verbatim
27460 #: ../fish/guestfish-actions.pod:2432
27461 #, no-wrap
27462 msgid ""
27463 " lchown owner group path\n"
27464 "\n"
27465 msgstr ""
27466
27467 # type: textblock
27468 #. type: textblock
27469 #: ../fish/guestfish-actions.pod:2434
27470 msgid ""
27471 "Change the file owner to C<owner> and group to C<group>.  This is like L</"
27472 "chown> but if C<path> is a symlink then the link itself is changed, not the "
27473 "target."
27474 msgstr ""
27475
27476 # type: =head2
27477 #. type: =head2
27478 #: ../fish/guestfish-actions.pod:2442
27479 msgid "lgetxattr"
27480 msgstr ""
27481
27482 # type: verbatim
27483 #. type: verbatim
27484 #: ../fish/guestfish-actions.pod:2444
27485 #, no-wrap
27486 msgid ""
27487 " lgetxattr path name\n"
27488 "\n"
27489 msgstr ""
27490
27491 # type: textblock
27492 #. type: textblock
27493 #: ../fish/guestfish-actions.pod:2460
27494 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
27495 msgstr ""
27496
27497 # type: =head2
27498 #. type: =head2
27499 #: ../fish/guestfish-actions.pod:2462
27500 msgid "lgetxattrs"
27501 msgstr ""
27502
27503 # type: verbatim
27504 #. type: verbatim
27505 #: ../fish/guestfish-actions.pod:2464
27506 #, no-wrap
27507 msgid ""
27508 " lgetxattrs path\n"
27509 "\n"
27510 msgstr ""
27511
27512 # type: textblock
27513 #. type: textblock
27514 #: ../fish/guestfish-actions.pod:2466
27515 msgid ""
27516 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
27517 "it returns the extended attributes of the link itself."
27518 msgstr ""
27519
27520 # type: =head2
27521 #. type: =head2
27522 #: ../fish/guestfish-actions.pod:2470
27523 msgid "list-devices"
27524 msgstr ""
27525
27526 # type: verbatim
27527 #. type: verbatim
27528 #: ../fish/guestfish-actions.pod:2472
27529 #, no-wrap
27530 msgid ""
27531 " list-devices\n"
27532 "\n"
27533 msgstr ""
27534
27535 # type: =head2
27536 #. type: =head2
27537 #: ../fish/guestfish-actions.pod:2480
27538 msgid "list-filesystems"
27539 msgstr ""
27540
27541 # type: verbatim
27542 #. type: verbatim
27543 #: ../fish/guestfish-actions.pod:2482
27544 #, no-wrap
27545 msgid ""
27546 " list-filesystems\n"
27547 "\n"
27548 msgstr ""
27549
27550 # type: textblock
27551 #. type: textblock
27552 #: ../fish/guestfish-actions.pod:2501
27553 msgid ""
27554 "This command runs other libguestfs commands, which might include L</mount> "
27555 "and L</umount>, and therefore you should use this soon after launch and only "
27556 "when nothing is mounted."
27557 msgstr ""
27558
27559 # type: textblock
27560 #. type: textblock
27561 #: ../fish/guestfish-actions.pod:2505
27562 msgid ""
27563 "Not all of the filesystems returned will be mountable.  In particular, swap "
27564 "partitions are returned in the list.  Also this command does not check that "
27565 "each filesystem found is valid and mountable, and some filesystems might be "
27566 "mountable but require special options.  Filesystems may not all belong to a "
27567 "single logical operating system (use L</inspect-os> to look for OSes)."
27568 msgstr ""
27569
27570 # type: =head2
27571 #. type: =head2
27572 #: ../fish/guestfish-actions.pod:2513
27573 msgid "list-partitions"
27574 msgstr ""
27575
27576 # type: verbatim
27577 #. type: verbatim
27578 #: ../fish/guestfish-actions.pod:2515
27579 #, no-wrap
27580 msgid ""
27581 " list-partitions\n"
27582 "\n"
27583 msgstr ""
27584
27585 # type: textblock
27586 #. type: textblock
27587 #: ../fish/guestfish-actions.pod:2521
27588 msgid ""
27589 "This does not return logical volumes.  For that you will need to call L</"
27590 "lvs>."
27591 msgstr ""
27592
27593 # type: =head2
27594 #. type: =head2
27595 #: ../fish/guestfish-actions.pod:2526
27596 msgid "ll"
27597 msgstr ""
27598
27599 # type: verbatim
27600 #. type: verbatim
27601 #: ../fish/guestfish-actions.pod:2528
27602 #, no-wrap
27603 msgid ""
27604 " ll directory\n"
27605 "\n"
27606 msgstr ""
27607
27608 # type: =head2
27609 #. type: =head2
27610 #: ../fish/guestfish-actions.pod:2536
27611 msgid "ln"
27612 msgstr ""
27613
27614 # type: verbatim
27615 #. type: verbatim
27616 #: ../fish/guestfish-actions.pod:2538
27617 #, no-wrap
27618 msgid ""
27619 " ln target linkname\n"
27620 "\n"
27621 msgstr ""
27622
27623 # type: =head2
27624 #. type: =head2
27625 #: ../fish/guestfish-actions.pod:2542
27626 msgid "ln-f"
27627 msgstr ""
27628
27629 # type: verbatim
27630 #. type: verbatim
27631 #: ../fish/guestfish-actions.pod:2544
27632 #, no-wrap
27633 msgid ""
27634 " ln-f target linkname\n"
27635 "\n"
27636 msgstr ""
27637
27638 # type: =head2
27639 #. type: =head2
27640 #: ../fish/guestfish-actions.pod:2549
27641 msgid "ln-s"
27642 msgstr ""
27643
27644 # type: verbatim
27645 #. type: verbatim
27646 #: ../fish/guestfish-actions.pod:2551
27647 #, no-wrap
27648 msgid ""
27649 " ln-s target linkname\n"
27650 "\n"
27651 msgstr ""
27652
27653 # type: =head2
27654 #. type: =head2
27655 #: ../fish/guestfish-actions.pod:2555
27656 msgid "ln-sf"
27657 msgstr ""
27658
27659 # type: verbatim
27660 #. type: verbatim
27661 #: ../fish/guestfish-actions.pod:2557
27662 #, no-wrap
27663 msgid ""
27664 " ln-sf target linkname\n"
27665 "\n"
27666 msgstr ""
27667
27668 # type: =head2
27669 #. type: =head2
27670 #: ../fish/guestfish-actions.pod:2562
27671 msgid "lremovexattr"
27672 msgstr ""
27673
27674 # type: verbatim
27675 #. type: verbatim
27676 #: ../fish/guestfish-actions.pod:2564
27677 #, no-wrap
27678 msgid ""
27679 " lremovexattr xattr path\n"
27680 "\n"
27681 msgstr ""
27682
27683 # type: textblock
27684 #. type: textblock
27685 #: ../fish/guestfish-actions.pod:2566
27686 msgid ""
27687 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
27688 "it removes an extended attribute of the link itself."
27689 msgstr ""
27690
27691 # type: =head2
27692 #. type: =head2
27693 #: ../fish/guestfish-actions.pod:2570
27694 msgid "ls"
27695 msgstr ""
27696
27697 # type: verbatim
27698 #. type: verbatim
27699 #: ../fish/guestfish-actions.pod:2572
27700 #, no-wrap
27701 msgid ""
27702 " ls directory\n"
27703 "\n"
27704 msgstr ""
27705
27706 # type: textblock
27707 #. type: textblock
27708 #: ../fish/guestfish-actions.pod:2578
27709 msgid ""
27710 "This command is mostly useful for interactive sessions.  Programs should "
27711 "probably use L</readdir> instead."
27712 msgstr ""
27713
27714 # type: =head2
27715 #. type: =head2
27716 #: ../fish/guestfish-actions.pod:2581
27717 msgid "lsetxattr"
27718 msgstr ""
27719
27720 # type: verbatim
27721 #. type: verbatim
27722 #: ../fish/guestfish-actions.pod:2583
27723 #, no-wrap
27724 msgid ""
27725 " lsetxattr xattr val vallen path\n"
27726 "\n"
27727 msgstr ""
27728
27729 # type: textblock
27730 #. type: textblock
27731 #: ../fish/guestfish-actions.pod:2585
27732 msgid ""
27733 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
27734 "sets an extended attribute of the link itself."
27735 msgstr ""
27736
27737 # type: =head2
27738 #. type: =head2
27739 #: ../fish/guestfish-actions.pod:2589
27740 msgid "lstat"
27741 msgstr ""
27742
27743 # type: verbatim
27744 #. type: verbatim
27745 #: ../fish/guestfish-actions.pod:2591
27746 #, no-wrap
27747 msgid ""
27748 " lstat path\n"
27749 "\n"
27750 msgstr ""
27751
27752 # type: textblock
27753 #. type: textblock
27754 #: ../fish/guestfish-actions.pod:2595
27755 msgid ""
27756 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
27757 "the link is stat-ed, not the file it refers to."
27758 msgstr ""
27759
27760 # type: =head2
27761 #. type: =head2
27762 #: ../fish/guestfish-actions.pod:2601
27763 msgid "lstatlist"
27764 msgstr ""
27765
27766 # type: verbatim
27767 #. type: verbatim
27768 #: ../fish/guestfish-actions.pod:2603
27769 #, no-wrap
27770 msgid ""
27771 " lstatlist path 'names ...'\n"
27772 "\n"
27773 msgstr ""
27774
27775 # type: textblock
27776 #. type: textblock
27777 #: ../fish/guestfish-actions.pod:2605
27778 msgid ""
27779 "This call allows you to perform the L</lstat> operation on multiple files, "
27780 "where all files are in the directory C<path>.  C<names> is the list of files "
27781 "from this directory."
27782 msgstr ""
27783
27784 # type: textblock
27785 #. type: textblock
27786 #: ../fish/guestfish-actions.pod:2614
27787 msgid ""
27788 "This call is intended for programs that want to efficiently list a directory "
27789 "contents without making many round-trips.  See also L</lxattrlist> for a "
27790 "similarly efficient call for getting extended attributes.  Very long "
27791 "directory listings might cause the protocol message size to be exceeded, "
27792 "causing this call to fail.  The caller must split up such requests into "
27793 "smaller groups of names."
27794 msgstr ""
27795
27796 # type: =head2
27797 #. type: =head2
27798 #: ../fish/guestfish-actions.pod:2622
27799 msgid "luks-add-key"
27800 msgstr ""
27801
27802 # type: verbatim
27803 #. type: verbatim
27804 #: ../fish/guestfish-actions.pod:2624
27805 #, no-wrap
27806 msgid ""
27807 " luks-add-key device keyslot\n"
27808 "\n"
27809 msgstr ""
27810
27811 # type: textblock
27812 #. type: textblock
27813 #: ../fish/guestfish-actions.pod:2631
27814 msgid ""
27815 "Note that if C<keyslot> already contains a key, then this command will "
27816 "fail.  You have to use L</luks-kill-slot> first to remove that key."
27817 msgstr ""
27818
27819 # type: textblock
27820 #. type: textblock
27821 #: ../fish/guestfish-actions.pod:2635 ../fish/guestfish-actions.pod:2657
27822 #: ../fish/guestfish-actions.pod:2670 ../fish/guestfish-actions.pod:2684
27823 #: ../fish/guestfish-actions.pod:2707 ../fish/guestfish-actions.pod:2717
27824 msgid ""
27825 "This command has one or more key or passphrase parameters.  Guestfish will "
27826 "prompt for these separately."
27827 msgstr ""
27828
27829 # type: =head2
27830 #. type: =head2
27831 #: ../fish/guestfish-actions.pod:2638
27832 msgid "luks-close"
27833 msgstr ""
27834
27835 # type: verbatim
27836 #. type: verbatim
27837 #: ../fish/guestfish-actions.pod:2640
27838 #, no-wrap
27839 msgid ""
27840 " luks-close device\n"
27841 "\n"
27842 msgstr ""
27843
27844 # type: textblock
27845 #. type: textblock
27846 #: ../fish/guestfish-actions.pod:2642
27847 msgid ""
27848 "This closes a LUKS device that was created earlier by L</luks-open> or L</"
27849 "luks-open-ro>.  The C<device> parameter must be the name of the LUKS mapping "
27850 "device (ie. C</dev/mapper/mapname>) and I<not> the name of the underlying "
27851 "block device."
27852 msgstr ""
27853
27854 # type: =head2
27855 #. type: =head2
27856 #: ../fish/guestfish-actions.pod:2648
27857 msgid "luks-format"
27858 msgstr ""
27859
27860 # type: verbatim
27861 #. type: verbatim
27862 #: ../fish/guestfish-actions.pod:2650
27863 #, no-wrap
27864 msgid ""
27865 " luks-format device keyslot\n"
27866 "\n"
27867 msgstr ""
27868
27869 # type: =head2
27870 #. type: =head2
27871 #: ../fish/guestfish-actions.pod:2663
27872 msgid "luks-format-cipher"
27873 msgstr ""
27874
27875 # type: verbatim
27876 #. type: verbatim
27877 #: ../fish/guestfish-actions.pod:2665
27878 #, no-wrap
27879 msgid ""
27880 " luks-format-cipher device keyslot cipher\n"
27881 "\n"
27882 msgstr ""
27883
27884 # type: textblock
27885 #. type: textblock
27886 #: ../fish/guestfish-actions.pod:2667
27887 msgid ""
27888 "This command is the same as L</luks-format> but it also allows you to set "
27889 "the C<cipher> used."
27890 msgstr ""
27891
27892 # type: =head2
27893 #. type: =head2
27894 #: ../fish/guestfish-actions.pod:2676
27895 msgid "luks-kill-slot"
27896 msgstr ""
27897
27898 # type: verbatim
27899 #. type: verbatim
27900 #: ../fish/guestfish-actions.pod:2678
27901 #, no-wrap
27902 msgid ""
27903 " luks-kill-slot device keyslot\n"
27904 "\n"
27905 msgstr ""
27906
27907 # type: =head2
27908 #. type: =head2
27909 #: ../fish/guestfish-actions.pod:2687
27910 msgid "luks-open"
27911 msgstr ""
27912
27913 # type: verbatim
27914 #. type: verbatim
27915 #: ../fish/guestfish-actions.pod:2689
27916 #, no-wrap
27917 msgid ""
27918 " luks-open device mapname\n"
27919 "\n"
27920 msgstr ""
27921
27922 # type: textblock
27923 #. type: textblock
27924 #: ../fish/guestfish-actions.pod:2703
27925 msgid ""
27926 "If this block device contains LVM volume groups, then calling L</vgscan> "
27927 "followed by L</vg-activate-all> will make them visible."
27928 msgstr ""
27929
27930 # type: =head2
27931 #. type: =head2
27932 #: ../fish/guestfish-actions.pod:2710
27933 msgid "luks-open-ro"
27934 msgstr ""
27935
27936 # type: verbatim
27937 #. type: verbatim
27938 #: ../fish/guestfish-actions.pod:2712
27939 #, no-wrap
27940 msgid ""
27941 " luks-open-ro device mapname\n"
27942 "\n"
27943 msgstr ""
27944
27945 # type: textblock
27946 #. type: textblock
27947 #: ../fish/guestfish-actions.pod:2714
27948 msgid ""
27949 "This is the same as L</luks-open> except that a read-only mapping is created."
27950 msgstr ""
27951
27952 # type: =head2
27953 #. type: =head2
27954 #: ../fish/guestfish-actions.pod:2720
27955 msgid "lvcreate"
27956 msgstr ""
27957
27958 # type: verbatim
27959 #. type: verbatim
27960 #: ../fish/guestfish-actions.pod:2722
27961 #, no-wrap
27962 msgid ""
27963 " lvcreate logvol volgroup mbytes\n"
27964 "\n"
27965 msgstr ""
27966
27967 # type: =head2
27968 #. type: =head2
27969 #: ../fish/guestfish-actions.pod:2727
27970 msgid "lvm-canonical-lv-name"
27971 msgstr ""
27972
27973 # type: verbatim
27974 #. type: verbatim
27975 #: ../fish/guestfish-actions.pod:2729
27976 #, no-wrap
27977 msgid ""
27978 " lvm-canonical-lv-name lvname\n"
27979 "\n"
27980 msgstr ""
27981
27982 # type: textblock
27983 #. type: textblock
27984 #: ../fish/guestfish-actions.pod:2738
27985 msgid "See also L</is-lv>."
27986 msgstr ""
27987
27988 # type: =head2
27989 #. type: =head2
27990 #: ../fish/guestfish-actions.pod:2740
27991 msgid "lvm-clear-filter"
27992 msgstr ""
27993
27994 # type: verbatim
27995 #. type: verbatim
27996 #: ../fish/guestfish-actions.pod:2742
27997 #, no-wrap
27998 msgid ""
27999 " lvm-clear-filter\n"
28000 "\n"
28001 msgstr ""
28002
28003 # type: textblock
28004 #. type: textblock
28005 #: ../fish/guestfish-actions.pod:2744
28006 msgid ""
28007 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
28008 "block device."
28009 msgstr ""
28010
28011 # type: =head2
28012 #. type: =head2
28013 #: ../fish/guestfish-actions.pod:2750
28014 msgid "lvm-remove-all"
28015 msgstr ""
28016
28017 # type: verbatim
28018 #. type: verbatim
28019 #: ../fish/guestfish-actions.pod:2752
28020 #, no-wrap
28021 msgid ""
28022 " lvm-remove-all\n"
28023 "\n"
28024 msgstr ""
28025
28026 # type: =head2
28027 #. type: =head2
28028 #: ../fish/guestfish-actions.pod:2760
28029 msgid "lvm-set-filter"
28030 msgstr ""
28031
28032 # type: verbatim
28033 #. type: verbatim
28034 #: ../fish/guestfish-actions.pod:2762
28035 #, no-wrap
28036 msgid ""
28037 " lvm-set-filter 'devices ...'\n"
28038 "\n"
28039 msgstr ""
28040
28041 # type: =head2
28042 #. type: =head2
28043 #: ../fish/guestfish-actions.pod:2787
28044 msgid "lvremove"
28045 msgstr ""
28046
28047 # type: verbatim
28048 #. type: verbatim
28049 #: ../fish/guestfish-actions.pod:2789
28050 #, no-wrap
28051 msgid ""
28052 " lvremove device\n"
28053 "\n"
28054 msgstr ""
28055
28056 # type: =head2
28057 #. type: =head2
28058 #: ../fish/guestfish-actions.pod:2797
28059 msgid "lvrename"
28060 msgstr ""
28061
28062 # type: verbatim
28063 #. type: verbatim
28064 #: ../fish/guestfish-actions.pod:2799
28065 #, no-wrap
28066 msgid ""
28067 " lvrename logvol newlogvol\n"
28068 "\n"
28069 msgstr ""
28070
28071 # type: =head2
28072 #. type: =head2
28073 #: ../fish/guestfish-actions.pod:2803
28074 msgid "lvresize"
28075 msgstr ""
28076
28077 # type: verbatim
28078 #. type: verbatim
28079 #: ../fish/guestfish-actions.pod:2805
28080 #, no-wrap
28081 msgid ""
28082 " lvresize device mbytes\n"
28083 "\n"
28084 msgstr ""
28085
28086 # type: =head2
28087 #. type: =head2
28088 #: ../fish/guestfish-actions.pod:2811
28089 msgid "lvresize-free"
28090 msgstr ""
28091
28092 # type: verbatim
28093 #. type: verbatim
28094 #: ../fish/guestfish-actions.pod:2813
28095 #, no-wrap
28096 msgid ""
28097 " lvresize-free lv percent\n"
28098 "\n"
28099 msgstr ""
28100
28101 # type: =head2
28102 #. type: =head2
28103 #: ../fish/guestfish-actions.pod:2821
28104 msgid "lvs"
28105 msgstr ""
28106
28107 # type: verbatim
28108 #. type: verbatim
28109 #: ../fish/guestfish-actions.pod:2823
28110 #, no-wrap
28111 msgid ""
28112 " lvs\n"
28113 "\n"
28114 msgstr ""
28115
28116 # type: textblock
28117 #. type: textblock
28118 #: ../fish/guestfish-actions.pod:2831
28119 msgid "See also L</lvs-full>, L</list-filesystems>."
28120 msgstr ""
28121
28122 # type: =head2
28123 #. type: =head2
28124 #: ../fish/guestfish-actions.pod:2833
28125 msgid "lvs-full"
28126 msgstr ""
28127
28128 # type: verbatim
28129 #. type: verbatim
28130 #: ../fish/guestfish-actions.pod:2835
28131 #, no-wrap
28132 msgid ""
28133 " lvs-full\n"
28134 "\n"
28135 msgstr ""
28136
28137 # type: =head2
28138 #. type: =head2
28139 #: ../fish/guestfish-actions.pod:2840
28140 msgid "lvuuid"
28141 msgstr ""
28142
28143 # type: verbatim
28144 #. type: verbatim
28145 #: ../fish/guestfish-actions.pod:2842
28146 #, no-wrap
28147 msgid ""
28148 " lvuuid device\n"
28149 "\n"
28150 msgstr ""
28151
28152 # type: =head2
28153 #. type: =head2
28154 #: ../fish/guestfish-actions.pod:2846
28155 msgid "lxattrlist"
28156 msgstr ""
28157
28158 # type: verbatim
28159 #. type: verbatim
28160 #: ../fish/guestfish-actions.pod:2848
28161 #, no-wrap
28162 msgid ""
28163 " lxattrlist path 'names ...'\n"
28164 "\n"
28165 msgstr ""
28166
28167 # type: textblock
28168 #. type: textblock
28169 #: ../fish/guestfish-actions.pod:2864
28170 msgid ""
28171 "This call is intended for programs that want to efficiently list a directory "
28172 "contents without making many round-trips.  See also L</lstatlist> for a "
28173 "similarly efficient call for getting standard stats.  Very long directory "
28174 "listings might cause the protocol message size to be exceeded, causing this "
28175 "call to fail.  The caller must split up such requests into smaller groups of "
28176 "names."
28177 msgstr ""
28178
28179 # type: =head2
28180 #. type: =head2
28181 #: ../fish/guestfish-actions.pod:2872
28182 msgid "mkdir"
28183 msgstr ""
28184
28185 # type: verbatim
28186 #. type: verbatim
28187 #: ../fish/guestfish-actions.pod:2874
28188 #, no-wrap
28189 msgid ""
28190 " mkdir path\n"
28191 "\n"
28192 msgstr ""
28193
28194 # type: =head2
28195 #. type: =head2
28196 #: ../fish/guestfish-actions.pod:2878
28197 msgid "mkdir-mode"
28198 msgstr ""
28199
28200 # type: verbatim
28201 #. type: verbatim
28202 #: ../fish/guestfish-actions.pod:2880
28203 #, no-wrap
28204 msgid ""
28205 " mkdir-mode path mode\n"
28206 "\n"
28207 msgstr ""
28208
28209 # type: textblock
28210 #. type: textblock
28211 #: ../fish/guestfish-actions.pod:2889
28212 msgid "See also L</mkdir>, L</umask>"
28213 msgstr ""
28214
28215 # type: =head2
28216 #. type: =head2
28217 #: ../fish/guestfish-actions.pod:2891
28218 msgid "mkdir-p"
28219 msgstr ""
28220
28221 # type: verbatim
28222 #. type: verbatim
28223 #: ../fish/guestfish-actions.pod:2893
28224 #, no-wrap
28225 msgid ""
28226 " mkdir-p path\n"
28227 "\n"
28228 msgstr ""
28229
28230 # type: =head2
28231 #. type: =head2
28232 #: ../fish/guestfish-actions.pod:2898
28233 msgid "mkdtemp"
28234 msgstr ""
28235
28236 # type: verbatim
28237 #. type: verbatim
28238 #: ../fish/guestfish-actions.pod:2900
28239 #, no-wrap
28240 msgid ""
28241 " mkdtemp template\n"
28242 "\n"
28243 msgstr ""
28244
28245 # type: =head2
28246 #. type: =head2
28247 #: ../fish/guestfish-actions.pod:2921
28248 msgid "mke2fs-J"
28249 msgstr ""
28250
28251 # type: verbatim
28252 #. type: verbatim
28253 #: ../fish/guestfish-actions.pod:2923
28254 #, no-wrap
28255 msgid ""
28256 " mke2fs-J fstype blocksize device journal\n"
28257 "\n"
28258 msgstr ""
28259
28260 # type: textblock
28261 #. type: textblock
28262 #: ../fish/guestfish-actions.pod:2931
28263 msgid "See also L</mke2journal>."
28264 msgstr ""
28265
28266 # type: =head2
28267 #. type: =head2
28268 #: ../fish/guestfish-actions.pod:2933
28269 msgid "mke2fs-JL"
28270 msgstr ""
28271
28272 # type: verbatim
28273 #. type: verbatim
28274 #: ../fish/guestfish-actions.pod:2935
28275 #, no-wrap
28276 msgid ""
28277 " mke2fs-JL fstype blocksize device label\n"
28278 "\n"
28279 msgstr ""
28280
28281 # type: textblock
28282 #. type: textblock
28283 #: ../fish/guestfish-actions.pod:2940
28284 msgid "See also L</mke2journal-L>."
28285 msgstr ""
28286
28287 # type: =head2
28288 #. type: =head2
28289 #: ../fish/guestfish-actions.pod:2942
28290 msgid "mke2fs-JU"
28291 msgstr ""
28292
28293 # type: verbatim
28294 #. type: verbatim
28295 #: ../fish/guestfish-actions.pod:2944
28296 #, no-wrap
28297 msgid ""
28298 " mke2fs-JU fstype blocksize device uuid\n"
28299 "\n"
28300 msgstr ""
28301
28302 # type: textblock
28303 #. type: textblock
28304 #: ../fish/guestfish-actions.pod:2949
28305 msgid "See also L</mke2journal-U>."
28306 msgstr ""
28307
28308 # type: =head2
28309 #. type: =head2
28310 #: ../fish/guestfish-actions.pod:2951
28311 msgid "mke2journal"
28312 msgstr ""
28313
28314 # type: verbatim
28315 #. type: verbatim
28316 #: ../fish/guestfish-actions.pod:2953
28317 #, no-wrap
28318 msgid ""
28319 " mke2journal blocksize device\n"
28320 "\n"
28321 msgstr ""
28322
28323 # type: =head2
28324 #. type: =head2
28325 #: ../fish/guestfish-actions.pod:2960
28326 msgid "mke2journal-L"
28327 msgstr ""
28328
28329 # type: verbatim
28330 #. type: verbatim
28331 #: ../fish/guestfish-actions.pod:2962
28332 #, no-wrap
28333 msgid ""
28334 " mke2journal-L blocksize label device\n"
28335 "\n"
28336 msgstr ""
28337
28338 # type: =head2
28339 #. type: =head2
28340 #: ../fish/guestfish-actions.pod:2966
28341 msgid "mke2journal-U"
28342 msgstr ""
28343
28344 # type: verbatim
28345 #. type: verbatim
28346 #: ../fish/guestfish-actions.pod:2968
28347 #, no-wrap
28348 msgid ""
28349 " mke2journal-U blocksize uuid device\n"
28350 "\n"
28351 msgstr ""
28352
28353 # type: =head2
28354 #. type: =head2
28355 #: ../fish/guestfish-actions.pod:2972
28356 msgid "mkfifo"
28357 msgstr ""
28358
28359 # type: verbatim
28360 #. type: verbatim
28361 #: ../fish/guestfish-actions.pod:2974
28362 #, no-wrap
28363 msgid ""
28364 " mkfifo mode path\n"
28365 "\n"
28366 msgstr ""
28367
28368 # type: textblock
28369 #. type: textblock
28370 #: ../fish/guestfish-actions.pod:2976
28371 msgid ""
28372 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
28373 "is just a convenient wrapper around L</mknod>."
28374 msgstr ""
28375
28376 # type: =head2
28377 #. type: =head2
28378 #: ../fish/guestfish-actions.pod:2982
28379 msgid "mkfs"
28380 msgstr ""
28381
28382 # type: verbatim
28383 #. type: verbatim
28384 #: ../fish/guestfish-actions.pod:2984
28385 #, no-wrap
28386 msgid ""
28387 " mkfs fstype device\n"
28388 "\n"
28389 msgstr ""
28390
28391 # type: =head2
28392 #. type: =head2
28393 #: ../fish/guestfish-actions.pod:2990
28394 msgid "mkfs-b"
28395 msgstr ""
28396
28397 # type: verbatim
28398 #. type: verbatim
28399 #: ../fish/guestfish-actions.pod:2992
28400 #, no-wrap
28401 msgid ""
28402 " mkfs-b fstype blocksize device\n"
28403 "\n"
28404 msgstr ""
28405
28406 # type: textblock
28407 #. type: textblock
28408 #: ../fish/guestfish-actions.pod:2994
28409 msgid ""
28410 "This call is similar to L</mkfs>, but it allows you to control the block "
28411 "size of the resulting filesystem.  Supported block sizes depend on the "
28412 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
28413 msgstr ""
28414
28415 #. type: textblock
28416 #: ../fish/guestfish-actions.pod:3002
28417 msgid ""
28418 "This function is deprecated.  In new code, use the L</mkfs_opts> call "
28419 "instead."
28420 msgstr ""
28421
28422 # type: =head2
28423 #. type: =head2
28424 #: ../fish/guestfish-actions.pod:3009
28425 msgid "mkfs-opts"
28426 msgstr ""
28427
28428 #. type: verbatim
28429 #: ../fish/guestfish-actions.pod:3011
28430 #, no-wrap
28431 msgid ""
28432 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
28433 "\n"
28434 msgstr ""
28435
28436 # type: =head2
28437 #. type: =head2
28438 #: ../fish/guestfish-actions.pod:3046
28439 msgid "mkmountpoint"
28440 msgstr ""
28441
28442 # type: verbatim
28443 #. type: verbatim
28444 #: ../fish/guestfish-actions.pod:3048
28445 #, no-wrap
28446 msgid ""
28447 " mkmountpoint exemptpath\n"
28448 "\n"
28449 msgstr ""
28450
28451 # type: textblock
28452 #. type: textblock
28453 #: ../fish/guestfish-actions.pod:3050
28454 msgid ""
28455 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
28456 "to create extra mountpoints before mounting the first filesystem."
28457 msgstr ""
28458
28459 # type: textblock
28460 #. type: textblock
28461 #: ../fish/guestfish-actions.pod:3074
28462 msgid ""
28463 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
28464 "unexpected errors if you try to mix these calls.  It is safest to manually "
28465 "unmount filesystems and remove mountpoints after use."
28466 msgstr ""
28467
28468 # type: textblock
28469 #. type: textblock
28470 #: ../fish/guestfish-actions.pod:3078
28471 msgid ""
28472 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
28473 "for this to work for manual mountpoints, you must ensure that the innermost "
28474 "mountpoints have the longest pathnames, as in the example code above."
28475 msgstr ""
28476
28477 #. type: textblock
28478 #: ../fish/guestfish-actions.pod:3085
28479 msgid ""
28480 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
28481 "L</umount-all> to be called when the handle is closed which can also trigger "
28482 "these issues."
28483 msgstr ""
28484
28485 # type: =head2
28486 #. type: =head2
28487 #: ../fish/guestfish-actions.pod:3089
28488 msgid "mknod"
28489 msgstr ""
28490
28491 # type: verbatim
28492 #. type: verbatim
28493 #: ../fish/guestfish-actions.pod:3091
28494 #, no-wrap
28495 msgid ""
28496 " mknod mode devmajor devminor path\n"
28497 "\n"
28498 msgstr ""
28499
28500 # type: textblock
28501 #. type: textblock
28502 #: ../fish/guestfish-actions.pod:3101
28503 msgid ""
28504 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
28505 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
28506 "regular file).  These constants are available in the standard Linux header "
28507 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
28508 "wrappers around this command which bitwise OR in the appropriate constant "
28509 "for you."
28510 msgstr ""
28511
28512 # type: =head2
28513 #. type: =head2
28514 #: ../fish/guestfish-actions.pod:3111
28515 msgid "mknod-b"
28516 msgstr ""
28517
28518 # type: verbatim
28519 #. type: verbatim
28520 #: ../fish/guestfish-actions.pod:3113
28521 #, no-wrap
28522 msgid ""
28523 " mknod-b mode devmajor devminor path\n"
28524 "\n"
28525 msgstr ""
28526
28527 # type: textblock
28528 #. type: textblock
28529 #: ../fish/guestfish-actions.pod:3115
28530 msgid ""
28531 "This call creates a block device node called C<path> with mode C<mode> and "
28532 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
28533 "wrapper around L</mknod>."
28534 msgstr ""
28535
28536 # type: =head2
28537 #. type: =head2
28538 #: ../fish/guestfish-actions.pod:3121
28539 msgid "mknod-c"
28540 msgstr ""
28541
28542 # type: verbatim
28543 #. type: verbatim
28544 #: ../fish/guestfish-actions.pod:3123
28545 #, no-wrap
28546 msgid ""
28547 " mknod-c mode devmajor devminor path\n"
28548 "\n"
28549 msgstr ""
28550
28551 # type: textblock
28552 #. type: textblock
28553 #: ../fish/guestfish-actions.pod:3125
28554 msgid ""
28555 "This call creates a char device node called C<path> with mode C<mode> and "
28556 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
28557 "wrapper around L</mknod>."
28558 msgstr ""
28559
28560 # type: =head2
28561 #. type: =head2
28562 #: ../fish/guestfish-actions.pod:3131
28563 msgid "mkswap"
28564 msgstr ""
28565
28566 # type: verbatim
28567 #. type: verbatim
28568 #: ../fish/guestfish-actions.pod:3133
28569 #, no-wrap
28570 msgid ""
28571 " mkswap device\n"
28572 "\n"
28573 msgstr ""
28574
28575 # type: =head2
28576 #. type: =head2
28577 #: ../fish/guestfish-actions.pod:3137
28578 msgid "mkswap-L"
28579 msgstr ""
28580
28581 # type: verbatim
28582 #. type: verbatim
28583 #: ../fish/guestfish-actions.pod:3139
28584 #, no-wrap
28585 msgid ""
28586 " mkswap-L label device\n"
28587 "\n"
28588 msgstr ""
28589
28590 # type: =head2
28591 #. type: =head2
28592 #: ../fish/guestfish-actions.pod:3147
28593 msgid "mkswap-U"
28594 msgstr ""
28595
28596 # type: verbatim
28597 #. type: verbatim
28598 #: ../fish/guestfish-actions.pod:3149
28599 #, no-wrap
28600 msgid ""
28601 " mkswap-U uuid device\n"
28602 "\n"
28603 msgstr ""
28604
28605 # type: =head2
28606 #. type: =head2
28607 #: ../fish/guestfish-actions.pod:3153
28608 msgid "mkswap-file"
28609 msgstr ""
28610
28611 # type: verbatim
28612 #. type: verbatim
28613 #: ../fish/guestfish-actions.pod:3155
28614 #, no-wrap
28615 msgid ""
28616 " mkswap-file path\n"
28617 "\n"
28618 msgstr ""
28619
28620 # type: textblock
28621 #. type: textblock
28622 #: ../fish/guestfish-actions.pod:3159
28623 msgid ""
28624 "This command just writes a swap file signature to an existing file.  To "
28625 "create the file itself, use something like L</fallocate>."
28626 msgstr ""
28627
28628 # type: =head2
28629 #. type: =head2
28630 #: ../fish/guestfish-actions.pod:3162
28631 msgid "modprobe"
28632 msgstr ""
28633
28634 # type: verbatim
28635 #. type: verbatim
28636 #: ../fish/guestfish-actions.pod:3164
28637 #, no-wrap
28638 msgid ""
28639 " modprobe modulename\n"
28640 "\n"
28641 msgstr ""
28642
28643 # type: =head2
28644 #. type: =head2
28645 #: ../fish/guestfish-actions.pod:3171
28646 msgid "mount"
28647 msgstr ""
28648
28649 # type: verbatim
28650 #. type: verbatim
28651 #: ../fish/guestfish-actions.pod:3173
28652 #, no-wrap
28653 msgid ""
28654 " mount device mountpoint\n"
28655 "\n"
28656 msgstr ""
28657
28658 # type: textblock
28659 #. type: textblock
28660 #: ../fish/guestfish-actions.pod:3189
28661 msgid ""
28662 "B<Important note:> When you use this call, the filesystem options C<sync> "
28663 "and C<noatime> are set implicitly.  This was originally done because we "
28664 "thought it would improve reliability, but it turns out that I<-o sync> has a "
28665 "very large negative performance impact and negligible effect on "
28666 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
28667 "code that needs performance, and instead use L</mount-options> (use an empty "
28668 "string for the first parameter if you don't want any options)."
28669 msgstr ""
28670
28671 #. type: textblock
28672 #: ../fish/guestfish-actions.pod:3199
28673 msgid ""
28674 "This function is deprecated.  In new code, use the L</mount_options> call "
28675 "instead."
28676 msgstr ""
28677
28678 # type: =head2
28679 #. type: =head2
28680 #: ../fish/guestfish-actions.pod:3206
28681 msgid "mount-loop"
28682 msgstr ""
28683
28684 # type: verbatim
28685 #. type: verbatim
28686 #: ../fish/guestfish-actions.pod:3208
28687 #, no-wrap
28688 msgid ""
28689 " mount-loop file mountpoint\n"
28690 "\n"
28691 msgstr ""
28692
28693 # type: =head2
28694 #. type: =head2
28695 #: ../fish/guestfish-actions.pod:3214
28696 msgid "mount-options"
28697 msgstr ""
28698
28699 # type: verbatim
28700 #. type: verbatim
28701 #: ../fish/guestfish-actions.pod:3216
28702 #, no-wrap
28703 msgid ""
28704 " mount-options options device mountpoint\n"
28705 "\n"
28706 msgstr ""
28707
28708 # type: textblock
28709 #. type: textblock
28710 #: ../fish/guestfish-actions.pod:3218
28711 msgid ""
28712 "This is the same as the L</mount> command, but it allows you to set the "
28713 "mount options as for the L<mount(8)> I<-o> flag."
28714 msgstr ""
28715
28716 # type: =head2
28717 #. type: =head2
28718 #: ../fish/guestfish-actions.pod:3226
28719 msgid "mount-ro"
28720 msgstr ""
28721
28722 # type: verbatim
28723 #. type: verbatim
28724 #: ../fish/guestfish-actions.pod:3228
28725 #, no-wrap
28726 msgid ""
28727 " mount-ro device mountpoint\n"
28728 "\n"
28729 msgstr ""
28730
28731 # type: textblock
28732 #. type: textblock
28733 #: ../fish/guestfish-actions.pod:3230
28734 msgid ""
28735 "This is the same as the L</mount> command, but it mounts the filesystem with "
28736 "the read-only (I<-o ro>) flag."
28737 msgstr ""
28738
28739 # type: =head2
28740 #. type: =head2
28741 #: ../fish/guestfish-actions.pod:3233
28742 msgid "mount-vfs"
28743 msgstr ""
28744
28745 # type: verbatim
28746 #. type: verbatim
28747 #: ../fish/guestfish-actions.pod:3235
28748 #, no-wrap
28749 msgid ""
28750 " mount-vfs options vfstype device mountpoint\n"
28751 "\n"
28752 msgstr ""
28753
28754 # type: textblock
28755 #. type: textblock
28756 #: ../fish/guestfish-actions.pod:3237
28757 msgid ""
28758 "This is the same as the L</mount> command, but it allows you to set both the "
28759 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
28760 msgstr ""
28761
28762 # type: =head2
28763 #. type: =head2
28764 #: ../fish/guestfish-actions.pod:3241
28765 msgid "mountpoints"
28766 msgstr ""
28767
28768 # type: verbatim
28769 #. type: verbatim
28770 #: ../fish/guestfish-actions.pod:3243
28771 #, no-wrap
28772 msgid ""
28773 " mountpoints\n"
28774 "\n"
28775 msgstr ""
28776
28777 # type: textblock
28778 #. type: textblock
28779 #: ../fish/guestfish-actions.pod:3245
28780 msgid ""
28781 "This call is similar to L</mounts>.  That call returns a list of devices.  "
28782 "This one returns a hash table (map) of device name to directory where the "
28783 "device is mounted."
28784 msgstr ""
28785
28786 # type: =head2
28787 #. type: =head2
28788 #: ../fish/guestfish-actions.pod:3249
28789 msgid "mounts"
28790 msgstr ""
28791
28792 # type: verbatim
28793 #. type: verbatim
28794 #: ../fish/guestfish-actions.pod:3251
28795 #, no-wrap
28796 msgid ""
28797 " mounts\n"
28798 "\n"
28799 msgstr ""
28800
28801 # type: textblock
28802 #. type: textblock
28803 #: ../fish/guestfish-actions.pod:3258
28804 msgid "See also: L</mountpoints>"
28805 msgstr ""
28806
28807 # type: =head2
28808 #. type: =head2
28809 #: ../fish/guestfish-actions.pod:3260
28810 msgid "mv"
28811 msgstr ""
28812
28813 # type: verbatim
28814 #. type: verbatim
28815 #: ../fish/guestfish-actions.pod:3262
28816 #, no-wrap
28817 msgid ""
28818 " mv src dest\n"
28819 "\n"
28820 msgstr ""
28821
28822 # type: =head2
28823 #. type: =head2
28824 #: ../fish/guestfish-actions.pod:3267
28825 msgid "ntfs-3g-probe"
28826 msgstr ""
28827
28828 # type: verbatim
28829 #. type: verbatim
28830 #: ../fish/guestfish-actions.pod:3269
28831 #, no-wrap
28832 msgid ""
28833 " ntfs-3g-probe true|false device\n"
28834 "\n"
28835 msgstr ""
28836
28837 # type: =head2
28838 #. type: =head2
28839 #: ../fish/guestfish-actions.pod:3283
28840 msgid "ntfsresize"
28841 msgstr ""
28842
28843 # type: verbatim
28844 #. type: verbatim
28845 #: ../fish/guestfish-actions.pod:3285
28846 #, no-wrap
28847 msgid ""
28848 " ntfsresize device\n"
28849 "\n"
28850 msgstr ""
28851
28852 # type: =head2
28853 #. type: =head2
28854 #: ../fish/guestfish-actions.pod:3300
28855 msgid "ntfsresize-size"
28856 msgstr ""
28857
28858 # type: verbatim
28859 #. type: verbatim
28860 #: ../fish/guestfish-actions.pod:3302
28861 #, no-wrap
28862 msgid ""
28863 " ntfsresize-size device size\n"
28864 "\n"
28865 msgstr ""
28866
28867 # type: textblock
28868 #. type: textblock
28869 #: ../fish/guestfish-actions.pod:3304
28870 msgid ""
28871 "This command is the same as L</ntfsresize> except that it allows you to "
28872 "specify the new size (in bytes) explicitly."
28873 msgstr ""
28874
28875 # type: =head2
28876 #. type: =head2
28877 #: ../fish/guestfish-actions.pod:3307
28878 msgid "part-add"
28879 msgstr ""
28880
28881 # type: verbatim
28882 #. type: verbatim
28883 #: ../fish/guestfish-actions.pod:3309
28884 #, no-wrap
28885 msgid ""
28886 " part-add device prlogex startsect endsect\n"
28887 "\n"
28888 msgstr ""
28889
28890 # type: textblock
28891 #. type: textblock
28892 #: ../fish/guestfish-actions.pod:3311
28893 msgid ""
28894 "This command adds a partition to C<device>.  If there is no partition table "
28895 "on the device, call L</part-init> first."
28896 msgstr ""
28897
28898 # type: textblock
28899 #. type: textblock
28900 #: ../fish/guestfish-actions.pod:3323
28901 msgid ""
28902 "Creating a partition which covers the whole disk is not so easy.  Use L</"
28903 "part-disk> to do that."
28904 msgstr ""
28905
28906 # type: =head2
28907 #. type: =head2
28908 #: ../fish/guestfish-actions.pod:3326
28909 msgid "part-del"
28910 msgstr ""
28911
28912 # type: verbatim
28913 #. type: verbatim
28914 #: ../fish/guestfish-actions.pod:3328
28915 #, no-wrap
28916 msgid ""
28917 " part-del device partnum\n"
28918 "\n"
28919 msgstr ""
28920
28921 # type: =head2
28922 #. type: =head2
28923 #: ../fish/guestfish-actions.pod:3336
28924 msgid "part-disk"
28925 msgstr ""
28926
28927 # type: verbatim
28928 #. type: verbatim
28929 #: ../fish/guestfish-actions.pod:3338
28930 #, no-wrap
28931 msgid ""
28932 " part-disk device parttype\n"
28933 "\n"
28934 msgstr ""
28935
28936 # type: textblock
28937 #. type: textblock
28938 #: ../fish/guestfish-actions.pod:3340
28939 msgid ""
28940 "This command is simply a combination of L</part-init> followed by L</part-"
28941 "add> to create a single primary partition covering the whole disk."
28942 msgstr ""
28943
28944 # type: textblock
28945 #. type: textblock
28946 #: ../fish/guestfish-actions.pod:3344
28947 msgid ""
28948 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
28949 "possible values are described in L</part-init>."
28950 msgstr ""
28951
28952 # type: =head2
28953 #. type: =head2
28954 #: ../fish/guestfish-actions.pod:3350
28955 msgid "part-get-bootable"
28956 msgstr ""
28957
28958 # type: verbatim
28959 #. type: verbatim
28960 #: ../fish/guestfish-actions.pod:3352
28961 #, no-wrap
28962 msgid ""
28963 " part-get-bootable device partnum\n"
28964 "\n"
28965 msgstr ""
28966
28967 # type: textblock
28968 #. type: textblock
28969 #: ../fish/guestfish-actions.pod:3357
28970 msgid "See also L</part-set-bootable>."
28971 msgstr ""
28972
28973 # type: =head2
28974 #. type: =head2
28975 #: ../fish/guestfish-actions.pod:3359
28976 msgid "part-get-mbr-id"
28977 msgstr ""
28978
28979 # type: verbatim
28980 #. type: verbatim
28981 #: ../fish/guestfish-actions.pod:3361
28982 #, no-wrap
28983 msgid ""
28984 " part-get-mbr-id device partnum\n"
28985 "\n"
28986 msgstr ""
28987
28988 # type: textblock
28989 #. type: textblock
28990 #: ../fish/guestfish-actions.pod:3366 ../fish/guestfish-actions.pod:3504
28991 msgid ""
28992 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
28993 "undefined results for other partition table types (see L</part-get-"
28994 "parttype>)."
28995 msgstr ""
28996
28997 # type: =head2
28998 #. type: =head2
28999 #: ../fish/guestfish-actions.pod:3370
29000 msgid "part-get-parttype"
29001 msgstr ""
29002
29003 # type: verbatim
29004 #. type: verbatim
29005 #: ../fish/guestfish-actions.pod:3372
29006 #, no-wrap
29007 msgid ""
29008 " part-get-parttype device\n"
29009 "\n"
29010 msgstr ""
29011
29012 # type: textblock
29013 #. type: textblock
29014 #: ../fish/guestfish-actions.pod:3377
29015 msgid ""
29016 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
29017 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
29018 "possible, although unusual.  See L</part-init> for a full list."
29019 msgstr ""
29020
29021 # type: =head2
29022 #. type: =head2
29023 #: ../fish/guestfish-actions.pod:3382
29024 msgid "part-init"
29025 msgstr ""
29026
29027 # type: verbatim
29028 #. type: verbatim
29029 #: ../fish/guestfish-actions.pod:3384
29030 #, no-wrap
29031 msgid ""
29032 " part-init device parttype\n"
29033 "\n"
29034 msgstr ""
29035
29036 # type: textblock
29037 #. type: textblock
29038 #: ../fish/guestfish-actions.pod:3390
29039 msgid ""
29040 "Initially there are no partitions.  Following this, you should call L</part-"
29041 "add> for each partition required."
29042 msgstr ""
29043
29044 # type: =head2
29045 #. type: =head2
29046 #: ../fish/guestfish-actions.pod:3453
29047 msgid "part-list"
29048 msgstr ""
29049
29050 # type: verbatim
29051 #. type: verbatim
29052 #: ../fish/guestfish-actions.pod:3455
29053 #, no-wrap
29054 msgid ""
29055 " part-list device\n"
29056 "\n"
29057 msgstr ""
29058
29059 # type: textblock
29060 #. type: textblock
29061 #: ../fish/guestfish-actions.pod:3470
29062 msgid ""
29063 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
29064 "the device's sector size, see L</blockdev-getss>."
29065 msgstr ""
29066
29067 # type: =head2
29068 #. type: =head2
29069 #: ../fish/guestfish-actions.pod:3483
29070 msgid "part-set-bootable"
29071 msgstr ""
29072
29073 # type: verbatim
29074 #. type: verbatim
29075 #: ../fish/guestfish-actions.pod:3485
29076 #, no-wrap
29077 msgid ""
29078 " part-set-bootable device partnum true|false\n"
29079 "\n"
29080 msgstr ""
29081
29082 # type: =head2
29083 #. type: =head2
29084 #: ../fish/guestfish-actions.pod:3494
29085 msgid "part-set-mbr-id"
29086 msgstr ""
29087
29088 # type: verbatim
29089 #. type: verbatim
29090 #: ../fish/guestfish-actions.pod:3496
29091 #, no-wrap
29092 msgid ""
29093 " part-set-mbr-id device partnum idbyte\n"
29094 "\n"
29095 msgstr ""
29096
29097 # type: =head2
29098 #. type: =head2
29099 #: ../fish/guestfish-actions.pod:3508
29100 msgid "part-set-name"
29101 msgstr ""
29102
29103 # type: verbatim
29104 #. type: verbatim
29105 #: ../fish/guestfish-actions.pod:3510
29106 #, no-wrap
29107 msgid ""
29108 " part-set-name device partnum name\n"
29109 "\n"
29110 msgstr ""
29111
29112 # type: =head2
29113 #. type: =head2
29114 #: ../fish/guestfish-actions.pod:3518
29115 msgid "part-to-dev"
29116 msgstr ""
29117
29118 # type: verbatim
29119 #. type: verbatim
29120 #: ../fish/guestfish-actions.pod:3520
29121 #, no-wrap
29122 msgid ""
29123 " part-to-dev partition\n"
29124 "\n"
29125 msgstr ""
29126
29127 # type: textblock
29128 #. type: textblock
29129 #: ../fish/guestfish-actions.pod:3526
29130 msgid ""
29131 "The named partition must exist, for example as a string returned from L</"
29132 "list-partitions>."
29133 msgstr ""
29134
29135 # type: =head2
29136 #. type: =head2
29137 #: ../fish/guestfish-actions.pod:3529
29138 msgid "ping-daemon"
29139 msgstr ""
29140
29141 # type: verbatim
29142 #. type: verbatim
29143 #: ../fish/guestfish-actions.pod:3531
29144 #, no-wrap
29145 msgid ""
29146 " ping-daemon\n"
29147 "\n"
29148 msgstr ""
29149
29150 # type: =head2
29151 #. type: =head2
29152 #: ../fish/guestfish-actions.pod:3538
29153 msgid "pread"
29154 msgstr ""
29155
29156 # type: verbatim
29157 #. type: verbatim
29158 #: ../fish/guestfish-actions.pod:3540
29159 #, no-wrap
29160 msgid ""
29161 " pread path count offset\n"
29162 "\n"
29163 msgstr ""
29164
29165 # type: textblock
29166 #. type: textblock
29167 #: ../fish/guestfish-actions.pod:3548
29168 msgid "See also L</pwrite>, L</pread-device>."
29169 msgstr ""
29170
29171 # type: =head2
29172 #. type: =head2
29173 #: ../fish/guestfish-actions.pod:3553
29174 msgid "pread-device"
29175 msgstr ""
29176
29177 # type: verbatim
29178 #. type: verbatim
29179 #: ../fish/guestfish-actions.pod:3555
29180 #, no-wrap
29181 msgid ""
29182 " pread-device device count offset\n"
29183 "\n"
29184 msgstr ""
29185
29186 # type: textblock
29187 #. type: textblock
29188 #: ../fish/guestfish-actions.pod:3563
29189 msgid "See also L</pread>."
29190 msgstr ""
29191
29192 # type: =head2
29193 #. type: =head2
29194 #: ../fish/guestfish-actions.pod:3568
29195 msgid "pvcreate"
29196 msgstr ""
29197
29198 # type: verbatim
29199 #. type: verbatim
29200 #: ../fish/guestfish-actions.pod:3570
29201 #, no-wrap
29202 msgid ""
29203 " pvcreate device\n"
29204 "\n"
29205 msgstr ""
29206
29207 # type: =head2
29208 #. type: =head2
29209 #: ../fish/guestfish-actions.pod:3576
29210 msgid "pvremove"
29211 msgstr ""
29212
29213 # type: verbatim
29214 #. type: verbatim
29215 #: ../fish/guestfish-actions.pod:3578
29216 #, no-wrap
29217 msgid ""
29218 " pvremove device\n"
29219 "\n"
29220 msgstr ""
29221
29222 # type: =head2
29223 #. type: =head2
29224 #: ../fish/guestfish-actions.pod:3587
29225 msgid "pvresize"
29226 msgstr ""
29227
29228 # type: verbatim
29229 #. type: verbatim
29230 #: ../fish/guestfish-actions.pod:3589
29231 #, no-wrap
29232 msgid ""
29233 " pvresize device\n"
29234 "\n"
29235 msgstr ""
29236
29237 # type: =head2
29238 #. type: =head2
29239 #: ../fish/guestfish-actions.pod:3594
29240 msgid "pvresize-size"
29241 msgstr ""
29242
29243 # type: verbatim
29244 #. type: verbatim
29245 #: ../fish/guestfish-actions.pod:3596
29246 #, no-wrap
29247 msgid ""
29248 " pvresize-size device size\n"
29249 "\n"
29250 msgstr ""
29251
29252 # type: textblock
29253 #. type: textblock
29254 #: ../fish/guestfish-actions.pod:3598
29255 msgid ""
29256 "This command is the same as L</pvresize> except that it allows you to "
29257 "specify the new size (in bytes) explicitly."
29258 msgstr ""
29259
29260 # type: =head2
29261 #. type: =head2
29262 #: ../fish/guestfish-actions.pod:3601
29263 msgid "pvs"
29264 msgstr ""
29265
29266 # type: verbatim
29267 #. type: verbatim
29268 #: ../fish/guestfish-actions.pod:3603
29269 #, no-wrap
29270 msgid ""
29271 " pvs\n"
29272 "\n"
29273 msgstr ""
29274
29275 # type: textblock
29276 #. type: textblock
29277 #: ../fish/guestfish-actions.pod:3611
29278 msgid "See also L</pvs-full>."
29279 msgstr ""
29280
29281 # type: =head2
29282 #. type: =head2
29283 #: ../fish/guestfish-actions.pod:3613
29284 msgid "pvs-full"
29285 msgstr ""
29286
29287 # type: verbatim
29288 #. type: verbatim
29289 #: ../fish/guestfish-actions.pod:3615
29290 #, no-wrap
29291 msgid ""
29292 " pvs-full\n"
29293 "\n"
29294 msgstr ""
29295
29296 # type: =head2
29297 #. type: =head2
29298 #: ../fish/guestfish-actions.pod:3620
29299 msgid "pvuuid"
29300 msgstr ""
29301
29302 # type: verbatim
29303 #. type: verbatim
29304 #: ../fish/guestfish-actions.pod:3622
29305 #, no-wrap
29306 msgid ""
29307 " pvuuid device\n"
29308 "\n"
29309 msgstr ""
29310
29311 # type: =head2
29312 #. type: =head2
29313 #: ../fish/guestfish-actions.pod:3626
29314 msgid "pwrite"
29315 msgstr ""
29316
29317 # type: verbatim
29318 #. type: verbatim
29319 #: ../fish/guestfish-actions.pod:3628
29320 #, no-wrap
29321 msgid ""
29322 " pwrite path content offset\n"
29323 "\n"
29324 msgstr ""
29325
29326 # type: textblock
29327 #. type: textblock
29328 #: ../fish/guestfish-actions.pod:3639
29329 msgid "See also L</pread>, L</pwrite-device>."
29330 msgstr ""
29331
29332 # type: =head2
29333 #. type: =head2
29334 #: ../fish/guestfish-actions.pod:3644
29335 msgid "pwrite-device"
29336 msgstr ""
29337
29338 # type: verbatim
29339 #. type: verbatim
29340 #: ../fish/guestfish-actions.pod:3646
29341 #, no-wrap
29342 msgid ""
29343 " pwrite-device device content offset\n"
29344 "\n"
29345 msgstr ""
29346
29347 # type: textblock
29348 #. type: textblock
29349 #: ../fish/guestfish-actions.pod:3656
29350 msgid "See also L</pwrite>."
29351 msgstr ""
29352
29353 # type: =head2
29354 #. type: =head2
29355 #: ../fish/guestfish-actions.pod:3661
29356 msgid "read-file"
29357 msgstr ""
29358
29359 # type: verbatim
29360 #. type: verbatim
29361 #: ../fish/guestfish-actions.pod:3663
29362 #, no-wrap
29363 msgid ""
29364 " read-file path\n"
29365 "\n"
29366 msgstr ""
29367
29368 # type: textblock
29369 #. type: textblock
29370 #: ../fish/guestfish-actions.pod:3668
29371 msgid ""
29372 "Unlike L</cat>, this function can correctly handle files that contain "
29373 "embedded ASCII NUL characters.  However unlike L</download>, this function "
29374 "is limited in the total size of file that can be handled."
29375 msgstr ""
29376
29377 # type: =head2
29378 #. type: =head2
29379 #: ../fish/guestfish-actions.pod:3676
29380 msgid "read-lines"
29381 msgstr ""
29382
29383 # type: verbatim
29384 #. type: verbatim
29385 #: ../fish/guestfish-actions.pod:3678
29386 #, no-wrap
29387 msgid ""
29388 " read-lines path\n"
29389 "\n"
29390 msgstr ""
29391
29392 # type: textblock
29393 #. type: textblock
29394 #: ../fish/guestfish-actions.pod:3685
29395 msgid ""
29396 "Note that this function cannot correctly handle binary files (specifically, "
29397 "files containing C<\\0> character which is treated as end of line).  For "
29398 "those you need to use the L</read-file> function which has a more complex "
29399 "interface."
29400 msgstr ""
29401
29402 # type: =head2
29403 #. type: =head2
29404 #: ../fish/guestfish-actions.pod:3690
29405 msgid "readdir"
29406 msgstr ""
29407
29408 # type: verbatim
29409 #. type: verbatim
29410 #: ../fish/guestfish-actions.pod:3692
29411 #, no-wrap
29412 msgid ""
29413 " readdir dir\n"
29414 "\n"
29415 msgstr ""
29416
29417 # type: textblock
29418 #. type: textblock
29419 #: ../fish/guestfish-actions.pod:3744
29420 msgid ""
29421 "This function is primarily intended for use by programs.  To get a simple "
29422 "list of names, use L</ls>.  To get a printable directory for human "
29423 "consumption, use L</ll>."
29424 msgstr ""
29425
29426 # type: =head2
29427 #. type: =head2
29428 #: ../fish/guestfish-actions.pod:3748
29429 msgid "readlink"
29430 msgstr ""
29431
29432 # type: verbatim
29433 #. type: verbatim
29434 #: ../fish/guestfish-actions.pod:3750
29435 #, no-wrap
29436 msgid ""
29437 " readlink path\n"
29438 "\n"
29439 msgstr ""
29440
29441 # type: =head2
29442 #. type: =head2
29443 #: ../fish/guestfish-actions.pod:3754
29444 msgid "readlinklist"
29445 msgstr ""
29446
29447 # type: verbatim
29448 #. type: verbatim
29449 #: ../fish/guestfish-actions.pod:3756
29450 #, no-wrap
29451 msgid ""
29452 " readlinklist path 'names ...'\n"
29453 "\n"
29454 msgstr ""
29455
29456 # type: =head2
29457 #. type: =head2
29458 #: ../fish/guestfish-actions.pod:3780
29459 msgid "realpath"
29460 msgstr ""
29461
29462 # type: verbatim
29463 #. type: verbatim
29464 #: ../fish/guestfish-actions.pod:3782
29465 #, no-wrap
29466 msgid ""
29467 " realpath path\n"
29468 "\n"
29469 msgstr ""
29470
29471 # type: =head2
29472 #. type: =head2
29473 #: ../fish/guestfish-actions.pod:3787
29474 msgid "removexattr"
29475 msgstr ""
29476
29477 # type: verbatim
29478 #. type: verbatim
29479 #: ../fish/guestfish-actions.pod:3789
29480 #, no-wrap
29481 msgid ""
29482 " removexattr xattr path\n"
29483 "\n"
29484 msgstr ""
29485
29486 # type: textblock
29487 #. type: textblock
29488 #: ../fish/guestfish-actions.pod:3794
29489 msgid "See also: L</lremovexattr>, L<attr(5)>."
29490 msgstr ""
29491
29492 # type: =head2
29493 #. type: =head2
29494 #: ../fish/guestfish-actions.pod:3796
29495 msgid "resize2fs"
29496 msgstr ""
29497
29498 # type: verbatim
29499 #. type: verbatim
29500 #: ../fish/guestfish-actions.pod:3798
29501 #, no-wrap
29502 msgid ""
29503 " resize2fs device\n"
29504 "\n"
29505 msgstr ""
29506
29507 # type: textblock
29508 #. type: textblock
29509 #: ../fish/guestfish-actions.pod:3803
29510 msgid ""
29511 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
29512 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
29513 "gives an error about this and sometimes not.  In any case, it is always safe "
29514 "to call L</e2fsck-f> before calling this function."
29515 msgstr ""
29516
29517 #. type: =head2
29518 #: ../fish/guestfish-actions.pod:3809
29519 msgid "resize2fs-M"
29520 msgstr ""
29521
29522 #. type: verbatim
29523 #: ../fish/guestfish-actions.pod:3811
29524 #, no-wrap
29525 msgid ""
29526 " resize2fs-M device\n"
29527 "\n"
29528 msgstr ""
29529
29530 #. type: textblock
29531 #: ../fish/guestfish-actions.pod:3813
29532 msgid ""
29533 "This command is the same as L</resize2fs>, but the filesystem is resized to "
29534 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
29535 "command."
29536 msgstr ""
29537
29538 #. type: textblock
29539 #: ../fish/guestfish-actions.pod:3817
29540 msgid ""
29541 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
29542 "and read the C<Block size> and C<Block count> values.  These two numbers, "
29543 "multiplied together, give the resulting size of the minimal filesystem in "
29544 "bytes."
29545 msgstr ""
29546
29547 # type: =head2
29548 #. type: =head2
29549 #: ../fish/guestfish-actions.pod:3822
29550 msgid "resize2fs-size"
29551 msgstr ""
29552
29553 # type: verbatim
29554 #. type: verbatim
29555 #: ../fish/guestfish-actions.pod:3824
29556 #, no-wrap
29557 msgid ""
29558 " resize2fs-size device size\n"
29559 "\n"
29560 msgstr ""
29561
29562 # type: textblock
29563 #. type: textblock
29564 #: ../fish/guestfish-actions.pod:3826
29565 msgid ""
29566 "This command is the same as L</resize2fs> except that it allows you to "
29567 "specify the new size (in bytes) explicitly."
29568 msgstr ""
29569
29570 # type: =head2
29571 #. type: =head2
29572 #: ../fish/guestfish-actions.pod:3829
29573 msgid "rm"
29574 msgstr ""
29575
29576 # type: verbatim
29577 #. type: verbatim
29578 #: ../fish/guestfish-actions.pod:3831
29579 #, no-wrap
29580 msgid ""
29581 " rm path\n"
29582 "\n"
29583 msgstr ""
29584
29585 # type: =head2
29586 #. type: =head2
29587 #: ../fish/guestfish-actions.pod:3835
29588 msgid "rm-rf"
29589 msgstr ""
29590
29591 # type: verbatim
29592 #. type: verbatim
29593 #: ../fish/guestfish-actions.pod:3837
29594 #, no-wrap
29595 msgid ""
29596 " rm-rf path\n"
29597 "\n"
29598 msgstr ""
29599
29600 # type: =head2
29601 #. type: =head2
29602 #: ../fish/guestfish-actions.pod:3843
29603 msgid "rmdir"
29604 msgstr ""
29605
29606 # type: verbatim
29607 #. type: verbatim
29608 #: ../fish/guestfish-actions.pod:3845
29609 #, no-wrap
29610 msgid ""
29611 " rmdir path\n"
29612 "\n"
29613 msgstr ""
29614
29615 # type: =head2
29616 #. type: =head2
29617 #: ../fish/guestfish-actions.pod:3849
29618 msgid "rmmountpoint"
29619 msgstr ""
29620
29621 # type: verbatim
29622 #. type: verbatim
29623 #: ../fish/guestfish-actions.pod:3851
29624 #, no-wrap
29625 msgid ""
29626 " rmmountpoint exemptpath\n"
29627 "\n"
29628 msgstr ""
29629
29630 # type: textblock
29631 #. type: textblock
29632 #: ../fish/guestfish-actions.pod:3853
29633 msgid ""
29634 "This calls removes a mountpoint that was previously created with L</"
29635 "mkmountpoint>.  See L</mkmountpoint> for full details."
29636 msgstr ""
29637
29638 # type: =head2
29639 #. type: =head2
29640 #: ../fish/guestfish-actions.pod:3857
29641 msgid "scrub-device"
29642 msgstr ""
29643
29644 # type: verbatim
29645 #. type: verbatim
29646 #: ../fish/guestfish-actions.pod:3859
29647 #, no-wrap
29648 msgid ""
29649 " scrub-device device\n"
29650 "\n"
29651 msgstr ""
29652
29653 # type: =head2
29654 #. type: =head2
29655 #: ../fish/guestfish-actions.pod:3870
29656 msgid "scrub-file"
29657 msgstr ""
29658
29659 # type: verbatim
29660 #. type: verbatim
29661 #: ../fish/guestfish-actions.pod:3872
29662 #, no-wrap
29663 msgid ""
29664 " scrub-file file\n"
29665 "\n"
29666 msgstr ""
29667
29668 # type: =head2
29669 #. type: =head2
29670 #: ../fish/guestfish-actions.pod:3882
29671 msgid "scrub-freespace"
29672 msgstr ""
29673
29674 # type: verbatim
29675 #. type: verbatim
29676 #: ../fish/guestfish-actions.pod:3884
29677 #, no-wrap
29678 msgid ""
29679 " scrub-freespace dir\n"
29680 "\n"
29681 msgstr ""
29682
29683 # type: textblock
29684 #. type: textblock
29685 #: ../fish/guestfish-actions.pod:3886
29686 msgid ""
29687 "This command creates the directory C<dir> and then fills it with files until "
29688 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
29689 "deletes them.  The intention is to scrub any free space on the partition "
29690 "containing C<dir>."
29691 msgstr ""
29692
29693 # type: =head2
29694 #. type: =head2
29695 #: ../fish/guestfish-actions.pod:3895
29696 msgid "set-append"
29697 msgstr ""
29698
29699 # type: =head2
29700 #. type: =head2
29701 #: ../fish/guestfish-actions.pod:3897
29702 msgid "append"
29703 msgstr ""
29704
29705 # type: verbatim
29706 #. type: verbatim
29707 #: ../fish/guestfish-actions.pod:3899
29708 #, no-wrap
29709 msgid ""
29710 " set-append append\n"
29711 "\n"
29712 msgstr ""
29713
29714 #. type: =head2
29715 #: ../fish/guestfish-actions.pod:3910
29716 msgid "set-attach-method"
29717 msgstr ""
29718
29719 #. type: =head2
29720 #: ../fish/guestfish-actions.pod:3912
29721 msgid "attach-method"
29722 msgstr ""
29723
29724 #. type: verbatim
29725 #: ../fish/guestfish-actions.pod:3914
29726 #, no-wrap
29727 msgid ""
29728 " set-attach-method attachmethod\n"
29729 "\n"
29730 msgstr ""
29731
29732 # type: =head2
29733 #. type: =head2
29734 #: ../fish/guestfish-actions.pod:3936
29735 msgid "set-autosync"
29736 msgstr ""
29737
29738 # type: =head2
29739 #. type: =head2
29740 #: ../fish/guestfish-actions.pod:3938
29741 msgid "autosync"
29742 msgstr ""
29743
29744 # type: verbatim
29745 #. type: verbatim
29746 #: ../fish/guestfish-actions.pod:3940
29747 #, no-wrap
29748 msgid ""
29749 " set-autosync true|false\n"
29750 "\n"
29751 msgstr ""
29752
29753 # type: =head2
29754 #. type: =head2
29755 #: ../fish/guestfish-actions.pod:3950
29756 msgid "set-direct"
29757 msgstr ""
29758
29759 # type: =head2
29760 #. type: =head2
29761 #: ../fish/guestfish-actions.pod:3952
29762 msgid "direct"
29763 msgstr ""
29764
29765 # type: verbatim
29766 #. type: verbatim
29767 #: ../fish/guestfish-actions.pod:3954
29768 #, no-wrap
29769 msgid ""
29770 " set-direct true|false\n"
29771 "\n"
29772 msgstr ""
29773
29774 # type: textblock
29775 #. type: textblock
29776 #: ../fish/guestfish-actions.pod:3960
29777 msgid ""
29778 "One consequence of this is that log messages aren't caught by the library "
29779 "and handled by L</set-log-message-callback>, but go straight to stdout."
29780 msgstr ""
29781
29782 # type: =head2
29783 #. type: =head2
29784 #: ../fish/guestfish-actions.pod:3969
29785 msgid "set-e2label"
29786 msgstr ""
29787
29788 # type: verbatim
29789 #. type: verbatim
29790 #: ../fish/guestfish-actions.pod:3971
29791 #, no-wrap
29792 msgid ""
29793 " set-e2label device label\n"
29794 "\n"
29795 msgstr ""
29796
29797 # type: textblock
29798 #. type: textblock
29799 #: ../fish/guestfish-actions.pod:3977
29800 msgid ""
29801 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
29802 "label on a filesystem."
29803 msgstr ""
29804
29805 # type: =head2
29806 #. type: =head2
29807 #: ../fish/guestfish-actions.pod:3980
29808 msgid "set-e2uuid"
29809 msgstr ""
29810
29811 # type: verbatim
29812 #. type: verbatim
29813 #: ../fish/guestfish-actions.pod:3982
29814 #, no-wrap
29815 msgid ""
29816 " set-e2uuid device uuid\n"
29817 "\n"
29818 msgstr ""
29819
29820 # type: textblock
29821 #. type: textblock
29822 #: ../fish/guestfish-actions.pod:3989
29823 msgid ""
29824 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
29825 "UUID of a filesystem."
29826 msgstr ""
29827
29828 # type: =head2
29829 #. type: =head2
29830 #: ../fish/guestfish-actions.pod:3992
29831 msgid "set-memsize"
29832 msgstr ""
29833
29834 # type: =head2
29835 #. type: =head2
29836 #: ../fish/guestfish-actions.pod:3994
29837 msgid "memsize"
29838 msgstr ""
29839
29840 # type: verbatim
29841 #. type: verbatim
29842 #: ../fish/guestfish-actions.pod:3996
29843 #, no-wrap
29844 msgid ""
29845 " set-memsize memsize\n"
29846 "\n"
29847 msgstr ""
29848
29849 # type: textblock
29850 #. type: textblock
29851 #: ../fish/guestfish-actions.pod:3998
29852 msgid ""
29853 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
29854 "This only has any effect if called before L</launch>."
29855 msgstr ""
29856
29857 # type: =head2
29858 #. type: =head2
29859 #: ../fish/guestfish-actions.pod:4009
29860 msgid "set-network"
29861 msgstr ""
29862
29863 # type: =head2
29864 #. type: =head2
29865 #: ../fish/guestfish-actions.pod:4011
29866 msgid "network"
29867 msgstr ""
29868
29869 # type: verbatim
29870 #. type: verbatim
29871 #: ../fish/guestfish-actions.pod:4013
29872 #, no-wrap
29873 msgid ""
29874 " set-network true|false\n"
29875 "\n"
29876 msgstr ""
29877
29878 # type: textblock
29879 #. type: textblock
29880 #: ../fish/guestfish-actions.pod:4021
29881 msgid ""
29882 "You must call this before calling L</launch>, otherwise it has no effect."
29883 msgstr ""
29884
29885 # type: =head2
29886 #. type: =head2
29887 #: ../fish/guestfish-actions.pod:4024
29888 msgid "set-path"
29889 msgstr ""
29890
29891 # type: =head2
29892 #. type: =head2
29893 #: ../fish/guestfish-actions.pod:4026
29894 msgid "path"
29895 msgstr ""
29896
29897 # type: verbatim
29898 #. type: verbatim
29899 #: ../fish/guestfish-actions.pod:4028
29900 #, no-wrap
29901 msgid ""
29902 " set-path searchpath\n"
29903 "\n"
29904 msgstr ""
29905
29906 # type: =head2
29907 #. type: =head2
29908 #: ../fish/guestfish-actions.pod:4037
29909 msgid "set-qemu"
29910 msgstr ""
29911
29912 # type: =head2
29913 #. type: =head2
29914 #: ../fish/guestfish-actions.pod:4039
29915 msgid "qemu"
29916 msgstr ""
29917
29918 # type: verbatim
29919 #. type: verbatim
29920 #: ../fish/guestfish-actions.pod:4041
29921 #, no-wrap
29922 msgid ""
29923 " set-qemu qemu\n"
29924 "\n"
29925 msgstr ""
29926
29927 # type: =head2
29928 #. type: =head2
29929 #: ../fish/guestfish-actions.pod:4061
29930 msgid "set-recovery-proc"
29931 msgstr ""
29932
29933 # type: =head2
29934 #. type: =head2
29935 #: ../fish/guestfish-actions.pod:4063
29936 msgid "recovery-proc"
29937 msgstr ""
29938
29939 # type: verbatim
29940 #. type: verbatim
29941 #: ../fish/guestfish-actions.pod:4065
29942 #, no-wrap
29943 msgid ""
29944 " set-recovery-proc true|false\n"
29945 "\n"
29946 msgstr ""
29947
29948 # type: textblock
29949 #. type: textblock
29950 #: ../fish/guestfish-actions.pod:4067
29951 msgid ""
29952 "If this is called with the parameter C<false> then L</launch> does not "
29953 "create a recovery process.  The purpose of the recovery process is to stop "
29954 "runaway qemu processes in the case where the main program aborts abruptly."
29955 msgstr ""
29956
29957 # type: textblock
29958 #. type: textblock
29959 #: ../fish/guestfish-actions.pod:4072
29960 msgid ""
29961 "This only has any effect if called before L</launch>, and the default is "
29962 "true."
29963 msgstr ""
29964
29965 # type: =head2
29966 #. type: =head2
29967 #: ../fish/guestfish-actions.pod:4081
29968 msgid "set-selinux"
29969 msgstr ""
29970
29971 # type: =head2
29972 #. type: =head2
29973 #: ../fish/guestfish-actions.pod:4083
29974 msgid "selinux"
29975 msgstr ""
29976
29977 # type: verbatim
29978 #. type: verbatim
29979 #: ../fish/guestfish-actions.pod:4085
29980 #, no-wrap
29981 msgid ""
29982 " set-selinux true|false\n"
29983 "\n"
29984 msgstr ""
29985
29986 # type: =head2
29987 #. type: =head2
29988 #: ../fish/guestfish-actions.pod:4096
29989 msgid "set-trace"
29990 msgstr ""
29991
29992 # type: =head2
29993 #. type: =head2
29994 #: ../fish/guestfish-actions.pod:4098
29995 msgid "trace"
29996 msgstr ""
29997
29998 # type: verbatim
29999 #. type: verbatim
30000 #: ../fish/guestfish-actions.pod:4100
30001 #, no-wrap
30002 msgid ""
30003 " set-trace true|false\n"
30004 "\n"
30005 msgstr ""
30006
30007 #. type: textblock
30008 #: ../fish/guestfish-actions.pod:4112
30009 msgid ""
30010 "Trace messages are normally sent to C<stderr>, unless you register a "
30011 "callback to send them somewhere else (see L</set-event-callback>)."
30012 msgstr ""
30013
30014 # type: =head2
30015 #. type: =head2
30016 #: ../fish/guestfish-actions.pod:4116
30017 msgid "set-verbose"
30018 msgstr ""
30019
30020 # type: =head2
30021 #. type: =head2
30022 #: ../fish/guestfish-actions.pod:4118
30023 msgid "verbose"
30024 msgstr ""
30025
30026 # type: verbatim
30027 #. type: verbatim
30028 #: ../fish/guestfish-actions.pod:4120
30029 #, no-wrap
30030 msgid ""
30031 " set-verbose true|false\n"
30032 "\n"
30033 msgstr ""
30034
30035 #. type: textblock
30036 #: ../fish/guestfish-actions.pod:4127
30037 msgid ""
30038 "Verbose messages are normally sent to C<stderr>, unless you register a "
30039 "callback to send them somewhere else (see L</set-event-callback>)."
30040 msgstr ""
30041
30042 # type: =head2
30043 #. type: =head2
30044 #: ../fish/guestfish-actions.pod:4131
30045 msgid "setcon"
30046 msgstr ""
30047
30048 # type: verbatim
30049 #. type: verbatim
30050 #: ../fish/guestfish-actions.pod:4133
30051 #, no-wrap
30052 msgid ""
30053 " setcon context\n"
30054 "\n"
30055 msgstr ""
30056
30057 # type: =head2
30058 #. type: =head2
30059 #: ../fish/guestfish-actions.pod:4140
30060 msgid "setxattr"
30061 msgstr ""
30062
30063 # type: verbatim
30064 #. type: verbatim
30065 #: ../fish/guestfish-actions.pod:4142
30066 #, no-wrap
30067 msgid ""
30068 " setxattr xattr val vallen path\n"
30069 "\n"
30070 msgstr ""
30071
30072 # type: textblock
30073 #. type: textblock
30074 #: ../fish/guestfish-actions.pod:4148
30075 msgid "See also: L</lsetxattr>, L<attr(5)>."
30076 msgstr ""
30077
30078 # type: =head2
30079 #. type: =head2
30080 #: ../fish/guestfish-actions.pod:4150
30081 msgid "sfdisk"
30082 msgstr ""
30083
30084 # type: verbatim
30085 #. type: verbatim
30086 #: ../fish/guestfish-actions.pod:4152
30087 #, no-wrap
30088 msgid ""
30089 " sfdisk device cyls heads sectors 'lines ...'\n"
30090 "\n"
30091 msgstr ""
30092
30093 # type: textblock
30094 #. type: textblock
30095 #: ../fish/guestfish-actions.pod:4174
30096 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
30097 msgstr ""
30098
30099 #. type: textblock
30100 #: ../fish/guestfish-actions.pod:4180 ../fish/guestfish-actions.pod:4203
30101 #: ../fish/guestfish-actions.pod:4225
30102 msgid ""
30103 "This function is deprecated.  In new code, use the L</part_add> call instead."
30104 msgstr ""
30105
30106 # type: =head2
30107 #. type: =head2
30108 #: ../fish/guestfish-actions.pod:4187
30109 msgid "sfdiskM"
30110 msgstr ""
30111
30112 # type: verbatim
30113 #. type: verbatim
30114 #: ../fish/guestfish-actions.pod:4189
30115 #, no-wrap
30116 msgid ""
30117 " sfdiskM device 'lines ...'\n"
30118 "\n"
30119 msgstr ""
30120
30121 # type: textblock
30122 #. type: textblock
30123 #: ../fish/guestfish-actions.pod:4191
30124 msgid ""
30125 "This is a simplified interface to the L</sfdisk> command, where partition "
30126 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
30127 "you don't need to specify the cyls, heads and sectors parameters which were "
30128 "rarely if ever used anyway."
30129 msgstr ""
30130
30131 # type: textblock
30132 #. type: textblock
30133 #: ../fish/guestfish-actions.pod:4197
30134 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
30135 msgstr ""
30136
30137 # type: =head2
30138 #. type: =head2
30139 #: ../fish/guestfish-actions.pod:4210
30140 msgid "sfdisk-N"
30141 msgstr ""
30142
30143 # type: verbatim
30144 #. type: verbatim
30145 #: ../fish/guestfish-actions.pod:4212
30146 #, no-wrap
30147 msgid ""
30148 " sfdisk-N device partnum cyls heads sectors line\n"
30149 "\n"
30150 msgstr ""
30151
30152 # type: textblock
30153 #. type: textblock
30154 #: ../fish/guestfish-actions.pod:4217
30155 msgid ""
30156 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
30157 "cyls/heads/sectors parameters."
30158 msgstr ""
30159
30160 # type: textblock
30161 #. type: textblock
30162 #: ../fish/guestfish-actions.pod:4220
30163 msgid "See also: L</part-add>"
30164 msgstr ""
30165
30166 # type: =head2
30167 #. type: =head2
30168 #: ../fish/guestfish-actions.pod:4232
30169 msgid "sfdisk-disk-geometry"
30170 msgstr ""
30171
30172 # type: verbatim
30173 #. type: verbatim
30174 #: ../fish/guestfish-actions.pod:4234
30175 #, no-wrap
30176 msgid ""
30177 " sfdisk-disk-geometry device\n"
30178 "\n"
30179 msgstr ""
30180
30181 # type: textblock
30182 #. type: textblock
30183 #: ../fish/guestfish-actions.pod:4236
30184 msgid ""
30185 "This displays the disk geometry of C<device> read from the partition table.  "
30186 "Especially in the case where the underlying block device has been resized, "
30187 "this can be different from the kernel's idea of the geometry (see L</sfdisk-"
30188 "kernel-geometry>)."
30189 msgstr ""
30190
30191 # type: =head2
30192 #. type: =head2
30193 #: ../fish/guestfish-actions.pod:4244
30194 msgid "sfdisk-kernel-geometry"
30195 msgstr ""
30196
30197 # type: verbatim
30198 #. type: verbatim
30199 #: ../fish/guestfish-actions.pod:4246
30200 #, no-wrap
30201 msgid ""
30202 " sfdisk-kernel-geometry device\n"
30203 "\n"
30204 msgstr ""
30205
30206 # type: =head2
30207 #. type: =head2
30208 #: ../fish/guestfish-actions.pod:4253
30209 msgid "sfdisk-l"
30210 msgstr ""
30211
30212 # type: verbatim
30213 #. type: verbatim
30214 #: ../fish/guestfish-actions.pod:4255
30215 #, no-wrap
30216 msgid ""
30217 " sfdisk-l device\n"
30218 "\n"
30219 msgstr ""
30220
30221 # type: textblock
30222 #. type: textblock
30223 #: ../fish/guestfish-actions.pod:4261
30224 msgid "See also: L</part-list>"
30225 msgstr ""
30226
30227 #. type: textblock
30228 #: ../fish/guestfish-actions.pod:4263
30229 msgid ""
30230 "This function is deprecated.  In new code, use the L</part_list> call "
30231 "instead."
30232 msgstr ""
30233
30234 # type: =head2
30235 #. type: =head2
30236 #: ../fish/guestfish-actions.pod:4270
30237 msgid "sh"
30238 msgstr ""
30239
30240 # type: verbatim
30241 #. type: verbatim
30242 #: ../fish/guestfish-actions.pod:4272
30243 #, no-wrap
30244 msgid ""
30245 " sh command\n"
30246 "\n"
30247 msgstr ""
30248
30249 # type: textblock
30250 #. type: textblock
30251 #: ../fish/guestfish-actions.pod:4277
30252 msgid "This is like L</command>, but passes the command to:"
30253 msgstr ""
30254
30255 # type: textblock
30256 #. type: textblock
30257 #: ../fish/guestfish-actions.pod:4285
30258 msgid "All the provisos about L</command> apply to this call."
30259 msgstr ""
30260
30261 # type: =head2
30262 #. type: =head2
30263 #: ../fish/guestfish-actions.pod:4287
30264 msgid "sh-lines"
30265 msgstr ""
30266
30267 # type: verbatim
30268 #. type: verbatim
30269 #: ../fish/guestfish-actions.pod:4289
30270 #, no-wrap
30271 msgid ""
30272 " sh-lines command\n"
30273 "\n"
30274 msgstr ""
30275
30276 # type: textblock
30277 #. type: textblock
30278 #: ../fish/guestfish-actions.pod:4291
30279 msgid "This is the same as L</sh>, but splits the result into a list of lines."
30280 msgstr ""
30281
30282 # type: textblock
30283 #. type: textblock
30284 #: ../fish/guestfish-actions.pod:4294
30285 msgid "See also: L</command-lines>"
30286 msgstr ""
30287
30288 # type: =head2
30289 #. type: =head2
30290 #: ../fish/guestfish-actions.pod:4296
30291 msgid "sleep"
30292 msgstr ""
30293
30294 # type: verbatim
30295 #. type: verbatim
30296 #: ../fish/guestfish-actions.pod:4298
30297 #, no-wrap
30298 msgid ""
30299 " sleep secs\n"
30300 "\n"
30301 msgstr ""
30302
30303 # type: =head2
30304 #. type: =head2
30305 #: ../fish/guestfish-actions.pod:4302
30306 msgid "stat"
30307 msgstr ""
30308
30309 # type: verbatim
30310 #. type: verbatim
30311 #: ../fish/guestfish-actions.pod:4304
30312 #, no-wrap
30313 msgid ""
30314 " stat path\n"
30315 "\n"
30316 msgstr ""
30317
30318 # type: =head2
30319 #. type: =head2
30320 #: ../fish/guestfish-actions.pod:4310
30321 msgid "statvfs"
30322 msgstr ""
30323
30324 # type: verbatim
30325 #. type: verbatim
30326 #: ../fish/guestfish-actions.pod:4312
30327 #, no-wrap
30328 msgid ""
30329 " statvfs path\n"
30330 "\n"
30331 msgstr ""
30332
30333 # type: =head2
30334 #. type: =head2
30335 #: ../fish/guestfish-actions.pod:4320
30336 msgid "strings"
30337 msgstr ""
30338
30339 # type: verbatim
30340 #. type: verbatim
30341 #: ../fish/guestfish-actions.pod:4322
30342 #, no-wrap
30343 msgid ""
30344 " strings path\n"
30345 "\n"
30346 msgstr ""
30347
30348 # type: =head2
30349 #. type: =head2
30350 #: ../fish/guestfish-actions.pod:4330
30351 msgid "strings-e"
30352 msgstr ""
30353
30354 # type: verbatim
30355 #. type: verbatim
30356 #: ../fish/guestfish-actions.pod:4332
30357 #, no-wrap
30358 msgid ""
30359 " strings-e encoding path\n"
30360 "\n"
30361 msgstr ""
30362
30363 # type: textblock
30364 #. type: textblock
30365 #: ../fish/guestfish-actions.pod:4334
30366 msgid ""
30367 "This is like the L</strings> command, but allows you to specify the encoding "
30368 "of strings that are looked for in the source file C<path>."
30369 msgstr ""
30370
30371 # type: textblock
30372 #. type: textblock
30373 #: ../fish/guestfish-actions.pod:4344
30374 msgid ""
30375 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
30376 "ISO-8859-X (this is what L</strings> uses)."
30377 msgstr ""
30378
30379 # type: =head2
30380 #. type: =head2
30381 #: ../fish/guestfish-actions.pod:4376
30382 msgid "swapoff-device"
30383 msgstr ""
30384
30385 # type: verbatim
30386 #. type: verbatim
30387 #: ../fish/guestfish-actions.pod:4378
30388 #, no-wrap
30389 msgid ""
30390 " swapoff-device device\n"
30391 "\n"
30392 msgstr ""
30393
30394 # type: textblock
30395 #. type: textblock
30396 #: ../fish/guestfish-actions.pod:4380
30397 msgid ""
30398 "This command disables the libguestfs appliance swap device or partition "
30399 "named C<device>.  See L</swapon-device>."
30400 msgstr ""
30401
30402 # type: =head2
30403 #. type: =head2
30404 #: ../fish/guestfish-actions.pod:4384
30405 msgid "swapoff-file"
30406 msgstr ""
30407
30408 # type: verbatim
30409 #. type: verbatim
30410 #: ../fish/guestfish-actions.pod:4386
30411 #, no-wrap
30412 msgid ""
30413 " swapoff-file file\n"
30414 "\n"
30415 msgstr ""
30416
30417 # type: =head2
30418 #. type: =head2
30419 #: ../fish/guestfish-actions.pod:4390
30420 msgid "swapoff-label"
30421 msgstr ""
30422
30423 # type: verbatim
30424 #. type: verbatim
30425 #: ../fish/guestfish-actions.pod:4392
30426 #, no-wrap
30427 msgid ""
30428 " swapoff-label label\n"
30429 "\n"
30430 msgstr ""
30431
30432 # type: =head2
30433 #. type: =head2
30434 #: ../fish/guestfish-actions.pod:4397
30435 msgid "swapoff-uuid"
30436 msgstr ""
30437
30438 # type: verbatim
30439 #. type: verbatim
30440 #: ../fish/guestfish-actions.pod:4399
30441 #, no-wrap
30442 msgid ""
30443 " swapoff-uuid uuid\n"
30444 "\n"
30445 msgstr ""
30446
30447 # type: =head2
30448 #. type: =head2
30449 #: ../fish/guestfish-actions.pod:4404
30450 msgid "swapon-device"
30451 msgstr ""
30452
30453 # type: verbatim
30454 #. type: verbatim
30455 #: ../fish/guestfish-actions.pod:4406
30456 #, no-wrap
30457 msgid ""
30458 " swapon-device device\n"
30459 "\n"
30460 msgstr ""
30461
30462 # type: textblock
30463 #. type: textblock
30464 #: ../fish/guestfish-actions.pod:4408
30465 msgid ""
30466 "This command enables the libguestfs appliance to use the swap device or "
30467 "partition named C<device>.  The increased memory is made available for all "
30468 "commands, for example those run using L</command> or L</sh>."
30469 msgstr ""
30470
30471 # type: =head2
30472 #. type: =head2
30473 #: ../fish/guestfish-actions.pod:4420
30474 msgid "swapon-file"
30475 msgstr ""
30476
30477 # type: verbatim
30478 #. type: verbatim
30479 #: ../fish/guestfish-actions.pod:4422
30480 #, no-wrap
30481 msgid ""
30482 " swapon-file file\n"
30483 "\n"
30484 msgstr ""
30485
30486 # type: textblock
30487 #. type: textblock
30488 #: ../fish/guestfish-actions.pod:4424
30489 msgid ""
30490 "This command enables swap to a file.  See L</swapon-device> for other notes."
30491 msgstr ""
30492
30493 # type: =head2
30494 #. type: =head2
30495 #: ../fish/guestfish-actions.pod:4427
30496 msgid "swapon-label"
30497 msgstr ""
30498
30499 # type: verbatim
30500 #. type: verbatim
30501 #: ../fish/guestfish-actions.pod:4429
30502 #, no-wrap
30503 msgid ""
30504 " swapon-label label\n"
30505 "\n"
30506 msgstr ""
30507
30508 # type: textblock
30509 #. type: textblock
30510 #: ../fish/guestfish-actions.pod:4431
30511 msgid ""
30512 "This command enables swap to a labeled swap partition.  See L</swapon-"
30513 "device> for other notes."
30514 msgstr ""
30515
30516 # type: =head2
30517 #. type: =head2
30518 #: ../fish/guestfish-actions.pod:4434
30519 msgid "swapon-uuid"
30520 msgstr ""
30521
30522 # type: verbatim
30523 #. type: verbatim
30524 #: ../fish/guestfish-actions.pod:4436
30525 #, no-wrap
30526 msgid ""
30527 " swapon-uuid uuid\n"
30528 "\n"
30529 msgstr ""
30530
30531 # type: textblock
30532 #. type: textblock
30533 #: ../fish/guestfish-actions.pod:4438
30534 msgid ""
30535 "This command enables swap to a swap partition with the given UUID.  See L</"
30536 "swapon-device> for other notes."
30537 msgstr ""
30538
30539 # type: =head2
30540 #. type: =head2
30541 #: ../fish/guestfish-actions.pod:4441
30542 msgid "sync"
30543 msgstr ""
30544
30545 # type: verbatim
30546 #. type: verbatim
30547 #: ../fish/guestfish-actions.pod:4443
30548 #, no-wrap
30549 msgid ""
30550 " sync\n"
30551 "\n"
30552 msgstr ""
30553
30554 # type: =head2
30555 #. type: =head2
30556 #: ../fish/guestfish-actions.pod:4451
30557 msgid "tail"
30558 msgstr ""
30559
30560 # type: verbatim
30561 #. type: verbatim
30562 #: ../fish/guestfish-actions.pod:4453
30563 #, no-wrap
30564 msgid ""
30565 " tail path\n"
30566 "\n"
30567 msgstr ""
30568
30569 # type: =head2
30570 #. type: =head2
30571 #: ../fish/guestfish-actions.pod:4461
30572 msgid "tail-n"
30573 msgstr ""
30574
30575 # type: verbatim
30576 #. type: verbatim
30577 #: ../fish/guestfish-actions.pod:4463
30578 #, no-wrap
30579 msgid ""
30580 " tail-n nrlines path\n"
30581 "\n"
30582 msgstr ""
30583
30584 # type: =head2
30585 #. type: =head2
30586 #: ../fish/guestfish-actions.pod:4476
30587 msgid "tar-in"
30588 msgstr ""
30589
30590 # type: verbatim
30591 #. type: verbatim
30592 #: ../fish/guestfish-actions.pod:4478
30593 #, no-wrap
30594 msgid ""
30595 " tar-in (tarfile|-) directory\n"
30596 "\n"
30597 msgstr ""
30598
30599 # type: textblock
30600 #. type: textblock
30601 #: ../fish/guestfish-actions.pod:4483
30602 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
30603 msgstr ""
30604
30605 # type: =head2
30606 #. type: =head2
30607 #: ../fish/guestfish-actions.pod:4488
30608 msgid "tar-out"
30609 msgstr ""
30610
30611 # type: verbatim
30612 #. type: verbatim
30613 #: ../fish/guestfish-actions.pod:4490
30614 #, no-wrap
30615 msgid ""
30616 " tar-out directory (tarfile|-)\n"
30617 "\n"
30618 msgstr ""
30619
30620 # type: textblock
30621 #. type: textblock
30622 #: ../fish/guestfish-actions.pod:4495
30623 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
30624 msgstr ""
30625
30626 # type: =head2
30627 #. type: =head2
30628 #: ../fish/guestfish-actions.pod:4500
30629 msgid "tgz-in"
30630 msgstr ""
30631
30632 # type: verbatim
30633 #. type: verbatim
30634 #: ../fish/guestfish-actions.pod:4502
30635 #, no-wrap
30636 msgid ""
30637 " tgz-in (tarball|-) directory\n"
30638 "\n"
30639 msgstr ""
30640
30641 # type: textblock
30642 #. type: textblock
30643 #: ../fish/guestfish-actions.pod:4507
30644 msgid "To upload an uncompressed tarball, use L</tar-in>."
30645 msgstr ""
30646
30647 # type: =head2
30648 #. type: =head2
30649 #: ../fish/guestfish-actions.pod:4511
30650 msgid "tgz-out"
30651 msgstr ""
30652
30653 # type: verbatim
30654 #. type: verbatim
30655 #: ../fish/guestfish-actions.pod:4513
30656 #, no-wrap
30657 msgid ""
30658 " tgz-out directory (tarball|-)\n"
30659 "\n"
30660 msgstr ""
30661
30662 # type: textblock
30663 #. type: textblock
30664 #: ../fish/guestfish-actions.pod:4518
30665 msgid "To download an uncompressed tarball, use L</tar-out>."
30666 msgstr ""
30667
30668 # type: =head2
30669 #. type: =head2
30670 #: ../fish/guestfish-actions.pod:4522
30671 msgid "touch"
30672 msgstr ""
30673
30674 # type: verbatim
30675 #. type: verbatim
30676 #: ../fish/guestfish-actions.pod:4524
30677 #, no-wrap
30678 msgid ""
30679 " touch path\n"
30680 "\n"
30681 msgstr ""
30682
30683 # type: =head2
30684 #. type: =head2
30685 #: ../fish/guestfish-actions.pod:4533
30686 msgid "truncate"
30687 msgstr ""
30688
30689 # type: verbatim
30690 #. type: verbatim
30691 #: ../fish/guestfish-actions.pod:4535
30692 #, no-wrap
30693 msgid ""
30694 " truncate path\n"
30695 "\n"
30696 msgstr ""
30697
30698 # type: =head2
30699 #. type: =head2
30700 #: ../fish/guestfish-actions.pod:4540
30701 msgid "truncate-size"
30702 msgstr ""
30703
30704 # type: verbatim
30705 #. type: verbatim
30706 #: ../fish/guestfish-actions.pod:4542
30707 #, no-wrap
30708 msgid ""
30709 " truncate-size path size\n"
30710 "\n"
30711 msgstr ""
30712
30713 # type: textblock
30714 #. type: textblock
30715 #: ../fish/guestfish-actions.pod:4547
30716 msgid ""
30717 "If the current file size is less than C<size> then the file is extended to "
30718 "the required size with zero bytes.  This creates a sparse file (ie. disk "
30719 "blocks are not allocated for the file until you write to it).  To create a "
30720 "non-sparse file of zeroes, use L</fallocate64> instead."
30721 msgstr ""
30722
30723 # type: =head2
30724 #. type: =head2
30725 #: ../fish/guestfish-actions.pod:4553
30726 msgid "tune2fs-l"
30727 msgstr ""
30728
30729 # type: verbatim
30730 #. type: verbatim
30731 #: ../fish/guestfish-actions.pod:4555
30732 #, no-wrap
30733 msgid ""
30734 " tune2fs-l device\n"
30735 "\n"
30736 msgstr ""
30737
30738 # type: =head2
30739 #. type: =head2
30740 #: ../fish/guestfish-actions.pod:4565
30741 msgid "txz-in"
30742 msgstr ""
30743
30744 # type: verbatim
30745 #. type: verbatim
30746 #: ../fish/guestfish-actions.pod:4567
30747 #, no-wrap
30748 msgid ""
30749 " txz-in (tarball|-) directory\n"
30750 "\n"
30751 msgstr ""
30752
30753 # type: =head2
30754 #. type: =head2
30755 #: ../fish/guestfish-actions.pod:4574
30756 msgid "txz-out"
30757 msgstr ""
30758
30759 # type: verbatim
30760 #. type: verbatim
30761 #: ../fish/guestfish-actions.pod:4576
30762 #, no-wrap
30763 msgid ""
30764 " txz-out directory (tarball|-)\n"
30765 "\n"
30766 msgstr ""
30767
30768 # type: =head2
30769 #. type: =head2
30770 #: ../fish/guestfish-actions.pod:4583
30771 msgid "umask"
30772 msgstr ""
30773
30774 # type: verbatim
30775 #. type: verbatim
30776 #: ../fish/guestfish-actions.pod:4585
30777 #, no-wrap
30778 msgid ""
30779 " umask mask\n"
30780 "\n"
30781 msgstr ""
30782
30783 # type: textblock
30784 #. type: textblock
30785 #: ../fish/guestfish-actions.pod:4599
30786 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
30787 msgstr ""
30788
30789 # type: =head2
30790 #. type: =head2
30791 #: ../fish/guestfish-actions.pod:4604
30792 msgid "umount"
30793 msgstr ""
30794
30795 # type: =head2
30796 #. type: =head2
30797 #: ../fish/guestfish-actions.pod:4606
30798 msgid "unmount"
30799 msgstr ""
30800
30801 # type: verbatim
30802 #. type: verbatim
30803 #: ../fish/guestfish-actions.pod:4608
30804 #, no-wrap
30805 msgid ""
30806 " umount pathordevice\n"
30807 "\n"
30808 msgstr ""
30809
30810 # type: =head2
30811 #. type: =head2
30812 #: ../fish/guestfish-actions.pod:4614
30813 msgid "umount-all"
30814 msgstr ""
30815
30816 # type: =head2
30817 #. type: =head2
30818 #: ../fish/guestfish-actions.pod:4616
30819 msgid "unmount-all"
30820 msgstr ""
30821
30822 # type: verbatim
30823 #. type: verbatim
30824 #: ../fish/guestfish-actions.pod:4618
30825 #, no-wrap
30826 msgid ""
30827 " umount-all\n"
30828 "\n"
30829 msgstr ""
30830
30831 # type: =head2
30832 #. type: =head2
30833 #: ../fish/guestfish-actions.pod:4624
30834 msgid "upload"
30835 msgstr ""
30836
30837 # type: verbatim
30838 #. type: verbatim
30839 #: ../fish/guestfish-actions.pod:4626
30840 #, no-wrap
30841 msgid ""
30842 " upload (filename|-) remotefilename\n"
30843 "\n"
30844 msgstr ""
30845
30846 # type: textblock
30847 #. type: textblock
30848 #: ../fish/guestfish-actions.pod:4633
30849 msgid "See also L</download>."
30850 msgstr ""
30851
30852 # type: =head2
30853 #. type: =head2
30854 #: ../fish/guestfish-actions.pod:4637
30855 msgid "upload-offset"
30856 msgstr ""
30857
30858 # type: verbatim
30859 #. type: verbatim
30860 #: ../fish/guestfish-actions.pod:4639
30861 #, no-wrap
30862 msgid ""
30863 " upload-offset (filename|-) remotefilename offset\n"
30864 "\n"
30865 msgstr ""
30866
30867 # type: textblock
30868 #. type: textblock
30869 #: ../fish/guestfish-actions.pod:4651
30870 msgid ""
30871 "Note that there is no limit on the amount of data that can be uploaded with "
30872 "this call, unlike with L</pwrite>, and this call always writes the full "
30873 "amount unless an error occurs."
30874 msgstr ""
30875
30876 # type: textblock
30877 #. type: textblock
30878 #: ../fish/guestfish-actions.pod:4656
30879 msgid "See also L</upload>, L</pwrite>."
30880 msgstr ""
30881
30882 # type: =head2
30883 #. type: =head2
30884 #: ../fish/guestfish-actions.pod:4660
30885 msgid "utimens"
30886 msgstr ""
30887
30888 # type: verbatim
30889 #. type: verbatim
30890 #: ../fish/guestfish-actions.pod:4662
30891 #, no-wrap
30892 msgid ""
30893 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
30894 "\n"
30895 msgstr ""
30896
30897 # type: =head2
30898 #. type: =head2
30899 #: ../fish/guestfish-actions.pod:4681
30900 msgid "version"
30901 msgstr ""
30902
30903 # type: verbatim
30904 #. type: verbatim
30905 #: ../fish/guestfish-actions.pod:4683
30906 #, no-wrap
30907 msgid ""
30908 " version\n"
30909 "\n"
30910 msgstr ""
30911
30912 # type: textblock
30913 #. type: textblock
30914 #: ../fish/guestfish-actions.pod:4710
30915 msgid ""
30916 "I<Note:> Don't use this call to test for availability of features.  In "
30917 "enterprise distributions we backport features from later versions into "
30918 "earlier versions, making this an unreliable way to test for features.  Use "
30919 "L</available> instead."
30920 msgstr ""
30921
30922 # type: =head2
30923 #. type: =head2
30924 #: ../fish/guestfish-actions.pod:4716
30925 msgid "vfs-label"
30926 msgstr ""
30927
30928 # type: verbatim
30929 #. type: verbatim
30930 #: ../fish/guestfish-actions.pod:4718
30931 #, no-wrap
30932 msgid ""
30933 " vfs-label device\n"
30934 "\n"
30935 msgstr ""
30936
30937 # type: textblock
30938 #. type: textblock
30939 #: ../fish/guestfish-actions.pod:4725
30940 msgid "To find a filesystem from the label, use L</findfs-label>."
30941 msgstr ""
30942
30943 # type: =head2
30944 #. type: =head2
30945 #: ../fish/guestfish-actions.pod:4727
30946 msgid "vfs-type"
30947 msgstr ""
30948
30949 # type: verbatim
30950 #. type: verbatim
30951 #: ../fish/guestfish-actions.pod:4729
30952 #, no-wrap
30953 msgid ""
30954 " vfs-type device\n"
30955 "\n"
30956 msgstr ""
30957
30958 # type: =head2
30959 #. type: =head2
30960 #: ../fish/guestfish-actions.pod:4739
30961 msgid "vfs-uuid"
30962 msgstr ""
30963
30964 # type: verbatim
30965 #. type: verbatim
30966 #: ../fish/guestfish-actions.pod:4741
30967 #, no-wrap
30968 msgid ""
30969 " vfs-uuid device\n"
30970 "\n"
30971 msgstr ""
30972
30973 # type: textblock
30974 #. type: textblock
30975 #: ../fish/guestfish-actions.pod:4748
30976 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
30977 msgstr ""
30978
30979 # type: =head2
30980 #. type: =head2
30981 #: ../fish/guestfish-actions.pod:4750
30982 msgid "vg-activate"
30983 msgstr ""
30984
30985 # type: verbatim
30986 #. type: verbatim
30987 #: ../fish/guestfish-actions.pod:4752
30988 #, no-wrap
30989 msgid ""
30990 " vg-activate true|false 'volgroups ...'\n"
30991 "\n"
30992 msgstr ""
30993
30994 # type: =head2
30995 #. type: =head2
30996 #: ../fish/guestfish-actions.pod:4765
30997 msgid "vg-activate-all"
30998 msgstr ""
30999
31000 # type: verbatim
31001 #. type: verbatim
31002 #: ../fish/guestfish-actions.pod:4767
31003 #, no-wrap
31004 msgid ""
31005 " vg-activate-all true|false\n"
31006 "\n"
31007 msgstr ""
31008
31009 # type: =head2
31010 #. type: =head2
31011 #: ../fish/guestfish-actions.pod:4777
31012 msgid "vgcreate"
31013 msgstr ""
31014
31015 # type: verbatim
31016 #. type: verbatim
31017 #: ../fish/guestfish-actions.pod:4779
31018 #, no-wrap
31019 msgid ""
31020 " vgcreate volgroup 'physvols ...'\n"
31021 "\n"
31022 msgstr ""
31023
31024 # type: =head2
31025 #. type: =head2
31026 #: ../fish/guestfish-actions.pod:4784
31027 msgid "vglvuuids"
31028 msgstr ""
31029
31030 # type: verbatim
31031 #. type: verbatim
31032 #: ../fish/guestfish-actions.pod:4786
31033 #, no-wrap
31034 msgid ""
31035 " vglvuuids vgname\n"
31036 "\n"
31037 msgstr ""
31038
31039 # type: textblock
31040 #. type: textblock
31041 #: ../fish/guestfish-actions.pod:4791
31042 msgid ""
31043 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
31044 "logical volumes and volume groups."
31045 msgstr ""
31046
31047 # type: textblock
31048 #. type: textblock
31049 #: ../fish/guestfish-actions.pod:4794
31050 msgid "See also L</vgpvuuids>."
31051 msgstr ""
31052
31053 # type: =head2
31054 #. type: =head2
31055 #: ../fish/guestfish-actions.pod:4796
31056 msgid "vgpvuuids"
31057 msgstr ""
31058
31059 # type: verbatim
31060 #. type: verbatim
31061 #: ../fish/guestfish-actions.pod:4798
31062 #, no-wrap
31063 msgid ""
31064 " vgpvuuids vgname\n"
31065 "\n"
31066 msgstr ""
31067
31068 # type: textblock
31069 #. type: textblock
31070 #: ../fish/guestfish-actions.pod:4803
31071 msgid ""
31072 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
31073 "physical volumes and volume groups."
31074 msgstr ""
31075
31076 # type: textblock
31077 #. type: textblock
31078 #: ../fish/guestfish-actions.pod:4806
31079 msgid "See also L</vglvuuids>."
31080 msgstr ""
31081
31082 # type: =head2
31083 #. type: =head2
31084 #: ../fish/guestfish-actions.pod:4808
31085 msgid "vgremove"
31086 msgstr ""
31087
31088 # type: verbatim
31089 #. type: verbatim
31090 #: ../fish/guestfish-actions.pod:4810
31091 #, no-wrap
31092 msgid ""
31093 " vgremove vgname\n"
31094 "\n"
31095 msgstr ""
31096
31097 # type: =head2
31098 #. type: =head2
31099 #: ../fish/guestfish-actions.pod:4817
31100 msgid "vgrename"
31101 msgstr ""
31102
31103 # type: verbatim
31104 #. type: verbatim
31105 #: ../fish/guestfish-actions.pod:4819
31106 #, no-wrap
31107 msgid ""
31108 " vgrename volgroup newvolgroup\n"
31109 "\n"
31110 msgstr ""
31111
31112 # type: =head2
31113 #. type: =head2
31114 #: ../fish/guestfish-actions.pod:4823
31115 msgid "vgs"
31116 msgstr ""
31117
31118 # type: verbatim
31119 #. type: verbatim
31120 #: ../fish/guestfish-actions.pod:4825
31121 #, no-wrap
31122 msgid ""
31123 " vgs\n"
31124 "\n"
31125 msgstr ""
31126
31127 # type: textblock
31128 #. type: textblock
31129 #: ../fish/guestfish-actions.pod:4833
31130 msgid "See also L</vgs-full>."
31131 msgstr ""
31132
31133 # type: =head2
31134 #. type: =head2
31135 #: ../fish/guestfish-actions.pod:4835
31136 msgid "vgs-full"
31137 msgstr ""
31138
31139 # type: verbatim
31140 #. type: verbatim
31141 #: ../fish/guestfish-actions.pod:4837
31142 #, no-wrap
31143 msgid ""
31144 " vgs-full\n"
31145 "\n"
31146 msgstr ""
31147
31148 # type: =head2
31149 #. type: =head2
31150 #: ../fish/guestfish-actions.pod:4842
31151 msgid "vgscan"
31152 msgstr ""
31153
31154 # type: verbatim
31155 #. type: verbatim
31156 #: ../fish/guestfish-actions.pod:4844
31157 #, no-wrap
31158 msgid ""
31159 " vgscan\n"
31160 "\n"
31161 msgstr ""
31162
31163 # type: =head2
31164 #. type: =head2
31165 #: ../fish/guestfish-actions.pod:4849
31166 msgid "vguuid"
31167 msgstr ""
31168
31169 # type: verbatim
31170 #. type: verbatim
31171 #: ../fish/guestfish-actions.pod:4851
31172 #, no-wrap
31173 msgid ""
31174 " vguuid vgname\n"
31175 "\n"
31176 msgstr ""
31177
31178 # type: =head2
31179 #. type: =head2
31180 #: ../fish/guestfish-actions.pod:4855
31181 msgid "wc-c"
31182 msgstr ""
31183
31184 # type: verbatim
31185 #. type: verbatim
31186 #: ../fish/guestfish-actions.pod:4857
31187 #, no-wrap
31188 msgid ""
31189 " wc-c path\n"
31190 "\n"
31191 msgstr ""
31192
31193 # type: =head2
31194 #. type: =head2
31195 #: ../fish/guestfish-actions.pod:4862
31196 msgid "wc-l"
31197 msgstr ""
31198
31199 # type: verbatim
31200 #. type: verbatim
31201 #: ../fish/guestfish-actions.pod:4864
31202 #, no-wrap
31203 msgid ""
31204 " wc-l path\n"
31205 "\n"
31206 msgstr ""
31207
31208 # type: =head2
31209 #. type: =head2
31210 #: ../fish/guestfish-actions.pod:4869
31211 msgid "wc-w"
31212 msgstr ""
31213
31214 # type: verbatim
31215 #. type: verbatim
31216 #: ../fish/guestfish-actions.pod:4871
31217 #, no-wrap
31218 msgid ""
31219 " wc-w path\n"
31220 "\n"
31221 msgstr ""
31222
31223 # type: =head2
31224 #. type: =head2
31225 #: ../fish/guestfish-actions.pod:4876
31226 msgid "write"
31227 msgstr ""
31228
31229 # type: verbatim
31230 #. type: verbatim
31231 #: ../fish/guestfish-actions.pod:4878
31232 #, no-wrap
31233 msgid ""
31234 " write path content\n"
31235 "\n"
31236 msgstr ""
31237
31238 # type: =head2
31239 #. type: =head2
31240 #: ../fish/guestfish-actions.pod:4886
31241 msgid "write-file"
31242 msgstr ""
31243
31244 # type: verbatim
31245 #. type: verbatim
31246 #: ../fish/guestfish-actions.pod:4888
31247 #, no-wrap
31248 msgid ""
31249 " write-file path content size\n"
31250 "\n"
31251 msgstr ""
31252
31253 #. type: textblock
31254 #: ../fish/guestfish-actions.pod:4904
31255 msgid ""
31256 "This function is deprecated.  In new code, use the L</write> call instead."
31257 msgstr ""
31258
31259 # type: =head2
31260 #. type: =head2
31261 #: ../fish/guestfish-actions.pod:4911
31262 msgid "zegrep"
31263 msgstr ""
31264
31265 # type: verbatim
31266 #. type: verbatim
31267 #: ../fish/guestfish-actions.pod:4913
31268 #, no-wrap
31269 msgid ""
31270 " zegrep regex path\n"
31271 "\n"
31272 msgstr ""
31273
31274 # type: =head2
31275 #. type: =head2
31276 #: ../fish/guestfish-actions.pod:4921
31277 msgid "zegrepi"
31278 msgstr ""
31279
31280 # type: verbatim
31281 #. type: verbatim
31282 #: ../fish/guestfish-actions.pod:4923
31283 #, no-wrap
31284 msgid ""
31285 " zegrepi regex path\n"
31286 "\n"
31287 msgstr ""
31288
31289 # type: =head2
31290 #. type: =head2
31291 #: ../fish/guestfish-actions.pod:4931
31292 msgid "zero"
31293 msgstr ""
31294
31295 # type: verbatim
31296 #. type: verbatim
31297 #: ../fish/guestfish-actions.pod:4933
31298 #, no-wrap
31299 msgid ""
31300 " zero device\n"
31301 "\n"
31302 msgstr ""
31303
31304 # type: textblock
31305 #. type: textblock
31306 #: ../fish/guestfish-actions.pod:4941
31307 msgid "See also: L</zero-device>, L</scrub-device>."
31308 msgstr ""
31309
31310 # type: =head2
31311 #. type: =head2
31312 #: ../fish/guestfish-actions.pod:4943
31313 msgid "zero-device"
31314 msgstr ""
31315
31316 # type: verbatim
31317 #. type: verbatim
31318 #: ../fish/guestfish-actions.pod:4945
31319 #, no-wrap
31320 msgid ""
31321 " zero-device device\n"
31322 "\n"
31323 msgstr ""
31324
31325 # type: textblock
31326 #. type: textblock
31327 #: ../fish/guestfish-actions.pod:4947
31328 msgid ""
31329 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
31330 "which just zeroes the first few blocks of a device."
31331 msgstr ""
31332
31333 # type: =head2
31334 #. type: =head2
31335 #: ../fish/guestfish-actions.pod:4954
31336 msgid "zerofree"
31337 msgstr ""
31338
31339 # type: verbatim
31340 #. type: verbatim
31341 #: ../fish/guestfish-actions.pod:4956
31342 #, no-wrap
31343 msgid ""
31344 " zerofree device\n"
31345 "\n"
31346 msgstr ""
31347
31348 # type: =head2
31349 #. type: =head2
31350 #: ../fish/guestfish-actions.pod:4969
31351 msgid "zfgrep"
31352 msgstr ""
31353
31354 # type: verbatim
31355 #. type: verbatim
31356 #: ../fish/guestfish-actions.pod:4971
31357 #, no-wrap
31358 msgid ""
31359 " zfgrep pattern path\n"
31360 "\n"
31361 msgstr ""
31362
31363 # type: =head2
31364 #. type: =head2
31365 #: ../fish/guestfish-actions.pod:4979
31366 msgid "zfgrepi"
31367 msgstr ""
31368
31369 # type: verbatim
31370 #. type: verbatim
31371 #: ../fish/guestfish-actions.pod:4981
31372 #, no-wrap
31373 msgid ""
31374 " zfgrepi pattern path\n"
31375 "\n"
31376 msgstr ""
31377
31378 # type: =head2
31379 #. type: =head2
31380 #: ../fish/guestfish-actions.pod:4989
31381 msgid "zfile"
31382 msgstr ""
31383
31384 # type: verbatim
31385 #. type: verbatim
31386 #: ../fish/guestfish-actions.pod:4991
31387 #, no-wrap
31388 msgid ""
31389 " zfile meth path\n"
31390 "\n"
31391 msgstr ""
31392
31393 # type: textblock
31394 #. type: textblock
31395 #: ../fish/guestfish-actions.pod:4998
31396 msgid ""
31397 "Since 1.0.63, use L</file> instead which can now process compressed files."
31398 msgstr ""
31399
31400 #. type: textblock
31401 #: ../fish/guestfish-actions.pod:5001
31402 msgid ""
31403 "This function is deprecated.  In new code, use the L</file> call instead."
31404 msgstr ""
31405
31406 # type: =head2
31407 #. type: =head2
31408 #: ../fish/guestfish-actions.pod:5008
31409 msgid "zgrep"
31410 msgstr ""
31411
31412 # type: verbatim
31413 #. type: verbatim
31414 #: ../fish/guestfish-actions.pod:5010
31415 #, no-wrap
31416 msgid ""
31417 " zgrep regex path\n"
31418 "\n"
31419 msgstr ""
31420
31421 # type: =head2
31422 #. type: =head2
31423 #: ../fish/guestfish-actions.pod:5018
31424 msgid "zgrepi"
31425 msgstr ""
31426
31427 # type: verbatim
31428 #. type: verbatim
31429 #: ../fish/guestfish-actions.pod:5020
31430 #, no-wrap
31431 msgid ""
31432 " zgrepi regex path\n"
31433 "\n"
31434 msgstr ""
31435
31436 # type: =head2
31437 #. type: =head2
31438 #: ../fish/guestfish-commands.pod:1
31439 msgid "alloc"
31440 msgstr ""
31441
31442 # type: =head2
31443 #. type: =head2
31444 #: ../fish/guestfish-commands.pod:3
31445 msgid "allocate"
31446 msgstr ""
31447
31448 # type: verbatim
31449 #. type: verbatim
31450 #: ../fish/guestfish-commands.pod:5
31451 #, no-wrap
31452 msgid ""
31453 " alloc filename size\n"
31454 "\n"
31455 msgstr ""
31456
31457 # type: textblock
31458 #. type: textblock
31459 #: ../fish/guestfish-commands.pod:7
31460 msgid ""
31461 "This creates an empty (zeroed) file of the given size, and then adds so it "
31462 "can be further examined."
31463 msgstr ""
31464
31465 # type: textblock
31466 #. type: textblock
31467 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
31468 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
31469 msgstr ""
31470
31471 # type: textblock
31472 #. type: textblock
31473 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
31474 msgid "Size can be specified using standard suffixes, eg. C<1M>."
31475 msgstr ""
31476
31477 # type: textblock
31478 #. type: textblock
31479 #: ../fish/guestfish-commands.pod:14
31480 msgid ""
31481 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
31482 "image, see L</PREPARED DISK IMAGES>."
31483 msgstr ""
31484
31485 # type: =head2
31486 #. type: =head2
31487 #: ../fish/guestfish-commands.pod:17
31488 msgid "copy-in"
31489 msgstr ""
31490
31491 # type: verbatim
31492 #. type: verbatim
31493 #: ../fish/guestfish-commands.pod:19
31494 #, no-wrap
31495 msgid ""
31496 " copy-in local [local ...] /remotedir\n"
31497 "\n"
31498 msgstr ""
31499
31500 # type: textblock
31501 #. type: textblock
31502 #: ../fish/guestfish-commands.pod:21
31503 msgid ""
31504 "C<copy-in> copies local files or directories recursively into the disk "
31505 "image, placing them in the directory called C</remotedir> (which must "
31506 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
31507 "other commands as necessary."
31508 msgstr ""
31509
31510 # type: textblock
31511 #. type: textblock
31512 #: ../fish/guestfish-commands.pod:26
31513 msgid ""
31514 "Multiple local files and directories can be specified, but the last "
31515 "parameter must always be a remote directory.  Wildcards cannot be used."
31516 msgstr ""
31517
31518 # type: =head2
31519 #. type: =head2
31520 #: ../fish/guestfish-commands.pod:30
31521 msgid "copy-out"
31522 msgstr ""
31523
31524 # type: verbatim
31525 #. type: verbatim
31526 #: ../fish/guestfish-commands.pod:32
31527 #, no-wrap
31528 msgid ""
31529 " copy-out remote [remote ...] localdir\n"
31530 "\n"
31531 msgstr ""
31532
31533 # type: textblock
31534 #. type: textblock
31535 #: ../fish/guestfish-commands.pod:34
31536 msgid ""
31537 "C<copy-out> copies remote files or directories recursively out of the disk "
31538 "image, placing them on the host disk in a local directory called C<localdir> "
31539 "(which must exist).  This guestfish meta-command turns into a sequence of L</"
31540 "download>, L</tar-out> and other commands as necessary."
31541 msgstr ""
31542
31543 # type: textblock
31544 #. type: textblock
31545 #: ../fish/guestfish-commands.pod:40
31546 msgid ""
31547 "Multiple remote files and directories can be specified, but the last "
31548 "parameter must always be a local directory.  To download to the current "
31549 "directory, use C<.> as in:"
31550 msgstr ""
31551
31552 # type: verbatim
31553 #. type: verbatim
31554 #: ../fish/guestfish-commands.pod:44
31555 #, no-wrap
31556 msgid ""
31557 " copy-out /home .\n"
31558 "\n"
31559 msgstr ""
31560
31561 # type: textblock
31562 #. type: textblock
31563 #: ../fish/guestfish-commands.pod:46
31564 msgid ""
31565 "Wildcards cannot be used in the ordinary command, but you can use them with "
31566 "the help of L</glob> like this:"
31567 msgstr ""
31568
31569 # type: verbatim
31570 #. type: verbatim
31571 #: ../fish/guestfish-commands.pod:49
31572 #, no-wrap
31573 msgid ""
31574 " glob copy-out /home/* .\n"
31575 "\n"
31576 msgstr ""
31577
31578 # type: =head2
31579 #. type: =head2
31580 #: ../fish/guestfish-commands.pod:51
31581 msgid "echo"
31582 msgstr ""
31583
31584 # type: verbatim
31585 #. type: verbatim
31586 #: ../fish/guestfish-commands.pod:53
31587 #, no-wrap
31588 msgid ""
31589 " echo [params ...]\n"
31590 "\n"
31591 msgstr ""
31592
31593 # type: textblock
31594 #. type: textblock
31595 #: ../fish/guestfish-commands.pod:55
31596 msgid "This echos the parameters to the terminal."
31597 msgstr ""
31598
31599 # type: =head2
31600 #. type: =head2
31601 #: ../fish/guestfish-commands.pod:57
31602 msgid "edit"
31603 msgstr ""
31604
31605 # type: =head2
31606 #. type: =head2
31607 #: ../fish/guestfish-commands.pod:59
31608 msgid "vi"
31609 msgstr ""
31610
31611 # type: =head2
31612 #. type: =head2
31613 #: ../fish/guestfish-commands.pod:61
31614 msgid "emacs"
31615 msgstr ""
31616
31617 # type: verbatim
31618 #. type: verbatim
31619 #: ../fish/guestfish-commands.pod:63
31620 #, no-wrap
31621 msgid ""
31622 " edit filename\n"
31623 "\n"
31624 msgstr ""
31625
31626 # type: textblock
31627 #. type: textblock
31628 #: ../fish/guestfish-commands.pod:65
31629 msgid ""
31630 "This is used to edit a file.  It downloads the file, edits it locally using "
31631 "your editor, then uploads the result."
31632 msgstr ""
31633
31634 # type: textblock
31635 #. type: textblock
31636 #: ../fish/guestfish-commands.pod:68
31637 msgid ""
31638 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
31639 "or C<emacs> you will get those corresponding editors."
31640 msgstr ""
31641
31642 # type: =head2
31643 #. type: =head2
31644 #: ../fish/guestfish-commands.pod:72
31645 msgid "glob"
31646 msgstr ""
31647
31648 # type: verbatim
31649 #. type: verbatim
31650 #: ../fish/guestfish-commands.pod:74
31651 #, no-wrap
31652 msgid ""
31653 " glob command args...\n"
31654 "\n"
31655 msgstr ""
31656
31657 # type: textblock
31658 #. type: textblock
31659 #: ../fish/guestfish-commands.pod:76
31660 msgid ""
31661 "Expand wildcards in any paths in the args list, and run C<command> "
31662 "repeatedly on each matching path."
31663 msgstr ""
31664
31665 # type: textblock
31666 #. type: textblock
31667 #: ../fish/guestfish-commands.pod:79
31668 msgid "See L</WILDCARDS AND GLOBBING>."
31669 msgstr ""
31670
31671 # type: =head2
31672 #. type: =head2
31673 #: ../fish/guestfish-commands.pod:81
31674 msgid "hexedit"
31675 msgstr ""
31676
31677 # type: verbatim
31678 #. type: verbatim
31679 #: ../fish/guestfish-commands.pod:83
31680 #, no-wrap
31681 msgid ""
31682 " hexedit <filename|device>\n"
31683 " hexedit <filename|device> <max>\n"
31684 " hexedit <filename|device> <start> <max>\n"
31685 "\n"
31686 msgstr ""
31687
31688 # type: textblock
31689 #. type: textblock
31690 #: ../fish/guestfish-commands.pod:87
31691 msgid ""
31692 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
31693 "device."
31694 msgstr ""
31695
31696 # type: textblock
31697 #. type: textblock
31698 #: ../fish/guestfish-commands.pod:90
31699 msgid ""
31700 "This command works by downloading potentially the whole file or device, "
31701 "editing it locally, then uploading it.  If the file or device is large, you "
31702 "have to specify which part you wish to edit by using C<max> and/or C<start> "
31703 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
31704 "usual modifiers allowed such as C<1M> (1 megabyte)."
31705 msgstr ""
31706
31707 # type: textblock
31708 #. type: textblock
31709 #: ../fish/guestfish-commands.pod:97
31710 msgid "For example to edit the first few sectors of a disk you might do:"
31711 msgstr ""
31712
31713 # type: verbatim
31714 #. type: verbatim
31715 #: ../fish/guestfish-commands.pod:100
31716 #, no-wrap
31717 msgid ""
31718 " hexedit /dev/sda 1M\n"
31719 "\n"
31720 msgstr ""
31721
31722 # type: textblock
31723 #. type: textblock
31724 #: ../fish/guestfish-commands.pod:102
31725 msgid ""
31726 "which would allow you to edit anywhere within the first megabyte of the disk."
31727 msgstr ""
31728
31729 # type: textblock
31730 #. type: textblock
31731 #: ../fish/guestfish-commands.pod:105
31732 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
31733 msgstr ""
31734
31735 # type: verbatim
31736 #. type: verbatim
31737 #: ../fish/guestfish-commands.pod:107
31738 #, no-wrap
31739 msgid ""
31740 " hexedit /dev/sda1 0x400 0x400\n"
31741 "\n"
31742 msgstr ""
31743
31744 # type: textblock
31745 #. type: textblock
31746 #: ../fish/guestfish-commands.pod:109
31747 msgid "(assuming the superblock is in the standard location)."
31748 msgstr ""
31749
31750 # type: textblock
31751 #. type: textblock
31752 #: ../fish/guestfish-commands.pod:111
31753 msgid ""
31754 "This command requires the external L<hexedit(1)> program.  You can specify "
31755 "another program to use by setting the C<HEXEDITOR> environment variable."
31756 msgstr ""
31757
31758 # type: textblock
31759 #. type: textblock
31760 #: ../fish/guestfish-commands.pod:115
31761 msgid "See also L</hexdump>."
31762 msgstr ""
31763
31764 # type: =head2
31765 #. type: =head2
31766 #: ../fish/guestfish-commands.pod:117
31767 msgid "lcd"
31768 msgstr ""
31769
31770 # type: verbatim
31771 #. type: verbatim
31772 #: ../fish/guestfish-commands.pod:119
31773 #, no-wrap
31774 msgid ""
31775 " lcd directory\n"
31776 "\n"
31777 msgstr ""
31778
31779 # type: textblock
31780 #. type: textblock
31781 #: ../fish/guestfish-commands.pod:121
31782 msgid ""
31783 "Change the local directory, ie. the current directory of guestfish itself."
31784 msgstr ""
31785
31786 # type: textblock
31787 #. type: textblock
31788 #: ../fish/guestfish-commands.pod:124
31789 msgid "Note that C<!cd> won't do what you might expect."
31790 msgstr ""
31791
31792 # type: =head2
31793 #. type: =head2
31794 #: ../fish/guestfish-commands.pod:126
31795 msgid "man"
31796 msgstr ""
31797
31798 # type: =head2
31799 #. type: =head2
31800 #: ../fish/guestfish-commands.pod:128
31801 msgid "manual"
31802 msgstr ""
31803
31804 # type: verbatim
31805 #. type: verbatim
31806 #: ../fish/guestfish-commands.pod:130
31807 #, no-wrap
31808 msgid ""
31809 "  man\n"
31810 "\n"
31811 msgstr ""
31812
31813 # type: textblock
31814 #. type: textblock
31815 #: ../fish/guestfish-commands.pod:132
31816 msgid "Opens the manual page for guestfish."
31817 msgstr ""
31818
31819 # type: =head2
31820 #. type: =head2
31821 #: ../fish/guestfish-commands.pod:134
31822 msgid "more"
31823 msgstr ""
31824
31825 # type: =head2
31826 #. type: =head2
31827 #: ../fish/guestfish-commands.pod:136
31828 msgid "less"
31829 msgstr ""
31830
31831 # type: verbatim
31832 #. type: verbatim
31833 #: ../fish/guestfish-commands.pod:138
31834 #, no-wrap
31835 msgid ""
31836 " more filename\n"
31837 "\n"
31838 msgstr ""
31839
31840 # type: verbatim
31841 #. type: verbatim
31842 #: ../fish/guestfish-commands.pod:140
31843 #, no-wrap
31844 msgid ""
31845 " less filename\n"
31846 "\n"
31847 msgstr ""
31848
31849 # type: textblock
31850 #. type: textblock
31851 #: ../fish/guestfish-commands.pod:142
31852 msgid "This is used to view a file."
31853 msgstr ""
31854
31855 # type: textblock
31856 #. type: textblock
31857 #: ../fish/guestfish-commands.pod:144
31858 msgid ""
31859 "The default viewer is C<$PAGER>.  However if you use the alternate command "
31860 "C<less> you will get the C<less> command specifically."
31861 msgstr ""
31862
31863 # type: =head2
31864 #. type: =head2
31865 #: ../fish/guestfish-commands.pod:147
31866 msgid "reopen"
31867 msgstr ""
31868
31869 # type: verbatim
31870 #. type: verbatim
31871 #: ../fish/guestfish-commands.pod:149
31872 #, no-wrap
31873 msgid ""
31874 "  reopen\n"
31875 "\n"
31876 msgstr ""
31877
31878 # type: textblock
31879 #. type: textblock
31880 #: ../fish/guestfish-commands.pod:151
31881 msgid ""
31882 "Close and reopen the libguestfs handle.  It is not necessary to use this "
31883 "normally, because the handle is closed properly when guestfish exits.  "
31884 "However this is occasionally useful for testing."
31885 msgstr ""
31886
31887 # type: =head2
31888 #. type: =head2
31889 #: ../fish/guestfish-commands.pod:155
31890 msgid "sparse"
31891 msgstr ""
31892
31893 # type: verbatim
31894 #. type: verbatim
31895 #: ../fish/guestfish-commands.pod:157
31896 #, no-wrap
31897 msgid ""
31898 " sparse filename size\n"
31899 "\n"
31900 msgstr ""
31901
31902 # type: textblock
31903 #. type: textblock
31904 #: ../fish/guestfish-commands.pod:159
31905 msgid ""
31906 "This creates an empty sparse file of the given size, and then adds so it can "
31907 "be further examined."
31908 msgstr ""
31909
31910 # type: textblock
31911 #. type: textblock
31912 #: ../fish/guestfish-commands.pod:162
31913 msgid ""
31914 "In all respects it works the same as the L</alloc> command, except that the "
31915 "image file is allocated sparsely, which means that disk blocks are not "
31916 "assigned to the file until they are needed.  Sparse disk files only use "
31917 "space when written to, but they are slower and there is a danger you could "
31918 "run out of real disk space during a write operation."
31919 msgstr ""
31920
31921 # type: =head2
31922 #. type: =head2
31923 #: ../fish/guestfish-commands.pod:172
31924 msgid "supported"
31925 msgstr ""
31926
31927 # type: verbatim
31928 #. type: verbatim
31929 #: ../fish/guestfish-commands.pod:174
31930 #, no-wrap
31931 msgid ""
31932 " supported\n"
31933 "\n"
31934 msgstr ""
31935
31936 # type: textblock
31937 #. type: textblock
31938 #: ../fish/guestfish-commands.pod:176
31939 msgid ""
31940 "This command returns a list of the optional groups known to the daemon, and "
31941 "indicates which ones are supported by this build of the libguestfs appliance."
31942 msgstr ""
31943
31944 # type: textblock
31945 #. type: textblock
31946 #: ../fish/guestfish-commands.pod:180
31947 msgid "See also L<guestfs(3)/AVAILABILITY>."
31948 msgstr ""
31949
31950 # type: =head2
31951 #. type: =head2
31952 #: ../fish/guestfish-commands.pod:182
31953 msgid "time"
31954 msgstr ""
31955
31956 # type: verbatim
31957 #. type: verbatim
31958 #: ../fish/guestfish-commands.pod:184
31959 #, no-wrap
31960 msgid ""
31961 " time command args...\n"
31962 "\n"
31963 msgstr ""
31964
31965 # type: textblock
31966 #. type: textblock
31967 #: ../fish/guestfish-commands.pod:186
31968 msgid ""
31969 "Run the command as usual, but print the elapsed time afterwards.  This can "
31970 "be useful for benchmarking operations."
31971 msgstr ""
31972
31973 # type: textblock
31974 #. type: textblock
31975 #: ../test-tool/libguestfs-test-tool.pod:5
31976 msgid "libguestfs-test-tool - End user tests for libguestfs"
31977 msgstr ""
31978
31979 # type: verbatim
31980 #. type: verbatim
31981 #: ../test-tool/libguestfs-test-tool.pod:9
31982 #, no-wrap
31983 msgid ""
31984 " libguestfs-test-tool [--options]\n"
31985 "\n"
31986 msgstr ""
31987
31988 # type: textblock
31989 #. type: textblock
31990 #: ../test-tool/libguestfs-test-tool.pod:13
31991 msgid ""
31992 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
31993 "and developers, to allow them to check basic libguestfs functionality is "
31994 "working.  This is needed because libguestfs occasionally breaks for reasons "
31995 "beyond our control: usually because of changes in the underlying qemu or "
31996 "kernel packages, or the host environment."
31997 msgstr ""
31998
31999 # type: textblock
32000 #. type: textblock
32001 #: ../test-tool/libguestfs-test-tool.pod:20
32002 msgid "If you suspect a problem in libguestfs, then just run:"
32003 msgstr ""
32004
32005 # type: verbatim
32006 #. type: verbatim
32007 #: ../test-tool/libguestfs-test-tool.pod:22
32008 #, no-wrap
32009 msgid ""
32010 " libguestfs-test-tool\n"
32011 "\n"
32012 msgstr ""
32013
32014 # type: textblock
32015 #. type: textblock
32016 #: ../test-tool/libguestfs-test-tool.pod:24
32017 msgid "It will print lots of diagnostic messages."
32018 msgstr ""
32019
32020 # type: textblock
32021 #. type: textblock
32022 #: ../test-tool/libguestfs-test-tool.pod:26
32023 msgid "If it runs to completion successfully, you will see this near the end:"
32024 msgstr ""
32025
32026 # type: verbatim
32027 #. type: verbatim
32028 #: ../test-tool/libguestfs-test-tool.pod:28
32029 #, no-wrap
32030 msgid ""
32031 " ===== TEST FINISHED OK =====\n"
32032 "\n"
32033 msgstr ""
32034
32035 # type: textblock
32036 #. type: textblock
32037 #: ../test-tool/libguestfs-test-tool.pod:30
32038 msgid "and the test tool will exit with code 0."
32039 msgstr ""
32040
32041 # type: textblock
32042 #. type: textblock
32043 #: ../test-tool/libguestfs-test-tool.pod:32
32044 msgid ""
32045 "If it fails (and/or exits with non-zero error code), please paste the "
32046 "B<complete, unedited> output of the test tool into a bug report.  More "
32047 "information about reporting bugs can be found on the L<http://libguestfs.org/"
32048 "> website."
32049 msgstr ""
32050
32051 # type: =item
32052 #. type: =item
32053 #: ../test-tool/libguestfs-test-tool.pod:41
32054 msgid "I<--help>"
32055 msgstr ""
32056
32057 # type: textblock
32058 #. type: textblock
32059 #: ../test-tool/libguestfs-test-tool.pod:43
32060 msgid "Display short usage information and exit."
32061 msgstr ""
32062
32063 # type: =item
32064 #. type: =item
32065 #: ../test-tool/libguestfs-test-tool.pod:45
32066 msgid "I<--qemu qemu_binary>"
32067 msgstr ""
32068
32069 # type: textblock
32070 #. type: textblock
32071 #: ../test-tool/libguestfs-test-tool.pod:47
32072 msgid ""
32073 "If you have downloaded another qemu binary, point this option at the full "
32074 "path of the binary to try it."
32075 msgstr ""
32076
32077 # type: =item
32078 #. type: =item
32079 #: ../test-tool/libguestfs-test-tool.pod:50
32080 msgid "I<--qemudir qemu_source_dir>"
32081 msgstr ""
32082
32083 # type: textblock
32084 #. type: textblock
32085 #: ../test-tool/libguestfs-test-tool.pod:52
32086 msgid ""
32087 "If you have compiled qemu from source, point this option at the source "
32088 "directory to try it."
32089 msgstr ""
32090
32091 # type: =item
32092 #. type: =item
32093 #: ../test-tool/libguestfs-test-tool.pod:55
32094 msgid "I<--timeout N>"
32095 msgstr ""
32096
32097 # type: textblock
32098 #. type: textblock
32099 #: ../test-tool/libguestfs-test-tool.pod:57
32100 msgid ""
32101 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
32102 "does not usually need to be adjusted unless your machine is very slow."
32103 msgstr ""
32104
32105 # type: =head1
32106 #. type: =head1
32107 #: ../test-tool/libguestfs-test-tool.pod:63
32108 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
32109 msgstr ""
32110
32111 # type: textblock
32112 #. type: textblock
32113 #: ../test-tool/libguestfs-test-tool.pod:65
32114 msgid ""
32115 "If you have compiled another version of qemu from source and would like to "
32116 "try that, then you can use the I<--qemudir> option to point to the qemu "
32117 "source directory."
32118 msgstr ""
32119
32120 # type: textblock
32121 #. type: textblock
32122 #: ../test-tool/libguestfs-test-tool.pod:69
32123 msgid ""
32124 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
32125 "option to point to the binary."
32126 msgstr ""
32127
32128 # type: textblock
32129 #. type: textblock
32130 #: ../test-tool/libguestfs-test-tool.pod:72
32131 msgid ""
32132 "When using an alternate qemu with libguestfs, usually you would need to "
32133 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)"
32134 ">).  libguestfs-test-tool writes a temporary qemu wrapper script when you "
32135 "use either of the I<--qemudir> or I<--qemu> options."
32136 msgstr ""
32137
32138 # type: textblock
32139 #. type: textblock
32140 #: ../test-tool/libguestfs-test-tool.pod:79
32141 msgid ""
32142 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
32143 "I<1> if there was an error."
32144 msgstr ""
32145
32146 # type: textblock
32147 #. type: textblock
32148 #: ../test-tool/libguestfs-test-tool.pod:84
32149 msgid ""
32150 "For the full list of environment variables which may affect libguestfs, "
32151 "please see the L<guestfs(3)> manual page."
32152 msgstr ""
32153
32154 # type: textblock
32155 #. type: textblock
32156 #: ../test-tool/libguestfs-test-tool.pod:89
32157 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
32158 msgstr ""
32159
32160 # type: textblock
32161 #. type: textblock
32162 #: ../fuse/guestmount.pod:5
32163 msgid ""
32164 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
32165 msgstr ""
32166
32167 # type: verbatim
32168 #. type: verbatim
32169 #: ../fuse/guestmount.pod:9
32170 #, no-wrap
32171 msgid ""
32172 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
32173 "\n"
32174 msgstr ""
32175
32176 # type: verbatim
32177 #. type: verbatim
32178 #: ../fuse/guestmount.pod:11
32179 #, no-wrap
32180 msgid ""
32181 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
32182 "\n"
32183 msgstr ""
32184
32185 # type: verbatim
32186 #. type: verbatim
32187 #: ../fuse/guestmount.pod:13
32188 #, no-wrap
32189 msgid ""
32190 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
32191 "\n"
32192 msgstr ""
32193
32194 # type: textblock
32195 #. type: textblock
32196 #: ../fuse/guestmount.pod:17
32197 msgid ""
32198 "You must I<not> use C<guestmount> in read-write mode on live virtual "
32199 "machines.  If you do this, you risk disk corruption in the VM."
32200 msgstr ""
32201
32202 # type: textblock
32203 #. type: textblock
32204 #: ../fuse/guestmount.pod:22
32205 msgid ""
32206 "The guestmount program can be used to mount virtual machine filesystems and "
32207 "other disk images on the host.  It uses libguestfs for access to the guest "
32208 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
32209 "a mountable device."
32210 msgstr ""
32211
32212 # type: textblock
32213 #. type: textblock
32214 #: ../fuse/guestmount.pod:27
32215 msgid ""
32216 "Along with other options, you have to give at least one device (I<-a> "
32217 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
32218 "option) or use the I<-i> inspection option.  How this works is better "
32219 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
32220 "below."
32221 msgstr ""
32222
32223 # type: textblock
32224 #. type: textblock
32225 #: ../fuse/guestmount.pod:33
32226 msgid ""
32227 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
32228 "by you, and the filesystem will not be visible to any other users unless you "
32229 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
32230 "the filesystem, use the C<fusermount -u> command."
32231 msgstr ""
32232
32233 # type: textblock
32234 #. type: textblock
32235 #: ../fuse/guestmount.pod:41
32236 msgid ""
32237 "For a typical Windows guest which has its main filesystem on the first "
32238 "partition:"
32239 msgstr ""
32240
32241 # type: verbatim
32242 #. type: verbatim
32243 #: ../fuse/guestmount.pod:44
32244 #, no-wrap
32245 msgid ""
32246 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
32247 "\n"
32248 msgstr ""
32249
32250 # type: textblock
32251 #. type: textblock
32252 #: ../fuse/guestmount.pod:46
32253 msgid ""
32254 "For a typical Linux guest which has a /boot filesystem on the first "
32255 "partition, and the root filesystem on a logical volume:"
32256 msgstr ""
32257
32258 # type: verbatim
32259 #. type: verbatim
32260 #: ../fuse/guestmount.pod:49
32261 #, no-wrap
32262 msgid ""
32263 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
32264 "\n"
32265 msgstr ""
32266
32267 # type: textblock
32268 #. type: textblock
32269 #: ../fuse/guestmount.pod:51
32270 msgid "To get libguestfs to detect guest mountpoints for you:"
32271 msgstr ""
32272
32273 # type: verbatim
32274 #. type: verbatim
32275 #: ../fuse/guestmount.pod:53
32276 #, no-wrap
32277 msgid ""
32278 " guestmount -a guest.img -i --ro /mnt\n"
32279 "\n"
32280 msgstr ""
32281
32282 # type: textblock
32283 #. type: textblock
32284 #: ../fuse/guestmount.pod:55
32285 msgid "For a libvirt guest called \"Guest\" you could do:"
32286 msgstr ""
32287
32288 # type: verbatim
32289 #. type: verbatim
32290 #: ../fuse/guestmount.pod:57
32291 #, no-wrap
32292 msgid ""
32293 " guestmount -d Guest -i --ro /mnt\n"
32294 "\n"
32295 msgstr ""
32296
32297 # type: textblock
32298 #. type: textblock
32299 #: ../fuse/guestmount.pod:59
32300 msgid ""
32301 "If you don't know what filesystems are contained in a guest or disk image, "
32302 "use L<virt-filesystems(1)> first:"
32303 msgstr ""
32304
32305 # type: verbatim
32306 #. type: verbatim
32307 #: ../fuse/guestmount.pod:62
32308 #, no-wrap
32309 msgid ""
32310 " virt-filesystems MyGuest\n"
32311 "\n"
32312 msgstr ""
32313
32314 # type: textblock
32315 #. type: textblock
32316 #: ../fuse/guestmount.pod:64
32317 msgid ""
32318 "If you want to trace the libguestfs calls but without excessive debugging "
32319 "information, we recommend:"
32320 msgstr ""
32321
32322 # type: verbatim
32323 #. type: verbatim
32324 #: ../fuse/guestmount.pod:67
32325 #, no-wrap
32326 msgid ""
32327 " guestmount [...] --trace /mnt\n"
32328 "\n"
32329 msgstr ""
32330
32331 # type: textblock
32332 #. type: textblock
32333 #: ../fuse/guestmount.pod:69
32334 msgid "If you want to debug the program, we recommend:"
32335 msgstr ""
32336
32337 # type: verbatim
32338 #. type: verbatim
32339 #: ../fuse/guestmount.pod:71
32340 #, no-wrap
32341 msgid ""
32342 " guestmount [...] --trace --verbose /mnt\n"
32343 "\n"
32344 msgstr ""
32345
32346 #. type: =head1
32347 #: ../fuse/guestmount.pod:73
32348 msgid "NOTES"
32349 msgstr ""
32350
32351 #. type: =head2
32352 #: ../fuse/guestmount.pod:75
32353 msgid "Other users cannot see the filesystem by default"
32354 msgstr ""
32355
32356 #. type: textblock
32357 #: ../fuse/guestmount.pod:77
32358 msgid ""
32359 "If you mount a filesystem as one user (eg. root), then other users will not "
32360 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
32361 "option when mounting:"
32362 msgstr ""
32363
32364 #. type: verbatim
32365 #: ../fuse/guestmount.pod:81
32366 #, no-wrap
32367 msgid ""
32368 " sudo guestmount [...] -o allow_other /mnt\n"
32369 "\n"
32370 msgstr ""
32371
32372 # type: =item
32373 #. type: =item
32374 #: ../fuse/guestmount.pod:87
32375 msgid "B<-a image> | B<--add image>"
32376 msgstr ""
32377
32378 # type: textblock
32379 #. type: textblock
32380 #: ../fuse/guestmount.pod:89
32381 msgid "Add a block device or virtual machine image."
32382 msgstr ""
32383
32384 # type: =item
32385 #. type: =item
32386 #: ../fuse/guestmount.pod:94
32387 msgid "B<-c URI> | B<--connect URI>"
32388 msgstr ""
32389
32390 # type: =item
32391 #. type: =item
32392 #: ../fuse/guestmount.pod:100
32393 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
32394 msgstr ""
32395
32396 # type: =item
32397 #. type: =item
32398 #: ../fuse/guestmount.pod:106
32399 msgid "B<--dir-cache-timeout N>"
32400 msgstr ""
32401
32402 # type: textblock
32403 #. type: textblock
32404 #: ../fuse/guestmount.pod:108
32405 msgid ""
32406 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
32407 "seconds.  The readdir cache [actually, there are several semi-independent "
32408 "caches] is populated after a readdir(2) call with the stat and extended "
32409 "attributes of the files in the directory, in anticipation that they will be "
32410 "requested soon after."
32411 msgstr ""
32412
32413 # type: textblock
32414 #. type: textblock
32415 #: ../fuse/guestmount.pod:114
32416 msgid ""
32417 "There is also a different attribute cache implemented by FUSE (see the FUSE "
32418 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
32419 "requests, only cache existing ones."
32420 msgstr ""
32421
32422 # type: =item
32423 #. type: =item
32424 #: ../fuse/guestmount.pod:125
32425 msgid "B<--format=raw|qcow2|..> | B<--format>"
32426 msgstr ""
32427
32428 # type: textblock
32429 #. type: textblock
32430 #: ../fuse/guestmount.pod:132
32431 msgid ""
32432 "If you have untrusted raw-format guest disk images, you should use this "
32433 "option to specify the disk format.  This avoids a possible security problem "
32434 "with malicious guests (CVE-2010-3851).  See also L<guestfs(3)/"
32435 "guestfs_add_drive_opts>."
32436 msgstr ""
32437
32438 # type: =item
32439 #. type: =item
32440 #: ../fuse/guestmount.pod:137
32441 msgid "B<--fuse-help>"
32442 msgstr ""
32443
32444 # type: textblock
32445 #. type: textblock
32446 #: ../fuse/guestmount.pod:139
32447 msgid "Display help on special FUSE options (see I<-o> below)."
32448 msgstr ""
32449
32450 # type: textblock
32451 #. type: textblock
32452 #: ../fuse/guestmount.pod:143
32453 msgid "Display brief help and exit."
32454 msgstr ""
32455
32456 # type: =item
32457 #. type: =item
32458 #: ../fuse/guestmount.pod:145
32459 msgid "B<-i> | B<--inspector>"
32460 msgstr ""
32461
32462 # type: textblock
32463 #. type: textblock
32464 #: ../fuse/guestmount.pod:165
32465 msgid ""
32466 "Mount the named partition or logical volume on the given mountpoint B<in the "
32467 "guest> (this has nothing to do with mountpoints in the host)."
32468 msgstr ""
32469
32470 # type: textblock
32471 #. type: textblock
32472 #: ../fuse/guestmount.pod:168
32473 msgid ""
32474 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
32475 "something on C</>."
32476 msgstr ""
32477
32478 # type: =item
32479 #. type: =item
32480 #: ../fuse/guestmount.pod:181
32481 msgid "B<-n> | B<--no-sync>"
32482 msgstr ""
32483
32484 # type: textblock
32485 #. type: textblock
32486 #: ../fuse/guestmount.pod:183
32487 msgid ""
32488 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
32489 "unmounted.  If you specify this option, then we don't attempt to sync the "
32490 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
32491 msgstr ""
32492
32493 # type: =item
32494 #. type: =item
32495 #: ../fuse/guestmount.pod:188
32496 msgid "B<-o option> | B<--option option>"
32497 msgstr ""
32498
32499 # type: textblock
32500 #. type: textblock
32501 #: ../fuse/guestmount.pod:190
32502 msgid "Pass extra options to FUSE."
32503 msgstr ""
32504
32505 # type: textblock
32506 #. type: textblock
32507 #: ../fuse/guestmount.pod:192
32508 msgid ""
32509 "To get a list of all the extra options supported by FUSE, use the command "
32510 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
32511 "of them are a good idea."
32512 msgstr ""
32513
32514 # type: verbatim
32515 #. type: verbatim
32516 #: ../fuse/guestmount.pod:196
32517 #, no-wrap
32518 msgid ""
32519 " guestmount --fuse-help\n"
32520 "\n"
32521 msgstr ""
32522
32523 # type: textblock
32524 #. type: textblock
32525 #: ../fuse/guestmount.pod:198
32526 msgid "Some potentially useful FUSE options:"
32527 msgstr ""
32528
32529 # type: =item
32530 #. type: =item
32531 #: ../fuse/guestmount.pod:202
32532 msgid "B<-o allow_other>"
32533 msgstr ""
32534
32535 # type: textblock
32536 #. type: textblock
32537 #: ../fuse/guestmount.pod:204
32538 msgid "Allow other users to see the filesystem."
32539 msgstr ""
32540
32541 # type: =item
32542 #. type: =item
32543 #: ../fuse/guestmount.pod:206
32544 msgid "B<-o attr_timeout=N>"
32545 msgstr ""
32546
32547 # type: textblock
32548 #. type: textblock
32549 #: ../fuse/guestmount.pod:208
32550 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
32551 msgstr ""
32552
32553 # type: =item
32554 #. type: =item
32555 #: ../fuse/guestmount.pod:210
32556 msgid "B<-o kernel_cache>"
32557 msgstr ""
32558
32559 # type: textblock
32560 #. type: textblock
32561 #: ../fuse/guestmount.pod:212
32562 msgid ""
32563 "Allow the kernel to cache files (reduces the number of reads that have to go "
32564 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
32565 "afford the extra memory usage."
32566 msgstr ""
32567
32568 # type: =item
32569 #. type: =item
32570 #: ../fuse/guestmount.pod:216
32571 msgid "B<-o uid=N> B<-o gid=N>"
32572 msgstr ""
32573
32574 # type: textblock
32575 #. type: textblock
32576 #: ../fuse/guestmount.pod:218
32577 msgid ""
32578 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
32579 "the chosen values."
32580 msgstr ""
32581
32582 # type: =item
32583 #. type: =item
32584 #: ../fuse/guestmount.pod:223
32585 msgid "B<-r> | B<--ro>"
32586 msgstr ""
32587
32588 # type: textblock
32589 #. type: textblock
32590 #: ../fuse/guestmount.pod:225
32591 msgid ""
32592 "Add devices and mount everything read-only.  Also disallow writes and make "
32593 "the disk appear read-only to FUSE."
32594 msgstr ""
32595
32596 # type: textblock
32597 #. type: textblock
32598 #: ../fuse/guestmount.pod:228
32599 msgid ""
32600 "This is highly recommended if you are not going to edit the guest disk.  If "
32601 "the guest is running and this option is I<not> supplied, then there is a "
32602 "strong risk of disk corruption in the guest.  We try to prevent this from "
32603 "happening, but it is not always possible."
32604 msgstr ""
32605
32606 # type: textblock
32607 #. type: textblock
32608 #: ../fuse/guestmount.pod:233
32609 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
32610 msgstr ""
32611
32612 # type: textblock
32613 #. type: textblock
32614 #: ../fuse/guestmount.pod:237
32615 msgid "Enable SELinux support for the guest."
32616 msgstr ""
32617
32618 # type: =item
32619 #. type: =item
32620 #: ../fuse/guestmount.pod:239
32621 msgid "B<-v> | B<--verbose>"
32622 msgstr ""
32623
32624 # type: textblock
32625 #. type: textblock
32626 #: ../fuse/guestmount.pod:241
32627 msgid "Enable verbose messages from underlying libguestfs."
32628 msgstr ""
32629
32630 # type: =item
32631 #. type: =item
32632 #: ../fuse/guestmount.pod:243
32633 msgid "B<-V> | B<--version>"
32634 msgstr ""
32635
32636 # type: textblock
32637 #. type: textblock
32638 #: ../fuse/guestmount.pod:245
32639 msgid "Display the program version and exit."
32640 msgstr ""
32641
32642 # type: =item
32643 #. type: =item
32644 #: ../fuse/guestmount.pod:247
32645 msgid "B<-w> | B<--rw>"
32646 msgstr ""
32647
32648 #. type: textblock
32649 #: ../fuse/guestmount.pod:252 ../fuse/guestmount.pod:273
32650 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
32651 msgstr ""
32652
32653 # type: =item
32654 #. type: =item
32655 #: ../fuse/guestmount.pod:254
32656 msgid "B<-x> | B<--trace>"
32657 msgstr ""
32658
32659 # type: textblock
32660 #. type: textblock
32661 #: ../fuse/guestmount.pod:256
32662 msgid "Trace libguestfs calls and entry into each FUSE function."
32663 msgstr ""
32664
32665 # type: textblock
32666 #. type: textblock
32667 #: ../fuse/guestmount.pod:258
32668 msgid "This also stops the daemon from forking into the background."
32669 msgstr ""
32670
32671 # type: textblock
32672 #. type: textblock
32673 #: ../fuse/guestmount.pod:279
32674 msgid ""
32675 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
32676 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, L<http://fuse.sf."
32677 "net/>."
32678 msgstr ""
32679
32680 # type: textblock
32681 #. type: textblock
32682 #: ../fuse/guestmount.pod:294
32683 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
32684 msgstr ""
32685
32686 # type: textblock
32687 #. type: textblock
32688 #: ../tools/virt-edit.pl:34
32689 msgid "virt-edit - Edit a file in a virtual machine"
32690 msgstr ""
32691
32692 # type: verbatim
32693 #. type: verbatim
32694 #: ../tools/virt-edit.pl:38
32695 #, no-wrap
32696 msgid ""
32697 " virt-edit [--options] domname file\n"
32698 "\n"
32699 msgstr ""
32700
32701 # type: verbatim
32702 #. type: verbatim
32703 #: ../tools/virt-edit.pl:40
32704 #, no-wrap
32705 msgid ""
32706 " virt-edit [--options] disk.img [disk.img ...] file\n"
32707 "\n"
32708 msgstr ""
32709
32710 # type: verbatim
32711 #. type: verbatim
32712 #: ../tools/virt-edit.pl:42
32713 #, no-wrap
32714 msgid ""
32715 " virt-edit [domname|disk.img] file -e 'expr'\n"
32716 "\n"
32717 msgstr ""
32718
32719 # type: textblock
32720 #. type: textblock
32721 #: ../tools/virt-edit.pl:46
32722 msgid ""
32723 "You must I<not> use C<virt-edit> on live virtual machines.  If you do this, "
32724 "you risk disk corruption in the VM.  C<virt-edit> tries to stop you from "
32725 "doing this, but doesn't catch all cases."
32726 msgstr ""
32727
32728 # type: textblock
32729 #. type: textblock
32730 #: ../tools/virt-edit.pl:52
32731 msgid ""
32732 "C<virt-edit> is a command line tool to edit C<file> where C<file> exists in "
32733 "the named virtual machine (or disk image)."
32734 msgstr ""
32735
32736 #. type: textblock
32737 #: ../tools/virt-edit.pl:55
32738 msgid "If you want to just view a file, use L<virt-cat(1)>."
32739 msgstr ""
32740
32741 #. type: textblock
32742 #: ../tools/virt-edit.pl:57
32743 msgid ""
32744 "For more complex cases you should look at the L<guestfish(1)> tool (see L</"
32745 "USING GUESTFISH> below)."
32746 msgstr ""
32747
32748 #. type: textblock
32749 #: ../tools/virt-edit.pl:60
32750 msgid ""
32751 "C<virt-edit> cannot be used to create a new file, nor to edit multiple "
32752 "files.  L<guestfish(1)> can do that and much more."
32753 msgstr ""
32754
32755 # type: textblock
32756 #. type: textblock
32757 #: ../tools/virt-edit.pl:65
32758 msgid "Edit the named files interactively:"
32759 msgstr ""
32760
32761 # type: verbatim
32762 #. type: verbatim
32763 #: ../tools/virt-edit.pl:67
32764 #, no-wrap
32765 msgid ""
32766 " virt-edit mydomain /boot/grub/grub.conf\n"
32767 "\n"
32768 msgstr ""
32769
32770 # type: verbatim
32771 #. type: verbatim
32772 #: ../tools/virt-edit.pl:69
32773 #, no-wrap
32774 msgid ""
32775 " virt-edit mydomain /etc/passwd\n"
32776 "\n"
32777 msgstr ""
32778
32779 #. type: textblock
32780 #: ../tools/virt-edit.pl:71
32781 msgid "For Windows guests, some Windows paths are understood:"
32782 msgstr ""
32783
32784 #. type: verbatim
32785 #: ../tools/virt-edit.pl:73
32786 #, no-wrap
32787 msgid ""
32788 " virt-edit mywindomain 'c:\\autoexec.bat'\n"
32789 "\n"
32790 msgstr ""
32791
32792 # type: textblock
32793 #. type: textblock
32794 #: ../tools/virt-edit.pl:75
32795 msgid ""
32796 "You can also edit files non-interactively (see L</NON-INTERACTIVE EDITING> "
32797 "below).  To change the init default level to 5:"
32798 msgstr ""
32799
32800 # type: verbatim
32801 #. type: verbatim
32802 #: ../tools/virt-edit.pl:79
32803 #, no-wrap
32804 msgid ""
32805 " virt-edit mydomain /etc/inittab -e 's/^id:.*/id:5:initdefault:/'\n"
32806 "\n"
32807 msgstr ""
32808
32809 # type: textblock
32810 #. type: textblock
32811 #: ../tools/virt-edit.pl:91 ../tools/virt-win-reg.pl:106
32812 #: ../tools/virt-list-filesystems.pl:63 ../tools/virt-tar.pl:113
32813 #: ../tools/virt-make-fs.pl:163 ../tools/virt-list-partitions.pl:64
32814 msgid "Display brief help."
32815 msgstr ""
32816
32817 # type: textblock
32818 #. type: textblock
32819 #: ../tools/virt-edit.pl:99 ../tools/virt-win-reg.pl:114
32820 #: ../tools/virt-list-filesystems.pl:71 ../tools/virt-tar.pl:121
32821 #: ../tools/virt-make-fs.pl:171 ../tools/virt-list-partitions.pl:72
32822 msgid "Display version number and exit."
32823 msgstr ""
32824
32825 # type: =item
32826 #. type: =item
32827 #: ../tools/virt-edit.pl:105
32828 msgid "B<--backup extension> | B<-b extension>"
32829 msgstr ""
32830
32831 # type: textblock
32832 #. type: textblock
32833 #: ../tools/virt-edit.pl:107
32834 msgid ""
32835 "Create a backup of the original file I<in the guest disk image>.  The backup "
32836 "has the original filename with C<extension> added."
32837 msgstr ""
32838
32839 # type: textblock
32840 #. type: textblock
32841 #: ../tools/virt-edit.pl:110
32842 msgid ""
32843 "Usually the first character of C<extension> would be a dot C<.> so you would "
32844 "write:"
32845 msgstr ""
32846
32847 # type: verbatim
32848 #. type: verbatim
32849 #: ../tools/virt-edit.pl:113
32850 #, no-wrap
32851 msgid ""
32852 " virt-edit -b .orig [etc]\n"
32853 "\n"
32854 msgstr ""
32855
32856 # type: textblock
32857 #. type: textblock
32858 #: ../tools/virt-edit.pl:115
32859 msgid "By default, no backup file is made."
32860 msgstr ""
32861
32862 # type: =item
32863 #. type: =item
32864 #: ../tools/virt-edit.pl:121 ../tools/virt-win-reg.pl:128
32865 #: ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127
32866 #: ../tools/virt-list-partitions.pl:78
32867 msgid "B<--connect URI> | B<-c URI>"
32868 msgstr ""
32869
32870 # type: textblock
32871 #. type: textblock
32872 #: ../tools/virt-edit.pl:123 ../tools/virt-win-reg.pl:130
32873 #: ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129
32874 #: ../tools/virt-list-partitions.pl:80
32875 msgid ""
32876 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
32877 "to the default libvirt hypervisor."
32878 msgstr ""
32879
32880 # type: textblock
32881 #. type: textblock
32882 #: ../tools/virt-edit.pl:126 ../tools/virt-win-reg.pl:133
32883 #: ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132
32884 #: ../tools/virt-list-partitions.pl:83
32885 msgid ""
32886 "If you specify guest block devices directly, then libvirt is not used at all."
32887 msgstr ""
32888
32889 # type: =item
32890 #. type: =item
32891 #: ../tools/virt-edit.pl:133 ../tools/virt-win-reg.pl:140
32892 #: ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139
32893 #: ../tools/virt-list-partitions.pl:90
32894 msgid "B<--format> raw"
32895 msgstr ""
32896
32897 # type: textblock
32898 #. type: textblock
32899 #: ../tools/virt-edit.pl:135 ../tools/virt-win-reg.pl:142
32900 #: ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141
32901 #: ../tools/virt-list-partitions.pl:92
32902 msgid ""
32903 "Specify the format of disk images given on the command line.  If this is "
32904 "omitted then the format is autodetected from the content of the disk image."
32905 msgstr ""
32906
32907 # type: textblock
32908 #. type: textblock
32909 #: ../tools/virt-edit.pl:139 ../tools/virt-win-reg.pl:146
32910 #: ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145
32911 #: ../tools/virt-list-partitions.pl:96
32912 msgid ""
32913 "If disk images are requested from libvirt, then this program asks libvirt "
32914 "for this information.  In this case, the value of the format parameter is "
32915 "ignored."
32916 msgstr ""
32917
32918 # type: textblock
32919 #. type: textblock
32920 #: ../tools/virt-edit.pl:143 ../tools/virt-win-reg.pl:150
32921 #: ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149
32922 #: ../tools/virt-list-partitions.pl:100
32923 msgid ""
32924 "If working with untrusted raw-format guest disk images, you should ensure "
32925 "the format is always specified."
32926 msgstr ""
32927
32928 # type: =item
32929 #. type: =item
32930 #: ../tools/virt-edit.pl:150
32931 msgid "B<--expr EXPR> | B<-e EXPR>"
32932 msgstr ""
32933
32934 # type: textblock
32935 #. type: textblock
32936 #: ../tools/virt-edit.pl:152
32937 msgid ""
32938 "Instead of launching the external editor, non-interactively apply the Perl "
32939 "expression C<EXPR> to each line in the file.  See L</NON-INTERACTIVE "
32940 "EDITING> below."
32941 msgstr ""
32942
32943 # type: textblock
32944 #. type: textblock
32945 #: ../tools/virt-edit.pl:156
32946 msgid ""
32947 "Be careful to properly quote the expression to prevent it from being altered "
32948 "by the shell."
32949 msgstr ""
32950
32951 # type: =head1
32952 #. type: =head1
32953 #: ../tools/virt-edit.pl:280
32954 msgid "NON-INTERACTIVE EDITING"
32955 msgstr ""
32956
32957 # type: textblock
32958 #. type: textblock
32959 #: ../tools/virt-edit.pl:282
32960 msgid ""
32961 "C<virt-edit> normally calls out to C<$EDITOR> (or vi) so the system "
32962 "administrator can interactively edit the file."
32963 msgstr ""
32964
32965 # type: textblock
32966 #. type: textblock
32967 #: ../tools/virt-edit.pl:285
32968 msgid ""
32969 "There are two ways also to use C<virt-edit> from scripts in order to make "
32970 "automated edits to files.  (Note that although you I<can> use C<virt-edit> "
32971 "like this, it's less error-prone to write scripts directly using the "
32972 "libguestfs API and Augeas for configuration file editing.)"
32973 msgstr ""
32974
32975 # type: textblock
32976 #. type: textblock
32977 #: ../tools/virt-edit.pl:291
32978 msgid ""
32979 "The first method is to temporarily set C<$EDITOR> to any script or program "
32980 "you want to run.  The script is invoked as C<$EDITOR tmpfile> and it should "
32981 "update C<tmpfile> in place however it likes."
32982 msgstr ""
32983
32984 #. type: textblock
32985 #: ../tools/virt-edit.pl:295
32986 msgid ""
32987 "The second method is to use the I<-e> parameter of C<virt-edit> to run a "
32988 "short Perl snippet in the style of L<sed(1)>.  For example to replace all "
32989 "instances of C<foo> with C<bar> in a file:"
32990 msgstr ""
32991
32992 # type: verbatim
32993 #. type: verbatim
32994 #: ../tools/virt-edit.pl:299
32995 #, no-wrap
32996 msgid ""
32997 " virt-edit domname filename -e 's/foo/bar/'\n"
32998 "\n"
32999 msgstr ""
33000
33001 # type: textblock
33002 #. type: textblock
33003 #: ../tools/virt-edit.pl:301
33004 msgid ""
33005 "The full power of Perl regular expressions can be used (see L<perlre(1)>).  "
33006 "For example to delete root's password you could do:"
33007 msgstr ""
33008
33009 # type: verbatim
33010 #. type: verbatim
33011 #: ../tools/virt-edit.pl:304
33012 #, no-wrap
33013 msgid ""
33014 " virt-edit domname /etc/passwd -e 's/^root:.*?:/root::/'\n"
33015 "\n"
33016 msgstr ""
33017
33018 # type: textblock
33019 #. type: textblock
33020 #: ../tools/virt-edit.pl:306
33021 msgid ""
33022 "What really happens is that the snippet is evaluated as a Perl expression "
33023 "for each line of the file.  The line, including the final C<\\n>, is passed "
33024 "in C<$_> and the expression should update C<$_> or leave it unchanged."
33025 msgstr ""
33026
33027 # type: textblock
33028 #. type: textblock
33029 #: ../tools/virt-edit.pl:311
33030 msgid ""
33031 "To delete a line, set C<$_> to the empty string.  For example, to delete the "
33032 "C<apache> user account from the password file you can do:"
33033 msgstr ""
33034
33035 # type: verbatim
33036 #. type: verbatim
33037 #: ../tools/virt-edit.pl:314
33038 #, no-wrap
33039 msgid ""
33040 " virt-edit mydomain /etc/passwd -e '$_ = \"\" if /^apache:/'\n"
33041 "\n"
33042 msgstr ""
33043
33044 # type: textblock
33045 #. type: textblock
33046 #: ../tools/virt-edit.pl:316
33047 msgid ""
33048 "To insert a line, prepend or append it to C<$_>.  However appending lines to "
33049 "the end of the file is rather difficult this way since there is no concept "
33050 "of \"last line of the file\" - your expression just doesn't get called "
33051 "again.  You might want to use the first method (setting C<$EDITOR>) if you "
33052 "want to do this."
33053 msgstr ""
33054
33055 # type: textblock
33056 #. type: textblock
33057 #: ../tools/virt-edit.pl:322
33058 msgid ""
33059 "The variable C<$lineno> contains the current line number.  As is "
33060 "traditional, the first line in the file is number C<1>."
33061 msgstr ""
33062
33063 # type: textblock
33064 #. type: textblock
33065 #: ../tools/virt-edit.pl:325
33066 msgid ""
33067 "The return value from the expression is ignored, but the expression may call "
33068 "C<die> in order to abort the whole program, leaving the original file "
33069 "untouched."
33070 msgstr ""
33071
33072 # type: textblock
33073 #. type: textblock
33074 #: ../tools/virt-edit.pl:329
33075 msgid ""
33076 "Remember when matching the end of a line that C<$_> may contain the final C<"
33077 "\\n>, or (for DOS files) C<\\r\\n>, or if the file does not end with a "
33078 "newline then neither of these.  Thus to match or substitute some text at the "
33079 "end of a line, use this regular expression:"
33080 msgstr ""
33081
33082 # type: verbatim
33083 #. type: verbatim
33084 #: ../tools/virt-edit.pl:334
33085 #, no-wrap
33086 msgid ""
33087 " /some text(\\r?\\n)?$/\n"
33088 "\n"
33089 msgstr ""
33090
33091 # type: textblock
33092 #. type: textblock
33093 #: ../tools/virt-edit.pl:336
33094 msgid ""
33095 "Alternately, use the perl C<chomp> function, being careful not to chomp C<"
33096 "$_> itself (since that would remove all newlines from the file):"
33097 msgstr ""
33098
33099 # type: verbatim
33100 #. type: verbatim
33101 #: ../tools/virt-edit.pl:340
33102 #, no-wrap
33103 msgid ""
33104 " my $m = $_; chomp $m; $m =~ /some text$/\n"
33105 "\n"
33106 msgstr ""
33107
33108 #. type: textblock
33109 #: ../tools/virt-edit.pl:344
33110 msgid ""
33111 "C<virt-edit> has a limited ability to understand Windows drive letters and "
33112 "paths (eg. C<E:\\foo\\bar.txt>)."
33113 msgstr ""
33114
33115 #. type: textblock
33116 #: ../tools/virt-edit.pl:347
33117 msgid "If and only if the guest is running Windows then:"
33118 msgstr ""
33119
33120 #. type: textblock
33121 #: ../tools/virt-edit.pl:353
33122 msgid ""
33123 "Drive letter prefixes like C<C:> are resolved against the Windows Registry "
33124 "to the correct filesystem."
33125 msgstr ""
33126
33127 #. type: textblock
33128 #: ../tools/virt-edit.pl:358
33129 msgid ""
33130 "Any backslash (C<\\>) characters in the path are replaced with forward "
33131 "slashes so that libguestfs can process it."
33132 msgstr ""
33133
33134 #. type: textblock
33135 #: ../tools/virt-edit.pl:363
33136 msgid ""
33137 "The path is resolved case insensitively to locate the file that should be "
33138 "edited."
33139 msgstr ""
33140
33141 #. type: textblock
33142 #: ../tools/virt-edit.pl:368
33143 msgid "There are some known shortcomings:"
33144 msgstr ""
33145
33146 #. type: textblock
33147 #: ../tools/virt-edit.pl:374
33148 msgid "Some NTFS symbolic links may not be followed correctly."
33149 msgstr ""
33150
33151 #. type: textblock
33152 #: ../tools/virt-edit.pl:378
33153 msgid "NTFS junction points that cross filesystems are not followed."
33154 msgstr ""
33155
33156 #. type: =head1
33157 #: ../tools/virt-edit.pl:435
33158 msgid "USING GUESTFISH"
33159 msgstr ""
33160
33161 #. type: textblock
33162 #: ../tools/virt-edit.pl:437
33163 msgid ""
33164 "L<guestfish(1)> is a more powerful, lower level tool which you can use when "
33165 "C<virt-edit> doesn't work."
33166 msgstr ""
33167
33168 #. type: textblock
33169 #: ../tools/virt-edit.pl:440
33170 msgid "Using C<virt-edit> is approximately equivalent to doing:"
33171 msgstr ""
33172
33173 #. type: verbatim
33174 #: ../tools/virt-edit.pl:442
33175 #, no-wrap
33176 msgid ""
33177 " guestfish --rw -i -d domname edit /file\n"
33178 "\n"
33179 msgstr ""
33180
33181 #. type: textblock
33182 #: ../tools/virt-edit.pl:444
33183 msgid ""
33184 "where C<domname> is the name of the libvirt guest, and C</file> is the full "
33185 "path to the file."
33186 msgstr ""
33187
33188 #. type: textblock
33189 #: ../tools/virt-edit.pl:447
33190 msgid ""
33191 "The command above uses libguestfs's guest inspection feature and so does not "
33192 "work on guests that libguestfs cannot inspect, or on things like arbitrary "
33193 "disk images that don't contain guests.  To edit a file on a disk image "
33194 "directly, use:"
33195 msgstr ""
33196
33197 #. type: verbatim
33198 #: ../tools/virt-edit.pl:452
33199 #, no-wrap
33200 msgid ""
33201 " guestfish --rw -a disk.img -m /dev/sda1 edit /file\n"
33202 "\n"
33203 msgstr ""
33204
33205 #. type: textblock
33206 #: ../tools/virt-edit.pl:454
33207 msgid ""
33208 "where C<disk.img> is the disk image, C</dev/sda1> is the filesystem within "
33209 "the disk image to edit, and C</file> is the full path to the file."
33210 msgstr ""
33211
33212 #. type: textblock
33213 #: ../tools/virt-edit.pl:458
33214 msgid ""
33215 "C<virt-edit> cannot create new files.  Use the guestfish commands C<touch>, "
33216 "C<write> or C<upload> instead:"
33217 msgstr ""
33218
33219 #. type: verbatim
33220 #: ../tools/virt-edit.pl:461
33221 #, no-wrap
33222 msgid ""
33223 " guestfish --rw -i -d domname touch /newfile\n"
33224 "\n"
33225 msgstr ""
33226
33227 #. type: verbatim
33228 #: ../tools/virt-edit.pl:463
33229 #, no-wrap
33230 msgid ""
33231 " guestfish --rw -i -d domname write /newfile \"new content\"\n"
33232 "\n"
33233 msgstr ""
33234
33235 #. type: verbatim
33236 #: ../tools/virt-edit.pl:465
33237 #, no-wrap
33238 msgid ""
33239 " guestfish --rw -i -d domname upload localfile /newfile\n"
33240 "\n"
33241 msgstr ""
33242
33243 #. type: textblock
33244 #: ../tools/virt-edit.pl:467
33245 msgid ""
33246 "C<virt-edit> cannot edit multiple files, but guestfish can do it like this:"
33247 msgstr ""
33248
33249 #. type: verbatim
33250 #: ../tools/virt-edit.pl:470
33251 #, no-wrap
33252 msgid ""
33253 " guestfish --rw -i -d domname edit /file1 : edit /file2\n"
33254 "\n"
33255 msgstr ""
33256
33257 # type: =item
33258 #. type: =item
33259 #: ../tools/virt-edit.pl:480
33260 msgid "C<EDITOR>"
33261 msgstr ""
33262
33263 # type: textblock
33264 #. type: textblock
33265 #: ../tools/virt-edit.pl:482
33266 msgid ""
33267 "If set, this string is used as the editor.  It may contain arguments, eg. C<"
33268 "\"emacs -nw\">"
33269 msgstr ""
33270
33271 # type: textblock
33272 #. type: textblock
33273 #: ../tools/virt-edit.pl:485
33274 msgid "If not set, C<vi> is used."
33275 msgstr ""
33276
33277 # type: =head2
33278 #. type: =head1
33279 #: ../tools/virt-edit.pl:489 ../tools/virt-win-reg.pl:559
33280 #: ../tools/virt-list-filesystems.pl:182 ../tools/virt-tar.pl:279
33281 #: ../tools/virt-make-fs.pl:532 ../tools/virt-list-partitions.pl:250
33282 msgid "SHELL QUOTING"
33283 msgstr ""
33284
33285 # type: textblock
33286 #. type: textblock
33287 #: ../tools/virt-edit.pl:491 ../tools/virt-win-reg.pl:567
33288 #: ../tools/virt-list-filesystems.pl:184 ../tools/virt-tar.pl:281
33289 #: ../tools/virt-make-fs.pl:534 ../tools/virt-list-partitions.pl:252
33290 msgid ""
33291 "Libvirt guest names can contain arbitrary characters, some of which have "
33292 "meaning to the shell such as C<#> and space.  You may need to quote or "
33293 "escape these characters on the command line.  See the shell manual page L<sh"
33294 "(1)> for details."
33295 msgstr ""
33296
33297 #. type: textblock
33298 #: ../tools/virt-edit.pl:498
33299 msgid ""
33300 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-copy-in(1)>, L<virt-"
33301 "tar-in(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
33302 "L<http://libguestfs.org/>, L<perl(1)>, L<perlre(1)>."
33303 msgstr ""
33304
33305 # type: =head1
33306 #. type: =head1
33307 #: ../tools/virt-edit.pl:510 ../tools/virt-win-reg.pl:598
33308 #: ../tools/virt-list-filesystems.pl:202 ../tools/virt-tar.pl:301
33309 #: ../tools/virt-make-fs.pl:564 ../tools/virt-list-partitions.pl:269
33310 msgid "AUTHOR"
33311 msgstr ""
33312
33313 # type: textblock
33314 #. type: textblock
33315 #: ../tools/virt-edit.pl:512 ../tools/virt-win-reg.pl:600
33316 #: ../tools/virt-list-filesystems.pl:204 ../tools/virt-tar.pl:303
33317 #: ../tools/virt-make-fs.pl:566 ../tools/virt-list-partitions.pl:271
33318 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
33319 msgstr ""
33320
33321 #. type: textblock
33322 #: ../tools/virt-edit.pl:516
33323 msgid "Copyright (C) 2009-2011 Red Hat Inc."
33324 msgstr ""
33325
33326 # type: textblock
33327 #. type: textblock
33328 #: ../tools/virt-win-reg.pl:37
33329 msgid ""
33330 "virt-win-reg - Export and merge Windows Registry entries from a Windows guest"
33331 msgstr ""
33332
33333 # type: verbatim
33334 #. type: verbatim
33335 #: ../tools/virt-win-reg.pl:41
33336 #, no-wrap
33337 msgid ""
33338 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
33339 "\n"
33340 msgstr ""
33341
33342 # type: verbatim
33343 #. type: verbatim
33344 #: ../tools/virt-win-reg.pl:43
33345 #, no-wrap
33346 msgid ""
33347 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
33348 "\n"
33349 msgstr ""
33350
33351 # type: verbatim
33352 #. type: verbatim
33353 #: ../tools/virt-win-reg.pl:45
33354 #, no-wrap
33355 msgid ""
33356 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
33357 "\n"
33358 msgstr ""
33359
33360 # type: verbatim
33361 #. type: verbatim
33362 #: ../tools/virt-win-reg.pl:47
33363 #, no-wrap
33364 msgid ""
33365 " virt-win-reg --merge domname [input.reg ...]\n"
33366 "\n"
33367 msgstr ""
33368
33369 # type: verbatim
33370 #. type: verbatim
33371 #: ../tools/virt-win-reg.pl:49
33372 #, no-wrap
33373 msgid ""
33374 " virt-win-reg [--options] disk.img ... # instead of domname\n"
33375 "\n"
33376 msgstr ""
33377
33378 #. type: textblock
33379 #: ../tools/virt-win-reg.pl:53
33380 msgid ""
33381 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
33382 "virtual machines.  If you do this, you I<will> get irreversible disk "
33383 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
33384 "but doesn't catch all cases."
33385 msgstr ""
33386
33387 #. type: textblock
33388 #: ../tools/virt-win-reg.pl:58
33389 msgid ""
33390 "Modifying the Windows Registry is an inherently risky operation.  The format "
33391 "is deliberately obscure and undocumented, and Registry changes can leave the "
33392 "system unbootable.  Therefore when using the I<--merge> option, make sure "
33393 "you have a reliable backup first."
33394 msgstr ""
33395
33396 # type: textblock
33397 #. type: textblock
33398 #: ../tools/virt-win-reg.pl:65
33399 msgid ""
33400 "This program can export and merge Windows Registry entries from a Windows "
33401 "guest."
33402 msgstr ""
33403
33404 # type: textblock
33405 #. type: textblock
33406 #: ../tools/virt-win-reg.pl:68
33407 msgid ""
33408 "The first parameter is the libvirt guest name or the raw disk image of a "
33409 "Windows guest."
33410 msgstr ""
33411
33412 #. type: textblock
33413 #: ../tools/virt-win-reg.pl:71
33414 msgid ""
33415 "If I<--merge> is I<not> specified, then the chosen registry key is displayed/"
33416 "exported (recursively).  For example:"
33417 msgstr ""
33418
33419 # type: verbatim
33420 #. type: verbatim
33421 #: ../tools/virt-win-reg.pl:74
33422 #, no-wrap
33423 msgid ""
33424 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
33425 "\n"
33426 msgstr ""
33427
33428 # type: textblock
33429 #. type: textblock
33430 #: ../tools/virt-win-reg.pl:76
33431 msgid ""
33432 "You can also display single values from within registry keys, for example:"
33433 msgstr ""
33434
33435 # type: verbatim
33436 #. type: verbatim
33437 #: ../tools/virt-win-reg.pl:79
33438 #, no-wrap
33439 msgid ""
33440 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
33441 " $ virt-win-reg Windows7 $cvkey ProductName\n"
33442 " Windows 7 Enterprise\n"
33443 "\n"
33444 msgstr ""
33445
33446 #. type: textblock
33447 #: ../tools/virt-win-reg.pl:83
33448 msgid ""
33449 "With I<--merge>, you can merge a textual regedit file into the Windows "
33450 "Registry:"
33451 msgstr ""
33452
33453 # type: verbatim
33454 #. type: verbatim
33455 #: ../tools/virt-win-reg.pl:86
33456 #, no-wrap
33457 msgid ""
33458 " $ virt-win-reg --merge Windows7 changes.reg\n"
33459 "\n"
33460 msgstr ""
33461
33462 # type: =head2
33463 #. type: =head1
33464 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
33465 msgid "NOTE"
33466 msgstr ""
33467
33468 # type: textblock
33469 #. type: textblock
33470 #: ../tools/virt-win-reg.pl:90
33471 msgid ""
33472 "This program is only meant for simple access to the registry.  If you want "
33473 "to do complicated things with the registry, we suggest you download the "
33474 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
33475 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
33476 "L<hivexregedit(1)>."
33477 msgstr ""
33478
33479 # type: =item
33480 #. type: =item
33481 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
33482 msgid "B<--debug>"
33483 msgstr ""
33484
33485 # type: textblock
33486 #. type: textblock
33487 #: ../tools/virt-win-reg.pl:122
33488 msgid "Enable debugging messages."
33489 msgstr ""
33490
33491 # type: =item
33492 #. type: =item
33493 #: ../tools/virt-win-reg.pl:157
33494 msgid "B<--merge>"
33495 msgstr ""
33496
33497 # type: textblock
33498 #. type: textblock
33499 #: ../tools/virt-win-reg.pl:159
33500 msgid ""
33501 "In merge mode, this merges a textual regedit file into the Windows Registry "
33502 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
33503 "displays or exports Registry entries instead."
33504 msgstr ""
33505
33506 #. type: textblock
33507 #: ../tools/virt-win-reg.pl:163
33508 msgid ""
33509 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
33510 "result in disk corruption.  However exporting (without this flag)  is always "
33511 "safe."
33512 msgstr ""
33513
33514 # type: =item
33515 #. type: =item
33516 #: ../tools/virt-win-reg.pl:171
33517 msgid "B<--encoding> UTF-16LE|ASCII"
33518 msgstr ""
33519
33520 # type: textblock
33521 #. type: textblock
33522 #: ../tools/virt-win-reg.pl:173
33523 msgid ""
33524 "When merging (only), you may need to specify the encoding for strings to be "
33525 "used in the hive file.  This is explained in detail in L<Win::Hivex::Regedit"
33526 "(3)/ENCODING STRINGS>."
33527 msgstr ""
33528
33529 # type: textblock
33530 #. type: textblock
33531 #: ../tools/virt-win-reg.pl:177
33532 msgid ""
33533 "The default is to use UTF-16LE, which should work with recent versions of "
33534 "Windows."
33535 msgstr ""
33536
33537 # type: =head2
33538 #. type: =head1
33539 #: ../tools/virt-win-reg.pl:402
33540 msgid "SUPPORTED SYSTEMS"
33541 msgstr ""
33542
33543 # type: textblock
33544 #. type: textblock
33545 #: ../tools/virt-win-reg.pl:404
33546 msgid ""
33547 "The program currently supports Windows NT-derived guests starting with "
33548 "Windows XP through to at least Windows 7."
33549 msgstr ""
33550
33551 # type: textblock
33552 #. type: textblock
33553 #: ../tools/virt-win-reg.pl:407
33554 msgid ""
33555 "Registry support is done for C<HKEY_LOCAL_MACHINE\\SAM>, C<HKEY_LOCAL_MACHINE"
33556 "\\SECURITY>, C<HKEY_LOCAL_MACHINE\\SOFTWARE>, C<HKEY_LOCAL_MACHINE\\SYSTEM> "
33557 "and C<HKEY_USERS\\.DEFAULT>."
33558 msgstr ""
33559
33560 # type: textblock
33561 #. type: textblock
33562 #: ../tools/virt-win-reg.pl:411
33563 msgid ""
33564 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
33565 "C<HKEY_USERS>."
33566 msgstr ""
33567
33568 # type: textblock
33569 #. type: textblock
33570 #: ../tools/virt-win-reg.pl:414
33571 msgid ""
33572 "C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are B<not> supported at this "
33573 "time."
33574 msgstr ""
33575
33576 # type: =head2
33577 #. type: =head1
33578 #: ../tools/virt-win-reg.pl:417
33579 msgid "ENCODING"
33580 msgstr ""
33581
33582 # type: textblock
33583 #. type: textblock
33584 #: ../tools/virt-win-reg.pl:419
33585 msgid ""
33586 "C<virt-win-reg> expects that regedit files have already been reencoded in "
33587 "the local encoding.  Usually on Linux hosts, this means UTF-8 with Unix-"
33588 "style line endings.  Since Windows regedit files are often in UTF-16LE with "
33589 "Windows-style line endings, you may need to reencode the whole file before "
33590 "or after processing."
33591 msgstr ""
33592
33593 #. type: textblock
33594 #: ../tools/virt-win-reg.pl:425
33595 msgid ""
33596 "To reencode a file from Windows format to Linux (before processing it with "
33597 "the I<--merge> option), you would do something like this:"
33598 msgstr ""
33599
33600 # type: verbatim
33601 #. type: verbatim
33602 #: ../tools/virt-win-reg.pl:428
33603 #, no-wrap
33604 msgid ""
33605 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
33606 "\n"
33607 msgstr ""
33608
33609 # type: textblock
33610 #. type: textblock
33611 #: ../tools/virt-win-reg.pl:430
33612 msgid ""
33613 "To go in the opposite direction, after exporting and before sending the file "
33614 "to a Windows user, do something like this:"
33615 msgstr ""
33616
33617 # type: verbatim
33618 #. type: verbatim
33619 #: ../tools/virt-win-reg.pl:433
33620 #, no-wrap
33621 msgid ""
33622 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
33623 "\n"
33624 msgstr ""
33625
33626 # type: textblock
33627 #. type: textblock
33628 #: ../tools/virt-win-reg.pl:435
33629 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
33630 msgstr ""
33631
33632 # type: textblock
33633 #. type: textblock
33634 #: ../tools/virt-win-reg.pl:437
33635 msgid ""
33636 "If you are unsure about the current encoding, use the L<file(1)> command.  "
33637 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
33638 "style (CRLF) line endings, like this:"
33639 msgstr ""
33640
33641 # type: verbatim
33642 #. type: verbatim
33643 #: ../tools/virt-win-reg.pl:441
33644 #, no-wrap
33645 msgid ""
33646 " $ file software.reg\n"
33647 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
33648 " with CRLF line terminators\n"
33649 "\n"
33650 msgstr ""
33651
33652 #. type: textblock
33653 #: ../tools/virt-win-reg.pl:445
33654 msgid "This file would need conversion before you could I<--merge> it."
33655 msgstr ""
33656
33657 # type: =head2
33658 #. type: =head1
33659 #: ../tools/virt-win-reg.pl:447
33660 msgid "CurrentControlSet etc."
33661 msgstr ""
33662
33663 # type: textblock
33664 #. type: textblock
33665 #: ../tools/virt-win-reg.pl:449
33666 msgid ""
33667 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
33668 "Registry at the level of the hive file, and therefore you cannot modify "
33669 "these."
33670 msgstr ""
33671
33672 # type: textblock
33673 #. type: textblock
33674 #: ../tools/virt-win-reg.pl:453
33675 msgid ""
33676 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
33677 "circumstances it might refer to another control set.  The way to find out is "
33678 "to look at the C<HKLM\\SYSTEM\\Select> key:"
33679 msgstr ""
33680
33681 # type: verbatim
33682 #. type: verbatim
33683 #: ../tools/virt-win-reg.pl:457
33684 #, no-wrap
33685 msgid ""
33686 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
33687 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
33688 " \"Current\"=dword:00000001\n"
33689 " \"Default\"=dword:00000001\n"
33690 " \"Failed\"=dword:00000000\n"
33691 " \"LastKnownGood\"=dword:00000002\n"
33692 "\n"
33693 msgstr ""
33694
33695 # type: textblock
33696 #. type: textblock
33697 #: ../tools/virt-win-reg.pl:464
33698 msgid "\"Current\" is the one which Windows will choose when it boots."
33699 msgstr ""
33700
33701 # type: textblock
33702 #. type: textblock
33703 #: ../tools/virt-win-reg.pl:466
33704 msgid ""
33705 "Similarly, other C<Current...> keys in the path may need to be replaced."
33706 msgstr ""
33707
33708 # type: =head1
33709 #. type: =head1
33710 #: ../tools/virt-win-reg.pl:469
33711 msgid "WINDOWS TIPS"
33712 msgstr ""
33713
33714 # type: textblock
33715 #. type: textblock
33716 #: ../tools/virt-win-reg.pl:471
33717 msgid ""
33718 "Note that some of these tips modify the guest disk image.  The guest I<must> "
33719 "be shut off, else you will get disk corruption."
33720 msgstr ""
33721
33722 # type: =head2
33723 #. type: =head2
33724 #: ../tools/virt-win-reg.pl:474
33725 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
33726 msgstr ""
33727
33728 # type: textblock
33729 #. type: textblock
33730 #: ../tools/virt-win-reg.pl:476
33731 msgid ""
33732 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
33733 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
33734 "is uploaded into C<C:\\>:"
33735 msgstr ""
33736
33737 # type: verbatim
33738 #. type: verbatim
33739 #: ../tools/virt-win-reg.pl:480
33740 #, no-wrap
33741 msgid ""
33742 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
33743 "\n"
33744 msgstr ""
33745
33746 # type: textblock
33747 #. type: textblock
33748 #: ../tools/virt-win-reg.pl:482
33749 msgid "Prepare a regedit file containing the registry change:"
33750 msgstr ""
33751
33752 # type: verbatim
33753 #. type: verbatim
33754 #: ../tools/virt-win-reg.pl:484
33755 #, no-wrap
33756 msgid ""
33757 " cat > test.reg <<'EOF'\n"
33758 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
33759 " \"Test\"=\"c:\\\\test.bat\"\n"
33760 " EOF\n"
33761 "\n"
33762 msgstr ""
33763
33764 # type: textblock
33765 #. type: textblock
33766 #: ../tools/virt-win-reg.pl:489
33767 msgid ""
33768 "In this example we use the key C<RunOnce> which means that the script will "
33769 "run precisely once when the first user logs in.  If you want it to run every "
33770 "time a user logs in, replace C<RunOnce> with C<Run>."
33771 msgstr ""
33772
33773 # type: textblock
33774 #. type: textblock
33775 #: ../tools/virt-win-reg.pl:493
33776 msgid "Now update the registry:"
33777 msgstr ""
33778
33779 # type: verbatim
33780 #. type: verbatim
33781 #: ../tools/virt-win-reg.pl:495
33782 #, no-wrap
33783 msgid ""
33784 " virt-win-reg --merge WindowsGuest test.reg\n"
33785 "\n"
33786 msgstr ""
33787
33788 # type: =head2
33789 #. type: =head2
33790 #: ../tools/virt-win-reg.pl:497
33791 msgid "INSTALLING A SERVICE"
33792 msgstr ""
33793
33794 # type: textblock
33795 #. type: textblock
33796 #: ../tools/virt-win-reg.pl:499
33797 msgid ""
33798 "This section assumes you are familiar with Windows services, and you either "
33799 "have a program which handles the Windows Service Control Protocol directly "
33800 "or you want to run any program using a service wrapper like SrvAny or the "
33801 "free RHSrvAny."
33802 msgstr ""
33803
33804 # type: textblock
33805 #. type: textblock
33806 #: ../tools/virt-win-reg.pl:504
33807 msgid ""
33808 "First upload the program and optionally the service wrapper.  In this case "
33809 "the test program is called C<test.exe> and we are using the RHSrvAny wrapper:"
33810 msgstr ""
33811
33812 # type: verbatim
33813 #. type: verbatim
33814 #: ../tools/virt-win-reg.pl:508
33815 #, no-wrap
33816 msgid ""
33817 " guestfish -i -d WindowsGuest <<EOF\n"
33818 "   upload rhsrvany.exe /rhsrvany.exe\n"
33819 "   upload test.exe /test.exe\n"
33820 " EOF\n"
33821 "\n"
33822 msgstr ""
33823
33824 # type: textblock
33825 #. type: textblock
33826 #: ../tools/virt-win-reg.pl:513
33827 msgid ""
33828 "Prepare a regedit file containing the registry changes.  In this example, "
33829 "the first registry change is needed for the service itself or the service "
33830 "wrapper (if used).  The second registry change is only needed because I am "
33831 "using the RHSrvAny service wrapper."
33832 msgstr ""
33833
33834 # type: verbatim
33835 #. type: verbatim
33836 #: ../tools/virt-win-reg.pl:518
33837 #, no-wrap
33838 msgid ""
33839 " cat > service.reg <<'EOF'\n"
33840 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
33841 " \"Type\"=dword:00000010\n"
33842 " \"Start\"=dword:00000002\n"
33843 " \"ErrorControl\"=dword:00000001\n"
33844 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
33845 " \"DisplayName\"=\"RHSrvAny\"\n"
33846 " \"ObjectName\"=\"NetworkService\"\n"
33847 " \n"
33848 msgstr ""
33849
33850 # type: verbatim
33851 #. type: verbatim
33852 #: ../tools/virt-win-reg.pl:527
33853 #, no-wrap
33854 msgid ""
33855 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
33856 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
33857 " \"PWD\"=\"c:\\\\Temp\"\n"
33858 " EOF\n"
33859 "\n"
33860 msgstr ""
33861
33862 # type: textblock
33863 #. type: textblock
33864 #: ../tools/virt-win-reg.pl:538
33865 msgid ""
33866 "For use of C<ControlSet001> see the section above in this manual page.  You "
33867 "may need to adjust this according to the control set that is in use by the "
33868 "guest."
33869 msgstr ""
33870
33871 # type: textblock
33872 #. type: textblock
33873 #: ../tools/virt-win-reg.pl:544
33874 msgid ""
33875 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
33876 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
33877 "privileged account."
33878 msgstr ""
33879
33880 # type: textblock
33881 #. type: textblock
33882 #: ../tools/virt-win-reg.pl:550
33883 msgid ""
33884 "For the meaning of the magic numbers, see this Microsoft KB article: "
33885 "L<http://support.microsoft.com/kb/103000>."
33886 msgstr ""
33887
33888 # type: textblock
33889 #. type: textblock
33890 #: ../tools/virt-win-reg.pl:555
33891 msgid "Update the registry:"
33892 msgstr ""
33893
33894 # type: verbatim
33895 #. type: verbatim
33896 #: ../tools/virt-win-reg.pl:557
33897 #, no-wrap
33898 msgid ""
33899 " virt-win-reg --merge WindowsGuest service.reg\n"
33900 "\n"
33901 msgstr ""
33902
33903 # type: textblock
33904 #. type: textblock
33905 #: ../tools/virt-win-reg.pl:561
33906 msgid ""
33907 "Be careful when passing parameters containing C<\\> (backslash) in the "
33908 "shell.  Usually you will have to use 'single quotes' or double backslashes "
33909 "(but not both) to protect them from the shell."
33910 msgstr ""
33911
33912 # type: textblock
33913 #. type: textblock
33914 #: ../tools/virt-win-reg.pl:565
33915 msgid "Paths and value names are case-insensitive."
33916 msgstr ""
33917
33918 # type: textblock
33919 #. type: textblock
33920 #: ../tools/virt-win-reg.pl:574
33921 msgid ""
33922 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, L<guestfish(1)"
33923 ">, L<virt-cat(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Win::Hivex"
33924 "(3)>, L<Win::Hivex::Regedit(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
33925 msgstr ""
33926
33927 # type: textblock
33928 #. type: textblock
33929 #: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:555
33930 msgid ""
33931 "When reporting bugs, please enable debugging and capture the I<complete> "
33932 "output:"
33933 msgstr ""
33934
33935 # type: verbatim
33936 #. type: verbatim
33937 #: ../tools/virt-win-reg.pl:592
33938 #, no-wrap
33939 msgid ""
33940 " export LIBGUESTFS_DEBUG=1\n"
33941 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
33942 "\n"
33943 msgstr ""
33944
33945 # type: textblock
33946 #. type: textblock
33947 #: ../tools/virt-win-reg.pl:595
33948 msgid ""
33949 "Attach /tmp/virt-win-reg.log to a new bug report at L<https://bugzilla."
33950 "redhat.com/>"
33951 msgstr ""
33952
33953 # type: textblock
33954 #. type: textblock
33955 #: ../tools/virt-win-reg.pl:604 ../tools/virt-make-fs.pl:570
33956 msgid "Copyright (C) 2010 Red Hat Inc."
33957 msgstr ""
33958
33959 # type: textblock
33960 #. type: textblock
33961 #: ../tools/virt-list-filesystems.pl:32
33962 msgid ""
33963 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
33964 msgstr ""
33965
33966 # type: verbatim
33967 #. type: verbatim
33968 #: ../tools/virt-list-filesystems.pl:36
33969 #, no-wrap
33970 msgid ""
33971 " virt-list-filesystems [--options] domname\n"
33972 "\n"
33973 msgstr ""
33974
33975 # type: verbatim
33976 #. type: verbatim
33977 #: ../tools/virt-list-filesystems.pl:38
33978 #, no-wrap
33979 msgid ""
33980 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
33981 "\n"
33982 msgstr ""
33983
33984 # type: textblock
33985 #. type: textblock
33986 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
33987 msgid ""
33988 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
33989 "replacement."
33990 msgstr ""
33991
33992 # type: textblock
33993 #. type: textblock
33994 #: ../tools/virt-list-filesystems.pl:45
33995 msgid ""
33996 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
33997 "are contained in a virtual machine or disk image."
33998 msgstr ""
33999
34000 # type: textblock
34001 #. type: textblock
34002 #: ../tools/virt-list-filesystems.pl:49
34003 msgid ""
34004 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
34005 "functionality.  For more complex cases you should look at the L<guestfish(1)"
34006 "> tool."
34007 msgstr ""
34008
34009 # type: =item
34010 #. type: =item
34011 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
34012 msgid "B<-l> | B<--long>"
34013 msgstr ""
34014
34015 # type: textblock
34016 #. type: textblock
34017 #: ../tools/virt-list-filesystems.pl:108
34018 msgid ""
34019 "With this option, C<virt-list-filesystems> displays the type of each "
34020 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
34021 msgstr ""
34022
34023 # type: =item
34024 #. type: =item
34025 #: ../tools/virt-list-filesystems.pl:115
34026 msgid "B<-a> | B<--all>"
34027 msgstr ""
34028
34029 # type: textblock
34030 #. type: textblock
34031 #: ../tools/virt-list-filesystems.pl:117
34032 msgid ""
34033 "Normally we only show mountable filesystems.  If this option is given then "
34034 "swap devices are shown too."
34035 msgstr ""
34036
34037 # type: textblock
34038 #. type: textblock
34039 #: ../tools/virt-list-filesystems.pl:191
34040 msgid ""
34041 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
34042 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, L<Sys::"
34043 "Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
34044 msgstr ""
34045
34046 # type: textblock
34047 #. type: textblock
34048 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
34049 msgid "Copyright (C) 2009 Red Hat Inc."
34050 msgstr ""
34051
34052 # type: textblock
34053 #. type: textblock
34054 #: ../tools/virt-tar.pl:33
34055 msgid "virt-tar - Extract or upload files to a virtual machine"
34056 msgstr ""
34057
34058 # type: verbatim
34059 #. type: verbatim
34060 #: ../tools/virt-tar.pl:37
34061 #, no-wrap
34062 msgid ""
34063 " virt-tar [--options] -x domname directory tarball\n"
34064 "\n"
34065 msgstr ""
34066
34067 # type: verbatim
34068 #. type: verbatim
34069 #: ../tools/virt-tar.pl:39
34070 #, no-wrap
34071 msgid ""
34072 " virt-tar [--options] -u domname tarball directory\n"
34073 "\n"
34074 msgstr ""
34075
34076 # type: verbatim
34077 #. type: verbatim
34078 #: ../tools/virt-tar.pl:41
34079 #, no-wrap
34080 msgid ""
34081 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
34082 "\n"
34083 msgstr ""
34084
34085 # type: verbatim
34086 #. type: verbatim
34087 #: ../tools/virt-tar.pl:43
34088 #, no-wrap
34089 msgid ""
34090 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
34091 "\n"
34092 msgstr ""
34093
34094 #. type: textblock
34095 #: ../tools/virt-tar.pl:47
34096 msgid ""
34097 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
34098 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
34099 msgstr ""
34100
34101 # type: textblock
34102 #. type: textblock
34103 #: ../tools/virt-tar.pl:52
34104 msgid "Download C</home> from the VM into a local tarball:"
34105 msgstr ""
34106
34107 # type: verbatim
34108 #. type: verbatim
34109 #: ../tools/virt-tar.pl:54
34110 #, no-wrap
34111 msgid ""
34112 " virt-tar -x domname /home home.tar\n"
34113 "\n"
34114 msgstr ""
34115
34116 # type: verbatim
34117 #. type: verbatim
34118 #: ../tools/virt-tar.pl:56
34119 #, no-wrap
34120 msgid ""
34121 " virt-tar -zx domname /home home.tar.gz\n"
34122 "\n"
34123 msgstr ""
34124
34125 # type: textblock
34126 #. type: textblock
34127 #: ../tools/virt-tar.pl:58
34128 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
34129 msgstr ""
34130
34131 # type: verbatim
34132 #. type: verbatim
34133 #: ../tools/virt-tar.pl:60
34134 #, no-wrap
34135 msgid ""
34136 " virt-tar -u domname uploadstuff.tar /tmp\n"
34137 "\n"
34138 msgstr ""
34139
34140 # type: verbatim
34141 #. type: verbatim
34142 #: ../tools/virt-tar.pl:62
34143 #, no-wrap
34144 msgid ""
34145 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
34146 "\n"
34147 msgstr ""
34148
34149 #. type: textblock
34150 #: ../tools/virt-tar.pl:66
34151 msgid ""
34152 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
34153 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
34154 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
34155 msgstr ""
34156
34157 #. type: textblock
34158 #: ../tools/virt-tar.pl:71
34159 msgid ""
34160 "You can use I<-x> (extract) on live virtual machines, but you might get "
34161 "inconsistent results or errors if there is filesystem activity inside the "
34162 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
34163 "work, but the only way to guarantee consistent results is if the virtual "
34164 "machine is shut down."
34165 msgstr ""
34166
34167 # type: textblock
34168 #. type: textblock
34169 #: ../tools/virt-tar.pl:79
34170 msgid ""
34171 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
34172 "parts of a guest filesystem.  There are many possibilities: making backups, "
34173 "uploading data files, snooping on guest activity, fixing or customizing "
34174 "guests, etc."
34175 msgstr ""
34176
34177 # type: textblock
34178 #. type: textblock
34179 #: ../tools/virt-tar.pl:84
34180 msgid ""
34181 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
34182 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
34183 "should look at the L<guestfish(1)> tool."
34184 msgstr ""
34185
34186 #. type: textblock
34187 #: ../tools/virt-tar.pl:88
34188 msgid ""
34189 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
34190 "its contents (recursively) from the virtual machine into a local tarball.  "
34191 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
34192 "virtual machine.  You cannot use these two options together."
34193 msgstr ""
34194
34195 #. type: textblock
34196 #: ../tools/virt-tar.pl:94
34197 msgid ""
34198 "In addition, you may need to use the I<-z> (gZip) option to enable "
34199 "compression.  When uploading, you have to specify I<-z> if the upload file "
34200 "is compressed because virt-tar won't detect this on its own."
34201 msgstr ""
34202
34203 # type: textblock
34204 #. type: textblock
34205 #: ../tools/virt-tar.pl:98
34206 msgid ""
34207 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
34208 "example it cannot do PKZip files or bzip2 compression.  If you want that "
34209 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
34210 "the L<libguestfs(3)> API)."
34211 msgstr ""
34212
34213 # type: =item
34214 #. type: =item
34215 #: ../tools/virt-tar.pl:156
34216 msgid "B<-x> | B<--extract> | B<--download>"
34217 msgstr ""
34218
34219 # type: =item
34220 #. type: =item
34221 #: ../tools/virt-tar.pl:158
34222 msgid "B<-u> | B<--upload>"
34223 msgstr ""
34224
34225 #. type: textblock
34226 #: ../tools/virt-tar.pl:160
34227 msgid ""
34228 "Use I<-x> to extract (download) a directory from a virtual machine to a "
34229 "local tarball."
34230 msgstr ""
34231
34232 #. type: textblock
34233 #: ../tools/virt-tar.pl:163
34234 msgid ""
34235 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
34236 "Please read the L</WARNING> section above before using this option."
34237 msgstr ""
34238
34239 # type: textblock
34240 #. type: textblock
34241 #: ../tools/virt-tar.pl:167
34242 msgid "You must specify exactly one of these options."
34243 msgstr ""
34244
34245 # type: =item
34246 #. type: =item
34247 #: ../tools/virt-tar.pl:173
34248 msgid "B<-z> | B<--gzip>"
34249 msgstr ""
34250
34251 # type: textblock
34252 #. type: textblock
34253 #: ../tools/virt-tar.pl:175
34254 msgid "Specify that the input or output tarball is gzip-compressed."
34255 msgstr ""
34256
34257 #. type: textblock
34258 #: ../tools/virt-tar.pl:288
34259 msgid ""
34260 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-copy-"
34261 "in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<Sys::"
34262 "Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs."
34263 "org/>."
34264 msgstr ""
34265
34266 # type: textblock
34267 #. type: textblock
34268 #: ../tools/virt-make-fs.pl:37
34269 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
34270 msgstr ""
34271
34272 # type: verbatim
34273 #. type: verbatim
34274 #: ../tools/virt-make-fs.pl:41
34275 #, no-wrap
34276 msgid ""
34277 " virt-make-fs [--options] input.tar output.img\n"
34278 "\n"
34279 msgstr ""
34280
34281 # type: verbatim
34282 #. type: verbatim
34283 #: ../tools/virt-make-fs.pl:43
34284 #, no-wrap
34285 msgid ""
34286 " virt-make-fs [--options] input.tar.gz output.img\n"
34287 "\n"
34288 msgstr ""
34289
34290 # type: verbatim
34291 #. type: verbatim
34292 #: ../tools/virt-make-fs.pl:45
34293 #, no-wrap
34294 msgid ""
34295 " virt-make-fs [--options] directory output.img\n"
34296 "\n"
34297 msgstr ""
34298
34299 # type: textblock
34300 #. type: textblock
34301 #: ../tools/virt-make-fs.pl:49
34302 msgid ""
34303 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
34304 "archive or some files in a directory.  It is similar to tools like L<mkisofs"
34305 "(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, it can "
34306 "create common filesystem types like ext2/3 or NTFS, which can be useful if "
34307 "you want to attach these filesystems to existing virtual machines (eg. to "
34308 "import large amounts of read-only data to a VM)."
34309 msgstr ""
34310
34311 # type: textblock
34312 #. type: textblock
34313 #: ../tools/virt-make-fs.pl:57
34314 msgid "Basic usage is:"
34315 msgstr ""
34316
34317 # type: verbatim
34318 #. type: verbatim
34319 #: ../tools/virt-make-fs.pl:59
34320 #, no-wrap
34321 msgid ""
34322 " virt-make-fs input output\n"
34323 "\n"
34324 msgstr ""
34325
34326 # type: textblock
34327 #. type: textblock
34328 #: ../tools/virt-make-fs.pl:61
34329 msgid ""
34330 "where C<input> is either a directory containing files that you want to add, "
34331 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
34332 "C<output> is a disk image.  The input type is detected automatically.  The "
34333 "output disk image defaults to a raw ext2 image unless you specify extra "
34334 "flags (see L</OPTIONS> below)."
34335 msgstr ""
34336
34337 # type: =head2
34338 #. type: =head2
34339 #: ../tools/virt-make-fs.pl:67
34340 msgid "EXTRA SPACE"
34341 msgstr ""
34342
34343 #. type: textblock
34344 #: ../tools/virt-make-fs.pl:69
34345 msgid ""
34346 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
34347 "the files that it contains, but might have extra space.  Depending on how "
34348 "you are going to use the output, you might think this extra space is wasted "
34349 "and want to minimize it, or you might want to leave space so that more files "
34350 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
34351 "but you can use the I<--size> flag to leave space in the filesystem if you "
34352 "want it."
34353 msgstr ""
34354
34355 #. type: textblock
34356 #: ../tools/virt-make-fs.pl:77
34357 msgid ""
34358 "An alternative way to leave extra space but not make the output image any "
34359 "bigger is to use an alternative disk image format (instead of the default "
34360 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
34361 "image format (check your hypervisor supports this before using it).  This "
34362 "allows you to choose a large I<--size> but the extra space won't actually be "
34363 "allocated in the image until you try to store something in it."
34364 msgstr ""
34365
34366 #. type: textblock
34367 #: ../tools/virt-make-fs.pl:85
34368 msgid ""
34369 "Don't forget that you can also use local commands including L<resize2fs(8)> "
34370 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
34371 "to build another image from scratch."
34372 msgstr ""
34373
34374 # type: =head3
34375 #. type: =head3
34376 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
34377 #: ../tools/virt-make-fs.pl:142
34378 msgid "EXAMPLE"
34379 msgstr ""
34380
34381 # type: verbatim
34382 #. type: verbatim
34383 #: ../tools/virt-make-fs.pl:91
34384 #, no-wrap
34385 msgid ""
34386 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
34387 "\n"
34388 msgstr ""
34389
34390 # type: =head2
34391 #. type: =head2
34392 #: ../tools/virt-make-fs.pl:93
34393 msgid "FILESYSTEM TYPE"
34394 msgstr ""
34395
34396 # type: textblock
34397 #. type: textblock
34398 #: ../tools/virt-make-fs.pl:95
34399 msgid ""
34400 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
34401 "libguestfs supports can be used (but I<not> read-only formats like "
34402 "ISO9660).  Here are some of the more common choices:"
34403 msgstr ""
34404
34405 # type: =item
34406 #. type: =item
34407 #: ../tools/virt-make-fs.pl:101
34408 msgid "I<ext3>"
34409 msgstr ""
34410
34411 # type: textblock
34412 #. type: textblock
34413 #: ../tools/virt-make-fs.pl:103
34414 msgid ""
34415 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
34416 "you are not going to use the filesystem in a way that requires the journal, "
34417 "then this is just wasted overhead."
34418 msgstr ""
34419
34420 # type: =item
34421 #. type: =item
34422 #: ../tools/virt-make-fs.pl:107
34423 msgid "I<ntfs> or I<vfat>"
34424 msgstr ""
34425
34426 # type: textblock
34427 #. type: textblock
34428 #: ../tools/virt-make-fs.pl:109
34429 msgid "Useful if exporting data to a Windows guest."
34430 msgstr ""
34431
34432 # type: textblock
34433 #. type: textblock
34434 #: ../tools/virt-make-fs.pl:111
34435 msgid ""
34436 "I<Note for vfat>: The tar archive or local directory must only contain files "
34437 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
34438 "program running within libguestfs is unable to change the ownership of non-"
34439 "root files, since vfat itself does not support this."
34440 msgstr ""
34441
34442 # type: =item
34443 #. type: =item
34444 #: ../tools/virt-make-fs.pl:116
34445 msgid "I<minix>"
34446 msgstr ""
34447
34448 # type: textblock
34449 #. type: textblock
34450 #: ../tools/virt-make-fs.pl:118
34451 msgid ""
34452 "Lower overhead than C<ext2>, but certain limitations on filename length and "
34453 "total filesystem size."
34454 msgstr ""
34455
34456 # type: verbatim
34457 #. type: verbatim
34458 #: ../tools/virt-make-fs.pl:125
34459 #, no-wrap
34460 msgid ""
34461 " virt-make-fs --type=minix input minixfs.img\n"
34462 "\n"
34463 msgstr ""
34464
34465 # type: =head2
34466 #. type: =head2
34467 #: ../tools/virt-make-fs.pl:127
34468 msgid "TO PARTITION OR NOT TO PARTITION"
34469 msgstr ""
34470
34471 # type: textblock
34472 #. type: textblock
34473 #: ../tools/virt-make-fs.pl:129
34474 msgid "Optionally virt-make-fs can add a partition table to the output disk."
34475 msgstr ""
34476
34477 # type: textblock
34478 #. type: textblock
34479 #: ../tools/virt-make-fs.pl:131
34480 msgid ""
34481 "Adding a partition can make the disk image more compatible with certain "
34482 "virtualized operating systems which don't expect to see a filesystem "
34483 "directly located on a block device (Linux doesn't care and will happily "
34484 "handle both types)."
34485 msgstr ""
34486
34487 # type: textblock
34488 #. type: textblock
34489 #: ../tools/virt-make-fs.pl:136
34490 msgid ""
34491 "On the other hand, if you have a partition table then the output image is no "
34492 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
34493 "directly on a partitioned disk image.  (However libguestfs tools such as "
34494 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
34495 msgstr ""
34496
34497 # type: textblock
34498 #. type: textblock
34499 #: ../tools/virt-make-fs.pl:144
34500 msgid "Add an MBR partition:"
34501 msgstr ""
34502
34503 # type: verbatim
34504 #. type: verbatim
34505 #: ../tools/virt-make-fs.pl:146
34506 #, no-wrap
34507 msgid ""
34508 " virt-make-fs --partition -- input disk.img\n"
34509 "\n"
34510 msgstr ""
34511
34512 # type: textblock
34513 #. type: textblock
34514 #: ../tools/virt-make-fs.pl:148
34515 msgid ""
34516 "If the output disk image could be terabyte-sized or larger, it's better to "
34517 "use an EFI/GPT-compatible partition table:"
34518 msgstr ""
34519
34520 # type: verbatim
34521 #. type: verbatim
34522 #: ../tools/virt-make-fs.pl:151
34523 #, no-wrap
34524 msgid ""
34525 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
34526 "\n"
34527 msgstr ""
34528
34529 # type: textblock
34530 #. type: textblock
34531 #: ../tools/virt-make-fs.pl:179
34532 msgid "Enable debugging information."
34533 msgstr ""
34534
34535 # type: =item
34536 #. type: =item
34537 #: ../tools/virt-make-fs.pl:185
34538 msgid "B<--size=E<lt>NE<gt>>"
34539 msgstr ""
34540
34541 # type: =item
34542 #. type: =item
34543 #: ../tools/virt-make-fs.pl:187
34544 msgid "B<--size=+E<lt>NE<gt>>"
34545 msgstr ""
34546
34547 # type: =item
34548 #. type: =item
34549 #: ../tools/virt-make-fs.pl:189
34550 msgid "B<-s E<lt>NE<gt>>"
34551 msgstr ""
34552
34553 # type: =item
34554 #. type: =item
34555 #: ../tools/virt-make-fs.pl:191
34556 msgid "B<-s +E<lt>NE<gt>>"
34557 msgstr ""
34558
34559 #. type: textblock
34560 #: ../tools/virt-make-fs.pl:193
34561 msgid ""
34562 "Use the I<--size> (or I<-s>) option to choose the size of the output image."
34563 msgstr ""
34564
34565 # type: textblock
34566 #. type: textblock
34567 #: ../tools/virt-make-fs.pl:196
34568 msgid ""
34569 "If this option is I<not> given, then the output image will be just large "
34570 "enough to contain all the files, with not much wasted space."
34571 msgstr ""
34572
34573 # type: textblock
34574 #. type: textblock
34575 #: ../tools/virt-make-fs.pl:199
34576 msgid ""
34577 "To choose a fixed size output disk, specify an absolute number followed by b/"
34578 "K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
34579 "Petabytes or Exabytes.  This must be large enough to contain all the input "
34580 "files, else you will get an error."
34581 msgstr ""
34582
34583 #. type: textblock
34584 #: ../tools/virt-make-fs.pl:204
34585 msgid ""
34586 "To leave extra space, specify C<+> (plus sign) and a number followed by b/K/"
34587 "M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
34588 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
34589 "the input files, and (approximately) an extra 200 MB free space."
34590 msgstr ""
34591
34592 # type: textblock
34593 #. type: textblock
34594 #: ../tools/virt-make-fs.pl:210
34595 msgid ""
34596 "Note that virt-make-fs estimates free space, and therefore will not produce "
34597 "filesystems containing precisely the free space requested.  (It is much more "
34598 "expensive and time-consuming to produce a filesystem which has precisely the "
34599 "desired free space)."
34600 msgstr ""
34601
34602 # type: =item
34603 #. type: =item
34604 #: ../tools/virt-make-fs.pl:219
34605 msgid "B<--format=E<lt>fmtE<gt>>"
34606 msgstr ""
34607
34608 # type: =item
34609 #. type: =item
34610 #: ../tools/virt-make-fs.pl:221
34611 msgid "B<-F E<lt>fmtE<gt>>"
34612 msgstr ""
34613
34614 # type: textblock
34615 #. type: textblock
34616 #: ../tools/virt-make-fs.pl:223
34617 msgid "Choose the output disk image format."
34618 msgstr ""
34619
34620 # type: textblock
34621 #. type: textblock
34622 #: ../tools/virt-make-fs.pl:225
34623 msgid "The default is C<raw> (raw disk image)."
34624 msgstr ""
34625
34626 # type: textblock
34627 #. type: textblock
34628 #: ../tools/virt-make-fs.pl:227
34629 msgid ""
34630 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
34631 "that would really make sense here is C<qcow2>."
34632 msgstr ""
34633
34634 # type: =item
34635 #. type: =item
34636 #: ../tools/virt-make-fs.pl:234
34637 msgid "B<--type=E<lt>fsE<gt>>"
34638 msgstr ""
34639
34640 # type: =item
34641 #. type: =item
34642 #: ../tools/virt-make-fs.pl:236
34643 msgid "B<-t E<lt>fsE<gt>>"
34644 msgstr ""
34645
34646 # type: textblock
34647 #. type: textblock
34648 #: ../tools/virt-make-fs.pl:238
34649 msgid "Choose the output filesystem type."
34650 msgstr ""
34651
34652 # type: textblock
34653 #. type: textblock
34654 #: ../tools/virt-make-fs.pl:240
34655 msgid "The default is C<ext2>."
34656 msgstr ""
34657
34658 # type: textblock
34659 #. type: textblock
34660 #: ../tools/virt-make-fs.pl:242
34661 msgid ""
34662 "Any filesystem which is supported read-write by libguestfs can be used here."
34663 msgstr ""
34664
34665 # type: =item
34666 #. type: =item
34667 #: ../tools/virt-make-fs.pl:249
34668 msgid "B<--partition>"
34669 msgstr ""
34670
34671 # type: =item
34672 #. type: =item
34673 #: ../tools/virt-make-fs.pl:251
34674 msgid "B<--partition=E<lt>parttypeE<gt>>"
34675 msgstr ""
34676
34677 # type: textblock
34678 #. type: textblock
34679 #: ../tools/virt-make-fs.pl:253
34680 msgid ""
34681 "If specified, this flag adds an MBR partition table to the output disk image."
34682 msgstr ""
34683
34684 #. type: textblock
34685 #: ../tools/virt-make-fs.pl:256
34686 msgid ""
34687 "You can change the partition table type, eg. I<--partition=gpt> for large "
34688 "disks."
34689 msgstr ""
34690
34691 #. type: textblock
34692 #: ../tools/virt-make-fs.pl:259
34693 msgid ""
34694 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
34695 "might consider the next parameter to be the partition type.  For example:"
34696 msgstr ""
34697
34698 # type: verbatim
34699 #. type: verbatim
34700 #: ../tools/virt-make-fs.pl:263
34701 #, no-wrap
34702 msgid ""
34703 " virt-make-fs --partition input.tar ...\n"
34704 "\n"
34705 msgstr ""
34706
34707 #. type: textblock
34708 #: ../tools/virt-make-fs.pl:265
34709 msgid ""
34710 "would cause virt-make-fs to think you wanted to use a partition type of "
34711 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
34712 "dash) between options and the input file argument:"
34713 msgstr ""
34714
34715 # type: verbatim
34716 #. type: verbatim
34717 #: ../tools/virt-make-fs.pl:269
34718 #, no-wrap
34719 msgid ""
34720 " virt-make-fs --partition -- input.tar ...\n"
34721 "\n"
34722 msgstr ""
34723
34724 #. type: textblock
34725 #: ../tools/virt-make-fs.pl:541
34726 msgid ""
34727 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
34728 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
34729 "(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
34730 msgstr ""
34731
34732 # type: verbatim
34733 #. type: verbatim
34734 #: ../tools/virt-make-fs.pl:558
34735 #, no-wrap
34736 msgid ""
34737 " export LIBGUESTFS_DEBUG=1\n"
34738 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
34739 "\n"
34740 msgstr ""
34741
34742 # type: textblock
34743 #. type: textblock
34744 #: ../tools/virt-make-fs.pl:561
34745 msgid ""
34746 "Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
34747 "redhat.com/>"
34748 msgstr ""
34749
34750 # type: textblock
34751 #. type: textblock
34752 #: ../tools/virt-list-partitions.pl:32
34753 msgid ""
34754 "virt-list-partitions - List partitions in a virtual machine or disk image"
34755 msgstr ""
34756
34757 # type: verbatim
34758 #. type: verbatim
34759 #: ../tools/virt-list-partitions.pl:36
34760 #, no-wrap
34761 msgid ""
34762 " virt-list-partitions [--options] domname\n"
34763 "\n"
34764 msgstr ""
34765
34766 # type: verbatim
34767 #. type: verbatim
34768 #: ../tools/virt-list-partitions.pl:38
34769 #, no-wrap
34770 msgid ""
34771 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
34772 "\n"
34773 msgstr ""
34774
34775 # type: textblock
34776 #. type: textblock
34777 #: ../tools/virt-list-partitions.pl:45
34778 msgid ""
34779 "C<virt-list-partitions> is a command line tool to list the partitions that "
34780 "are contained in a virtual machine or disk image.  It is mainly useful as a "
34781 "first step to using L<virt-resize(1)>."
34782 msgstr ""
34783
34784 # type: textblock
34785 #. type: textblock
34786 #: ../tools/virt-list-partitions.pl:50
34787 msgid ""
34788 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
34789 "functionality.  For more complex cases you should look at the L<guestfish(1)"
34790 "> tool."
34791 msgstr ""
34792
34793 # type: =item
34794 #. type: =item
34795 #: ../tools/virt-list-partitions.pl:107
34796 msgid "B<-h> | B<--human-readable>"
34797 msgstr ""
34798
34799 # type: textblock
34800 #. type: textblock
34801 #: ../tools/virt-list-partitions.pl:109
34802 msgid "Show sizes in human-readable form (eg. \"1G\")."
34803 msgstr ""
34804
34805 # type: textblock
34806 #. type: textblock
34807 #: ../tools/virt-list-partitions.pl:117
34808 msgid ""
34809 "With this option, C<virt-list-partitions> displays the type and size of each "
34810 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
34811 msgstr ""
34812
34813 # type: =item
34814 #. type: =item
34815 #: ../tools/virt-list-partitions.pl:124
34816 msgid "B<-t> | B<--total>"
34817 msgstr ""
34818
34819 # type: textblock
34820 #. type: textblock
34821 #: ../tools/virt-list-partitions.pl:126
34822 msgid ""
34823 "Display the total size of each block device (as a separate row or rows)."
34824 msgstr ""
34825
34826 # type: textblock
34827 #. type: textblock
34828 #: ../tools/virt-list-partitions.pl:259
34829 msgid ""
34830 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
34831 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib"
34832 "(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
34833 msgstr ""
34834
34835 # type: textblock
34836 #. type: textblock
34837 #: ../tools/virt-list-partitions.pl:275
34838 msgid "Copyright (C) 2009-2010 Red Hat Inc."
34839 msgstr ""